Make eww use `add-face-text-property', too.
[gnus] / lisp / ChangeLog
1 2013-06-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * eww.el (eww-put-color): Removed.
4         (eww-colorize-region): Use `add-face-text-property'.
5
6         * shr.el (shr-add-font): Append face data, so that we get the correct
7         presedence: The innermost value (which is applied first) wins.
8         (shr-make-overlay): Obsolete function.
9
10         * mm-decode.el (mm-convert-shr-links): New function to convert
11         new-style shr URL links into widgets.
12         (mm-shr): Use it.
13
14         * eww.el (eww-mode-map): Use `shr-next-link' (etc) instead of the
15         widget commands, since we're no longer using widgets for links.
16
17         * shr.el (shr-next-link): New command.
18         (shr-previous-link): New command.
19         (shr-urlify): Don't use `widget-convert', because that's slow.
20         (shr-put-color-1): Use `add-face-text-property' instead of overlays,
21         because collecting the overlays and reapplying them when generating
22         tables is slow.
23         (shr-insert-table): Ditto.
24
25 2013-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
26
27         * sieve.el (sieve-edit-script): Avoid beginning-of-buffer.
28         * shr.el (browse-url): Require `url'.
29         * eww.el (url): Require format-spec.
30
31 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
32
33         * eww.el (eww-display-html): Default to using the entire window width.
34         (eww-browse-url): Don't add a User-Agent header (twice), because that
35         makes Bing refuse connection.
36
37         * shr.el (shr-make-table): Cache the table rendering at the table
38         level, and not the <td> level.  This is a bit faster.
39
40         * eww.el (eww-render): Go to the correct ID when given URLs ending with
41         #id.
42
43         * shr.el (shr-tag-li): Don't require a new paragraph, since other
44         browsers don't.
45         (shr-expand-url): Respect #anchor links.
46         (shr-parse-base): Chop off the anchor before using.
47         (shr-descend): Respect display: none.
48         (shr-descend): Allow marking elements that have certain IDs.
49
50         * eww.el (eww-tag-textarea): Use `text' instead of `editable-field'.
51
52         * shr.el (shr-expand-url): Don't bug out on zero-length links.
53
54         * eww.el (eww-tag-textarea): Support <textarea>.
55
56 2013-06-16  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
57
58         * shr.el (shr-dom-to-xml): Fixed function call.
59
60         * eww.el (eww): New group.
61         (eww-header-line-format): New custom variable.
62         (eww-current-title): New variable.
63         (eww-display-html): Update header and handle title tag.
64         (eww-update-header-line-format): New function.
65         (eww-tag-title): New function.
66
67         * shr.el (shr-dom-to-xml): (shr-dom-to-xml): New function.
68         (shr-tag-svg): Add support for the SVG tag.
69         (shr-bullet): New custom variable.
70         (shr-tag-li): Support custom bullet in unordered lists.
71
72 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
73
74         * shr.el (shr-expand-url): Respect // URLs.
75
76         * eww.el (eww-tag-body): Override the shr body rendering so that we can
77         put a background colour onto the entire buffer.
78         (eww-render): When being redirected, use the redirect URL as the new
79         base URL.
80
81         * shr.el (shr-parse-base): Fix parsing error.
82
83         * eww.el (eww-submit): Pass the base in to `shr-expand-url'.
84
85         * shr.el (shr-parse-base): New function.
86         (shr-expand-url): Use it to expand relative URLs reliably.
87
88 2013-06-15  Teodor Zlatanov  <tzz@lifelogs.com>
89
90         * auth-source.el (auth-source-search-collection): Fix docstring.
91         (auth-source-netrc-parse): Refactor and improve netrc parser to support
92         single-quoted strings and multiline entries.
93         (auth-source-netrc-parse-next-interesting)
94         (auth-source-netrc-parse-one, auth-source-netrc-parse-entries): New
95         functions to support parser.
96
97 2013-06-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
98
99         * eww.el (eww-submit): Get submit button logic right when hitting RET
100         on non-submit buttons.
101
102         * shr.el: Remove shr-preliminary-table-render, since that can't really
103         be used for anything in practice.
104
105 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
106
107         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
108         (sieve-manage-quit).
109
110 2013-06-14  Glenn Morris  <rgm@gnu.org>
111
112         * mml2015.el (mml2015-maximum-key-image-dimension): Add :version.
113
114 2013-06-14  David Edmondson  <dme@dme.org>  (tiny change)
115
116         * mml2015.el (mml2015-maximum-key-image-dimension): New user option to
117         control the maximum size of photo ID image.
118         (mml2015-epg-key-image-to-string): Respect it.
119
120 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
121
122         * shr.el (shr-tag-table-1): Mark the preliminary table renderings
123         instead of the final one so that we can more easily distinguish them.
124
125         * eww.el (eww-submit): Compute the submission URL correctly.
126
127 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
128
129         * sieve-manage.el (sieve-manage-open-server): Don't quote lambda.
130         Use plist-get rather than CL's getf.
131         (sieve-manage-parse-capability): Avoid CL's remove-if.
132
133 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
134
135         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
136         (sieve-manage-quit).
137
138 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
139
140         * shr.el (shr-expand-url): Expansion should chop off the bits after the
141         last slash.
142
143         * eww.el (eww-tag-select): Use the first value as the default value.
144
145 2013-06-13  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
146
147         * eww.el (eww): Prepend urls with http:// if scheme is missing.
148         (eww-mode): Use `define-derived-mode'.
149         (eww-parse-headers): Parse headers from beginning of buffer so that
150         file:// links work.
151
152 2013-06-13  Katsumi Yamaoka  <yamaoka@jpl.org>
153
154         * eww.el (eww-detect-charset): Detect charset from the <meta> tag.
155
156 2013-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
157
158         * shr.el (shr-tag-svg): Ignore SVG elements, because we don't know how
159         to handle them at all.
160
161 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
162
163         * eww.el (eww-convert-widgets): Make widgets from non-tabular layouts
164         work, too.
165         (eww-tag-select): Implement <select>.
166
167 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
168
169         * sieve-manage.el (sieve-manage-open): work with STARTTLS: shorten
170         stream managing functions by using open-protocol-stream to do most of
171         the work. Has the nice benefit of enabling STARTTLS.
172         Wait for capabilities after STARTTLS: following RFC5804, the server
173         sends new capabilities after successfully establishing a TLS connection
174         with the client. The client should update the cached list of
175         capabilities, but we just ignore the answer for now.
176         (sieve-manage-network-p, sieve-manage-network-open)
177         (sieve-manage-starttls-p, sieve-manage-starttls-open)
178         (sieve-manage-forward, sieve-manage-streams)
179         (sieve-manage-stream-alist): Remove unneeded functions neither in the
180         API, nor called by any other function.
181         Enable Multibyte for SieveManage buffers: The parser won't properly
182         handle umlauts and line endings unless multibyte is turned on in the
183         process buffer.
184
185 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
186
187         * eww.el (eww-tag-input): Support password fields.
188         (eww-submit): Support POST.
189
190 2013-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
191
192         * eww.el (eww-tag-form): Protect against degenerate forms.
193
194         * shr.el (shr-expand-url): Expand URLs that start with a slash
195         correctly.
196
197         * eww.el (eww-submit): Get submit button logic right.
198
199         * shr.el (shr-final-table-render): New variable to signal when we're
200         doing the final table rendering so that we can collect more data at
201         that point.
202
203         * eww.el (eww-submit): Make form submission work.
204         (eww-tag-input): Implement submit buttons.
205         (eww-click-radio): Implement radio and checkboxes.
206         (eww-submit): Handle hidden elements.
207
208         * shr.el (shr-descend): Allow other packages to override (or provide)
209         rendering of elements.
210         (shr-expand-url): Strip query strings from URLs before expanding them.
211
212         * eww.el: Don't require cl-lib.
213         (eww-tag-form): Start form support.
214
215         * dgnushack.el (dgnushack-compile): Ignore eww on XEmacs.
216
217         * eww.el: Start writing a new, tiny web browser.
218         (eww-previous-url): New command.
219         (eww-quit): New command.
220
221 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
222
223         * sieve.el: Put point at beginning of buffer when viewing a script.
224         (sieve-open-server): respect the PORT parameter. Show the correct port
225         number in sieve-buffer's header. Fixed code to also work with a string
226         as port specifier. Properly close the connection on pressing 'q'. Make
227         sieve-manage-quit close the connection and process buffer. Also, remove
228         duplicate keybinding for 'q'.
229
230 2013-06-10  Roy Hashimoto  <roy.hashimoto@gmail.com>  (tiny change)
231
232         * mm-view.el (mm-pkcs7-signed-magic): Allow newline in the regexp and
233         make it easier to read.
234         (mm-pkcs7-enveloped-magic): Ditto.
235
236 2013-06-06  Teodor Zlatanov  <tzz@lifelogs.com>
237
238         * gnus-ems.el (gnus-image-type-available-p): Test `display-images-p'
239         before `image-type-available-p' to avoid loading the image libraries
240         needlessly.
241
242 2013-06-05  David Engster  <deng@randomsample.de>
243
244         * gnus-sum.el (gnus-update-marks): Do not remove empty 'unexist'
245         ranges, since `nnimap-retrieve-group-data-early' also uses it as a flag
246         to see whether the group was synced before.
247
248 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
249
250         * tls.el (open-tls-stream): Remove unneeded buffer contents up to point
251         when opening the connection.
252         Suggested by João Távora <joaotavora@gmail.com> in
253         <http://lists.gnu.org/archive/html/emacs-devel/2013-05/msg00464.html>.
254
255 2013-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
256
257         * gnus-art.el (article-date-ut, article-update-date-lapsed): Don't
258         assume Date header begins with "Date", that may be customized into
259         something like "X-Sent" using gnus-article-time-format.
260         (article-transform-date): Allow multi-line Date header.
261
262 2013-06-02  David Engster  <deng@randomsample.de>
263
264         * registry.el (initialize-instance, registry-lookup)
265         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
266         (registry-lookup-secondary-value, registry-search, registry-delete)
267         (registry-insert, registry-reindex, registry-size, registry-prune): Do
268         not wrap methods in `eval-and-compile'.  This breaks due to latest
269         changes in EIEIO (introduction of eieio-core.el).
270
271 2013-05-30  Glenn Morris  <rgm@gnu.org>
272
273         * nnmail.el (nnmail-fancy-expiry-target):
274         Also bind mail-dont-reply-to-names.
275
276         * spam-stat.el (spam-stat-save):
277         No need to tweak font-lock in temp buffers.
278
279         * shr.el (shr-put-image): Silence compiler.
280
281 2013-05-29  Glenn Morris  <rgm@gnu.org>
282
283         * gnus-ems.el (set-process-plist): Every supported Emacs has this.
284
285         * gnus-group.el (gnus-sequence-of-unread-articles)
286         (gnus-summary-add-mark, gnus-mark-article-as-read)
287         (gnus-group-make-articles-read): Declare.
288
289         * gnus-sum.el (gnus-parameter-list-identifier)
290         (gnus-article-stop-animations, gnus-stop-downloads)
291         (gnus-article-only-boring-p, article-goto-body)
292         (gnus-flush-original-article-buffer, article-narrow-to-head)
293         (gnus-article-hidden-text-p, gnus-delete-wash-type)
294         (gnus-summary-save-in-pipe, gnus-article-show-summary): Declare.
295
296         * gnus.el: No need to eval-and-compile autoloads.
297
298         * gravatar.el (help-function-arglist): Autoload.
299
300         * nnimap.el (gnus-refer-thread-use-nnir): Declare.
301
302         * nnmail.el (nnmail-fancy-expiry-target): Maybe use mail-dont-reply-to.
303
304         * spam.el: No need to load spam-report when compiling.
305         No need to eval-and-compile autoloads.
306         (spam-report-resend-to): Declare.
307         (spam-report-resend-register-routine): Require 'spam-report.
308
309 2013-05-24  Julien Danjou  <julien@danjou.info>
310
311         * sieve.el (sieve-setup-buffer): Fix default port value in sieve buffer
312         setup.
313
314 2013-05-23  Glenn Morris  <rgm@gnu.org>
315
316         * gnus-util.el (rmail-swap-buffers-maybe)
317         (rmail-maybe-set-message-counters, rmail-count-new-messages)
318         (rmail-summary-exists, rmail-show-message, rmail-summary-displayed)
319         (rmail-pop-to-buffer, rmail-maybe-display-summary): Declare.
320
321         * mm-decode.el: No need to load term when compiling.
322         (term-mode, term-char-mode): Declare.
323
324         * mm-util.el: No need to load jka-compr when compiling.
325         (jka-compr-acceptable-retval-list, jka-compr-make-temp-name): Declare.
326
327         * nnmaildir.el: Require is automatically eval-and-compile.
328         (nnmail): Require at run-time too.
329
330         * registry.el (registry-size): Move definition before use.
331
332 2013-05-22  Daiki Ueno  <ueno@gnu.org>
333
334         * mml2015.el (mml2015-epg-sign): Make sure to insert newline after the
335         signed data to conform the standard.  (Bug#14232)
336
337 2013-05-20  Adam Sjøgren  <asjo@koldfront.dk>
338
339         * gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left
340         double angle quotation mark.
341
342 2013-05-20  Glenn Morris  <rgm@gnu.org>
343
344         * format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)
345
346 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
347
348         * message.el (message-insert-formatted-citation-line): handle finding
349         first/lastname when more than 2 names appear.
350
351 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
352
353         * shr.el (shr-tag-span): New function.
354
355 2013-05-18  Glenn Morris  <rgm@gnu.org>
356
357         * message.el (message-mode): Use message-mode-abbrev-table,
358         with text-mode-abbrev-table as parent.  (Bug#14413)
359
360 2013-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
361
362         * message.el (message-expand-group): Decode group names.
363
364 2013-05-16  Julien Danjou  <julien@danjou.info>
365
366         * gnus-notifications.el (gnus-notifications-notify): Use photo-file as
367         app-icon.
368
369 2013-05-15  Glenn Morris  <rgm@gnu.org>
370
371         * shr-color.el (shr-color-visible-luminance-min)
372         (shr-color-visible-distance-min): Use shr-color group.
373
374 2013-05-11  Glenn Morris  <rgm@gnu.org>
375
376         * gnus-vm.el: Make it loadable without VM.
377         (gnus-vm-make-folder, gnus-summary-save-in-vm): Require 'vm.
378         (vm-forward-message, vm-reply, vm-mail): Remove unused autoloads.
379
380 2013-05-09  Glenn Morris  <rgm@gnu.org>
381
382         * mml1991.el: Make it loadable.  (Bug#13456)
383
384         * gnus-art.el (gnus-article-date-headers, gnus-blocked-images):
385         * gnus-async.el (gnus-async-post-fetch-function):
386         * gnus-gravatar.el (gnus-gravatar-size, gnus-gravatar-properties):
387         * gnus-html.el (gnus-html-image-cache-ttl):
388         * gnus-notifications.el (gnus-notifications-timeout):
389         * gnus-picon.el (gnus-picon-properties):
390         * gnus-util.el (gnus-completion-styles):
391         * gnus.el (gnus-other-frame-resume-function):
392         * message.el (message-user-organization-file)
393         (message-cite-reply-position):
394         * nnir.el (nnir-summary-line-format)
395         (nnir-retrieve-headers-override-function):
396         * shr-color.el (shr-color-visible-luminance-min):
397         * shr.el (shr-blocked-images):
398         * spam-report.el (spam-report-resend-to):
399         * spam.el (spam-summary-exit-behavior): Fix custom types.
400
401         * gnus-salt.el (gnus-selected-tree-face): Fix default.
402
403 2013-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
404
405         * gnus-art.el (gnus-article-describe-bindings): Require help-mode
406         because of let-binding help-xref-following.  (Bug#14356)
407
408 2013-05-06  Glenn Morris  <rgm@gnu.org>
409
410         * mml2015.el (mml2015-epg-sign): Add name="signature.asc".  (Bug#13465)
411
412 2013-05-04  Andrew Cohen  <cohen@bu.edu>
413
414         * gnus-sum.el (gnus-read-header): Ensure groups are prefixed when
415         entering into the registry.
416
417 2013-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
418
419         * gnus.el: Ma Gnus v0.7 is released.
420
421 2013-05-01  Katsumi Yamaoka  <yamaoka@jpl.org>
422
423         * gnus-util.el (gnus-emacs-completing-read): Fix a filter for XEmacs.
424         (Bug#14304)
425
426 2013-04-27  Glenn Morris  <rgm@gnu.org>
427
428         * gnus.el (gnus-list-debbugs):
429         Use require rather than autoload.  (Bug#14262)
430
431 2013-04-27  Julien Danjou  <julien@danjou.info>
432
433         * sieve-manage.el (sieve-manage-authenticator-alist): Update the sieve
434         port to "sieve" now that it has an official IANA port assigned.
435
436 2013-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
437
438         * mail-source.el (mail-source-fetch-pop, mail-source-check-pop):
439         Don't set the MAILHOST environment variable permanently (Bug#14271).
440
441 2013-04-26  Glenn Morris  <rgm@gnu.org>
442
443         * message.el (message-bury): Revert 2013-03-18 change.  (Bug#14117)
444
445 2013-04-25  Andrew Cohen  <cohen@bu.edu>
446
447         * gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for
448         string values of 'gcc-self. Thanks to Saroj Thirumalai.
449
450 2013-04-24  Andrew Cohen  <cohen@bu.edu>
451
452         * nnir.el (nnir-close-group): Make sure we are in the right group.
453
454         * gnus-sum.el (gnus-summary-insert-articles): Force updates to the
455         dependency table from all newly retrieved headers.
456
457 2013-04-16  David Edmondson  <dme@dme.org>
458
459         Support <img src="data:...">.
460
461         * shr.el (shr-image-from-data): New function.
462         (shr-tag-img): Use it.
463
464 2013-04-14  Andrew Cohen  <cohen@bu.edu>
465
466         * nnir.el (nnir-request-set-mark): Make sure we are in the right
467         group.
468
469 2013-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
470
471         * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles
472         corresponding to any existing group (Bug#14166).
473
474 2013-04-10  Andrew Cohen  <cohen@bu.edu>
475
476         * nnir.el (number-sequence): No longer used.
477         (nnir-request-set-mark): New function.
478         (nnir-request-update-info): Improve marks updating.
479         (nnir-request-scan): Don't duplicate marks updating.
480         (gnus-group-make-nnir-group, nnir-run-imap, nnir-request-create-group):
481         Use 'assq rather than 'assoc. Quote anonymous function.
482         (nnir-request-group, nnir-close-group, gnus-summary-create-nnir-group):
483         Use 'gnus-group-prefixed-p.
484         (gnus-summary-create-nnir-group): Make sure server for method is open.
485
486 2013-04-04  Andrew Cohen  <cohen@bu.edu>
487
488         * nnir.el (gnus-nnir-group-p): New function.
489         (nnir-possibly-change-group): Use it.
490
491         * gnus-msg.el (gnus-setup-message): Use it.
492
493 2013-04-04  Katsumi Yamaoka  <yamaoka@jpl.org>
494
495         * mml.el (mml-minibuffer-read-description): Use `default' insted of
496         `initial-input' for the argument name.
497         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
498
499 2013-04-03  Kevin Layer  <layer@known.net>  (tiny change)
500
501         * mml.el (mml-minibuffer-read-description): Allow passing in a prefix
502         (used by MH-E).
503
504 2013-04-01  Andrew Cohen  <cohen@bu.edu>
505
506         * nnir.el (nnir-request-update-mark): Improve mark updating in original
507         group.
508
509         * gnus-msg.el (nnir-article-number, nnir-article-group): Autoload to
510         fix compilation.
511
512 2013-03-31  Andrew Cohen  <cohen@bu.edu>
513
514         * nnir.el (nnir-method-default-engines): And another typo.
515
516 2013-03-30  Andrew Cohen  <cohen@bu.edu>
517
518         * nnir.el (nnir-method-default-engines): Fix typo.
519
520 2013-03-29  Andrew Cohen  <cohen@bu.edu>
521
522         * nnir.el: Define 'number-sequence for xemacs.
523         (gnus-summary-create-nnir-group): New function to create an nnir group
524         from an nnir summary buffer based on the current query.
525         (nnir-request-create-group): Update to allow nnir group creation based
526         on the current query.
527
528 2013-03-28  Katsumi Yamaoka  <yamaoka@jpl.org>
529
530         * nndraft.el (nndraft-request-expire-articles):
531         Make expiry target always `delete'.
532
533 2013-03-27  Andrew Cohen  <cohen@bu.edu>
534
535         * gnus-msg.el (gnus-setup-message): When replying from an nnir summary
536         buffer use the posting-style and gcc of the original article group.
537         (gnus-inews-insert-gcc): Don't set gcc-self for virtual groups.
538
539         * nnir.el: Fix byte-compile warning. nnoo-define-skeleton should come
540         after other deffoos.
541
542 2013-03-25  Andrew Cohen  <cohen@bu.edu>
543
544         * nnir.el: Major rewrite. Cleaner separation between searches and group
545         management. Marks are now shown in nnir summary buffers. Rudimentary
546         support for real (i.e. not ephemeral) nnir groups.
547         (gnus-summary-make-nnir-group): New function for initiating searches
548         from a summary buffer.
549
550 2013-03-18  Sam Steingold  <sds@gnu.org>
551
552         * message.el (message-bury): Minor cleanup.
553
554 2013-03-07  Paul Eggert  <eggert@cs.ucla.edu>
555
556         * gnus-cite.el: Specify utf-8, not iso-8859-1, for ASCII file.
557
558 2013-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
559
560         * nndir.el (nndir-request-list): Remove 2nd argument passed to
561         nnml-request-list.  (Bug#13873)
562         (nndir-request-newsgroups): Remove, unused.
563
564         * nndraft.el (nndraft-request-newsgroups): Remove, unused.
565
566 2013-03-05  Paul Eggert  <eggert@cs.ucla.edu>
567
568         * deuglify.el, gnus-delay.el, gnus-spec.el, gnus-sum.el, html2text.el,
569         message.el, mm-decode.el, mml1991.el, nnir.el, shr.el, utf7.el:
570         Prefer UTF-8 when the encoding shouldn't matter and changes are small.
571
572 2013-03-03  Ted Phelps  <phelps@gnusto.com>
573
574         * shr.el: Make all the overlays set the `evaporate' property so that
575         they're removed properly.
576
577 2013-02-25  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
578
579         * mml2015-el (mml2015-epg-key-image): wrap epg-gpg-program in
580         shell-quote-argument.
581
582 2013-02-22  David Engster  <deng@randomsample.de>
583
584         * gnus-registry.el (gnus-registry-save): Provide class name when
585         calling `eieio-persistent-read' to avoid "unsafe call" warning.  Use
586         `condition-case' to stay compatible with older EIEIO versions which
587         only accept one argument.
588
589 2013-02-17  Daiki Ueno  <ueno@gnu.org>
590
591         * mml2015.el (epg-key-user-id-list, epg-user-id-string)
592         (epg-user-id-validity): Autoload.
593         (mml2015-epg-check-user-id): New function.
594         (mml2015-epg-check-sub-key): New function split from
595         mml2015-epg-find-usable-key.
596         (mml2015-epg-find-usable-key): Accept context, name, usage, and
597         optional name-is-key-id, to handle the case when user-id is unusable.
598         Reported by Łukasz Stelmach <stlman@poczta.fm>.
599
600 2013-02-17  Glenn Morris  <rgm@gnu.org>
601
602         * shr.el (shr-put-image): Use image-multi-frame-p if available.
603
604 2013-02-16  Glenn Morris  <rgm@gnu.org>
605
606         * shr.el (shr-put-image): Only animate images that specify a delay.
607         This is consistent with the old image-animated-p behavior.
608
609 2013-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
610
611         * gnus-util.el (gnus-define-keys): Convert [?\S-\ ] to [(shift space)]
612         for XEmacs.
613
614 2013-02-13  Juri Linkov  <juri@jurta.org>
615
616         * gnus-art.el (gnus-article-mode-map):
617         * gnus-sum.el (gnus-summary-mode-map, gnus-summary-article-map):
618         Make S-SPC scroll in the opposite sense to SPC.  (Bug#2145)
619
620 2013-02-07  Gábor Vida  <gabor.v.vida@ericsson.com>  (tiny change)
621
622         * auth-source.el (auth-source-format-prompt): Don't get confused by
623         any "\" in replacement text.  (Bug#13637)
624
625 2013-01-30  Christopher Schmidt  <christopher@ch.ristopher.com>
626
627         * gnus-int.el (gnus-backend-trace-elapsed): New variable.
628         (gnus-backend-trace): Honour gnus-backend-trace.
629
630         * mml.el (mml-insert-part): Insert closing tag.
631
632         * mm-decode.el (mm-save-part): Handle invalid read-file-name results.
633
634 2013-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
635
636         * gnus-sum.el (gnus-summary-read-group-1): Protect against not being
637         able to find the article, which can happen in debbugs groups,
638         apparently.
639
640 2013-01-16  Glenn Morris  <rgm@gnu.org>
641
642         * smiley.el (smiley-style): Make the file loadable in batch mode.
643
644 2013-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
645
646         * nnimap.el (nnimap-keepalive): Don't throw an error if there's no more
647         imap process running.
648
649 2013-01-14  Julien Danjou  <julien@danjou.info>
650
651         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
652         Compare addresses against addresses, not against the full From field.
653
654 2013-01-13  Richard Stallman  <rms@gnu.org>
655
656         * message.el (message-forward-make-body-mime): New args BEG, END
657         specify what part of FORWARD-BUFFER to use.  Do the work directly
658         instead of calling `mml-insert-buffer'.
659
660 2013-01-11  Aaron S. Hawley  <Aaron.Hawley@vtinfo.com>
661
662         * gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
663         cross-reference(s).
664
665         * gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
666         cross-reference(s).
667
668 2013-01-11  Dmitry Antipov  <dmantipov@yandex.ru>
669
670         * gnus-art.el (gnus-mime-display-security): Use point-min-marker
671         and point-max-marker.
672         * gnus-async.el (gnus-async-article-callback): Use point-max-marker.
673
674 2013-01-11  Julien Danjou  <julien@danjou.info>
675
676         * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
677         max are almost equal. Also return the correct value for V which is
678         already between 0 and 1.
679
680 2013-01-10  Uwe Brauer  <oub@mat.ucm.es>  (tiny change)
681
682         * mml-smime.el (mml-smime-encrypt-to-self): New user option analogous
683         to mml2015-encrypt-to-self.
684         (mml-smime-epg-encrypt): Respect mml-smime-encrypt-to-self.
685
686 2013-01-09  Daiki Ueno  <ueno@gnu.org>
687
688         * mml-smime.el (epg-sub-key-fingerprint): Autoload for
689         mml-smime-epg-find-usable-secret-key.
690
691 2013-01-08  Glenn Morris  <rgm@gnu.org>
692
693         * mml-smime.el (mml-smime-sign-with-sender): Add :version.
694
695 2013-01-07  Daiki Ueno  <ueno@gnu.org>
696
697         * mml-smime.el: Support signing by sender.
698         Requested by Uwe Brauer.
699         (mml-smime-sign-with-sender): New user option analogous
700         to mml2015-sign-with-sender.
701         (mml-smime-epg-sign): Respect mml-smime-sign-with-sender.
702         (mml-smime-epg-find-usable-secret-key): New helper function copied from
703         mml2015.el.
704
705 2012-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
706
707         * gnus-msg.el (gnus-inews-insert-gcc): Don't insert Gcc headers if Gnus
708         isn't running, because Gnus will probably not know how to handle the
709         Gcc header (bug#11941).
710
711         * nnimap.el (nnimap-update-info): Treat \Deleted articles as \Read
712         articles.
713
714 2012-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
715
716         * nnfolder.el (nnfolder-recursive-directory-files): New function.
717         (nnfolder-generate-active-file): Make this function work with recursive
718         folder names.
719
720 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
721
722         * nntp.el (nntp-open-connection): Use HELP as the capability command
723         instead of CAPABILITY because Typhoon v2.2.2.503 chokes completely on
724         unknown commands.  And CAPABILITY is an unknown command (bug#12763).
725
726 2012-12-27  Wolfgang Jenkner  <wjenkner@inode.at>
727
728         * gnus-spec.el (gnus-face-face-function): Don't use nil as no-op face
729         place holder since this gives `Invalid face reference: nil' messages.
730         Use the `default' face instead.  It has the same effect here, even
731         though it is not no-op.
732
733         * gnus-util.el
734         (gnus-put-text-property-excluding-characters-with-faces): Similarly.
735
736 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
737
738         * gnus-msg.el (gnus-summary-resend-message): Don't bug out on
739         non-string posting styles (bug#13285).
740
741 2012-12-27  Glenn Morris  <rgm@gnu.org>
742
743         * plstore.el (plstore-passphrase-callback-function):
744         Use plstore-get-file.
745
746 2012-12-27  Andreas Schwab  <schwab@linux-m68k.org>
747
748         * mml2015.el (mml2015-epg-key-image): Separate attribute stream from
749         stderr.
750
751 2012-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
752
753         * mml2015.el (mml2015-epg-key-image): Use mm-set-buffer-multibyte.
754
755         * gnus-compat.el (set-buffer-multibyte): Remove.
756
757 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
758
759         * mml2015.el (mml2015-epg-key-image): use --attribute-fd rather than
760         temporary file to get PGP key image. Pass no-show-photos when extracting
761         image to avoid having it pop up twice.
762
763 2012-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
764
765         * gnus-art.el (gnus-article-treat-types): Include text/html as parts
766         eligible for treatment.
767
768         * gnus-util.el (gnus-goto-colon): Move to the beginning of the visual
769         lines.  This makes summary commands with hidden threads work more
770         reliably.
771
772         * gnus-cite.el (gnus-article-hide-citation-maybe): Leave an expansion
773         button to mark the hidden citations (bug#9395).
774
775 2012-12-26  Daiki Ueno  <ueno@gnu.org>
776
777         * mml2015.el (mml2015-epg-signature-to-string): New function.
778         (mml2015-epg-verify-result-to-string): New function.
779         (mml2015-epg-decrypt, mml2015-epg-clear-decrypt, mml2015-epg-verify)
780         (mml2015-epg-clear-verify): Use mml2015-epg-verify-result-to-string
781         instead of epg-verify-result-to-string.
782         (epg-signature-key-id, epg-signature-to-string): Autoload.
783         (epg-verify-result-to-string): Remove autoload.
784
785 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
786
787         * mml2015.el (mml2015-epg-key-image): New function, to retrieve photo
788         ID image from GPG public key.
789         (mml2015-epg-key-image-to-string): New function.
790
791 2012-12-25  Leo Liu  <sdl.web@gmail.com>
792
793         * plstore.el (plstore-passphrase-callback-function): Fix error when
794         error when plstore-cache-passphrase-for-symmetric-encryption is set
795         (bug#13264).
796
797 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
798
799         * gnus-sum.el (gnus-set-global-variables): Don't copy over the summary
800         buffer to the article buffer here, because that clobbers multiple
801         article buffers.
802
803         * gnus-art.el (gnus-article-setup-buffer): Make sure that the article
804         buffer always points to the right summary buffer.
805
806 2012-12-25  John Wiegley  <jwiegley@gmail.com>
807
808         * auth-source.el (auth-source-netrc-parse): Allow using "password" as
809         the password (bug#12097).
810
811 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
812
813         * shr.el (shr-tag-a): Don't tagify <A> elements that don't have HREFs
814         (bug#13263).
815
816         * gnus-salt.el (gnus-highlight-selected-tree): Check whether the Tree
817         buffer exists before using it (bug#12475).
818
819         * gnus-agent.el (gnus-agent-fetch-articles): Don't fetch articles from
820         offline groups (bug#11937).
821
822         * message.el (message-yank-original): When using customize to set the
823         value of `message-cite-style', the variable it set to a symbol that's
824         the name of the variable, which must then be dereferenced (bug#12616).
825
826 2012-09-13  Wolfgang Jenkner  <wjenkner@inode.at>
827
828         * lisp/gnus-spec.el (gnus-face-face-function): Initialize the value of
829         the `face' property with a list whose car is the face specified in the
830         format string and whose cdr is (nil).
831         * lisp/gnus-util.el
832         (gnus-put-text-property-excluding-characters-with-faces):
833         Change accordingly.
834         (gnus-get-text-property-excluding-characters-with-faces): New function.
835         * lisp/gnus-sum.el (gnus-summary-highlight-line):
836         * lisp/gnus-salt.el (gnus-tree-highlight-node):
837         * lisp/gnus-group.el (gnus-group-highlight-line): Use it.
838
839 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
840
841         * nnimap.el (nnimap-authenticator): Expand to allow specifying the
842         login methods.
843         (nnimap-login): Respect the `nnimap-authenticator' variable.
844
845         * gnus-sum.el (gnus-summary-push-marks-to-backend): Push the complete
846         mark state when moving articles.  Otherwise unticked articles will get
847         their ticks back after moving.
848
849 2012-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
850
851         * gnus-srvr.el (gnus-browse-delete-group): Fix syntax error.
852
853         * message.el (message-ignored-news-headers): Always remove
854         X-Message-SMTP-Method to avoid information leakage if the user
855         mistakenly inserts the header into news messages.
856
857         * gnus-srvr.el (gnus-browse-delete-group): New command and keystroke.
858
859         * gnus-sum.el (gnus-summary-hide-thread): If point were further to the
860         right than four characters, this command would move point to
861         `point-max'.  Don't do that.
862
863         * gnus-group.el (gnus-group-read-ephemeral-group): Set the active data
864         to nil to allow re-selecting groups that gain articles.
865         (gnus-bug-group-download-format-alist): Update the URL.
866
867 2012-12-23  Andreas Schwab  <schwab@suse.de>
868
869         * shr.el (shr-tag-em): Render em as italic, not bold.
870
871 2012-12-23  Lars Ingebrigtsen  <larsi@gnus.org>
872
873         * gnus-int.el (gnus-backend-trace): Factor out into its own function
874         for reuse.
875         (gnus-open-server): Use it to add more tracing.
876         (gnus-finish-retrieve-group-infos): Add backend tracing.
877         (gnus-backend-trace): Also note the elapsed seconds.
878
879 2012-12-22  Philipp Haselwarter  <philipp@haselwarter.org>
880
881         * gnus-sync.el (gnus-sync-file-encrypt-to, gnus-sync-save):
882         Set epa-file-encrypt-to from variable to avoid querying.
883
884 2012-12-14  Akinori MUSHA  <knu@iDaemons.org>  (tiny change)
885
886         * sieve-mode.el (sieve-font-lock-keywords):
887         Keywords should be word delimited.  (Bug#13173)
888
889 2012-12-13  Andreas Schwab  <schwab@suse.de>
890
891         * tls.el (tls-program): Update customize type.
892
893 2012-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
894
895         * gnus-art.el (gnus-article-browse-html-parts): Use <div align="left">
896         instead of <pre> to align message header.
897
898 2012-12-12  Sam Steingold  <sds@gnu.org>
899
900         * gnus.el (gnus-other-frame-resume-function): Add user option.
901         (gnus-other-frame): Call `gnus-other-frame-resume-function' on resume.
902
903 2012-12-06  Sam Steingold  <sds@gnu.org>
904
905         * gnus-start.el (gnus-before-resume-hook): Add.
906         (gnus-1): Run it when Gnus is alive.
907
908 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
909
910         * gmm-utils.el (gmm-called-interactively-p): Restore as a macro.
911         * gnus-art.el (article-unsplit-urls)
912         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
913         * gnus-registry.el (gnus-registry-get-article-marks)
914         * message.el (message-goto-body): Use it.
915         (message-called-interactively-p): Remove.
916
917         * spam-stat.el (spam-stat-called-interactively-p): New macro.
918         (spam-stat-score-buffer): Use it.
919
920         * spam.el: Silence the warnings against BBDB functions when compiling.
921
922         * gnus-score.el (gnus-score-decode-text-parts):
923         Use append+mapcar instead of the cl function mapcan.
924
925 2012-12-05  Sam Steingold  <sds@gnu.org>
926
927         * gnus.el (gnus-delete-gnus-frame): Extract from `gnus-other-frame'.
928         (gnus-other-frame): Add `gnus-delete-gnus-frame' to
929         `gnus-suspend-gnus-hook' in addition to `gnus-exit-gnus-hook'.
930
931 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
932
933         * gmm-utils.el (gmm-called-interactively-p): Revert.
934         This seems to cause Emacs to get stuck!
935         * gnus-art.el (article-unsplit-urls)
936         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
937         * gnus-registry.el (gnus-registry-get-article-marks)
938         * message.el (message-goto-body)
939         (message-called-interactively-p): Revert.
940
941         * gmm-utils.el (gmm-called-interactively-p): New function.
942         * gnus-art.el (article-unsplit-urls)
943         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
944         * gnus-registry.el (gnus-registry-get-article-marks)
945         * message.el (message-goto-body): Use it.
946         (message-called-interactively-p): Remove.
947
948         * gmm-utils.el (gmm-flet): Restore it using cl-letf.
949         * gnus-sync.el (gnus-sync-lesync-call)
950         * message.el (message-read-from-minibuffer): Use it.
951
952 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
953
954         * gmm-utils.el (gmm-flet): Remove.
955         * gnus-sync.el (gnus-sync-lesync-call)
956         * message.el (message-read-from-minibuffer): Don't use it.
957
958 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
959
960         * gmm-utils.el (gmm-labels): Use cl-labels if available.
961
962 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
963
964         * gmm-utils.el (gmm-flet, gmm-labels): New macros.
965
966         * gnus-sync.el (gnus-sync-lesync-call)
967         * message.el (message-read-from-minibuffer): Use gmm-flet.
968
969         * gnus-score.el (gnus-score-decode-text-parts): Use gmm-labels.
970
971         * gnus-util.el (gnus-macroexpand-all): Remove.
972
973 2012-12-03  Andreas Schwab  <schwab@linux-m68k.org>
974
975         * gnus-sum.el (gnus-summary-mode-map): Bind gnus-summary-widget-forward
976         to TAB, not [tab].
977         (gnus-summary-article-map): Likewise.
978
979         * gnus-sync.el (gnus-sync-newsrc-offsets): Restore definition.
980         (gnus-sync-save): Use correct format for gnus-sync-newsrc-loader.
981
982 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
983
984         * time-date.el: Commentary fix.
985
986 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
987
988         * color.el: Don't require cl.
989         (color-complement): `caddr' -> `nth 2'.
990
991         * time-date.el (time-to-seconds): De-obsolete.
992
993 2012-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
994
995         * message.el (message-get-reply-headers):
996         Make sure the reply goes to the author if it is a wide reply.
997
998 2012-11-16  Jan Tatarik  <jan.tatarik@gmail.com>
999
1000         * gnus-score.el (gnus-score-body):
1001         * gnus-logic.el (gnus-advanced-body): Don't score by headers when
1002         scoring by body.
1003
1004 2012-11-16  Glenn Morris  <rgm@gnu.org>
1005
1006         * gnus-diary.el (nndiary-request-create-group-functions)
1007         (nndiary-request-update-info-functions)
1008         (gnus-subscribe-newsgroup-functions)
1009         (nndiary-request-accept-article-functions):
1010         Use new names for hooks rather than obsolete aliases.
1011
1012 2012-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1013
1014         * dgnushack.el (define-obsolete-variable-alias): Simplify.
1015
1016 2012-11-08  Katsumi Yamaoka  <yamaoka@jpl.org>
1017
1018         * gnus-art.el (gnus-article-browse-html-parts): Always replace charset
1019         in meta tag with the one the part specifies in its header.
1020
1021 2012-10-25  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
1022
1023         * gnus-dired.el (gnus-dired-attach): Attach to last used message buffer
1024         by default.
1025
1026 2012-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1027
1028         * dgnushack.el (define-compiler-macro): Add autoload for XEmacs 21.4
1029         and SXEmacs.  Suggested by Nelson Ferreira <nelson.ferreira@ieee.org>.
1030
1031 2012-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
1032
1033         * dgnushack.el (define-obsolete-variable-alias): Add a compiler-marco
1034         and a runtime function for it, of which the XEmacs version takes only
1035         two arguments.
1036
1037 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1038
1039         * nndiary.el (nndiary-request-create-group-functions)
1040         (nndiary-request-update-info-functions)
1041         (nndiary-request-accept-article-functions):
1042         * gnus-start.el (gnus-subscribe-newsgroup-functions): Don't use
1043         "-hooks" suffix.
1044
1045 2012-10-19  Julien Danjou  <julien@danjou.info>
1046
1047         * gnus-art.el: Require gnus-util because it uses
1048         `gnus-timer--function'.
1049
1050 2012-10-17  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
1051
1052         * starttls.el (starttls-extra-arguments): Doc fix.
1053
1054 2012-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1055
1056         * shr.el (shr-insert): \r is also not inserted, so don't try to delete
1057         it.
1058
1059 2012-10-06  Glenn Morris  <rgm@gnu.org>
1060
1061         * gnus-notifications.el (gnus-notifications):
1062         Add missing group :version tag.
1063         * gnus-msg.el (gnus-gcc-pre-body-encode-hook)
1064         (gnus-gcc-post-body-encode-hook):
1065         * gnus-sync.el (gnus-sync-lesync-name)
1066         (gnus-sync-lesync-install-topics): Add missing custom :version tags.
1067
1068 2012-10-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
1069
1070         * color.el (color-hsl-to-rgb): Fix incorrect results for
1071         small and large hue values.  (Bug#12559)
1072
1073 2012-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1074
1075         New UIDL implementation.
1076
1077         * mail-source.el (mail-sources, mail-source-keyword-map):
1078         Add :leave as a pop3 keyword.
1079         (mail-source-fetch-pop): Bind pop3-leave-mail-on-server.
1080
1081         * pop3.el (pop3-leave-mail-on-server): Allow number.
1082         (pop3-uidl-file, pop3-uidl-file-backup): New user options.
1083         (pop3-movemail): Add UIDL support.
1084         (pop3-send-streaming-command): Take a list of mail numbers instead of
1085         the number of mails.
1086         (pop3-write-to-file): Add X-UIDL header.
1087         (pop3-uidl-stat, pop3-uidl-dele, pop3-uidl-load, pop3-uidl-save)
1088         (pop3-uidl-add-xheader): New functions.
1089
1090         * message.el (message-ignored-resent-headers):
1091         Add X-Content-Length and X-UIDL headers.
1092
1093 2012-10-05  Glenn Morris  <rgm@gnu.org>
1094
1095         * color.el (color-name-to-rgb, color-rgb-to-hex)
1096         (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1097         (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1098         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1099         (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1100
1101 2012-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1102
1103         * gnus-art.el (gnus-article-browse-delete-temp-files): Never ask again
1104         a user about whether to delete temp files if once a user answered as n.
1105
1106 2012-09-25  Chong Yidong  <cyd@gnu.org>
1107
1108         * password-cache.el (password-read-and-add): Use a declare form to mark
1109         this function obsolete.
1110
1111 2012-09-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1112
1113         * lpath.el: Bind mail-encode-mml for old Emacsen.
1114
1115 2012-09-17  Richard Stallman  <rms@gnu.org>
1116
1117         * message.el (message-in-body-p): Don't set mark or modify buffer.
1118
1119         * mml.el (mml-attach-file): Doc fix.
1120         (mml-attach-external, mml-attach-buffer, mml-attach-file):
1121         Set mail-encode-mml when in Mail mode.
1122         Simplify code to set HEAD and move back to HEAD.
1123         (mml-insert-multipart, mml-insert-part):
1124         Set mail-encode-mml when in Mail mode.
1125
1126 2012-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1127
1128         * gnus-util.el (gnus-timer--function): New function.
1129
1130         * gnus-art.el (gnus-article-stop-animations): Use it.
1131
1132 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
1133
1134         Fix glitches caused by addition of psec to timers.
1135         * gnus-art.el (gnus-article-stop-animations): Use timer--function
1136         rather than raw access to timer vector.
1137
1138 2012-09-11  Julien Danjou  <julien@danjou.info>
1139
1140         * gnus-notifications.el (gnus-notifications): Check for nil values in
1141         ignored addresses check.
1142
1143 2012-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1144
1145         * qp.el (quoted-printable-decode-region): Inline+CSE+strength-reduction.
1146
1147 2012-09-07  Chong Yidong  <cyd@gnu.org>
1148
1149         * gnus-util.el
1150         (gnus-put-text-property-excluding-characters-with-faces): Restore.
1151
1152         * gnus-salt.el (gnus-tree-highlight-node):
1153         * gnus-sum.el (gnus-summary-highlight-line):
1154         * gnus-group.el (gnus-group-highlight-line): Revert use of add-face.
1155
1156 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
1157
1158         * gnus-util.el: Fix compilation error on XEmacs 21.4.
1159
1160 2012-09-06  Juri Linkov  <juri@jurta.org>
1161
1162         * gnus-group.el (gnus-read-ephemeral-gmane-group): Change the naming
1163         scheme for buffer names to be more consistent with other group and
1164         article buffer names in Gnus.
1165
1166 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
1167
1168         * gnus-util.el
1169         (gnus-put-text-property-excluding-characters-with-faces): Removed.
1170
1171         * gnus-compat.el: Define compat function `add-face' from Wolfgang
1172         Jenkner.
1173
1174         * gnus-group.el (gnus-group-highlight-line): Use combining faces.
1175
1176         * gnus-sum.el (gnus-summary-highlight-line): Ditto.
1177
1178         * gnus-salt.el (gnus-tree-highlight-node): Ditto.
1179
1180 2012-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1181
1182         * gnus-score.el (gnus-score-decode-text-parts): Use #' for
1183         mm-text-parts used in labels macro to make it work with XEmacs 21.5.
1184
1185         * gnus-util.el (gnus-string-prefix-p): New function, an alias to
1186         string-prefix-p in Emacs >=23.2.
1187
1188         * nnmaildir.el (nnmaildir--ensure-suffix, nnmaildir--add-flag)
1189         (nnmaildir--remove-flag, nnmaildir--scan): Use gnus-string-match-p
1190         instead of string-match-p.
1191         (nnmaildir--scan): Use gnus-string-prefix-p instead of string-prefix-p.
1192
1193 2012-09-06  Kenichi Handa  <handa@gnu.org>
1194
1195         * qp.el (quoted-printable-decode-region): Fix previous change; handle
1196         lowercase a..f.
1197
1198 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
1199
1200         * nnmaildir.el (nnmaildir--article-set-flags): Fix compilation error.
1201
1202 2012-09-05  Martin Stjernholm  <mast@lysator.liu.se>
1203
1204         * nnimap.el (nnimap-request-move-article): Decode the group name when
1205         doing internal moves to avoid charset issues.
1206
1207         * gnus-demon.el (gnus-demon-init): Fixed regression when IDLE is t and
1208         TIME is set.
1209
1210 2012-09-05  Juri Linkov  <juri@jurta.org>
1211
1212         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow opening more
1213         than one group at a time (bug#11961).
1214
1215 2012-09-05  Julien Danjou  <julien@danjou.info>
1216
1217         * gnus-srvr.el (gnus-server-open-server): Don't message on failure:
1218         this hide the real reason with a message giving absolutely no hint.
1219
1220 2012-09-05  Lars Ingebrigtsen  <larsi@gnus.org>
1221
1222         * gnus-group.el (gnus-group-mark-article-read): Propagate the read mark
1223         to the backend (bug#11804).
1224
1225         * message.el (message-insert-newsgroups): Don't insert newsgroup
1226         duplicates (bug#12275).
1227
1228 2012-09-05  John Wiegley  <johnw@newartisans.com>
1229
1230         * gnus.el (gnus-expand-group-parameters): Allow regexp substitutions in
1231         sieve rules.
1232
1233 2012-09-05  Jan Tatarik  <jan.tatarik@gmail.com>
1234
1235         * gnus-score.el (gnus-score-decode-text-parts): Use #' for the local
1236         function.
1237
1238         * gnus-logic.el (gnus-advanced-body): Allow scoring on decoded bodies.
1239
1240         * gnus-score.el (gnus-score-decode-text-parts): Ditto.
1241
1242 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
1243
1244         * nnmaildir.el: Make nnmaildir understand and write maildir flags.
1245         That is, rename files from "unique:2," to "unique:2,S" for "seen", etc.
1246         This should make nnmaildir more usable with offlineimap.
1247
1248 2012-09-05  Julien Danjou  <julien@danjou.info>
1249
1250         * nnimap.el (nnimap-request-list): Revert change that made listing
1251         synchronous.
1252         (nnimap-get-responses): Restore.
1253
1254 2012-09-03  Lars Ingebrigtsen  <larsi@gnus.org>
1255
1256         * dgnushack.el: XEmacs 21.5 compilation fix.
1257
1258         * gnus-notifications.el (gnus-notifications-notify): Use it.
1259
1260         * gnus-fun.el (gnus-funcall-no-warning): New function to silence
1261         warnings on XEmacs.
1262
1263 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
1264
1265         Better seeds for (random).
1266         * gnus-sync.el (gnus-sync-lesync-setup):
1267         * message.el (message-canlock-generate, message-unique-id):
1268         Change (random t) to (random), now that the latter is more random.
1269
1270 2012-08-31  Dave Abrahams  <dave@boostpro.com>
1271
1272         * nnimap.el (nnimap-change-group): Document result value
1273
1274         * auth-source.el (auth-sources): Fix macos keychain access.
1275
1276         * gnus-int.el (gnus-request-head): When gnus-override-method is set,
1277         allow the backend `request-head' function to determine the group
1278         name on its own.
1279         (gnus-request-expire-articles): Filter out negative article numbers
1280         during expiry (Bug#11980).
1281
1282         * gnus-range.el (gnus-set-difference): Change gnus-set-difference from
1283         O(N^2) to O(N).  This makes warping into huge groups tolerable.
1284
1285         * gnus-registry.el (gnus-try-warping-via-registry): Don't act as though
1286         you've found the article when you haven't.
1287
1288         * nnimap.el (nnimap-find-article-by-message-id): Account for the fact
1289         that nnimap-change-group can return t.
1290
1291 2012-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1292
1293         * gnus-notifications.el (gnus-notifications-action): Avoid CL-ism.
1294
1295 2012-08-30  Julien Danjou  <julien@danjou.info>
1296
1297         * gnus-notifications.el (gnus-notifications-notify): Use timeout from
1298         `gnus-notifications-timeout'.
1299         (gnus-notifications-timeout): Add.
1300         (gnus-notifications-action): New function.
1301         (gnus-notifications-notify): Add :action using
1302         `gnus-notifications-action'.
1303         (gnus-notifications-id-to-msg): New variable.
1304         (gnus-notifications): Use `gnus-notifications-id-to-msg' to map
1305         notifications id to messages.
1306
1307 2012-08-30  Kenichi Handa  <handa@gnu.org>
1308
1309         * qp.el (quoted-printable-decode-region): Decode multiple bytes at
1310         once.
1311
1312 2012-08-29  Julien Danjou  <julien@danjou.info>
1313
1314         * gnus-notifications.el: New file.
1315         (gnus-notifications-notify): New function.
1316         (gnus-notifications): Use `gnus-notifications-notify'.
1317
1318 2012-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1319
1320         * gnus-sum.el (gnus-summary-enter-digest-group): Decode content
1321         transfer encoding first; bind gnus-newsgroup-charset to the charset
1322         that the article specifies (Bug#12209).
1323
1324 2012-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1325
1326         * gnus-cus.el (gnus-group-customize): Decode values posting-style holds.
1327         (gnus-group-customize-done): Encode values posting-style holds.
1328
1329         * gnus-msg.el (gnus-summary-resend-message)
1330         (gnus-configure-posting-styles): Decode values posting-style group
1331         parameter holds.
1332
1333 2012-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
1334
1335         * gnus-msg.el (gnus-summary-resend-message): Honor posting-style for
1336         `name' and `address' in Resent-From header.
1337
1338 2012-08-14  Chong Yidong  <cyd@gnu.org>
1339
1340         * gnus-art.el (article-display-face): Handle failure in
1341         gnus-create-image (Bug#11802).
1342
1343 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1344
1345         * gnus-agent.el (gnus-agent-cat-defaccessor, gnus-agent-cat-groups):
1346         Use defsetf.
1347
1348 2012-08-10  Daiki Ueno  <ueno@unixuser.org>
1349
1350         * auth-source.el: (auth-source-plstore-search)
1351         (auth-source-secrets-search): Ignore :require and :type in search spec.
1352
1353 2012-08-06  Julien Danjou  <julien@danjou.info>
1354
1355         * nnimap.el (nnimap-request-head): Resture to-buffer parameter, used by
1356         `nnimap-request-move-article'.
1357
1358         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
1359         Remove autoload, already handled by gnus.el.
1360
1361         * nnimap.el (nnimap-request-head): Remove to-buffer argument.
1362
1363         * gnus-int.el (gnus-request-head): Remove to-buffer argument, only
1364         supported by nnimap actually. Reverts previous change.
1365
1366         * gnus-int.el (gnus-request-head): Add an optional to-buffer parameter
1367         to mimic `gnus-request-article' and enjoy backends the nn*-request-head
1368         to-buffer argument that is already supported.
1369
1370 2012-08-05  Julien Danjou  <julien@danjou.info>
1371
1372         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
1373         Add autoload.
1374
1375 2012-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1376
1377         * gnus.el (gnus-valid-select-methods): Fix custom type.
1378
1379 2012-07-29  Teodor Zlatanov  <tzz@lifelogs.com>
1380
1381         * auth-source.el (auth-sources, auth-source-backend-parse)
1382         (auth-source-macos-keychain-search)
1383         (auth-source-macos-keychain-search-items)
1384         (auth-source-macos-keychain-result-append)
1385         (auth-source-macos-keychain-create): Support Mac OS X Keychains in
1386         auth-source.el through the /usr/bin/security utility.
1387         (auth-sources): Fix syntax error.
1388         (auth-source-macos-keychain-result-append): Fix variable name.
1389         (auth-sources, auth-source-macos-keychain-result-append): More fixes.
1390
1391 2012-07-27  Julien Danjou  <julien@danjou.info>
1392
1393         * message.el (fboundp): Add a defalias on `mail-dont-reply-to' for
1394         Emacs < 24.1
1395
1396 2012-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1397
1398         * message.el (message-kill-address): Don't kill last newline.
1399         (message-skip-to-next-address): Don't move to the next header.
1400         (message-fill-field-address): Work properly.
1401
1402 2012-07-25  Julien Danjou  <julien@danjou.info>
1403
1404         * gnus-art.el (gnus-kill-sticky-article-buffers): Reintroduce.
1405
1406 2012-07-24  Julien Danjou  <julien@danjou.info>
1407
1408         * mail-source.el (mail-source-movemail-and-remove): Remove, unused.
1409
1410         * nntp.el (nntp-send-nosy-authinfo, nntp-send-authinfo-from-file)
1411         (nntp-async-timer-handler): Remove, unused.
1412
1413         * nnimap.el (nnimap-get-responses): Remove, unused.
1414
1415         * nnheader.el (mail-header-set-extra): Remove, unused.
1416
1417         * netrc.el (netrc-find-service-number, netrc-store-data): Remove,
1418         unused.
1419
1420         * mm-view.el (mm-view-sound-file): Remove, unused.
1421
1422         * mm-url.el (mm-url-fetch-simple, mm-url-fetch-form)
1423         (mm-url-encode-multipart-form-data): Remove, unused.
1424
1425         * message.el (message-remove-signature, message-make-host-name)
1426         (message-fill-address): Remove, unused.
1427
1428         * gnus.el (gnus-writable-groups, gnus-group-guess-prefixed-name)
1429         (gnus-group-guess-full-name, gnus-group-guess-prefixed-name): Remove,
1430         unused.
1431
1432         * gnus-xmas.el (gnus-xmas-highlight-selected-summary)
1433         (gnus-xmas-call-region): Remove, unused.
1434
1435         * gnus-uu.el (gnus-uu-find-name-in-shar): Remove, unused.
1436
1437         * gnus-util.el (gnus-extract-address-component-name)
1438         (gnus-extract-address-component-email, gnus-sortable-date)
1439         (gnus-alist-to-hashtable, gnus-hashtable-to-alist)
1440         (gnus-process-live-p): Remove, unused.
1441
1442         * gnus-topic.el (gnus-group-parent-topic): Remove, unused.
1443
1444         * gnus-sum.el (gnus-score-set-default, gnus-article-parent-p)
1445         (gnus-article-read-p, gnus-uncompress-marks): Remove, unused.
1446         (gnus-summary-set-current-mark): Remove obsolete, empty and unused
1447         function.
1448
1449         * gnus-start.el (gnus-kill-newsgroup): Remove unused obsolete function.
1450
1451         * gnus-score.el (gnus-summary-score-crossposting)
1452         (gnus-score-regexp-bad-p): Remove, unused.
1453
1454         * gnus-salt.el (gnus-tree-goto-article): Remove, unused.
1455
1456         * gnus-range.el (gnus-sublist-p): Remove, unused.
1457
1458         * gnus-msg.el (gnus-mail-parse-comma-list, gnus-put-message): Remove,
1459         unused.
1460
1461         * gnus-kill.el (gnus-Newsgroup-kill-file): Remove, unused.
1462
1463         * gnus-int.el (gnus-list-active-group, gnus-request-group-articles)
1464         (gnus-request-associate-buffer): Remove, unused.
1465
1466         * gnus-group.el (gnus-group-set-method-info)
1467         (gnus-group-set-params-info): Remove, unused.
1468
1469         * gnus-fun.el (gnus-shell-command-to-string)
1470         (gnus-shell-command-on-region): Remove, unused.
1471
1472         * gnus-cite.el (gnus-cited-line-p): Remove, unused.
1473
1474         * gnus-art.el (gnus-article-text-type-exists-p)
1475         (article-translate-characters, gnus-article-hide-text-of-type)
1476         (gnus-kill-sticky-article-buffers, gnus-article-maybe-highlight):
1477         Remove, unused.
1478
1479 2012-07-22  Andrew Cohen  <cohen@bu.edu>
1480
1481         * nnir.el ("nnir"): Add 'virtual ability to nnir backend.
1482
1483 2012-07-21  Julien Danjou  <julien@danjou.info>
1484
1485         * message.el (message-dont-reply-to-names): Replace deprecated
1486         `rmail-dont-reply-to-names' with `mail-dont-reply-to-names'.
1487         (message-get-reply-headers): Ditto.
1488
1489 2012-07-18  Julien Danjou  <julien@danjou.info>
1490
1491         * sieve-mode.el (sieve-mode-map): Bind C-c C-c to
1492         `sieve-upload-and-kill'.
1493
1494         * sieve.el (sieve-bury-buffer): Remove function.
1495         (sieve-manage-mode-map): Map "q" to `kill-buffer'.
1496         (sieve-upload-and-kill): New function, mapped to C-c C-c.
1497
1498 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
1499
1500         * shr.el (shr-expand-url): Handle URL starting with `//'.
1501
1502 2012-07-13  Chong Yidong  <cyd@gnu.org>
1503
1504         * smime.el (smime-certificate-info): Set buffer-read-only directly,
1505         instead of calling toggle-read-only with a (bogus) argument.
1506
1507 2012-07-09  Tassilo Horn  <tassilo@member.fsf.org>
1508
1509         * gnus-sum.el (gnus-summary-limit-to-author): Use default value instead
1510         of initial input when reading the author to restrict the summary to.
1511
1512 2012-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1513
1514         * mm-decode.el (mm-shr):
1515         Allow overriding charset by mm-charset-override-alist.
1516
1517 2012-07-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1518
1519         * gnus-art.el (gnus-article-view-part):
1520         Toggle subparts of multipart/alternative part.
1521
1522 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1523
1524         * shr.el (shr-render-buffer): New command.
1525         (shr-visit-file): Use it.
1526
1527 2012-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1528
1529         * tests/gnustest-nntp.el, tests/gnustest-registry.el:
1530         Set no-byte-compile and no-update-autoloads.
1531
1532 2012-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
1533
1534         * mm-decode.el: Add coding cookie for a soft hyphen that mm-shr uses.
1535
1536 2012-06-25  Julien Danjou  <julien@danjou.info>
1537
1538         * nnimap.el (nnimap-request-articles-find-limit): Rename from
1539         `nnimap-request-move-articles-find-limit' since we do not use it only
1540         for move operations.
1541         (nnimap-request-accept-article): Use
1542         `nnimap-request-articles-find-limit' to limit search by message-id.
1543
1544 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
1545
1546         Support higher-resolution time stamps (Bug#9000).
1547
1548         * time-date.el (with-decoded-time-value): New arg PICO-SYMBOL in
1549         VARLIST.  It's optional, for backward compatibility.
1550         (encode-time-value): New optional arg PICO.  New type 3.
1551         (time-to-seconds) [!float-time]: Support the new picoseconds
1552         component if it's used.
1553         (seconds-to-time, time-subtract, time-add):
1554         Support ps-resolution time stamps as well.
1555
1556 2012-06-19  Julien Danjou  <julien@danjou.info>
1557
1558         * nnir.el (nnir-run-imap): Fix, use `nnimap-change-group'.
1559
1560         * nnimap.el (nnimap-log-buffer): Check that
1561         `window-point-insertion-type' is boundp, since it's not available in
1562         XEmacs.
1563
1564 2012-06-19  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
1565
1566         * nnimap.el (nnimap-log-buffer): Add this, setting
1567         `window-point-insertion-type' in the buffer to t.
1568         (nnimap-log-command): Use nnimap-log-buffer.
1569
1570 2012-06-19  Julien Danjou  <julien@danjou.info>
1571
1572         * nnimap.el (nnimap-find-article-by-message-id): Add an optional limit
1573         argument to be able to limit the search.
1574         (nnimap-request-move-article): Use `nnimap-request-move-articles-find-limit'.
1575         (nnimap-request-move-articles-find-limit): Add this to limit the search
1576         by Message-Id after a message move.
1577         (nnimap): Add defgroup.
1578
1579 2012-06-18  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
1580
1581         * gnus-win.el (gnus-configure-frame): Pass an arg to window-dedicated-p.
1582
1583 2012-06-15  Julien Danjou  <julien@danjou.info>
1584
1585         * nnimap.el (nnimap-find-article-by-message-id): Use
1586         `nnimap-possibly-change-group' rather than its own EXAMINE call.
1587         (nnimap-possibly-change-group): Add read-only argument.
1588         (nnimap-request-list): Use nnimap-possibly-change-group rather than
1589         issuing EXAMINE manually.
1590         (nnimap-find-article-by-message-id): Use `nnimap-possibly-change-group'
1591         with read-only argument.
1592         (nnimap-change-group): Rename from `nnimap-possibly-change-group'. We
1593         cannot possibly change because we need to be sure that it's either
1594         read-write or read-only.
1595
1596 2012-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1597
1598         * gnus-art.el (gnus-article-read-summary-keys): Protect against the key
1599         being bound to a lambda form.
1600
1601 2012-04-14  Wolfgang Jenkner  <wjenkner@inode.at>
1602
1603         * gnus-agent.el (gnus-agent-retrieve-headers): Recalculate the range of
1604         articles when fetch-old is non-nil (bug#11370).
1605
1606 2012-05-04  Wolfgang Jenkner  <wjenkner@inode.at>
1607
1608         * gnus-picon.el (gnus-picon-properties): New defcustom.
1609         (gnus-picon-create-glyph): Use it.
1610
1611 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1612
1613         * gnus-group.el (gnus-group-get-new-news): Respect
1614         `gnus-group-use-permanent-levels', as documented (bug#11638).
1615
1616 2012-06-10  Dave Abrahams  <dave@boostpro.com>
1617
1618         * gnus-int.el (gnus-warp-to-article): Limit registry warping to real
1619         groups (bug#11641).
1620
1621 2012-06-10  Toke Høiland-Jørgensen  <toke@toke.dk>  (tiny change)
1622
1623         * nnmaildir.el (nnmaildir-request-expire-articles): Ensure that `time'
1624         is an integer to avoid later problems.
1625
1626 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1627
1628         * shr.el: Add a iso-8859-1 cookie to make stuff work under other
1629         locales.
1630
1631         * mm-decode.el (mm-display-part): Dissect archives when hitting `RET'
1632         on a handle.
1633
1634         * gnus-sum.el (gnus-summary-limit-to-author): Use the current From
1635         address as the default.
1636         (gnus-summary-insert-old-articles): Don't include unexistent messages.
1637
1638         * nnfolder.el (nnfolder-save-buffer): Delete old versions silently.  It
1639         makes no sense to query the user about internal files.
1640
1641         * gnus-spec.el: Remove all the byte-compilation stuff, since
1642         benchmarking shows that it doesn't help when entering large summary
1643         buffers.
1644
1645         * gnus-xmas.el (gnus-xmas-define): Remove.
1646
1647         * gnus-util.el (gnus-byte-code): Remove.
1648
1649         * gnus-spec.el (gnus-update-format-specifications): Remove outdated
1650         grouplens stuff.
1651
1652 2012-06-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1653
1654         * gnus-msg.el (gnus-msg-mail): Warn the user about Gnus not running
1655         (bug#11514).
1656
1657 2012-06-07  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
1658
1659         * message.el (message-buffers): Return all buffers derived from Message
1660         to make `gnus-dired-attach' work with mu4e.
1661
1662 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1663
1664         * nntp.el: Stop the `letf' madness.
1665         (nntp--report-1): New var.
1666         (nntp-report): Merge nntp-report-1 into it.
1667         (nntp-with-open-group-function): Set nntp--report-1 instead of modifying
1668         the nntp-report function.
1669
1670         * auth-source.el: Fix comment-style to follow the convention.
1671
1672 2012-05-28  Daiki Ueno  <ueno@unixuser.org>
1673
1674         * mm-decode.el (mm-inhibit-auto-detect-attachment): New variable.
1675         (mm-dissect-singlepart): Don't guess the MIME type of
1676         application/octet-stream parts if mm-inhibit-auto-detect-attachment is
1677         set.
1678         (mm-dissect-multipart): Bind mm-inhibit-auto-detect-attachment if the
1679         toplevel MIME type is multipart/encrypted.
1680
1681 2012-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1682
1683         * gnus-msg.el (gnus-msg-mail): Ensure that gnus-newsgroup-name is
1684         a string so that Gcc works (bug#11514).
1685
1686 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1687
1688         * legacy-gnus-agent.el (gnus-agent-unhook-expire-days):
1689         * gnus-demon.el (gnus-demon-init): Don't bother with type-of.
1690
1691 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1692
1693         * gnus-win.el (gnus-configure-frame): Don't signal an error when
1694         jumping to *Server* from a dedicated *Group* window.
1695         (gnus-configure-frame): CSE.
1696
1697         * gnus-registry.el: Minor style cleanup.
1698         (gnus-registry--set/remove-mark): New function, extracted from
1699         gnus-registry-install-shortcuts.
1700         (gnus-registry-install-shortcuts): Use it.
1701
1702 2012-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1703
1704         * nnspool.el (news-path): Use eval-and-compile.
1705
1706 2012-05-24  Glenn Morris  <rgm@gnu.org>
1707
1708         * nnspool.el (news-directory, news-path, news-inews-program):
1709         Move here from paths.el.  Don't see a need for these to be autoloaded.
1710
1711         * gnus.el (gnus-default-nntp-server): Make it a defcustom.
1712         Merge in doc from paths.el version.  Don't see any need for this to be
1713         autoloaded, or for the warning about users not setting it.
1714
1715 2011-12-02  Wolfgang Jenkner  <wjenkner@inode.at>
1716
1717         * gnus-agent.el (gnus-agent-save-active): Deal with the "groups"
1718         format.  In particular, add an optional argument and a docstring.
1719
1720         * gnus-start.el (gnus-groups-to-gnus-format): Use it.
1721
1722         * nntp.el (nntp-finish-retrieve-group-infos): Make `nntp-server-buffer'
1723         current before calling `gnus-groups-to-gnus-format'.
1724         Note that this was already the case for `gnus-active-to-gnus-format'.
1725
1726 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
1727
1728         Fix minor Y10k bug.
1729         * nnweb.el (nnweb-google-parse-1): Don't assume years have 4 digits.
1730
1731 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1732
1733         * nnimap.el (nnimap-open-connection-1): Don't leave an "opening..."
1734         message once it's actually open.
1735
1736 2012-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
1737
1738         * gnus.el: Ma Gnus v0.5 is released.
1739
1740 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1741
1742         * auth-source.el (auth-source--aput-1, auth-source--aput)
1743         (auth-source--aget): New functions and macros.
1744         Use them instead of aput/aget.
1745
1746 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
1747
1748         * gnus.el (debbugs-gnu): Don't override existing autoload definition.
1749
1750 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
1751
1752         * plstore.el (plstore-called-interactively-p): New compat macro copied
1753         from message.el.
1754         (plstore-mode): Use it.
1755
1756 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
1757
1758         * plstore.el: Revive the editing feature.
1759         (plstore-mode): New mode to edit plstore file.
1760         (plstore-mode-toggle-display, plstore-mode-original)
1761         (plstore-mode-decoded): New command.
1762         (plstore--encode, plstore--decode, plstore--write-contents-functions)
1763         (plstore--insert-buffer, plstore--make): New function.
1764         (plstore-open, plstore-save): Simplify by using them.
1765
1766 2012-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1767
1768         * pop3.el (pop3-wait-for-messages): Fix retrieved data size calculation.
1769
1770 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
1771
1772         * tls.el (open-tls-stream): Remove unused binding.
1773
1774 2012-04-16  Glenn Morris  <rgm@gnu.org>
1775
1776         * nndraft.el (nndraft-request-list): Fix declaration.
1777
1778 2012-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1779
1780         * mm-decode.el (mm-dissect-buffer): Doc fix.
1781
1782         * gnus-msg.el (gnus-inews-insert-gcc): Don't do the alist stuff when we
1783         don't have a current group.
1784
1785         * gnus-sum.el (gnus-handle-ephemeral-exit): Avoid creating the group
1786         buffer if it doesn't exist.
1787
1788         * gnus-group.el (gnus-group-read-ephemeral-group): If no quit-config is
1789         given, mark the group as ephemeral with the current window conf.
1790
1791         * gnus-sum.el (gnus-set-global-variables): Don't assume that the group
1792         buffer exists, which it doesn't if we haven't started Gnus.
1793         (gnus-summary-exit): Allow quitting when we don't have a group buffer.
1794
1795 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1796
1797         * mml.el (mml-generate-mime): Allow specifying what the top-level part
1798         type is.
1799
1800         * gnus-start.el (gnus-clean-old-newsrc): Remove totally bogus
1801         `unexists' entries.
1802         (gnus-clean-old-newsrc): Fix last checkin.
1803
1804         * nnimap.el (nnimap-update-info): None of the articles below the active
1805         low-water mark exist.
1806
1807         * dgnushack.el: Get rid of XEmacs compilation warning.
1808
1809         * gnus-msg.el (gnus-summary-cancel-article): See what From header we
1810         would have gotten if we posted to the group, and use that to compare
1811         against the message we want to cancel (bug#10808).
1812
1813         * gnus-sum.el (gnus-auto-center-summary): `scroll-margin' isn't defined
1814         on XEmacs.
1815
1816 2012-04-10  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
1817
1818         * gnus-sum.el (gnus-auto-center-summary): Set default to respect
1819         `scroll-margin'.
1820
1821 2012-04-10  Elias Oltmanns  <eo@nebensachen.de>  (tiny change)
1822
1823         * gnus-cite.el (gnus-dissect-cited-text): A single line without
1824         citation prefix within a block of cited text should be considered part
1825         of that block *only* if it is a blank line.
1826
1827 2012-04-09  Chong Yidong  <cyd@gnu.org>
1828
1829         * binhex.el, hashcash.el, uudecode.el:
1830         Remove * characters from the front of variable docstrings.
1831
1832 2012-04-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1833
1834         * shr.el (shr-find-fill-point): Remove unused code; don't break a line
1835         before kinsoku-bol characters nor within kinsoku-eol characters.
1836
1837 2012-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1838
1839         * gnus-sync.el (gnus-topic-alist, gnus-group-topic)
1840         (gnus-topic-create-topic, gnus-topic-enter-dribble): Silence compiler.
1841         (gnus-sync-read): Use mapc instead of mapcar.
1842
1843         * mm-archive.el: Require mm-decode for some macros.
1844         (gnus-recursive-directory-files, mailcap-extension-to-mime): Silence
1845         the byte compiler.
1846         (mm-archive-decoders): New function that returns the value of
1847         the mm-archive-decoders variable.
1848
1849         * mm-decode.el: Don't require mm-archive; autoload mm-archive functions
1850         instead.
1851         (mm-dissect-singlepart): Use the function mm-archive-decoders.
1852
1853         * nnimap.el (gnus-refer-thread-use-nnir):
1854         * nnmail.el (mail-send-and-exit): Silence the byte compiler.
1855
1856 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1857
1858         * gnus-compat.el: Define `bound-and-true-p' for XEmacs.
1859
1860 2012-03-12  Peter Münster  <pmrb@free.fr>
1861
1862         * gnus-demon.el (gnus-demon-timers): Now a plist (function -> timer).
1863         (gnus-demon-cancel): Ditto.
1864         (gnus-demon-run-callback): When function cannot be called due to low
1865         idleness, call it when idleness reaches the expected value, instead of
1866         waiting another timer period.
1867         (gnus-demon-init): Add `time' to arguments of call-back.
1868
1869 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1870
1871         * dgnushack.el: Bind `gnus-registry-enabled' for XEmacs.
1872
1873         * gnus.el: Register gnus-registry functions.
1874
1875         * gnus-registry.el (gnus-try-warping-via-registry): Moved here and
1876         indent.
1877
1878         * gnus-int.el (gnus-warp-to-article): Check whether the registry is
1879         enabled before warping.
1880
1881 2012-03-22  Dave Abrahams  <dave@boostpro.com>
1882
1883         * gnus-sum.el (gnus-summary-insert-subject): Record information in the
1884         registry about each article retrieved.
1885
1886         * gnus-int.el (gnus-select-group-with-message-id): New function.
1887         (gnus-try-warping-via-registry): Ditto.
1888         (gnus-warp-to-article): Fall back on the registry.
1889
1890 2012-03-22  Sergio Martínez  <samf0xb58@gmail.com>  (tiny change)
1891
1892         * nnimap.el (nnimap-request-scan): Allow `nnimap-inbox' to be a list of
1893         inboxes.
1894
1895 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1896
1897         * nnimap.el (nnimap-fetch-partial-articles): Minor doc string fixup.
1898
1899 2012-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1900
1901         * gnus-msg.el (gnus-summary-resend-message-insert-gcc): Assume that
1902         gnus-gcc-self-resent-messages may be a group parameter.
1903         (gnus-summary-resend-message): Don't encode encoded words in header
1904         when Gcc'ing resent message.
1905
1906 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1907
1908         * shr.el (shr-insert): Treat non-breaking space just like normal
1909         space.  This seems to produce more pleasing results.
1910         (shr-insert): Only insert a blank line if we're starting from an image.
1911         (shr-tag-br): Allow <br> to end lines or to make a single blank line.
1912         (shr-ensure-paragraph): Consider lines with white space to be blank.
1913
1914 2012-03-15  Elias Pipping  <pipping@lavabit.com>
1915
1916         * Makefile.in: Respect DESTDIR.
1917
1918 2012-03-14  Christopher Schmidt  <christopher@ch.ristopher.com>
1919
1920         * gnus-msg.el (gnus-inews-do-gcc): Add gnus-gcc-pre-body-encode-hook
1921         and gnus-gcc-post-body-encode-hook.
1922
1923 2012-03-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1924
1925         * gnus-group.el (gnus-group-expire-articles-1): Don't try to expire
1926         messages that don't exist.
1927
1928         * gnus-sum.el (gnus-summary-expire-articles): Ditto.
1929
1930 2012-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1931
1932         pgg-def.el, pgg-gpg.el, pgg-parse.el, pgg-pgp.el, pgg-pgp5.el, pgg.el:
1933         Remove.
1934
1935         dgnushack.el (pgg-snarf-keys-region): Remove autoload.
1936
1937         lpath.el (pgg-parse-crc24-string, pgg-parse-crc24): Remove declaration.
1938
1939 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1940
1941         * gnus-msg.el (gnus-inews-insert-gcc): Protect against when we don't
1942         have a group name.
1943
1944         * gnus-art.el (article-wash-html): Ensure that we insert the HTML into
1945         a multibyte buffer (bug#7410).
1946         (article-wash-html): Parse the original article buffer to get the
1947         unencoded data (bug#7410).
1948
1949         * gnus-start.el (gnus-read-newsrc-el-file): Protect against broken
1950         .newsrc.el files.
1951
1952 2012-04-05  Bastien Guerry  <bzg@altern.org>
1953
1954         * color.el (color-lighten-name): Fix typo.
1955
1956 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1957
1958         * auth-source.el (auth-source-netrc-create): Quote tokens that contain
1959         "#" to avoid having them interpreted as comments.
1960
1961 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1962
1963         * shr.el (shr-insert): Update the text state properly to avoid
1964         inserting spurious paragraph starts.
1965
1966 2012-03-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1967
1968         * shr.el (shr-table-widths): Divide the extra width more fairly over
1969         the TDs (bug#10973).
1970         (shr-render-td): Don't delete too much padding.
1971         (shr-natural-width): Compute the natural width more correctly.
1972         (shr-insert): Allow the natural width to be computed for tables again.
1973         (shr-tag-table-1): Rework how the natural widths are computed by
1974         rendering the table a third time.
1975         (shr-natural-width): Removed.
1976         (shr-buffer-width): New function.
1977         (shr-expand-newlines): Use it.
1978
1979         * gnus-msg.el (gnus-bug): Don't delete the other windows.  We may be
1980         using a `gnus-use-full-window' setup (bug#11013).
1981
1982 2012-03-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1983
1984         * gnus-int.el (gnus-backend-trace): Flip default to nil before Emacs
1985         24.1 release.
1986
1987 2012-03-10  David Edmondson  <dme@dme.org>
1988
1989         * mm-uu.el (mm-uu-forward-extract): Allow for blank lines between the
1990         'Forwarded Message' header and the start of the message.
1991
1992 2012-03-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1993
1994         * gnus-msg.el (gnus-msg-mail): Call `message-mail' correctly when Gnus
1995         isn't running (bug#10897).
1996
1997 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1998
1999         * tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
2000         This is inconsistent with all the other stream functions, which leave
2001         the setting up to the higher levels (if so wanted) (bug#10931).
2002
2003 2012-02-28  Glenn Morris  <rgm@gnu.org>
2004
2005         * gmm-utils.el, gnus-agent.el, gnus-score.el, messagexmas.el,
2006         mm-decode.el: Standardize possessive apostrophe usage.
2007
2008 2012-02-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2009
2010         * shr.el (shr-column-specs): Protect against TDs with "width: 0%".
2011
2012 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
2013
2014         * parse-time.el (parse-time-string): Allow extractor to return nil.
2015
2016 2012-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2017
2018         * nntp.el (nntp-send-authinfo): Work for secure nntp entry in authinfo.
2019
2020 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
2021
2022         * gnus-start.el (gnus-clean-old-newsrc): Allow a FORCE parameter.
2023
2024 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
2025
2026         * mm-decode.el (mm-shr): Remove "soft hyphens".
2027
2028         * nnimap.el (nnimap-request-list): Return the group names encoded as
2029         utf8.  Otherwise non-European group names don't work.
2030         (nnimap-request-newgroups): Ditto.
2031
2032         * gnus-sum.el (gnus-summary-insert-old-articles): Fix the syntax for
2033         the default in `read-string' (bug#10757).
2034
2035         * gnus-msg.el (gnus-group-post-news): Don't bug out on `C-u a' on
2036         topics (bug#10843).
2037
2038         * nnimap.el (nnimap-log-command): Add the IMAP address to the log
2039         buffer.  Suggested by Herbert Valerio Riedel.
2040         (nnimap-request-move-article): Delete the message from the correct IMAP
2041         server.
2042
2043 2012-02-19  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
2044
2045         * gnus-demon.el (gnus-demon-init): Don't multiply time twice.
2046         Reported by Peter Münster.
2047
2048 2012-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
2049
2050         * shr.el (shr-image-fetched): Make sure we really kill the right
2051         buffer.
2052
2053 2012-02-16  Leo Liu  <sdl.web@gmail.com>
2054
2055         * gnus-start.el (gnus-1): Avoid duplicate entries.
2056
2057 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
2058
2059         * imap.el: Remove.
2060
2061         * nntp.el (nntp-coding-system-for-read): Remove.
2062         (nntp-coding-system-for-write): Ditto.
2063         (nntp-open-connection): Just use `binary' directly.
2064
2065         * gnus-start.el (gnus-clean-old-newsrc): Delete `unexist' from pre-Ma
2066         Gnus 0.3.
2067
2068 2012-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
2069
2070         * mm-decode.el (mm-dissect-singlepart): Guess what the type of
2071         application/octet-stream parts really is.
2072
2073         * gnus-sum.el (gnus-propagate-marks): Remove.
2074
2075 2012-02-15  Paul Eggert  <eggert@cs.ucla.edu>
2076
2077         * shr.el (shr-rescale-image): Undo previous change; see
2078         <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
2079
2080 2012-02-15  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
2081
2082         * gnus.el: Ma Gnus v0.3 is released.
2083
2084 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
2085
2086         * gnus-sum.el (gnus-summary-local-variables): Make
2087         `gnus-newsgroup-unexist' into a local variable.
2088
2089 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
2090
2091         * registry.el (registry-usage-test, registry-persistence-test): Move to
2092         tests/gnustest-registry.el.
2093         (registry-make-testable-db, registry-match-test)
2094         (registry-instantiation-test): Move to tests/gnustest-registry.el.
2095
2096         * gnus-registry.el (gnus-registry-misc-test)
2097         (gnus-registry-usage-test): Move to tests/gnustest-registry.el.
2098
2099         * tests/gnustest-registry.el: New file with the registry and
2100         gnus-registry ERT tests.
2101
2102 2012-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2103
2104         * gnus-msg.el (gnus-summary-resend-message): Make
2105         gnus-summary-resend-message-insert-gcc be last item in
2106         message-header-setup-hook.
2107
2108 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
2109
2110         * nnfolder.el (nnfolder-marks-directory, nnfolder-marks-is-evil)
2111         (nnfolder-marks, nnfolder-marks-file-suffix, nnfolder-marks-modtime):
2112         Remove.
2113         (nnfolder-open-server): Don't use marks.
2114         (nnfolder-request-delete-group): Ditto.
2115         (nnfolder-request-rename-group): Ditto.
2116         (nnfolder-request-set-mark, nnfolder-request-marks)
2117         (nnfolder-group-marks-pathname, nnfolder-marks-changed-p)
2118         (nnfolder-save-marks, nnfolder-open-marks): Remove.
2119
2120         * nnml.el (nnml-marks-is-evil, nnml-marks-file-name, nnml-marks)
2121         (nnml-marks-modtime): Remove.
2122         (nnml-request-delete-group): Don't use marks.
2123         (nnml-request-rename-group): Ditto.
2124         (nnml-request-set-mark, nnml-request-marks, nnml-marks-changed-p)
2125         (nnml-save-marks, nnml-open-marks): Remove.
2126
2127         * nntp.el (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
2128         (nntp-marks-modtime, nntp-marks-directory, nntp-request-set-mark)
2129         (nntp-request-marks, nntp-marks-directory, nntp-marks-changed-p)
2130         (nntp-save-marks, nntp-open-marks, nntp-possibly-create-directory)
2131         (nntp-server-to-method-cache): Remove.
2132
2133         * shr.el (shr-rescale-image): Fix wrong merge.
2134
2135 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
2136
2137         * shr.el (shr-remove-trailing-whitespace): Really delete the padding on
2138         too-wide lines.
2139
2140 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
2141
2142         * nnimap.el (nnimap-record-commands): New variable.
2143         (nnimap-log-command): Use it.
2144         (nnimap-make-process-buffer): Add a space to the process buffer.
2145         (nnimap-transform-headers): Don't bug out on header lines containing
2146         stuff that look like IMAP length encodings.
2147
2148         * shr.el (shr-rescale-image): Allow viewing large images.
2149
2150 2012-02-12  Lars Ingebrigtsen  <larsi@gnus.org>
2151
2152         * nnml.el (nnml-request-compact-group): Delete the marks file after
2153         compaction (bug#10800).
2154
2155         * gnus-art.el (gnus-stop-downloads): Stop `url-queue' downloads on
2156         group exit.
2157
2158         * nnimap.el (nnimap-parse-flags): Parse correctly when we have mixed
2159         QRESYNC/FETCH output.
2160
2161 2012-02-11  Glenn Morris  <rgm@gnu.org>
2162
2163         * sieve-manage.el (sieve-manage-default-stream):
2164         * shr.el (shr):
2165         * nnir.el (nnir-ignored-newsgroups, nnir-summary-line-format)
2166         (nnir-retrieve-headers-override-function)
2167         (nnir-imap-default-search-key, nnir-notmuch-program)
2168         (nnir-notmuch-additional-switches, nnir-notmuch-remove-prefix)
2169         (nnir-method-default-engines):
2170         * message.el (message-cite-reply-position):
2171         * gssapi.el (gssapi-program):
2172         * gravatar.el (gravatar):
2173         * gnus-sum.el (gnus-refer-thread-use-nnir):
2174         * gnus-registry.el (gnus-registry-unfollowed-addresses)
2175         (gnus-registry-max-pruned-entries):
2176         * gnus-picon.el (gnus-picon-inhibit-top-level-domains):
2177         * gnus-int.el (gnus-after-set-mark-hook)
2178         (gnus-before-update-mark-hook):
2179         * gnus-async.el (gnus-async-post-fetch-function):
2180         * auth-source.el (auth-source-cache-expiry):
2181         Add missing :version tags to new defcustoms and defgroups.
2182
2183 2012-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
2184
2185         * gnus-sum.el (gnus-adjust-marked-articles): Add to
2186         `gnus-newsgroup-unexist'.
2187
2188         * gnus.el (gnus-article-mark-lists): Add `unexist' to the list of
2189         marks.
2190         (gnus-article-special-mark-lists): Put the `unexist' in the special
2191         marks list instead.
2192
2193         * gnus-sum.el (gnus-articles-to-read): Don't include unexisting
2194         articles in the list of articles to be selected.
2195
2196         * nnimap.el (nnimap-retrieve-group-data-early): Query for unexisting
2197         articles.
2198         (nnimap-update-info): Keep track of unexisting articles.
2199         (nnimap-update-qresync-info): Ditto.
2200
2201 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
2202
2203         * message.el (message-default-send-mail-function): Made into own
2204         function for reuse by emacsbug.el.
2205
2206 2012-02-09  Juanma Barranquero  <lekktu@gmail.com>
2207
2208         * gnus.el (gnus-method-ephemeral-p): Move after declaration of defsubst
2209         `gnus-sloppily-equal-method-parameters' to avoid a warning.
2210
2211 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
2212
2213         * mm-archive.el (mm-archive-dissect-and-inline): New function.
2214         (mm-archive-dissect-and-inline): Fix up the undisplayer.
2215
2216         * gnus-compat.el: Define `timer-set-function'.
2217
2218         * mm-decode.el (mm-display-external): Output the text from the command
2219         in the buffer after the command finished.  This makes text-based
2220         commands behave better.
2221
2222 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
2223
2224         * gnus-compat.el: Add a compat for the old `url-retrieve'.
2225
2226 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2227
2228         * gnus-compat.el: Make `help-function-arglist' be compatible on Emacs
2229         23.1.
2230
2231 2012-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2232
2233         * gnus-sum.el (gnus-summary-show-thread): Revert last two changes.
2234
2235 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2236
2237         * message.el (smtpmail-smtp-user): Silence compiler warning.
2238
2239 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2240
2241         * message.el (message-multi-smtp-send-mail): Also allow specifying the
2242         SMTP user name.
2243
2244 2012-02-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2245
2246         * gnus-sum.el (gnus-summary-show-thread):
2247         next-single-char-property-change may return nil in XEmacs.
2248         (gnus-summary-article-map): Fix typo.
2249
2250 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
2251
2252         * gnus-msg.el (gnus-msg-mail): Use `message-mail' if Gnus isn't
2253         running.
2254
2255         * nnimap.el (nnimap-wait-for-response): Minor fixup of message string.
2256
2257         * gnus.el (gnus-server-extend-method): Don't add an -address component
2258         if the method already has one (bug#9676).
2259
2260 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
2261
2262         * gnus-sum.el (gnus-summary-insert-old-articles): Use a default instead
2263         of an initial-input for consistency (bug#10757).
2264
2265         * dgnushack.el: Fix XEmacs compilation warning.
2266
2267         * shr.el: Inhibit getting and sending cookies when fetching pictures.
2268
2269         * gnus-html.el (gnus-html-schedule-image-fetching): Ditto.
2270
2271 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2272
2273         * shr.el (shr-remove-trailing-whitespace): Don't strip whitespace from
2274         lines that are narrower than the window width.  Otherwise background
2275         "blocks" will look less readable.
2276
2277 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2278
2279         * nnimap.el (nnimap-transform-headers): Remove unused variable.
2280         (nnimap-transform-headers): Fix parsing BODYSTRUCTURE elements that
2281         have newlines within the strings, and where the UID comes after the
2282         BODYSTRUCTURE element (bug#10537).
2283
2284         * shr-color.el (shr-color-set-minimum-interval): Rename to add prefix
2285         (bug#10732).
2286
2287         * shr.el (shr-insert-document): Add doc string.
2288         (shr-visit-file): Ditto.
2289         (shr-remove-trailing-whitespace): New function.
2290         (shr-insert-document): Use it to clean up trailing whitespace as the
2291         final step (bug#10714).
2292
2293 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2294
2295         * gnus-sum.el (gnus-summary-exit-no-update): Really deaden the summary
2296         buffer if `gnus-kill-summary-on-exit' is nil.
2297
2298 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2299
2300         * gnus-sum.el (gnus-handle-ephemeral-exit): Allow exiting from Gnus
2301         when just reading a single group from "without" Gnus.
2302
2303 2012-02-06  Chong Yidong  <cyd@gnu.org>
2304
2305         * gnus-sum.el (gnus-summary-show-thread):
2306         next-single-char-property-change never returns nil (Bug#8657).
2307
2308 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
2309
2310         * message.el (message-multi-smtp-send-mail): New function.
2311         (message-multi-smtp-send-mail): Respect the X-Message-SMTP-Method
2312         header to implement multi-SMTP functionality.
2313
2314         * gnus-agent.el (gnus-agent-send-mail-function): Removed.
2315         (gnus-agentize): Don't set it.
2316         (gnus-agent-send-mail): Don't use it.
2317
2318         * gnus-sum.el (gnus-summary-widget-backward): New function and
2319         keystroke.
2320
2321         * gnus-compat.el: More the compat functions more compatible.
2322
2323         * shr.el (shr-put-image): Remove underlines from sliced images.
2324         (shr-zoom-image): Compute the region to be replaced more correctly.
2325
2326 2012-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2327
2328         * gnus-msg.el (gnus-gcc-self-resent-messages): New user option.
2329         (gnus-summary-resend-message-insert-gcc): New function.
2330         (gnus-summary-resend-message): Modify message-header-setup-hook and
2331         message-sent-hook to make it work for Gcc.
2332         (gnus-inews-do-gcc): Update the number of unread articles of groups
2333         that messages are Gcc'd to.
2334
2335         * message.el (message-resend): Run message-sent-hook to do Gcc.
2336
2337 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
2338
2339         * lpath.el: Fix an XEmacs compilation warning.
2340
2341         * gnus-compat.el: Require `help-fns' to fix compilation error.
2342
2343         * gnus-registry.el (gnus-registry-fixup-registry): Move the message to
2344         a higher level to silence compilation.
2345
2346         * gnus-art.el (gnus-shr-put-image): Take and pass on a `flags'
2347         parameter to allow controlling the scaling.
2348
2349         * shr.el (shr-zoom-image): New command and keystroke.
2350         (shr-put-image): Take a `size' flag to say how to scale the image.
2351
2352         * gnus-compat.el: Redefine `delete-directory' to provide recursive
2353         deletion unless already defined.
2354
2355         * gnus.el (gnus-compat): Require it.
2356
2357         * gnus-compat.el: New file.
2358
2359         * gnus-start.el (gnus-clean-old-newsrc): New function.
2360         (gnus-read-newsrc-file): Use it.
2361
2362         * mm-archive.el (mm-dissect-archive): Use it to get all file names.
2363         Use recursive deletion.
2364         (mm-dissect-archive): Add support for zip files.
2365
2366         * gnus-util.el (gnus-recursive-directory-files): New function.
2367
2368         * mm-archive.el (mm-archive-list-files): Inline text and image parts.
2369         (mm-archive-decoders): Add tgz support.
2370
2371         * mm-decode.el (mm-shr): Make sure that the HTML ends with a newline.
2372         Otherwise inserting text into the Gnus buffer can look odd.
2373
2374         * gnus-art.el (gnus-mime-inline-part): Slight clean-up.
2375
2376         * mm-archive.el (mm-archive-decoders): Add support for tar.
2377
2378         * gnus.el (gnus-logo-color-alist): Change the colours for Ma Gnus.
2379
2380         * nnmail.el (nnmail-extra-headers): Add Cc to the default.
2381
2382 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
2383
2384         * mm-decode.el (mm-dissect-singlepart): Check that the decoder exists.
2385
2386         * mm-archive.el: New file.
2387
2388         * mm-decode.el (mm-dissect-singlepart): Use it to decode ms-tnef files.
2389
2390         * mm-util.el (mm-find-buffer-file-coding-system): Comment fix.
2391
2392         * message.el (message-goto-*): Make all the `message-goto-*' commands
2393         push the mark before moving point.  This makes it easier to go back to
2394         where you came from after editing whatever you jumped to.
2395
2396 2012-01-31  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
2397
2398         * gnus.el: Ma Gnus v0.1 is released.
2399
2400 2012-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
2401
2402         * nnimap.el (nnimap-open-server): Allow switching the nnoo server
2403         without reconnecting.
2404         (nnimap-possibly-change-group): Ditto.
2405         (nnimap-finish-retrieve-group-infos): Don't reconnect if the server
2406         connection has died before being called.
2407
2408 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
2409
2410         * nnimap.el (nnimap-retrieve-group-data-early): Don't say we're doing
2411         an initial sync unless we're really doing one.
2412
2413         * gnus-group.el (gnus-group-read-ephemeral-group): Don't add a new
2414         address parameter if one already exists (bug#9676).
2415
2416         * gnus-msg.el (gnus-summary-mail-forward): Respect the process marks,
2417         not the prefix, as documented (bug#10689).
2418
2419 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
2420
2421         * gnus.el (gnus-valid-select-methods): nnmaildir also saves marks in
2422         the "server".
2423
2424         * gnus-group.el (gnus-group-get-new-news-this-group): Don't overwrite
2425         the real error message with the useless "previously known to be down".
2426         Which isn't even correct.
2427
2428         * nntp.el (nntp-open-connection): Report the error message if the nntp
2429         server can't be reached.
2430
2431         * nnimap.el (nnimap-retrieve-group-data-early): Keep track of how many
2432         groups we do a total scan for.
2433         (nnimap-wait-for-response): Say that we're doing a total scan, if we're
2434         doing that.
2435
2436 2012-01-31  Jim Meyering  <jim@meyering.net>
2437
2438         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
2439         Correct a comment (insert "not") and hide nominally-doubled "to".
2440
2441 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
2442
2443         * gnus.el (gnus-version): Change name to "Ma Gnus".
2444
2445 2012-01-30  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
2446
2447         * gnus-agent.el (gnus-agent-auto-agentize-methods): Point to the Agent
2448         section in the manual.
2449
2450 2012-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
2451
2452         * rfc2047.el (rfc2047-encode-region): Allow not folding the encoded
2453         words.
2454         (rfc2047-encode-string): Ditto.
2455         (rfc2047-encode-parameter): Don't fold parameters.  Some MUAs do not
2456         understand folded filename="..." parameters, for instance.
2457
2458         * nnimap.el (nnimap-wait-for-response): Include the imap server name in
2459         the message for greater debuggability.
2460
2461 2012-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
2462
2463         * mm-view.el (mm-display-inline-fontify): Bind `font-lock-support-mode'
2464         instead of setting it locally, since the latter doesn't seem to have
2465         any effect (most of the time).
2466
2467 2012-01-27  Elias Pipping  <pipping@lavabit.com>  (tiny change)
2468
2469         * shr.el (shr-browse-url): Fix the name of the `browse-url-mail'
2470         function call.
2471
2472 2012-01-27  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
2473
2474         * gnus-demon.el (gnus-demon-run-callback, gnus-demon-init): Convert to
2475         seconds, and make the repeat clause with HH:MM specs work as
2476         documented.
2477
2478 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
2479
2480         * proto-stream.el (proto-stream-capability-open): Fall back on
2481         :end-of-command if :end-of-capability doesn't exist.
2482
2483 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2484
2485         * gnus-sum.el (gnus-summary-mode): Don't make bidi-paragraph-direction
2486         bound globally in old Emacsen and XEmacsen.
2487
2488 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
2489
2490         * gnus-start.el (gnus-get-unread-articles): Clear out "early" methods
2491         so that previous errors don't prohibit getting new news.
2492
2493         * nnimap.el (nnimap-retrieve-group-data-early): Ditto.
2494
2495         * nntp.el (nntp-retrieve-group-data-early): Ditto.
2496
2497 2012-01-26  Nick Alcock  <nick.alcock@oracle.com>  (tiny change)
2498
2499         * gnus.el (gnus-group-find-parameter): Check for liveness of the
2500         buffer, not of the string which is its name.
2501
2502 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
2503
2504         * proto-stream.el (proto-stream-capability-open): Wait for
2505         :end-of-capability, not :end-of-command.
2506
2507         * gnus-sum.el (gnus-summary-move-article): Don't propagate marks to
2508         non-server-marks groups.
2509         (gnus-group-make-articles-read): Ditto.
2510
2511         * gnus-srvr.el (gnus-server-prepare): Use it to avoid showing ephemeral
2512         methods (bug#9676).
2513
2514         * gnus.el (gnus-method-ephemeral-p): New function.
2515
2516 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2517
2518         * gnus-sum.el (gnus-summary-mode): Force paragraph direction to be
2519         left-to-right.
2520
2521 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
2522
2523         * nnimap.el (nnir-search-thread): Autoload to avoid a compilation
2524         warning.
2525
2526 2012-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
2527
2528         * gnus-sum.el (gnus-summary-line-format-alist): Don't try to
2529         macroexpand the nnir things, since they haven't been defined yet, and
2530         nnir requires gnus-sum.
2531
2532 2012-01-24  Julien Danjou  <julien@danjou.info>
2533
2534         * color.el (color-rgb-to-hsl): Fix value computing.
2535         (color-hue-to-rgb): New function.
2536         (color-hsl-to-rgb): New function.
2537         (color-clamp, color-saturate-hsl, color-saturate-name)
2538         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
2539         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
2540
2541 2012-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2542
2543         * mm-decode.el (mm-interactively-view-part): Fix prompt.
2544
2545 2012-01-19  Julien Danjou  <julien@danjou.info>
2546
2547         * color.el (color-name-to-rgb): Use the white color to find the max
2548         color component value and return correctly computed values.
2549         (color-name-to-rgb): Add missing float conversion for max value.
2550
2551 2012-01-10  Teodor Zlatanov  <tzz@lifelogs.com>
2552
2553         * nntp.el (nntp-send-authinfo): Query `auth-source-search' with the
2554         logical server name in addition to the actual machine address.
2555
2556         * auth-source.el (auth-source-user-and-password): Add convenience
2557         wrapper to search by just host and optionally user.
2558
2559 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2560
2561         * shr.el (shr-visit-file): Move point to the beginning of the buffer
2562         after rendering.
2563
2564 2012-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
2565
2566         * gnus-sync.el (gnus-sync-newsrc-groups): Quote normally.
2567         (gnus-sync-lesync-pre-save-group-entry): Remove invalid invlists.
2568         (gnus-sync-lesync-normalize-group-entry): Ignore a few more keys.
2569
2570 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2571
2572         * gnus-sum.el (gnus-summary-read-group): Document more parameters
2573         (bug#9693).
2574         (gnus-summary-setup-buffer): Document return value (bug#9697).
2575
2576         * mm-decode.el (mm-interactively-view-part): Use `completing-read',
2577         since ido doesn't work on symbols (bug#9632).
2578
2579         * gnus.el (gnus-group-fast-parameter): Use the same precedence rules
2580         when getting a single value as when getting all the values.  This means
2581         that atoms like `gcc-self' work cumulatively, like variable settings,
2582         instead of getting the value from the last matching clause.
2583         (gnus-group-find-parameter): Protect against the group buffer not
2584         existing (bug#9585).
2585
2586 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2587
2588         * gnus-start.el (gnus-activate-group): Document more parameters
2589         (bug#9694).
2590
2591         * gnus-group.el (gnus-group-read-ephemeral-group): Doc clarification
2592         (bug#9692).
2593
2594         * gnus-agent.el (gnus-agent-store-article): Tell the Agent when the
2595         article was fetched, so that it can be expired later (bug#9958).
2596         (gnus-agent-summary-fetch-series): Add doc string.
2597         (gnus-agent-summary-fetch-group): Don't remove tick and dormant marks
2598         (bug#9517).
2599
2600         * nntp.el (nntp-retrieve-groups): Refuse to do retrieval when an async
2601         retrieval is happening.
2602
2603         * gnus.el (gnus-parameters): Doc fix.
2604
2605 2012-01-06  Dave Abrahams  <dave@boostpro.com>
2606
2607         * gnus-sum.el (gnus-summary-refer-thread): If the subtree is hidden,
2608         show the thread after expansion.
2609
2610 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2611
2612         * gnus-art.el (article-narrow-to-head): If the head is completely
2613         empty, narrow to the empty region (bug#9764).
2614
2615         * gnus-sum.el (gnus-summary-mark-article-as-unread): Mark articles as
2616         read, and then mark them as unread only when the unread mark is used.
2617         This makes `C-- T k' actually work, even though it's confusing.
2618
2619         * gnus-win.el (gnus-all-windows-visible-p): Ensure that the buffer is
2620         alive before we try to find its window.
2621
2622 2012-01-06  Brian Sniffen  <bsniffen@akamai.com>  (tiny change)
2623
2624         * mm-decode.el (mm-display-external): Use a longer timeout for the
2625         deletion to allow slow programs to display the file.
2626
2627 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2628
2629         * gnus-art.el (gnus-article-browse-delete-temp-files): Fix up the
2630         prompt to be less confusing.
2631
2632         * gnus-msg.el (gnus-summary-reply): Do not give a `switch-to-buffer'
2633         argument to `message-reply'.  This broke `special-display-*' frame
2634         pop-uping (bug#10238).
2635
2636 2012-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2637
2638         * starttls.el (starttls-available-p): Return nil on Windows/MS-DOS
2639         systems, since these allegedly don't work there.
2640
2641 2012-01-04  Chris Gray  <chrismgray@gmail.com>  (tiny change)
2642
2643         * mm-decode.el (mm-shr): Check that `gnus-summary-buffer' really is a
2644         live buffer.
2645
2646 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2647
2648         * nnir.el (nnir-retrieve-headers): Protect against the article not
2649         existing on the server (bug#10335).
2650
2651 2012-01-04  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
2652
2653         * gnus-agent.el (gnus-agent-load-local): Recompute
2654         gnus-agent-article-local on changing method.
2655
2656 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2657
2658         * gnus.el (gnus-parameters): Note precedence.
2659
2660 2012-01-04  Leo Liu  <sdl.web@gmail.com>
2661
2662         * nndraft.el (nndraft-update-unread-articles): Don't move point around
2663         in the group buffer.
2664
2665 2012-01-04  Julien Danjou  <julien@danjou.info>
2666
2667         * nnimap.el (nnimap-update-info): Fix an error when all articles UIDs
2668         change.
2669
2670 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2671
2672         * shr.el (shr-rescale-image): Add :ascent 100 to the rescaled picture,
2673         too.
2674
2675         * nntp.el (nntp-retrieve-group-data-early): Use it.
2676
2677 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2678
2679         * nntp.el (nntp-retrieval-in-progress): New variable.
2680         (nntp-make-process-buffer): Make it buffer-local.
2681
2682         * gnus-demon.el (gnus-demon-time-to-step): Resurrect function lost in
2683         2010.
2684         (gnus-demon-init): Use it to compute the time if time is on the form
2685         "04:23".
2686
2687         * gnus-topic.el (gnus-topic-history): Define `gnus-topic-history'.
2688
2689         * nnimap.el (nnimap-finish-retrieve-group-infos): Check the connection
2690         status in the correct buffer.
2691
2692 2012-01-03  Leo Liu  <sdl.web@gmail.com>
2693
2694         * gnus-topic.el (gnus-topic-goto-next-group): Don't move point around
2695         when opening topics (bug#10407).
2696
2697 2011-12-30  Paul Eggert  <eggert@cs.ucla.edu>
2698
2699         * gnus-cus.el (gnus-score-customize):
2700         * gnus-sum.el (gnus-sort-gathered-threads):
2701         * message.el (message-shorten-references):
2702         * nnmairix.el (nnmairix-request-group):
2703         * uudecode.el (uudecode-decode-region-internal): Spelling fix.
2704
2705 2011-12-29  Paul Eggert  <eggert@cs.ucla.edu>
2706
2707         * gnus-agent.el (gnus-agent-regenerate-group):
2708         * gnus-int.el (gnus-retrieve-group-data-early):
2709         * mm-util.el (mm-codepage-ibm-list):
2710         * nndiary.el (Commentary, nndiary-get-new-mail):
2711         * nnir.el (nnir):
2712         * pgg-parse.el (pgg-parse-symmetric-key-algorithm-alist): Spelling fix.
2713
2714 2011-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2715
2716         * mm-view.el (mm-display-inline-fontify): Add comment.
2717
2718 2011-12-21  Paul Eggert  <eggert@cs.ucla.edu>
2719
2720         * nndiary.el (nndiary-parse-schedule-value, nndiary-parse-schedule):
2721         * ntlm.el (ntlm-smb-dohash): Spelling fix.
2722
2723 2011-12-19  Paul Eggert  <eggert@cs.ucla.edu>
2724
2725         * gnus-art.el (gnus-split-methods):
2726         * gnus-msg.el (gnus-configure-posting-styles):
2727         * gnus-spec.el (gnus-parse-simple-format):
2728         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
2729         * message.el (message-do-actions): Spelling fix.
2730
2731 2011-12-15  Juri Linkov  <juri@jurta.org>
2732
2733         * mm-decode.el (mm-inline-media-tests): Add missing
2734         `mm-handle-media-subtype'.
2735
2736 2011-12-14  Paul Eggert  <eggert@cs.ucla.edu>
2737
2738         * gnus-group.el (gnus-group-tool-bar):
2739         * gnus-sum.el (gnus-summary-tool-bar):
2740         * message.el (message-tool-bar):
2741         * rfc2231.el (rfc2231-parse-string): Spelling fix.
2742
2743 2011-12-12  Paul Eggert  <eggert@cs.ucla.edu>
2744
2745         * plstore.el (plstore--insert-buffer): Spelling fix.
2746
2747 2011-12-09  Tassilo Horn  <tassilo@member.fsf.org>
2748
2749         * message.el (message-valid-fqdn-regexp): Update with newly approved
2750         top-level domain names ".tel" and ".asia".
2751
2752 2011-12-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2753
2754         * gnus-sum.el (gnus-summary-show-article): Don't load shr
2755         unconditionally.
2756
2757 2011-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2758
2759         * message.el (message-pop-to-buffer): Use pop-to-buffer instead of
2760         pop-to-buffer-same-window for old Emacsen.
2761
2762 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
2763
2764         * gnus-sum.el (gnus-summary-make-tool-bar): Fix typo.
2765
2766 2011-12-05  Paul Eggert  <eggert@cs.ucla.edu>
2767
2768         * netrc.el (netrc-credentials): Spelling fix.
2769
2770 2011-12-04  Paul Eggert  <eggert@cs.ucla.edu>
2771
2772         * gnus-fun.el (gnus-fun-ppm-change-string):
2773         * gnus-msg.el (gnus-inews-do-gcc):
2774         * gnus-sum.el (gnus-summary-find-for-reselect):
2775         * gnus.el (gnus-summary-cancelled):
2776         * message.el (message-cancel-hook, message-send-news):
2777         * nndiary.el (nndiary-headers, nndiary-parse-schedule-value):
2778         * nnir.el (nnir-run-hyrex):
2779         * nntp.el (nntp-with-open-group-function):
2780         * pgg.el (pgg-pending-timers): Spelling fix.
2781
2782 2011-12-04  Chong Yidong  <cyd@gnu.org>
2783
2784         * message.el (message-pop-to-buffer): Partially revert 2011-11-30
2785         change (Bug#10200).
2786
2787 2011-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2788
2789         * compface.el (uncompface):
2790         * gnus-art.el (gnus-article-x-face-command): Update the header format
2791         of icon data for the most recent icontopbm program.
2792
2793 2011-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2794
2795         * gnus-msg.el (gnus-inews-do-gcc):
2796         * message.el (message-send-mail):
2797         * mml.el (mml-generate-mime): Share the value of the buffer-local
2798         `message-options' variable between a draft buffer and temprary working
2799         buffers.
2800
2801 2011-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2802
2803         * message.el (message-pop-to-buffer): Revert 2011-09-11 change.
2804
2805 2011-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2806
2807         * gnus-art.el (gnus-article-browse-html-parts): Convert link file names
2808         for Cygwin.
2809
2810 2011-11-27  Paul Eggert  <eggert@cs.ucla.edu>
2811
2812         * gnus-group.el (gnus-group-prepare-flat):
2813         * mm-bodies.el (mm-encode-body):
2814         * mml.el (mml-preview):
2815         * nnml.el (nnml-request-compact-group):
2816         * pop3.el (pop3-stream-type): Spelling fix.
2817
2818 2011-11-26  Paul Eggert  <eggert@cs.ucla.edu>
2819
2820         * gnus-start.el (gnus-newsrc-to-gnus-format): Spelling fix.
2821
2822 2011-11-25  Paul Eggert  <eggert@cs.ucla.edu>
2823
2824         * color.el (color-rgb-to-hsl):
2825         * gmm-utils.el (gmm-tool-bar-style):
2826         * gnus-group.el (gnus-group-prepare-flat):
2827         * gnus-topic.el (gnus-topic-prepare-topic):
2828         * mm-decode.el (mm-discouraged-alternatives):
2829         * rfc2047.el (rfc2047-encode-1):
2830         * starttls.el: Spelling fix.
2831
2832 2011-11-24  Glenn Morris  <rgm@gnu.org>
2833
2834         * binhex.el (binhex-begin-line): Give it basic doc-string.
2835
2836         * starttls.el, tls.el: Fix case of "GnuTLS".
2837
2838 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
2839
2840         * gnus-group.el (gnus-group-highlight): Fix typo.
2841
2842 2011-11-24  Adam W  <adam_w67@yahoo.com>  (tiny change)
2843
2844         * mail-source.el (mail-source-fetch-maildir): Don't expect the return
2845         value of `delete-file', that returns nil for a local file but returns t
2846         for a remote file using ssh.
2847
2848 2011-11-22  Paul Eggert  <eggert@cs.ucla.edu>
2849
2850         * gnus-sum.el (gnus-summary-save-article): Spelling fix.
2851
2852 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2853
2854         * shr.el (shr-table-horizontal-line): Use "?\s" instead of "? " to
2855         avoid later breakage.
2856
2857 2011-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2858
2859         * gnus-art.el (gnus-article-setup-buffer): Decode group name used for
2860         article buffers' name.
2861
2862 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2863
2864         * shr.el (shr-table-horizontal-line): Revert infinite loops introduced
2865         by Paul Eggert's spellfixes two days ago.
2866
2867 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2868
2869         * dgnushack.el (fboundp): Define `with-demoted-errors' for Emacsen that
2870         doesn't have it.
2871
2872         * mm-view.el (mm-display-inline-fontify): Make the font-lock variables
2873         buffer-local instead of binding them to avoid warnings.  Also demote
2874         errors (bug#10063).
2875         (font-lock-mode-hook): Shut up byte compiler.
2876
2877 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
2878
2879         * mm-util.el (mm-charset-after):
2880         * nnir.el (nnir-run-hyrex):
2881         * ntlm.el (ntlm-build-auth-request, ntlm-build-auth-response)
2882         (ntlm-get-password-hashes, ntlm-md4hash):
2883         * smime.el: Fix typo.
2884
2885 2011-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2886
2887         * gnus-agent.el (gnus-agent-expire-group-1):
2888         * nndiary.el (nndiary-last-occurence):
2889         * nnimap.el (nnimap-request-set-mark):
2890         * nnmairix.el (nnmairix-only-use-registry):
2891         * gnus-group.el (gnus-group-prepare-flat):
2892         * gnus-sum.el (gnus-decode-encoded-word-methods):
2893         * message.el (message-wash-subject):
2894         * nntp.el (nntp-retrieve-headers-with-xover):
2895         * smime.el (smime-certificate-directory): Spelling fix.
2896
2897 2011-11-19  Paul Eggert  <eggert@cs.ucla.edu>
2898
2899         * nnmail.el (nnmail-get-new-mail-1): Remove unused local variables.
2900
2901         * color.el:
2902         * gnus-agent.el (gnus-agent-possibly-alter-active):
2903         * gnus-dired.el (gnus-dired-print):
2904         * mail-parse.el:
2905         * nnmairix.el (nnmairix-request-group):
2906         * shr.el (shr-image-displayer):
2907         * sieve-manage.el:
2908         * spam.el (spam-autodetect-recheck-messages): Spelling fix.
2909
2910 2011-11-18  Paul Eggert  <eggert@cs.ucla.edu>
2911
2912         * gnus-sum.el (gnus-auto-select-subject):
2913         * spam-report.el (spam-report-resend): Spelling fix.
2914
2915 2011-11-17  Paul Eggert  <eggert@cs.ucla.edu>
2916
2917         * gnus-agent.el (gnus-agent-get-undownloaded-list):
2918         * gnus-art.el (gnus-default-article-saver):
2919         * gnus-srvr.el (gnus-server-copy-server):
2920         * gnus.el (gnus-sloppily-equal-method-parameters):
2921         * html2text.el (html2text-format-tag-list):
2922         * message.el (message-narrow-to-head):
2923         * nndiary.el:
2924         * nnmairix.el (nnmairix-determine-original-group-from-registry):
2925         * sieve.el: Spelling fix.
2926
2927 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
2928
2929         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
2930         * gnus-sum.el (gnus-summary-make-menu-bar):
2931         * gnus-uu.el (gnus-uu-decode-postscript)
2932         (gnus-uu-decode-postscript-and-save):
2933         * mailcap.el (mailcap-print-command):
2934         * registry.el (registry-lookup, registry-lookup-breaks-before-lexbind):
2935         Fix typos.
2936
2937 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
2938
2939         * gnus-art.el (gnus-article-part-wrapper):
2940         * html2text.el (html2text-fix-paragraphs):
2941         * mm-decode.el (mm-image-fit-p):
2942         * rfc2047.el (rfc2047-encode-message-header):
2943         * shr-color.el (shr-color-visible-distance-min)
2944         (shr-color-relative-to-absolute, set-minimum-interval)
2945         (shr-color-visible): Fix typos.
2946
2947 2011-11-15  Paul Eggert  <eggert@cs.ucla.edu>
2948
2949         * gmm-utils.el (gmm-tool-bar-item):
2950         * gnus-art.el (gnus-treat-body-boundary):
2951         * gnus-diary.el (gnus-user-format-function-d):
2952         * gnus-start.el (gnus-get-unread-articles):
2953         * pgg-gpg.el (pgg-gpg-update-agent):
2954         * smime.el (smime-cert-by-ldap-1): Spelling fix.
2955
2956 2011-11-14  Paul Eggert  <eggert@cs.ucla.edu>
2957
2958         * gnus-topic.el (gnus-group-prepare-topics):
2959         * gnus-uu.el (gnus-extract-view):
2960         * gnus-win.el (gnus-use-frames-on-any-display): Spelling fix.
2961
2962 2011-11-09  Teodor Zlatanov  <tzz@lifelogs.com>
2963
2964         * spam.el: Move BBDB autoloads.
2965         (spam-exists-in-BBDB-p): New function to do the BBDB search directly in
2966         BBDB 2 and 3.
2967         (spam-check-BBDB): Use it.
2968         (spam-enter-ham-BBDB): Use it.
2969
2970 2011-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2971
2972         * smime.el (smime-draw-buffer): Spelling fix.
2973
2974 2011-10-31  Peter Münster  <pmrb@free.fr>  (tiny change)
2975
2976         * gnus-group.el (gnus-group-get-new-news): New parameter `one-level'
2977         for scanning exactly one level.
2978         * gnus-start.el (gnus-get-unread-articles): Ditto.
2979
2980 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2981
2982         * gnus-sum.el (gnus-articles-to-read): Change wording in prompt to be
2983         slightly clearer.
2984
2985 2011-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
2986
2987         * gnus-sync.el: More commentary about setup.
2988
2989 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2990
2991         * message.el (message-send-and-exit): Document `arg'.
2992
2993 2011-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2994
2995         * nnimap.el (nnimap-open-connection-1): Use tcp-keealive if possible.
2996
2997 2011-11-02  Teodor Zlatanov  <tzz@lifelogs.com>
2998
2999         * gnus-sync.el: More commentary about `gnus-sync-read' issues.
3000
3001         * gnus-util.el (gnus-bound-and-true-p): Another comment to explain why
3002         we don't use `bound-and-true-p'.
3003
3004 2011-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
3005
3006         * gnus-util.el (gnus-bound-and-true-p): Remove.
3007         (gnus-bound-and-true-dumber-p): Rename to `gnus-bound-and-true-p'.
3008         * nnir.el: Use it.
3009         * nnmairix.el: Use it.
3010
3011 2011-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
3012
3013         * gnus-sync.el: Improve docs about CouchDB admins.
3014
3015         * gnus-util.el (gnus-bound-and-true-dumber-p): Define new, slower, dumb
3016         function because `gnus-bound-and-true-p' doesn't work well in XEmacs
3017         for reasons unknown.
3018         * nnir.el: Use it.
3019         * nnmairix.el: Use it.
3020
3021         * nnregistry.el: Remove unnecessary `gnus-registry-enabled' defvar.
3022         * nnir.el: Ditto.
3023         * nnmairix.el: Ditto.
3024
3025         * gnus-registry.el (gnus-registry-enabled): Default to nil.
3026
3027 2011-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
3028
3029         * gnus-sync.el (gnus-sync-lesync-setup): Fix salt when user setup is
3030         not needed.  Provide xmlplistread list function to produce XML plist
3031         output for non-Gnus LeSync clients.
3032
3033 2011-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
3034
3035         * gnus-fallback-lib/json.el: Add for XEmacs and Emacs 22 support.
3036
3037         * gnus-sync.el: Add LeSync synchronization backend and logic to read
3038         and save against it.  Group subscriptions, read marks, other marks,
3039         subscription levels, topic names, and topic offsets (the group's
3040         position within the topic) are saved.  This is an experimental backend
3041         and may change significantly.  Load json.el from the gnus-fallback-lib
3042         if it's not available otherwise.
3043         (gnus-sync-save): Don't use `apply-partially' because of XEmacs.
3044
3045 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3046
3047         * message.el (message-completion-function): Make sure
3048         message-tab-body-function is not attempted if one of
3049         message-completion-alist fails to find a completion (bug#9158).
3050
3051 2011-10-26  Daiki Ueno  <ueno@unixuser.org>
3052
3053         * mml.el (mml-quote-region): Quote <#secure> tag.
3054         (mml-generate-mime-1): Unquote <#secure> tag.
3055
3056 2011-10-20  Chong Yidong  <cyd@gnu.org>
3057
3058         * gnus-cite.el (gnus-message-citation-mode): Doc fix (in Emacs 24,
3059         calling a minor mode from Lisp with nil arg enables it, so we have to
3060         make the wording a bit ambiguous here).
3061
3062 2011-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
3063
3064         * gnus-util.el (gnus-bound-and-true-p): Macro for XEmacs compatibility.
3065         * nnir.el (nnir-mode): Use it.
3066         * nnmairix.el (nnmairix-determine-original-group-from-registry):
3067         Use it.
3068
3069         * nnir.el (gnus-registry-enabled): Defvar to keep the compiler happy.
3070         * nnmairix.el (gnus-registry-enabled): Ditto.
3071
3072 2011-10-17  Dave Abrahams  <dave@boostpro.com>
3073
3074         * gnus-registry.el (gnus-registry-enabled): Add new variable (Bug#9691).
3075         (gnus-registry-install-shortcuts): Set `gnus-registry-install' to 'ask
3076         only while we need to find out if it should be t or nil.
3077         (gnus-registry-initialize): Don't set `gnus-registry-install' to t.
3078         (gnus-registry-install-hooks): Set `gnus-registry-enabled' to t when
3079         the registry is installed.  Set it to nil when it's unloaded.
3080         (gnus-registry-install-p): Provide user guidance for the initial value
3081         of `gnus-registry-install' when it's 'ask, otherwise return its value.
3082         * nnregistry.el (nnregistry-open-server, nnregistry-server-opened):
3083         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
3084         * nnmairix.el (nnmairix-determine-original-group-from-registry):
3085         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
3086         * nnir.el (nnir-mode): Use `gnus-registry-enabled' instead of
3087         `gnus-registry-install'.
3088
3089 2011-10-17  Daiki Ueno  <ueno@unixuser.org>
3090
3091         * mml2015.el (mml2015-epg-find-usable-key): Add comment about the
3092         previous change.
3093         * mml1991.el (mml1991-epg-find-usable-key): Skip the whole key if the
3094         primary key is marked as disabled.
3095
3096 2011-10-17  Christian von Roques  <roques@mti.ag>  (tiny change)
3097
3098         * mml2015.el (mml2015-epg-find-usable-key): Skip the whole key if the
3099         primary key is marked as disabled.
3100
3101 2011-10-11  Andreas Schwab  <schwab@linux-m68k.org>
3102
3103         * html2text.el (html2text-clean-anchor): Check for quotes around
3104         `href' value.
3105
3106 2011-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
3107
3108         * spam.el (spam-check-BBDB): Simplify and support BBDB 3.x when
3109         searching.  Drop `bbdb-cache'.
3110
3111 2011-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3112
3113         * message.el (message-signed-or-encrypted-p): Exclude header when
3114         checking if there is signed or encrypted body in text/plain message.
3115
3116 2011-10-09  Andreas Schwab  <schwab@linux-m68k.org>
3117
3118         * html2text.el (html2text-get-attr): Correctly handle attribute values
3119         containing "=".
3120
3121 2011-09-22  Kan-Ru Chen  <kanru@kanru.info>
3122
3123         * ecomplete.el (ecomplete-display-matches): Use a local keymap to
3124         handle bindings.
3125
3126 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3127
3128         * gnus-win.el (gnus-configure-windows): Protect against reading
3129         ephemeral groups outside of Gnus.
3130
3131 2011-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3132
3133         * shr.el (shr-tag-img): Don't get images displayed in tables.
3134
3135 2011-10-03  Glenn Morris  <rgm@gnu.org>
3136
3137         * gnus-group.el (gnus-bug-group-download-format-alist): Once again get
3138         the "maintainer" version of debbugs.gnu.org reports.
3139
3140 2011-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3141
3142         * shr.el (shr-tag-img): Add a space at the end of an ALT image text to
3143         make asynchronous adjacent image insertion work better.
3144
3145 2011-09-27  Daiki Ueno  <ueno@unixuser.org>
3146
3147         * plstore.el (plstore-select-keys, plstore-encrypt-to): Clarify
3148         documentation.
3149
3150 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3151
3152         * gnus-uu.el (gnus-uu-grab-articles): Require gnus-async so that
3153         `gnus-asynchronous' isn't shadowed.
3154
3155 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3156
3157         * gnus-xmas.el (gnus-xmas-define): Add `member-ignore-case'.
3158
3159         * nnimap.el (nnimap-wait-for-response): Message less (bug#9540).
3160         (nnimap-insert-partial-structure): The charset parameter isn't
3161         case-sensitive.
3162
3163         * nnheader.el (nnheader-message-maybe): New function.
3164
3165         * shr.el (shr-tag-table): Render totally broken tables better.
3166
3167         * mml.el (mml-generate-mime-1): Don't alter the contents if we're
3168         computing the boundary.
3169
3170 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3171
3172         * pop3.el (pop3-number-of-responses): Remove.
3173         (pop3-wait-for-messages): Rewrite to take linear time instead of
3174         exponential time.
3175
3176 2011-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3177
3178         * gnus-sum.el (gnus-summary-show-article): Bind `shr-ignore-cache' to
3179         re-fetch images.
3180
3181         * shr.el (shr-tag-img): Support a new variable `shr-ignore-cache' to
3182         re-fetch images when hitting `g' in Gnus.
3183
3184 2011-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
3185
3186         * mml.el (mml-inhibit-compute-boundary): New internal variable.
3187         (mml-compute-boundary): Don't check collision if it is non-nil.
3188         (mml-compute-boundary-1): Use mml-generate-mime-1 to encode part
3189         before checking collision.
3190
3191 2011-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3192
3193         * message.el (message-indent-citation): Really make sure there's a
3194         newline at the end.
3195
3196         * nnimap.el (nnimap-parse-flags): Make regexp less prone to overflows.
3197         Fix suggested by John Wiegley.
3198
3199         * pop3.el (pop3-open-server): Fix +OK end-of-command regexp.
3200
3201         * gnus-art.el (gnus-treat-hide-citation): Add doc.
3202
3203         * message.el (message-default-send-rename-function): Break out into its
3204         own function.
3205
3206         * ecomplete.el (ecomplete-display-matches): Revert patch since it
3207         doesn't work under XEmacs.
3208
3209         * nnimap.el (nnimap-map-port): New function to connect to 993 instead
3210         of "imaps" to word around Windows problems.
3211         (nnimap-open-connection-1): Use it.
3212
3213         * message.el (message-indent-citation): Revert last change which made
3214         `F' not work.
3215
3216 2011-09-13  Kan-Ru Chen  <kanru@kanru.info>
3217
3218         * ecomplete.el (ecomplete-display-matches): Intercept key sequence from
3219         terminal as well.
3220
3221 2011-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
3222
3223         * mm-view.el (mm-display-inline-fontify): Don't run doc-view-mode
3224         because it displays images using overlays that aren't easy to copy to
3225         the article buffer.
3226
3227 2011-09-20  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
3228
3229         * message.el (message-indent-citation): Fix empty line removal at the
3230         end of the citation.
3231
3232 2011-09-20  Julien Danjou  <julien@danjou.info>
3233
3234         * auth-source.el (auth-source-netrc-create): Use default value for
3235         password if specified.  Evaluate default.
3236         (auth-source-plstore-create): Ditto.
3237         (auth-source-plstore-create, auth-source-netrc-create): Fix default
3238         value evaluation.
3239         (auth-source-netrc-create): Typo fix.
3240         (auth-source-plstore-create): Ditto.
3241
3242         * password-cache.el (password-cache-remove): Remove entries even if the
3243         value is nil, so that password with a nil value (negative caching) is
3244         possible to invalidate.
3245
3246         * auth-source.el (auth-source-format-cache-entry): New function.
3247
3248 2011-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3249
3250         * gnus-fun.el (gnus-convert-image-to-x-face-command): Doc fix.
3251
3252 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3253
3254         * mm-decode.el (mm-inline-media-tests): Fix typo in regexp.
3255
3256 2011-09-19  Julien Danjou  <julien@danjou.info>
3257
3258         * auth-source.el (auth-source-netrc-parse): Use an obfuscation method
3259         which work with things that are not ASCII.
3260
3261 2011-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3262
3263         * mm-decode.el (mm-inline-media-tests): Support imagemagick images.
3264
3265 2011-09-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3266
3267         * gnus-sum.el (gnus-summary-read-group-1): Bump the "Retrieving"
3268         message level.
3269
3270 2011-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
3271
3272         * message.el (message-read-from-minibuffer): Make abbrev expansion work.
3273
3274 2011-09-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3275
3276         * gnus.el (gnus-interactive-exit): Update defcustom spec.
3277
3278 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3279
3280         * gnus.el (gnus-nntp-server): Move to gnus-int.el to silence bytecomp.
3281         * gnus-int.el (gnus-nntp-server): Move from gnus.el.
3282
3283 2011-09-12  Andrew Cohen  <cohen@andy.bu.edu>
3284
3285         * gnus-group.el (gnus-group-list-limit-map, gnus-group-list-flush-map)
3286         (gnus-group-list-plus-map): Allow limiting, flushing and plusing ticked
3287         articles.
3288
3289 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
3290
3291         * message.el (message-pop-to-buffer): Default to switch-to-buffer.
3292         (message-mail-other-window, message-mail-other-frame)
3293         (message-news-other-window, message-news-other-frame):
3294         Use switch-to-buffer-other-frame and switch-to-buffer-other-window
3295         instead of setting buffer display varibles.
3296
3297 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3298
3299         * gnus-group.el (gnus-group-list-limit): Explain what the command does.
3300
3301         * gnus-sum.el (gnus-fetch-headers): Bump message level.
3302
3303 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3304
3305         * gnus-dup.el (gnus-dup-suppress-articles): Move "Suppressing
3306         duplicates" to a higher level.
3307
3308         * gnus-util.el (gnus-verbose): Lower default to 6 to get rid of the
3309         most egregious messages.
3310
3311 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3312
3313         * gnus-msg.el (gnus-summary-mail-forward): Minuscule doc fix.
3314
3315 2011-09-10  Tetsuo Tsukamoto  <tt.tetsuo.tsukamoto@gmail.com>  (tiny change)
3316
3317         * nnrss.el (nnrss-retrieve-groups): Decode the charset before looking
3318         up the file (bug#9351).
3319
3320 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3321
3322         * nnimap.el: Redo the charset handling.  Let Gnus encode the names, as
3323         it does with all other backends, but decode the names immediately after
3324         getting them.
3325
3326         * gnus-group.el (gnus-group-name-charset): Always return `utf-7' when
3327         decoding nnimap groups.
3328
3329         * gnus.el (gnus-variable-list): Don't save `gnus-format-specs' in the
3330         newsrc file.  It doesn't seem like an important optimization any more.
3331
3332 2011-09-10  Dave Abrahams  <dave@boostpro.com>
3333
3334         * nnimap.el (nnimap-transform-headers): Fix regexp to be less prone to
3335         overflows.
3336
3337 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3338
3339         * gnus.el (gnus-article-mark-lists): Remove `recent'.
3340         (gnus-interactive-exit): Extend to `quiet'.
3341
3342         * gnus-sum.el (gnus-offer-save-summaries): Use it.
3343
3344         * gnus-art.el (gnus-treat-hide-citation-maybe): Add more doc to the
3345         string.
3346
3347         * plstore.el (plstore--get-buffer): Silence compiler warnings by
3348         renaming function arguments from `this'.
3349
3350         * gnus-sum.el (gnus-newsgroup-recent): Remove.
3351
3352         * gnus-spec.el (gnus-lrm-string-p): `bidi-string-mark-left-to-right'
3353         has been renamed.
3354         (gnus-lrm-string-p): Include RLM and PDF, too.
3355
3356         * gnus-int.el (gnus-open-server): Make the "denied" message clearer
3357         (bug#9225).
3358
3359 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
3360
3361         Add autoload cookies for functions used by sendmail.el.
3362         * mm-encode.el (mm-default-file-encoding): Add autoload cookie.
3363
3364         * mml.el (mml-to-mime, mml-attach-file): Add autoload cookies.
3365
3366 2011-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
3367
3368         * gnus-art.el (article-date-ut): Work properly even when there are
3369         things like Date header in the body; work for forwarded parts.
3370
3371 2011-09-05  Andrew Cohen  <cohen@andy.bu.edu>
3372
3373         * gnus-sum.el (gnus-summary-exit): Ensure we kill the proper
3374         original-article-buffer.
3375
3376 2011-09-05  Kan-Ru Chen  <kanru@kanru.info>
3377
3378         * nnir.el (nnir-compose-result): Fix matching of server type.
3379         (nnir-run-swish++): Ditto.
3380         (nnir-run-namazu): Ditto.
3381         (nnir-run-notmuch): Ditto.
3382
3383 2011-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3384
3385         * gnus.el (gnus-home-directory): Add warning about setting in .gnus.el
3386         (bug#9405).
3387
3388         * gnus-score.el (gnus-summary-increase-score): Doc clarification
3389         (bug#9421).
3390
3391         * gnus-spec.el (gnus-face-0): Make all the face specs into defcustoms
3392         (bug#9425).
3393
3394         * gnus-art.el (gnus-treatment-function-alist): Remove CRs as the first
3395         thing (bug#9426).
3396
3397 2011-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3398
3399         * nnimap.el (nnimap-open-connection-1): Use the correct port number in
3400         the error message.
3401
3402 2011-09-02  Eli Zaretskii  <eliz@gnu.org>
3403
3404         * message.el (message-setup-1): Return t (Bug#9392).
3405
3406 2011-09-01  Andrew Cohen  <cohen@andy.bu.edu>
3407
3408         * gnus-sum.el: When adding article headers to a summary buffer also
3409         update gnus-newsgroup-articles (bug#9386).
3410
3411 2011-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3412
3413         * auth-source.el: Autoload help-mode.
3414
3415 2011-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3416
3417         * gnus-group.el (gnus-group-name-charset): Don't bug out on server
3418         names.
3419
3420 2011-08-27  Daiki Ueno  <ueno@unixuser.org>
3421
3422         * mml-smime.el (mml-smime-epg-verify): Don't use the 4th arg of
3423         mm-replace-in-string for compatibility issues.
3424         * mml2015.el (mml2015-epg-verify): Ditto.
3425
3426 2011-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3427
3428         * mailcap.el (mailcap-mime-data): Regexp-quote MIME subtype.
3429
3430         * gnus-msg.el (gnus-setup-message): Remove extra apostrophe.
3431
3432 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3433
3434         * nnmail.el (nnmail-get-new-mail-1): If one mail source bugs out,
3435         continue on and do the clean-up phase (bug#9188).
3436
3437         * gnus-sum.el (gnus-summary-expire-articles): When expiring articles,
3438         just ignore groups that can't be opened instead of erroring out
3439         (bug#9225).
3440
3441         * gnus-art.el (gnus-article-update-date-headers): Flip the default to
3442         nil since some many people are fuddy-duddies.
3443
3444         * gnus-html.el (gnus-html-image-fetched): Don't cache zero-length
3445         images.
3446
3447         * nntp.el (nntp-authinfo-file): Mark as obsolete -- use auth-source
3448         instead.
3449
3450         * pop3.el (pop3-wait-for-messages): Don't use Gnus functions here.
3451
3452         * gnus-util.el (gnus-process-live-p): Copy over compat function.
3453
3454         * pop3.el (pop3-wait-for-messages): If the pop3 process dies, stop
3455         processing.
3456
3457         * nntp.el (nntp-kill-buffer): Kill the process before killing the
3458         buffer to avoid warnings.
3459
3460 2011-08-20  Simon Josefsson  <simon@josefsson.org>
3461
3462         * gnus-agent.el (gnus-agent-expire-done-message): Use %.f as format
3463         specified to reduce precision.
3464
3465 2011-08-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3466
3467         * nnimap.el (nnimap-transform-headers): Protect against (NIL ...)
3468         bodystructures (bug#9314).
3469
3470 2011-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
3471
3472         * gnus-art.el (gnus-insert-mime-button, gnus-mime-display-alternative):
3473         Make button keymap non-sticky after buttons.
3474
3475 2011-08-18  David Engster  <dengste@eml.cc>
3476
3477         * nnmairix.el (nnmairix-request-set-mark)
3478         (nnmairix-goto-original-article): Remove adding of article to registry,
3479         since `gnus-registry-add-group' isn't available anymore.
3480         (nnmairix-determine-original-group-from-registry):
3481         Use `gnus-registry-get-id-key' since `gnus-registry-fetch-groups' isn't
3482         available anymore.
3483
3484 2011-08-12  Simon Josefsson  <simon@josefsson.org>
3485
3486         * starttls.el (starttls-any-program-available): Define as obsolete
3487         function.
3488
3489 2011-08-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3490
3491         * gnus-util.el (gnus-y-or-n-p): Reinstate the message-clearing y-or-n-p
3492         versions which Gnus use when appropriate.
3493
3494         * gnus-group.el (gnus-group-clear-data): Add a y-or-n query, since it's
3495         a pretty destructive command.
3496
3497         * nnmail.el (nnmail-extra-headers): Clarify slightly (bug#9302).
3498
3499 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3500
3501         * message.el (message-fix-before-sending): Make a different warning
3502         about NUL characters (bug#9270).
3503
3504         * gnus-sum.el (gnus-auto-select-subject): Allow specifying a function
3505         from custom (bug#9260).
3506
3507         * gnus-spec.el (gnus-lrm-string): Use 8206 instead of ?\x200e to make
3508         things work in Emacs 22 and XEmacs, too.
3509
3510         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): LRM-ify the
3511         default From.
3512
3513         * gnus-spec.el (gnus-lrm-string-p): New macro.
3514         (gnus-lrm-string): New constant.
3515         (gnus-summary-line-format-spec): LRM-ify the from.
3516         (gnus-tilde-max-form): LRM-ify string chopping.
3517
3518         * gnus-ems.el (gnus-string-mark-left-to-right): New function.
3519
3520         * message.el (message-is-yours-p): Allow disabling canlock checking
3521         (bug#9295).
3522         (message-shoot-gnksa-feet): Add `canlock-verify'.
3523         (message-auto-save-directory): Use ~/ as the auto-save directory if the
3524         message directory isn't writable (bug#9304).
3525
3526         * auth-source.el (auth-source-netrc-saver): Make the .authinfo file
3527         non-world-readable.
3528
3529 2011-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3530
3531         * nndraft.el (nndraft-update-unread-articles): Don't send delayed
3532         articles.
3533
3534 2011-08-13  Andreas Schwab  <schwab@linux-m68k.org>
3535
3536         * gnus-score.el (gnus-all-score-files): Use copy-sequence instead of
3537         copy-list.
3538
3539 2011-08-12  Sam Steingold  <sds@gnu.org>
3540
3541         * gnus-score.el (gnus-score-find-alist): Keep the score files already
3542         in the reverse order to avoid modifying the cache with `nreverse'.
3543         (gnus-all-score-files): Do not modify the value returned by
3544         `gnus-score-find-alist' because it lives in a cache variable.
3545         (gnus-current-home-score-file): No need to `nreverse' the return value
3546         of `gnus-score-find-alist', it is already in the correct order.
3547
3548 2011-08-11  Andrew Cohen  <cohen@andy.bu.edu>
3549
3550         * nnimap.el (nnimap-transform-headers): BODYSTRUCTURE for messages of
3551         type MESSAGE and subtype RFC822 is slightly different from those of
3552         type TEXT.
3553
3554 2011-08-05  Andrew Cohen  <cohen@andy.bu.edu>
3555
3556         * gnus-sum.el (gnus-summary-refer-article): Warp to article.
3557         This allows article-referral to work from an nnir group.
3558
3559 2011-08-04  Andrew Cohen  <cohen@andy.bu.edu>
3560
3561         * gnus.el (registry-ignore): Add nnir groups to the ignore-list.
3562
3563 2011-08-04  Daiki Ueno  <ueno@unixuser.org>
3564
3565         * mml1991.el (mml1991-epg-find-usable-key)
3566         (mml1991-epg-find-usable-secret-key): New function.
3567         (mml1991-epg-sign): Check if signing key is usable.
3568         (mml1991-epg-encrypt): Check if encrypting key is usable (bug#8955).
3569
3570 2011-08-03  Andrew Cohen  <cohen@andy.bu.edu>
3571
3572         * nnir.el (nnir-read-server-parm): Add an argument to restrict to
3573         server-variables only.  This should fix a bug introduced with commit
3574         e1889675b7f4adf057833c5513c9374134c4e053.
3575         (nnir-run-query): 'nnir-search-engine should not be set from the global
3576         environment.
3577
3578 2011-08-02  Andrew Cohen  <cohen@andy.bu.edu>
3579
3580         * nnir.el (nnir-search-thread): Position point on referring article
3581         line.
3582         (nnir-warp-to-article): Clean up summary buffers.
3583
3584         * nnimap.el (nnimap-request-thread): Whitespace fix.
3585
3586 2011-08-02  Steve Purcell  <steve@sanityinc.com>  (tiny change)
3587
3588         * nnimap.el (nnimap-get-groups): Decode "&" correctly.
3589
3590 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3591
3592         * starttls.el (starttls-available-p): Rename from
3593         `starttls-any-program-available' and changed return convention.
3594
3595 2011-07-31  Lars Ingebrigtsen  <larsi@gnus.org>
3596
3597         * nnmaildir.el (nnmaildir-request-accept-article): Don't call
3598         `unix-sync' unless it's defined.
3599
3600 2011-07-31  Marcus Harnisch  <marcus.harnisch@gmx.net>  (tiny change)
3601
3602         * gnus-art.el (gnus-article-stop-animations): Use `elt' instead of
3603         `aref' for XEmacs compatibiltiy.
3604
3605 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3606
3607         * spam.el (spam-fetch-field-fast): Rewrite slightly for clarity.
3608
3609 2011-07-31  Dave Abrahams  <dave@boostpro.com>
3610
3611         * gnus-sum.el (gnus-summary-refer-thread): Since lambdas aren't
3612         closures, quote the form properly (bug#9194).
3613
3614 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3615
3616         * gnus-sum.el (gnus-summary-insert-new-articles): Clean up slightly.
3617         (gnus-summary-insert-new-articles): Protect against servers that are
3618         down.
3619
3620 2011-07-29  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
3621
3622         * mm-decode.el (mm-dissect-buffer): Add a default content-disposition
3623         in mm handle if none is specified.
3624
3625 2011-07-24  Andrew Cohen  <cohen@andy.bu.edu>
3626
3627         * nnimap.el (nnimap-make-thread-query): Quote message-ids for gmail.
3628
3629 2011-07-23  Andrew Cohen  <cohen@andy.bu.edu>
3630
3631         * nnir.el (nnir-search-thread): New function to make an nnir group
3632         based on a thread query.
3633
3634         * gnus-sum.el (gnus-refer-thread-use-nnir): New variable to control use
3635         of nnir in thread referral.
3636         (gnus-summary-refer-thread): Use it.
3637
3638         * nnimap.el (nnimap-request-thread): Use it.
3639
3640 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3641
3642         * shr.el (shr-tag-comment): Ignore HTML comments.
3643
3644 2011-07-20  Andrew Cohen  <cohen@andy.bu.edu>
3645
3646         * nnir.el (gnus-group-make-nnir-group): Allow optional search query
3647         argument.
3648         (gnus-group-make-nnir-group, nnir-request-group, nnir-run-query):
3649         Use `nnir-address' to handle server info rather than passing an arg.
3650
3651         * nnimap.el (nnimap-make-thread-query): New utility function to format
3652         an imap thread search query.
3653         (nnimap-request-thread): Use it.
3654
3655         * gnus-sum.el (gnus-handle-ephemeral-exit): Ensure we are setting the
3656         right select-method if we are not going back to the group buffer.
3657
3658 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3659
3660         * gnus-group.el (gnus-group-read-ephemeral-group): Make sure we don't
3661         enter invalid buffer configurations into the quit form (bug#9107).
3662         (gnus-group-tool-bar-gnome): Replace connect/disconnect with
3663         unplugged/plugged.
3664
3665         * gnus-sum.el (gnus-summary-refer-thread): When inserting new headers,
3666         keep track of which ones are unread (bug#9061).
3667
3668         * gnus.el (gnus-refer-article-method): Allow entering any sexp
3669         (bug#9055).
3670
3671         * gnus-art.el (gnus-article-show-images): Allow working if using w3m
3672         (bug#9041).
3673
3674         * gnus-html.el (mm-util): Require (bug#9073).
3675
3676         * gnus-sum.el (gnus-delete-duplicate-headers): New function.
3677         (gnus-summary-refer-thread): Use it to remove duplicates in the
3678         un-threaded view (bug#9053).
3679         (gnus-summary-insert-subject): Document USE-OLD-HEADER (bug#9070).
3680
3681 2011-07-07  Kan-Ru Chen  <kanru@kanru.info>
3682
3683         * nnir.el (nnir-read-server-parm): Use default value from global
3684         variable.  Without this the default search engine parameters aren't
3685         used at all.
3686
3687 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3688
3689         * message.el (message-unique-id): Don't use the undocumented return
3690         value from (random t) (bug#9118).
3691
3692 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3693
3694         * message.el (message-auto-save-directory): If the ~/Mail directory
3695         doesn't exist, use ~ as the auto-save directory (bug#4432).
3696
3697         * gnus-group.el (gnus-group-read-ephemeral-group): Start Gnus if it
3698         hasn't already been started.
3699
3700 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3701
3702         * gnus.el (debbugs-gnu): Rename from debbugs-emacs.
3703
3704         * message.el (message-reply): Work around mysterious bug where
3705         `message-mode' seems to overwrite the locally bound `subject' variable.
3706
3707 2011-07-14  Andrew Cohen  <cohen@andy.bu.edu>
3708
3709         * nnimap.el (nnimap-request-thread): Ensure search is performed in
3710         correct group.
3711
3712         * gnus-int.el (gnus-request-thread): Add group argument.
3713
3714         * gnus-sum.el (gnus-summary-refer-thread): Use it.
3715
3716 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3717
3718         * dgnushack.el (debbugs-gnu-summary-mode): Update compat names, too.
3719
3720         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): `debbugs-*'
3721         renamed to `debbugs-gnu-*'.
3722
3723 2011-07-08  Daiki Ueno  <ueno@unixuser.org>
3724
3725         * plstore.el: Revert the editing feature since it is not urgent.
3726         (plstore-mode, plstore-mode-toggle-display, plstore-mode-original)
3727         (plstore-mode-decoded): Remove.
3728
3729 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3730
3731         * gnus-msg.el (gnus-bug): Don't insert user variables.  It usually
3732         isn't very interesting any more, and it leaks potentially secret data.
3733         (gnus-debug): Remove.
3734
3735         * gnus-art.el (gnus-ignored-headers): Remove obsolete and non-working
3736         use of :custom-show.
3737
3738 2011-07-07  Daiki Ueno  <ueno@unixuser.org>
3739
3740         * plstore.el: Add documentation.
3741         (plstore-mode): New mode to edit plstore file.
3742         (plstore-mode-toggle-display, plstore-mode-original)
3743         (plstore-mode-decoded): New command.
3744         (plstore--encode, plstore--decode, plstore--write-contents-functions)
3745         (plstore--insert-buffer, plstore--make): New function.
3746         (plstore-open, plstore-save): Simplify by using them.
3747
3748 2011-07-06  Glenn Morris  <rgm@gnu.org>
3749
3750         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Silence compiler.
3751
3752 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3753
3754         * gnus.el (gnus-refer-article-method): Remove mention of nnspool, which
3755         no longer is much used.
3756         (gnus-summary-line-format): Link to "Marking Articles" instead of "Read
3757         Articles".
3758
3759 2011-04-03  Kan-Ru Chen  <kanru@kanru.info>
3760
3761         * nnir.el (nnir-notmuch-program, nnir-notmuch-additional-switches)
3762         (nnir-notmuch-remove-prefix, nnir-engines, nnir-run-notmuch): New nnir
3763         `notmuch' backend.
3764
3765 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3766
3767         * mm-decode.el (mm-text-html-renderer): Doc fix.
3768
3769         * gnus-msg.el (gnus-bug): Fix the MML tag.
3770
3771         * pop3.el (pop3-open-server): -ERR is a valid response to CAPA.
3772
3773 2011-07-05  Daiki Ueno  <ueno@unixuser.org>
3774
3775         * gnus-start.el (gnus-get-unread-articles): Don't connect to the
3776         secondary methods if started with `gnus-no-server'.
3777
3778 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
3779
3780         * message.el (message-return-action): Fix typo in docstring.
3781
3782 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3783
3784         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow fetching several
3785         bug reports at once.
3786
3787         * nnimap.el (nnimap-request-scan): Say that splitting has finished.
3788
3789 2011-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
3790
3791         * nndraft.el: Require gnus-group.
3792         (nndraft-request-list): Declare.
3793
3794         * nndraft.el (nndraft-update-unread-articles): Don't show group having
3795         no unread article unless it matches gnus-permanently-visible-groups.
3796
3797         * nndraft.el (nndraft-update-unread-articles): New function.
3798         (nndraft-request-associate-buffer): Use it to update the number of
3799         unread articles for the nndraft groups in the group buffer when saving
3800         or killing a draft message.
3801
3802 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3803
3804         * gnus-group.el (gnus-read-ephemeral-bug-group): Bind the coding
3805         systems to binary before writing and reading the mbox files.
3806
3807         * gnus.el (gnus-summary-line-format): Link to the info node for %U
3808         instead of trying to list them all (bug#8978).
3809
3810 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
3811
3812         * pop3.el (pop3-open-server): Use :end-of-capability.
3813
3814 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3815
3816         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Make sure that
3817         the id is always a number.
3818
3819         * dgnushack.el (debbugs-summary-mode): Shut up compiler about debbugs.
3820
3821         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Hook into
3822         debbugs mode, if possible.
3823
3824 2011-07-02  Daiki Ueno  <ueno@unixuser.org>
3825
3826         * auth-source.el (auth-source-token-passphrase-callback-function):
3827         Reindent.
3828         (epg-context-operation): Remove unnecessary autoload.
3829
3830 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3831
3832         * gnus.el (gnus-list-debbugs): New command.
3833
3834         * gnus-group.el (gnus-bug-group-download-format-alist): Get the
3835         mboxstat instead of the maintbox, since the stat seems to be fuller.
3836
3837         * gnus-msg.el (gnus-configure-posting-styles): Don't try to select dead
3838         summary buffers.
3839
3840         * message.el (message-get-reply-headers): Delete all duplicates,
3841         instead of the first.
3842         (message-get-reply-headers): Ensure that we have progress while
3843         deleting duplicates.
3844
3845         * gnus-msg.el (gnus-configure-posting-styles): Get the local
3846         gnus-posting-style value from the summary buffer to make it easier to
3847         make that a per-buffer conf.
3848
3849 2011-07-02  Andrew Cohen  <cohen@andy.bu.edu>
3850
3851         * nnir.el (nnir-run-imap): Allow halting a search when an article is
3852         found by setting `shortcut' in 'query.
3853         (nnir-request-article): Use `shortcut' setting when requesting article
3854         by Message-ID.
3855
3856 2011-07-02  Teodor Zlatanov  <tzz@lifelogs.com>
3857
3858         * gnus-msg.el (gnus-bug): Give the Version and Package headers to
3859         debbugs with the X-Debbugs-Package and X-Debbugs-Version headers.
3860         Bring the pseudo-headers back too.
3861
3862 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3863
3864         * auth-source.el (auth-source-token-passphrase-callback-function):
3865         Simplify and remove EPA dependency.
3866
3867 2011-07-01  Andrew Cohen  <cohen@andy.bu.edu>
3868
3869         * nnir.el (nnir-request-article): Fix error message text.
3870
3871 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3872
3873         * auth-source.el (plstore-delete): Autoload.
3874         (auth-source-plstore-search): Support delete operation.
3875         * plstore.el (plstore-delete): New function.
3876
3877 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3878
3879         * gnus-draft.el (gnus-draft-clear-marks): Revert last change;
3880         mark actually existing articles as unread rather than the ones that
3881         active asserts.
3882
3883 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
3884
3885         * nntp.el (nntp-record-command):
3886         * gnus-util.el (gnus-message-with-timestamp-1):
3887         Use format-time-string rather than decoding time stamps by hand.
3888         This is simpler and insulates the code from potential changes to
3889         current-time format.
3890
3891 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3892
3893         * gnus-draft.el (gnus-draft-clear-marks): Mark deleted articles as read.
3894
3895 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3896
3897         * plstore.el (plstore-select-keys, plstore-encrypt-to): New variable.
3898         (plstore-save): Support public key encryption.
3899         (plstore--init-from-buffer): New function.
3900         (plstore-open): Use it; fix error when opening a non-existent file.
3901         (plstore-revert): Use plstore--init-from-buffer.
3902
3903 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3904
3905         * auth-source.el (auth-source-backend): Fix :initarg for data slot.
3906
3907 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3908
3909         * mml2015.el (mml2015-use): Replace string-match-p with string-match
3910         for old Emacsen.
3911
3912 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
3913
3914         * mml2015.el (mml2015-use): Don't try to load PGG on Emacs 24, when EPG
3915         is not fully working.
3916
3917 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3918
3919         * dgnushack.el: Autoload sha1 on XEmacs.
3920
3921         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Take an optional
3922         quit window configuration.
3923
3924         * auth-source.el (epg-context-set-passphrase-callback):
3925         Remove duplicate autoload.
3926
3927 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
3928
3929         * nnir.el (nnir-request-article): Allow requesting articles by
3930         Message-ID with nnimap.
3931
3932         * gnus-sum.el (gnus-refer-article-methods): Allow (nnir) entry to use
3933         current server.
3934
3935 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
3936
3937         * auth-source.el: Autoload EPA/EPG functions.
3938         (auth-source-netrc-use-gpg-tokens): Clarify that it should not be
3939         changed when EPA/EPG is not available.
3940         (auth-source-backend): Rename "arg" member to "data".
3941         (auth-source-backend-parse, auth-source-plstore-search)
3942         (auth-source-plstore-create): Use it.
3943
3944 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
3945
3946         * gnus-art.el (gnus-request-article-this-buffer): Use existing function
3947         `gnus-refer-article-methods'.
3948
3949 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
3950
3951         * auth-source.el: Require EPA and EPG.
3952         (auth-source-passphrase-alist): New variable.
3953         (auth-source-passphrase-callback-function)
3954         (auth-source-token-passphrase-callback-function): Callbacks for the
3955         netrc field encryption (GPG tokens).
3956         (auth-source-epa-extract-gpg-token, auth-source-epa-make-gpg-token):
3957         Symmetric encryption and decryption of the netrc GPG tokens.
3958         (auth-source-netrc-normalize): Use them, simplifying the closure.
3959
3960 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3961
3962         * dgnushack.el (dgnushack-compile): Don't compile plstore.el unless epg
3963         is available.
3964
3965 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3966
3967         * nnimap.el (nnimap-split-incoming-mail): If `nnimap-split-fancy' is
3968         non-nil, and `nnimap-split-methods' is nil, use the former.
3969
3970 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
3971
3972         * plstore.el (plstore-revert): New function.
3973         (plstore-open): Use it; hide the buffer from user.
3974
3975 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
3976
3977         * auth-source.el (auth-source-backend): New member "arg".
3978         (auth-source-backend-parse): Handle new backend 'plstore.
3979         * plstore.el: New file.
3980
3981 2011-06-30  Glenn Morris  <rgm@gnu.org>
3982
3983         * mm-util.el (mm-charset-synonym-alist): Move definition before use.
3984
3985 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3986
3987         * nnimap.el (nnimap-process-expiry-targets): Say what target we're
3988         expiring articles to.
3989
3990         * mm-util.el (mm-charset-to-coding-system): Recognize all ANSI.x3.4
3991         variations as ASCII (bug#5458).
3992
3993 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3994
3995         * nnmh.el (nnmh-request-list-1): Work on MS Windows.
3996
3997 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3998
3999         * message.el (message-point-in-header-p): Tweak the function to default
4000         to saying that we're not in the headers if there is no separator at
4001         all.  This makes it possible to use the Message version of `M-q' in
4002         buffers with no headers (bug#7987).
4003         (message-point-in-header-p): Fix last checkin to work with an empty
4004         mail-header-separator, too.
4005
4006         * auth-source.el (auth-source-netrc-saver): If the user says "don't ask
4007         again, save the choice via customize.
4008
4009 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4010
4011         * message.el (message-send-mail-function): Add `sendmail-query-once'.
4012
4013         * nnimap.el (nnimap-finish-retrieve-group-infos): If the server has
4014         ended the connection, bail out before waiting infinitely on a new
4015         connection.
4016
4017 2011-06-28  Teodor Zlatanov  <tzz@lifelogs.com>
4018
4019         * gnus-msg.el (gnus-bug): Add Package and Version pseudo-headers to bug
4020         reports.
4021
4022         * gnus.el (gnus-bug-package): Use "gnus."
4023         (gnus-maintainer): Direct bug reports to submit@debbugs.gnu.org.
4024
4025 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4026
4027         * dgnushack.el: Make the timer warning go away on XEmacs.
4028
4029         * gnus-art.el (gnus-article-stop-animations): New function to stop any
4030         animations going on at article exit time.
4031
4032         * gnus-registry.el (gnus-registry-user-format-function-M): Reinstate,
4033         since removing it breaks people upgrading.
4034
4035         * shr.el (shr-put-image): Use the new interface for animating images.
4036         (shr-put-image): Animate for 60 seconds.
4037
4038         * dgnushack.el: Bind `gnutls-available-p' to `ignore' on XEmacs to
4039         avoid compiler warnings.
4040
4041         * auth-source.el (with-auth-source-epa-overrides): Fix compilation
4042         error with `find-file-hooks' on Emacs 22.
4043         (with-auth-source-epa-overrides): Ugly hack to Wrap the
4044         `find-file-hook' things in `symbol-value' to avoid compilation warnings
4045         on all architectures.
4046
4047         * spam.el (spam-stat): Require in a normal fashion without binding
4048         `spam-stat-install-hooks' to avoid compilation warnings.
4049
4050         * spam-stat.el (spam-stat-install-hooks): Remove.
4051         (spam-stat-install-hooks): Don't run automatically.
4052
4053 2011-06-26  Timo Juhani Lindfors  <timo.lindfors@iki.fi>  (tiny change)
4054
4055         * gnus-msg.el (gnus-summary-reply-to-list-with-original): New command
4056         and keystroke.
4057
4058 2011-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4059
4060         * auth-source.el (auth-source-netrc-cache): Move forward.
4061
4062 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4063
4064         * proto-stream.el (proto-stream-open-starttls): Use
4065         `gnutls-available-p' to see whether we have built-in support.
4066
4067         * auth-source.el (auth-source-netrc-create): Don't query the bits that
4068         we already know.
4069         (auth-source-forget-all-cached): Clear auth-source-netrc-cache, too.
4070         (auth-source-netrc-create): Don't prompt for the stuff we already know.
4071
4072 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4073
4074         * auth-source.el (auth-source-netrc-create): Don't print all tokens in
4075         %S format, since that looks odd.
4076         (auth-sources): Prefer the ~/.authinfo file over the ~/.authinfo.gpg
4077         file, especially when saving.
4078
4079 2011-06-21  Andrew Cohen  <cohen@andy.bu.edu>
4080
4081         * nnimap.el (nnimap-find-article-by-message-id): return nil when no
4082         article found.
4083
4084 2011-06-18  Teodor Zlatanov  <tzz@lifelogs.com>
4085
4086         * auth-source.el (auth-source-netrc-use-gpg-tokens): Replace
4087         `auth-source-save-secrets' with a more sensitive alist that can be
4088         configured per file.  Experimental, so defaults to 'never.
4089         (auth-source-netrc-create): Use it.  Still experimental code.
4090         (with-auth-source-epa-overrides): Use `find-file-hooks' if
4091         `find-file-hook' is unbound (XEmacs fix).  Fix backquoting bug.
4092
4093 2011-06-16  Teodor Zlatanov  <tzz@lifelogs.com>
4094
4095         * auth-source.el (auth-source-save-secrets): New variable to control if
4096         secret tokens should be saved encrypted.
4097         (auth-source-netrc-parse, auth-source-netrc-search): Pass the file name
4098         to `auth-source-netrc-normalize'.
4099         (with-auth-source-epa-overrides): Add convenience macro.  Don't depend
4100         on the EPA variables being defined.
4101         (auth-source-epa-make-gpg-token): Convert text to a "gpg:" token.
4102         (auth-source-netrc-normalize): Convert "gpg:" tokens back to text in
4103         the lexical-let closure.
4104         (auth-source-netrc-create): Create "gpg:" tokens according to
4105         `auth-source-save-secrets'.
4106
4107 2011-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4108
4109         * gnus-group.el (gnus-group-update-group): Add new argument
4110         `info-unchanged' that stops updating dribble buffer.
4111
4112         * gnus-start.el (gnus-dribble-enter): Add new argument `regexp' that
4113         deletes lines matching to it in dribble buffer.
4114
4115         * gnus-agent.el (gnus-agent-fetch-group-1):
4116         * gnus-group.el (gnus-group-update-group-line, gnus-group-make-group):
4117         * gnus-srvr.el (gnus-server-update-server, gnus-server-set-info):
4118         * gnus-start.el (gnus-group-change-level):
4119         * gnus-sum.el (gnus-summary-move-article): Delete old dribble entry.
4120
4121         * gnus-sum.el (gnus-summary-update-info): Don't update dribble buffer
4122         if newsgroup info is not changed.
4123
4124         * gnus-group.el (gnus-group-get-new-news-this-group):
4125         * gnus-sum.el (gnus-summary-read-group-1, gnus-summary-exit-no-update):
4126         Don't update dribble buffer.
4127
4128 2011-06-01  Teodor Zlatanov  <tzz@lifelogs.com>
4129
4130         * gnus-registry.el (gnus-registry-remove-ignored): New function to
4131         remove entries with groups we ignore.
4132
4133 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4134
4135         * shr.el (shr-rescale-image): Add an :ascent of 100 to images so that
4136         the underline comes at the bottom.
4137
4138 2011-05-31  Teodor Zlatanov  <tzz@lifelogs.com>
4139
4140         * gnus-registry.el (gnus-registry-article-marks-to-chars): Rename from
4141         `gnus-registry-user-format-function-M' and declare the latter obsolete.
4142         (gnus-registry-article-marks-to-names): Rename from
4143         `gnus-registry-user-format-function-M2'.
4144
4145 2011-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
4146
4147         * gnus-sum.el (gnus-summary-exit): Make sure to kill article buffer in
4148         ephemeral group.
4149
4150 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4151
4152         * shr.el (shr-browse-image): Copy the URL if called interactively.
4153
4154 2011-05-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4155
4156         * gnus-group.el (gnus-group-mark-article-read): It's possible that we
4157         want to have `gnus-newsgroup-unselected' kept sorted.  If this isn't
4158         done, then unselected articles may be marked as read.
4159
4160         * pop3.el (pop3-open-server): Erase the buffer after the greeting,
4161         since not doing this seems to lead to a race condition in pop3-logon.
4162
4163         * nnvirtual.el (nnvirtual-request-article): Bind `gnus-command-method'
4164         so that the call chain it correct when we call "upwards".
4165
4166         * gnus-sum.el (gnus-select-newsgroup): Auto-expiry doesn't make sense
4167         in read-only groups.
4168
4169         * gnus-group.el (gnus-group-mark-article-read): Ditto.
4170
4171         * message.el (message-cite-reply-position): Doc string fix.
4172
4173         * nnimap.el (nnimap-transform-headers): Simplify regexp to hopefully
4174         avoid regexp overflow.
4175         (nnimap-transform-split-mail): Ditto.
4176
4177         * pop3.el (pop3-retr): Error out if the server closes the connection.
4178
4179 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4180
4181         * mml1991.el (mml1991-mailcrypt-encrypt): Remove use of ill-designed
4182         mm-with-unibyte-current-buffer.  The buffer should not contain any
4183         multibyte chars anyway at this stage.
4184
4185 2011-05-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4186
4187         * shr.el (shr-urlify): Use shr-add-font to make underlines be less ugly
4188         at the end of lines.
4189
4190 2011-05-29  Julien Danjou  <julien@danjou.info>
4191
4192         * smiley.el (gnus-smiley-file-types): Add gif as supported file type.
4193
4194 2011-05-27  Glenn Morris  <rgm@gnu.org>
4195
4196         * gnus-group.el (gnus-bug-group-download-format-alist):
4197         Use the "maintainer" version of debian reports as well.
4198
4199 2011-05-26  Glenn Morris  <rgm@gnu.org>
4200
4201         * gnus-group.el (gnus-bug-group-download-format-alist):
4202         Use the "maintainer" version of debbugs.gnu.org reports.
4203
4204 2011-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4205
4206         * gnus-art.el (gnus-mime-delete-part): Fix mm-handle-filename usage.
4207
4208 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4209
4210         * gnus-cus.el (gnus-agent-customize-category):
4211         * gnus-delay.el (gnus-delay-send-queue):
4212         * gnus.el (gnus-other-frame):
4213         Don't quote lambda expressions with `quote'.
4214
4215 2011-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
4216
4217         * gnus-sum.el (gnus-summary-hide-thread): Fix bug where moving to hide
4218         the thread moves us backwards and so we loop forever.
4219
4220 2011-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4221
4222         * mm-bodies.el (mm-decode-content-transfer-encoding): Allow leading
4223         whitespace in base64 data lines.
4224
4225 2011-05-18  Teodor Zlatanov  <tzz@lifelogs.com>
4226
4227         * gnus-registry.el (gnus-registry-user-format-function-M):
4228         Use `mapconcat'.
4229         (gnus-registry-user-format-function-M2): Use to see the full text of
4230         the marks.  Make "," the mark text separator.
4231
4232         * nntp.el (nntp-send-authinfo): Use the "force" token for NNTP
4233         authentication with auth-source.
4234
4235 2011-05-17  Glenn Morris  <rgm@gnu.org>
4236
4237         * gnus-group.el (gnus-import-other-newsrc-file):
4238         Use insert-file-contents.
4239
4240 2011-05-16  Teodor Zlatanov  <tzz@lifelogs.com>
4241
4242         * gnus-sum.el (gnus-summary-hide-all-threads): Add update message every
4243         1000 iterations.
4244
4245 2011-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4246
4247         * nntp.el (nntp-open-connection): Check if process-type is available.
4248
4249 2011-05-16  Julien Danjou  <julien@danjou.info>
4250
4251         * shr.el (shr-tag-del): Add support for del tag.
4252
4253 2011-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4254
4255         * gnus-html.el (gnus-html-put-image): Register a displayer.
4256
4257         * shr.el (shr-image-displayer): Don't remove text props from alt text.
4258
4259 2011-05-13  Teodor Zlatanov  <tzz@lifelogs.com>
4260
4261         * registry.el (prune-factor): New initialization parameter defaulting
4262         to 0.1.
4263         (registry-prune-hard): Use it.
4264
4265         * gnus-registry.el (gnus-registry-fixup-registry): Set prune-factor to
4266         0.1 expicitly.
4267
4268 2011-05-13  Glenn Morris  <rgm@gnu.org>
4269
4270         * message.el (message-send-mail-with-sendmail): Assume sendmail-program
4271         is bound, since this function requires sendmail.
4272
4273 2011-05-11  Teodor Zlatanov  <tzz@lifelogs.com>
4274
4275         * registry.el (registry-usage-test): Disable pruning test.
4276
4277 2011-05-11  David Engster  <dengste@eml.cc>
4278
4279         * lpath.el: Bind shr-put-image and process-type for Emacs22 and XEmacs.
4280         Bind set-network-process-option for XEmacs.
4281
4282 2011-05-10  Teodor Zlatanov  <tzz@lifelogs.com>
4283
4284         * registry.el (registry-prune-hard-candidates)
4285         (registry-prune-soft-candidates): Helper methods for registry pruning.
4286         (registry-prune): Use them.  Make the sort function optional.
4287
4288 2011-05-10  Jim Meyering  <meyering@redhat.com>
4289
4290         * shr.el (shr-colorize-region): Fix typo "on on -> on".
4291
4292 2011-05-10  Julien Danjou  <julien@danjou.info>
4293
4294         * shr.el (shr-put-color-1): Do not bug out when old-props is a face
4295         symbol and not a list.
4296
4297 2011-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4298
4299         * gnus-art.el (gnus-article-mode): Move binding of
4300         shr-put-image-function here from gnus-article-prepare-display.
4301
4302         * shr.el (shr-put-image-function): New variable.
4303         (shr-image-fetched, shr-image-displayer, shr-tag-img): Funcall it.
4304         (shr-put-image): Return scaled image.
4305
4306         * gnus-art.el (gnus-shr-put-image): New function.
4307         (gnus-article-prepare-display): Bind shr-put-image-function to it.
4308
4309         * gnus-html.el (gnus-html-wash-images): Register scaled images, not
4310         original ones, as deletable.
4311
4312 2011-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4313
4314         * nntp.el (nntp-open-connection): Set TCP keepalive option.
4315
4316 2011-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
4317
4318         * registry.el (registry-full): Add convenience method.  Fix logic.
4319         (registry-insert): Use it.  Fix logic here too.
4320
4321         * gnus-registry.el (gnus-registry-insert): Add wrapper that calls
4322         `registry-prune' if `registry-full' returns t.
4323         (gnus-registry-handle-action)
4324         (gnus-registry-get-or-make-entry, gnus-registry-set-id-key)
4325         (gnus-registry-usage-test): Use it.
4326
4327 2011-05-07  Julien Danjou  <julien@danjou.info>
4328
4329         * shr.el (shr-link): Make shr-link inherit from link by default.
4330
4331 2011-05-06  Teodor Zlatanov  <tzz@lifelogs.com>
4332
4333         * shr.el (shr-urlify, shr-link): Fix shr-link face.
4334
4335 2011-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
4336
4337         * shr.el (shr-urlify, shr-link): Still broken but at least doesn't
4338         error out because the face is not a list.
4339
4340 2011-05-05  Glenn Morris  <rgm@gnu.org>
4341
4342         * proto-stream.el (gnutls-negotiate): Fix declarations.
4343
4344         * gnus-start.el (gnus-propagate-marks): Declare.
4345
4346 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
4347
4348         * registry.el (registry-reindex): Fix percentage message.
4349
4350         * proto-stream.el (network-stream-open-starttls): Adjust to call
4351         `gnutls-negotiate' with :process and :hostname arguments.
4352
4353 2011-05-03  Teodor Zlatanov  <tzz@lifelogs.com>
4354
4355         * shr.el: Add shr-link face for links.
4356         (shr-urlify): Use it.
4357
4358         * registry.el (registry-insert): Make error message more helpful.
4359
4360 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4361
4362         * gnus-html.el (gnus-html-schedule-image-fetching):
4363         Use url-queue-retrieve, if it exists.
4364
4365         * shr.el (shr-tag-img): Ditto.
4366
4367         * gnus.el: Autoload more gnus-agent functions.
4368
4369         * gnus-art.el (gnus-request-article-this-buffer): Store articles in the
4370         agent if we haven't already (bug#8502).
4371
4372         * gnus-async.el (gnus-async-article-callback): Put prefetched articles
4373         into the Agent, too.
4374
4375         * gnus-agent.el (gnus-agent-store-article): New function.
4376
4377         * nnheader.el (nnheader-insert-buffer-substring): Rename from nntp-
4378         and moved from that file for reuse.
4379
4380         * pop3.el (pop3-open-server): Error messages are "-ERR".
4381
4382 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4383
4384         * pop3.el (pop3-open-server): Upgrade opportunistically to STARTTLS.
4385         (open-tls-stream): Remove superfluous tls/starttls autoloads.
4386
4387 2011-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4388
4389         * gnus.el: No Gnus v0.17 is released.
4390
4391 2011-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4392
4393         * gnus-sum.el (gnus-summary-next-article): Don't bug out if the summary
4394         buffer has moved to a different frame.
4395
4396 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4397
4398         * nnimap.el (nnimap-request-article): Use nntp-insert-buffer-substring
4399         to get the conversion from unibyte to multibyte buffers to work on
4400         Emacs 22.
4401
4402         * nntp.el (nntp-request-article): Slight clean-up.
4403
4404 2011-04-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4405
4406         * shr.el (shr-strike-through): New face.
4407         (shr-tag-s): Use it to provide <s> support.
4408         (shr-tag-s): Remove duplicate definition.
4409
4410 2011-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
4411
4412         * gnus-registry.el (gnus-registry-ignore-group-p): Don't call
4413         `gnus-parameter-registry-ignore' if the *Group* buffer doesn't exist.
4414
4415 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
4416
4417         * proto-stream.el (proto-stream-open-starttls): Give host parameter to
4418         `gnutls-negotiate'.
4419         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
4420
4421 2011-04-23  Glenn Morris  <rgm@gnu.org>
4422
4423         * gnus-sum.el (gnus-extra-headers): Bump :version.
4424
4425 2011-04-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4426
4427         * shr.el (shr-tag-sup): New function.
4428         (shr-tag-sub): Ditto.
4429
4430 2011-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
4431
4432         * gnus-registry.el (gnus-registry-ignore-group-p): Test specifically
4433         for the case where `gnus-registry-ignored-groups' is a list of lists,
4434         and don't call `gnus-parameter-registry-ignore' otherwise.
4435
4436 2011-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
4437
4438         * nnimap.el (nnimap-user): New backend variable.
4439         (nnimap-open-connection-1): Use it.
4440         (nnimap-credentials): Accept user parameter so it's explicit what user
4441         name is desired.
4442
4443         * gnus-sum.el (gnus-extra-headers): Add Keywords, Cc, and Gcc to
4444         default.
4445
4446         * gnus.el (gnus-registry-ignored-groups): Provide default in gnus.el,
4447         not gnus-registry.el.
4448
4449         * gnus-registry.el: Mention in comments how to modify
4450         `gnus-extra-headers' for proper recipient tracking and that it may
4451         already have To and Cc recently, which it does as of this commit.
4452         (gnus-registry-ignored-groups): Remove defcustom.
4453         Explain why in comments.
4454         (gnus-registry-action): Fix data-header reference to use the extra
4455         headers.  Explain in package commentary how to add To and Cc headers to
4456         the gnus-extra-headers.
4457         (gnus-registry-ignored-groups): Adjust defaults to match the parameter.
4458         (gnus-registry-ignore-group-p): Adjust to take either a group/topic
4459         parameter list or a string list in `gnus-registry-ignored-groups'.
4460         Fix logic error.
4461
4462 2011-04-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4463
4464         * shr.el (shr-expand-url): Protect against null urls.
4465
4466 2011-04-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4467
4468         * shr.el (shr-base): New binding.
4469         (shr-tag-base): Keep track of <base>.
4470         (shr-expand-url): New function used throughout.
4471
4472 2011-04-20  Teodor Zlatanov  <tzz@lifelogs.com>
4473
4474         * gnus-registry.el
4475         (gnus-registry--split-fancy-with-parent-internal): Fix loop bugs.
4476         (gnus-registry-ignored-groups): New variable.
4477         (gnus-registry-ignore-group-p): Use it.
4478         (gnus-registry-handle-action): Use `gnus-registry-ignore-group-p' and
4479         set the destination group to nil (same as delete) if it's ignored.
4480
4481 2011-04-20  David Engster  <dengste@eml.cc>
4482
4483         * tests/gnustest-nntp.el: New file for simple NNTP testing.
4484
4485         * Makefile.in (test-nntp): New rule.
4486         (check): Add it.
4487         (test-registry): Change '$(EMACS_COMP)' to '$(EMACS) $(FLAGS)'.
4488
4489 2011-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4490
4491         * gnus-registry.el (gnus-registry-action)
4492         (gnus-registry-fetch-header-fast):
4493         Don't use mail-header that looks an internal function of mailheader.el.
4494
4495 2011-04-19  Glenn Morris  <rgm@gnu.org>
4496
4497         * time-date.el (time-to-days): Remove unused local variables.
4498
4499 2011-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4500
4501         * gnus-registry.el: Eliminate cl functions.
4502         (gnus-registry-sort-addresses): New function that replaces mapcan.
4503         (gnus-registry-action, gnus-registry-spool-action)
4504         (gnus-registry-split-fancy-with-parent)
4505         (gnus-registry-fetch-recipients-fast): Use it.
4506         (gnus-registry-import-eld): Replace delete* with dolist + delq.
4507
4508         * registry.el (initialize-instance, registry-lookup)
4509         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
4510         (registry-lookup-secondary-value, registry-search, registry-delete)
4511         (registry-insert, registry-reindex, registry-size, registry-prune):
4512         Use eval-and-compile.
4513
4514 2011-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
4515
4516         * registry.el (registry-reindex): New method to recreate the secondary
4517         registry indices.
4518
4519         * gnus-registry.el (gnus-registry-fixup-registry): Use it if the
4520         tracked field changes.
4521         (gnus-registry-unfollowed-addresses, gnus-registry-track-extra)
4522         (gnus-registry-action, gnus-registry-spool-action)
4523         (gnus-registry-handle-action)
4524         (gnus-registry--split-fancy-with-parent-internal)
4525         (gnus-registry-split-fancy-with-parent)
4526         (gnus-registry-register-message-ids): Add recipient tracking on spool,
4527         move, and delete actions, and for fancy splitting with parent.
4528         (gnus-registry-extract-addresses)
4529         (gnus-registry-fetch-recipients-fast)
4530         (gnus-registry-fetch-header-fast): Convenience functions.
4531         (gnus-registry-misc-test): ERT test of
4532         `gnus-registry-extract-addresses'.
4533
4534 2011-04-15  Teodor Zlatanov  <tzz@lifelogs.com>
4535
4536         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
4537         Track by subject first, then sender.
4538
4539 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4540
4541         * message.el (message-bogus-system-names): Replace ^...$ => \`...\'.
4542
4543         * gnus.el (gnus-splash-svg-color-symbols): Don't use insert-file from
4544         Lisp.
4545
4546         * gnus-draft.el (gnus-draft-setup): New arg `dont-pop'.
4547         (gnus-draft-send): Use it to avoid popping
4548         up frames from gnus-group-send-queue.
4549
4550 2011-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
4551
4552         * gnus-registry.el: Updated gnus-registry docs.
4553
4554 2011-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
4555
4556         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
4557         Fix logic bug.
4558         (gnus-registry-post-process-groups): Fix logging of no results and
4559         quote sender and subject.
4560
4561 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4562
4563         * proto-stream.el (proto-stream-open-starttls): Only do opportunistic
4564         STARTTLS upgrades if we have built-in gnutls support.  Upgrades via
4565         gnutls-cli are too slow to be done opportunistically.
4566
4567         * gnus-start.el (gnus-get-unread-articles): Slight cleanup.
4568         (gnus-read-active-for-groups): Don't try to finish getting stuff where
4569         we had no early-data returned.
4570         (gnus-get-unread-articles): Add a sanity check so that we don't issue
4571         two async commands to the same server at the same time.
4572
4573 2011-04-12  Stig Sandbeck Mathisen  <ssm@fnord.no>  (tiny change)
4574
4575         * gnus-sum.el (gnus-summary-select-article-buffer): Doc fix.
4576
4577 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4578
4579         * gnus-registry.el (gnus-registry-remake-db): Put the warning on a
4580         "warning" level.
4581
4582         * mm-url.el (mm-url-package-name): Remove to ease third-party reuse.
4583         (mm-url-insert-file-contents): Don't set the package names.
4584
4585 2011-04-11  Teodor Zlatanov  <tzz@lifelogs.com>
4586
4587         * gnus-registry.el (gnus-registry-action): Remove properties and
4588         simplify subject in `gnus-registry-handle-action'.
4589         (gnus-registry-spool-action): Get subject and sender from message if
4590         they are not passed in.
4591         (gnus-registry-handle-action): Remove properties and simplify subject
4592         consistently.
4593
4594 2011-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4595
4596         * registry.el: Require CL before using defmacro*.
4597
4598 2011-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4599
4600         * gnus-art.el (article-treat-date): Assume that
4601         gnus-article-date-headers may be a group parameter.
4602
4603 2011-04-07  Teodor Zlatanov  <tzz@lifelogs.com>
4604
4605         * gnus-registry.el (gnus-registry-handle-action): More debugging.
4606
4607         * gnus-start.el (gnus-gnus-to-newsrc-format): Add a way to run
4608         interactively so the newsrc file can contain foreign groups too.
4609         Useful for debugging but not much for users.
4610
4611 2011-04-07  David Engster  <dengste@eml.cc>
4612
4613         * registry.el (registry-usage-test): Only do
4614         `registry-lookup-breaks-before-lexbind' testing for Emacs24 with
4615         lexical binding.
4616
4617 2011-04-07  David Engster  <dengste@eml.cc>
4618
4619         * Makefile.in (check, test-registry): New rules for test-suite.
4620
4621 2011-04-06  David Engster  <dengste@eml.cc>
4622
4623         * registry.el, gnus-registry.el: Use `ignore-errors' instead of third
4624         argument NOERROR for `require', since XEmacs 21.4 does not support it.
4625
4626 2011-04-06  David Engster  <dengste@eml.cc>
4627
4628         * registry.el (initialize-instance): Change :after to :AFTER to be
4629         compatible with old EIEIO version in XEmacs.
4630
4631 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
4632
4633         * gnus-registry.el (gnus-registry-post-process-groups)
4634         (gnus-registry--split-fancy-with-parent-internal): Fix splitting bugs
4635         and provide better messaging.
4636
4637 2011-04-06  David Engster  <dengste@eml.cc>
4638
4639         * Makefile.in (fail-on-warning): New rule to compile with warnings as
4640         errors.
4641
4642         * dgnushack.el (dgnushack-compile-error-on-warn): New function to call
4643         dgnushack-compile with error-on-warn enabled, and to signal an error if
4644         clean compilation failed.
4645         (dgnushack-compile): New argument 'error-on-warn'.  If non-nil, compile
4646         with `byte-compile-error-on-warn'.  Return nil if errors occured.
4647
4648 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
4649
4650         * gnus-registry.el: Don't use ERT if it's not available.  Load it
4651         unconditionally anyway, discarding errors.
4652         (gnus-registry-delete-entries): New convenience function.
4653         (gnus-registry-import-eld): Import from old .eld registry.
4654
4655         * registry.el: Don't use ERT if it's not available.  Load it
4656         unconditionally anyway, discarding errors.
4657
4658         * proto-stream.el (gnutls-negotiate): Revert inadvertent commit of the
4659         version from the Claudio Bley GnuTLS patch (extra optional parameters
4660         and host name).
4661
4662 2011-04-05  Teodor Zlatanov  <tzz@lifelogs.com>
4663
4664         * gnus-registry.el (gnus-registry-fixup-registry): New function to
4665         fixup the parameters that can be customized by the user between
4666         save/read cycles.
4667         (gnus-registry-read): Use it.
4668         (gnus-registry-make-db): Use it.
4669         (gnus-registry-spool-action, gnus-registry-handle-action):
4670         Fix messaging.
4671         (gnus-registry--split-fancy-with-parent-internal): Fix loop.
4672         Map references to actual group names with sender and subject tracking.
4673         (gnus-registry-post-process-groups): Use `cond' for better messaging.
4674         (gnus-registry-usage-test): Add subject lookup test.
4675
4676         * registry.el (registry-db, initialize-instance): Set up constructor
4677         instead of :initform arguments for the sake of older Emacsen.
4678         (registry-lookup-breaks-before-lexbind): New method to demonstrate
4679         pre-lexbind merge bug.
4680         (registry-usage-test): Use it.
4681         (initialize-instance, registry-db): Move the non-function initforms
4682         back to the class definition.
4683
4684 2011-04-03  Teodor Zlatanov  <tzz@lifelogs.com>
4685
4686         * registry.el: New library to manage gnus-registry-style data.
4687
4688         * gnus-registry.el: Use it (major rewrite).
4689
4690         * nnregistry.el: Use it.
4691
4692         * spam.el: Use it.
4693
4694 2011-04-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4695
4696         * gnus-sum.el (gnus-update-marks): Reinstate the code to not alter
4697         marks on non-selected articles.
4698
4699 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
4700
4701         * nnimap.el (nnimap-open-connection-1): Pass explicit :end-of-command
4702         parameter to open-protocol-stream.
4703
4704 2011-04-01  Julien Danjou  <julien@danjou.info>
4705
4706         * mm-view.el (mm-display-inline-fontify): Do not fontify with
4707         fundamental-mode.
4708
4709 2011-04-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4710
4711         * gnus-start.el (gnus-get-unread-articles): Don't try to contact denied
4712         servers.
4713
4714 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4715
4716         * gnus-sum.el (gnus-update-marks): Revert intersection change, which
4717         made marks not propagate, again.
4718
4719 2011-03-30  Chong Yidong  <cyd@stupidchicken.com>
4720
4721         * proto-stream.el (open-protocol-stream): Bring back `network' type.
4722         Make this the default type.
4723         (proto-stream-open-plain): Rename from proto-stream-open-default.
4724         (open-protocol-stream, proto-stream-open-starttls)
4725         (proto-stream-open-tls, proto-stream-open-shell): Replace `default'
4726         with `plain'.
4727
4728         * nnimap.el (nnimap-stream, nnimap-open-connection-1): Accept `network'
4729         value.
4730
4731         * nntp.el (nntp-open-connection-function): Document the fact that some
4732         values are not functions but are instead handled specially.
4733         Recognize nntp-open-plain-stream value.
4734         (nntp-open-connection): Recognize that value.
4735
4736 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4737
4738         * dgnushack.el: Only do the defcustom compilation thing on XEmacs,
4739         where it seems to be needed.
4740
4741 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4742
4743         * gssapi.el (open-gssapi-stream): Remove the last mentions of the IMAP
4744         stuff.
4745
4746         * gnus-score.el (gnus-score-string): Fix calling convention of
4747         `gnus-simplify-buffer-fuzzy' after last patches.
4748
4749         * gnus-sum.el (gnus-update-marks): Don't send any marks updates to the
4750         server for articles we didn't get any headers for.  This is a sanity
4751         check.
4752
4753 2011-03-29  Michael Welsh Duggan  <md5i@md5i.com>
4754
4755         * nnimap.el (nnimap-open-connection-1): Is the login responds with a
4756         new CAPABILITY, use it.
4757
4758 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4759
4760         * gnus-agent.el (gnus-agent-fetch-headers): Don't message if we're not
4761         downloading anything.
4762
4763         * gnus.el (gnus-splash-svg-color-symbols): Remove superfluous `and'.
4764
4765 2011-03-29  Adam Sjøgren  <asjo@koldfront.dk>
4766
4767         * gnus.el (gnus-group-startup-message): Prefer svg file and replace
4768         colors.
4769         (gnus-splash-svg-color-symbols): New function.
4770
4771 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4772
4773         * gnus-sum.el (gnus-simplify-buffer-fuzzy): Take the regexp explicitly
4774         instead of using the global gnus-simplify-subject-fuzzy-regexp.
4775         (gnus-simplify-subject-fuzzy): Use the local
4776         gnus-simplify-subject-fuzzy-regex instead of the global one.
4777         This makes using this variable in group parameters work.
4778
4779 2011-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
4780
4781         * gnus-registry.el (gnus-registry-unfollowed-groups):
4782         Add "archive:sent" to the unfollowed group regex (for the recent Gnus
4783         archive:sent-YYYY-MM-DD groups).
4784         (gnus-registry-split-fancy-with-parent): Bail out early in sender
4785         tracking if there are more than `gnus-registry-max-track-groups'
4786         matches.
4787
4788 2011-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4789
4790         * message.el (message--yank-original-internal): New function to do the
4791         insertion cleanly inside eval in `message-yank-original'.
4792         (message-yank-original): Use it.
4793
4794 2011-03-29  Julien Danjou  <julien@danjou.info>
4795
4796         * mm-view.el (mm-display-inline-fontify): Use `set-normal-mode' with
4797         local variables disabled rather than `normal-mode'.
4798
4799 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
4800
4801         * imap.el (imap-shell-open, imap-process-connection-type):
4802         Use imap-process-connection-type for 'shell' streams as well as
4803         Kerberos, SSL, other subprocesses.
4804
4805 2011-03-26  Chong Yidong  <cyd@stupidchicken.com>
4806
4807         * proto-stream.el: Changes preparatory to merging open-protocol-stream
4808         with open-network-stream.
4809         (proto-stream-always-use-starttls): Option removed.
4810         (open-protocol-stream): Return a process object by default.  Provide a
4811         new parameter :return-list specifying a list-type return value, which
4812         now has the form (PROP . PLIST) instead of a fixed-length list.  Change
4813         :type `network' to `try-starttls', and `network-only' to `default'.
4814         Make `default' the default, for compatibility with open-network-stream.
4815         Handle the no-parameter case exactly as open-network-stream, with no
4816         additional stream processing.  Search plists using plist-get.
4817         Explicitly add :end-of-commend parameter if it is missing.
4818         (proto-stream-open-default): Rename from
4819         proto-stream-open-network-only.  Return 'default as the type.
4820         (proto-stream-open-starttls): Rename from proto-stream-open-network.
4821         Use plist-get.  Don't return `tls' as the type if STARTTLS negotiation
4822         failed.  Always return a list with a (possibly dead) process as the
4823         first element, for compatibility with open-network-stream.
4824         (proto-stream-open-tls): Use plist-get.  Always return a list.
4825         (proto-stream-open-shell): Return `default' as connection type.
4826         (proto-stream-capability-open): Use plist-get.
4827         (proto-stream-eoc): Function deleted.
4828
4829         * nnimap.el (nnimap-stream, nnimap-open-connection)
4830         (nnimap-open-connection-1): Handle renaming of :type parameter for
4831         open-protocol-stream.
4832         (nnimap-open-connection-1): Pass a :return-list parameter
4833         open-protocol-stream to obtain a list return value.  Parse this list
4834         using plist-get.
4835
4836         * nntp.el (nntp-open-connection): Handle renaming of :type parameter
4837         for open-protocol-stream.  Accept open-protocol-stream return value
4838         that is a subprocess object instead of a list.  Handle the case of a
4839         dead returned process.
4840
4841 2011-03-25  Teodor Zlatanov  <tzz@lifelogs.com>
4842
4843         * mm-util.el (mm-handle-filename): Move to mm-decode.el (bug#8330).
4844
4845         * mm-decode.el (mm-handle-filename): Move from mm-util.el (bug#8330).
4846
4847 2011-03-21  Julien Danjou  <julien@danjou.info>
4848
4849         * mm-view.el (mm-display-inline-fontify): Make mode optional, and call
4850         normal-mode if not set.  Set temp buffer unmodified to avoid kill-buffer
4851         query.
4852         (mm-inline-text): Render normal text with fontification whenever
4853         possible.
4854
4855         * gnus-sum.el (gnus-summary-save-parts-1):
4856         * gnus-art.el (gnus-article-browse-html-save-cid-content)
4857         (gnus-article-browse-html-parts, gnus-mime-delete-part)
4858         (gnus-mime-copy-part, gnus-mime-inline-part, gnus-insert-mime-button):
4859         Use `mm-handle-filename'.
4860
4861         * mm-util.el (mm-handle-filename): New function, return the filename of
4862         an handle.
4863
4864 2011-03-18  Julien Danjou  <julien@danjou.info>
4865
4866         * gnus-util.el (gnus-buffer-live-p): Simplify gnus-buffer-live-p.
4867         (gnus-buffer-live-p): Check that buffer is not nil.
4868
4869 2011-03-17  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4870
4871         * gnus.el: No Gnus v0.15 is released.
4872
4873 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4874
4875         * time-date.el (format-seconds): Use assoc instead of assoc-string to
4876         avoid warning on XEmacs.
4877
4878         * dgnushack.el: Bind help-echo-owns-message to avoid a compiler warning
4879         on XEmacs.
4880
4881         * gnus-art.el: Require mouse, which the build bot seems to say is
4882         needed.
4883
4884         * dgnushack.el: Define url-retrieve-synchronously unless not defined.
4885
4886         * gravatar.el (gravatar-retrieve-synchronously): Use `url-retrieve' on
4887         XEmacs, since it doesn't have url-retrieve-synchronously.
4888
4889         * time-date.el (format-seconds): Use assoc instead of assoc-string,
4890         since assoc-string doesn't exist in XEmacs.
4891
4892 2011-03-17  Antoine Levitt  <antoine.levitt@gmail.com>
4893
4894         * gnus-group.el (gnus-group-list-ticked): New function.
4895         (gnus-group-make-menu-bar): Provide a menu entry for it.
4896         (gnus-group-list-map): Provide a binding for it.
4897
4898 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4899
4900         * shr.el (shr-visit-file): New command.
4901
4902         * nnimap.el (nnimap-fetch-inbox): Rewrite slightly last patch.
4903
4904 2011-03-17  Bjørn Mork  <bjorn@mork.no>
4905
4906         * nnimap.el (nnimap-fetch-inbox): Don't download bodies on ver4-capable
4907         servers.
4908
4909 2011-03-16  Julien Danjou  <julien@danjou.info>
4910
4911         * mm-uu.el (mm-uu-dissect-text-parts): Only dissect handle that are
4912         inline.
4913
4914         * gnus-art.el (article-hide-list-identifiers):
4915         Use gnus-group-get-list-identifiers.
4916
4917         * gnus-sum.el (gnus-group-get-list-identifiers): New function.
4918         (gnus-summary-remove-list-identifiers):
4919         Use gnus-group-get-list-identifiers to get regexp.
4920         (gnus-select-newsgroup, gnus-summary-insert-subject)
4921         (gnus-summary-insert-articles):
4922         Call gnus-summary-remove-list-identifiers unconditionally.
4923
4924 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4925
4926         * gnus-sum.el (gnus-articles-to-read): Revert back to old behavior if
4927         we're selecting a group with unread articles.
4928
4929         * nnimap.el (nnimap-open-connection-1): Allow `network-only', too.
4930
4931         * gssapi.el: New file separated out from imap.el to provide a general
4932         Kerberos 5 connection facility for Emacs.
4933
4934         * message.el (message-elide-ellipsis): Document the format spec
4935         ellipsis.
4936
4937 2011-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
4938
4939         * message.el (message-elide-region): Allow the ellipsis to say how many
4940         lines were removed.
4941
4942 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4943
4944         * gnus-win.el (gnus-configure-frame): Protect against trying to restore
4945         window configurations containing buffers that are now dead.
4946
4947         * nnimap.el (nnimap-parse-flags): Remove all MODSEQ entries before
4948         parsing to avoid integer overflows.
4949         (nnimap-parse-flags): Simplify the last change.
4950         (nnimap-parse-flags): Store HIGHESTMODSEQ as a string, since it may be
4951         too large for 32-bit Emacsen.
4952
4953 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4954
4955         * auth-source.el (auth-source-netrc-create):
4956         * message.el (message-yank-original): Fix use of `case'.
4957
4958 2011-03-15  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
4959
4960         * gnus-art.el (gnus-article-treat-body-boundary): Fix boundary width on
4961         XEmacs, which was one character too wide.
4962
4963 2011-03-09  Antoine Levitt  <antoine.levitt@gmail.com>
4964
4965         * gnus-sum.el (gnus-articles-to-read): Use gnus-large-newsgroup as
4966         default number of articles to display.
4967         (gnus-articles-to-read): Use pretty names for prompt.
4968
4969 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4970
4971         * gnus-int.el (gnus-open-server): Ditto.
4972
4973         * gnus-start.el (gnus-activate-group): Give a backtrace if
4974         debug-on-quit is set and the user hits `C-g'.
4975         (gnus-read-active-file): Ditto.
4976
4977         * gnus-group.el (gnus-group-read-ephemeral-group): Ditto.
4978
4979 2011-03-15  Teodor Zlatanov  <tzz@lifelogs.com>
4980
4981         * message.el (message-yank-original): Use cond instead of CL case.
4982
4983 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4984
4985         * auth-source.el (auth-source-netrc-create): Use usual format for the
4986         default in prompts.
4987
4988 2011-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4989
4990         * lpath.el: Fbind read-char-choice for XEmacs.
4991
4992 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
4993
4994         * auth-source.el (auth-source-netrc-create): Show the default in the
4995         prompt when prompting for token creation.
4996
4997 2011-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
4998
4999         * auth-source.el (auth-source-format-prompt): Always convert the value
5000         to a string to avoid evaluating non-string arguments.
5001         (auth-source-netrc-create): Offer default properly, not as initial
5002         content in `read-string'.
5003         (auth-source-netrc-saver): Use a cache keyed by file name and MD5 hash
5004         of line to determine if we've been run before.  If so, don't run again,
5005         but print a trivial message to indicate the cache was hit instead.
5006
5007 2011-03-11  Teodor Zlatanov  <tzz@lifelogs.com>
5008
5009         * gnus-sync.el (gnus-sync-install-hooks, gnus-sync-unload-hook):
5010         Don't install `gnus-sync-read' to any hooks by default.  It's buggy.
5011         The user will have to run `gnus-sync-read' manually and wait for Cloudy
5012         Gnus.
5013
5014 2011-03-11  Julien Danjou  <julien@danjou.info>
5015
5016         * mm-uu.el (mm-uu-type-alist): Add support for diff starting with "===
5017         modified file".
5018
5019 2011-03-09  Teodor Zlatanov  <tzz@lifelogs.com>
5020
5021         * auth-source.el (auth-source-read-char-choice): New function to read a
5022         character choice using `dropdown-list', `read-char-choice', or
5023         `read-char'.  It appends "[a/b/c] " to the prompt if the choices were
5024         '(?a ?b ?c).  The `dropdown-list' support is disabled for now.  Use
5025         `eval-when-compile' to load `dropdown-list'.  Remove `dropdown-list'.
5026         (auth-source-netrc-saver): Use it.
5027         (auth-source-pick-first-password): New convenience function.
5028
5029 2011-03-08  Teodor Zlatanov  <tzz@lifelogs.com>
5030
5031         * nnimap.el (nnimap-credentials): Keep the :save-function as the third
5032         parameter in the credentials.
5033         (nnimap-open-connection-1): Use it after a successful login.
5034         (nnimap-credentials): Add IMAP-specific user and password prompt.
5035
5036         * auth-source.el (auth-source-search): Add :require parameter, taking a
5037         list.  Document it and the :save-function return token.  Pass :require
5038         down.  Change the CREATED message from a warning to a debug statement.
5039         (auth-source-search-backends): Pass :require down.
5040         (auth-source-netrc-search): Pass :require down.
5041         (auth-source-netrc-parse): Use :require, if it's given, as a filter.
5042         Change save prompt to indicate all modifications saved here are
5043         deletions.
5044         (auth-source-netrc-create): Take user login name as default in user
5045         prompt.  Move all the save functionality to a lexically bound function
5046         under the :save-function token in the returned list.  Set up clearer
5047         default prompts for user, host, port, and secret.
5048         (auth-source-netrc-saver): New function, intended to be wrapped for
5049         :save-function.
5050
5051 2011-03-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5052
5053         * shr.el (shr-table-horizontal-line): Change the defaults for the table
5054         lines to be spaces instead.
5055
5056 2011-03-07  Julien Danjou  <julien@danjou.info>
5057
5058         * sieve-manage.el (sieve-sasl-auth): Create auth-info if not found.
5059         (sieve-sasl-auth): Check that auth-source-search did return something,
5060         or just return an empty string.
5061
5062 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
5063
5064         * gnus.el (gnus-interactive): Use read-directory-name.
5065
5066         * gnus-uu.el (gnus-uu-decode-uu-and-save)
5067         (gnus-uu-decode-unshar-and-save, gnus-uu-decode-save)
5068         (gnus-uu-decode-binhex, gnus-uu-decode-yenc)
5069         (gnus-uu-decode-save-view, gnus-uu-decode-postscript-and-save):
5070         Likewise.
5071
5072         * gnus-group.el (gnus-group-make-directory-group): Likewise.
5073
5074 2011-03-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5075
5076         * gnus-start.el (gnus-group-change-level): Allow putting foreign groups
5077         onto the list of killed groups, too.  This makes killed nnimap groups,
5078         for instance, more reliably not reappear.
5079
5080         * nnimap.el (nnimap-request-thread): Don't bug out when we can't find
5081         the parent.
5082
5083         * gnus-sum.el (gnus-update-read-articles): Fix typo.
5084
5085         * gnus.el (gnus-valid-select-methods): Mark nnimap as a backend that
5086         really have server-side marks.
5087
5088         * gnus-sum.el (gnus-propagate-marks): Change default back to nil again,
5089         since most backends do not usefully have server-side marks.
5090         (gnus-update-read-articles): Propagate marks to all backends that
5091         really have server-side marks.
5092
5093 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
5094
5095         * message.el (message-cite-reply-position, message-cite-style):
5096         New variables.
5097         (message-yank-original): Use the new citation styles.
5098
5099 2011-03-04  Daiki Ueno  <ueno@unixuser.org>
5100
5101         * message.el (message-options): Revert 22da67af (workaround for XEmacs
5102         buffer-local issue); don't mark it buffer-local when running under
5103         XEmacs.
5104
5105 2011-03-03  Tassilo Horn  <tassilo@member.fsf.org>
5106
5107         * nnimap.el (nnimap-parse-flags): Add a workaround for FETCH lines with
5108         numbers too big to be `read'.
5109
5110 2011-03-02  Teodor Zlatanov  <tzz@lifelogs.com>
5111
5112         * password-cache.el (password-in-cache-p): Add autoload.
5113
5114         * message.el (message-options): Make buffer-local two ways to attempt
5115         to fix a XEmacs bug.
5116
5117 2011-03-02  Julien Danjou  <julien@danjou.info>
5118
5119         * gnus-art.el (gnus-with-article-buffer): Fix buffer live check.
5120
5121 2011-03-01  Julien Danjou  <julien@danjou.info>
5122
5123         * gnus-art.el (list-identifier): Add list-identifier as a parameter
5124         group.
5125         (article-hide-list-identifiers): Use list-identifier group parameter.
5126
5127 2011-02-28  Julien Danjou  <julien@danjou.info>
5128
5129         * sieve.el (sieve-buffer-script-name): New local variable to store
5130         sieve script name.
5131         (sieve-edit-script): Store sieve script name.
5132         (sieve-upload): Use sieve script name when uploading.
5133         (sieve-upload): Use substitute-command-keys.
5134         (sieve-edit-script): Use substitute-command-keys.
5135         (sieve-refresh-scriptlist): Use substitute-command-keys.
5136         (sieve-manage-mode-map): Define keymap properly.
5137         (sieve-manage-mode): Do not set mode name manually, change mode-name to
5138         (sieve-refresh-scriptlist): Use substitute-command-keys."Sieve-manage".
5139         Remove commented code about cvs.
5140         (sieve-manage-quit): New function.
5141         (sieve-manage-mode-map): Bind 'q' to sieve-manage-quit.
5142
5143 2011-02-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5144
5145         * gnus-group.el (gnus-import-other-newsrc-file): New function.
5146
5147 2011-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
5148
5149         * auth-source.el (auth-source-search): Cache empty result sets.
5150
5151         * password-cache.el (password-in-cache-p): Convenience function to
5152         check if a key is in the cache, even if the value is nil.
5153
5154         * auth-source.el (auth-source-save-behavior): New variable to replace
5155         `auth-source-never-create'.
5156         (auth-source-netrc-create): Use it.
5157         (auth-source-never-save): Remove.
5158
5159 2011-02-25  Lars Ingebrigtsen  <larsi@gnus.org>
5160
5161         * nnimap.el (nnimap-stream): Doc fix.
5162         (nnimap-open-connection-1): Reverse the order of the ports to that the
5163         prompted-for port is first.
5164
5165         * gnus-start.el (gnus-get-unread-articles): Don't clobber the async
5166         retrieval by the no-group selection.
5167
5168         * gnus-demon.el (gnus-demon-init): run-with-timer should be called with
5169         numerical parameters.
5170
5171 2011-02-25  Julien Danjou  <julien@danjou.info>
5172
5173         * gnus-gravatar.el: Use gnus-with-article-buffer.
5174
5175         * gnus-art.el (gnus-with-article-buffer): Check that the
5176         gnus-article-buffer is alive.
5177
5178 2011-02-24  Teodor Zlatanov  <tzz@lifelogs.com>
5179
5180         * auth-source.el (auth-source-creation-prompts): New variable to manage
5181         creation-time prompts.
5182         (auth-source-search): Document it.
5183         (auth-source-format-prompt): Add utility function.
5184         (auth-source-netrc-create): Don't default the user name to
5185         user-login-name.  Use `auth-source-creation-prompts' and some default
5186         prompts for user, host, port, and password (the default generic prompt
5187         remains ugly).
5188         (auth-source-never-save): Add customizable option to never save info.
5189         (auth-source-netrc-create): Use it and improve save prompts.  Fix help
5190         mode excursion.
5191
5192 2011-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5193
5194         * auth-source.el (auth-source-netrc-create): Use `read-char' with no
5195         argument that XEmacs doesn't support.
5196
5197         * dgnushack.el (dgnushack-compile): Exclude color.el from being
5198         compiled for Emacsen having no `libxml-parse-html-region' support.
5199
5200         * gnus-xmas.el (gnus-xmas-define): Remove gnus-x-color-values.
5201
5202         * lpath.el: Bind buffer-save-without-query for XEmacs.
5203
5204 2011-02-23  Julien Danjou  <julien@danjou.info>
5205
5206         * gnus-art.el (article-make-date-line): Ignore errors if time is
5207         invalid and not convertible.
5208         (article-make-date-line): Only add lapsed time if time is not nil.
5209
5210 2011-02-23  Teodor Zlatanov  <tzz@lifelogs.com>
5211
5212         * auth-source.el (auth-source-netrc-create): Use `read-char' instead of
5213         `read-char-choice' for backwards compatibility.
5214         (auth-source-netrc-element-or-first): New function to DTRT for
5215         parameter extraction.
5216         (auth-source-netrc-create): Use it and fix multiple parameter print
5217         bug.  Use the default passed from above (given-default) or the
5218         built-in (user-login-name for :user).
5219
5220 2011-02-23  Lars Ingebrigtsen  <larsi@gnus.org>
5221
5222         * gnus-start.el (gnus-dribble-read-file):
5223         Set buffer-save-without-query, since we always want to save the dribble
5224         file, probably.
5225
5226         * nnmail.el (nnmail-article-group): Allow a final "" split to work on
5227         nnimap.
5228
5229         * gnus-sum.el (gnus-user-date-format-alist): Rename back again from
5230         -summary- since it's a user-visible variable.
5231
5232         * nnimap.el (nnimap-retrieve-group-data-early): Don't do QRESYNC the
5233         first time you use the new Gnus.
5234
5235 2011-02-22  Teodor Zlatanov  <tzz@lifelogs.com>
5236
5237         * auth-source.el: Don't load netrc.el.
5238         (auth-sources): Search ~/.netrc as well by default.
5239         (auth-source-debug): Add 'trivia option for extra output.
5240         (auth-source-do-trivia): Use it.
5241         (auth-source-search): Simplify logic to use
5242         `auth-source-search-backends'.  Use `auth-source-do-trivia' where
5243         appropriate.  Don't keep a running count at this level.  Layer :create
5244         and :delete options appropriately on the first and second passes.
5245         Don't track the backend with the search results.
5246         (auth-source-search-backends): New function to search a list of
5247         backends for a processed spec.
5248         (auth-source-netrc-parse): Cache all netrc files, making
5249         auth-source-netrc-cache an alist keyed by the file name and using the
5250         file mtime as the caching criterion.  Keep the obfuscated data secret
5251         with a lexical bind.
5252         (auth-source-netrc-search): Don't calculate the length of the results
5253         unnecessarily.
5254         (auth-source-search-backends): Fix bug.
5255         (auth-source-netrc-create): Rework prompts.
5256
5257 2011-02-22  Andrew Cohen  <cohen@andy.bu.edu>
5258
5259         * nnir.el (nnir-imap-search-arguments,nnir-imap-default-search-key):
5260         Lower case names of search constraints.
5261         (nnir-run-query): Cache and reuse search constraints for all imap
5262         servers.
5263
5264 2011-02-22  Lars Ingebrigtsen  <larsi@gnus.org>
5265
5266         * gnus-msg.el (gnus-inews-add-send-actions): Restore the winconf name
5267         after exit.
5268         (gnus-setup-message): Define missing variable from last checkin.
5269
5270         * gnus-sum.el (gnus-summary-show-article): When called with t as the
5271         value, show the raw article.
5272
5273 2011-02-22  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5274
5275         * gnus.el: No Gnus v0.13 is released.
5276
5277 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5278
5279         * nnimap.el (nnimap-open-connection-1): Revert last change, since
5280         auth-source now accepts numbers.
5281
5282         * auth-source.el (auth-source-netrc-parse): Accept a number as the port
5283         spec, too.
5284         (auth-source-ensure-strings): New function.
5285
5286         * gnus-art.el (gnus-article-update-date-headers): Doc fix.
5287         (gnus-article-setup-buffer): Always restart the date timer so that user
5288         changes to the frequency is respected.
5289
5290         * nnimap.el (nnimap-open-connection-1): auth-source expects strings as
5291         port numbers, so make sure it gets that if nnimap-server-port is
5292         explicit.
5293
5294 2011-02-21  Simon Josefsson  <simon@josefsson.org>
5295
5296         * nnimap.el (nnimap-inbox): Doc fix.
5297
5298 2011-02-21  Chong Yidong  <cyd@stupidchicken.com>
5299
5300         * color.el (color-name-to-rgb): Rename from color-rgb->normalize.
5301         Autoload.  Add optional arg FRAME, and pass it to color-values.
5302         (color-complement): Caller changed.  Doc fix.
5303         (color-gradient): Rewrite for better clarity and efficiency.
5304
5305 2011-02-20  Chong Yidong  <cyd@stupidchicken.com>
5306
5307         * shr-color.el (shr-color->hexadecimal): Use renamed function names
5308         color-rgb-to-hex, color-name-to-rgb, color-srgb-to-lab, and
5309         color-lab-to-srgb.
5310
5311 2011-02-20  Drew Adams  <drew.adams@oracle.com>
5312
5313         * color.el: First part of merge from hexrgb.el.
5314         (color-rgb-to-hex): Rename from color-rgb->hex.
5315         (color-rgb-to-hsv): Rename from color-rgb->hsv.  Force hue and
5316         saturation to zero if the value is too small.
5317         (color-rgb-to-hsl): Rename from color-rgb->hsl.
5318         (color-srgb-to-xyz): Rename from color-srgb->xyz.  Doc fix.
5319         (color-xyz-to-srgb): Rename from color-xyz->srgb.  Doc fix.
5320         (color-xyz-to-lab): Rename from color-xyz->lab.  Doc fix.
5321         (color-lab-to-xyz): Rename from color-lab->xyz.  Doc fix.
5322         (color-lab-to-srgb): Rename from color-lab->srgb.  Doc fix.
5323         (color-cie-de2000): Doc fix.
5324
5325 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5326
5327         * nntp.el (nntp-finish-retrieve-group-infos): Add a kludge to use the
5328         given method as in the group name if we're using an extended method.
5329         (nntp-finish-retrieve-group-infos): Wait for the end of the LIST ACTIVE
5330         command, if we're using that, instead of waiting for the beginning.
5331
5332         * gnus-start.el (gnus-get-unread-articles): Extend the methods so that
5333         we're sure to get unique server names, and we don't output two async
5334         commands in the same buffer.  This fixes an NNTP hang for some users.
5335
5336 2011-02-21  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5337
5338         * gnus.el: No Gnus v0.11 is released.
5339
5340 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5341
5342         * gnus-sum.el (gnus-summary-next-article): Add a kludge to reselect the
5343         summary buffer before reading going to the next buffer.  This avoids
5344         putting the point in the group buffer if you `C-g' the command.
5345
5346         * auth-source.el (auth-source-netrc-parse): Add an in-memory netrc
5347         cache (for now) to make ~/.authinfo.gpg files usable.
5348
5349         * nnfolder.el (copyright-update): Define for the compiler.
5350
5351         * auth-source.el (auth-source-search): Fix unbound variable.
5352
5353 2011-02-19  Glenn Morris  <rgm@gnu.org>
5354
5355         * gnus.el (gnus-meta): Doc fix.
5356
5357 2011-02-19  Chong Yidong  <cyd@stupidchicken.com>
5358
5359         * nnfolder.el (nnfolder-save-buffer): Don't let-bind copyright-update,
5360         in case it's not yet loaded.
5361
5362 2011-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
5363
5364         * nnimap.el (nnimap-wait-for-response): Ensure that we get the entire
5365         line we're waiting for.
5366
5367 2011-02-19  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
5368
5369         * gnus-art.el (gnus-article-next-page-1): Because customized mode-line
5370         face with line-width greater than zero will cause RET in gnus summary
5371         buffer to scroll down article page-wise because auto vscroll happens,
5372         it should be temporally disabled when doing a scroll-up.
5373
5374 2011-02-19  Lars Ingebrigtsen  <larsi@gnus.org>
5375
5376         * nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK"
5377         outputs from the server.
5378
5379 2011-02-18  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
5380
5381         * gnus-art.el (gnus-article-prepare): Run gnus-article-prepare-hook
5382         later so that bbdb can hook in easier.
5383
5384 2011-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
5385
5386         * auth-source.el (auth-source-search): Don't try to create credentials
5387         if the caller doesn't want that.
5388         (auth-source-search): If we don't find a match, don't bug out on
5389         non-bound variables.
5390         (auth-source-search): Only ask a single backend to create the
5391         credentials.
5392
5393         * nnimap.el (nnimap-log-command): Add a newline to the inhibited
5394         logging.
5395         (nnimap-credentials): Protect against auth-source-search returning nil.
5396         (nnimap-request-list): Protect against not being able to open the
5397         server.
5398
5399 2011-02-17  Lars Ingebrigtsen  <larsi@gnus.org>
5400
5401         * auth-source.el (auth-source-search): Do a two-phase search, one with
5402         no :create to get the responses from all backends.
5403
5404         * nnimap.el (nnimap-open-connection-1): Delete duplicate server names
5405         when getting credentials.
5406
5407         * gnus-util.el (gnus-delete-duplicates): New function.
5408
5409 2011-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
5410
5411         * nnimap.el (nnimap-credentials): Instead of picking the first port as
5412         a creation default, pass the whole port list down.  It will be
5413         completed.
5414
5415         * auth-source.el (auth-source-search): Updated docs to talk about
5416         multiple creation choices.
5417         (auth-source-netrc-create): Accept a list as a value (from the search
5418         parameters) and do completion on that list.  Keep a separate netrc line
5419         with the password obscured for showing the user.
5420
5421         * nnimap.el (nnimap-open-connection-1): Make the `nnimap-address' the
5422         first choice to `auth-source-search' so it will be used for entry
5423         creation instead of the server's Gnus-specific name.
5424         (nnimap-credentials): Rely on the auth-source library to select which
5425         port is actually wanted in the new netrc entry, so don't override
5426         `auth-source-creation-defaults'.
5427
5428         * auth-source.el (auth-source-netrc-parse): Use :port instead of
5429         :protocol and accept a missing user, host, or port as a wildcard match.
5430         (auth-source-debug): Default to off.
5431
5432         (auth-source-netrc-search, auth-source-netrc-create)
5433         (auth-source-secrets-search, auth-source-secrets-create)
5434         (auth-source-user-or-password, auth-source-backend, auth-sources)
5435         (auth-source-backend-parse-parameters, auth-source-search): Use :port
5436         instead of :protocol.
5437
5438         * nnimap.el (nnimap-credentials): Pass a port default to
5439         `auth-source-search' in case an entry needs to be created.
5440         (nnimap-open-connection-1): Use :port instead of :protocol.
5441
5442 2011-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5443
5444         * auth-source.el: Bind load-path when loading EIEIO from
5445         "gnus-fallback-lib/eieio"; don't pass more than two args, that XEmacs
5446         21.4 doesn't support, to `require'.
5447         (auth-source-secrets-search): Use mm-delete-duplicates instead of
5448         delete-dups that is not available in XEmacs 21.4.
5449
5450 2011-02-16  Raphael Kubo da Costa  <kubito@gmail.com>  (tiny change)
5451
5452         * auth-source.el: Correctly load EIEIO from "gnus-fallback-lib/eieio"
5453         as EIEIO must also be loaded when auth-source.el is being
5454         byte-compiled.
5455
5456 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
5457
5458         * gnus-fallback-lib/eieio/eieio.el: Copy from Emacs.
5459
5460         * gnus-fallback-lib/eieio/eieio-speedbar.el: Copy from Emacs.
5461
5462         * gnus-fallback-lib/eieio/eieio-opt.el: Copy from Emacs.
5463
5464         * gnus-fallback-lib/eieio/eieio-datadebug.el: Copy from Emacs.
5465
5466         * gnus-fallback-lib/eieio/eieio-custom.el: Copy from Emacs.
5467
5468         * gnus-fallback-lib/eieio/eieio-comp.el: Copy from Emacs.
5469
5470         * gnus-fallback-lib/eieio/eieio-base.el: Copy from Emacs.
5471
5472         * auth-source.el: Load EIEIO from "gnus-fallback-lib/eieio" if
5473         necessary.
5474
5475 2011-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
5476
5477         * gnus-sum.el (gnus-propagate-marks): Change default to t again, since
5478         nil means that nnimap doesn't get updated.
5479
5480 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
5481
5482         * auth-source.el (auth-source-netrc-create): Return a synthetic search
5483         result when the user doesn't want to write to the file.
5484         (auth-source-netrc-search): Expect a synthetic result and proceed
5485         accordingly.
5486         (auth-source-cache-expiry): New variable to override
5487         `password-cache-expiry'.
5488         (auth-source-remember): Use it.
5489
5490         * nnimap.el (nnimap-credentials): Remove the `inhibit-create'
5491         parameter.  Create entry if necessary by using :create t.
5492         (nnimap-open-connection-1): Don't pass `inhibit-create'.
5493
5494 2011-02-15  Teodor Zlatanov  <tzz@lifelogs.com>
5495
5496         * auth-source.el (auth-source-debug): Enable by default and don't
5497         mention the obsolete `auth-source-hide-passwords'.
5498         (auth-source-do-warn): New function to debug unconditionally.
5499         (auth-source-do-debug): Use it.
5500         (auth-source-backend-parse): Use it for invalid `auth-sources' entries
5501         and for Secrets API entries when the secrets.el library is not
5502         available.
5503
5504 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
5505
5506         * gnus-sum.el (gnus-propagate-marks): Default to nil.
5507         (gnus-summary-exit): Kill the correct article buffer on exit from a
5508         `C-d' group.
5509
5510         * gnus-start.el (gnus-use-backend-marks): Removed, since it duplicates
5511         gnus-propagate-marks.
5512
5513         * gnus-sum.el (gnus-summary-exit-no-update): Restore the group conf
5514         before killing the buffers so that a non-full window conf gets handled
5515         correctly.
5516         (gnus-summary-exit): Ditto.
5517         (gnus-summary-read-group-1): Ditto.
5518
5519         * nntp.el (nntp-retrieve-group-data-early): Reinstate the two-part
5520         async code again so that we can debug it properly.
5521
5522         * message.el (message-reply): Take an optional switch-buffer parameter
5523         so that Gnus window confs are respected better.
5524
5525 2011-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
5526
5527         * auth-source.el (auth-source-backend-parse-parameters): Don't rely on
5528         `plist-get' to accept non-list parameters (XEmacs issue).
5529         Fix docstring.
5530         (auth-source-secrets-search): Use `delete-dups', `append mapcar', and
5531         `butlast' instead of `remove-duplicates', `mapcan', and `subseq'.
5532         (auth-sources, auth-source-backend-parse, auth-source-secrets-search):
5533         Login collection is "Login" and not "login".
5534
5535 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
5536
5537         * gnus-art.el (article-update-date-lapsed): Don't bug out when updating
5538         multiple headers.
5539
5540         * nnimap.el (nnimap-inhibit-logging): New variable.
5541         (nnimap-log-command): Don't log login commands.
5542
5543         * auth-source.el (auth-source-netrc-search): The asserts seem to want
5544         to have more parameters.
5545
5546         * nnimap.el (nnimap-send-command): Mark the command time for each
5547         command, so that we don't get NOOPs stepping on our toes.
5548
5549         * gnus-art.el (article-date-ut): Get the date from the Date header on
5550         `t'.
5551
5552 2011-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5553
5554         * auth-source.el (auth-source-search): Use copy-sequence instead of
5555         the cl.el copy-list.
5556
5557 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
5558
5559         * imap.el: Bring it back (revert
5560         84d800cd31de3064f0ed39617d725709a2f8f42f).
5561
5562 2011-02-13  Adam Sjøgren  <asjo@koldfront.dk>
5563
5564         * gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
5565         Improve prompt.
5566
5567 2011-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
5568
5569         * gnus-art.el (gnus-article-mode-line-format): Remove the article
5570         washing status from the default format.  It isn't very informative.
5571
5572 2011-02-13  Tassilo Horn  <tassilo@member.fsf.org>  (tiny change)
5573
5574         * nnimap.el (nnimap-request-accept-article, nnimap-process-quirk):
5575         Fix Gcc processing on imap.
5576
5577 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
5578
5579         * imap.el: Remove file.  All the functionality is in nnimap.el.
5580
5581 2011-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5582
5583         * message.el (message-bury): Don't pop up a new window when selected
5584         window is dedicated.
5585
5586 2011-02-10  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
5587
5588         * gnus-sum.el (gnus-summary-save-parts): Use read-directory-name.
5589
5590 2011-02-10  Teodor Zlatanov  <tzz@lifelogs.com>
5591
5592         * sieve-manage.el: Autoload `auth-source-search'.
5593         (sieve-sasl-auth): Use it.
5594
5595 2011-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
5596
5597         * nnimap.el: Autoload `auth-source-forget+'.
5598         (nnimap-open-connection-1): Use it if the connection fails.
5599
5600         * auth-source.el: Require `password-cache'.
5601         (auth-source-hide-passwords, auth-source-cache): Remove and mark
5602         obsolete.
5603         (auth-source-magic): Marker for `password-cache' keys.
5604         (auth-source-do-cache): Update docstring.
5605         (auth-source-search): Use and check cache.
5606         (auth-source-forget-all-cached, auth-source-remember)
5607         (auth-source-recall, auth-source-forget, auth-source-forget+)
5608         (auth-source-specmatchp): Caching support functions.
5609         (auth-source-forget-user-or-password, auth-source-forget-all-cached):
5610         Remove and obsolete.
5611         (auth-source-user-or-password): Remove caching to further discourage
5612         using it.  Always hide passwords.
5613
5614         * password-cache.el (password-cache-remove): Accept secrets that are
5615         not strings.
5616
5617 2011-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
5618
5619         * nntp.el (nntp-retrieve-group-data-early-disabled): Disable the async
5620         code for now, since it doesn't work for all users.
5621
5622 2011-02-09  Julien Danjou  <julien@danjou.info>
5623
5624         * message.el (message-options): Make message-options really buffer
5625         local.
5626
5627 2011-02-08  Teodor Zlatanov  <tzz@lifelogs.com>
5628
5629         * mail-source.el: Autoload `auth-source-search'.
5630         (mail-source-keyword-map): Note order matters.
5631         (mail-source-set-1): Get all the mail-source source values and
5632         defaults and search auth-source on those if needed.  This can all
5633         probably be simplified.
5634
5635         * nnimap.el: Autoload `auth-source-search'.
5636         (nnimap-credentials): Use it.
5637         (nnimap-open-connection-1): Ask for the virtual server and physical
5638         address in one shot.
5639
5640         * nntp.el: Autoload `auth-source-search'.
5641         (nntp-send-authinfo): Use it.  Note TODO.
5642
5643 2011-02-08  Julien Danjou  <julien@danjou.info>
5644
5645         * shr.el (shr-tag-body): Add support for text attribute in body
5646         markups.
5647
5648         * message.el (message-options): Make message-options a local variable.
5649
5650 2011-02-07  Teodor Zlatanov  <tzz@lifelogs.com>
5651
5652         * auth-source.el (auth-source-secrets-search)
5653         (auth-source-user-or-password): Use `append' instead of `nconc'.
5654         (auth-source-user-or-password): Build return list better and protect
5655         against nil :secret.
5656
5657 2011-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
5658
5659         * nnimap.el (nnimap-update-info): Refactor slightly.
5660         (nnimap-update-info): Tell Gnus whether there are any \Recent messages.
5661         (nnimap-update-info): Clean up slightly.
5662         (nnimap-quirk): Add quirk for Gmail IMAP which bugs out on NUL
5663         characters.
5664         (nnimap-process-quirk): Rename function to avoid collision.
5665         (nnimap-update-info): Fix macrology bug-out.
5666         (nnimap-update-info): Simplify split history test.
5667
5668 2011-02-06  Michael Albinus  <michael.albinus@gmx.de>
5669
5670         * auth-source.el (top): Require 'eieio unconditionally.
5671         Autoload `secrets-get-attributes' instead of `secrets-get-attribute'.
5672         (auth-source-secrets-search): Limit search when `max' is greater than
5673         number of results.
5674
5675 2011-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
5676
5677         * nntp.el (nntp-finish-retrieve-group-infos): Protect against the first
5678         part not returning any data.
5679
5680         * proto-stream.el (open-protocol-stream): Document the return value.
5681
5682 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
5683
5684         * auth-source.el (auth-source-secrets-search): Add examples.
5685
5686 2011-02-06  Julien Danjou  <julien@danjou.info>
5687
5688         * message.el (message-setup-1): Handle message-generate-headers-first
5689         set to t.
5690
5691 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
5692
5693         * auth-source.el (auth-sources): Allow for simpler defaults for Secrets
5694         API with a string "secrets:collection-name" and with 'default.
5695         (auth-source-backend-parse): Parse "secrets:collection-name" and
5696         'default.  Recurse on parses instead of repeating code.  Use the
5697         Secrets API is the source is not nil and 'ignore otherwise.  Emit a
5698         message when ignoring a source.
5699         (auth-source-search): List ignored search keys at the top level.
5700         (auth-source-netrc-create): Use `case' instead of `cond'.
5701         (auth-source-secrets-search): Created with TODOs.
5702         (auth-source-secrets-create): Created with TODOs.
5703         (auth-source-retrieve, auth-source-create, auth-source-delete)
5704         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
5705         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
5706         (auth-source-user-or-password-sftp)
5707         (auth-source-user-or-password-smtp): Remove.
5708         (auth-source-user-or-password): Deprecated and modified to be a wrapper
5709         around `auth-source-search'.  Not tested thoroughly.
5710
5711 2011-02-04  Teodor Zlatanov  <tzz@lifelogs.com>
5712
5713         * auth-source.el: Bring in assoc and eioeio libraries.
5714         (secrets-enabled): New variable to track the status of the Secrets API.
5715         (auth-source-backend): New EIOEIO class to represent a backend.
5716         (auth-source-creation-defaults): New variable to set prompt defaults
5717         during token creation (see the `auth-source-search' docstring for
5718         details).
5719         (auth-sources): Simplify to allow a simple string as a netrc backend
5720         spec.
5721         (auth-source-backend-parse): Parse a backend from an `auth-sources' spec.
5722         (auth-source-backend-parse-parameters): Fill in the backend parameters.
5723         (auth-source-search): Main auth-source API entry point.
5724         (auth-source-delete): Wrapper around `auth-source-search' for deletion.
5725         (auth-source-search-collection): Helper function for searching.
5726         (auth-source-netrc-parse, auth-source-netrc-normalize)
5727         (auth-source-netrc-search, auth-source-netrc-create): Netrc backend.
5728         Supports search, create, and delete.
5729         (auth-source-secrets-search, auth-source-secrets-create): Secrets API
5730         backend stubs.
5731         (auth-source-user-or-password): Call `auth-source-search' but it's not
5732         ready yet.
5733
5734 2011-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
5735
5736         * message.el (message-setup-1): Remove the read-only stuff, since it
5737         doesn't work under XEmacs, for some reason.
5738
5739         * gnus-sum.el (gnus-user-date): Rename back from
5740         gnus-summary-user-date since user code refers to it.
5741
5742         * shr.el (shr-render-td): Store the actual background color used.
5743
5744         * message.el (message-setup-1): Don't bind the constant
5745         -forbidden-properties.
5746         (message-setup-1): Revert previous change, since it needs to bind the
5747         props to insert them.
5748         (message-resend): Allow removing the read-only separator line.
5749
5750 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5751
5752         * nnimap.el (nnimap-request-accept-article): Give an error message if
5753         the APPEND wasn't successful.
5754
5755 2011-02-03  Adam Sjøgren  <asjo@koldfront.dk>
5756
5757         * gnus-start.el (gnus-get-unread-articles): Fix the call to methods
5758         that have no groups.
5759
5760 2011-02-03  Julien Danjou  <julien@danjou.info>
5761
5762         * gnus-draft.el: Remove progn around gnus-draft-setup.
5763
5764 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5765
5766         * gnus-start.el (gnus-read-active-for-groups): This function is never
5767         called with a nil `infos', so clean that up.
5768         (gnus-get-unread-articles): Request active files from primary/secondary
5769         methods that have no groups (yet).
5770
5771 2011-02-03  Julien Danjou  <julien@danjou.info>
5772
5773         * message.el (message-setup-1): Always generate References first.
5774         (message-mail): Return the return value of message-setup, not always t.
5775         (message-setup-1): Insert mail-header-separator with read-only and
5776         intangible properties set.
5777
5778         * gnus.el (gnus-summary-line-format): Add missing semi-colon for
5779         user-date in docstring.
5780
5781         * gnus-art.el (gnus-article-jump-to-part): Remove useless sit-for.
5782
5783         * gnus.el (gnus-summary-line-format): Mention &user-date format in
5784         docstring.
5785
5786         * gnus.el (gnus-user-date-format-alist): Change default value.
5787         Use defcustom, with type and group. Move from gnus-util.el.
5788         Rename to gnus-summary-user-date-format-alist.
5789
5790 2011-02-03  Glenn Morris  <rgm@gnu.org>
5791
5792         * nnimap.el (gnus-fetch-headers): Declare.
5793
5794         * nnheader.el (gnus-range-add, gnus-remove-from-range): Autoload.
5795
5796 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5797
5798         * message.el (message-forward-make-body-digest-plain)
5799         (message-followup, message-reply): Clean up things noted by Stefan.
5800
5801         * gnus-art.el (gnus-article-setup-buffer): Stop the date timer if
5802         gnus-article-update-date-headers is nil.
5803         (gnus-article-date-headers): Rip out the old -treat-date-* stuff, since
5804         it didn't really work with defcustom.
5805         (article-update-date-lapsed): Make sure the window start doesn't move,
5806         either.
5807
5808 2011-02-01  Julien Danjou  <julien@danjou.info>
5809
5810         * mm-uu.el (mm-uu-type-alist): Add support for git format-patch diff
5811         format.
5812
5813         * mm-decode.el (mm-inline-media-tests): Do not check for diff-mode it's
5814         standard in Emacs nowadays.
5815
5816         * color.el (color-gradient): Add a color-gradient function.
5817
5818 2011-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5819
5820         * message.el (message-expand-name): Don't trust the return value of
5821         bbdb-complete-name.
5822         (message-check-news-header-syntax): Remove unused var `start'.
5823         (message-idna-to-ascii-rhs-1): Remove unused vars `rhs' and `address'.
5824         (message-inhibit-body-encoding): Move to before first use.
5825         (mail-abbrev-mode-regexp, Expires, User-Agent, Lines, Distribution)
5826         (To, References, In-Reply-To, Newsgroups, Subject, Path, From)
5827         (Organization, Message-ID, Date, mh-previous-window-config):
5828         Defvar the vars using dynamic scoping.
5829
5830 2011-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
5831
5832         * shr.el (shr-render-td): Only do colors at the final rendering.
5833         Should be slightly faster.
5834         (shr-insert-table): Fix up TD background colors when doing the
5835         vertical padding.
5836
5837         * gnus-art.el (article-date-ut): Protect against articles with no Date
5838         header.
5839         (article-update-date-lapsed): Don't use current-column to find the
5840         horizontal position.  It's fragile in the presence of \003 characters.
5841
5842         * gnus-start.el (gnus-read-active-file-1): Remove dead parameter infos.
5843
5844 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
5845
5846         * gnus-art.el (article-transform-date): Rewrite to still work when
5847         there are several rfc2822 parts.
5848         (article-transform-date): Fix infinite recursion.
5849         (article-date-ut): Replace infinitely many Date headers with a single
5850         one when called interactively.
5851
5852         * nnimap.el (nnimap-wait-for-response): Wait for results in a more
5853         secure manner.
5854
5855         * gnus-art.el (article-update-date-lapsed): Try to avoid having point
5856         move around by not using save-window-excursion.  It seems to work...
5857
5858 2011-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5859
5860         * gnus-art.el (article-make-date-line): Work for user-defined format.
5861
5862 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
5863
5864         * nntp.el (nntp-retrieve-group-data-early)
5865         (nntp-finish-retrieve-group-infos): Implement the asynchronous data
5866         fetching functions.
5867
5868         * gnus-start.el (gnus-read-active-for-groups): Read the active files
5869         thoroughly for all backends that have no known groups.  This should
5870         allow new nnml methods to retrieve mail.
5871
5872         * gnus-group.el (gnus-group-jump-to-group): Allow jumping to groups
5873         that Gnus doesn't know exists again.
5874
5875         * gnus-art.el (gnus-article-date-lapsed-new-header): Remove.
5876         (gnus-treat-date-ut): Ditto.
5877         (gnus-article-update-date-header): Rename.
5878         (gnus-treat-date-local): Remove.
5879         (gnus-treat-date-english): Remove.
5880         (gnus-treat-date-lapsed): Remove.
5881         (gnus-treat-date-combined-lapsed): Remove.
5882         (gnus-treat-date-original): Remove.
5883         (gnus-treat-date-iso8601): Remove.
5884         (gnus-treat-date-user-defined): Remove.
5885         (gnus-article-date-headers): New variable to control all the date
5886         header options.
5887         (article-date-ut): Rewrite to allow using the new way to format date
5888         headers(s).
5889
5890 2011-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
5891
5892         * nnmail.el (nnmail-article-group): Check for a direct fancy split
5893         method.
5894         (nnmail-article-group): A better test for fanciness.
5895
5896         * nnimap.el (nnimap-request-head): Protect against not finding the
5897         article by Message-ID.
5898
5899 2011-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
5900
5901         * gnus-art.el (article-update-date-lapsed): Try a better way to really
5902         keep point at the "same place".
5903
5904 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
5905
5906         * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active
5907         data if the group is inactive.
5908
5909 2011-01-28  Julien Danjou  <julien@danjou.info>
5910
5911         * gnus-win.el: Remove dead function gnus-window-configuration-element.
5912         (gnus-all-windows-visible-p): Remove old compatibility code.
5913         (gnus-window-top-edge): Add docstring.
5914
5915         * gnus-group.el (gnus-group-jump-to-group): Set must match to t.
5916
5917 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
5918
5919         * gnus-int.el (gnus-request-marks): Call *-request-marks instead of the
5920         older request-update-info.
5921
5922         * gnus-art.el (article-make-date-line): Limit the length a bit more.
5923
5924 2011-01-28  Daiki Ueno  <ueno@unixuser.org>
5925
5926         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt):
5927         Give mml2015-signers higher precedence over mml2015-sign-with-sender.
5928
5929 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
5930
5931         * gnus-group.el (gnus-group-refresh-group): Refresh even non-visible
5932         groups.  This makes the nndraft:queue group pop up if it's not already
5933         there.
5934
5935         * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no
5936         messages" logic, which was reversed.
5937
5938         * gnus-art.el (article-update-date-lapsed): Ensure that point stays at
5939         the "same place" even if point is on the line being replaced.
5940         (article-update-date-lapsed): Allow updating both the combined lapsed
5941         and the lapsed headers.
5942         (article-update-date-lapsed): Skip past all the X-Sent/Date headers.
5943         (article-make-date-line): Limit the number of segments dynamically to
5944         avoid too-long lines.
5945
5946 2011-01-27  Julien Danjou  <julien@danjou.info>
5947
5948         * mml2015.el (mml2015-epg-sign): Add and use mml2015-sign-with-sender.
5949         (mml2015-epg-encrypt): Use mml2015-sign-with-sender.
5950
5951 2011-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5952
5953         * shr.el (shr-expand-newlines, shr-previous-newline-padding-width):
5954         Use plist-get instead of the cl function getf.
5955
5956 2011-01-27  Glenn Morris  <rgm@gnu.org>
5957
5958         * gnus-util.el (float-time): Get rid of compiler warning, again.
5959
5960 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
5961
5962         * shr.el (shr-put-color): Special-case background colors: Do put them
5963         at the blank parts at the front of the lines.
5964
5965         * gnus-draft.el (gnus-draft-clear-marks): New function to be run as an
5966         exit hook to nix out all data on readedness on group exit.
5967
5968         * gnus-util.el (float-time): If float-time is bound, always use it on
5969         all Emacsen.  It's unclear why the subrp check was there.
5970         (time-date): Require to make some autoload issues on XEmacs go away.
5971
5972         * shr.el (shr-put-color): Don't do the box padding in tables, since
5973         they're already padded.
5974
5975 2011-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
5976
5977         * gnus-art.el (gnus-article-next-page): When the last line of the
5978         article is displayed, scroll down once more instead of going to the
5979         next article at once.
5980         (article-lapsed-string): Refactor out and allow specifying how many
5981         segments you want.
5982         (gnus-article-setup-buffer): Start updating the lapsed header directly.
5983         (gnus-article-update-lapsed-header): New variable.
5984
5985         * shr.el: Revert change that made headings use different-sized faces.
5986         The Emacs display engine isn't advanced enough that, for instance,
5987         tables can comfortably use differently-sized faces.
5988
5989 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
5990
5991         * nnimap.el (nnimap-open-connection-1): Store the actual stream type
5992         used.
5993         (nnimap-login): Prefer plain LOGIN if it's enabled (since it requires
5994         fewer round trips than CRAM-MD5, and it's less likely to be buggy), and
5995         we're using an encrypted connection.
5996
5997         * proto-stream.el: Alter the interface functions to also return the
5998         actual stream type used: network or tls.
5999
6000 2011-01-25  Julien Danjou  <julien@danjou.info>
6001
6002         * mm-view.el (mm-display-shell-script-inline): Fix typo in docstring.
6003         (mm-display-javascript-inline): New function.
6004
6005         * mm-decode.el (mm-inline-media-tests): Add application/javascript
6006         viewing function.
6007
6008 2011-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6009
6010         * shr.el (shr-expand-newlines): Fix variable name.
6011
6012 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
6013
6014         * shr.el (shr-expand-newlines): Make nested boxes work.
6015
6016 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
6017
6018         * shr.el (shr-expand-newlines): Proof of concept implementation of boxy
6019         backgrounds.
6020         (shr-expand-newlines): Switch to using overlays to enable kill'n'yank
6021         in a more sensible manner.
6022
6023 2011-01-24  Teodor Zlatanov  <tzz@lifelogs.com>
6024
6025         * mml-smime.el (mml-smime-use): Make it a defcustom and default to 'epg
6026         if EPG is loaded.
6027
6028 2011-01-24  Julien Danjou  <julien@danjou.info>
6029
6030         * shr.el: Use defface to create shr-tag-h[1-6] faces to fontify h[1-6]
6031         tags.
6032
6033 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
6034
6035         * gnus-art.el (gnus-article-read-summary-keys): Don't call disabled
6036         commands.
6037
6038         * gnus-gravatar.el (gnus-gravatar-insert): Don't move point around
6039         in the article buffer.
6040         (gnus-gravatar-insert): Use blank space from the current buffer to
6041         avoid breaking text properties.  This makes X-Sent updating work again.
6042
6043         * gravatar.el (gravatar-retrieve): Be silent when retrieving.
6044
6045 2011-01-23  Lars Ingebrigtsen  <larsi@gnus.org>
6046
6047         * gnus-html.el (gnus-html-image-fetched): Kill the buffer anyway, and
6048         fix the bug in url-http.el instead.
6049
6050         * shr.el (shr-image-fetched): Ditto.
6051
6052         * shr.el (shr-image-fetched): Avoid having point move in the article
6053         buffer.
6054
6055         * gnus-html.el (gnus-html-image-fetched): Don't kill the temporary
6056         buffer after being called.  It's apparently being killed by url.el, and
6057         killing it made point move to end-of-buffer in a random buffer.
6058
6059         * shr.el (shr-image-fetched): Ditto.
6060
6061 2011-01-23  Julien Danjou  <julien@danjou.info>
6062
6063         * mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org.
6064
6065         * mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to
6066         text/x-org.
6067
6068 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
6069
6070         * gnus-sum.el (gnus-summary-move-article): Protect against backends
6071         (i.e., nnimap) returning nil as the article number.
6072
6073 2011-01-22  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
6074
6075         * flow-fill.el (fill-flowed): Make `delete-space' option correspond to
6076         "DelSp" parameter in RFC3676.
6077
6078 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
6079
6080         * message.el (message-check-recipients): Display the encoded version of
6081         the bogus address if they differ.
6082
6083         * gnus-draft.el (gnus-group-send-queue): Really refresh the queue group
6084         after sending.
6085
6086         * gnus-agent.el (gnus-agent-send-mail): Ditto.
6087
6088         * gnus-group.el (gnus-group-refresh-group): New convenience function.
6089
6090         * gnus-draft.el (gnus-group-send-queue): Update the queue group in the
6091         group buffer after sending the queue.
6092
6093         * gnus-agent.el (gnus-agent-send-mail): Ditto.
6094
6095 2011-01-22  Julien Danjou  <julien@danjou.info>
6096
6097         * mailcap.el (mailcap-mime-extensions): Rename text/org to text/x-org.
6098
6099 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
6100
6101         * mm-decode.el (mm-preferred-alternative-precedence): Don't bug out on
6102         nested related parts.
6103
6104         * nnfolder.el (nnfolder-request-expire-articles): Return the list of
6105         unexpired articles.  This fixes the regression that led expiry marks to
6106         disappear from nnfolder groups.
6107
6108 2011-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6109
6110         * gnus-art.el (gnus-button-alist, gnus-button-handle-info-keystrokes):
6111         Don't confuse the "ret" of "retrograde" with RET.
6112
6113 2011-01-21  Julien Danjou  <julien@danjou.info>
6114
6115         * gnus-art.el (gnus-mime-display-single): Use mm-display-inline rather
6116         than mm-insert-inline.
6117
6118 2011-01-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6119
6120         * gnus-art.el (gnus-article-remove-images, gnus-article-show-images):
6121         Widen article buffer.
6122
6123 2011-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6124
6125         * mm-util.el (mm-find-buffer-file-coding-system): Don't forget to kill
6126         the temp buffer.
6127         * message.el (message-mailer-swallows-blank-line): Use with-temp-buffer.
6128
6129 2011-01-20  Julien Danjou  <julien@danjou.info>
6130
6131         * mm-decode.el (mm-inline-media-tests): Add text/x-sh.
6132
6133         * gnus-art.el (gnus-mime-inline-part): Use mm-display-inline rather
6134         than mm-insert-inline to insert inline part: this respect
6135         mm-inline-media-tests displayers.
6136
6137         * mm-view.el (mm-display-shell-script-inline): New function.
6138
6139         * mm-decode.el (mm-inline-media-tests): Add x-shellscript and x-sh.
6140
6141         * mm-uu.el (mm-uu-type-alist): Add org block.
6142         (mm-uu-org-src-code-block-extract): New function.
6143
6144         * mm-view.el (mm-display-org-inline): New function.
6145
6146         * mm-decode.el (mm-automatic-display): Add text/org.
6147
6148         * mailcap.el (mailcap-mime-extensions): Add .org.
6149
6150 2011-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6151
6152         * gnus-art.el (gnus-article-highlight): Remove argument passed to
6153         gnus-article-add-buttons.
6154
6155 2011-01-19  Tom Rauchenwald  <sehnsucht.nach.unendlichkeit@quantentunnel.de>  (tiny change)
6156
6157         * spam.el (spam-spamassassin-register-with-sa-learn): Insert a full
6158         From header with a date and "nobody" as the sender.
6159
6160 2011-01-19  Julien Danjou  <julien@danjou.info>
6161
6162         * gnus-art.el (gnus-article-add-buttons): Simplify condition.
6163         (gnus-button-push): Remove gnus-button-entry function, it fails heavily
6164         if you have the same regexp several times.
6165         (gnus-button-push): Fix matching when regexp is symbol.
6166
6167 2011-01-15  Glenn Morris  <rgm@gnu.org>
6168
6169         * message.el (message-mail): A compose-mail function should
6170         accept headers as strings.
6171
6172 2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
6173
6174         * message.el (message-tool-bar-gnome): Tweak tool-bar items.
6175         Add :vert-only tags.
6176         (message-mail): New arg RETURN-ACTION.
6177         (message-return-action): New var.
6178         (message-bury): Use it.
6179         (message-mode): Make it buffer-local.
6180         (message-send-and-exit): Always call message-bury.
6181
6182         * gnus-msg.el (gnus-msg-mail): New arg RETURN-ACTION.  Pass it to
6183         message-mail.
6184
6185 2011-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6186
6187         * nnimap.el (nnimap-convert-partial-article): Protect against
6188         zero-length body parts.
6189
6190         * mm-decode.el (mm-preferred-alternative-precedence):
6191         Discourage showing empty parts.
6192
6193         * gnus-int.el (gnus-request-accept-article): Don't try to update marks
6194         and stuff if the backend didn't return the article number.  This fixes
6195         an Exchange-related nnimap bug.
6196
6197         * gnus-sum.el (gnus-summary-next-article): Remove hack to reselect
6198         group window, because it does the wrong thing when a separate frame
6199         displays the group buffer.
6200
6201         * proto-stream.el (open-protocol-stream): Protect against the low-level
6202         transport functions returning nil.
6203
6204 2011-01-07  Daiki Ueno  <ueno@unixuser.org>
6205
6206         * mml2015.el (epg-sub-key-fingerprint): Autoload.
6207         (mml2015-epg-find-usable-secret-key): New function.
6208         (mml2015-epg-sign): Use mml2015-epg-find-usable-secret-key instead of
6209         mml2015-epg-find-usable-key (Bug#7797).
6210         (mml2015-epg-encrypt): Ditto.
6211
6212 2011-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6213
6214         * dgnushack.el (rot13-string): Fix the way to get the argument.
6215
6216 2011-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6217
6218         * flow-fill.el (fill-flowed-encode): Do encoding citation-aware.
6219
6220 2011-01-03  Glenn Morris  <rgm@gnu.org>
6221
6222         * sieve-manage.el (sieve-manage-open): Correctly set sieve-manage-port.
6223
6224         * sieve.el (sieve-open-server): Give a more explicit error if
6225         sieve-manage-open returns nil.  (Bug#7720)
6226
6227 2011-01-02  Karl Fogel  <kfogel@red-bean.com>
6228
6229         * gnus-msg.el (gnus-message-replyencrypt): Default to `t'.
6230
6231 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6232
6233         * nnimap.el (nnimap-login): Prefer AUTH=CRAM-MD5, if it's available.
6234         This avoids sending passwords in plain text over non-encrypted
6235         channels.
6236
6237         * shr.el (shr-rescale-image): Display all GIF images as animated images.
6238
6239         * nnimap.el (nnimap-login): Refactored out into own function, and
6240         implement CRAM-MD5.
6241         (nnimap-wait-for-line): Refactored out.
6242
6243         * mm-view.el (mml-smime): Require.
6244
6245 2010-12-20  David Engster  <deng@eml.cc>
6246
6247         * mm-view.el (mm-view-pkcs7-decrypt): If mml-smime-use is set to 'epg,
6248         use EPG to decrypt S/MIME messages instead of openssl.
6249
6250 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6251
6252         * nnimap.el (nnimap-request-group): Avoid double SELECT on `M-g'.
6253
6254         * gnus-group.el (gnus-group-kill-group): Don't try to update the group
6255         status is the group clearly is unreachable.
6256
6257         * auth-source.el (auth-source-create): Add the optional second
6258         parameter to `local-variable-p' to be compatible with XEmacs.
6259
6260 2011-01-02  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
6261
6262         * nnml.el (nnml-request-article): Allow requesting by Message-ID to
6263         work when using a compressed nnml folder.
6264
6265 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6266
6267         * gnus-sum.el (gnus-select-newsgroup): Don't propagate marks to
6268         backends after sanitising on entry, because this never makes sense:
6269         If the articles have gone missing, then the data no longer exists on
6270         the backend, and if they haven't, then Gnus is wrong, and shouldn't
6271         overwrite anything anyway.
6272
6273         * shr.el (shr-insert-document): Bind shr-width dynamically to
6274         window-width if it's nil.
6275
6276 2010-12-30  Tassilo Horn  <tassilo@member.fsf.org>
6277
6278         * shr.el (shr-width, shr-insert-document): Allow nil as shr-width value
6279         with the meaning of using the full emacs window width for rendering.
6280
6281 2010-12-27  Daiki Ueno  <ueno@unixuser.org>
6282
6283         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Take care the
6284         case when sender is not given.
6285
6286 2010-12-23  Julien Danjou  <julien@danjou.info>
6287
6288         * gnus-gravatar.el (gnus-gravatar-transform-address): Set
6289         `mail-extr-ignore-realname-equals-mailbox-name' to nil when extracting
6290         the addresses, otherwise we might misplaced the gravatar.
6291
6292 2010-12-21  Daiki Ueno  <ueno@unixuser.org>
6293
6294         * mml1991.el (pgg-sign-region, pgg-encrypt-region):
6295         * gnus-art.el (pgg-snarf-keys-region): Autoload since PGG is now
6296         obsolete in Emacs.
6297
6298 2010-12-20  Julien Danjou  <julien@danjou.info>
6299
6300         * gnus-util.el (gnus-rescale-image): Revert last change.
6301
6302 2010-12-17  Chong Yidong  <cyd@stupidchicken.com>
6303
6304         * binhex.el: Improve commentary (Bug#7482).
6305
6306 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6307
6308         * gnus-group.el (gnus-group-delete-articles): New command.
6309
6310 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
6311
6312         * nnir.el (nnir-mode): Make sure 'gnus-registry-install is bound.
6313
6314 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6315
6316         * gnus-sum.el (gnus-get-newsgroup-headers): Revert the last change
6317         here, since it's up to the backends to do CRLF removal if their
6318         protocol has it.
6319
6320         * nnimap.el (nnimap-retrieve-headers): Remove CRLF from the headers.
6321
6322 2010-12-17  Julien Danjou  <julien@danjou.info>
6323
6324         * gnus-util.el (gnus-rescale-image): Allow to resize images even if
6325         they are from file.  Can also scale up.
6326
6327 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
6328
6329         * gnus-sum.el (gnus-summary-refer-thread): Simplify code.
6330         Restore gnus-use-agent.
6331         (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
6332
6333         * nnir.el (nnir-get-active): Ignore nnir-ignored-newsgroups if null.
6334
6335 2010-12-17  Julien Danjou  <julien@danjou.info>
6336
6337         * gravatar.el (gravatar-retrieve-synchronously): New function.
6338         (gravatar-get-data): Make more robust.
6339
6340 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6341
6342         * lpath.el: Bind epa-file-encrypt-to for Emacs 22 and XEmacs.
6343
6344 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6345
6346         * nnimap.el (nnimap-wait-for-response): Fix the end-point calculation
6347         to really consider the last line.
6348
6349 2010-12-16  Daiki Ueno  <ueno@unixuser.org>
6350
6351         * auth-source.el (auth-source-gpg-encrypt-to): New variable to set the
6352         list of recipient keys, or use symmetric encryption if not a list.
6353         (auth-source-create): Use it to make `epa-file-encrypt-to' local for an
6354         EPA override, replacing the call to `netrc-store-data'.
6355
6356 2010-12-16  Dan Davison  <dandavison7@gmail.com>  (tiny change)
6357
6358         * gnus-srvr.el: Avoid passing nil regexp argument to
6359         delete-matching-lines.
6360
6361 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6362
6363         * gnus-html.el (gnus-html-schedule-image-fetching): Make sure the HTML
6364         fetching stops when Gnus exits.
6365
6366         * nnfolder.el (nnfolder-save-all-buffers): Refactor out into its own
6367         function.
6368         (nnfolder-request-expire-articles): Save all the buffers after doing
6369         expiry.
6370
6371         * nnmail.el (nnmail-expiry-target-group): Revert the "all articles are
6372         the last article", since that led to serious performance regressions
6373         when expiring nnml groups.
6374
6375 2010-12-16  Andrew Cohen  <cohen@andy.bu.edu>
6376
6377         * nnir.el: Improve customizations.
6378
6379 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6380
6381         * gnus-start.el (gnus-subscribe-newsgroup): Notify the backend.
6382
6383         * gnus-group.el (gnus-group-kill-group): Notify the backend that the
6384         group has been killed.
6385         (gnus-group-yank-group): Ditto.
6386
6387         * gnus-srvr.el (gnus-browse-unsubscribe-group): Ditto.
6388
6389         * nnimap.el (nnimap-request-update-group-status): New function.
6390
6391         * gnus-int.el (gnus-request-update-group-status): New interface
6392         function.
6393
6394         * gnus-sum.el (gnus-summary-push-marks-to-backend): Fix the logic for
6395         copying read-ness to the backends.
6396
6397         * nnimap.el (nnimap-quirk): New function.
6398         (nnimap-retrieve-group-data-early): Use it.
6399         (nnimap-quirks): New alist.
6400
6401 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6402
6403         * shr.el (shr-insert): Set shr-start after deleting trailing space;
6404         don't delete it within indentation.
6405
6406 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6407
6408         * nnimap.el (nnimap-wait-for-response): Always look (at least) at the
6409         previous line.
6410
6411 2010-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6412
6413         * nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the
6414         QRESYNC command by deleting a superfluous space which broke Cyrus
6415         servers.  This change will break other servers that are buggy the other
6416         way around.
6417
6418 2010-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
6419
6420         * spam.el: Reindent and fix long lines.
6421         (spam-copy-or-move-routine): Exclude invalid move destinations.
6422
6423 2010-12-14  Andrew Cohen  <cohen@andy.bu.edu>
6424
6425         * nnir.el (nnir-mode): Don't install registry hooks if user hasn't
6426         installed the registry.
6427
6428 2010-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6429
6430         * dgnushack.el (rot13-string): New macro for XEmacs.  netrc.el uses it.
6431
6432 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
6433
6434         * nnir.el (nnir-run-gmane): Better check for gmane groups: error out if
6435         groupname doesn't contain "gmane".
6436
6437 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6438
6439         * netrc.el (netrc-point-at-eol): Remove the unused netrc-point-at-old
6440         and netrc-bound-and-true-p bindings.
6441         (netrc-parse): Cache the netrc contents.
6442
6443         * gnus-start.el (gnus-matches-options-n): Fix typo in last change.
6444         (gnus-1): Don't create the nndrafts group twice.
6445         (gnus-setup-news): There's no need to read the active file here, since
6446         that's done again later on a per-backend basis.
6447         (gnus-start-draft-setup): Make sure that the new group is started out
6448         empty.
6449
6450         * gnus-agent.el (gnus-agentize): Don't create the queue group
6451         automatically on startup.  It'll be created later, if needed.
6452
6453         * gnus-start.el (gnus-auto-subscribed-groups): Add nnimap to the list
6454         of automatically subscribed groups.
6455         (gnus-auto-subscribed-categories): New variable.
6456         (gnus-matches-options-n): Use it.
6457         (gnus-default-subscribed-newsgroups): Remove unused variable.
6458         (gnus-start-draft-setup): Message a bit less.
6459
6460 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
6461
6462         * nnir.el (nnir-run-imap): Return article list in order of increasing
6463         UID.
6464
6465 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6466
6467         * gnus-sum.el (gnus-summary-enter-digest-group):
6468         Mention gnus-auto-select-on-ephemeral-exit.
6469
6470         * proto-stream.el (proto-stream-open-network-only): Fix the calling
6471         convention of the network-only option.
6472
6473 2010-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6474
6475         * proto-stream.el (proto-stream-open-network-only): New function to
6476         have a way to specify non-STARTTLS upgrade connections.
6477
6478 2010-12-10  Julien Danjou  <julien@danjou.info>
6479
6480         * gnus-gravatar.el (gnus-gravatar-transform-address): Fix error when
6481         email address is nil.
6482
6483         * message.el (message-bogus-recipient-p): Set address to "" if nil.
6484
6485 2010-12-10  Andrew Cohen  <cohen@andy.bu.edu>
6486
6487         * nnir.el (nnir-request-expire-articles): Ignore expiry except for
6488         deletion.
6489         (nnir-run-imap): Only need to parse list once.
6490
6491 2010-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6492
6493         * shr.el (shr-tag-script): Ignore <script>.
6494         (shr-tag-label): Add <label> support.
6495
6496 2010-12-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6497
6498         * mm-util.el (mm-ucs-to-char): Use eval-and-compile.
6499
6500         * shr.el (shr-image-displayer): Work for images lined side by side.
6501
6502 2010-12-08  Robert Pluim  <rpluim@gmail.com>
6503
6504         * gnus-demon.el (gnus-demon-init): Call run-with-timer with an integer
6505         parameter, since XEmacs doesn't accept t as a parameter.
6506
6507 2010-12-08  Andrew Cohen  <cohen@andy.bu.edu>
6508
6509         * nnir.el (nnir-retrieve-headers): Use rassq when comparing article
6510         ids.
6511         (nnir-run-gmane): Simplify groupspec formatting.
6512         (nnir-request-expire-articles): New function.
6513
6514 2010-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6515
6516         * nnimap.el (nnimap-parse-flags): Tweak VANISHED regexp to avoid regexp
6517         overflow, possibly.
6518
6519         * shr.el (shr-tag-table-1): Use bg/gfcolor specs on tables.
6520         (shr-render-td): Handle td style="" better.
6521         (shr-tag-table): Use the color from the style sheet.
6522         (shr-render-td): Make sure we copy over all the overlays, too.
6523
6524 2010-12-07  Andrew Cohen  <cohen@andy.bu.edu>
6525
6526         * nnir.el (nnir-run-gmane): Restore sub-optimal test for gmane server.
6527         (nnir-request-article): Improve article retrieval.
6528
6529 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6530
6531         * mm-util.el (mm-extra-numeric-entities): New variable.
6532
6533         * mm-url.el (mm-url-decode-entities):
6534         * mm-decode.el (mm-shr): Use it to decode extra numeric entities.
6535
6536         * lpath.el: Fbind completion-at-point for Emacs 22 and XEmacs.
6537
6538 2010-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6539
6540         * message.el: Use completion-at-point.
6541         (message-completion-function): New fun, extracted from message-tab.
6542         (message-mode): Use it for completion-at-point-functions.
6543         (message-tab): Use it and completion-at-point.
6544
6545 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6546
6547         * shr.el (shr-find-fill-point): Don't break a line after a kinsoku-bol
6548         character if a non-breakable character follows.
6549
6550 2010-12-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6551
6552         * proto-stream.el (proto-stream-open-tls): Return nil if we don't get
6553         any stream.
6554
6555         * shr.el (shr-tag-font): Colorize the region.
6556         (shr-tag-body): Ditto.
6557         (shr-tag-font): Actually let the styles be inherited instead of
6558         overwriting them.
6559         (shr-tag-font): Get the background color right.
6560         (shr-tag-style): Ignore all <style> tags for the moment.
6561
6562         * gnus-int.el (gnus-request-thread): Rework to take a header instead of
6563         a Message-ID to avoid having nnimap depend on gnus-sum.
6564
6565         * shr.el (shr-descend): Only colorize something if we have a node that
6566         sets colors.
6567
6568 2010-12-06  Julien Danjou  <julien@danjou.info>
6569
6570         * shr.el (shr-render-td): Render td content with shr-descend, so style
6571         will be applied to <td> too.
6572         (shr-colorize-region): Colorize region even if we only have a background.
6573         (shr-tag-body): Fix color and background color inheritance.
6574         Do not recolorize after shr-generic.
6575         (shr-tag-font): Let shr-generic colorize via inheritance.
6576
6577 2010-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6578
6579         * shr.el (shr-find-fill-point): Don't regard apostrophe as kinsoku-bol.
6580
6581 2010-12-06  Andrew Cohen  <cohen@andy.bu.edu>
6582
6583         * nnir.el (nnir-request-move-article): Remove obsolete code.
6584
6585 2010-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6586
6587         * gnus-util.el (gnus-macroexpand-all): Use eval-and-compile.
6588
6589 2010-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6590
6591         * gnus-sum.el (gnus-summary-respool-article): The completion function
6592         expects a list instead of an alist.
6593
6594         * nntp.el (nntp-snarf-error-message): nnheader-report takes a format
6595         string as the parameter.
6596
6597         * gnus.el (gnus-valid-select-methods): Allow nnimap to respool.
6598
6599         * shr.el (shr-stylesheet): New dynamic variable for cascading the
6600         styles.
6601         (shr-colorize-region): New function.
6602         (shr-insert-background-overlay): Remove.
6603         (shr-render-td): Background setting should be taken care of on a higher
6604         level.
6605         (shr-tag-body): Use post-hoc colorizations.
6606         (shr-tag-body): Set up a style sheet based on bgcolor/fgcolor.
6607         (shr-put-color-1): Don't overwrite old colors.
6608         (shr-colorize-region): When the background color isn't explicit, use
6609         a fixed background.
6610
6611         * gnus-util.el (gnus-output-to-mail): Require nnmail before using
6612         nnmail variables.
6613
6614 2010-12-05  Bjørn Mork  <bjorn@mork.no>
6615
6616         * nnimap.el (nnimap-process-expiry-targets): Avoid downloading articles
6617         unless necessary.
6618
6619 2010-12-05  Andrew Cohen  <cohen@andy.bu.edu>
6620
6621         * nnir.el (nnir-run-gmane): Use more careful test for gmane nntp
6622         server.
6623
6624 2010-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6625
6626         * gnus-html.el (gnus-html-put-image): Use widget instead of local maps
6627         so that TAB works.
6628
6629         * gnus-sum.el (gnus-summary-show-article): Reverse the meanings of `C-u
6630         C-u g' and `C-u g' so that `C-u g' does what it traditionally did.
6631
6632         * shr.el (shr-urlify): Show the URL before the title to avoid
6633         misleading URLs.
6634
6635 2010-12-04  Adam Sjøgren  <asjo@koldfront.dk>
6636
6637         * shr.el (shr-urlify): Display the title in <a> tags.
6638
6639 2010-12-04  Andrew Cohen  <cohen@andy.bu.edu>
6640
6641         * nnir.el (nnir-categorize): Replace mapcar with mapc.
6642
6643 2010-12-03  Andrew Cohen  <cohen@andy.bu.edu>
6644
6645         * nnir.el: Rearrange code to allow macros to be autoloaded by
6646         gnus-sum.el.
6647         (nnir-retrieve-headers-override-function): Make this variable
6648         customizable.
6649         (nnir-retrieve-headers): Remove obsolete subject-mangling code.
6650
6651         * gnus-sum.el (nnir-article-group,nnir-article-rsv): Autoload macros
6652         from nnir.el.
6653
6654 2010-12-03  Julien Danjou  <julien@danjou.info>
6655
6656         * gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
6657
6658 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6659
6660         * gnus-util.el (gnus-macroexpand-all): Don't modify argument;
6661         allow optional argument `environment'.
6662
6663 2010-12-03  Glenn Morris  <rgm@gnu.org>
6664
6665         * mm-extern.el (message-goto-body): Update declaration.
6666
6667 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6668
6669         * gnus-util.el (gnus-macroexpand-all): New function.
6670
6671         * gnus-sum.el (gnus-summary-line-format-alist): Use gnus-macroexpand-all
6672         instead of macroexpand-all that is unavailable in XEmacs.
6673
6674 2010-12-02  Andrew Cohen  <cohen@andy.bu.edu>
6675
6676         * nnir.el (nnir-summary-line-format): New variable.
6677         (nnir-mode): Use it.
6678         (nnir-artlist-*,nnir-aritem-*): Reimplement as macros.
6679         (nnir-article-ids): Reimplement as defsubst.
6680         (nnir-retrieve-headers): Don't mangle the subject header.
6681         (nnir-run-imap): Use 100 as RSV score.
6682         (nnir-run-find-grep): Fix for full server searching.
6683         (nnir-run-gmane): Better restriction to gmane groups.
6684
6685         * gnus-sum.el (gnus-summary-line-format-alist): Add specs for nnir
6686         summary buffers.
6687
6688 2010-12-02  Julien Danjou  <julien@danjou.info>
6689
6690         * gnus-win.el (gnus-configure-frame): Remove old compatibility code.
6691
6692         * gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
6693
6694         * gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting
6695         support.
6696
6697 2010-12-01  Andrew Cohen  <cohen@andy.bu.edu>
6698
6699         * nnir.el: Update to handle the registry better.
6700         (autoload): Silence byte-compiler.
6701         (nnir-open-server): Add a hook for nnir groups.
6702         (nnir-request-move-article): Don't mangle the header.  Better to use
6703         formatting variables (which will be added in the future).
6704         (nnir-registry-action): Update the registry using the original article
6705         group name.
6706         (nnir-mode): Install nnir-specific hooks for updating the registry.
6707
6708         * gnus-sum.el
6709         (gnus-article-original-subject,gnus-newsgroup-original-name):
6710         Remove obsolete variables.
6711         (gnus-summary-move-article): Remove use of obsolete variables.
6712         (gnus-summary-local-variables): Make move and delete hooks local to
6713         summary buffers.
6714
6715 2010-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6716
6717         * rtree.el: New file.
6718
6719 2010-12-01  Julien Danjou  <julien@danjou.info>
6720
6721         * message.el (message-user-organization): Do not use
6722         gnus-local-organization.
6723
6724         * gnus.el: Remove gnus-local-organization.
6725
6726         * gnus-msg.el: Remove nastygram thing.
6727
6728 2010-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
6729
6730         * nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark
6731         funcall.
6732
6733 2010-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6734
6735         * gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of
6736         names.
6737
6738         * shr.el (shr-find-fill-point): Don't break line between kinsoku-bol
6739         characters.
6740
6741         * gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding
6742         to t of inhibit-read-only since it is inside gnus-with-article-headers.
6743         Suggested by Štěpán Němec <stepnem@gmail.com>.
6744         (gnus-gravatar-transform-address): Use mail-extract-address-components
6745         that supports non-ASCII names rather than mail-header-parse-addresses.
6746
6747 2010-11-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6748
6749         * proto-stream.el (open-protocol-stream): All starttls connections are
6750         handled by the network handler.
6751
6752 2010-11-30  Julien Danjou  <julien@danjou.info>
6753
6754         * nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
6755         (nnimap-open-connection-1): Fix PREAUTH.
6756
6757         * gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
6758
6759 2010-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6760
6761         * shr.el (shr-char-breakable-p, shr-char-nospace-p)
6762         (shr-char-kinsoku-bol-p, shr-char-kinsoku-eol-p): New macros.
6763         (shr-insert): Use them.
6764         (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
6765
6766 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
6767
6768         * nnir.el (nnir-request-move-article): Bail out if original group
6769         doesn't support article moves.
6770         (nnir-get-active): Improve active list retrieval.
6771
6772 2010-11-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6773
6774         * shr.el (shr-find-fill-point): Don't break before apostrophes.
6775
6776 2010-11-29  Binjo  <binjo.cn@gmail.com>  (tiny change)
6777
6778         * nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't
6779         seem to accept strings-with-numbers as port numbers.
6780
6781 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
6782
6783         * gnus-sum.el (gnus-summary-delete-article): If delete fails don't
6784         change the registry.
6785
6786 2010-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6787
6788         * nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of
6789         delete-dups that is not available in XEmacs 21.4.
6790
6791         * mm-util.el (mm-delete-duplicates): Add comment.
6792
6793 2010-11-28  Andrew Cohen  <cohen@andy.bu.edu>
6794
6795         * nnir.el (nnir-ignored-newsgroups): New variable.
6796         (nnir-get-active): Use it.
6797
6798 2010-11-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6799
6800         * proto-stream.el (proto-stream-open-network): Add some comments.
6801
6802         * nntp.el (nntp-open-connection): Provide a :success condition.
6803
6804         * nnimap.el (nnimap-open-connection-1): Ditto.
6805
6806         * proto-stream.el (proto-stream-open-network): See what the response to
6807         the STARTTLS command is.
6808
6809         * nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for
6810         backwards compatibility).
6811         (nnimap-open-connection-1): Really respect nnimap-server-port.
6812
6813         * proto-stream.el (proto-stream-open-network): When doing opportunistic
6814         TLS upgrades we don't really care about the identity of the peer.
6815         (proto-stream-open-network): Force starttls.el to use gnutls-cli, since
6816         that what we've checked for.
6817         (proto-stream-always-use-starttls): Only default to t if
6818         open-gnutls-stream exists.
6819         (proto-stream-open-network): If STARTTLS failed, then just open a
6820         normal connection.
6821         (proto-stream-open-network): Wait until the greeting before doing
6822         STARTTLS.
6823
6824         * nntp.el (nntp-open-connection): Report what the connection error is.
6825
6826         * proto-stream.el (open-protocol-stream): Rename from
6827         open-proto-stream.
6828
6829 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6830
6831         * nnimap.el (nnimap-stream): Change default to `undecided'.
6832         (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl
6833         first, and then network.
6834         (nnimap-open-connection-1): Respect nnimap-server-port.
6835         (nnimap-open-connection): Be more backwards-compatible.
6836
6837         * proto-stream.el (proto-stream-always-use-starttls): New variable.
6838         (proto-stream-open-starttls): De-duplicate the starttls code.
6839         (proto-stream-open-starttls): Folded back into the main function.
6840         (proto-stream-open-network): Fix typo in the gnutls path.
6841         (proto-stream-command): Refactor out.
6842
6843         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
6844
6845         * proto-stream.el (proto-stream-open-starttls): Actually implement the
6846         starttls.el STARTTLS.
6847
6848         * color.el (color-lab->srgb): Fix function call name.
6849
6850         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
6851         if we're using tls.el.
6852         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
6853         built in, then don't try to establish a STARTTLS connection.
6854
6855         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
6856         servers.
6857
6858         * proto-stream.el (open-proto-stream): Use network, not stream.
6859         (open-proto-stream): Add a way to specify what the end of a command is.
6860
6861         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
6862         connections types.
6863         (nntp-open-network-stream): Remove.
6864         (nntp-open-ssl-stream): Remove.
6865         (nntp-open-tls-stream): Remove.
6866         (nntp-ssl-program): Remove.
6867
6868         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
6869
6870 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
6871
6872         * nnir.el: Fix typos.
6873         (nnir-retrieve-headers-override-function): Rename variable to reflect
6874         new semantics.
6875         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
6876         macros.
6877         (nnir-request-article, nnir-request-move-article): Use them.
6878         (nnir-categorize): New function.
6879         (nnir-run-query): Use it.
6880         (nnir-retrieve-headers): Rewrite to batch header retrieval.
6881         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
6882         sorted.
6883         (nnir-group-full-name): Use gnus-group-full-name instead.
6884         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
6885         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
6886
6887 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6888
6889         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
6890
6891         * proto-stream.el: New library to provide protocol-specific
6892         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
6893         protocols.
6894         (open-proto-stream): Complete the documentation.
6895         (proto-stream-open-network): Fix some typos.
6896
6897         * nnimap.el (nnimap-open-connection): Use it.
6898
6899 2010-11-27  Yuri Karaban  <tech@askold.net>  (tiny change)
6900
6901         * pop3.el (pop3-open-server): Read server greeting before starting TLS
6902         negotiation.
6903
6904 2010-11-26  Julien Danjou  <julien@danjou.info>
6905
6906         * color.el: Rename various rgb functions to srgb.
6907
6908 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6909
6910         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
6911         names.
6912
6913 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
6914
6915         * shr.el (shr-insert): Revert last change.
6916         (shr-find-fill-point): Never leave point being at bol;
6917         relax the kinsoku limitation when rendering tables.
6918
6919 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6920
6921         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
6922         results from -accept-article.
6923
6924         * shr-color.el: Require cl when compiling.
6925
6926         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
6927         checkin.
6928
6929         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
6930
6931         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
6932
6933         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
6934         'add and 'delete to set backend marks.
6935
6936         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
6937
6938         * nnheader.el (nnheader-update-marks-actions): Refactor out.
6939
6940         * nntp.el (nntp-request-set-mark): Use it.
6941
6942         * nnfolder.el (nnfolder-request-set-mark): Ditto.
6943
6944         * nnml.el (nnml-request-set-mark): Ditto.
6945
6946         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
6947         introduces regressions in article selection.
6948         (nnimap-find-uid-response): New function.
6949         (nnimap-request-accept-article): Use the UID returned, if any.
6950         (nnimap-request-move-article): Use the UID returned, if any.
6951         (nnimap-get-groups): Reimplement to work with folded lines.
6952         (nnimap-find-uid-response): The UID is the last element in the list.
6953         (nnimap-request-set-mark): Extend syntax with 'set.
6954
6955         * nnml.el (nnml-request-set-mark): Ditto.
6956
6957         * nnfolder.el (nnfolder-request-set-mark): Ditto.
6958
6959         * nntp.el (nntp-request-set-mark): Ditto.
6960
6961 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6962
6963         * message.el (message-called-interactively-p): A temporary macro.
6964         (message-goto-body): Use it temporarily.
6965
6966 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6967
6968         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
6969         (nnimap-last-response-string): Unfold quoted lines, if they exist.
6970         (nnimap-last-response-string): Fix last unfolding fix.
6971
6972 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6973
6974         * shr.el (shr-insert): Fix the way to fold lines.
6975
6976 2010-11-25  Julien Danjou  <julien@danjou.info>
6977
6978         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex.
6979
6980         * color.el: Rename from color-lab.el
6981         (color-rgb->hex): Add.
6982         (color-complement): Add.
6983         (color-complement-hex): Add.
6984
6985         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
6986
6987 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6988
6989         * shr-color.el (shr-color-visible): Don't bug out if the color names
6990         don't exist.
6991
6992 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6993
6994         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
6995         assuming that article displaying or another mml-preview may be
6996         interrupted for an error or for the like.
6997
6998         * shr.el (shr-get-background): Fix argument name.
6999
7000 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7001
7002         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
7003
7004         * gnus-sum.el (gnus-summary-include-articles): New function.
7005
7006         * message.el (message-goto-body): called-interactively-p needs a
7007         parameter, so use `any'.
7008
7009         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
7010         clear marks before moving, since they're synced from the Gnus side
7011         first.
7012
7013         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
7014         (gnus-summary-move-article): Copy over all marks before moving, so that
7015         IMAP doesn't think a new article has arrived.
7016
7017 2010-11-24  Julien Danjou  <julien@danjou.info>
7018
7019         * shr.el (shr-insert-background-overlay): Fix typo.
7020         (shr-render-td): Copy the background before rendering.
7021
7022         * shr-color.el (shr-color-visible): Fix docstring.
7023
7024         * shr.el (shr-tag-table): Add bgcolor support.
7025         (shr-render-td): Add bgcolor support.
7026         (shr-get-background): Add.
7027         (shr-insert-foreground-overlay): Use shr-get-background.
7028
7029         * message.el (message-goto-body): Use called-interactively-p.
7030         (message-in-body-p): message-goto-body returns point.
7031
7032 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7033
7034         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
7035         Fixes something or other in Emacs 23, and is backwards compatible.
7036
7037         * message.el (message-goto-body): Remove the <#secure special-casing,
7038         which is too special.
7039
7040         * shr.el (shr-parse-style): Drop !important from styles.
7041
7042 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
7043
7044         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
7045         this function to return incorrect results when calling it with an
7046         explicit article argument different from
7047         (gnus-summary-article-number).
7048
7049 2010-11-24  Julien Danjou  <julien@danjou.info>
7050
7051         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
7052         (shr-tag-body): Add background support.
7053         (shr-descend): Add background support.
7054         (shr-tag-title): Add.
7055
7056         * shr-color.el (shr-color-visible): Really return original background
7057         if fixed.
7058
7059 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7060
7061         * shr.el (shr-color-check): Protect against non-existent color names.
7062
7063 2010-11-24  Julien Danjou  <julien@danjou.info>
7064
7065         * color-lab.el: Require 'cl when compiling.
7066
7067         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
7068
7069         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
7070         matched part.
7071
7072         * color-lab.el: Fix all expt calls to use float type.
7073
7074 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7075
7076         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
7077         expression to shr-color-check as is.
7078
7079         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
7080
7081         * color-lab.el: Add coding cookie.
7082         (float-pi): Use eval-and-compile.
7083
7084         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
7085         compiled for Emacsen having no `libxml-parse-html-region' support.
7086
7087 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7088
7089         * shr.el (shr-insert-color-overlay): Split stuff like
7090         "#444444 !important" to find the real color.
7091         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
7092         parse <font color="red"> entries.
7093
7094 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
7095
7096         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
7097         point when parsing headers.
7098
7099         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
7100         is positioned properly when parsing headers.
7101
7102 2010-11-23  Julien Danjou  <julien@danjou.info>
7103
7104         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
7105
7106         * shr-color.el (shr-color->hexadecimal): Add support for color names.
7107
7108         * shr.el (shr-parse-style): Replace \n with space in style parsing.
7109
7110         * shr-color.el (shr-color-hsl-to-rgb-fractions):
7111         Use shr-color-hue-to-rgb.
7112         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
7113
7114 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7115
7116         * shr.el (shr-color->hexadecimal): Autoload.
7117         (shr-descend): Add color to all tags.
7118
7119 2010-11-22  Julien Danjou  <julien@danjou.info>
7120
7121         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
7122         shr-color->hexadecimal.
7123
7124         * shr-color.el (shr-color->hexadecimal): Add converting functions for
7125         RGB() or HSL() color representation.
7126
7127         * shr.el (shr-tag-font): Add.
7128         (shr-tag-color-check): New function to get better colors.
7129         (shr-tag-insert-color-overlay): Factorize code between tag-font and
7130         tag-span.
7131
7132         * shr-color.el: New file.
7133
7134         * color-lab.el: New file.
7135
7136         * gnus-art.el (gnus-url-mailto): Do not downcase args.
7137
7138 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
7139
7140         * nnir.el: Fix typo in comments.
7141         (nnir-run-imap): Simplify code.  No need to reverse artlist.
7142         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
7143
7144 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7145
7146         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
7147
7148         * nnimap.el (nnimap-get-capabilities): Refactor out.
7149         (nnimap-open-connection): Re-request capabilities after STARTTLS.
7150
7151 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
7152
7153         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
7154         appearing when `mm-uu-hide-markers' is nil.
7155
7156 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7157
7158         * nnimap.el (nnimap-unselect-group): Make into its own function.
7159         (nnimap-request-rename-group): Unselect group before renaming.
7160         This had gotten lost somewhere.
7161         (nnimap-request-accept-article): Keep track of examined groups, and
7162         unselect the group before APPENDing to read-only groups.
7163         (nnimap-request-move-article): Clear flags before moving so that they
7164         can be re-set later.
7165
7166 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7167
7168         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
7169         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
7170
7171 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7172
7173         * gnus-art.el (gnus-mime-display-single):
7174         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images):
7175         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
7176         parameter.
7177
7178 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7179
7180         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
7181         (shr-table-vertical-line): New variable.
7182         (shr-insert-table): Use it.
7183
7184 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7185
7186         * gnus-html.el (gnus-html-wash-images): Don't display images if
7187         gnus-inhibit-images is non-nil; register displayer for cid images.
7188         (gnus-html-display-image): Work for cid image.
7189         (gnus-html-insert-image): Allow arguments.
7190         (gnus-html-put-image): Inhibit read-only.
7191         (gnus-html-prefetch-images): Don't prefetch images if
7192         gnus-inhibit-images is non-nil.
7193
7194 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7195
7196         * shr.el (shr-put-image): Break lines when inserting big pictures.
7197
7198 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7199
7200         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
7201         sender, thanks Katsumi Yamaoka.
7202
7203 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
7204
7205         * nnir.el (nnir-run-imap): Reverse the article list for each group
7206         rather than the whole list.
7207
7208 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7209
7210         * shr.el (shr-image-displayer): Protect function against non-existent
7211         image source.
7212
7213         * gnus-art.el (gnus-inhibit-images): New user option.
7214         (gnus-mime-display-single): Don't display image if it is non-nil.
7215
7216         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
7217         gnus-inhibit-images.
7218
7219         * shr.el (shr-image-displayer): New function.
7220         (shr-tag-img): Use it.
7221
7222 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7223
7224         * mml2015.el (mml2015-epg-sign): Use From header.
7225
7226 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7227
7228         * gnus-html.el (gnus-html-wash-images): Register a displayer.
7229
7230         * gnus-util.el (gnus-find-text-property-region): Return markers.
7231
7232         * shr.el (shr-tag-img): Put a displayer in the text property.
7233
7234         * gnus-util.el (gnus-find-text-property-region): New utility function.
7235
7236         * gnus-html.el (gnus-html-display-image): Make the alt optional.
7237         (gnus-html-show-images): Remove.
7238
7239         * gnus-art.el (gnus-article-show-images): New, more general function.
7240
7241         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
7242         image url text properties.
7243
7244         * shr.el: Ditto.
7245
7246         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
7247         gnus-agent-auto-agentize-methods is set.  Which it isn't.
7248
7249 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
7250
7251         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
7252         work for two or more articles.
7253
7254 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7255
7256         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
7257         divide an image that's in an html article to two or more when washing
7258         non-ASCII characters in alt text of it.
7259
7260 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7261
7262         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
7263         smime-decrypt-region using function argument.
7264         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
7265
7266         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
7267
7268         * smime.el (smime-decrypt-region): Catch it.
7269
7270 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7271
7272         * smime.el (smime-mode-map): Move initialization into declaration.
7273         (gnus-run-mode-hooks): Don't autoload.
7274         (smime-mode): Use define-derived-mode.
7275
7276 2010-11-11  Glenn Morris  <rgm@gnu.org>
7277
7278         * smime.el (from): Restrict declaration to XEmacs.
7279
7280         * nnir.el (gnus-group-topic-name): Autoload.
7281
7282 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7283
7284         * shr.el (shr-insert): Don't break long line if it is because of
7285         kinsoku-bol characters in the line end.
7286
7287 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
7288
7289         * nnir.el (nnir-request-move-article): Fix to provide original group
7290         and subject.
7291         (nnir-warp-to-article): Don't fail on articles whose headers haven't
7292         been retrieved.
7293
7294         * gnus-sum.el (gnus-summary-move-article): Use original group and
7295         subject for virtual articles such as those in an nnir summary buffer.
7296
7297 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7298
7299         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
7300         least 21.5).
7301
7302         * smime.el (from): Declare it again for XEmacs.
7303
7304 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7305
7306         * message.el (message-resend): Don't disable encoding unless it's
7307         already encoded.
7308
7309         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
7310         low-numbered articles.
7311
7312 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7313
7314         * rfc2047.el (rfc2047-syntax-table): Simplify.
7315
7316         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
7317
7318         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
7319         set-char-table-range for XEmacs.
7320
7321 2010-11-10  Glenn Morris  <rgm@gnu.org>
7322
7323         * time-date.el (time-to-seconds): Always an alias on Emacs,
7324         never a real function.
7325         (with-no-warnings): Remove compat stub, now unused.
7326         (time-less-p): Doc fix.
7327         (time-to-number-of-days): Simplify.
7328
7329         * smime.el (from): Remove unused declaration.
7330
7331         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
7332         (gnus-float-time): On Emacs, always an alias.
7333
7334         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
7335         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
7336
7337 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7338
7339         * dgnushack.el: Don't use ignore-errors in the top level form since it
7340         is unavailable in XEmacs even if cl is loaded.
7341
7342         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
7343
7344 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7345
7346         * shr.el (browse-url-mailto): Autoload.
7347
7348         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
7349
7350         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
7351         regexp doesn't need quoting.
7352
7353 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
7354
7355         * message.el (message-subject-trailing-was-ask-regexp)
7356         (message-subject-trailing-was-regexp): Match was: in addition to was.
7357
7358 2010-11-09  Glenn Morris  <rgm@gnu.org>
7359
7360         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
7361         (nnbabyl-check-mbox): Use point-at-bol.
7362
7363 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7364
7365         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
7366
7367         * message.el (message-mailto): New function.
7368         (message-mailto): Should accept other parameters.
7369         (message-mailto): Remove since it duplicates browse-url-mailto
7370         functionality.
7371
7372 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7373
7374         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
7375         methods.
7376         (gnus-read-active-file): Ditto.
7377
7378         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
7379         ": " from the prompt.
7380         (gnus-group-make-group): Ditto.
7381
7382 2010-11-07  Glenn Morris  <rgm@gnu.org>
7383
7384         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
7385         (gnus-bookmark-kill-line): Use point-at-eol.
7386
7387 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7388
7389         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
7390         asterisks in From header.
7391
7392 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7393
7394         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
7395         string to avoid making the From headers syntactically invalid.
7396
7397         * message.el (message-send-mail): Don't insert courtesy messages if the
7398         message already has List-Post and List-ID messages.
7399
7400 2010-11-06  Glenn Morris  <rgm@gnu.org>
7401
7402         * gnus-art.el (gnus-treat-article): Give dynamic local variables
7403         `condition', `type', `length' a prefix.
7404         (gnus-treat-predicate): Update for above name changes.
7405
7406 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
7407
7408         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
7409         binding.  Handled by `gnus-summary-refer-thread' instead.
7410         (nnir-warp-to-article): New backend function.
7411
7412         * nnimap.el (nnimap-request-thread): Force dependency updating.
7413
7414         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
7415         (gnus-summary-refer-thread): Rework to improve thread-referral.
7416
7417         * gnus-int.el (gnus-warp-to-article): New function.
7418
7419         * gnus-sum.el (gnus-summary-article-map): Bind it.
7420
7421 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
7422
7423         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
7424         gnus-summary-refer-thread.
7425
7426         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
7427         headers.
7428         (gnus-summary-limit-include-thread): Prevent articles in thread from
7429         being cut in gnus-cut-threads.
7430         (gnus-summary-refer-thread): Limit retrieved headers to those in
7431         thread.
7432
7433 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7434
7435         * message.el (message-send-mail): Use the value of
7436         message-courtesy-message from the message buffer.
7437
7438         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
7439
7440         * shr.el (shr-browse-url): Implement mailto: URLs.
7441
7442         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
7443         "raw".
7444
7445         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
7446         if it's already selected.
7447
7448         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
7449
7450 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7451
7452         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
7453         to measure the length and truncate alt text.
7454
7455 2010-11-03  Glenn Morris  <rgm@gnu.org>
7456
7457         * nndiary.el (nndiary-generate-nov-databases-1)
7458         (nndiary-generate-active-info): Rename dynamic variable `files' to
7459         something less generic.
7460
7461 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
7462
7463         * nnir.el (nnir-request-move-article): Call the underlying backend to
7464         move articles from nnir.
7465
7466 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7467
7468         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
7469
7470 2010-11-02  Julien Danjou  <julien@danjou.info>
7471
7472         * nnir.el: Remove wais support.
7473
7474 2010-11-02  Glenn Morris  <rgm@gnu.org>
7475
7476         * gnus-html.el: Reorder requirements to quieten compiler.
7477
7478 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
7479
7480         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
7481         properly for XEmacs as well.
7482         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
7483         (gnus-article-natural-long-line-p): Use window-width rather than
7484         frame-width.
7485
7486 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
7487
7488         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
7489         (nnir-read-parms): Don't modify query.
7490         (nnir-run-query): Add ability to search topic on current line.
7491         (nnir-get-active): Clean up.
7492
7493 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7494
7495         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
7496         degenerate articles.
7497
7498         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
7499         (gnus-print-buffer): Just print the buffer as is, without any copying
7500         to a buffer and then re-highlighting.
7501
7502         * nnimap.el (nnimap-request-group): Store the new updated info.
7503         (nnimap-request-group): Select the group when we don't know whether it
7504         exists or not.
7505
7506         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
7507         groups.
7508
7509         * gnus-group.el (gnus-group-find-new-groups): Display all the new
7510         groups.
7511
7512         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
7513         groups.
7514
7515         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
7516         long-lines case by only filling the long lines.
7517
7518         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
7519         (bug #7311).
7520
7521 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7522
7523         * shr.el: No need to declare `declare-function' since shr.el is for
7524         only Emacsen that provide `libxml-parse-html-region'.
7525
7526         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
7527         effective only in a file it is referred to.
7528
7529 2010-11-01  Glenn Morris  <rgm@gnu.org>
7530
7531         * mm-util.el (gnus-completing-read): Autoload.
7532         (mm-read-coding-system): Simplify Emacs definition.
7533
7534         * nnmail.el (gnus-activate-group):
7535         * nnimap.el (gnutls-negotiate):
7536         * nntp.el (netrc-parse): Fix declarations.
7537
7538 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7539
7540         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
7541         string-match-p in Emacs >=23.
7542
7543         * gnus-msg.el (gnus-configure-posting-styles):
7544         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
7545
7546 2010-11-01  Glenn Morris  <rgm@gnu.org>
7547
7548         * nnir.el (declare-function): Add compat stub.
7549         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
7550         (nnir-run-gmane): Require 'mm-url.
7551
7552         * mm-util.el (mm-string-to-multibyte): Simplify.
7553
7554         * shr.el (declare-function): Add compat stub.
7555         (url-cache-create-filename): Declare.
7556         (mm-disable-multibyte, widget-convert-button): Autoload.
7557
7558         * smime.el (ldap-search): Declare.
7559         (smime-cert-by-ldap-1): Require ldap on Emacs.
7560
7561         * nnimap.el: Require nnmail, and gnus-sum when compiling.
7562         (nnimap-keepalive): Use gnus-float-time.
7563
7564         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
7565         (mail-source-delete-crash-box): Use gnus-float-time.
7566
7567         * gnus-dired.el (gnus-completing-read): Autoload.
7568
7569         * mm-view.el (gnus-rescale-image): Autoload.
7570
7571         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
7572
7573         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
7574
7575         * sieve-manage.el: Require 'cl when compiling.
7576
7577         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
7578         (gnus-iswitchb-completing-read): Require iswitchb.
7579         (gnus-select-frame-set-input-focus): Silence compiler.
7580
7581 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7582
7583         * message.el (message-subject-trailing-was-query): Change default to t,
7584         since I think that's what most people want.
7585
7586         * nnimap.el (nnimap-request-accept-article): Erase buffer before
7587         appending for easier debugging.
7588         (nnimap-wait-for-connection): Take a regexp.
7589         (nnimap-request-accept-article): Wait for the continuation line before
7590         sending anything unless we're streaming.
7591
7592         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
7593         leave the header washing to take place.
7594
7595 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7596
7597         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
7598         regular expression match and replace in posting styles.
7599
7600 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
7601
7602         * nnir.el (gnus-group-make-nnir-group,nnir-run-query): Allow searching
7603         an entire server.
7604         (nnir-get-active): New function.
7605         (nnir-run-imap): Use it.
7606         (nnir-run-gmane): Who knew, gmane search returns an article score!
7607
7608         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
7609         server on the current line with nnir.
7610
7611 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7612
7613         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
7614         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
7615         left edge.
7616         (gnus-article-foldable-buffer): Skip past the prefix when determining
7617         raggedness.
7618
7619         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
7620         the raw article, and change `C-u g' to show the article without doing
7621         treatments.
7622
7623         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
7624         on to `gnus-treat-article'.
7625         (gnus-inhibit-article-treatments): New variable.
7626
7627         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
7628
7629         * gnus-art.el (gnus-treatment-function-alist): Have
7630         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
7631         (gnus-treat-fill-long-lines): Change default to fill all text/plain
7632         sections.
7633
7634         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
7635         parameter.
7636         (gnus-article-fill-cited-long-lines): New function.
7637         (gnus-article-fill-cited-article): Allow filling only long sections.
7638
7639         * shr.el (shr-find-fill-point): Don't break lines between punctuation
7640         and non-punctuation (like after the apostrophe in "'We").
7641
7642         * gnus-sum.el (gnus-summary-select-article): Make sure
7643         gnus-original-article-buffer is alive.
7644
7645         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
7646         reflect the order they're in in the digest.
7647
7648         * gnus.el (gnus-group-startup-message): Move point to the start of the
7649         buffer.
7650
7651         * nnimap.el (nnimap-capability): New function.
7652         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
7653         is set.
7654
7655 2010-10-31  David Engster  <dengste@eml.cc>
7656
7657         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
7658         conform with changes to gnus-completing-read.
7659
7660 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7661
7662         * shr.el (shr-tag-img): Output "*" instead of "[img]".
7663
7664 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
7665
7666         * nnir.el: Move defvar, defcustom around to keep file organized
7667         and keep byte-compiler quiet.
7668         (nnir-read-parms): Accept search-engine as arg.
7669         (nnir-run-query): Pass search-engine as arg.
7670         (nnir-search-engine): Remove.
7671
7672 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7673
7674         * shr.el (shr-generic): The text nodes should be text, not :text.
7675
7676         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
7677         later in the file.
7678
7679 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
7680
7681         * nnir.el: General clean up.  Allow searching with multiple engines.
7682         Allow separate extra-parameters for each engine.
7683         Batch queries when possible.
7684         (nnir-imap-default-search-key,nnir-method-default-engines):
7685         Add customize interface.
7686         (nnir-run-gmane): New engine.
7687         (nnir-engines): Use it.  Qualify all prompts with engine name.
7688         (nnir-search-engine): Remove global variable.
7689         (nnir-run-hyrex): Restore for now.
7690         (nnir-extra-parms,nnir-search-history): New variables.
7691         (gnus-group-make-nnir-group): Use them.
7692         (nnir-group-server): Remove in favor of gnus-group-server.
7693         (nnir-request-group): Avoid searching twice.
7694         (nnir-sort-groups-by-server): New function.
7695
7696 2010-10-30  Julien Danjou  <julien@danjou.info>
7697
7698         * gnus-group.el: Remove gnus-group-fetch-control.
7699
7700         * gnus-start.el (gnus-find-new-newsgroups):
7701         Remove gnus-check-first-time-used.
7702
7703         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
7704
7705 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
7706
7707         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
7708         set on groups that don't have \* permanentflags.
7709
7710 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7711
7712         * shr.el (shr-tag-span): Drop colorization of regions since we don't
7713         control the background color.
7714         (shr-tag-img): Ignore very small web bug type images.
7715         (shr-put-image): Add help-echo alt texts to the images.
7716         (shr-tag-video): Show the video poster image.
7717
7718 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7719
7720         * shr.el (shr-table-depth): New variable.
7721         (shr-tag-table-1): Only insert the images after the top-level table.
7722
7723         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
7724
7725         * gnus-util.el (gnus-list-memq-of-list): New function.
7726
7727         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
7728         selected.
7729         (nnimap-unsplittable-articles): New slot.
7730         (nnimap-new-articles): Use it.
7731
7732 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
7733
7734         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
7735         move to the previous line on `M-g'.
7736
7737 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7738
7739         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
7740         *-request-group, which seems unnecessary.
7741
7742         * nnimap.el (nnimap-quote-specials): Function copied over from
7743         imap.el.
7744         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
7745         they support that.  Suggested by Tom Regner.
7746
7747 2010-10-29  Julien Danjou  <julien@danjou.info>
7748
7749         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
7750         defalias.
7751         (gnus-summary-delete-marked-with): Remove obsolete defalias.
7752
7753         * gnus.el: Remove `gnus-nntp-service' variable.
7754         (gnus-secondary-servers): Make obsolete.
7755         (gnus-nntp-server): Make obsolete.
7756
7757         * gnus-start.el (gnus-1): Remove x-splash calls.
7758
7759         * gnus-ems.el (gnus-x-splash): Remove.
7760
7761         * gnus.el (gnus-group-startup-message): Simplify/update code.
7762
7763         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
7764         definition.
7765
7766         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
7767         capability before doing anything.
7768         (gnus-group-insert-group-line): Remove useless
7769         gnus-group-remove-excess-properties.
7770
7771 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7772
7773         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
7774
7775 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7776
7777         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
7778         config after reselecting.
7779
7780 2010-10-28  Julien Danjou  <julien@danjou.info>
7781
7782         * shr.el (shr-put-image): Use point even if only inserting text.
7783         (shr-put-image): Save excursion when inserting alt text on non-graphic
7784         display, so the behavior is the same when we are on a graphic display.
7785
7786         * nnir.el (nnir-run-swish-e): Remove hyrex support.
7787
7788 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7789
7790         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
7791         (gnus-mime-copy-part): Check coding system, not charset.
7792         (gnus-mime-view-part-externally): Never remove part.
7793         (gnus-mime-view-part-internally): Don't remove part here.
7794         (gnus-article-part-wrapper): Make sure MIME tag is visible.
7795         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
7796         multipart/alternative.
7797
7798         * mm-decode.el (mm-display-part): Take optional arg `force'.
7799
7800 2010-10-26  Julien Danjou  <julien@danjou.info>
7801
7802         * gnus-group.el (gnus-group-default-list-level): Add this function to
7803         compute the default list level.
7804         (gnus-group-default-list-level): Add possibility to use a function.
7805
7806 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7807
7808         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
7809
7810         * gnus-group.el (gnus-group-completing-read)
7811         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
7812         gnus-replace-in-string.
7813
7814 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7815
7816         * shr.el (shr-tag-div): Add.
7817
7818         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
7819
7820 2010-10-25  Julien Danjou  <julien@danjou.info>
7821
7822         * gnus-util.el: Remove `gnus-with-local-quit'.
7823
7824         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
7825
7826 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7827
7828         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
7829         the original article buffer.
7830
7831 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7832
7833         * nnimap.el (nnimap-request-head): New function.
7834         (nnimap-request-move-article): Try to be slightly faster by not
7835         requesting the entire message when moving.
7836         (nnimap-transform-headers): Don't bug out on bodiless articles.
7837         (nnimap-send-command): Have no outstanding messages if the IMAP server
7838         doesn't support streaming.
7839         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
7840
7841 2010-10-24  Julien Danjou  <julien@danjou.info>
7842
7843         * message.el (message-default-headers): Fix type.
7844
7845 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7846
7847         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
7848         prefetching images.
7849
7850         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
7851         backend for unknown groups.  This is mainly useful for nnimap groups.
7852
7853         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
7854         group isn't covered by the agent.
7855
7856 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
7857
7858         * nnir.el (nnir-method-default-engines): New variable.
7859         (nnir-run-query): Use it.
7860         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
7861         (gnus-summary-nnir-goto-thread): Change group if needed.
7862
7863         * gnus-group.el (gnus-group-group-map): Add key binding for
7864         gnus-group-make-nnir-group.
7865
7866 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7867
7868         * shr.el (shr-tag-object): Add.
7869
7870         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
7871         original article buffer live.
7872         (gnus-summary-select-article-buffer):
7873         Mention gnus-widen-article-buffer.
7874
7875 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7876
7877         * shr.el (shr-tag-strong): Add.
7878
7879 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7880
7881         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
7882         group names.  They mess up the group buffer badly.
7883
7884         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
7885
7886         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
7887         instead of the summary one.
7888
7889 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7890
7891         * mml.el (mml-preview): Work properly when editing article.
7892
7893         * gnus-start.el (gnus-read-active-file-1): Don't add method to
7894         gnus-have-read-active-file if it's already been in.
7895
7896 2010-10-22  Tom Tromey  <tromey@redhat.com>
7897
7898         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
7899         gnus-group-completing-read.
7900
7901 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7902
7903         * message.el (message-mode-map): Don't bind M-; to comment region, to
7904         allow the global comment-dwim to work.
7905
7906 2010-10-21  Julien Danjou  <julien@danjou.info>
7907
7908         * message.el (message-setup-1): Allow message-default-headers to be a
7909         function.
7910
7911 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7912
7913         * shr.el (shr-tag-table): Simplify.
7914
7915 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7916
7917         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
7918         to avoid trying to snarf invalid stuff.
7919
7920         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
7921
7922         * gnus.el (gnus-message-archive-group): Quote value.
7923         (gnus-message-archive-group): Mark as changed.
7924
7925         * shr.el (shr-add-font): Don't put the font properties on the newline
7926         or the indentation.
7927
7928         * message.el (message-fix-before-sending): Change options when sending
7929         non-printable characters.
7930
7931         * gnus.el (gnus-message-archive-method): Change the default to
7932         monthly outgoing groups.
7933
7934         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
7935         that have gotten new numbers.
7936
7937         * nnimap.el (nnimap-request-replace-article): New function.
7938
7939 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7940
7941         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
7942         (nnrss-request-article): Don't use special html washing code.
7943
7944 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7945
7946         * shr.el (shr-tag-table): Remove useless nconc.
7947
7948 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7949
7950         * gnus-art.el (article-wash-html): Simplify and remove the charset
7951         stuff.  Use the normal html rendering code instead of the special html
7952         washing code.
7953
7954         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
7955         `gnus-w3m' symbols.
7956         (mm-text-html-washer-alist): Remove.
7957
7958         * mm-decode.el (mm-inline-text-html-renderer): Remove.
7959         (mm-inline-media-tests): Remove use.
7960         (mm-text-html-renderer): Change default to the `shr' symbol.
7961
7962         * mm-view.el (mm-inline-text-html): Remove use.
7963
7964         * gnus-art.el (gnus-blocked-images): New function.  Allow the
7965         `gnus-blocked-images' to be a function.
7966         (gnus-article-wash-function): Remove.
7967
7968 2010-10-20  Julien Danjou  <julien@danjou.info>
7969
7970         * spam.el (spam-list-of-processors): Mark as obsolete.
7971
7972         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
7973         (nnimap-insert-partial-structure): Fix boundary detection.
7974
7975 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
7976
7977         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
7978         run file-truename on remote files.  This can be expensive and even
7979         prevent one from editing drafts if some unrelated buffer has a stale
7980         connection.
7981
7982 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7983
7984         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
7985         kinsoku-eol regardless of shr-kinsoku-shorten.
7986         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
7987         (shr-tag-table): Support caption, thead, and tfoot.
7988
7989 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7990
7991         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
7992         lines.
7993         (shr-save-contents): New command and keystroke.
7994
7995         * nndoc.el (nndoc-type-alist): Add git support.
7996         (nndoc-git-type-p): New function.
7997         (nndoc-transform-git-article): Ditto.
7998         (nndoc-transform-git-headers): Ditto.
7999         (nndoc-transform-git-headers): Generate Subject headers.
8000
8001         * shr.el (shr-parse-style): New function.
8002         (shr-tag-span): Ditto.
8003
8004         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
8005         to `G G' to avoid collisions.
8006
8007 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8008
8009         * shr.el: Load kinsoku if necessary.
8010         (shr-kinsoku-shorten): New internal variable.
8011         (shr-find-fill-point): Make kinsoku shorten text line if
8012         shr-kinsoku-shorten is bound to non-nil.
8013         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
8014         shr-indentation too when testing if table is wider than frame width.
8015         (shr-insert-table): Use `string-width' instead of `length' to measure
8016         text width.
8017         (shr-insert-table-ruler): Make sure indentation is done at bol.
8018
8019 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
8020
8021         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
8022         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
8023         undecoded network data.
8024
8025 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8026
8027         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
8028         name in the mode line spec so that the mode line menu works
8029         (bug #2431).
8030
8031         * message.el (message-get-reply-headers): If we're fed `to-address',
8032         then always use that.
8033
8034         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
8035         aren't so wide as to need to switch off the edit menu.
8036
8037         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
8038         binding.  Suggested by Leo <sdl.web@gmail.com> (bug #6613).
8039
8040         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
8041         `M-g'.
8042         (nnimap-update-info): Update flags/read marks even if \* isn't part of
8043         the permanent marks.
8044
8045 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
8046
8047         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
8048         Splitting according to references/in-reply-to obeys the ignore-groups
8049         variable, while splitting by sender and subject do not.
8050
8051 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8052
8053         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
8054         alist, so that we can look for non-Unicode chars.
8055         (article-translate-strings): Allow both character and string maps.
8056
8057 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8058
8059         * shr.el (shr-insert): Don't insert space behind a wide character
8060         categorized as kinsoku-bol, or between characters both categorized as
8061         nospace.
8062
8063 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
8064
8065         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
8066         headers to gnus-newsgroup-headers.
8067
8068 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8069
8070         * shr.el (shr-tag-img): Don't align images -- since we're not
8071         rescaling, this often leads to ugly displays.
8072
8073 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
8074
8075         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
8076         duplicates.
8077
8078 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
8079
8080         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
8081         call.
8082
8083 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8084
8085         * gnus.el: Autoload gnus-html-show-images.
8086
8087         * nnimap.el: Use nnheader-message throughout.
8088
8089         * shr.el (shr-tag-img): Ignore images with no data.
8090
8091 2010-10-15  Julien Danjou  <julien@danjou.info>
8092
8093         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
8094         a possibility to disable format=flow encoding when using hard newlines.
8095
8096 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8097
8098         * shr.el (shr-insert): Remove space inserted before or after a
8099         breakable character or at the beginning or the end of a line.
8100         (shr-find-fill-point): Do kinsoku; find the second best point or give
8101         it up if there's no breakable point.
8102
8103 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8104
8105         * nnimap.el (nnimap-open-connection): Message when opening connection
8106         for debugging purposes.
8107
8108         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
8109         on every setup buffer call to allow this to change from article to
8110         article.
8111
8112         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
8113         buffers where we have a wide table.
8114
8115 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
8116
8117         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
8118         uses *-request-thread.
8119
8120 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8121
8122         * nnimap.el (nnimap-open-connection): Remove %s from openssl
8123         incantation, which is no longer valid.
8124
8125 2010-10-14  Julien Danjou  <julien@danjou.info>
8126
8127         * shr.el: Fix defcustom type (char -> character).
8128
8129 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8130
8131         * nnimap.el (nnimap-open-connection): tls-program should be a list of
8132         programs.
8133
8134 2010-10-14  Julien Danjou  <julien@danjou.info>
8135
8136         * shr.el (shr-tag-a): Use url-link as widget type.
8137
8138         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
8139         `gnus-group-get-icon'.
8140
8141 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8142
8143         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
8144         This should make server editing work better.
8145
8146         * shr.el (shr-find-fill-point): Don't inloop on indented text.
8147
8148         * tls.el (tls-program): Remove spurious %s from openssl.
8149
8150         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
8151         (nnimap-parse-flags): Fix regexp.
8152
8153         * shr.el (shr-find-fill-point): Use a filling algorithm that should
8154         probably work for CJVK text, too.
8155
8156         * nnimap.el (nnimap-extend-tls-programs): Remove.
8157         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
8158
8159         * tls.el (tls-starttls-switches): Remove starttls hack.
8160         (open-tls-stream): Ditto.
8161         (tls-find-starttls-argument): Ditto.
8162
8163 2010-10-13  Julien Danjou  <julien@danjou.info>
8164
8165         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
8166         responses.
8167
8168 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8169
8170         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
8171
8172         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
8173         anything in Emacs.
8174
8175         * shr.el (shr-current-column): Remove buggy and unnecessary function.
8176
8177 2010-10-13  Julien Danjou  <julien@danjou.info>
8178
8179         * shr.el (shr-width): Make shr-width a defcustom with default to
8180         fill-column.
8181         (shr-tag-img): Use shr-width rather than fill-column.
8182
8183 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8184
8185         * dgnushack.el (byte-optimize-apply):
8186         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
8187
8188         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
8189         position when (X-)Faces exist.
8190         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
8191         avatars when called interactively.
8192
8193 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8194
8195         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
8196         gnus-article-x-face-too-ugly is bound.
8197
8198 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8199
8200         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
8201
8202         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
8203         mailbox that doesn't exist.
8204
8205 2010-10-12  Julien Danjou  <julien@danjou.info>
8206
8207         * shr.el (shr-tag-img): Encode URL properly when retrieving.
8208         (shr-get-image-data): Encode URL properly when fetching from cache.
8209         (shr-tag-img): Use aligned-to spaces to align correctly images.
8210
8211         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
8212         before inserting the Gravatar.
8213
8214         * shr.el (shr-tag-img): Add align attribute support for <img>.
8215
8216 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8217
8218         * gnus-gravatar.el (gnus-art): Require.
8219
8220         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
8221         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
8222         Remove long obsoleted functions.
8223
8224 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8225
8226         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
8227
8228         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
8229
8230         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
8231         * gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
8232         * hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
8233         * mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
8234         * mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
8235         * nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
8236         * sieve-manage.el, smime.el, spam.el:
8237         Fix comment for declare-function.
8238
8239 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8240
8241         * nnimap.el (nnimap-request-rename-group): Select group read-only
8242         before renaming it.
8243
8244         * shr.el (shr-insert): Fix up the white space only regexp.
8245
8246         * nnimap.el (nnimap-transform-split-mail): Not all articles have
8247         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
8248
8249         * shr.el (shr-current-column): New function.
8250         (shr-find-fill-point): New function.
8251
8252 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
8253
8254         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
8255         numbers.
8256
8257 2010-10-11  Julien Danjou  <julien@danjou.info>
8258
8259         * shr.el (shr-hr-line): Add.
8260         (shr-tag-hr): Use shr-hr-line to specify which character to use to
8261         display hr lines.
8262         (shr-max-columns): Do not change state to nil if we just inserting
8263         spaces.
8264
8265 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8266
8267         * gnus-topic.el (gnus-topic-read-group): If after the last group,
8268         select the last group.
8269
8270 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
8271
8272         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
8273
8274 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
8275
8276         * dig.el (dig-mode-map): Declare and define in one step.
8277
8278 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8279
8280         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
8281         for Gnus.
8282         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
8283         (nnimap-update-qresync-info): Mark \Seen articles as read.
8284
8285         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
8286         non-variable, too.
8287
8288         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
8289         available.
8290         (nnimap-update-info): Rely more on the current active than the param
8291         active to avoid marking articles as read too much.
8292
8293         * auth-source.el (auth-source-create): Use (user-login-name) for the
8294         user name default.
8295
8296         * nnimap.el (nnimap-update-info): If the server doesn't return any
8297         useful info, just use the previous info.
8298         (nnimap-update-info): Prefer old info over start-article.
8299         (nnimap-update-qresync-info): Finish implementing QRESYNC.
8300
8301 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
8302
8303         * nnir.el (autoload): Clean up autoloads.
8304         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
8305         Use key rather than value.
8306         (nnir-imap-search-other): New variable.
8307         (nnir-read-parm): Use it.
8308         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
8309         (gnus-summary-nnir-goto-thread): Modify to work with imap.
8310
8311 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8312
8313         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
8314         the process, too.
8315
8316 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8317
8318         * spam.el (gnus-summary-mode-map): Bind to "$".
8319         Suggested by Russ Allbery.
8320
8321         * shr.el: Rework the way things are indented by <li> slightly.
8322
8323         * gnus.el (gnus-group-set-parameter): Fix typo.
8324
8325         * nnimap.el: Start implementing QRESYNC support.
8326
8327 2010-10-09  Julien Danjou  <julien@danjou.info>
8328
8329         * nnir.el (nnir-engines): Fix too many arguments.
8330
8331 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8332
8333         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
8334         group is the "last", so that the backends like nnfolder actually save
8335         their folders.
8336
8337         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
8338         try to use that for the tls stream.
8339         (nnimap-retrieve-group-data-early): Rework the marks code to heed
8340         UIDVALIDITY and find out which groups are read-only and not.
8341         (nnimap-get-flags): Use the same marks parsing code as the rest of
8342         nnimap.
8343
8344 2010-10-09  Julien Danjou  <julien@danjou.info>
8345
8346         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
8347
8348         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
8349         retrieving gravatars.
8350
8351         * shr.el (shr-table-corner): Add.
8352         (shr-table-line): Add.
8353         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
8354
8355 2010-10-08  Julien Danjou  <julien@danjou.info>
8356
8357         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
8358
8359 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
8360
8361         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
8362
8363         * gnus-sum.el (gnus-mark-article-as-unread)
8364         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
8365         (gnus-summary-set-bookmark): Use it.
8366
8367         * gnus-msg.el (gnus-setup-message): Use it.
8368
8369         * gnus-demon.el (gnus-demon-remove-handler): Use it.
8370
8371         * gnus.el (gnus-group-remove-parameter): Use it.
8372
8373         * gnus-group.el (gnus-group-make-web-group): Use it.
8374
8375         * gnus-demon.el (gnus-demon-remove-handler): Use it.
8376
8377         * nnregistry.el: Update docs to mention manual.
8378
8379         * gnus-registry.el: Update docs to mention nnregistry.el.
8380         (gnus-registry-initialize): Don't install nnregistry refer method
8381         automatically.
8382         (gnus-registry-install-nnregistry): Remove it.
8383
8384 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8385
8386         * shr.el (shr-insert): Don't insert double spaces.
8387
8388 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8389
8390         * gnus-gravatar.el (gnus-treat-from-gravatar)
8391         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
8392         called interactively.
8393
8394         * gnus-art.el (gnus-mime-view-part-externally)
8395         (gnus-mime-view-part-internally): Make predicate function passed to
8396         gnus-mime-view-part-as-type assume argument is a mime type, not a list
8397         of a mime type.
8398
8399         * shr.el (shr-table-widths): Don't use cl function `reduce'.
8400
8401 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8402
8403         * shr.el (require): Require cl when compiling.
8404         (shr-tag-hr): New function.
8405
8406         * nnimap.el (nnimap-update-info): Remove double setting of high.
8407         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
8408         This makes nnimap work properly on Courier again.
8409
8410         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
8411         the variable for backwards compatibility.
8412
8413         * mm-decode.el (mm-save-part): If given a non-directory result, expand
8414         the file name before using to avoid setting mm-default-directory to
8415         nil.
8416
8417         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
8418         bidning gnus-agent variables.
8419
8420         * shr.el (shr-render-td): Use a cache for the table rendering function
8421         to avoid getting an exponential rendering behavior in nested tables.
8422         (shr-insert): Rework the line-breaking algorithm.
8423         (shr-insert): Don't leave trailing spaces.
8424         (shr-insert-table): Also insert empty TDs.
8425         (shr-tag-blockquote): Ensure paragraphs after </ul>.
8426
8427 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8428
8429         * gnus-sum.el (gnus-number): Rename from `number'.
8430         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
8431         (gnus-summary-limit-children): Update uses correspondingly.
8432
8433 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8434
8435         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
8436         (gnus-gravatar-transform-address): Don't show avatars of people of
8437         which mail addresses match gnus-gravatar-too-ugly.
8438
8439 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8440
8441         * shr.el (shr-table-widths): Expand TD elements to fill available
8442         space.
8443
8444 2010-10-07  Julien Danjou  <julien@danjou.info>
8445
8446         * nnimap.el (nnimap-request-rename-group): Add this method.
8447
8448 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8449
8450         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
8451         name from XEmacs' function-arglist.
8452
8453         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
8454         gravatar under XEmacs.
8455
8456 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
8457
8458         * auth-source.el: Update docs with TODO items.
8459
8460         * gnus-sync.el: Update docs to explain state and plans.
8461
8462         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
8463         Hooks for mark updates.
8464         (gnus-request-set-mark, gnus-request-update-mark): Use them.
8465
8466         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
8467         hooks with arguments, which is needed for mark update hooks.
8468
8469 2010-10-06  Julien Danjou  <julien@danjou.info>
8470
8471         * gnus.el (gnus-expand-group-parameter): Only return and act on what
8472         was matched.
8473
8474         * sieve-manage.el: Update example in `Commentary'.
8475
8476         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
8477
8478         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
8479         not 2000.
8480         (sieve-manage-authenticate): Re-add function.
8481
8482 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8483
8484         * shr.el (shr-insert): Get 'space transition right.
8485         (shr-render-td): Only delete space at the end of the TD.
8486
8487         * nnimap.el (nnimap-open-connection): Prepare to support
8488         open-gnutls-stream.
8489
8490         * shr.el: Rearrange function order to be more logical.
8491
8492 2010-10-06  Julien Danjou  <julien@danjou.info>
8493
8494         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
8495         (nnrss-discover-feed): Remove 404 URL in docstring.
8496
8497         * nnir.el: Fix Swish-E URL.
8498         Fix Namazu URL.
8499
8500         * message.el (message-change-subject): Remove 404 URL in a comment.
8501
8502 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8503
8504         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
8505         called interactively.
8506
8507         * gnus-util.el (gnus-remove-if): Allow hash table.
8508         (gnus-remove-if-not): New function.
8509
8510         * gnus-art.el (gnus-mime-view-part-as-type):
8511         * gnus-score.el (gnus-summary-score-effect):
8512         * gnus-sum.el (gnus-read-move-group-name):
8513         Replace remove-if-not with gnus-remove-if-not.
8514
8515         * gnus-group.el (gnus-group-completing-read):
8516         Regard collection as a hash table if it is not a list.
8517
8518 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8519
8520         * shr.el (shr-render-td): Allow blank/missing <TD>s.
8521
8522         * shr.el: Document the table-rendering algorithm.
8523
8524 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8525
8526         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
8527         for Emacsen having no `libxml-parse-html-region' support.
8528
8529 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8530
8531         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
8532         invalid URLs.
8533
8534         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
8535         line-broken.
8536         (shr-tag-img): Ignore image fetching errors.
8537         (shr-overlays-in-region): Compute overlay positions correctly.
8538
8539         * mm-decode.el (mm-shr): Require shr.
8540
8541         * gnus-art.el (gnus-blocked-images): Move variable here.
8542
8543         * shr.el (shr-insert-table): Bind free variable.
8544
8545         * mm-decode.el (mm-shr): Bind shr-content-function.
8546
8547         * shr.el (shr-content-function): New variable.
8548
8549         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
8550         added for symmetry.
8551
8552         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
8553
8554         * gnus-group.el (gnus-group-make-group): Doc fix.
8555
8556         * nnimap.el (nnimap-request-newgroups): Return success.
8557
8558         * shr.el (shr-find-elements): New function.
8559         (shr-tag-table): Put all the images after the table.
8560         (shr-tag-table): Really inhibit images inside the table.
8561         (shr-collect-overlays): Copy over overlays from the TD elements to the
8562         main document.
8563
8564         * mm-decode.el (mm-shr): Bind shr-blocked-images to
8565         gnus-blocked-images.
8566
8567 2010-10-05  Julien Danjou  <julien@danjou.info>
8568
8569         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
8570
8571         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
8572         (gnus-html-maximum-image-size): Add this function.
8573         (gnus-html-put-image): Use gnus-html-maximum-image-size.
8574
8575         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
8576         server-value of the capability is nil.
8577
8578 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8579
8580         * shr.el (shr-tag-em): Add <EM> tag.
8581
8582 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
8583
8584         * sieve-manage.el (sieve-manage-default-stream): Make default stream
8585         customizable.
8586
8587         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
8588         handing broken links to browse-url.
8589
8590 2010-10-05  Julien Danjou  <julien@danjou.info>
8591
8592         * gnus-util.el (gnus-emacs-completing-read)
8593         (gnus-iswitchb-completing-read): Use autoload rather than require.
8594
8595 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8596
8597         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
8598         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
8599         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
8600         iswitchb-temp-buflist for XEmacs.
8601
8602         * gnus-util.el (gnus-completing-read-function): Exclude
8603         gnus-icompleting-read and gnus-ido-completing-read from candidates for
8604         XEmacs since iswitchb.el is very old and ido.el is unavailable in
8605         XEmacs.
8606
8607         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
8608         not to use `delete-dups' that is unavailable in XEmacs 21.4.
8609
8610         * gnus-html.el: Don't require help-fns under XEmacs.
8611         (gnus-html-schedule-image-fetching): Work for XEmacs.
8612
8613         * mm-decode.el (mm-shr): Decode contents by charset.
8614
8615 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8616
8617         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
8618         unknown.
8619
8620         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
8621         (shr-get-image-data): Ensure against the cache file missing.
8622
8623         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
8624         for data.
8625
8626         * spam-report.el (spam-report-url-ping-plain): Don't query about
8627         killing the process.
8628
8629         * shr.el (shr-render-td): Protect against too-wide text.
8630
8631 2010-10-04  Julien Danjou  <julien@danjou.info>
8632
8633         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
8634         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
8635
8636         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
8637         retrieved.
8638
8639 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8640
8641         * shr.el (browse-url): Require.
8642         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
8643         lines.
8644         (shr-show-alt-text, shr-browse-image): New commands.
8645         (shr-browse-url, shr-copy-url): New commands.
8646
8647         * gnus-sum.el (gnus-widen-article-window): New variable.
8648         (gnus-summary-select-article-buffer): Use it.
8649
8650         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
8651         without @ signs.
8652
8653 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
8654
8655         * nnir.el (nnir-run-imap): Remove spurious space in search string.
8656
8657 2010-10-04  Julien Danjou  <julien@danjou.info>
8658
8659         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
8660         for XEmacs.
8661
8662 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8663
8664         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
8665
8666         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
8667         (nnimap-close-server): Implement.
8668
8669         * dgnushack.el (iswitchb): Require to shut up the compiler.
8670
8671         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
8672         (shr-insert): Tweak line breaking.
8673         (shr-insert): Handle <pre> better.
8674         (shr-tag-li): Get <li> indentation right.
8675         (shr-tag-li): Get <li> indentation even righter.
8676         (shr-tag-blockquote): Ensure paragraph start.
8677         (shr-make-table): Tweak table generation.
8678         (shr-make-table): Fix typo.
8679
8680         * shr.el: Implement table rendering.
8681
8682 2010-10-04  Julien Danjou  <julien@danjou.info>
8683
8684         * gnus-html.el (gnus-html-put-image): Fix resize image code.
8685
8686 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8687
8688         * shr.el (shr-insert): Use string anchors instead of line anchors.
8689
8690 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8691
8692         * shr.el: Add headings.
8693         (shr-ensure-paragraph): Actually work.
8694         (shr-tag-li): Make <ul> prettier.
8695         (shr-insert): Get white space at the beginning/end of elements right.
8696         (shr-tag-p): Collapse subsequent <p>s.
8697         (shr-ensure-paragraph): Don't insert double line feeds after blank
8698         lines.
8699         (shr-insert): \t is also space.
8700         (shr-tag-s): Fix "s" tag name function.
8701         (shr-tag-s): Fix face prop name.
8702
8703 2010-10-03  Julien Danjou  <julien@danjou.info>
8704
8705         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
8706
8707         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
8708         gnus-window-inside-pixel-edges.
8709
8710         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
8711         gnus-ems.
8712
8713         * mm-view.el (mm-inline-image-emacs): Support image resizing.
8714
8715         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
8716         function.
8717
8718         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
8719         resize choice.
8720
8721 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8722
8723         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
8724         beginning of the buffer.
8725
8726         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
8727         article buffer again.
8728
8729         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
8730
8731         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
8732         when it's at the start of the buffer.
8733
8734         * shr.el (shr-tag-blockquote): Convert name.
8735         (shr-rescale-image): Use the right image-size variant.
8736
8737         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
8738         buffer isn't shown, then select the current article first instead of
8739         bugging out.
8740         (gnus-summary-select-article-buffer): Show both the article and summary
8741         buffers again.
8742
8743         * shr.el (shr-fontize-cont): Protect against regions with no text.
8744         Rename tag functions to shr-tag-* for enhanced security.
8745         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
8746
8747 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
8748
8749         * shr.el (shr-insert):
8750         * pop3.el (pop3-movemail):
8751         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
8752         loaded.
8753
8754 2010-10-03  Glenn Morris  <rgm@gnu.org>
8755
8756         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
8757
8758         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
8759
8760         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
8761
8762         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
8763
8764         * gnus-util.el (gnus-make-local-hook): Simplify.
8765
8766 2010-10-02  Julien Danjou  <julien@danjou.info>
8767
8768         * gnus-util.el (gnus-iswitchb-completing-read): New function.
8769         (gnus-ido-completing-read): New function.
8770         (gnus-emacs-completing-read): New function.
8771         (gnus-completing-read): Use gnus-completing-read-function.
8772         Add gnus-completing-read-function.
8773
8774 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8775
8776         * shr.el (shr-insert-document): Autoload.
8777         (shr-img): Be silent.
8778         (shr-insert): Add a newline after every picture before text.
8779         (shr-add-font): Use overlays for combining faces.
8780         (shr-insert): Pass upwards the text start point.
8781
8782         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
8783         possible.
8784         (mm-shr): New function.
8785
8786 2010-10-02  Julien Danjou  <julien@danjou.info>
8787
8788         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
8789         should go backward.
8790
8791 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
8792
8793         * shr.el (shr): Fix typo in provide call.
8794
8795 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8796
8797         * shr.el: New file.
8798
8799         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
8800
8801         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
8802         completing read.
8803
8804 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8805
8806         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
8807         we're being queried about.  Suggested by Dan Jacobson.
8808
8809         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
8810         Suggested by Jason Eisner.
8811
8812         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
8813         table, too.  Suggested by Stefan Wiens.
8814         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
8815         the table unnecessary.  Suggested by Stefan Wiens.
8816
8817         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
8818         longer needed, and probably doesn't work either, as pointed out by
8819         Stefan Wiens.
8820         (gnus-summary-exit): Remove call to the clearing function.
8821         (gnus-summary-exit-no-update): Ditto.
8822
8823         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
8824         instead of gnus-eval-in-buffer-window to avoid popping up frames.
8825         Reported by Stefan Monnier.
8826         (gnus-summary-save-in-rmail): Ditto.
8827
8828         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
8829         article buffer, instead of both the article buffer and the summary
8830         buffer.  Sort of suggested by Dan Jacobson.
8831
8832         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
8833
8834         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
8835         Suggested by Dan Jacobson.
8836
8837         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
8838         documentation clearer.
8839
8840         * message.el (message-shorten-references): Comment on the number "21".
8841         Suggested by Stefan Monnier.
8842
8843         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
8844         Suggested by Dan Jacobson.
8845
8846         * gnus.el (gnus-large-newsgroup):
8847         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
8848
8849         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
8850         externalize attachments.  Bug reported by Steve Wen.
8851
8852         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
8853         really message anything to the user.
8854
8855         * nnmail.el (nnmail-article-group): Allow using the fancy split method
8856         directly.
8857
8858         * nnimap.el (nnimap-request-group): Low higher than high to signal no
8859         messages in empty groups.
8860
8861 2010-10-01  Ted Zlatanov  <tzz@lifelogs.com>
8862
8863         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
8864         non-UIDNEXT group.
8865
8866 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8867
8868         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
8869         not the value from the collection.
8870
8871         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
8872         values.  This sometimes happens on some groups that have no info.
8873         (nnimap-request-newgroups): New function.
8874
8875 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
8876
8877         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
8878         check into `gnus-registry-initialize'.
8879         (gnus-registry-initialize): Ditto.
8880         Fix and extend header docs.
8881
8882 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8883
8884         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
8885         regexp backtrace overflows.
8886
8887         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
8888         for starttls that tls.el implements; i.e. openssl.
8889
8890         * tls.el (tls-starttls-switches): Give up on using starttls with
8891         gnutls-cli.
8892         (tls-program): Add --insecure to be consistent with the defaults from
8893         openssl s_client.  Now all three commands are insecure.
8894
8895 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8896
8897         * lpath.el: Bind completion-styles-alist for XEmacs.
8898
8899         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
8900         (gravatar-create-image): New function that's an alias to
8901         gnus-xmas-create-image, gnus-create-image, or create-image.
8902         (gravatar-data->image): Use it.
8903
8904 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
8905
8906         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
8907         install the nnregistry refer method.
8908         (gnus-registry-install-hooks): Use it.
8909         (gnus-registry-unfollowed-groups): Add nnmairix to the default
8910         unfollowed groups.
8911
8912 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
8913
8914         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
8915         expanding threads.
8916
8917 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8918
8919         * nnir.el: Use the server names without suffixes (bug #7009).
8920
8921         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
8922         unencrypted to STARTTLS, if possible.
8923
8924 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
8925
8926         * message.el (message-ignored-supersedes-headers): Strip Injection-*
8927         headers before superseding.
8928
8929 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8930
8931         * nnrss.el (nnrss-use-local): Add documentation.
8932
8933         * nnimap.el (nnimap-extend-tls-programs): New function.
8934         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
8935         (nnimap-wait-for-connection): Accept the greeting from the stupid
8936         output from openssl s_client -starttls, too.
8937
8938         * tls.el (tls-starttls-switches): New variable.
8939         (tls-find-starttls-argument): Use it.
8940         (open-tls-stream): Ditto.
8941
8942         * netrc.el (netrc-credentials): Return the value of the "default" entry.
8943         (netrc-machine): Ditto.
8944
8945         * nnimap.el (nnimap-find-article-by-message-id): Really return the
8946         article number.
8947         (nnimap-split-fancy): New variable.
8948         (nnimap-split-incoming-mail): Use it.
8949
8950         * nntp.el (nntp-server-list-active-group): Document.
8951
8952         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
8953         SELECT to get the message-id.
8954
8955         * mail-source.el (mail-sources): Remove webmail support.
8956         (defvar): Ditto.
8957         (mail-source-fetcher-alist): Ditto.
8958         (mail-source-fetch-webmail): Remove.
8959
8960         * webmail.el: Remove -- doesn't seem relevant any more.
8961
8962         * gnus.el: Fix up make-obsolete-variable declarations throughout.
8963
8964         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
8965         the \r.
8966
8967 2010-09-30  Julien Danjou  <julien@danjou.info>
8968
8969         * gnus-agent.el (gnus-agent-add-group): Fix call to
8970         gnus-completing-read.
8971
8972 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8973
8974         * nndoc.el (nndoc-retrieve-groups): New function.
8975
8976         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
8977         `default', use nnmail-split-methods.
8978         (nnimap-request-article): Downcase the NILs so that they are nil.
8979
8980         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
8981         symbol.
8982
8983         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
8984         code, since if the user has requested network, that's what they ought
8985         to get.
8986         (nnimap-request-set-mark): Erase the buffer before issuing commands.
8987         (nnimap-split-rule): Mark as obsolete.
8988
8989         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
8990         New variable.
8991
8992         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
8993         correct slot, too.
8994
8995 2010-09-29  Julien Danjou  <julien@danjou.info>
8996
8997         * gnus.el (gnus-local-domain): Declare variable obsolete.
8998
8999         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
9000         Fix history computing.
9001         (gnus-ido-completing-read): Require ido.
9002
9003 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9004
9005         * gnus-registry.el: Don't prompt on load, which makes it impossible to
9006         build Gnus.
9007
9008         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
9009         when interpreting the structures.
9010         (nnimap-request-accept-article): Add \r\n to the lines to make this
9011         work with Cyrus.
9012
9013         * nndraft.el (nndraft-request-expire-articles): Use the group name
9014         instead if "nndraft".  Fix found by Nils Ackermann.
9015
9016 2010-09-29  Ludovic Courtes  <ludo@gnu.org>
9017
9018         * nnregistry.el: Add.
9019
9020 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9021
9022         * nnmail.el (group, group-art-list, group-art):
9023         Remove unneeded directives.
9024
9025 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9026
9027         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
9028         (mm-mime-charset):
9029         * rfc2047.el (rfc2047-syntax-table):
9030         * utf7.el (utf7-utf-16-coding-system): Comment fix.
9031
9032         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
9033         rather than `insert-file-contents' and `eval-region'.
9034
9035         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
9036         construction.
9037
9038         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
9039
9040         * time-date.el: No need to require cl for Emacs 21.
9041
9042 2010-09-29  Julien Danjou  <julien@danjou.info>
9043
9044         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
9045         replacement of `gnus-gravatar-relief' to mimic
9046         `gnus-faces-properties-alist'.
9047         Add :version property.
9048
9049 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9050
9051         * mail-source.el (mail-source-report-new-mail):
9052         * message.el (message-default-mail-headers):
9053         * mm-decode.el (mm-valid-image-format-p): Comment fix.
9054
9055         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
9056
9057 2010-09-28  Julien Danjou  <julien@danjou.info>
9058
9059         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
9060         mail-address contains the same string as real-name.
9061
9062         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
9063         non-blank in header, otherwise it'll get stripped.
9064
9065         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
9066         real-name, and then for mail address rather than doing : or , search.
9067
9068 2010-09-27  Julien Danjou  <julien@danjou.info>
9069
9070         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
9071         right completing-read function.
9072         (gnus-use-ido): New variable
9073         (gnus-completing-read-with-default): Remove.
9074         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
9075         (gnus-agent-add-group):
9076         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
9077         * mm-view.el (mm-view-pkcs7-decrypt):
9078         * mm-util.el (mm-codepage-setup):
9079         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
9080         * mml-smime.el (mml-smime-openssl-sign-query):
9081         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
9082         (mml-insert-multipart):
9083         * gnus-msg.el (gnus-summary-yank-message):
9084         * gnus-int.el (gnus-start-news-server):
9085         * mm-decode.el (mm-interactively-view-part):
9086         * gnus-dired.el (gnus-dired-attach):
9087         * gnus.el (gnus-read-method):
9088         * gnus-bookmark.el (gnus-bookmark-jump):
9089         * gnus-art.el (gnus-mime-view-part-as-type)
9090         (gnus-mime-action-on-part, gnus-article-encrypt-body):
9091         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
9092         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
9093         * nnmairix.el (nnmairix-create-server-and-default-group)
9094         (nnmairix-update-groups, nnmairix-get-server)
9095         (nnmairix-backend-to-server, nnmairix-goto-original-article)
9096         (nnmairix-get-group-from-file-path):
9097         * nnrss.el (nnrss-find-rss-via-syndic8):
9098         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
9099         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
9100         (gnus-group-browse-foreign-server):
9101         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
9102         (gnus-summary-execute-command, gnus-summary-respool-article)
9103         (gnus-read-move-group-name):
9104         * gnus-score.el (gnus-summary-increase-score)
9105         (gnus-summary-score-effect):
9106         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
9107
9108 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9109
9110         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
9111         x-focus-frame.
9112
9113         * nnimap.el (auth-source-forget-user-or-password)
9114         (auth-source-user-or-password): Autoload.
9115
9116         * message.el (message-from-style, message-interactive)
9117         (message-cite-prefix-regexp, message-sendmail-envelope-from)
9118         (message-yank-prefix, message-indentation-spaces, message-signature)
9119         (message-signature-file): Add comment.
9120
9121 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9122
9123         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
9124         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
9125         new articles.
9126
9127         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
9128         parts.
9129         (nnimap-request-article): Work with the t setting, too.
9130
9131         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
9132         that you don't get flashes of other buffers.
9133         (gnus-summary-show-complete-article): Intern before setting.
9134
9135 2010-09-27  David Engster  <dengste@eml.cc>
9136
9137         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
9138         well as HEADERS.
9139         (nnmairix-retrieve-headers): Provide new argument for the above.
9140
9141 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9142
9143         * gnus-sum.el (gnus-summary-move-article): Don't alter
9144         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
9145         group.
9146
9147         * nnimap.el (nnimap-update-info): Don't destructively alter active.
9148
9149         * message.el (message-cite-prefix-regexp): Revert my last edit.
9150
9151         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
9152         variable instead of the Gnus variable.
9153
9154         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
9155
9156         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
9157
9158         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
9159         since some servers don't like it.
9160         (nnimap-open-connection): Forget credentials if the server says the
9161         password was wrong.
9162         (nnimap-parse-line): Protect against invalid data.
9163
9164         * gnus-sum.el (gnus-summary-move-article): Add comment.
9165         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
9166         nothing alters it while scanning for new messages.
9167
9168         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
9169         which may or may not help.
9170         (nnimap-open-connection): If we're doing a stream connection, and then
9171         discover we're on a STARTTLS-capable server, then open a STARTTLS
9172         connection instead.
9173
9174 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9175
9176         * nnimap.el (utf7): Require.
9177
9178         * message.el (message-cite-prefix-regexp): Remove "}" from citation
9179         prefix.
9180
9181 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
9182
9183         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
9184
9185 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9186
9187         * nnimap.el (nnimap-request-accept-article): Message the error on
9188         error.
9189
9190 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9191
9192         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
9193
9194 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9195
9196         * nndoc.el (nndoc-request-list): Return success always.
9197
9198         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
9199         `fetch-old' -- we only want to fetch the articles we've requested.
9200         The rest are in the agent, probably.
9201         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
9202         disappeared server" to something low.  It's not important.
9203
9204         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
9205         arrived before the FETCH data.
9206
9207         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
9208         target here, because we don't know the Gnus name of the group.
9209
9210         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
9211         for the correct group.
9212
9213         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
9214
9215         * gnus.el (gnus): Give a final warning after startup.
9216
9217         * gnus-util.el (gnus-action-message-log): New variable.
9218         (gnus-message): Use it.
9219         (gnus-final-warning): New function.
9220
9221         * nnimap.el (nnimap-open-connection): Record the greeting.
9222         (nnimap): Add greeting.
9223
9224 2010-09-26  Julien Danjou  <julien@danjou.info>
9225
9226         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
9227         arguments.
9228         (gnus-html-wash-images): Fix spec computing to include start/end.
9229
9230         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
9231
9232 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9233
9234         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
9235         deletion.
9236         (nnimap-retrieve-headers): Don't select the group, because that's
9237         already done by nnimap-possibly-change-group.
9238
9239         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
9240         (gnus-picon-transform-address): Use it.
9241
9242         * mail-source.el (mail-source-value): Revert previous patch.
9243
9244         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
9245         on failure.
9246         (nnimap-open-connection): Look up both virtual and physical server name
9247         credentials.
9248
9249         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
9250
9251 2009-02-07  Dave Love  <fx@gnu.org>
9252
9253         * tls.el (open-tls-stream): Don't query killing process.
9254
9255 2009-02-08  Dave Love  <fx@gnu.org>
9256
9257         * gnus-win.el (gnus-window-to-buffer-helper)
9258         (gnus-all-windows-visible-p): Function needn't be a symbol.
9259
9260         * mail-source.el (mail-source-value): Function needn't be a symbol.
9261
9262 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9263
9264         * message.el (message-cite-prefix-regexp): Remove } from the cite
9265         prefix.
9266
9267         * gnus-art.el (gnus-treatment-function-alist): Do picons before
9268         highlight again, so that the highlight is correct.
9269
9270         * gnus-picon.el (gnus-picon): Remove again.
9271         (gnus-picon-create-glyph): Set the background XPM color explicitly.
9272
9273         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
9274         doing the header highlightling, so that the background color of the
9275         picon is correct.
9276
9277         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
9278         (gnus-picon): Ditto.
9279         (gnus-picon): Reinstate.  The background color for picons is white.
9280         (gnus-picon-insert-glyph): Make the background white.
9281
9282         * nnml.el (nnml-open-nov): Don't return dead buffers.
9283
9284         * auth-source.el (auth-source-create): Query the user for whether to
9285         store the credentials.
9286
9287         * netrc.el (netrc-store-data): New function.
9288
9289         * auth-source.el (auth-source-user-or-password): Use the existing auth
9290         sources, if any, for creation.
9291
9292         * gnus.el (gnus-group-fast-parameter): Return the last matching
9293         parameter instead of the first matching parameter.
9294
9295 2010-09-26  Julien Danjou  <julien@danjou.info>
9296
9297         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
9298
9299 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9300
9301         * mml2015.el (mml2015-use): Remove gpg support.
9302
9303         * mml1991.el (mml1991-function-alist): Remove gpg function.
9304         (mml1991-gpg-sign): Remove.
9305
9306 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
9307
9308         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
9309         (gnus-browse-unsubscribe-current-group): Document it.
9310         (gnus-browse-unsubscribe-group): Use it.
9311
9312 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9313
9314         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
9315         address to the To list for easier response.
9316
9317         * gnus.el (gnus-play-startup-jingle): Remove.
9318         (gnus-splash): Don't play jingle.
9319         (gnus): Silence gnus-load message.
9320
9321         * gnus-art.el (gnus-treat-play-sounds): Remove.
9322
9323         * gnus.el (gnus-play-jingle): Remove audio support.
9324
9325         * gnus-cus.el (gnus-score-customize): Remove audio reference.
9326
9327         * earcon.el: Remove -- no users.
9328
9329         * gnus-audio.el: Remove -- no users of this package.
9330
9331         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
9332
9333         * gnus-start.el (gnus-setup-news): Remove nocem support.
9334
9335         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
9336
9337         * gnus.el (gnus-use-nocem): Remove.
9338
9339         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
9340         Remove.
9341
9342         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
9343         uses NoCeM any more.
9344
9345         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
9346         (gnus-button-ctan-handler): Ditto.
9347         (gnus-button-handle-ctan-bogus-regexp): Ditto.
9348         (gnus-button-ctan-directory-regexp): Ditto.
9349         (gnus-button-handle-ctan): Ditto.
9350         (gnus-button-tex-level): Ditto.
9351         (gnus-button-alist): Remove CTAN stuff.
9352
9353 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9354
9355         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
9356         nnimap-streaming test.
9357
9358         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
9359         servers twice.
9360
9361         * nnimap.el (nnimap-open-connection): Add more error reporting when
9362         nnimap fails early.
9363
9364         * nnheader.el (nnheader-get-report-string): New function.
9365         (nnheader-get-report): Use it.
9366
9367         * gnus-int.el (gnus-check-server): Say what the error was when opening
9368         failed.
9369
9370         * nnimap.el (nnimap-wait-for-response): Search further when we're not
9371         using streaming.
9372
9373 2010-09-25  Julien Danjou  <julien@danjou.info>
9374
9375         * gnus-html.el (gnus-html-rescale-image): Use our defalias
9376         gnus-window-inside-pixel-edges.
9377
9378 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9379
9380         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
9381
9382         * mm-decode.el (mm-save-part): Allow saving to other directories the
9383         normal Emacs way.
9384
9385         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
9386         Suggested by Jay Berkenbilt.
9387
9388         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
9389         there isn't a single byte.
9390
9391         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
9392         just do it.  It doesn't really seem to matter what the user responds
9393         here, I think, so it's just a confusing question.
9394
9395         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
9396         non-streaming case.
9397
9398         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
9399         (gnus-article-encrypt-body): Use it.
9400
9401         * gnus-sum.el (gnus-summary-show-complete-article): New command and
9402         keystroke.
9403
9404         * nnimap.el (nnimap-find-wanted-parts-1):
9405         Use gnus-fetch-partial-articles.
9406
9407         * gnus-art.el (gnus-fetch-partial-articles): New variable.
9408
9409         * nnimap.el (nnimap-insert-partial-structure): New function.
9410         (nnimap-get-partial-article): New function.
9411         (nnimap-request-article): Use it.
9412         (nnimap-wait-for-response): Return whether the wait was successful.
9413         (nnimap-finish-retrieve-group-infos): Don't do anything if the
9414         retrieval wasn't successful.
9415         (nnimap-retrieve-group-data-early): Allow throttling servers.
9416         (nnimap-streaming): New variable.
9417         (nnimap-fetch-partial-articles): Remove.
9418
9419         * mm-decode.el (mm-with-part): Protect against killed buffers.
9420
9421         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
9422         for prettier summary display.
9423
9424 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
9425
9426         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
9427
9428 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9429
9430         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
9431         apparently third-party libraries depend on it.
9432
9433         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
9434         before starting negotiation.
9435
9436         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
9437         privacy reasons.
9438         (gnus-treat-mail-gravatar): Ditto.
9439
9440         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
9441         buffer when inserting images.  Inserting text into the headers, for
9442         instance, can make them invalid.
9443
9444 2010-09-25  Julien Danjou  <julien@danjou.info>
9445
9446         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
9447         variables.
9448
9449         * nnheader.el: Remove useless variables news-reply-yank-from and
9450         news-reply-yank-message-id.
9451
9452         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
9453         variables.
9454
9455         * mml1991.el: Remove useless mml1991-verbose.
9456
9457         * gnus.el: Remove useless variable gnus-use-generic-from.
9458         Remove obsolete variable gnus-topic-indentation.
9459
9460         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
9461
9462         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
9463
9464         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
9465
9466         * gnus-group.el: Remove useless gnus-group-icon-cache.
9467         Remove useless gnus-ephemeral-group-server.
9468
9469         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
9470
9471         * mml2015.el: Remove useless mml2015-verbose.
9472
9473         * mml-smime.el: Remove useless mml-smime-verbose.
9474
9475         * gnus.el: Remove useless gnus-local-domain.
9476
9477         * gnus-gravatar.el (gnus-gravatar-transform-address):
9478         Use gnus-gravatar-size.
9479
9480         * gnus-art.el: Remove useless gnus-treat-translate.
9481
9482 2010-09-24  Julien Danjou  <julien@danjou.info>
9483
9484         * gnus-sum.el: Add support for Gravatars.
9485
9486         * gnus-art.el: Add support for Gravatars.
9487
9488         * gnus-gravatar.el: Add this file.
9489
9490         * gravatar.el: Add this file.
9491
9492 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9493
9494         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
9495
9496         * gnus-group.el (gnus-group-fetch-faq): Remove.
9497
9498         * gnus.el (gnus-group-faq-directory): Remove.
9499
9500         * gnus-group.el (gnus-group-fetch-charter): Remove.
9501
9502         * gnus.el (gnus-group-charter-alist): Remove.
9503
9504         * gnus-group.el (gnus-group-archive-directory): Remove.
9505         (gnus-group-recent-archive-directory): Ditto.
9506         (gnus-group-make-archive-group): Remove.
9507
9508         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
9509
9510         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
9511         use the same article number for all the cached articles.
9512
9513         * nnimap.el (nnimap-command): Register the last command time so
9514         that we can use it for idling NOOPs.
9515         (nnimap-open-connection): Start the keeplive timer.
9516         (nnimap-make-process-buffer): Store all the process buffers.
9517         (nnimap-keepalive): New function.
9518
9519         * starttls.el (starttls-open-stream): Add autoload cookie.
9520
9521 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
9522
9523         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
9524         handling.
9525
9526 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9527
9528         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
9529         its data structures.
9530
9531         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
9532         instead of the cl.el copy-list.
9533         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
9534         equalp.
9535
9536 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9537
9538         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
9539         and tool-bar-local-item-from-menu.
9540
9541         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
9542         mode-line-highlight face for Emacs.
9543
9544         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
9545         loading gnus-sum.elc; fix comment for canlock-verify.
9546         (gnus-article-jump-to-part): Use read-number.
9547         (gnus-insert-mime-button, gnus-insert-mime-security-button):
9548         Remove Emacs pre-21 compatible code for help-echo.
9549         (gnus-article-next-page-1): No need to adjust the number of lines.
9550         (gnus-article-describe-bindings): Always use help-buffer.
9551
9552         * gnus-audio.el (gnus-audio-inline-sound):
9553         * gnus-cus.el (gnus-custom-mode):
9554         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
9555
9556         * gnus-sum.el (gnus-remove-overlays): Doc fix.
9557
9558         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
9559         compatible code.
9560
9561 2010-09-24  Glenn Morris  <rgm@gnu.org>
9562
9563         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
9564         visiting the fcc file in rmail-mode.
9565
9566         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
9567
9568 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9569
9570         * nnir.el: Silence the byte compiler.
9571
9572         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
9573         alias to browse-url-url-encode-chars if any.
9574         (gnus-html-encode-url): Use it.
9575
9576 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9577
9578         * gnus-start.el (gnus-use-backend-marks): New variable.
9579         (gnus-get-unread-articles-in-group): Use it.
9580
9581         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
9582         makeover.
9583
9584 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
9585
9586         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
9587
9588 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9589
9590         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
9591         Remove.
9592         (gnus-setup-news-hook):
9593         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
9594
9595         * gnus-int.el (gnus-request-update-info): Protect against backends not
9596         having the function.
9597
9598         * nnimap.el (nnimap-stream): Mention starttls.
9599         (nnimap-open-connection): Add starttls support.
9600
9601 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
9602
9603         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
9604
9605 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9606
9607         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
9608         BODYSTRUCTUREs.
9609         (nnimap-transform-headers): Unfold quoted {42} headers.
9610
9611         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
9612         the info.
9613         (gnus-get-unread-articles): Only call updatep on backends that support
9614         it.
9615
9616         * nnweb.el (nnweb-request-update-info): NOOP.
9617
9618         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
9619
9620         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
9621         since it only deals with marks.
9622
9623         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
9624         gnus-request-marks, and make a new gnus-request-update-info.
9625
9626         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
9627         the active instead of the high number, which is usually too low.
9628
9629 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
9630
9631         * netrc.el (netrc-parse): Remove encrypt.el mentions.
9632         * encrypt.el: Remove.
9633
9634 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9635
9636         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
9637         server in symbolic form.
9638
9639         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
9640
9641 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9642
9643         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
9644         (nnimap-update-info): Fix up code slightly.
9645
9646         * gnus-int.el (gnus-open-server): Add tracing for performance
9647         debugging.
9648
9649         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
9650         (gnus-group-insert-group-line): Pass the real group name so that it
9651         gets the right data.
9652
9653         * gnus-start.el (gnus-get-unread-articles): Don't have
9654         `gnus-get-unread-articles-in-group' update info, since that can be
9655         really slow and doesn't seem to be needed?
9656
9657 2010-09-22  Dan Christensen  <jdc@uwo.ca>
9658
9659         * time-date.el (date-to-time): Try using parse-time-string first before
9660         using the slower timezone-make-date-arpa-standard.
9661
9662 2010-09-22  Julien Danjou  <julien@danjou.info>
9663
9664         * gnus-group.el (gnus-group-insert-group-line):
9665         Call gnus-group-highlight-line.
9666         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
9667         default hook list.
9668         (gnus-group-update-eval-form): Add new function.
9669         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
9670         (gnus-group-get-icon): Use gnus-group-update-eval-form.
9671
9672 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9673
9674         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
9675         immediate, then expire all articles.
9676         (nnimap-update-info): Fix off-by-one errors.
9677         (nnimap-flags-to-marks): Would return no marks lists for group with no
9678         flags.  Instead return the other data.
9679
9680 2010-09-22  Julien Danjou  <julien@danjou.info>
9681
9682         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
9683         Only return an icon.
9684         (gnus-group-insert-group-line): Compute icon to return.
9685
9686         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
9687         (gnus-html-image-fetched): Only cache if
9688         gnus-html-image-automatic-caching is set.
9689         (gnus-html-image-fetched): Check for errors.
9690
9691 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9692
9693         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
9694         once per method on `g'.  This ensures that backends like nnfolder don't
9695         open all their folders.
9696
9697         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
9698         (nnimap-request-list): Nix out group in the correct buffer.
9699         (nnimap-parse-flags): Implement by using `read' instead of
9700         hand-parsing.
9701         (nnimap-flags-to-marks): Pass on permanent-flags.
9702         (nnimap-make-process-buffer): Record the server name.
9703         (nnimap-parse-flags): Fix typo.
9704         (nnimap-request-scan): Run split on the server in general, not just a
9705         single group.
9706
9707         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
9708         parameter, and propagate this downwards.
9709
9710         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
9711         since EXAMINE changes it on the server.
9712
9713         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
9714         this command might take a while.
9715
9716 2010-09-22  Julien Danjou  <julien@danjou.info>
9717
9718         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
9719         harmful if you have 2 images side-by-side, they can't be properly
9720         update on text deletion.  Using text-property is safer here.
9721         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
9722         data.
9723
9724 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9725
9726         * nnimap.el (nnimap-expunge-inbox): Remove.
9727         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
9728         (nnimap-expunge): Flip default to t.
9729
9730         * gnus.el (gnus-method-to-server): Don't push things to the cache
9731         unless it's unique.
9732         (gnus-server-to-method): Ditto.
9733
9734 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
9735
9736         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
9737
9738 2010-09-22  Julien Danjou  <julien@danjou.info>
9739
9740         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
9741         get the start of data.
9742         (gnus-html-encode-url): Add this function to encode special chars in
9743         URL.
9744         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
9745         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
9746
9747         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
9748         default.
9749         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
9750
9751         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
9752         images alt-text.
9753         (gnus-html-put-image): Put alt-text as help-echo.
9754
9755 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9756
9757         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes):
9758         * mm-util.el (mm-decompress-buffer):
9759         * nnir.el (nnir-run-find-grep):
9760         * pop3.el (pop3-list): Use 3rd arg of split-string.
9761
9762         * time-date.el (format-seconds): Comment fix.
9763
9764         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
9765         and byte-optimize-form-code-walker.
9766         (dgnushack-make-auto-load): Don't advise make-autoload.
9767
9768         * lpath.el: Remove Emacs 21 stuff.
9769
9770 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9771
9772         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
9773         outside the active range.  Suggested by Dan Christensen.
9774
9775         * gnus-start.el (gnus-get-unread-articles): Get the extended method
9776         slightly later to avoid double-getting it.
9777
9778         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
9779         previous patch.
9780
9781         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
9782
9783 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
9784
9785         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
9786
9787 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9788
9789         * gnus-int.el (gnus-open-server): Give a better error message in the
9790         "go offline" case.
9791
9792         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
9793         marks for nnimap, which is seldom the right thing to do.
9794
9795         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
9796         (gnus-same-method-different-name): New function.
9797
9798         * nnimap.el (parse-time): Require.
9799
9800         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
9801         method in the presence of many similar methods.
9802
9803         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
9804
9805         * nnimap.el (nnimap-find-expired-articles): Don't refer to
9806         nnml-inhibit-expiry.
9807
9808         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
9809         find out whether methods are equal.
9810
9811         * nnimap.el (nnimap-find-expired-articles): New function.
9812         (nnimap-process-expiry-targets): New function.
9813         (nnimap-request-move-article): Request the article before looking at
9814         what the Message-ID is.  Fix found by Andrew Cohen.
9815         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
9816
9817         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
9818         for oldness in addition to being a predicate.
9819
9820         * nnimap.el (nnimap-request-group): When we have zero articles, return
9821         the right data to Gnus.
9822         (nnimap-request-expire-articles): Only delete articles immediately if
9823         the target is 'delete.
9824
9825         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
9826         method, this would bug out.
9827
9828         * gnus-group.el (gnus-group-expunge-group): Rename from
9829         gnus-group-nnimap-expunge, and implemented as a normal interface
9830         function.
9831
9832         * gnus-int.el (gnus-request-expunge-group): New function.
9833
9834         * nnimap.el (nnimap-request-create-group): Implement.
9835         (nnimap-request-expunge-group): New function.
9836
9837 2010-09-21  Julien Danjou  <julien@danjou.info>
9838
9839         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
9840         (gnus-html-cache-expired): Add new function.
9841         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
9842         wethever we should display image for fetch it.
9843         Compute alt-text earlier to pass it to the fetching function too.
9844         (gnus-html-schedule-image-fetching): Change function argument to only
9845         get one image at a time, not a list.
9846         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
9847         cache.
9848         (gnus-html-get-image-data): New function to retrieve image data from
9849         cache.
9850         (gnus-html-put-image): Change buffer argument to use image data rather
9851         than file, and place image above region rather than inserting a new
9852         one.  Do not take alt-text as argument, since it's useless now: we place
9853         the image above alt-text.
9854         (gnus-html-prune-cache): Remove.
9855         (gnus-html-show-images): Start to fetch image when we find one, do not
9856         push into a temporary list.
9857         (gnus-html-prefetch-images): Only fetch image if they have expired.
9858         (gnus-html-browse-image): Fix, use 'gnus-image-url.
9859         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
9860
9861 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9862
9863         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
9864
9865 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9866
9867         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
9868         spec inser "*" if the group isn't active instead of 0.
9869
9870         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
9871         opening the server.
9872         (nnimap-request-delete-group): Implement group deletion.
9873         (nnimap-transform-headers): Return the size of the entire message in
9874         the Bytes header, not just the size of the first part.
9875         (nnimap-request-move-article): When moving an article from nnimap,
9876         request the article first so the accepting form has an article to
9877         accept.  Reported by Dan Christensen.
9878         (nnimap-command): Make sure that the error message doesn't error out.
9879
9880 2010-09-20  David Edmondson  <dme@dme.org>
9881
9882         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
9883         we haven't requested anything.
9884
9885 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9886
9887         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
9888         "".  Fix found by Andrew Cohen.
9889
9890         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
9891         instead of -encode-string.
9892
9893 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9894
9895         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
9896
9897         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
9898         by mm-subst-char-in-string.
9899
9900 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9901
9902         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
9903         waiting for the connection string.
9904
9905         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
9906         arriving.
9907
9908         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
9909         bogus characters.  This allows selecting certain Gmail groups.
9910
9911         * nnimap.el (nnimap-find-wanted-parts-1): New function.
9912         (nnimap-fetch-partial-articles): New variable.
9913         (nnimap-open-connection): When looking for credentials, also use the
9914         nnimap-server-port.
9915         (nnimap-request-article): Return the group/article number, so that Gnus
9916         `^' works as expected.
9917         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
9918
9919         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
9920         comments.
9921         (gnus-methods-sloppily-equal): New function.
9922         (gnus): When using the development version of Gnus, load the gnus-load
9923         file.
9924
9925         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
9926         `gnus-open-server' on each method before trying to scan them etc.
9927         This ensures that all the backend parameters are set correctly.
9928
9929         * nnimap.el (nnimap-authenticator): New variable.
9930         (nnimap-open-connection): Allow anonymous login.
9931         (nnimap-transform-headers): The chars header is called Chars not Bytes.
9932         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
9933
9934         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
9935         patch, found by Knut Anders Hatlen.
9936
9937 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
9938
9939         * gnus-agent.el (gnus-agent-batch-confirmation)
9940         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
9941         to gnus-message.
9942         * gnus-art.el (gnus-article-describe-briefly): Likewise.
9943         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
9944         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
9945         * gnus-int.el (gnus-open-server): Likewise.
9946         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
9947         (gnus-score-check-syntax): Likewise.
9948         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
9949         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
9950         Likewise.
9951         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
9952
9953 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9954
9955         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
9956         calling conventions so that prefetch doesn't bug out.
9957
9958 2010-09-19  Julien Danjou  <julien@danjou.info>
9959
9960         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
9961         rather than `subst-char-in-region' in order to be able to replace ASCII
9962         char by UTF-8 ones.
9963
9964         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
9965         than curl.
9966         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
9967         the right URL and ALT text on images.
9968         (gnus-html-wash-tags): Fix tag case.
9969         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
9970         (gnus-article-html): Add -o display_ins_del=2 option.
9971         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
9972
9973 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9974
9975         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
9976         the extra mail headers, which sometimes seem to happen for unknown
9977         reasons.
9978
9979         * mail-parse.el (mail-header-encode-parameter): Define as
9980         rfc2045-encode-string instead of as rfc2231-encode-string, since some
9981         (or most, perhaps?) mail readers don't understand the latter, but do
9982         understand the former.
9983
9984         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
9985         to nil, so that no methods are automatically agentized.  I think this
9986         is probably what most users want.
9987
9988         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
9989         from url-retrieve, for instance about invalid URLs.
9990
9991         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
9992         groups that have no articles.
9993         (nnimap-request-article): Check that we really got an article when we
9994         requested one.
9995
9996         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
9997         doesn't exist.
9998
9999         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
10000         nntp buffer so the agent can save it.
10001         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
10002         that CRLF doesn't get translated to \n.
10003         (nnimap-open-connection): Don't make 'shell commands only send \n.
10004
10005 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10006
10007         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
10008         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
10009         Update var name.
10010         (nnml-generate-nov-file): Use dolist.
10011         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
10012         Use with-current-buffer.
10013
10014 2010-09-18  Julien Danjou  <julien@danjou.info>
10015
10016         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
10017         parallel.
10018
10019 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10020
10021         * nnimap.el (nnimap-update-info): When doing partial marks update, get
10022         the range update right.
10023         (nnimap-request-group): Don't make `M-g' bug out on group with no
10024         marks.
10025         (nnoo): Require, so that other packages can require nnimap.
10026         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
10027         command we're looking for.  This helps when the server sends more
10028         responses after we've gotten everything we expected.
10029         (nnimap): Add a `newlinep' field to keep track of end-of-line
10030         conventions.
10031         Don't send CRLF to things that don't want it.
10032         (nnimap-request-accept-article): Ditto.
10033
10034 2010-09-18  Julien Danjou  <julien@danjou.info>
10035
10036         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
10037         than curl to retrieve images.
10038
10039 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10040
10041         * nnimap.el (nnimap-update-info): Extend the info so that we can set
10042         the marks.
10043         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
10044         (nnimap-wait-for-connection): New function.
10045         (nnimap-open-connection): If we have PREAUTH, don't query for login
10046         credentials.
10047         (nnimap-update-info): Fix off-by-one error when concatenating ranges
10048         when doing a partial update.
10049
10050 2010-09-18  Julien Danjou  <julien@danjou.info>
10051
10052         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
10053         tags.
10054
10055 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10056
10057         * nnimap.el (nnimap-credentials): New function.
10058         (nnimap-open-connection): Use the new function to look for credentials
10059         also on the numeric equivalents of "imap" and "imaps".
10060
10061         * gnus-start.el (gnus-activate-group): Send the info to
10062         gnus-request-group.
10063
10064         * nnimap.el (nnimap-request-group): Have the "check" version of the
10065         function parse flags and update the info, so that a `M-g' get a total
10066         resync of all flags from the group.
10067
10068         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
10069         to allow backends to alter the info on group selection.  Also alter all
10070         the backend -request-group functions to take the parameter.
10071
10072         * nnimap.el (nnimap-store-info): New function.
10073         (nnimap-update-info): Store the info for later usage.
10074         (nnimap-request-group): Use the stored info for the dont-check case, so
10075         that we don't retrieve all marks when we enter a group.
10076
10077         * nnimap.el: Use deffoo instead of defun for interface functions.
10078
10079         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
10080         update the group info.  This makes the nndraft groups, for instance, go
10081         back to their old behavior.
10082
10083         * gnus-sum.el (gnus-select-newsgroup): Indent.
10084
10085         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
10086         in.
10087         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
10088         nothing.
10089
10090         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
10091         from methods that are denied.
10092
10093         * gnus-int.el (gnus-method-denied-p): New function.
10094
10095         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
10096         store the password instead of netrc.
10097         (nnimap-open-connection): Don't error out when we can't make a
10098         connections.
10099
10100         * auth-source.el (auth-source-create): In the password prompt, say what
10101         we're querying for.  Also prompt for user name if that hasn't been
10102         given.
10103
10104         * nnimap.el (nnimap-with-process-buffer): Remove.
10105
10106 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10107
10108         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
10109         method when we're reading from the agent.
10110
10111         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
10112
10113         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
10114         that's probably most useful for users.
10115
10116         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
10117         "failed" all the time.
10118
10119         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
10120         ...)) with (with-current-buffer ... ).
10121
10122         * nntp.el (nntp-open-server): Return whether the open was successful or
10123         not.
10124
10125         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
10126         select an unread unseen article first.
10127
10128         * nnimap.el (nnimap-open-connection): If the user doesn't have a
10129         /etc/services, supply some sensible port defaults.
10130
10131         * dgnushack.el: Define netrc-credentials.
10132
10133 2010-09-17  Julien Danjou  <julien@danjou.info>
10134
10135         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
10136
10137 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
10138
10139         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
10140         doesn't have any parameters.
10141
10142 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10143
10144         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
10145         only upcased checks.
10146
10147         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
10148
10149         * nnimap.el (nnimap-open-shell-stream): New function.
10150         (nnimap-open-connection): Use it.
10151         (nnimap-transform-headers): Get the number of lines in each message.
10152         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
10153         number of lines.
10154         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
10155         problem.
10156
10157         * utf7.el (utf7-encode): Autoload.
10158
10159         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
10160         to allow the mail splitting to not return a default group.  This is
10161         useful for nnimap, which will leave unmatched mail in the inbox.
10162
10163         * nnimap.el: Rewritten.
10164
10165         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
10166         nnimap usage.
10167
10168         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
10169         if the move is internal, so that nnimap can do fast internal moves.
10170
10171         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
10172         data.
10173         (gnus-read-active-for-groups): Support finishing the early retrieval of
10174         data.
10175
10176         * gnus-range.el (gnus-range-nconcat): New function.
10177
10178         * gnus-int.el (gnus-finish-retrieve-group-infos)
10179         (gnus-retrieve-group-data-early): New functions.
10180
10181 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10182
10183         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
10184         (nnrss-retrieve-groups):
10185         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
10186         (pop3-quit): Use with-current-buffer.
10187
10188 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10189
10190         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
10191         instead of nnheader-accept-process-output.
10192
10193         * dgnushack.el (dgnushack-compile): Add comment.
10194
10195         * lpath.el: No need to fbind propertize for XEmacs 21.4.
10196
10197         * gnus-html.el (gnus-html-schedule-image-fetching)
10198         (gnus-html-prefetch-images): Replace process-kill-without-query by
10199         gnus-set-process-query-on-exit-flag.
10200
10201 2010-09-16  Romain Francoise  <romain@orebokech.com>
10202
10203         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
10204
10205 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10206
10207         * gnus-registry.el (gnus-registry-install-shortcuts): The second
10208         parameter to unintern is mandatory-ish in Emacs 24.
10209
10210         * gnus-html.el (gnus-html-schedule-image-fetching)
10211         (gnus-html-prefetch-images): Check for curl before using it.
10212
10213         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
10214         depend on curl, which isn't essential.
10215
10216         * imap.el: Revert back to version
10217         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
10218         seem problematic.
10219
10220 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
10221
10222         * gnus-registry.el (gnus-registry-install-shortcuts):
10223         Explicitly pass `obarray' to `unintern' to avoid a warning.
10224
10225 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10226
10227         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
10228         change.
10229
10230         * nnrss.el (nnrss-request-list): Remove this function and related
10231         functions, including the moreover stuff.
10232
10233 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10234
10235         * nnrss.el (nnrss-retrieve-groups): New function.
10236
10237 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
10238
10239         * .dir-locals.el: Add no-byte-compile cookie.
10240
10241 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10242
10243         * time-date.el (format-seconds): Comment fix.
10244
10245         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
10246         for back end that doesn't support request-scan.
10247
10248 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10249
10250         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
10251         then do request scans from the backends.
10252
10253         * netrc.el (netrc-credentials): New conveniency function.
10254
10255         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
10256         avoid running a hook per line, since this takes a lot of time,
10257         profiling shows.
10258         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
10259         directly if gnus-visual-p is true.
10260
10261 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10262
10263         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
10264         groups; replace mapcar with dolist which is a bit faster; pass groups
10265         info to gnus-read-active-file-1.
10266         (gnus-read-active-file-1): Scan only specified groups if the new
10267         optional arg `infos' is given.
10268
10269 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10270
10271         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
10272
10273         * pop3.el (pop3-movemail): Remove.
10274         (pop3-streaming-movemail): Rename to pop3-movemail.
10275
10276         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
10277         don't restrict end-tag searches to the end of the line.
10278
10279 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10280
10281         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
10282         articles of every unchecked group to t, which means unknown since the
10283         server has never been opened.
10284
10285 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10286
10287         * gnus-html.el (gnus-html-show-alt-text): New command.
10288         (gnus-html-browse-image): Ditto.
10289         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
10290         to browse the image directly.
10291         (gnus-html-wash-tags): Search for images first, so that <a><img> works
10292         better.
10293
10294         * gnus-async.el (gnus-async-article-callback):
10295         Call `gnus-html-prefetch-images' unconditionally.
10296
10297         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
10298         before feeding URLs to curl.
10299
10300 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10301
10302         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
10303         internal images as deletable by `W D D'.
10304
10305         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
10306         (gnus-async-article-callback): Fix typo.
10307
10308 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10309
10310         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
10311         current line to work around bugs in the output from w3m.
10312
10313         * gnus-async.el (gnus-async-article-callback): Always prefetch images
10314         for groups that want that.
10315
10316         * nntp.el (nntp-wait-for-string): Supply a timeout for
10317         accept-process-output to ensure progress.
10318
10319         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
10320         level to get unread articles from, then use that for foreign groups,
10321         too.
10322
10323         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
10324         confuses the rest of the function.
10325
10326         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
10327         for the methods that support -retrieve-groups, too.
10328
10329         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
10330
10331 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10332
10333         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
10334         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
10335
10336         * pop3.el: Require cl when compiling.
10337         (pop3-number-of-responses): Search for "+OK", not "+OK ".
10338
10339 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10340
10341         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
10342         that aren't going to be activated.
10343         (gnus-get-unread-articles): Fix up the last commit.
10344
10345         * gnus-html.el (gnus-article-html): Allow calling without specifying
10346         the handle.  In that case, dissect the buffer first.
10347
10348         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
10349
10350         * nnimap.el (nnimap-open-connection): Revert the change that would look
10351         into authinfo for imaps instead of imap.
10352
10353         * gnus-start.el (gnus-activate-group): Take an optional parameter to
10354         say that you don't want to call gnus-request-group with don-check, but
10355         do check the reponse.  This is for virtual groups only.
10356         (gnus-get-unread-articles): Count the archive groups as secondary, so
10357         that they're activated the same way as before.
10358
10359         * imap.el (imap-message-map): Removed optional buffer parameter, since
10360         no callers use it.
10361         (imap-message-get): Ditto.
10362         (imap-message-put): Ditto.
10363         (imap-mailbox-map): Ditto.
10364         (imap-mailbox-put): Ditto.
10365         (imap-mailbox-get): Ditto.
10366         (imap-mailbox-get): Revert last change for this function.
10367
10368         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
10369         case-insensitively.
10370         (nnimap-debug): Remove.
10371
10372         * net/imap.el (imap-fetch-safe): Remove function, and alter all
10373         callers to use `imap-fetch' instead.  According to the comments, this
10374         should be safe, since all other IMAP clients use the 1:* syntax.
10375         (imap-enable-exchange-bug-workaround): Remove.
10376         (imap-debug): Remove -- doesn't seem very useful.
10377
10378         * mail-source.el (mail-source-fetch): Don't message if we're fetching
10379         mail from a file, and the file doesn't exist.
10380
10381         * imap.el (imap-log): New convenience function used throughout instead
10382         of repeating the same code all over the place.
10383
10384         * pop3.el (pop3-streaming-movemail): Return t for success.
10385
10386         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
10387         .authinfo if we're using ssl connection.
10388
10389         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
10390         already have if we're in a main Gnus `g' run.
10391
10392         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
10393
10394 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10395
10396         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
10397
10398         * nnmh.el (nnmh-request-list-1): Bind `file'.
10399
10400         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
10401         alias to set-process-query-on-exit-flag or process-kill-without-query.
10402         (pop3-open-server): Use it.
10403
10404 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10405
10406         * mail-source.el (mail-source-delete-crash-box): Always move the crash
10407         box to the Incoming file.  Fixes mistake in previous checkin.
10408
10409         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
10410         request loop (for debugging purposes) removed.
10411
10412         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
10413         culprit is more visible.
10414         (nnml-save-incremental-nov, nnml-open-incremental-nov)
10415         (nnml-add-incremental-nov): New functions to do "incremental" nov
10416         updates, where we just append to the end of the existing nov files
10417         without reading/writing them in full.
10418
10419         * mail-source.el (mail-source-delete-crash-box): Really only check the
10420         incoming files once in a while.
10421
10422         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
10423
10424         * mail-source.el (mail-source-delete-crash-box): Only check the
10425         incoming files for deletion once per day to save a lot of file
10426         accesses.
10427
10428         * pop3.el (pop3-logon): Fix up unbound variable typo.
10429
10430         * mail-source.el (pop3-streaming-movemail): Autoload.
10431
10432         * pop3.el (pop3-streaming-movemail):
10433         Respect pop3-leave-mail-on-server.
10434
10435         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
10436         retrieval.
10437
10438         * pop3.el (pop3-process-filter): Remove unused function.
10439         (pop3-streaming-movemail, pop3-send-streaming-command)
10440         (pop3-wait-for-messages, pop3-write-to-file)
10441         (pop3-number-of-responses): New functions for streaming pop3
10442         retrieval.
10443
10444         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
10445         come from no known methods.
10446         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
10447         list.
10448
10449         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
10450         message sizes.
10451         (pop3-movemail): Use erase-buffer instead of looping and deleting
10452         regions, which seems rather odd.
10453
10454         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
10455         file once per `g' run.
10456
10457         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
10458         directories.  This makes the draft queue directory work.
10459
10460         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
10461         data from the backends, so that we only request the list of groups from
10462         each method once.  This should speed things up considerably.
10463
10464         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
10465         detect that it's not implemented.
10466
10467         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
10468         we actually do recurse down into the tree, but don't stat all leaf
10469         nodes.
10470
10471         * gnus-html.el (gnus-html-show-images): If there are no images to show,
10472         then say so instead of bugging out.
10473
10474         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
10475         files exist before trying to read them.
10476
10477         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
10478         around <pre_int>.
10479
10480         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
10481
10482         * nnmh.el (nnmh-request-list-1): Optimize for speed.
10483
10484 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10485
10486         * mm-util.el (mm-image-load-path): Just return the image directories,
10487         not all directories in the path in addition to the image directories.
10488         (mm-image-load-path): Maintain a cache of the image directories so that
10489         the `g' command in Gnus doesn't have to stat dozens of directories each
10490         time.
10491
10492         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
10493         (gnus-html-wash-tags): Add a new `i' command to insert images.
10494         (gnus-html-insert-image): New command and keystroke.
10495         (gnus-html-redisplay-with-images): New command and keystroke.
10496         (gnus-html-show-images): Rename command.
10497         (gnus-html-wash-tags): Remove more white space before <pre_int> image
10498         spacers.
10499         (gnus-html-wash-tags): Decode entities at the end, so that entities
10500         inside the tags don't mess up the rest of the "parsing".
10501
10502         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
10503         so that nnimap methods aren't agentized by default.  There's apparently
10504         many problems related to agent/imap behavior.
10505
10506         * gnus-art.el (gnus-article-copy-string): New command and key binding.
10507
10508         * gnus-html.el: Doc fix.
10509
10510 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
10511
10512         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
10513         specifier-spec-list for Emacs 21.
10514
10515         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
10516         glyph-width and glyph-height instead of display-graphic-p and
10517         image-size; make avoidance of displaying small images work for XEmacs.
10518
10519         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
10520         for XEmacs.
10521
10522         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
10523         of symbol that holds plist data.
10524         (gnus-process-plist): Remove plist of process after getting it.
10525
10526 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10527
10528         * message.el (message-generate-hashcash): Change default to
10529         'opportunistic if hashcash is installed.
10530
10531         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
10532         (gnus-html-put-image): Only call image-size once, since it's somewhat
10533         time-consuming on remote X servers.
10534
10535 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10536
10537         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
10538         type on data, not a file name.
10539
10540         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
10541         window-pixel-edges for Emacs 21.
10542
10543         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
10544         decoded contents.
10545         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
10546
10547 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10548
10549         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
10550         group line format, since it isn't very interesting.
10551
10552         * gnus-agent.el (gnus-agent-short-article),
10553         (gnus-agent-long-article): Increase values for these two variables,
10554         since most people are likely to have more network connection and
10555         storage than before.
10556
10557         * gnus.el (gnus-refer-article-method): Change default to 'current.
10558         When referring an article, the common behavior is to refer it from the
10559         current select method, not the native select method.  The chances of
10560         the native select method having the message in question is rather slim
10561         these days.
10562
10563         * gnus-sum.el (gnus-auto-select-subject): Change default to
10564         `unseen-or-unread'.  I think it's likely that most people want to
10565         select an unseen article over a previously seen, but unread one.
10566
10567         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
10568         means that in the article buffer none of the minor mode elements will
10569         be shown, usually, and this is not desirable in most cases.
10570
10571         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
10572         that commands like `d' (and the like) go to the next line in the
10573         buffer, instead of the next unread article.  I think this is the
10574         behavior that is most natural for most users.
10575         (gnus-single-article-buffer): Change default to nil, so that people can
10576         have as many article buffers open as they have summary buffer.  I think
10577         this is the most natural way for the groups to behave.
10578
10579         * message.el (message-generate-new-buffers): Change default to
10580         `unsent', so that all new message buffers start their names with the
10581         string "*unsent", and it's easier to find the buffers if you move from
10582         them.
10583
10584 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10585
10586         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
10587         small.  They're probably tracking images.
10588         (gnus-html-wash-tags): Remove all <pre_int> place holders.
10589         (gnus-html-rescale-image): Yet another try at getting the image sizing
10590         right.
10591
10592         * nntp.el (nntp-request-set-mark): Refuse to do marks if
10593         nntp-marks-file-name is nil.
10594
10595 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10596
10597         * gnus-html.el (gnus-html-wash-tags)
10598         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
10599         Better logging.
10600
10601 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10602
10603         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
10604
10605         * gnus-html.el (gnus-html-wash-tags): Check the value of
10606         gnus-blocked-images in the summary buffer.
10607
10608 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10609
10610         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
10611
10612 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10613
10614         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
10615         like "a", it seems like.
10616         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
10617         since it needs to be picked from the correct buffer.
10618
10619         * nnwfm.el: Remove.
10620
10621         * nnlistserv.el: Remove.
10622
10623 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10624
10625         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
10626         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
10627
10628 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10629
10630         * nnkiboze.el: Remove.
10631
10632         * nndb.el: Remove.
10633
10634         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
10635         alt text.
10636         (gnus-html-rescale-image): Try to get the rescaling logic right for
10637         images that are just wide and not tall.
10638
10639         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
10640         overshadow variable bindings.
10641
10642 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10643
10644         * gnus-html.el (gnus-html-wash-tags)
10645         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
10646         Add extra logging.
10647
10648 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10649
10650         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
10651         (gnus-max-image-proportion): New variable.
10652         (gnus-html-rescale-image): New function.
10653         (gnus-html-put-image): Rescale images.
10654
10655 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10656
10657         Fix up some byte-compiler warnings.
10658         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
10659         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
10660         (gnus-article-fill-cited-article, gnus-article-hide-citation)
10661         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
10662         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
10663         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
10664         (gnus-group-update-group): Use save-excursion and with-current-buffer.
10665
10666 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10667
10668         * gnus-html.el (gnus-article-html): Decode contents by charset.
10669
10670 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10671
10672         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
10673         (gnus-html-frame-width, gnus-blocked-images):
10674         * message.el (message-prune-recipient-rules): Add custom version.
10675         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
10676
10677         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
10678         functions.
10679
10680         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
10681         gnus-process-get.
10682
10683 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
10684
10685         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
10686         instead of lsub directly.
10687
10688 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10689
10690         * nnwarchive.el: Remove.
10691
10692         * gnus-soup.el: Remove.
10693
10694         * nnsoup.el: Remove.
10695
10696         * nnultimate.el: Remove.
10697
10698         * gnus-html.el (gnus-blocked-images): New variable.
10699
10700         * message.el (message-prune-recipients): New function.
10701         (message-prune-recipient-rules): New variable.
10702
10703         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
10704         guess whether a long line is natural text or not.
10705
10706         * gnus-html.el (gnus-html-schedule-image-fetching):
10707         Use gnus-process-plist and friends for compatibility.
10708
10709 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
10710
10711         * gnus-html.el: Require packages that define macros used in this file.
10712         (gnus-article-mouse-face): Declare to silence byte-compiler.
10713         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
10714         process-get.
10715         (gnus-html-put-image): Use plist-get to avoid getf.
10716         (gnus-html-prefetch-images): Use with-current-buffer.
10717
10718 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10719
10720         * gnus-ems.el: Provide compatibility functions for
10721         gnus-set-process-plist.
10722
10723         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
10724         header-line-format for XEmacs 21.4.
10725
10726         * gnus-sum.el (gnus-summary-stop-at-end-of-message):
10727         * gnus.el (gnus-valid-select-methods):
10728         * message.el (message-send-mail-partially-limit):
10729         * mm-decode.el (mm-text-html-renderer):
10730         * mml.el (mml-insert-mime-headers-always):
10731         * smiley.el (smiley-regexp-alist): Bump custom version.
10732
10733 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10734
10735         * gnus-html.el: require mm-url.
10736         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
10737         with the url to `url'.
10738         (gnus-html-wash-tags): Support cid: URLs/images.
10739
10740 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10741
10742         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
10743         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
10744         bindings, as they aren't useful at all.  `w' is moved to `W w'.
10745
10746         * gnus-move.el: Remove file, since it doesn't really work.
10747
10748         * gnus-html.el (gnus-article-html): Tell w3m that the input is
10749         UTF-8.  This seems to fix problems with some German web feeds.
10750
10751         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
10752         at the top so that the proper colors are applied.
10753
10754         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
10755         don't have dots in their names.
10756
10757         * gnus-art.el (gnus-article-view-part): Doc fix.
10758
10759         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
10760         XEmacs-compatible.
10761         (gnus-html-put-image): Don't do images on non-graphic displays.
10762
10763         * nnslashdot.el: Remove this unused backend.
10764
10765         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
10766         actions.
10767         (gnus-undo-register-1): Revert last change.
10768
10769         * gnus-group.el (gnus-group-completing-read): Protect against not
10770         having completion-styles bound.
10771
10772         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
10773         make broken recipients happier.
10774
10775         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
10776
10777         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
10778         point parameter.
10779
10780         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
10781
10782         * gnus-group.el (gnus-group-completing-read): Add 'substring to
10783         completion-styles for group selection.
10784
10785 2009-02-04  Andreas Schwab  <schwab@suse.de>
10786
10787         * gnus-score.el (gnus-score-string): Fix regex for matching extra
10788         headers and regexp-quote the match if necessary.
10789
10790 2009-03-24  Miles Bader  <miles@gnu.org>
10791
10792         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
10793         the blinking smiley.
10794
10795 2009-03-24  Simon Josefsson  <simon@josefsson.org>
10796
10797         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
10798         blink smiley.
10799
10800 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10801
10802         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
10803         where the dribbel file lives exists.
10804
10805         * message.el (message-send-mail-partially-limit): Change the default to
10806         nil, since most people don't want this.
10807
10808         * mm-url.el (mm-url-decode-entities): Also decode entities like
10809         &#x3212.
10810
10811 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
10812
10813         * gnus-sum.el (gnus-summary-idna-message):
10814         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
10815         Hyperlink urls in docstrings with URL `...'.
10816
10817 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
10818
10819         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
10820         functions.
10821
10822 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10823
10824         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
10825         say what the mouseover text should be.
10826
10827         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
10828         version of the mm-w3m-safe-url-regexp variable to only download images
10829         in the groups where we want that to happen.
10830
10831         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
10832
10833         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
10834         easier debugging.
10835         (gnus-article-beginning-of-window): Add kludge to allow spacing past
10836         big pictures in the article buffer.
10837
10838         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
10839         gnus-article-html.
10840         (mm-text-html-renderer): gnus-article-html needs curl in addition to
10841         w3m.
10842
10843         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
10844
10845 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10846
10847         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
10848         which doesn't exist.
10849
10850         * message.el (message-inhibit-ecomplete): New variable to allow some
10851         function to inhibit ecomplete address storage.
10852         (message-resend): Disable ecomplete message storage when resending
10853         messages.
10854
10855         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
10856
10857 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10858
10859         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
10860         Save excursion while copying, moving, and deleting articles in order to
10861         prevent the cursor from jumping to unforeseen place.
10862
10863 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10864
10865         * lpath.el: No need to bind bookmark-current-buffer,
10866         bookmark-yank-point and bookmark-make-record-function.
10867
10868 2010-08-17  Glenn Morris  <rgm@gnu.org>
10869
10870         * gnus-sync.el: Require gnus components whose functions are used.
10871
10872         * gnus-art.el (bookmark-make-record-function):
10873         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
10874         Declare for compiler.
10875
10876         * mm-url.el (mml-compute-boundary): Autoload.
10877
10878 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10879
10880         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
10881
10882 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
10883
10884         Typo fix "hoo4a" -> "hook".
10885
10886         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
10887
10888 2010-08-14  Glenn Morris  <rgm@gnu.org>
10889
10890         * gnus-sync.el (gnus-sync): Fix defgroup version.
10891
10892 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
10893
10894         Doc fixes and keep unknown groups (ammended for nunion bug fix).
10895
10896         * gnus-sync.el: Fix docs.
10897         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
10898         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
10899
10900 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
10901
10902         Optimizations for gnus-sync.el.
10903
10904         * gnus-sync.el: Add docs about gnus-sync-backend
10905         possibilities.
10906         (gnus-sync-save): Remove unnecessary message.
10907         (gnus-sync-read): Optimize and show what groups were skipped.
10908
10909 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
10910
10911         Minor bug fixes for gnus-sync.el.
10912
10913         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
10914         Don't read the sync on get-new-news.
10915
10916         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
10917         quiet.
10918
10919         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
10920         (fix typo).
10921
10922 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
10923
10924         Make saving and restoring of hidden threads work with overlays.
10925         Patch applied by Ted Zlatanov.
10926
10927         * gnus-sum.el (gnus-hidden-threads-configuration)
10928         (gnus-restore-hidden-threads-configuration): Update to deal with text
10929         properties, rather than searching for a magic character.
10930
10931 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
10932
10933         New gnus-sync.el library for synchronization of marks.
10934
10935         * gnus-sync.el: New library for synchronization of marks.
10936
10937         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
10938         renamed from `gnus-registry-grep-in-list'.
10939
10940         * gnus-registry.el (gnus-registry-follow-group-p):
10941         Use `gnus-grep-in-list'.
10942
10943         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
10944
10945 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10946
10947         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
10948         determining charset of text fails.
10949
10950 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10951
10952         * nnmail.el (nnmail-get-new-mail-1): Revert.
10953
10954         * nnml.el (nnml-active-number): Make sure names of newly created groups
10955         in nnml-group-alist are encoded.
10956
10957 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10958
10959         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
10960         containing non-ASCII characters in active file for nnml back end.
10961
10962 2010-07-24  David Engster  <dengste@eml.cc>
10963
10964         * mml-smime.el (mml-smime-epg-verify): Also accept the older
10965         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
10966
10967 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
10968
10969         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
10970         tag (Bug#6654).
10971
10972 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10973
10974         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
10975         the article buffer, not the summary buffer.
10976
10977 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10978
10979         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
10980         Emacs 23 as well.
10981
10982 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10983
10984         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
10985         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
10986
10987 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10988
10989         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
10990         Patch applied by Karl Fogel.
10991
10992         * gnus-sum.el (gnus-summary-bookmark-make-record):
10993         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
10994
10995 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10996
10997         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
10998         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
10999         C-w still not working correctly from Article buffers; Thierry's
11000         patch to fix that will be applied after this.
11001
11002         * gnus-art.el (bookmark-make-record-function): New local variable.
11003
11004         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
11005         article buffer.
11006         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
11007
11008 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
11009
11010         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
11011         on changes in bookmark.el.
11012
11013 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11014
11015         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
11016         `no-log' instead of message not to log prompt string.
11017
11018 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
11019
11020         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
11021         the *other* type of HTML form submission.
11022
11023 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
11024
11025         * auth-source.el (auth-source-pick): If choice does not contain a
11026         questioned keyword, set the check to t.
11027
11028 2010-06-12  Romain Francoise  <romain@orebokech.com>
11029
11030         * gnus-util.el (gnus-date-get-time): Move up before first use.
11031
11032 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11033
11034         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
11035         (gnus-article-edit-part): Bind it to make last part that is substituted
11036         or deleted visible.
11037         (gnus-mime-display-single): Buttonize part of which id equals to
11038         gnus-mime-buttonized-part-id.
11039
11040 2010-06-10  Dan Christensen  <jdc@uwo.ca>
11041
11042         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
11043         (gnus-dd-mmm): Use gnus-date-get-time.
11044         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
11045         simplify logic.
11046         (gnus-summary-limit-to-age): Use gnus-date-get-time.
11047         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
11048
11049 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
11050
11051         * auth-source.el (top): Autoload `secrets-list-collections',
11052         `secrets-create-item', `secrets-delete-item'.
11053         (auth-sources): Fix tag string.
11054         (auth-get-source, auth-source-retrieve, auth-source-create)
11055         (auth-source-delete): New defuns.
11056         (auth-source-pick): Rewrite in order to avoid 2 passes.
11057         (auth-source-forget-user-or-password): New parameter USERNAME.
11058         (auth-source-user-or-password): New parameters CREATE-MISSING and
11059         DELETE-EXISTING.  Retrieve password interactively, if needed.
11060
11061 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
11062
11063         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
11064         deleting unused directories when gnus-expert-user is t.
11065
11066 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11067
11068         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
11069         for each temp file when gnus-article-browse-delete-temp is ask.
11070
11071 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11072
11073         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el:
11074         Replace Lisp calls to delete-backward-char by calls to delete-char.
11075
11076 2010-05-20  Kevin Ryde  <user42@zip.com.au>
11077
11078         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
11079
11080 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
11081
11082         * password-cache.el (password-cache-remove): Fix docstring.
11083
11084 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11085
11086         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
11087         article unless decoding article to be saved.
11088
11089 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11090
11091         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt):
11092         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
11093         generated within the mm-with-unibyte-current-buffer macro.
11094
11095 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11096
11097         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
11098         to nil when we're in a mml-preview buffer and no group is selected.
11099
11100 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
11101
11102         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
11103         when catching the `C-g'.  Reported by "Leo".
11104
11105 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11106
11107         * message.el (message-forward-make-body-plain)
11108         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
11109         multibyte-string-p.
11110
11111         * lpath.el: Revert.
11112
11113 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11114
11115         * message.el (message-forward-make-body-mml): Assume original message
11116         is multibyte string; error on unibyte.
11117         (message-forward-make-body-plain): Ditto; don't add excessive newline
11118         in body end.
11119
11120         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
11121
11122 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
11123
11124         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
11125         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
11126
11127 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11128
11129         * mm-extern.el (mm-extern-url): Don't use
11130         mm-with-unibyte-current-buffer.
11131         (mm-extern-cache-contents): Use with-current-buffer instead of
11132         save-excursion + set-buffer.
11133
11134 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11135
11136         * mm-util.el (mm-emacs-mule): Remove.
11137
11138 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
11139
11140         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
11141         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
11142         change.
11143
11144 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11145
11146         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
11147         bind the default value of enable-multibyte-characters to nil.
11148
11149 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11150
11151         * message.el (message-forward-make-body-plain)
11152         (message-forward-make-body-mml):
11153         Don't use mm-with-unibyte-current-buffer.
11154
11155 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11156
11157         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
11158
11159 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
11160
11161         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
11162         (Bug#5592).
11163
11164 2010-05-07  Julien Danjou  <julien@danjou.info>
11165
11166         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
11167         it to mm-pipe-part.
11168
11169         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
11170         it is given.
11171
11172 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11173
11174         * binhex.el (binhex-decode-region-internal):
11175         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type):
11176         (dns-query):
11177         * nnweb.el (nnweb-gmane-search):
11178         * pgg-parse.el (pgg-parse-armor):
11179         * pgg.el (pgg-verify-region):
11180         * sha1.el (sha1-string-external):
11181         * uudecode.el (uudecode-decode-region-internal):
11182         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
11183         XEmacs.
11184
11185         * gnus-art.el (gnus-article-browse-html-parts):
11186         * gnus-group.el (gnus-read-ephemeral-gmane-group):
11187         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
11188         make-temp-file.
11189
11190         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
11191         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
11192         compiling.
11193
11194         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
11195         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
11196         XEmacs when compiling.
11197
11198         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
11199         gnus-pick-mode-off-hook for XEmacs when compiling.
11200         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
11201         gnus-binary-mode-off-hook for XEmacs when compiling.
11202
11203         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
11204         Return nil if char-charset is not available.
11205
11206         * imap.el (imap-disable-multibyte)
11207         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
11208         macros.
11209
11210         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
11211         instead of encode-coding-string.
11212
11213         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
11214         'xemacs) instead of mm-emacs-mule to switch function definitions.
11215         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
11216
11217         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
11218         bind temporary-file-directory for XEmacs;
11219         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
11220         timer-set-function for XEmacs 21.4 and SXEmacs;
11221         bind timer-list for XEmacs 21.4 and SXEmacs;
11222         fbind char-charset and find-charset-region for non-Mule XEmacs;
11223         fbind decode-coding-region, decode-coding-string, detect-coding-region,
11224         encode-coding-region and encode-coding-string for XEmacs having no
11225         file-coding feature.
11226
11227 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
11228
11229         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
11230
11231 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11232
11233         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
11234         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
11235
11236 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
11237
11238         * mm-util.el (mm-decompress-buffer): Use `delete-file';
11239         alias `jka-compr-delete-temp-file' no longer exists.
11240
11241 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11242
11243         Use define-minor-mode in Gnus where applicable.
11244         * mml.el (mml-mode): Use define-minor-mode.
11245         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
11246         (gnus-undo-mode): Use define-minor-mode.
11247         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
11248         (gnus-dead-summary-mode): Use define-minor-mode.
11249         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
11250         Initialize in declaration.
11251         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
11252         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
11253         (gnus-mailing-list-mode): Use define-minor-mode.
11254         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
11255         (gnus-draft-mode): Use define-minor-mode.
11256         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
11257         (gnus-dired-mode): Use define-minor-mode.
11258
11259 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
11260
11261         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
11262         handles on recursive mml-to-mime translation and check them for
11263         boundary delimiter collisions.  Reported by Greg Troxel.
11264
11265 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11266
11267         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
11268
11269 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11270
11271         * mm-util.el (mm-find-buffer-file-coding-system):
11272         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
11273
11274 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
11275
11276         * message.el (message-generate-headers): Record insertion of optional
11277         headers as well.  Otherwise the check to prevent repeated insertion of
11278         optional headers is a no-op.
11279
11280 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
11281
11282         * smime.el: Don't mention CVS.
11283
11284         * nnrss.el (nnrss-fetch): Don't mention CVS.
11285
11286         * nnir.el: Don't mention CVS.
11287
11288 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11289
11290         * gnus-sum.el (gnus-summary-bookmark-make-record):
11291         Add `location' field.
11292
11293 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11294
11295         * lpath.el: Fbind bookmark-default-handler,
11296         bookmark-get-bookmark-record, bookmark-make-record-default,
11297         bookmark-prop-get for Emacs <23 and XEmacs.
11298
11299 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
11300
11301         * gnus-sum.el: Add bookmark declarations to silence the compiler.
11302         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
11303         Use with-current-buffer to silence the byte-compiler.
11304         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
11305         bother to require `gnus'.
11306         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
11307
11308 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11309
11310         * gnus-sum.el (gnus-summary-bookmark-make-record)
11311         (gnus-summary-bookmark-jump): New functions.
11312         (gnus-summary-mode): Setup bookmark support.
11313
11314 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
11315
11316         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
11317         if set.
11318
11319 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
11320
11321         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
11322         gnus-article-browse-html-save-cid-image; make it work recursively for
11323         forwarded messages as well.
11324         (gnus-article-browse-html-parts): Work when prefix arg is given.
11325         (gnus-article-browse-html-article): Doc fix.
11326
11327 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
11328
11329         * message.el (message-default-mail-headers):
11330         (message-default-headers): Carry the value mail-default-headers over
11331         into message-default-mail-headers, rather than message-default-headers.
11332
11333 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
11334
11335         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
11336         charset.
11337
11338         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
11339         charset into the <meta> tag when the article is encoded to utf-8.
11340
11341 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11342
11343         * gnus-art.el (gnus-article-browse-delete-temp-files):
11344         Delete directories as well.
11345         (gnus-article-browse-html-parts): Work for images that do not specify
11346         file names; delete temp directory when quitting; insert header at the
11347         right place; use file: scheme for image files.
11348
11349 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
11350
11351         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
11352         (gnus-article-browse-html-parts): Use it to make temporary cid image
11353         files in addition to html file so that browser may display them.
11354
11355 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11356
11357         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
11358
11359 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
11360
11361         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
11362
11363 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
11364
11365         * auth-source.el (auth-sources): Change default to be simpler.
11366         Explain about Secret Service API sources.  Improve Customize options.
11367         (auth-source-pick): Change to accept any number of search parameters.
11368         Implement fallbacks iteratively, not recursively.  Add scoring on the
11369         second pass and sort by score.  Call Secret Service API when needed.
11370         (auth-source-user-or-password): Use it.  Call Secret Service API
11371         directly when needed to get the user name and the password.
11372
11373 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
11374
11375         * message.el (message-interactive): Doc fix.
11376         (message-qmail-inject-args): Reflow.
11377         (message-kill-to-signature): Fix typo in docstring.
11378
11379         * smiley.el (smiley-buffer): Fix typo in docstring.
11380
11381 2010-03-24  Glenn Morris  <rgm@gnu.org>
11382
11383         * mail-source.el (gnus-message): Declare.
11384         (mail-source-delete-old-incoming): Require gnus-util.
11385
11386 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
11387
11388         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
11389
11390         * message.el (ecomplete-setup): Autoload it for Emacs <23.
11391
11392         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
11393         password-cache's default if it is not bound.
11394         (mml-secure-passphrase-cache-expiry): Default to 16 that is
11395         password-cache-expiry's default if it is not bound.
11396
11397         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
11398         available in Emacs 21.
11399
11400         * lpath.el: Suppress compiler warnings for:
11401         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
11402         XEmacs;
11403         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
11404         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
11405         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
11406
11407 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
11408
11409         * auth-source.el (auth-sources): Fix up definition so extra parameters
11410         are always inline.
11411
11412 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
11413
11414         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
11415         wasn't updated after mismatch.  Clear cached mailbox info correctly
11416         when uidvalidity changes.
11417         (nnimap-group-prefixed-name): New function to avoid some code
11418         duplication.
11419         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
11420         (nnimap-request-group): Use it.
11421         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
11422         (nnimap-update-unseen): Significantly improved speed of Gnus startup
11423         with many imap folders.  This is done by caching the group status from
11424         the imap server persistently in a group parameter `imap-status'.  (This
11425         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
11426         but not persistently, so every Gnus startup was still very slow.)
11427
11428 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
11429
11430         * assistant.el (assistant-render-text): Run `widget-setup' and don't
11431         delete the extra newline.  Otherwise editing of :string and :number
11432         types don't work.
11433
11434 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
11435
11436         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
11437         secrets.el dependency.
11438         (auth-sources): Add optional user name.  Add secrets.el configuration
11439         choice (unused right now).
11440
11441 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
11442
11443         * gnus-sum.el (gnus-summary-make-menu-bar):
11444         Let `gnus-registry-install-shortcuts' fill in the functions.
11445
11446         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
11447         warnings.
11448         (gnus-registry-misc-menus): Variable to hold registry mark menus.
11449         (gnus-registry-install-shortcuts): Populate and use it in a
11450         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
11451
11452 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
11453
11454         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
11455         In-place substitutions for the group name encoding/decoding.
11456         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
11457         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
11458         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
11459         (nnimap-update-unseen, nnimap-request-list)
11460         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
11461         (nnimap-request-set-mark, nnimap-split-to-groups)
11462         (nnimap-split-articles, nnimap-request-newgroups)
11463         (nnimap-request-create-group, nnimap-request-accept-article)
11464         (nnimap-request-delete-group, nnimap-request-rename-group)
11465         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
11466         `encoded-mbx' for consistency.
11467         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
11468         variable `imap-current-mailbox'.
11469
11470         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
11471         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
11472
11473 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
11474
11475         * pop3.el (pop3-display-message-size-flag): Display message size byte
11476         counts during POP3 download.
11477         (pop3-movemail): Use it.
11478         (pop3-list): Implement listing of available messages.
11479
11480 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
11481
11482         * nnir.el (nnir-get-article-nov-override-function): New function to
11483         override the normal NOV retrieval.
11484         (nnir-retrieve-headers): Use it.
11485
11486 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
11487
11488         * auth-source.el (netrc-machine-user-or-password): Autoload.
11489
11490 2010-03-19  Glenn Morris  <rgm@gnu.org>
11491
11492         Stop message.el from loading about 40 libraries it doesn't always need.
11493         The general approach is to autoload rather than require, and to
11494         require in the specific functions rather than the file.  (Bug#5642)
11495
11496         * gmm-utils.el: Don't require wid-edit.
11497         (widget-create-child-value, widget-convert, widget-default-get):
11498         Autoload.
11499
11500         * gnus-util.el: Don't require time-date, netrc.
11501         (message-fetch-field, gnus-group-name-decode): Declare rather than
11502         autoloading.
11503         (gnus-fetch-field): Require message.
11504         (gnus-decode-newsgroups): Require gnus-group.
11505
11506         * ietf-drums.el: Don't require time-date.
11507
11508         * message.el: Don't require hashcash, canlock, ecomplete.
11509         Do require mail-utils.  Require nnheader only when compiling.
11510         (smtpmail-default-smtp-server): Remove declaration.
11511         (message-send-mail-function): Check smtpmail-default-smtp-server
11512         is bound rather than requiring smtpmail.
11513         (message-auto-save-directory, message-insert-signature):
11514         Use expand-file-name rather than nnheader-concat.
11515         (nnheader-insert-file-contents): Autoload.
11516         (hashcash-wait-async): Declare.
11517         (message-send-mail): Only call gnus-setup-posting-charset if
11518         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
11519         (message-send-mail-with-sendmail): Require sendmail.
11520         (canlock-password, canlock-password-for-verify): Declare.
11521         (message-canlock-password): Require canlock.
11522         (nnheader-get-report): Autoload.
11523         (gnus-setup-posting-charset): Declare.
11524         (message-send-news): Require gnus-msg.
11525         (message-make-references, message-make-in-reply-to): Use mail-header-id
11526         rather than the alias mail-header-message-id.
11527         (ecomplete-add-item, ecomplete-save): Declare.
11528         (message-put-addresses-in-ecomplete): Require ecomplete.
11529         (ecomplete-display-matches): Autoload.
11530
11531         * mm-decode.el: Don't require mailcap, gnus-util.
11532         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
11533         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
11534         Autoload.
11535         (mailcap-mime-extensions): Declare.
11536
11537         * mm-encode.el: Don't require mailcap.
11538         (mailcap-extension-to-mime): Autoload.
11539
11540         * mml-sec.el: Don't require password-cache.
11541
11542         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
11543         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
11544         (mml-minibuffer-read-type): Require mailcap.
11545         (mml-preview): Require gnus-msg.
11546
11547         * mml1991.el: Require password-cache.
11548         (password-cache-expiry): Remove declaration.
11549
11550         * mml2015.el: Require password-cache.
11551         (password-cache-expiry): Remove declaration.
11552
11553         * nneething.el (mailcap): Require mailcap.
11554
11555         * nnheader.el (declare-function): Add compatibility stub.
11556         (message-remove-header): Declare rather than autoload.
11557         (nnheader-replace-header): Require message.
11558
11559         * nnimap.el (declare-function): Add compatibility stub.
11560         (netrc-parse, netrc-machine-user-or-password): Declare.
11561         (nnimap-open-connection): Require netrc.
11562
11563         * nntp.el (declare-function): Add compatibility stub.
11564         (netrc-parse, netrc-machine, netrc-get): Declare.
11565         (nntp-send-authinfo): Require netrc.
11566
11567         * rfc2047.el: Don't require qp.
11568         (quoted-printable-encode-region, quoted-printable-decode-string):
11569         Autoload.
11570
11571         * sieve-mode.el: Don't require easymenu.
11572         (easy-menu-add-item): Autoload it.
11573
11574         * spam-stat.el (time-to-number-of-days): Autoload it.
11575
11576 2010-03-19  Glenn Morris  <rgm@gnu.org>
11577
11578         * password-cache.el (password-cache, password-cache-expiry): Autoload.
11579
11580 2010-03-18  Glenn Morris  <rgm@gnu.org>
11581
11582         * hashcash.el (declare-function): Remove duplicate definition.
11583
11584 2010-03-17  Kevin Ryde  <user42@zip.com.au>
11585
11586         * mml.el (mml-read-tag): Unquote values with `read' to reverse
11587         prin1 in mml-insert-tag (just stripping the quotes gave wrong
11588         value if any backslash escapes).
11589
11590 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11591
11592         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
11593         if it is available.  (bug#5647)
11594
11595         * lpath.el: Suppress compiler warning for coding-system-from-name for
11596         Emacs 21 and XEmacs.
11597
11598 2010-03-14  Juri Linkov  <juri@jurta.org>
11599
11600         * hmac-def.el:
11601         * hmac-md5.el:
11602         * netrc.el: Fix keywords.
11603
11604 2010-02-26  Glenn Morris  <rgm@gnu.org>
11605
11606         * message.el (message-send-mail-function): Change the default, so that
11607         it inherits from a customized send-mail-function.  (Bug#5643)
11608
11609 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
11610
11611         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
11612         shell-command-to-string signals an error (bug#5299).
11613
11614 2010-02-24  Glenn Morris  <rgm@gnu.org>
11615
11616         * message.el (message-smtpmail-send-it)
11617         (message-send-mail-with-mailclient): Doc fixes.
11618
11619 2010-02-16  Glenn Morris  <rgm@gnu.org>
11620
11621         * message.el (message-default-mail-headers): Change the default value
11622         to ease the transition from mail-mode to message-mode.  (Bug#5555)
11623
11624 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11625
11626         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
11627         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
11628
11629 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
11630
11631         * time-date.el (date-to-time): Doc fix (Bug#5408).
11632
11633 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
11634
11635         * message.el (message-mail): Just pass yank-action on to message-setup.
11636         (message-setup): Handle (FUN . ARGS) form of yank-action.
11637         (message-with-reply-buffer, message-widen-reply)
11638         (message-yank-original): Handle non-buffer values of
11639         message-reply-buffer (Bug#4080).
11640         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
11641
11642 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
11643
11644         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
11645         Fix typo in docstring.
11646
11647 2010-01-08  Jason Rumney  <jasonr@gnu.org>
11648
11649         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
11650         response.
11651
11652 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11653
11654         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
11655
11656         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
11657
11658         * message.el (message-check-news-header-syntax): Protect against a
11659         string that `rfc822-addresses' returns when parsing fails.
11660
11661 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11662
11663         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
11664         (gnus-previous-char-property-change): New functions.
11665
11666         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
11667
11668 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
11669
11670         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
11671         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
11672
11673 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
11674
11675         * message.el (message-exchange-point-and-mark): Rework last change to
11676         avoid using optional arg of exchange-point-and-mark, for backward
11677         compatibility.
11678
11679 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
11680
11681         * message.el (message-exchange-point-and-mark):
11682         Call exchange-point-and-mark with an argument rather than setting
11683         mark-active by hand (Bug#5175).
11684
11685 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11686
11687         * nntp.el (nntp-service-to-port): Work for service expressed with
11688         numeric string; replace [:digit:] with [0-9] for XEmacs.
11689
11690 2009-12-17  Glenn Morris  <rgm@gnu.org>
11691
11692         * gnus-group.el (gnus-bug-group-download-format-alist):
11693         Change emacs entry to debbugs.gnu.org.  Bump :version.
11694
11695 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
11696
11697         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
11698
11699 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
11700
11701         * message.el (message-info): Explain why we use `Info-goto-node'.
11702
11703 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11704
11705         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
11706
11707 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
11708
11709         * message.el (message-completion-in-region): New compatibility function.
11710         (message-expand-group): Use it.
11711
11712 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11713
11714         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
11715         with no unread article should be listed if the 2nd arg `predicate' is
11716         given.
11717
11718 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11719
11720         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
11721
11722 2009-11-29  Juri Linkov  <juri@jurta.org>
11723
11724         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
11725         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
11726         on `gnus-recenter'.  (Bug#4698, Bug#4981)
11727
11728 2009-11-26  Kevin Ryde  <user42@zip.com.au>
11729
11730         * sha1.el (sha1-string-external): default-directory "/" in case
11731         otherwise non-existent.  process-connection-type pipe for touch of
11732         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
11733
11734 2009-11-25  Kevin Ryde  <user42@zip.com.au>
11735
11736         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
11737         it's comms related and sgml-mode.el has "comm" on that basis too.
11738
11739 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11740
11741         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
11742         containing tspecial characters if they have been already quoted.
11743
11744 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
11745
11746         * dns-mode.el (auto-mode-alist): Purecopy string.
11747
11748 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11749
11750         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
11751
11752 2009-10-24  Glenn Morris  <rgm@gnu.org>
11753
11754         * gnus-art.el (help-xref-stack-item): Define for compiler.
11755
11756 2009-10-21  Kevin Ryde  <user42@zip.com.au>
11757
11758         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
11759
11760 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11761
11762         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
11763
11764 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11765
11766         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
11767         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
11768
11769 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11770
11771         * gnus.el (gnus-overlay-get): New alias to overlay-get.
11772         (gnus-overlays-in): New alias to overlays-in.
11773
11774         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
11775         gnus-overlay-get, and gnus-delete-overlay.
11776         (gnus-summary-show-thread): Make it work as well for systems in which
11777         next-single-char-property-change is not available.
11778         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
11779
11780         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
11781         (gnus-overlay-get): New alias to extent-property.
11782         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
11783
11784         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
11785         SXEmacs.
11786
11787         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
11788         SXEmacs.
11789
11790 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
11791
11792         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
11793
11794 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
11795
11796         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
11797         and XEmacs that don't have `remove-overlays'.
11798
11799 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11800
11801         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
11802         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
11803         selective display.  Use overlays instead.
11804
11805 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
11806
11807         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
11808
11809 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
11810
11811         * spam-stat.el (spam-stat-load): Fix typo in message.
11812
11813 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
11814
11815         * dig.el (dig-invoke): Fix typo in docstring.
11816         (query-dig): Reflow docstring.
11817
11818 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
11819
11820         * gnus-art.el (gnus-article-encrypt-body):
11821         * message.el (message-check-recipients):
11822         * mm-util.el (mm-codepage-setup):
11823         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
11824         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
11825
11826 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
11827
11828         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
11829         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
11830         keys from the menu if mm-{sign,encrypt}-option is 'guided.
11831         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
11832         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
11833
11834 2009-09-21  Kevin Ryde  <user42@zip.com.au>
11835
11836         * dig.el: Add "Keywords: comm", as per net-utils.el.
11837
11838 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11839
11840         * dig.el (dig-mode): Use define-derived-mode.
11841
11842 2009-09-19  Glenn Morris  <rgm@gnu.org>
11843
11844         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
11845
11846 2009-09-18  Glenn Morris  <rgm@gnu.org>
11847
11848         * gnus-diary.el (gnus-diary-check-message):
11849         * message.el (message-insert-formatted-citation-line):
11850         * nnbabyl.el (top-level):
11851         * nndiary.el (nndiary-schedule):
11852         Fix typos in condition-case handlers.
11853
11854 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11855
11856         * gnus-art.el (gnus-article-edit-part): Work for the buffer
11857         configuration that provides the sole article window in a frame;
11858         position point correctly after deleting a part.
11859
11860 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
11861
11862         * spam.el (spam-unregister-on-reregister): Add boolean variable.
11863         (spam-resolve-registrations-routine): Use it to unregister articles
11864         that change status.
11865
11866 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11867
11868         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
11869         with XEmacs.
11870         (parse-time-string-chars): Use it.
11871
11872 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
11873
11874         * imap.el (imap-interactive-login): Better messages.
11875         (imap-open): Fix bug with renamed buffer on reconnect.
11876         (imap-authenticate): Add buffer-local imap-last-authenticator variable
11877         for easier debugging and cleaner code.  On successful (guessed based on
11878         server capabilities) secondary authentication, set imap-state
11879         correctly.
11880         (imap-last-authenticator): Define imap-last-authenticator as a variable
11881         to avoid warnings.
11882
11883 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11884
11885         * nnrss.el (nnrss-request-article): Remove binding of
11886         default-enable-multibyte-characters that has gotten needless by
11887         the 2007-07-13 change in rfc2047-encode-message-header.
11888
11889         * mml.el (mml-insert-multipart): Error on the message header.
11890         (mml-insert-part): Error on the message header; position point at
11891         the end of a MIME tag.
11892
11893 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11894
11895         * time-date.el (autoload): Expand define-obsolete-function-alias into
11896         defalias and make-obsolete for old Emacsen that Gnus supports.
11897         (with-no-warnings): Define it for old Emacsen.
11898         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
11899         is available.
11900         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
11901         float-time is available; suppress compile warning for time-to-seconds.
11902
11903         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
11904         (gnus-float-time): Alias to float-time if it exists.
11905
11906         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
11907         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
11908         float-time is available; suppress compile warning for time-to-seconds.
11909
11910         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
11911         XEmacs.
11912
11913 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
11914
11915         * imap.el (imap-message-map): Docstring fix.
11916
11917 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11918
11919         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
11920         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
11921         Add the optional argument `encoding' that overrides the default.
11922
11923         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
11924         mm-encode-buffer.
11925
11926 2009-09-04  Glenn Morris  <rgm@gnu.org>
11927
11928         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
11929         mm-disable-multibyte, rather than default-enable-multibyte-characters.
11930         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
11931         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
11932         * mm-util.el (mm-with-unibyte-current-buffer)
11933         (mm-find-buffer-file-coding-system):
11934         * yenc.el (yenc-decode-region): Use default-value rather than
11935         default-enable-multibyte-characters.
11936
11937 2009-09-03  Glenn Morris  <rgm@gnu.org>
11938
11939         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
11940         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
11941         than default-enable-multibyte-characters.
11942
11943 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
11944
11945         * gnus-art.el (gnus-article-read-summary-keys):
11946         Fix gnus-buffer-configuration's value temporarily used.
11947
11948 2009-09-02  Glenn Morris  <rgm@gnu.org>
11949
11950         * gnus-util.el (gnus-float-time): New function.
11951         * gnus-delay.el (gnus-delay-article):
11952         * gnus-sum.el (gnus-thread-latest-date):
11953         * gnus-util.el (gnus-user-date): Use gnus-float-time.
11954         * nnspool.el (nnspool-request-newgroups):
11955         Use gnus-float-time rather than time-to-seconds.
11956         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
11957
11958         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
11959         (gnus-header-subject-face, gnus-header-newsgroups-face)
11960         (gnus-header-name-face, gnus-header-content-face):
11961         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
11962         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
11963         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
11964         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
11965         (gnus-cite-face-11):
11966         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
11967         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
11968         (gnus-server-closed-face, gnus-server-denied-face)
11969         (gnus-server-offline-face):
11970         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
11971         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
11972         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
11973         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
11974         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
11975         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
11976         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
11977         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
11978         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
11979         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
11980         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
11981         (gnus-summary-selected-face, gnus-summary-cancelled-face)
11982         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
11983         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
11984         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
11985         (gnus-summary-high-undownloaded-face)
11986         (gnus-summary-low-undownloaded-face)
11987         (gnus-summary-normal-undownloaded-face)
11988         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
11989         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
11990         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
11991         (gnus-splash-face):
11992         * message.el (message-header-to-face, message-header-cc-face)
11993         (message-header-subject-face, message-header-newsgroups-face)
11994         (message-header-other-face, message-header-name-face)
11995         (message-header-xheader-face, message-separator-face)
11996         (message-cited-text-face, message-mml-face):
11997         * sieve-mode.el (sieve-control-commands-face)
11998         (sieve-action-commands-face, sieve-test-commands-face)
11999         (sieve-tagged-arguments-face):
12000         * spam.el (spam-face):
12001         Mark face aliases with "-face" in the name as obsolete.
12002
12003 2009-09-01  Glenn Morris  <rgm@gnu.org>
12004
12005         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
12006         than goto-line.
12007
12008 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12009
12010         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
12011         Don't move point if the command is invoked inside the message header.
12012
12013 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12014
12015         * imap.el (imap-send-command): Simplify.
12016         (imap-wait-for-tag): point-max -> buffer-size.
12017
12018 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
12019
12020         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
12021         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
12022         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
12023         * nnir.el (nnir-swish-e-index-file):
12024         * gnus-sum.el (gnus-summary-delete-marked-as-read)
12025         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
12026         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
12027         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
12028         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
12029         (gnus-treat-display-xface): Add Emacs version of obsolescence.
12030
12031 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12032
12033         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
12034         Don't save excursion.
12035
12036 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12037
12038         * nnheader.el (nnheader-find-file-noselect):
12039         * mm-util.el (mm-insert-file-contents):
12040         Use (default-value 'major-mode) instead of default-major-mode.
12041
12042 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
12043
12044         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
12045
12046 2009-08-26  Glenn Morris  <rgm@gnu.org>
12047
12048         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
12049         than placing in files.el.
12050
12051 2009-08-25  Glenn Morris  <rgm@gnu.org>
12052
12053         * nnir.el (top-level): Don't require cl at run-time.
12054         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
12055         Replace cl-function substitute with gnus-replace-in-string.
12056         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
12057         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
12058         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
12059         simplified expansions.
12060
12061 2009-08-25  Kevin Ryde  <user42@zip.com.au>
12062
12063         * dig.el (dig): Add autoload cookie.
12064
12065 2009-08-22  Glenn Morris  <rgm@gnu.org>
12066
12067         * gnus-art.el (gnus-button-patch): Use forward-line rather than
12068         goto-line.
12069
12070 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
12071
12072         * parse-time.el (parse-time-string-chars): Save match data.
12073
12074 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
12075
12076         * parse-time.el (parse-time-string-chars): Compute using character
12077         classes, to handle non-ascii characters (Bug#3190).
12078
12079 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12080
12081         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
12082
12083         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
12084         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
12085         (gnus-mm-display-part, gnus-mime-display-single)
12086         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
12087         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
12088
12089         * gnus-sum.el
12090         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
12091         (gnus-summary-move-article): Add expirable mark to articles copied or
12092         moved to group that has auto-expire turned on if the option is non-nil.
12093
12094 2009-07-24  Glenn Morris  <rgm@gnu.org>
12095
12096         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
12097         Fix typo.  (Bug#3903)
12098
12099 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12100
12101         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
12102         gnus-article-read-summary-keys rather than gnus-summary-edit-article
12103         that should not be used for draft articles.
12104         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
12105         that has no concern in minor mode keys.
12106         (gnus-article-summary-command, gnus-article-summary-command-nosave):
12107         Abolish.
12108
12109 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12110
12111         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
12112         article without making inquiry to a user for unknown encoding.
12113
12114         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
12115         (nnmaildir--scan): Assume i-node and device number that file-attributes
12116         returns might be cons-cell.
12117
12118         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
12119
12120         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
12121
12122 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
12123
12124         * auth-source.el: Remove docs now in auth.texi.  Don't use
12125         `gnus-message' for logging.  Add new variables `auth-source-debug' and
12126         `auth-source-hide-passwords' and use them.
12127
12128 2009-07-15  Glenn Morris  <rgm@gnu.org>
12129
12130         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
12131
12132 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12133
12134         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
12135         excessive whitespace from the default values of title and description.
12136
12137 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12138
12139         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
12140         mail-fetch-field to fetch Content-Description header in order to
12141         exclude newlines.
12142
12143 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
12144
12145         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
12146         format used by GnuPG 2.0.11.
12147
12148 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12149
12150         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
12151         to deleted part.
12152
12153 2009-05-30  David Engster  <dengste@eml.cc>
12154
12155         * nnmairix.el: Remove old documentation in the commentary block.
12156         (nnmairix-request-group): Do not update active file for nnml back ends.
12157         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
12158         end so that overview files are ignored.
12159         (nnmairix-update-groups): Make updating the groups more robust by using
12160         marks.
12161         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
12162         with dollar characters in message-id.
12163
12164 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
12165
12166         * spam.el: Use dns-query instead of query-dns.  Was renamed on
12167         2008-12-25 in dns.el.
12168
12169 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12170
12171         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
12172         could happen if the text is only composed of spaces and/or tabs.
12173
12174 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
12175
12176         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
12177         when sending a queued message to avoid extra mml tags.
12178
12179 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12180
12181         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
12182
12183 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12184
12185         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
12186         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
12187         rmail-toggle-header for XEmacs;
12188         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
12189
12190 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12191
12192         * gnus-dired.el: Remove autoload for gnus-setup-message.
12193         (gnus-dired-attach): Fake this-command value to prevent Gnus from
12194         displaying Gnus logo; always use compose-mail.
12195
12196 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12197
12198         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
12199
12200 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12201
12202         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
12203         (gnus-nocem-issuers): List currently active issuers; fix custom type.
12204         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
12205         available.
12206         (gnus-nocem-epg-verify): New function.
12207
12208 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
12209
12210         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
12211
12212 2009-02-15  Glenn Morris  <rgm@gnu.org>
12213
12214         * gnus-util.el (rmail-insert-rmail-file-header)
12215         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
12216         autoloads.
12217         (rmail-default-rmail-file): Remove unnecessary declaration.
12218         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
12219
12220 2009-02-14  Glenn Morris  <rgm@gnu.org>
12221
12222         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
12223         variable (only used in gnus-util, which declares it anyway).
12224         (rmail-output-to-rmail-file): Remove autoload of deleted function,
12225         which was only needed by gnus-art (changed to not use it any more).
12226         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
12227         only used in gnus-util, which autoloads it itself.
12228         (rmail-update-summary): Fix autoload.
12229
12230         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
12231         rather than rmail-output-to-rmail-file.
12232
12233 2009-02-07  Glenn Morris  <rgm@gnu.org>
12234
12235         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
12236         autoload of function that no longer exists.
12237         (rmail-toggle-header): Declare.
12238         (message-forward-rmail-make-body): Handle mbox Rmail.
12239
12240 2009-01-31  Glenn Morris  <rgm@gnu.org>
12241
12242         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
12243         2009-01-09 change.
12244
12245 2009-01-31  Dave Love  <fx@gnu.org>
12246
12247         * imap.el (imap-fetch-safe): Bind debug-on-error.
12248         (imap-debug): Add imap-fetch-safe.
12249
12250 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
12251
12252         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
12253         (auth-source-forget-all-cached): New convenience function.
12254         (auth-source-user-or-password): Accept list of modes or a single mode.
12255
12256         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
12257         auth-source modes.
12258
12259         * netrc.el (netrc-machine-user-or-password): Use list of
12260         auth-source modes.
12261
12262         * nnimap.el (nnimap-open-connection): Use list of
12263         auth-source modes.
12264
12265         * nntp.el (nntp-send-authinfo): Use list of
12266         auth-source modes.
12267
12268 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
12269
12270         * auth-source.el: Update docs to reflect epa-file-enable is to be used
12271         now.
12272
12273 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12274
12275         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
12276         coding system in XEmacs; add a workaround for XEmacs.
12277
12278         * lpath.el: Fbind coding-system-aliasee.
12279
12280 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12281
12282         * mm-util.el (mm-coding-system-priorities): Protect against nil value
12283         of current-language-environment.
12284
12285 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
12286
12287         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
12288         available at runtime.
12289
12290 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12291
12292         * gnus-art.el (article-date-ut): Fix end point of narrowing.
12293
12294 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
12295
12296         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
12297         the greatest positive fixnum value doesn't work under an XEmacs with
12298         bignum support; use the most-positive-fixnum constant instead,
12299         available since Emacs 21.1 with cl and XEmacs 21.1.
12300
12301 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12302
12303         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
12304         XEmacs gets not to work.
12305
12306 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12307
12308         * mm-util.el (mm-coding-system-priorities): Allow the value like
12309         "Japanese (UTF-8)" of current-language-environment.
12310
12311 2009-01-09  Glenn Morris  <rgm@gnu.org>
12312
12313         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
12314         with last-command-event.
12315
12316 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
12317
12318         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
12319         in the doc string.
12320
12321         * message.el (message-fix-before-sending): Amend comment.
12322
12323 2009-01-08  Dave Love  <fx@gnu.org>
12324
12325         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
12326
12327 2009-01-07  David Engster  <dengste@eml.cc>
12328
12329         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
12330         simplified server definitions by converting it via
12331         gnus-server-to-method.
12332
12333 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12334
12335         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
12336         parameter's operands.
12337
12338 2009-01-06  David Engster  <dengste@eml.cc>
12339
12340         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
12341         primary select method (for gnus-group-mark-article-as-read).
12342
12343 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
12344
12345         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
12346         `(gnus)Face', not `(gnus)X-Face'.
12347
12348 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
12349
12350         * mm-util.el (mm-ucs-to-char): New function.
12351
12352         * mm-url.el (mm-url-decode-entities): Use it.
12353
12354         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
12355         unicode-to-char.
12356
12357 2009-01-05  Dave Love  <fx@gnu.org>
12358
12359         * time-date.el: Require cl for `declare'.
12360
12361 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
12362
12363         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
12364         Dave Love.
12365
12366 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
12367
12368         * message.el (message-fix-before-sending): Add `eight-bit' to
12369         illegible-text check.
12370
12371 2009-01-03  Michael Olson  <mwolson@gnu.org>
12372
12373         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
12374         `headers' is nil.  This can occur if the IMAP server does not have
12375         permissions to read messages from a folder, but can write new messages
12376         to the folder.
12377         (nnimap-request-article-part): Do not insert `data' if it is nil.
12378
12379         * imap.el (imap-parse-fetch): Courier can insert spurious blank
12380         characters which will confuse `read', so skip past them.
12381
12382 2009-01-01  Dave Love  <fx@gnu.org>
12383
12384         * imap.el (imap-string-to-integer): Fix typo.
12385         (imap-fetch-safe): New function.
12386         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
12387
12388         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
12389
12390         * imap.el (imap-process-connection-type, imap-debug, imap-open):
12391         (imap-parse-greeting): Fix doc strings.
12392         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
12393         (imap-parse-flag-list): Make messages unique.
12394         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
12395
12396         * nnimap.el: Fix author email.
12397         (nnimap-split-rule): Add FIXME comment.
12398         (nnimap-debug): Fix doc string.
12399
12400 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
12401
12402         * dns.el (dns-set-servers): Check "Address".  Fix typo.
12403
12404 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
12405
12406         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
12407         nslookup if resolv.conf isn't available.
12408         (dns-query): Rename from query-dns.
12409         (dns-query-cached): Rename from query-dns-cached.
12410
12411 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12412
12413         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
12414         overlay-arrow-position and overlay-arrow-string buffer-local; no need
12415         to check if those variables exist (first appeared in Emacs 18.50).
12416
12417 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12418
12419         * mm-util.el (mm-line-number-at-pos): New function.
12420
12421         * spam-report.el (spam-report-process-queue): Use it.
12422
12423 2008-12-24  David Engster  <dengste@eml.cc>
12424
12425         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
12426         parameters that haven't existed as variables as buffer-local variables.
12427
12428 2008-12-23  Dave Love  <fx@gnu.org>
12429
12430         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
12431         cadar.
12432
12433         * sieve-manage.el (sieve-manage-starttls-p): Rename from
12434         imap-starttls-p.
12435         (sieve-manage-starttls-open): Rename from imap-starttls-open.
12436
12437 2008-12-22  Dave Love  <fx@gnu.org>
12438
12439         * imap.el: Fix author email.  Doc fixes.
12440         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
12441         reply.
12442
12443 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
12444
12445         * spam-report.el (spam-report-gmane-max-requests): New constant.
12446         (spam-report-gmane-wait): New variable.
12447         (spam-report-gmane-ham, spam-report-gmane-spam)
12448         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
12449         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
12450         the server.
12451
12452         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
12453         Add explanations.
12454
12455         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
12456         nnheader-accept-process-output and nnheader-read-timeout if available.
12457         (pop3-movemail): Use it.
12458
12459         * message.el (message-check-news-body-syntax): Fix signature check if
12460         there's an attachment.
12461
12462 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12463
12464         * mm-util.el: Add comments to the mm- emulating functions.
12465
12466 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
12467
12468         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
12469         Reported by Stephen Berman <stephen.berman@gmx.net>.
12470
12471 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12472
12473         * mm-util.el (mm-substring-no-properties): New function.
12474         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
12475         (mm-special-display-p): Enable those lambda forms to be byte compiled.
12476         (mm-string-to-multibyte): Doc fix.
12477
12478         * mml.el (mml-attach-file): Use mm-substring-no-properties.
12479
12480 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
12481
12482         * mml.el (mml-attach-file): Strip text properties from file name.
12483         (Bug#1574)
12484
12485 2008-12-16  Glenn Morris  <rgm@gnu.org>
12486
12487         * mm-util.el (mm-charset-override-alist): Declare for compiler.
12488
12489 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12490
12491         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
12492         knows since the charset specified might be a bogus alias that
12493         mm-charset-synonym-alist provides.
12494
12495 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
12496
12497         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
12498         "ISO_8859-1".
12499
12500         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
12501
12502 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12503
12504         * mm-util.el (mm-charset-eval-alist):
12505         Define it before mm-charset-to-coding-system.
12506         (mm-charset-to-coding-system): Add optional argument `silent';
12507         define it before mm-charset-override-alist.
12508         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
12509         default value if it can be used in Emacs currently running;
12510         silence mm-charset-to-coding-system.
12511
12512 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12513
12514         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
12515         `allow-override' which says whether to use `mm-charset-override-alist'.
12516         (rfc2047-decode-encoded-words): Use it.
12517
12518         * mm-util.el (mm-charset-override-alist): Fix custom type;
12519         add `(gb2312 . gbk)' to choices.
12520
12521 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12522
12523         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
12524         fast.
12525
12526         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
12527
12528         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
12529
12530 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
12531
12532         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
12533         on links.
12534
12535         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
12536
12537 2008-12-03  Lute Kamstra  <lute@gnu.org>
12538
12539         * sha1.el: Remove leading * from docstrings of defcustoms,
12540         deffaces, defconsts and defuns.
12541
12542 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12543
12544         * message.el (message-idna-to-ascii-rhs-1): Protect against local
12545         users' addresses that don't have domain parts.
12546         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
12547         rather than message-narrow-to-head since there will be the message
12548         header separator.
12549
12550 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12551
12552         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
12553         since the result is inserted in a unibyte buffer anyway.
12554         (nnimap-demule-use-string-to-multibyte): Remove.
12555         (nnimap-demule): Alias it to mm-string-to-multibyte.
12556
12557 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
12558
12559         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
12560         variable for debugging bug#464 and bug#1174.
12561         (nnimap-demule): Use it.
12562
12563 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
12564
12565         * gnus-score.el (gnus-score-find-trace): Handle default score in total
12566         score calculation correctly.
12567
12568 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12569
12570         * message.el (message-send-mail): Just set the buffer to unibyte
12571         rather than use mm-with-unibyte-current-buffer which does a lot more.
12572         (message-send-mail-partially): Don't bother with
12573         mm-with-unibyte-current-buffer since it's already been made unibyte by
12574         message-send-mail.
12575
12576 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
12577
12578         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
12579
12580 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
12581
12582         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
12583
12584 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12585
12586         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
12587         require itself and to remove `with-no-warnings'.
12588
12589 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
12590
12591         * starttls.el (starttls-any-program-available): Get the name of the
12592         available TLS layer program.
12593         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
12594         well as the host name in the "opening" message.
12595
12596         * auth-source.el (auth-source-cache, auth-source-do-cache)
12597         (auth-source-user-or-password): Cache passwords and logins by default,
12598         allow override with `auth-source-do-cache'.
12599         (auth-source-forget-user-or-password): Allow users to remove cache
12600         entries if needed.
12601
12602 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
12603
12604         * md4.el (md4-buffer): Fix typo in docstring.
12605         (md4, md4-64): Doc fixes.
12606         (md4-pack-int32): Reflow docstring.
12607
12608 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
12609
12610         * ietf-drums.el (ietf-drums-remove-comments): Localize second
12611         condition-case to only the forward-sexp call.
12612
12613 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
12614
12615         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
12616         quotes contained.  Make it more robust regardless by an extra
12617         condition-case wrapper.
12618
12619 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12620
12621         * lpath.el: No need to fbind codepage-setup for Emacs 23.
12622
12623 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12624
12625         * nnml.el (nnml-request-expire-articles): Check if the function set to
12626         `nnmail-expiry-target' returns the symbol `delete'.
12627
12628         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
12629
12630         * nnmail.el (nnmail-expiry-target): Fix custom type.
12631
12632 2008-10-02  Glenn Morris  <rgm@gnu.org>
12633
12634         * mm-util.el (mm-codepage-setup): Tweak codepage error.
12635         Silence compiler warning.
12636
12637 2008-10-01  Magnus Henoch  <mange@freemail.hu>
12638
12639         * tls.el (open-tls-stream): Show the actual command being
12640         executed, instead of the format string.
12641
12642 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12643
12644         * lpath.el: Fbind codepage-setup for Emacs 23.
12645
12646 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
12647
12648         * mml.el (mml-menu): Don't assume mml2015 is bound.
12649
12650 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12651
12652         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
12653         exists.
12654
12655 2008-09-27  Glenn Morris  <rgm@gnu.org>
12656
12657         * gnus-util.el (mail-header-remove-comments): Autoload it.
12658
12659 2008-09-27  Andreas Schwab  <schwab@suse.de>
12660
12661         * gnus-util.el (gnus-split-references): Strip comments.
12662         (gnus-parent-id): Likewise.
12663
12664 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
12665
12666         * message.el (message-confirm-send): Fix version.
12667
12668 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12669
12670         * message.el (message-idna-to-ascii-rhs-1): Use
12671         mail-extract-address-components rather than mail-header-parse-addresses
12672         that is an alias by default to ietf-drums-parse-addresses that does not
12673         support non-ASCII names in headers' contents.
12674
12675 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
12676
12677         * message.el (message-confirm-send): Fix variable documentation to
12678         avoid the "y/n" wording.
12679
12680 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
12681
12682         * message.el (message-set-auto-save-file-name): Save to a different
12683         filename so multiple messages (especially drafts) can be recovered.
12684
12685 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
12686
12687         * message.el (message-confirm-send): Add appropriate version.
12688
12689 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
12690
12691         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
12692         defvar.
12693
12694 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
12695
12696         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
12697         (mm-pkcs7-enveloped-magic): Ditto.
12698
12699 2008-09-17  Simon Josefsson  <simon@josefsson.org>
12700
12701         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
12702         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
12703
12704 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
12705
12706         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
12707         default, it's better.
12708
12709 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
12710
12711         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
12712         summary line gnus-number property and ignore them (with a warning
12713         message).
12714
12715 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12716
12717         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
12718         macro caddr in the interactive form since it won't be expanded.
12719
12720 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12721
12722         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
12723         `charset'; fix name of function called recursively.
12724         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
12725
12726 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12727
12728         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
12729         (gnus-mime-set-charset-parameters): New function.
12730         (gnus-mime-view-part-as-charset): Use it to correctly display part
12731         specifying wrong charset.
12732
12733 2008-09-08  David Engster  <dengste@eml.cc>
12734
12735         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
12736         in completing-read for back end server.
12737
12738 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
12739
12740         * message.el (message-confirm-send): New variable to confirm sending a
12741         message.
12742         (message-send): Use it.
12743
12744 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
12745
12746         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
12747
12748 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12749
12750         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
12751
12752 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
12753
12754         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
12755         prevent tracking too many groups.
12756         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
12757         Use it.
12758
12759 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
12760
12761         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
12762         moving point to the bottom of the window in order to avoid recentering.
12763
12764 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
12765
12766         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
12767
12768         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
12769         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
12770         (gnus-article-beginning-of-window): Fix calculation.
12771
12772 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12773
12774         * gnus-msg.el (gnus-summary-supersede-article)
12775         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
12776         value of gnus-newsgroup-charset to decode non-MIME encoded text in
12777         message header.
12778
12779 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
12780
12781         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
12782         pending output coming after the status change.
12783
12784 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
12785
12786         * message.el:
12787         * gnus-start.el:
12788         * gnus-registry.el: Remove VMS support.
12789
12790 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12791
12792         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
12793         macro.
12794         (rfc2104-hash): Use it.
12795
12796 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
12797
12798         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
12799         (gnus-summary-sort-by-most-recent-date): New commands.
12800         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
12801         and menu entries.
12802
12803 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12804
12805         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
12806         don't redisplay article for raw contents; remove plural articles stuff.
12807
12808         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
12809         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
12810         on gnus-summary-save-article; display results properly.
12811
12812 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12813
12814         * lpath.el: No need to fbind ns-focus-frame.
12815
12816 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12817
12818         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
12819
12820 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12821
12822         * gnus-art.el (gnus-summary-save-in-pipe):
12823         Consider gnus-save-all-headers.
12824
12825 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
12826
12827         * gnus-util.el (ns-focus-frame): Remove declaration.
12828         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
12829         like x.
12830
12831 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
12832
12833         * rfc2104.el (rfc2104-zero): Delete defconst.
12834         (rfc2104-hex-alist): Likewise.
12835         (rfc2104-hex-to-int): Delete func.
12836         (rfc2104-hexstring-to-bitstring): Likewise.
12837         (rfc2104-nybbles): New defconst.
12838         (rfc2104-hash): Rewrite for speed.
12839
12840 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12841
12842         * tls.el (open-tls-stream): Make it work with the 2nd argument
12843         BUFFER that is a string but does not exist as a buffer object, as
12844         mentioned in the doc-string.
12845
12846 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12847
12848         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
12849         SXEmacs.
12850
12851 2008-07-16  Glenn Morris  <rgm@gnu.org>
12852
12853         * gnus-util.el (ns-focus-frame): Declare for compiler.
12854
12855 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12856
12857         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
12858         set as a group parameter.
12859         (gnus-summary-save-in-pipe): Work when it is called independently.
12860         (gnus-summary-pipe-to-muttprint): Don't modify
12861         gnus-summary-pipe-output-default-command.
12862
12863 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
12864
12865         * message.el (message-send-mail-with-sendmail):
12866         Display the error message.
12867
12868 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12869
12870         * gnus-art.el (gnus-default-article-saver):
12871         Add gnus-summary-save-in-pipe to choices.
12872         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
12873         gnus-summary-pipe-output-default-command as the default command.
12874         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
12875         instead of gnus-last-shell-command.
12876
12877         * gnus-sum.el (gnus-summary-pipe-output-default-command):
12878         New user option.
12879         (gnus-summary-muttprint-program): Mention the value will be changed.
12880         (gnus-summary-save-article): Force showing of all headers.
12881         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
12882
12883 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
12884
12885         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
12886
12887 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
12888
12889         * nnimap.el (nnimap-id):
12890         * sieve-manage.el (sieve-manage-open): Doc fixes.
12891
12892 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
12893
12894         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
12895         if available.
12896
12897 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12898
12899         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
12900
12901         * nnkiboze.el (nnkiboze-generate-group):
12902         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
12903
12904         * nnmairix.el: Require CL.
12905
12906 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12907
12908         * dgnushack.el: Autoload get-display-table and put-display-table for
12909         XEmacs 21.5.
12910
12911         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
12912         21.4 and SXEmacs.
12913
12914 2008-06-15  David Engster  <dengste@eml.cc>
12915
12916         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
12917
12918 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
12919
12920         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
12921         New macros that expand to an `aset'/`aref' call under Emacs, and to a
12922         runtime choice under XEmacs.
12923
12924         * gnus-sum.el (gnus-summary-set-display-table):
12925         Use `gnus-put-display-table', `gnus-get-display-table',
12926         `gnus-set-display-table' for the display table, instead of `aset'.
12927
12928         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
12929         Use `gnus-put-display-table', `gnus-get-display-table',
12930         `gnus-set-display-table' for the display table.
12931
12932 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
12933
12934         * nnmairix.el: Add autoloads.
12935
12936 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
12937
12938         * nnmairix.el (nnmairix-delete-recreate-group)
12939         (nnmairix-update-and-clear-marks): Fix error messages.
12940
12941 2008-06-14  David Engster  <dengste@eml.cc>
12942
12943         * nnmairix.el: Upgrade to version 0.6.
12944         (nnmairix-group-toggle-propmarks-this-group)
12945         (nnmairix-group-toggle-readmarks-this-group)
12946         (nnmairix-group-delete-recreate-this-group)
12947         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
12948         (nnmairix-remove-tick-mark-original-article): New commands.
12949         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
12950         (nnmairix-propagate-marks-to-nnmairix-groups)
12951         (nnmairix-only-use-registry, nnmairix-allowfast-default)
12952         (nnmairix-marks-cache, nnmairix-version-output): New variables.
12953         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
12954         functions needed for marks propagation and manipulation of read marks.
12955         (nnmairix-update-groups): New function.
12956         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
12957         (nnmairix-determine-original-group-from-registry)
12958         (nnmairix-determine-original-group-from-path)
12959         (nnmairix-get-group-from-file-path, nnmairix-map-range)
12960         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
12961         New helper functions.
12962         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
12963         keystrokes for new commands.
12964         (nnmairix-delete-and-create-on-change): Doc string cleanup.
12965         (nnmairix-request-group): Check allow-fast group parameter.
12966         (nnmairix-request-create-group): Set allow-fast group parameter if
12967         nnmairix-allowfast-default is set.
12968         (nnmairix-close-group): Propagate marks upon closing if needed.
12969         (nnmairix-group-toggle-threads-this-group): Use new.
12970         nnmairix-group-toggle-parameter helper function.
12971         (nnmairix-search): Better check for empty search result.
12972         (nnmairix-goto-original-article): Use new helper functions for
12973         determining original article.
12974         (nnmairix-show-original-article): Make sure message-id is in brackets.
12975         (nnmairix-call-mairix-binary): Change variable name.
12976         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
12977         helper function.
12978         (nnmairix-widget-toggle-activate): Fix doc string.
12979
12980 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
12981
12982         * nnir.el: Require edmacro when compiling with XEmacs.
12983         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
12984         available in Emacs 21.
12985
12986 2008-06-11  Glenn Morris  <rgm@gnu.org>
12987
12988         * gnus-util.el (x-focus-frame):
12989         * gnus.el (image-size):
12990         * mm-decode.el (image-size): Declare.
12991
12992         * gnus-picon.el (declare-function): Add compat definition.
12993         (image-size): Declare.
12994
12995         * gnus-group.el (tool-bar-map):
12996         * gnus-sum.el (tool-bar-map): Define for compiler.
12997
12998         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
12999
13000         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
13001
13002         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
13003         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
13004         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
13005         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
13006         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
13007         * sieve-manage.el, spam-report.el, spam.el:
13008         Remove unnecessary eval-and-compile of autoloads.
13009
13010 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
13011
13012         * auth-source.el: Precise Tramp doc.
13013
13014 2008-06-07  Glenn Morris  <rgm@gnu.org>
13015
13016         * nnmairix.el: Remove unnecessary eval-when-compile.
13017
13018 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13019
13020         * lpath.el: Fbind propertize for XEmacs 21.4.
13021
13022 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
13023
13024         * nnir.el: Move here from ../contrib.
13025
13026 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13027
13028         * gnus-util.el (gnus-read-shell-command): New function.
13029         * mm-decode.el (mm-pipe-part):
13030         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
13031
13032 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13033
13034         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
13035
13036 2008-06-03  Glenn Morris  <rgm@gnu.org>
13037
13038         * pop3.el (nnheader-accept-process-output): Autoload it.
13039
13040 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13041
13042         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
13043         are not 2-digit hexadecimal characters that follow `%'s.
13044
13045 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
13046
13047         * message.el (message-bogus-recipient-p): Fix type in doc string.
13048         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
13049         (message-bogus-addresses): Rename from message-bogus-address-regexp.
13050         Improve custom options.
13051         (message-bogus-recipient-p): Adjust accordingly.
13052
13053 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
13054
13055         * parse-time.el (parse-time-months, parse-time-weekdays): Add
13056         long-form month and day names.
13057
13058 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13059
13060         * dgnushack.el: Autoload debug, eudc-expand-inline and
13061         pgg-snarf-keys-region for XEmacs.
13062
13063         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
13064
13065         * nnmairix.el: Require edmacro when compiling with XEmacs.
13066
13067 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
13068
13069         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
13070         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
13071
13072 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
13073
13074         * auth-source.el: Add more docs.
13075
13076         * netrc.el (netrc-machine): Always match if the port is not given.
13077
13078 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13079
13080         * nnheader.el (nnheader-read-timeout): Change the default timeout from
13081         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
13082         retrieval faster in some cases, but might make CPU usage larger.
13083         If this has any bad side effects, we might revert this change.
13084
13085         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
13086         seems to make mail retrieval much, much faster.
13087         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
13088         unconditionally.
13089
13090         * gnus-draft.el (gnus-group-send-queue):
13091         Bind message-send-mail-partially-limit to nil to avoid being prompted.
13092
13093 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
13094
13095         * mml.el (mml-attach-buffer): Prompt for `disposition'.
13096
13097         * message.el (message-bogus-address-regexp): Fix and improve custom
13098         type.
13099         (message-setup-hook): Add message-check-recipients as custom option.
13100
13101 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
13102
13103         * message.el (message-cite-function): Remove bogus autoload which crept
13104         in during merge from v5-10.
13105
13106 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
13107
13108         * nnimap.el (nnimap-open-connection): Fix login/password bug.
13109
13110         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
13111
13112         * auth-source.el: Preliminary Tramp docs.
13113         (auth-sources): Change the default auth-sources to use
13114         EPA .gpg files.
13115
13116 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
13117
13118         * nntp.el: Autoload `auth-source-user-or-password'.
13119         (nntp-send-authinfo): Use it.
13120
13121         * nnimap.el: Autoload `auth-source-user-or-password'.
13122         (nnimap-open-connection): Use it.
13123
13124         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
13125         for the gnus-message function.
13126         (auth-source-user-or-password): Use it.
13127
13128 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13129
13130         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
13131         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
13132         (rfc2104-hash): Use it.
13133
13134 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
13135
13136         * gnus-art.el (gnus-article-toggle-truncate-lines):
13137         Don't use `iff' in docstring.
13138
13139 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
13140
13141         * gnus-registry.el: Adjusted copyright dates and added a keyword.
13142
13143         * gnus-util.el (gnus-extract-address-component-name)
13144         (gnus-extract-address-component-email): Convenience functions around
13145         `gnus-extract-address-components'.
13146
13147         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
13148         Use `gnus-extract-address-component-email' to fix bug of comparing full
13149         sender name to `user-mail-address'.
13150
13151 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
13152
13153         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
13154         catch/throw to optimize.
13155         (gnus-registry-find-keywords): Just use member to find a keyword.
13156
13157 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13158
13159         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
13160         is current before calling gnus-server-prepare.
13161         (gnus-server-setup-buffer, gnus-server-update-server)
13162         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
13163
13164 2008-05-04  Juri Linkov  <juri@jurta.org>
13165
13166         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
13167         (mailcap-file-default-commands): Use mailcap-replace-in-string
13168         instead of replace-regexp-in-string, and mailcap-delete-duplicates
13169         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
13170
13171 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
13172
13173         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
13174
13175 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
13176
13177         * gnus.el: Bump version to 0.11.
13178
13179 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
13180
13181         * gnus.el: No Gnus v0.10 is released.
13182
13183 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13184
13185         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
13186         hooks.
13187         (gnus-update-read-articles): Speed up non-marks-using users.
13188         (gnus-use-marks): Define gnus-use-marks.
13189         (gnus-propagate-marks): Rename variable to something more sensible.
13190
13191 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
13192
13193         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
13194         (gmm-image-load-path-for-library): Fix typos in docstrings.
13195         (gmm-message): Reflow docstring.
13196
13197 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
13198
13199         * mail-source.el (mail-source-set-1, mail-source-bind):
13200         Move auth-source code out of the macro to clean it up and fix bugs.
13201
13202 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
13203
13204         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
13205         by sender if it's equal to user-mail-address, it's likely to be
13206         useless.
13207
13208         * mail-source.el (mail-source-bind): Don't use user or password if they
13209         are not bound.  Unintern them if they are nil.  Don't use server unless
13210         it's bound, and default it to empty string otherwise.
13211
13212 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
13213
13214         * mail-source.el: Load auth-source.el.
13215         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
13216         get user name or password, if auth-sources is set up.
13217
13218         * gnus-registry.el (gnus-registry-split-strategy): New variable for
13219         strategy of splitting with parent.
13220         (gnus-registry-split-fancy-with-parent)
13221         (gnus-registry-post-process-groups): Use it and fix prior
13222         bug (returning a list as the split result).
13223
13224         * auth-source.el (auth-sources): Remove server parameter.
13225         (auth-source-pick, auth-source-user-or-password)
13226         (auth-source-user-or-password-imap)
13227         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13228         (auth-source-user-or-password-sftp)
13229         (auth-source-user-or-password-smtp): Remove server parameter.
13230
13231 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
13232
13233         * smime.el (smime-sign-region, smime-encrypt-region)
13234         (smime-decrypt-region):
13235         Remove redundant calls to `generate-new-buffer-name'.
13236
13237 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
13238
13239         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
13240         Don't use QP for message/rfc822.
13241         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
13242
13243 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13244
13245         * sieve-manage.el (sieve-string-bytes): Remove.
13246         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
13247         correct byte-length only if the process's coding-system is the same as
13248         the one used internally by Emacs to represent strings.
13249
13250 2008-04-22  Juri Linkov  <juri@jurta.org>
13251
13252         * mailcap.el (mailcap-file-default-commands): New function.
13253
13254 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
13255
13256         * message.el (message-signature-separator, message-cite-function):
13257         Change custom version.
13258
13259 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
13260
13261         * tls.el (tls-program): Add -ign_eof argument to call the openssl
13262         commands.
13263         (tls-checktrust): Ditto.
13264
13265 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
13266
13267         * mm-decode.el (mm-display-external): Make temp file read-only.
13268
13269 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
13270
13271         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
13272         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
13273         `C-c C-f d'.
13274
13275 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
13276
13277         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
13278
13279 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
13280
13281         * gnus.el: Bump version to 0.9.
13282
13283 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
13284
13285         * gnus.el: No Gnus v0.8 is released.
13286
13287 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13288
13289         * mail-source.el (mail-source-value):
13290         Prefer fboundp to functionp so it works with macros as well.
13291
13292 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13293
13294         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13295         Fix last change in case the element is not even a symbol.
13296
13297 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13298
13299         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13300         Prefer fboundp to functionp so it works with macros as well.
13301
13302 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
13303
13304         * auth-source.el: Add docs.
13305         (auth-sources): Modify format to support server.
13306         (auth-source-pick, auth-source-user-or-password)
13307         (auth-source-user-or-password-imap)
13308         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13309         (auth-source-user-or-password-sftp)
13310         (auth-source-user-or-password-smtp): Add server parameter.
13311
13312 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
13313
13314         * gnus-registry.el: Initialize the registry when gnus-registry-install
13315         is t.
13316
13317 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13318
13319         * compface.el (uncompface): Make buffer unibyte.
13320
13321 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13322
13323         * mail-source.el (mail-source-value):
13324         Prefer fboundp to functionp so it works with macros as well.
13325
13326 2008-04-05  Glenn Morris  <rgm@gnu.org>
13327
13328         * gnus-ems.el (mm-disable-multibyte): Autoload it.
13329
13330 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13331
13332         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
13333         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
13334
13335         * nnheader.el (nnheader-init-server-buffer): Change buffer's
13336         multibyteness after rather than before erasing it.
13337
13338         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
13339         mm-with-multibyte.
13340         (gnus-request-article-this-buffer): Make sure the proper decoding is
13341         used if gnus-original-article-buffer happens to be unibyte.
13342
13343         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
13344         default-enable-multibyte-characters.
13345
13346         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
13347         default-enable-multibyte-characters.
13348
13349         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
13350
13351         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
13352
13353 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13354
13355         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13356         Fix last change in case the element is not even a symbol.
13357
13358 2008-04-02  Simon Josefsson  <simon@josefsson.org>
13359
13360         * imap.el (imap-enable-exchange-bug-workaround): New variable.
13361         (imap-message-copyuid-1): Use it.
13362         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
13363         J. Williams in
13364         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
13365
13366         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
13367         imap-enable-exchange-bug-workaround.
13368         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
13369
13370 2008-04-01  Simon Josefsson  <simon@josefsson.org>
13371
13372         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
13373         a 100 byte status-checks into a 2-3MB transfer for each group.
13374         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
13375         to enable bug workaround or not.
13376         (nnimap-find-minmax-uid): Only enable workaround conditionally.
13377
13378 2008-03-31  Glenn Morris  <rgm@gnu.org>
13379
13380         * message.el (mml2015-use): Declare for compiler.
13381         (message-info): Require mml2015 when appropriate.
13382
13383 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13384
13385         * Makefile.in (EMACS_COMP): Quote directory name that might contain
13386         whitespace.
13387
13388 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13389
13390         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
13391         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
13392         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
13393         (nntp-service-to-port): New function.
13394         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
13395         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
13396         (nntp-open-netcat-stream): New function.
13397         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
13398
13399 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
13400
13401         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
13402
13403 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13404
13405         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
13406
13407 2008-03-28  Magnus Henoch  <mange@freemail.hu>
13408
13409         * dns.el (dns-write): Use set-buffer-multibyte.
13410
13411 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
13412
13413         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
13414
13415 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
13416
13417         * message.el (message-signature-separator): Change default.
13418         Improve custom type.
13419         (message-cite-function): Change default to
13420         message-cite-original-without-signature.
13421
13422         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
13423         toggle.
13424
13425         * message.el (message-check-news-body-syntax): Fix signature check.
13426         (message-setup-1): Mark buffer as unmodified _after_ running
13427         message-setup-hook and handling message-alternative-emails.
13428         (message-shorten-references): Be more strict when building list of
13429         valid references to comply with GNKSA.
13430
13431         * gnus-group.el (gnus-read-ephemeral-bug-group)
13432         (gnus-read-ephemeral-debian-bug-group)
13433         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
13434
13435         * message.el (message-info): Don't use booleanp which isn't supported
13436         in Emacs 21 and XEmacs.
13437
13438 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
13439
13440         * gnus-group.el (gnus-gmane-group-download-format): Rename from
13441         gnus-group-gmane-group-download-format.
13442         (gnus-group-read-ephemeral-gmane-group): Rename from
13443         gnus-group-read-ephemeral-gmane-group.
13444         (gnus-read-ephemeral-gmane-group-url): Rename from
13445         gnus-group-read-ephemeral-gmane-group-url.
13446         (gnus-bug-group-download-format-alist): New variable.
13447         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
13448         (gnus-read-ephemeral-emacs-bug-group): New commands.
13449
13450 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
13451
13452         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
13453         (gnus-visible-headers): Improve custom type.
13454
13455 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
13456
13457         * mml.el (mml-menu): Add workarounds for XEmacs.
13458
13459         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
13460         X-Boundary header.
13461
13462         * message.el (message-simplify-recipients): Fix previous commit.
13463
13464 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13465
13466         * mm-util.el (mm-set-buffer-multibyte): New function.
13467         * mm-decode.el (mm-copy-to-buffer): Use it.
13468
13469         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13470         Prefer fboundp to functionp so it works with macros as well.
13471
13472 2008-03-19  Glenn Morris  <rgm@gnu.org>
13473
13474         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
13475         Accidentally removed in the sync process with Emacs.
13476
13477 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
13478
13479         * message.el (message-alter-recipients-discard-bogus-full-name):
13480         New function.
13481         (message-alter-recipients-function): New variable.
13482         (message-get-reply-headers): Use it.
13483         (message-replace-header): New helper function.
13484         (message-recipients-without-full-name): New variable.
13485         (message-simplify-recipients): New command.
13486
13487         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
13488
13489         * message.el (message-info): Handle EasyPG manual.
13490
13491         * mml.el (mml-menu): Add entry for EasyPG.
13492
13493 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
13494
13495         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
13496         parameter.
13497
13498         * message.el (message-disassociate-draft): Specify drafts group name
13499         fully.
13500
13501 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
13502
13503         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
13504         Eliminate unnecessary duplicates from the match list.
13505
13506 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13507
13508         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
13509
13510         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
13511
13512         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
13513         args of `how-many' of which the XEmacs version doesn't take; declare
13514         Info-index-next as function.
13515
13516 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
13517
13518         * gnus-score.el (gnus-score-headers): Fix handling of
13519         gnus-inhibit-slow-scoring.
13520
13521         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
13522         string.
13523         (gnus-button-url-regexp): Improve handling of parenthesis.
13524         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
13525         (gnus-button-handle-info-keystrokes): Handle index entries.
13526
13527 2008-03-15  Glenn Morris  <rgm@gnu.org>
13528
13529         * parse-time.el (parse-time-string): Simplify.
13530
13531 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13532
13533         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
13534         Incoming* files.
13535
13536 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
13537
13538         * auth-source.el (auth-sources): Rename from auth-source-choices.
13539         (auth-source-pick): Use it.
13540
13541 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13542
13543         * binhex.el (binhex-decode-region-internal):
13544         * uudecode.el (uudecode-decode-region-internal):
13545         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
13546         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
13547         setting default-enable-multibyte-characters.
13548
13549 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
13550
13551         * auth-source.el (auth-source-protocols)
13552         (auth-source-protocols-customize, auth-source-choices): Add and
13553         modified variable customizations and defaults.
13554         (auth-source-pick, auth-source-user-or-password)
13555         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
13556         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13557         (auth-source-user-or-password-sftp)
13558         (auth-source-user-or-password-smtp): Use new variables and provide an
13559         interface to netrc.el.
13560
13561 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13562
13563         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
13564         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
13565         Make sure the nntp port to specify is a string.
13566
13567 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13568
13569         * nntp.el: Use with-current-buffer.
13570         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
13571         dubious mm-with-unibyte-current-buffer.
13572         (nntp-with-open-group-function): New function extracted from
13573         nntp-with-open-group macro.
13574         (nntp-with-open-group): Use the function, so it's easier to debug.
13575         Add indentation and debugging info.
13576         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
13577         Recommend the use of the netcat alternatives.
13578
13579         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
13580         Avoid mm-string-as-multibyte as well.
13581
13582         * nnweb.el (nnweb-insert-html):
13583         Remove use of nnheader-string-as-multibyte.
13584
13585         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
13586         (nnheader-string-as-multibyte): Remove.
13587
13588         * mm-view.el: Use inhibit-read-only.
13589         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
13590         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
13591         or unibyte-string.
13592
13593         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
13594         (mm-uu-yenc-extract): Use with-current-buffer.
13595
13596         * gnus-soup.el (gnus-soup-send-packet): Don't use
13597         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
13598
13599         * nnmh.el: Use with-current-buffer.
13600         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
13601         mm-string-as-multibyte on the output of mm-encode-coding-string.
13602
13603         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
13604         (nnimap-request-move-article): Use with-current-buffer.
13605
13606         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
13607         inserting the handle-buffer's text, so the implicit multibyte->unibyte
13608         conversion uses string-make-unibyte rather than string-as-unibyte.
13609
13610         * gnus-msg.el: Use with-current-buffer.
13611
13612         * message.el (message-ignored-resent-headers): Add "Delivered-To".
13613
13614 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
13615
13616         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
13617         string for caching if it is 'PIN.
13618
13619 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13620
13621         * lpath.el: Consider the case without Emacs/W3.
13622
13623 2008-03-08  Glenn Morris  <rgm@gnu.org>
13624
13625         * time-date.el (date-to-time, time-subtract, time-add)
13626         (safe-date-to-time): Doc fixes.
13627
13628 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
13629
13630         * mail-source.el (mail-source-delete-old-incoming-confirm):
13631         Change default to nil.
13632         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
13633
13634 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13635
13636         * lpath.el: Rearrange.
13637
13638         * gnus-art.el (gnus-narrow-to-page): Position point properly.
13639         (gnus-article-goto-prev-page): Work for articles having ^L's.
13640
13641         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
13642
13643         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
13644
13645 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
13646
13647         * gnus-bookmark.el: Adjust for renames in bookmark.el.
13648         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
13649         (gnus-bookmark-jump): Adjust some variable names.
13650
13651 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
13652
13653         * auth-source.el: New package.
13654         (auth-source-choices): Add customization entry point variable.
13655
13656         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
13657         bug.
13658
13659 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
13660
13661         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
13662         (gnus-registry-initialize, gnus-registry-install-p): Use it.
13663         (gnus-registry-install-shortcuts): Rename from
13664         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
13665         the `gnus-registry-mark-map' keymap dynamically from
13666         `gnus-registry-marks'.  The generated functions update the summary line
13667         when a registry mark is added or deleted, and will call
13668         `gnus-registry-install-p' (see the comments in the code).
13669         (gnus-registry-user-format-function-M): Use concat intelligently.
13670
13671         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
13672         the registry mark functions.
13673
13674 2008-03-05  Glenn Morris  <rgm@gnu.org>
13675
13676         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
13677         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
13678         gnus-art.
13679         (top-level): No need to load own source when compiling.
13680
13681 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
13682
13683         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
13684         Suggested by <chris.anderton@zetnet.co.uk>.
13685
13686 2008-03-04  Glenn Morris  <rgm@gnu.org>
13687
13688         * gnus-sum.el (top-level): No need to require gnus when compiling,
13689         since unconditionally required near start of file.
13690         (gnus-summary-display-while-building): Move definition before use.
13691
13692 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
13693
13694         * gnus-registry.el (gnus-registry-user-format-function-M):
13695         Add formatting function.
13696
13697 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
13698
13699         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
13700         with plists.
13701         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
13702         Use new format.
13703
13704 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13705
13706         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
13707         `where-is-internal' that returns a range of key sequences.
13708
13709 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13710
13711         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
13712
13713         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
13714         (gnus-summary-jump-to-group): Consider windows on other displayed
13715         frames as well.  Similar changes might be needed elsewhere, but that's
13716         the one I've bumped into during my use.
13717
13718         * nndoc.el (nndoc-oe-dbx-type-p):
13719         * gnus-msg.el (gnus-debug):
13720         * gnus-group.el (gnus-update-group-mark-positions):
13721         Use mm-string-to-multibyte.
13722
13723 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
13724
13725         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
13726         doesn't handle NotDashEscaped.
13727
13728         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
13729         (mml-dnd-attach-options): Fix typo in custom choice.
13730
13731         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
13732         Change nndoc-article-type to mbox.
13733         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
13734
13735         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
13736         to nil, instead of html2text.
13737
13738         * imap.el (imap-debug): Add `imap-ping-server'.
13739
13740         * gnus-bookmark.el: Add FIXMEs.
13741
13742         * message.el (message-form-letter-separator)
13743         (message-send-form-letter-delay): New variables.
13744         (message-send-form-letter): Use them.  New command to send form
13745         letters.  Requested by Uwe Siart.
13746         (message-send-mail-function): Doc fix.  Add "Other" custom option.
13747
13748 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
13749
13750         * Update copyright years.
13751
13752 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
13753
13754         Sync from EMACS_22_BASE.
13755
13756         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
13757
13758 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
13759
13760         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
13761         empty author.
13762
13763 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
13764
13765         * gnus-registry.el (gnus-registry-marks): Add variable for
13766         customization of marks and their appearance.
13767         (gnus-registry-read-mark): Use it.
13768         (gnus-registry-do-marks): Add utility function to loop through
13769         `gnus-registry-marks'.
13770         (gnus-registry-install-shortcuts-and-menus): Add function to install
13771         shortcuts and menus.
13772         (gnus-registry-initialize): Use it.
13773         (gnus-registry-default-mark): Clarify documentation.
13774
13775 2008-02-29  Glenn Morris  <rgm@gnu.org>
13776
13777         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
13778         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
13779         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
13780         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
13781         Change defcustom :version from 23.0 to 23.1.
13782
13783 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
13784
13785         * gnus-registry.el (gnus-registry-follow-group-p)
13786         (gnus-registry-post-process-groups): Add functions to aid registry
13787         splitting and improve logging.  Clarify behavior in function
13788         documentation.
13789         (gnus-registry-split-fancy-with-parent): Use them.
13790
13791 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13792
13793         * gnus-art.el: Use with-current-buffer.
13794
13795 2008-02-27  David Engster  <dengste@eml.cc>
13796
13797         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
13798         Express real group name in the response.
13799
13800 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13801
13802         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
13803         (nnmairix-last-server, nnmairix-current-server): Defvar them.
13804         (nnmairix-goto-original-article): Defvar gnus-registry-install and
13805         autoload gnus-registry-fetch-group when compiling.
13806         (nnmairix-request-group-with-article-number-correction):
13807         Remove unreferenced argument passed to nnmairix-call-backend.
13808
13809 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
13810
13811         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
13812         (mm-uu-extract): Improve face for low color ttys.
13813         Reported by Sascha Wilde.
13814
13815 2008-02-27  Glenn Morris  <rgm@gnu.org>
13816
13817         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
13818         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
13819         variables to defconsts.  Convert comments to doc-strings.
13820         (nnmairix-last-server, nnmairix-current-server): Convert from free
13821         variables to defvars.  Convert comments to doc-strings.
13822         (gnus-registry-fetch-group): Autoload.
13823         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
13824         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
13825         (nnmairix-widget-build-editable-fields): Use car cddr rather than
13826         caddr.
13827         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
13828         nnmairix-request-group-with-article-number-correction call.
13829         (nnmairix-fast, nnmairix-group): New, less general names, for free
13830         variables passed from nnmairix-request-group to
13831         nnmairix-request-group-with-article-number-correction.  Declare.
13832         (nnmairix-request-group-with-article-number-correction):
13833         Use nnmairix-fast, nnmairix-group rather than fast, group.
13834
13835 2008-02-26  David Engster  <dengste@eml.cc>
13836
13837         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
13838         version 0.5.
13839
13840 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
13841
13842         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
13843         instead of making an extra function call.  Don't add the current group
13844         to articles only when they have the group.  Use
13845         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
13846         Reported by David <de_bb@arcor.de>.
13847
13848 2008-02-24  Miles Bader  <miles@gnu.org>
13849
13850         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
13851         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
13852         (mm-find-mime-charset-region):
13853         * mm-bodies.el (mm-encode-body):
13854         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
13855
13856 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13857
13858         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
13859         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
13860
13861 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
13862
13863         * mail-source.el (mail-source-delete-incoming): Change default.
13864         Supplement doc string.
13865
13866         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
13867
13868 2008-02-14  Glenn Morris  <rgm@gnu.org>
13869
13870         * time-date.el (format-seconds): New function.
13871
13872 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
13873
13874         * nnmail.el (nnmail-message-id-cache-file): Derive from
13875         `gnus-home-directory'.
13876
13877 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
13878
13879         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
13880         Document negative prefix.
13881
13882         * gnus-group.el (gnus-group-read-group): Document negative prefix.
13883
13884 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13885
13886         * message.el (message-unsent-separator): Add the Exim bounce
13887         separator.
13888
13889 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
13890
13891         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
13892         list.
13893         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
13894         recipient/signer list.
13895
13896 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13897
13898         * Makefile.in (datarootdir): Define.
13899         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
13900         name that might contain whitespace.
13901
13902 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
13903
13904         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
13905         fbound (Emacs 23 unicode), signal an error.
13906
13907 2008-02-08  Glenn Morris  <rgm@gnu.org>
13908
13909         * gnus-art.el (pgg-display-output-buffer): Declare as function.
13910
13911 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
13912
13913         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
13914         ports to the calls to `netrc-machine-user-or-password' in addition to
13915         "imap" and "imaps".
13916
13917 2008-02-01  Zhang Wei  <id.brep@gmail.com>
13918
13919         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
13920
13921         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
13922
13923 2008-02-01  Kenichi Handa  <handa@m17n.org>
13924
13925         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
13926         rfc2104-hexstring-to-bitstring and changed to return a byte list.
13927         (rfc2104-hash): Convert the result of concat to unibyte string.
13928
13929 2008-02-01  Dave Love  <fx@gnu.org>
13930
13931         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
13932         coding-system-for-read.
13933         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
13934
13935 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
13936
13937         * gnus.el (gnus-group-startup-message): Add `find-image' call before
13938         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
13939         <hanche@math.ntnu.no>.
13940
13941 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13942
13943         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
13944
13945         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
13946
13947 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
13948
13949         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
13950         * message.el (message-beginning-of-line): Use featurep instead of bound
13951         tests in order to resolve conditionals at compile time.
13952
13953 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
13954
13955         * mail-source.el (mail-sources): Add `group' choice.
13956
13957         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
13958         parameter `in-group' to control into which group the articles go.
13959         Add treatment of `group' mail-source.
13960
13961 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13962
13963         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
13964
13965         * mm-decode.el (mm-dissect-buffer): Decode description.
13966
13967         * mml.el (mml-to-mime): Encode message header first.
13968
13969 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13970
13971         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
13972         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
13973
13974         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
13975         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
13976
13977 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
13978
13979         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
13980
13981 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13982
13983         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
13984         prefix keys.
13985         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
13986         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
13987         gnus-xmas.el.
13988
13989         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
13990         (gnus-xmas-article-describe-bindings): New function.
13991         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
13992         gnus-xmas-article-describe-bindings.
13993
13994         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
13995
13996 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
13997
13998         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
13999         Add new variables for article mark management.
14000         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
14001         list of extra data entries which, when present, will indicate that the
14002         article ID should not be trimmed from the registry.
14003         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
14004         functions.
14005         (gnus-registry-read-mark): New function to read a mark name from the
14006         user.
14007         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
14008         (gnus-registry-set-article-mark-internal): New functions to add and
14009         remove marks.
14010         (gnus-registry-get-article-marks): New function to show the marks for
14011         an article, or retrieve them for further use.
14012
14013 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14014
14015         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
14016         keys when no argument is given.
14017
14018 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
14019
14020         * imap.el (imap-ping-server): New variable.
14021         (imap-opened): On add extra ping if imap-ping-server is non-nil.
14022         (imap-ping-server): Minor doc string fixes.
14023
14024 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
14025
14026         * imap.el (imap-ping-server): New function.
14027         (imap-opened): Call imap-ping-server.
14028
14029 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
14030
14031         * gnus-sum.el (gnus-article-sort-by-random)
14032         (gnus-thread-sort-by-random): Fix doc strings.
14033         Reported by jidanni@jidanni.org.
14034
14035 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14036
14037         * gnus-art.el (gnus-article-describe-bindings): New function.
14038         (gnus-article-read-summary-keys): Use it.
14039         (gnus-article-mode-map): Bind `C-h b' to it.
14040
14041 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14042
14043         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
14044         XEmacs.
14045         (gnus-article-describe-key, gnus-article-describe-key-briefly):
14046         Protect against non-character events.
14047
14048         * lpath.el: Fbind map-keymap for Emacs 21.
14049
14050 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
14051
14052         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
14053         New command.
14054         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
14055         instead of END.  Change name of the temp file.
14056         (gnus-group-gmane-group-download-format): Add doc string.  Make it
14057         customizable.
14058
14059 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14060
14061         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
14062         bind `S W' to gnus-article-wide-reply-with-original; set default
14063         binding to gnus-article-read-summary-send-keys.
14064         (gnus-article-read-summary-keys): Fix the order of keys; display
14065         continuation keys correctly in the echo area; describe bindings
14066         correctly when keys end with `C-h'.
14067         (gnus-article-read-summary-send-keys): New function.
14068         (gnus-article-describe-key, gnus-article-describe-key-briefly):
14069         Work for gnus-article-read-summary-send-keys; display continuation keys
14070         correctly in the echo area.
14071         (gnus-article-reply-with-original): Ignore prefix argument.
14072         (gnus-article-wide-reply-with-original): New function.
14073
14074         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
14075         Emacs 21.
14076
14077 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14078
14079         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
14080         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
14081
14082 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
14083
14084         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
14085         (gnus-group-read-ephemeral-gmane-group): New command.
14086
14087 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
14088
14089         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
14090
14091 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
14092
14093         * message.el (message-send-mail-function): Increase custom version.
14094
14095         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
14096         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
14097
14098 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
14099
14100         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
14101         for the cases where imap-authenticate is called with a nil buffer
14102         parameter.
14103
14104 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14105
14106         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
14107         html parts correctly; support forwarded messages.
14108         (gnus-article-browse-html-article): Remove work buffers.
14109
14110         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
14111         compiling.
14112         (netrc-bound-and-true-p): New macro.
14113         (netrc-parse): Use it instead of bound-and-true-p that is not available
14114         in XEmacs 21.4.
14115
14116 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
14117
14118         * gnus-registry.el (gnus-registry-mark-article)
14119         (gnus-registry-article-marks): Add functionality to mark articles
14120         through the Gnus registry.
14121
14122         * encrypt.el: Clarify documentation for the new pgg method.
14123         (encrypt-file-alist): Add PGG option.
14124         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
14125         functionality.  Abstract password key and messaging to external
14126         functions.
14127         (encrypt-password-key, encrypt-get-passphrase-if-needed)
14128         (encrypt-message-method-and-cipher): Add new convenience external
14129         functions.
14130         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
14131         (encrypt-pgg-process-buffer): Add PGG functionality glue.
14132
14133         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
14134         (netrc-parse): Use encrypt-file-alist to determine if
14135         encrypt-find-model or encrypt-insert-file-contents should be used.
14136
14137         * encrypt.el: Clarify documentation.  Load password-cache or
14138         password, whichever one is found first, instead of autoloading.
14139
14140 2007-12-19  Glenn Morris  <rgm@gnu.org>
14141
14142         * mml.el (message-options-set, message-narrow-to-head)
14143         (message-in-body-p, message-mail-p, message-encode-message-body):
14144         Autoload.
14145         (message-remove-header, message-narrow-to-headers-or-head)
14146         (message-subscribed-p, message-make-mail-followup-to)
14147         (message-position-on-field, message-news-p)
14148         (message-options-set-recipient, message-generate-headers)
14149         (message-sort-headers): Declare as functions.
14150
14151 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
14152
14153         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
14154         convention in doc string.
14155
14156 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14157
14158         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
14159         title to html parts.
14160         (gnus-article-browse-html-article): Pass message header to it.
14161
14162         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
14163
14164 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
14165
14166         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
14167         or password compatible with XEmacs.
14168
14169 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
14170
14171         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
14172         format document.
14173         (gnus-mime-delete-part): Don't write description line if empty.
14174         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
14175
14176 2007-12-14  Johan Bockgård  <bojohan@gnu.org>
14177
14178         * gnus-sum.el (gnus-summary-mark-unread-as-read)
14179         (gnus-summary-mark-read-and-unread-as-read)
14180         (gnus-summary-mark-current-read-and-unread-as-read)
14181         (gnus-summary-mark-unread-as-ticked): Doc fix.
14182         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
14183
14184 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
14185
14186         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
14187         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
14188
14189 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
14190
14191         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
14192         yes-or-no-p.
14193
14194 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14195
14196         * mm-decode.el (mm-add-meta-html-tag): New function.
14197         (mm-save-part-to-file, mm-pipe-part): Use it.
14198
14199         * gnus-art.el (gnus-article-browse-delete-temp-files):
14200         Use gnus-y-or-n-p instead of y-or-n-p.
14201         (gnus-article-browse-html-parts): Work with message/external-body; use
14202         mm-add-meta-html-tag.
14203
14204 2007-12-11  Glenn Morris  <rgm@gnu.org>
14205
14206         * gnus-cache.el: Require gnus-sum not just when compiling.
14207
14208         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
14209
14210         * gnus-int.el (gnus-server-opened, gnus-status-message):
14211         Move definitions before use.
14212
14213         * mm-decode.el: Require gnus-util.
14214         (mm-remove-part): Only call delete-annotation on XEmacs.
14215
14216         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
14217
14218         * nnmail.el: Require gnus-int.
14219
14220         * spam.el: Move `require's before `eval-when-compile's.
14221
14222         * gnus-ems.el (gnus-alive-p):
14223         * gnus-fun.el (message-goto-eoh):
14224         * gnus-util.el (gnus-group-name-decode):
14225         * mail-source.el (gnus-compress-sequence):
14226         * message.el (Info-goto-node, format-spec):
14227         * mm-bodies.el (message-options-get):
14228         * mm-decode.el (mm-view-pkcs7):
14229         * mm-util.el (gmm-write-region):
14230         * mml-smime.el (mml-compute-boundary)
14231         (gnus-completing-read-with-default):
14232         * mml.el (widget-button-press, gnus-make-hashtable):
14233         * mml1991.el (mm-decode-content-transfer-encoding)
14234         (mm-encode-content-transfer-encoding)
14235         (message-options-get, message-options-set):
14236         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
14237         * nnfolder.el (gnus-request-group):
14238         * nnheader.el (ietf-drums-unfold-fws):
14239         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
14240         * smime.el (gnus-run-mode-hooks):
14241         * spam-stat.el (gnus-message): Autoload.
14242
14243         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
14244         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
14245         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
14246         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
14247         Add declare-function compatibility definition.
14248
14249         * gnus-cache.el (nnvirtual-find-group-art):
14250         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
14251         (gnus-add-image, gnus-add-wash-type):
14252         * gnus-group.el (nnkiboze-score-file):
14253         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
14254         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
14255         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
14256         (message-tokenize-header, gnus-get-buffer-create)
14257         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
14258         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
14259         * gnus.el (gnus-group-decoded-name):
14260         * mail-source.el (imap-capability):
14261         * mm-bodies.el (message-options-set):
14262         * mm-decode.el (gnus-configure-windows):
14263         * mm-extern.el (message-goto-body):
14264         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
14265         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
14266         (epg-sub-key-validity, message-options-set):
14267         * mml.el (widget-event-point, gnus-configure-windows):
14268         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
14269         * mml2015.el (epg-check-configuration, epg-configuration)
14270         (message-options-set):
14271         * nndb.el (nndb-request-article):
14272         * nnfolder.el (gnus-request-create-group):
14273         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
14274         * nnmaildir.el (gnus-group-mark-article-read):
14275         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
14276         * rfc1843.el (message-fetch-field):
14277         * spam.el (gnus-extract-address-components):
14278         Declare as functions.
14279
14280 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14281
14282         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
14283
14284         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
14285
14286         * lpath.el: Fbind run-mode-hooks for Emacs 21;
14287         bind show-trailing-whitespace for XEmacs.
14288
14289 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
14290
14291         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
14292         new no-op macro for backward compatibility.
14293
14294         * imap.el (imap-string-to-integer): New function.
14295
14296 2007-12-09  Glenn Morris  <rgm@gnu.org>
14297
14298         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
14299
14300         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
14301         * message.el, mm-view.el, sieve-manage.el, smime.el:
14302         Add declare-function compatibility definition.
14303
14304         * gnus-art.el (w3-region, w3m-region, Info-menu):
14305         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
14306         * gnus-sum.el (gnus-get-predicate):
14307         * gnus-util.el (mm-append-to-file, w32-focus-frame):
14308         * message.el (mail-abbrev-in-expansion-header-p):
14309         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
14310         (w3m-detect-meta-charset, w3m-region):
14311         * sieve-manage.el (password-read, password-cache-add)
14312         (password-cache-remove):
14313         * smime.el (password-read-and-add): Declare as functions.
14314
14315 2007-12-08  David Kastrup  <dak@gnu.org>
14316
14317         * gnus-sum.el (gnus-summary-simplify-subject-query):
14318         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
14319         `message'.
14320
14321 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14322
14323         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
14324         it to bind idna-program, installation-directory, defined-colors, and
14325         face-attribute for XEmacs of the version that compiles defcustom forms.
14326
14327 2007-12-07  Glenn Morris  <rgm@gnu.org>
14328
14329         * gnus-art.el (article-make-date-line): Revert previous change.
14330
14331 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
14332
14333         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
14334
14335 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
14336
14337         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
14338         Call gnus-add-to-range ranges only once with a prepared article-list.
14339
14340 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
14341
14342         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
14343         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
14344         group names with backslashes.
14345         Reported by Tassilo Horn <tassilo@member.fsf.org>.
14346
14347 2007-12-06  Deepak Goel  <deego3@gmail.com>
14348
14349         * gnus-art.el (article-make-date-line):
14350         * gnus-start.el (gnus-load):
14351         * pop3.el (pop3-read-response): Fix buggy call to `error'.
14352
14353 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14354
14355         * gnus-art.el (gnus-use-idna):
14356         * gnus-start.el (gnus-site-init-file):
14357         * message.el (message-use-idna):
14358         * mm-uu.el (mm-uu-hide-markers):
14359         * smiley.el (smiley-style): Revert changes that suppress warnings.
14360
14361 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14362
14363         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
14364         specify charset to html source.
14365         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
14366
14367 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14368
14369         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
14370         idna-program in order to suppress byte compile warning issued by XEmacs
14371         that came to byte compile the default value section of defcustom forms
14372         recently.
14373
14374         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
14375         value of installation-directory.
14376
14377         * message.el (message-use-idna): Don't directly refer to the value of
14378         idna-program.
14379
14380         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
14381
14382         * smiley.el (smiley-style): Don't directly call face-attribute.
14383
14384 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
14385
14386         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
14387
14388         * gnus-dired.el: Reduce Gnus dependencies.
14389         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
14390         Don't require.  Use autoloads instead.
14391         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
14392         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
14393         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
14394         (gnus-dired-mode): Adjust doc string.
14395         (gnus-dired-mail-mode): New variable.
14396         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
14397         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
14398         (gnus-dired-mail-buffers): New function.  Return mail or message
14399         composition buffers.
14400         (gnus-dired-attach): Use it.
14401         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
14402         NO-DECODE.
14403         (gnus-dired-print): Use `gnus-print-buffer' depending on
14404         `gnus-dired-mail-mode'.
14405
14406 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14407
14408         * rfc2047.el (rfc2047-encoded-word-regexp)
14409         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
14410         explaining what regexp patterns are for.
14411
14412 2007-12-04  Glenn Morris  <rgm@gnu.org>
14413
14414         * password.el: Move to password-cache.el.
14415
14416         * mml1991.el (password-read, password-cache-add, password-cache-remove):
14417         * mml2015.el (password-read, password-cache-add, password-cache-remove):
14418         * mml-smime.el (password-read, password-cache-add)
14419         (password-cache-remove):
14420         No need to autoload, since mml-sec requires password.
14421
14422         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
14423         * message.el (gnus-extract-address-components):
14424         * mml-smime.el (gnus-extract-address-components): Define for compiler.
14425
14426         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
14427         password.
14428
14429 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
14430
14431         * mailcap.el: Reduce dependencies.
14432         (mail-header-parse-content-type): Autoload.
14433         (mailcap-delete-duplicates): New alias.
14434         (mailcap-mime-info): Add optional argument NO-DECODE.
14435         (mailcap-mime-types): Use mailcap-delete-duplicates.
14436
14437         * message.el (message-ignored-supersedes-headers): Add "X-ID".
14438
14439 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
14440
14441         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
14442         (imap-parse-status): Upcase status-att for servers that sends them
14443         lower-case (e.g., MS Exchange 2007).
14444
14445 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14446
14447         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
14448         function.
14449
14450         * gnus-uu.el (gnus-uu-decode-yenc): New command.
14451         (gnus-uu-yenc-article): New function.
14452
14453         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
14454
14455         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
14456
14457 2007-12-02  Glenn Morris  <rgm@gnu.org>
14458
14459         * binhex.el (binhex): New custom group.
14460         (binhex-decoder-program, binhex-decoder-switches)
14461         (binhex-use-external): Move to the binhex custom group.
14462
14463         * uudecode.el (uudecode): New custom group.
14464         (uudecode-decoder-program, uudecode-decoder-switches)
14465         (uudecode-use-external): Move to the uudecode custom group.
14466
14467         * netrc.el (top-level): Don't load `encrypt' features.
14468         (netrc-parse): Don't use encrypt.
14469         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
14470
14471         * encrypt.el: Remove file.
14472
14473 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
14474
14475         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
14476         matches on patches.
14477
14478         * gnus-art.el (gnus-article-browse-html-article):
14479         Mention `mm-text-html-renderer' in the doc string.
14480
14481         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
14482         string.  Add comments.
14483
14484         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
14485         if rhs is ASCII.
14486
14487 2007-12-01  Glenn Morris  <rgm@gnu.org>
14488
14489         * mail-source.el (top-level): Require format-spec before
14490         eval-when-compile.
14491
14492 2007-11-30  Glenn Morris  <rgm@gnu.org>
14493
14494         * encrypt.el: Require password, rather than autoloading password-read.
14495
14496 2007-11-29  Glenn Morris  <rgm@gnu.org>
14497
14498         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
14499         (sasl-make-client, sasl-next-step, sasl-step-data)
14500         (sasl-step-set-data): Declare as functions.
14501
14502 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
14503
14504         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
14505
14506 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
14507
14508         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
14509         certs should be verified and what is to be done in the event of a
14510         verification failure.
14511
14512         * gnus.el (gnus-method-to-server): Add an optional parameter so the
14513         caller can indicate whether the cache should be disregarded for this
14514         call.  This way the result of the call is reproducible at all times and
14515         can be considered a canonical server name for the supplied method.
14516         (gnus-agent-method-p): Canonicalize server names by pushing their
14517         method through `gnus-method-to-server' using the no-cache argument.
14518
14519         * gnus-srvr.el (gnus-server-insert-server-line):
14520         Call `gnus-method-to-server' with `no-cache' argument.
14521
14522         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
14523         gnus-agent-possibly-synchronize-flags as this should be called when the
14524         server is actually being opened.
14525         (gnus-agent-possibly-synchronize-flags)
14526         (gnus-agent-possibly-synchronize-flags-server): Move check for the
14527         flags file of an agentized server to the latter function.
14528
14529         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
14530         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
14531         after a connection has been established successfully.
14532
14533 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14534
14535         * gnus-art.el (article-display-face): Force to display face if called
14536         interactively; check if gnus-article-x-face-too-ugly matches author.
14537         (article-display-x-face): Display face even if From header is missing
14538         as article-display-face does.
14539
14540 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
14541
14542         * hashcash.el (message-narrow-to-headers-or-head)
14543         (message-fetch-field, message-goto-eoh)
14544         (message-narrow-to-headers): Declare as functions.
14545
14546 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
14547
14548         * mail-source.el (mail-sources): Default to fetch from file for
14549         compatibility with default of nnmail-spool-file.
14550
14551 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14552
14553         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
14554         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
14555         to look for encoded word that should be encoded again.
14556         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
14557         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
14558         encoding pattern.
14559         (rfc2047-decode-region): Switch strict regexp and loose one according
14560         to rfc2047-allow-irregular-q-encoded-words.
14561
14562 2007-11-25  Romain Francoise  <romain@orebokech.com>
14563
14564         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
14565
14566 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
14567
14568         * tls.el (tls-program): Provide more custom choices from
14569         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
14570         (tls-process-connection-type, tls-success): Remove "*" in doc string.
14571
14572 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14573
14574         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
14575         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
14576
14577         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
14578         `nnmail-spool-file'.
14579
14580         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
14581         `nnmail-spool-file'.
14582
14583         * gnus-move.el (gnus-change-server): Ditto.
14584
14585         * gnus-kill.el (gnus-batch-score): Ditto.
14586
14587         * gnus-cache.el (gnus-jog-cache): Ditto.
14588
14589         * gnus-msg.el (gnus-summary-reply):
14590         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
14591
14592 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14593
14594         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
14595         version.  Minor improvement to doc strings.
14596         (tls-program): Add comment.
14597
14598 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
14599
14600         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
14601         (tls-checktrust): New variable.  Check if GNU TLS complained about a
14602         mismatch between the hostname provided in the certificate and the name
14603         of the host connnecting to.
14604         (open-tls-stream): Use them.  Check certificates against trusted root
14605         certificates.
14606
14607 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14608
14609         * gnus-cache.el (gnus-cache-generate-nov-databases):
14610         Use nnml-generate-nov-databases-directory instead of
14611         nnml-generate-nov-databases-1.
14612
14613 2007-11-24  Glenn Morris  <rgm@gnu.org>
14614
14615         * message.el (message-tool-bar-retro): Update for rename
14616         mail_send.xpm->mail-send.xpm.
14617
14618 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
14619
14620         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
14621         `smime-ldap-search' for Emacs 22 and up.
14622
14623 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14624
14625         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
14626
14627         * message.el (message-send-mail-function): Fix error convention.
14628         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
14629         (message-widen-reply, message-send-mail, message-talkative-question)
14630         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
14631         (message-clone-locals, message-send-news): Use with-current-buffer.
14632         (message-insert-or-toggle-importance): Remove unused var `valid'.
14633         (message-make-references): Remove unused var `new-references'.
14634         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
14635
14636 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
14637
14638         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
14639         (spam-split-symbolic-return-positive): Reflow docstring.
14640         (spam-backends, spam-summary-exit-behavior)
14641         (spam-mark-ham-unread-before-move-from-spam-group)
14642         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
14643         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
14644         (spam-clear-cache, spam-backend-check, spam-install-backend)
14645         (spam-install-statistical-backend, spam-list-of-processors)
14646         (spam-group-processor-p, spam-split, spam-bogofilter-score)
14647         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
14648         (spam-check-crm114, spam-initialize, spam-unload-hook):
14649         Fix typos in docstrings.
14650
14651 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14652
14653         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
14654         been checked if they have never been read and those group levels are
14655         higher than the one that a user specified.
14656
14657 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14658
14659         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
14660         foreign groups unless a group level is specified by a user.
14661         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
14662
14663 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
14664
14665         * message.el (message-send-mail-function): Require sendmail.
14666
14667 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
14668
14669         * message.el (message-send-mail-function): Check for smtpmail too.
14670
14671         * utf7.el (utf7-encode, utf7-decode): Use coding system
14672         `utf-7'/`utf-7-imap' from utf-7.el' if available.
14673
14674         * message.el (message-send-mail-function): New function.
14675         (message-send-mail-function): Set default using
14676         message-send-mail-function.  Adjust doc string.
14677         (message-send-mail-with-mailclient): New function.
14678
14679 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
14680
14681         * smime.el (from):
14682         * rfc2047.el (message-posting-charset):
14683         * qp.el (mm-use-ultra-safe-encoding):
14684         * pop3.el (parse-time-months):
14685         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
14686         * nnml.el (files):
14687         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
14688         (jka-compr-compression-info-list, ange-ftp-path-format)
14689         (efs-path-regexp):
14690         * nndiary.el (files):
14691         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
14692         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
14693         (epg-digest-algorithm-alist, inhibit-redisplay)
14694         (password-cache-expiry):
14695         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
14696         (pgg-output-buffer, password-cache-expiry):
14697         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
14698         (efs-path-regexp):
14699         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
14700         (inhibit-redisplay):
14701         * mm-uu.el (file-name, start-point, end-point, entry)
14702         (gnus-newsgroup-name, gnus-newsgroup-charset):
14703         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
14704         (latin-unity-ucs-list):
14705         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
14706         (mm-uu-binhex-decode-function):
14707         * message.el (gnus-message-group-art, gnus-list-identifiers)
14708         (rmail-enable-mime-composing, gnus-local-organization)
14709         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
14710         (gnus-read-active-file, facemenu-add-face-function)
14711         (facemenu-remove-face-function, gnus-article-decoded-p)
14712         (tool-bar-mode):
14713         * mail-source.el (display-time-mail-function):
14714         * gnus-util.el (nnmail-pathname-coding-system)
14715         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
14716         (gnus-original-article-buffer, gnus-user-agent)
14717         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
14718         (xemacs-codename, sxemacs-codename, emacs-program-version):
14719         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
14720         * gnus-start.el (gnus-agent-covered-methods)
14721         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
14722         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
14723         (gnus-newsgroup-headers, gnus-group-list-mode)
14724         (gnus-group-mark-positions, gnus-newsgroup-data)
14725         (gnus-newsgroup-unreads, nnoo-state-alist)
14726         (gnus-current-select-method, mail-sources)
14727         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
14728         (nnmail-spool-file, gnus-cache-active-hashtb):
14729         * gnus-mh.el (mh-lib-progs):
14730         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
14731         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
14732         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
14733         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
14734         (gnus-group-buffer):
14735         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
14736         (font-lock-set-defaults):
14737         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
14738         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
14739         (gnus-summary-post-menu, total-parts, type, condition, length):
14740         * gnus-agent.el (gnus-agent-read-agentview):
14741         * flow-fill.el (show-trailing-whitespace):
14742         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
14743         eval-and-compile wrappers for byte compiler pacifiers.
14744
14745         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
14746         (mm-display-inline-fontify): Check for featurep 'xemacs not
14747         extent-list.
14748
14749         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
14750         itimer-list.
14751         (mm-create-image-xemacs): Only do something for XEmacs.
14752         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
14753
14754         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
14755
14756         * gnus-registry.el (gnus-adaptive-word-syntax-table):
14757         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
14758
14759 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
14760
14761         * nnimap.el (nnimap-split-download-body):
14762         * gnus-demon.el (gnus-demon):
14763         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
14764
14765 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14766
14767         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
14768         New macros.
14769         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
14770         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
14771         copy data from unibyte buffer to multibyte current buffer.
14772         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
14773         to copy data from unibyte current buffer to multibyte buffer.
14774         (nntp-make-process-buffer): Make process buffer unibyte.
14775
14776         * pop3.el (pop3-open-server): Fix typo in Lisp code.
14777
14778 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
14779
14780         * pop3.el (pop3-open-server): Accept and process data more robustly at
14781         connection start to avoid spurious "POP SSL connection failed" errors.
14782
14783 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14784
14785         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
14786         read group names.
14787
14788 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
14789
14790         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
14791
14792 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14793
14794         * nnmail.el (nnmail-parse-active): Make group names unibyte.
14795         (nnmail-save-active): Use a unibyte buffer when saving active file,
14796         which may contain non-ASCII group names.
14797
14798         * nnml.el (nnml-request-group): Decode group names in messages.
14799
14800 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
14801
14802         * message.el (message-citation-line-function)
14803         (message-insert-formatted-citation-line): Fix spelling of
14804         `message-insert-formated-citation-line'.
14805
14806 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
14807
14808         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
14809
14810 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14811
14812         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
14813         nnmail-pathname-coding-system.
14814
14815         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
14816         that a user enters; decode group names in messages.
14817
14818         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
14819
14820 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
14821
14822         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
14823
14824         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
14825
14826         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
14827         risky local variable.
14828
14829         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
14830
14831 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
14832
14833         * encrypt.el: Improve documentation to fix function name typo.
14834         Reported by Daiki Ueno <ueno@unixuser.org>.
14835
14836 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14837
14838         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
14839         even if the point is not in the last page of an article.
14840         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
14841         back to the previous page.
14842
14843 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
14844
14845         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
14846
14847 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14848
14849         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
14850
14851 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14852
14853         * message.el (message-check-news-body-syntax):
14854         Avoid mm-string-as-multibyte.
14855         (message-hide-headers): Don't assume (point-min)==1.
14856
14857 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
14858
14859         * message.el (message-remove-blank-cited-lines): Fix if remove is
14860         given.
14861         (message-bogus-address-regexp): New variable.
14862         (message-bogus-recipient-p): New function.
14863         (message-check-recipients): New command.
14864         (message-syntax-checks): Add `bogus-recipient'.
14865         (message-fix-before-sending): Add `bogus-recipient'.
14866
14867         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
14868         (gnus-treat-body-boundary): Don't test window-system.
14869
14870 2007-10-28  Leo Liu  <sdl.web@gmail.com>
14871
14872         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
14873
14874 2007-10-28  Miles Bader  <miles@gnu.org>
14875
14876         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
14877         at compile-time too.
14878
14879 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
14880
14881         * gnus-msg.el (gnus-message-setup-hook):
14882         Add `message-remove-blank-cited-lines' to options.
14883
14884 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
14885
14886         * message.el (message-remove-blank-cited-lines): New function.
14887         Suggested by Karl Plästerer.
14888
14889 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14890
14891         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
14892         mapc.
14893
14894         * imap.el (imap-open): Replace mapcar called for effect with mapc.
14895         (top-level): Use mapc to set functions to be traced for debugging.
14896
14897         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
14898         called for effect with while loop.
14899
14900         * message.el (message-talkative-question): Replace mapcar called for
14901         effect with mapc.
14902
14903         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
14904         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
14905         called for effect with dolist.
14906
14907         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
14908
14909         * nndiary.el: Use dolist instead of mapcar to add diary headers to
14910         gnus-extra-headers and nnmail-extra-headers.
14911
14912         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
14913         called for effect with dolist.
14914         (top-level): Use mapc to set functions to be traced for debugging.
14915
14916         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
14917         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
14918         dolist.
14919
14920         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
14921         Replace mapcar called for effect with mapc.
14922         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
14923         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
14924         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
14925         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
14926
14927         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
14928         remove-if that's a cl function.
14929
14930         * webmail.el (webmail-debug): Replace mapcar called for effect with
14931         dolist.
14932
14933         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
14934         with mapc.
14935
14936 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14937
14938         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
14939         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
14940         with while loop.
14941
14942         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
14943         functions from article-* functions.
14944         (gnus-multi-decode-header): Replace mapcar called for effect with
14945         dolist.
14946
14947         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
14948         (gnus-bookmark-show-details): Replace mapcar called for effect with
14949         while loop.
14950
14951         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
14952         called for effect with while loop.
14953
14954         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
14955         with dolist.
14956
14957         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
14958         Replace mapcar called for effect with dolist.
14959
14960         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
14961
14962         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
14963         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
14964         Replace mapcar called for effect with dolist.
14965         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
14966         mapc.
14967
14968         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
14969         Replace mapcar called for effect with dolist.
14970         (gnus-topic-list): Replace mapcar called for effect with mapc.
14971
14972         * gnus.el: Use mapc instead of mapcar to add autoloads.
14973
14974 2007-10-23  Richard Stallman  <rms@gnu.org>
14975
14976         * gnus-group.el (gnus-group-highlight): Mark as risky.
14977
14978 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14979
14980         * gnus.el (gnus-server-to-method): Return method found first in
14981         gnus-newsrc-alist.
14982
14983         * gnus-art.el (gnus-article-highlight-signature)
14984         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
14985         button overlay without the front stickiness.
14986
14987 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
14988
14989         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
14990         overview buffer needed a catch to receive its throw.
14991         (gnus-agent-flush-cache): Declare as interactive to make this function
14992         easier to use.
14993
14994 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
14995
14996         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
14997         `next-line'.
14998
14999 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15000
15001         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
15002         exclude address matching message-dont-reply-to-names.
15003
15004 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15005
15006         * gnus-util.el (gnus-string<): New function.
15007
15008         * gnus-sum.el (gnus-article-sort-by-author)
15009         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
15010
15011 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15012
15013         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
15014         the frame-focus tag is set in gnus-buffer-configuration.
15015
15016 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15017
15018         * gnus-art.el (gnus-article-add-button): Make a button overlay without
15019         the front stickiness.
15020
15021 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
15022
15023         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
15024         url pattern; remove duplicate one.
15025         (gnus-article-extend-url-button): New function.
15026         (gnus-article-add-buttons): Use it.
15027         (gnus-button-push): Use concatenated url that it makes.
15028
15029 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
15030
15031         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
15032
15033 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
15034
15035         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
15036         Don't hardcode point-min==1.
15037
15038 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
15039
15040         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
15041         Fix comment about "iso8859-1".
15042
15043 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
15044
15045         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
15046         ones returned from the verify-function.
15047
15048         * mm-uu.el (mm-uu-pgp-signed-extract-1):
15049         Call mml2015-extract-cleartext-signature if extraction failed.
15050
15051 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
15052
15053         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
15054         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
15055         failed.
15056
15057 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
15058
15059         * Relicense "GPLv2 or later" files to "GPLv3 or later".
15060
15061 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
15062
15063         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
15064         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
15065         recommends to use EasyPG instead of PGG.
15066
15067         * pgg.el: Revert to revision 6.23.2.16.
15068
15069         * pgg-def.el: Revert to revision 6.6.2.14.
15070
15071         * pgg-gpg.el: Revert to revision 6.23.2.34.
15072
15073 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
15074
15075         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
15076         to mark a thread as expirable.  Add variable `hide' to handle hiding of
15077         thread for both the null and zero (kill/expire thread) universal prefix
15078         cases.
15079         (gnus-summary-expire-thread): Add new function to expire a thread,
15080         using gnus-summary-kill-thread.
15081         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
15082         shortcuts for gnus-summary-expire-thread.
15083         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
15084         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
15085
15086 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
15087
15088         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
15089         extras value, so an extras entry can be deleted.
15090         (gnus-registry-delete-extra-entry): Use it.
15091         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
15092         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
15093         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
15094         storage through the gnus-registry, and provide an appropriate API for
15095         it.
15096
15097 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15098
15099         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
15100         Suggested by Leo <sdl.web@gmail.com>.
15101
15102         * gnus.el: Do.
15103
15104 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15105
15106         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
15107         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
15108
15109         * gnus-agent.el (gnus-agent-fetch-headers): Do.
15110
15111         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
15112         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
15113
15114 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15115
15116         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
15117         newline.
15118         (nnmbox-request-accept-article): Don't change article in source buffer;
15119         narrow to header to use message-fetch-field rather than
15120         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
15121         (nnmbox-request-replace-article): Quote lines that'll be misidentified
15122         as delimiters; make sure article ends with newline.
15123         (nnmbox-delete-mail): Correct last position of article to be deleted;
15124         ignore X-Gnus-Newsgroup header in article body.
15125         (nnmbox-save-mail): Quote lines looking like delimiters at the right
15126         positions; make sure article ends with newline.
15127
15128         * message.el (message-display-abbrev): Don't infloop when a user
15129         inserts SPC in the beginning of header.
15130
15131         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
15132         coding-system-for-read and coding-system-for-write for XEmacs having no
15133         file-coding feature.
15134
15135         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
15136
15137 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
15138
15139         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
15140         list of groups not followed by default.  Fix type to be regexp.
15141         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
15142
15143 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
15144
15145         * hmac-def.el (define-hmac-function): Switch from old-style to
15146         new-style backquotes.
15147
15148         * md4.el (md4-make-step): Likewise.
15149
15150 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15151
15152         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
15153         raw-text coding system when saving .newsrc file, which may contain
15154         non-ASCII group names.
15155
15156 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15157
15158         * gnus-cus.el (gnus-score-extra): New widget.
15159         (gnus-score-extra-convert): New function.
15160         (gnus-score-customize): Use it for Extra.
15161
15162 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
15163
15164         * mml2015.el (mml2015-extract-cleartext-signature): New function.
15165         (mml2015-mailcrypt-clear-verify): Use it.
15166         (mml2015-gpg-clear-verify): Use it.
15167         (mml2015-pgg-clear-verify): Use it.
15168         (mml2015-epg-clear-verify): Replace the current part with the output
15169         from GnuPG; don't extract the plaintext by itself.
15170
15171         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
15172         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
15173         mml2015-clear-verify-function; don't touch the armor headers or
15174         dash-escaped text here.
15175
15176 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15177
15178         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
15179         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
15180         parts, or application/octet-stream as a last resort.
15181         (gnus-mime-view-part-as-type): Don't toggle display.
15182         (gnus-mime-view-part-as-charset): Don't turn off display before
15183         querying charset.
15184
15185         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
15186         stuff to undisplayer function in Emacs.
15187         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
15188
15189         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
15190         text/calendar parts.
15191
15192 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15193
15194         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
15195         decoding text/calendar parts.
15196
15197         * message.el (message-forward-make-body-mime): Always mark body as
15198         having no illegible text; remove signed-or-encrypted argument.
15199         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
15200
15201         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
15202         (mml-generate-mime-1): Don't encode body if it is specified to be in
15203         raw form; don't make buffer be unibyte when inserting multibyte string.
15204
15205 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
15206
15207         * sha1.el: Fix up comment style.
15208         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
15209         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
15210
15211         * hex-util.el: Fix up comment style.
15212         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
15213
15214         * gnus-salt.el: Use with-current-buffer.
15215         (gnus-pick-setup-message): Fix long-standing typo.
15216
15217 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15218
15219         * imap.el (imap-logout-timeout): New variable.
15220         (imap-logout, imap-logout-wait): New functions.
15221         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
15222
15223         * nnimap.el (nnimap-logout-timeout): New server variable.
15224         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
15225         nnimap-logout-timeout.
15226
15227         * gnus-art.el (gnus-article-summary-command-nosave)
15228         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
15229
15230 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15231
15232         * gnus.el (gnus-maximum-newsgroup): New variable.
15233
15234         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
15235         according to gnus-maximum-newsgroup.
15236
15237         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
15238         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
15239         Limit the range of articles according to gnus-maximum-newsgroup.
15240
15241 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
15242
15243         * gnus-art.el (gnus-sticky-article): Fix problems described in
15244         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
15245         Don't perform gnus-configure-windows here; reuse existing sticky
15246         article buffer.
15247
15248         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
15249         it doesn't exist in gnus-article-mode.
15250
15251 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15252
15253         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
15254         (gnus-agent-decoded-group-name): New function.
15255         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
15256         (gnus-agent-expire-group-1): Use it; decode group name in messages.
15257
15258 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
15259
15260         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
15261         Add binding for gnus-sticky-article.
15262         (gnus-summary-exit): Don't kill sticky article buffers.
15263
15264         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
15265         article buffer.
15266         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
15267         (gnus-kill-sticky-article-buffers): New commands.
15268
15269 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15270
15271         * nntp.el (nntp-xref-number-is-evil): New server variable.
15272         (nntp-find-group-and-number): If it is non-nil, don't trust article
15273         numbers in the Xref header.
15274
15275 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15276
15277         * gnus-agent.el (gnus-agent-read-group): New function.
15278         (gnus-agent-flush-group, gnus-agent-expire-group)
15279         (gnus-agent-regenerate-group): Use it.
15280         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
15281         nnmail-pathname-coding-system.
15282
15283 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15284
15285         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
15286
15287         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
15288         that are unread as unread, and also as selected so that information of
15289         marks having been changed by a user may be updated when exiting group.
15290
15291 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
15292
15293         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
15294
15295 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15296
15297         * gnus-art.el (gnus-mime-display-single): Pass part number that is
15298         calculated ignoring signature parts to gnus-treat-article.
15299
15300 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15301
15302         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
15303         a point here in order to keep the window start.
15304         (gnus-insert-mime-security-button): Make a button overlay without the
15305         front stickiness.
15306         (gnus-mime-display-security): Goto the end of a button.
15307
15308         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
15309
15310 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15311
15312         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
15313         group-name-at-point.
15314         (gnus-group-completing-read): New function that offers decoded
15315         non-ASCII group names for completion.
15316         (gnus-fetch-group, gnus-group-read-ephemeral-group)
15317         (gnus-group-jump-to-group, gnus-group-make-group-simple)
15318         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
15319         (gnus-group-fetch-control): Use it.
15320         (gnus-fetch-group): Use group-name-at-point for the initial value
15321         rather than the default value; use gnus-alive-p.
15322
15323         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
15324         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
15325         (gnus-summary-post-news): Use gnus-group-completing-read.
15326
15327         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
15328         (gnus-read-move-group-name): Decode group name for completion.
15329
15330 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
15331
15332         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
15333         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
15334         Yamaoka slightly modified the code).
15335
15336 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15337
15338         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
15339         (nnmail-split-incoming): Bind it.
15340
15341         * nnml.el (nnml-group-name-charset): New function.
15342         (nnml-decoded-group-name): Use it; don't decode group name if
15343         nnmail-group-names-not-encoded-p is non-nil.
15344         (nnml-encoded-group-name): New function.
15345         (nnml-group-pathname): Inline nnml-decoded-group-name.
15346         (nnml-request-expire-articles): Decode group name in message.
15347         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
15348         nnmail-pathname-coding-system.
15349         (nnml-save-mail, nnml-active-number): Work with decoded group names and
15350         not decoded ones according to nnmail-group-names-not-encoded-p.
15351         (nnml-generate-active-info): Use nnml-encoded-group-name.
15352
15353 2007-08-08  Glenn Morris  <rgm@gnu.org>
15354
15355         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
15356         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
15357         doc-strings and comments.
15358
15359 2007-07-25  Glenn Morris  <rgm@gnu.org>
15360
15361         * Relicense all FSF files to GPLv3 or later.
15362
15363 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15364
15365         * gnus-sum.el (gnus-summary-move-article):
15366         Make gnus-summary-respool-article work.
15367
15368 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
15369
15370         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
15371         string.
15372
15373 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
15374
15375         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
15376         that should be ignored when comparing distant RSS articles with local
15377         ones.
15378         (nnrss-make-hash-index): New function.  Create a hash index according
15379         to the ignored fields.
15380         (nnrss-check-group): Use it.
15381
15382 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15383
15384         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
15385
15386         * gnus-art.el (article-decode-group-name): Decode Xref header too.
15387
15388         * gnus-group.el (gnus-group-make-group): Encode group name here unless
15389         the new optional argument ENCODED is non-nil.
15390         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
15391         coding system for encoding group name.
15392         (gnus-group-make-rss-group): Pass un-encoded group name to
15393         gnus-group-make-group.
15394         (gnus-group-set-info): Tell gnus-group-make-group that group name is
15395         encoded.
15396
15397         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
15398         Encode group name to which articles are moved or copied.
15399         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
15400         coding system for encoding Newsgroup, Followup-To and Xref headers.
15401
15402         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
15403         marks; use nnheader-file-coding-system to write a file.
15404         (nnagent-retrieve-headers): Bind file-name-coding-system to
15405         nnmail-pathname-coding-system.
15406
15407         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
15408
15409         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
15410         (nnml-request-article, nnml-request-create-group)
15411         (nnml-request-rename-group, nnml-find-id)
15412         (nnml-possibly-change-directory, nnml-possibly-create-directory)
15413         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
15414         (nnml-save-marks): Use nnml-group-pathname instead of
15415         nnmail-group-pathname.
15416
15417         (nnml-request-create-group, nnml-request-expire-articles)
15418         (nnml-request-move-article, nnml-request-delete-group)
15419         (nnml-deletable-article-p, nnml-possibly-create-directory)
15420         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
15421         (nnml-open-marks): Bind file-name-coding-system to
15422         nnmail-pathname-coding-system.
15423
15424         (nnml-request-article): Pass server argument to nnml-find-group-number.
15425         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
15426         Pass server argument to nnml-possibly-create-directory.
15427         (nnml-request-accept-article): Pass server argument to
15428         nnml-active-number and nnml-save-mail.
15429         (nnml-find-group-number): Pass server argument to nnml-find-id.
15430         (nnml-request-update-info): Pass server argument to
15431         nnml-marks-changed-p.
15432
15433         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
15434         (nnml-save-mail, nnml-active-number): Add server argument.
15435
15436         (nnml-request-delete-group): Warn if group is missing.
15437         (nnml-get-nov-buffer): Decode group name.
15438         (nnml-generate-active-info): Encode group name.
15439         (nnml-open-marks): Decode group name in messages.
15440
15441 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15442
15443         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
15444         if it is not specified.
15445         (gnus-article-pipe-part, gnus-article-save-part)
15446         (gnus-article-interactively-view-part, gnus-article-copy-part)
15447         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
15448         (gnus-article-inline-part, gnus-article-save-part-and-strip)
15449         (gnus-article-replace-part, gnus-article-delete-part)
15450         (gnus-article-view-part-as-type): Pass raw prefix argument to
15451         gnus-article-part-wrapper.
15452
15453 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15454
15455         * gnus-agent.el (gnus-agent-save-active):
15456         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
15457
15458         * gnus-cache.el (gnus-cache-save-buffers)
15459         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
15460         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
15461         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
15462         (gnus-cache-braid-nov, gnus-cache-braid-heads)
15463         (gnus-cache-generate-active, gnus-cache-rename-group)
15464         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
15465         (gnus-cache-update-overview-total-fetched-for):
15466         Bind file-name-coding-system to nnmail-pathname-coding-system.
15467         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
15468         New variables.
15469         (gnus-cache-decoded-group-name): New function.
15470         (gnus-cache-file-name): Use it.
15471         (gnus-cache-generate-active): Use non-decoded group name for active.
15472
15473         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
15474         right place.
15475         (gnus-write-active-file): Don't break non-ASCII group names.
15476
15477         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
15478         nnmail-pathname-coding-system.
15479
15480         * lpath.el: Bind default-file-name-coding-system,
15481         file-name-coding-system and language-info-alist for XEmacs.
15482
15483         * gnus-uu.el (gnus-uu-decode-save): Typo.
15484
15485 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15486
15487         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
15488
15489 2007-07-14  David Kastrup  <dak@gnu.org>
15490
15491         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
15492         finishing actions if we did not edit the article.
15493
15494 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15495
15496         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
15497         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
15498         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
15499         (gnus-agent-flush-group, gnus-agent-flush-cache)
15500         (gnus-agent-fetch-headers, gnus-agent-load-alist)
15501         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
15502         (gnus-agent-retrieve-headers, gnus-agent-request-article)
15503         (gnus-agent-regenerate-group)
15504         (gnus-agent-update-files-total-fetched-for)
15505         (gnus-agent-update-view-total-fetched-for):
15506         Bind file-name-coding-system to nnmail-pathname-coding-system.
15507         (gnus-agent-group-pathname): Don't encode file names by
15508         nnmail-pathname-coding-system.
15509         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
15510         coding-system-for-write instead of buffer-file-coding-system to
15511         gnus-agent-file-coding-system.
15512
15513         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
15514         Decode group name.
15515
15516         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
15517
15518         * gnus-start.el (gnus-update-active-hashtb-from-killed)
15519         (gnus-read-newsrc-el-file): Make group names unibyte.
15520
15521         * nnmail.el (nnmail-group-pathname): Don't encode file names by
15522         nnmail-pathname-coding-system.
15523
15524         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
15525         (nnrss-request-delete-group): Bind file-name-coding-system to
15526         nnmail-pathname-coding-system.
15527         (nnrss-read-server-data, nnrss-read-group-data):
15528         Bind file-name-coding-system correctly.
15529         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
15530
15531         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
15532         (nntp-server-to-method-cache): New variable.
15533         (nntp-group-pathname): New function that decodes non-ASCII group names.
15534         (nntp-possibly-create-directory, nntp-marks-changed-p)
15535         (nntp-save-marks, nntp-open-marks): Use it.
15536         (nntp-possibly-create-directory, nntp-open-marks):
15537         Bind file-name-coding-system to nnmail-pathname-coding-system.
15538         (nntp-open-marks): Decode group names when bootstrapping marks.
15539
15540         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
15541         Newsgroups and Followup-To headers.
15542
15543 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15544
15545         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
15546         (gnus-server-closed-face, gnus-server-denied-face)
15547         (gnus-server-offline-face): Remove variable.
15548         (gnus-server-font-lock-keywords): Use faces that are not aliases.
15549
15550         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
15551         of modifying message-stack directly for XEmacs.
15552
15553         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
15554         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
15555         if the coding-system argument is nil for XEmacs.
15556
15557         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
15558         mm-charset-override-alist.
15559
15560         * rfc2047.el: Don't require base64; require rfc2045 for the function
15561         rfc2045-encode-string.
15562         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
15563         to quote the parameter value.
15564
15565 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15566
15567         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
15568         form in gnus-group-name-charset-method-alist.
15569
15570         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
15571         overrides the default layout edit-form.
15572
15573         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
15574
15575         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
15576
15577 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15578
15579         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
15580         as unfetched articles.
15581
15582 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
15583
15584         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
15585
15586 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15587
15588         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
15589         original back end that keeps marks in the local system.
15590
15591 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15592
15593         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
15594         arg of pop-to-buffer for XEmacs.
15595         (gnus-article-read-summary-keys): Ditto; don't restore window
15596         configuration if summary command ends up with neither article buffer
15597         nor summary buffer; describe bindings if summary keys end with C-h.
15598
15599 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15600
15601         * message.el (message-fix-before-sending): Skip raw message part to be
15602         forwarded while checking illegible text.
15603         (message-forward-make-body-mime, message-forward-make-body):
15604         Mark signed or encrypted raw message as having no illegible text.
15605
15606 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15607
15608         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
15609         (gnus-message-with-timestamp-1): New macro.
15610         (gnus-message-with-timestamp): New function.
15611         (gnus-message): Use them.
15612
15613         * nnheader.el (nnheader-message): Use them.
15614
15615 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
15616
15617         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
15618         .newsrc.eld file.
15619
15620 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15621
15622         * gnus-agent.el (gnus-agent-fetch-headers)
15623         (gnus-agent-retrieve-headers):
15624         Bind gnus-decode-encoded-address-function to identity.
15625
15626         * nntp.el (nntp-send-xover-command): Recognize an xover command is
15627         available also when the server returns simply a dot.
15628
15629         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
15630
15631 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15632
15633         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
15634
15635 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15636
15637         * gnus-ems.el (gnus-x-splash): Make it work.
15638
15639         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
15640         from being used.
15641
15642         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
15643
15644 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15645
15646         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
15647         4th and the 5th arguments.
15648
15649         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
15650         the front stickiness.
15651         (gnus-article-summary-command-nosave): Correct the order of the
15652         arguments passed to pop-to-buffer.
15653         (gnus-article-read-summary-keys): Ditto; make it work properly when the
15654         summary command ends up with the article buffer.
15655
15656         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
15657         the same faces.
15658
15659 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
15660
15661         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
15662
15663 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
15664
15665         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
15666         * gnus-sum.el (gnus-summary-highlight):
15667         * pgg.el (pgg-sign-region, pgg-sign):
15668         * mail-source.el (mail-source-delete-old-incoming-confirm):
15669         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
15670
15671 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15672
15673         * gnus-art.el (gnus-mime-view-part-externally)
15674         (gnus-mime-view-part-internally): Fix predicate function passed to
15675         completing-read.
15676
15677         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
15678
15679         * gnus.el (gnus-update-message-archive-method): Add :version.
15680
15681 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15682
15683         * gnus.el (gnus-update-message-archive-method): New variable.
15684
15685         * gnus-start.el (gnus-setup-news): Update saved "archive" method
15686         according to gnus-message-archive-method if
15687         gnus-update-message-archive-method is non-nil.
15688
15689 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15690
15691         * gnus-sum.el (gnus-summary-limit-to-address): New function.
15692         Suggested by Loic Dachary <loic@dachary.org>.
15693         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
15694
15695 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15696
15697         * message.el (message-pop-to-buffer): Add switch-function argument.
15698         (message-mail): Pass switch-function argument to it.
15699
15700 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
15701
15702         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
15703         Improve doc string.
15704
15705 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15706
15707         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
15708         (gnus-header-content):
15709         * gnus-cite.el (gnus-cite-10):
15710         * gnus-srvr.el (gnus-server-closed):
15711         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
15712         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
15713         (gnus-group-mail-3-empty, gnus-group-mail-low)
15714         (gnus-group-mail-low-empty, gnus-splash):
15715         * message.el (message-header-to, message-header-cc)
15716         (message-header-subject, message-header-other, message-header-name)
15717         (message-header-xheader, message-separator, message-cited-text)
15718         (message-mml): Lighten colors of faces used for dark background.
15719
15720 2007-05-24  Simon Josefsson  <simon@josefsson.org>
15721
15722         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
15723         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
15724
15725 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15726
15727         * message.el (message-narrow-to-headers-or-head):
15728         Ignore mail-header-separator in the body.
15729
15730 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15731
15732         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
15733         same as window size.
15734
15735 2007-05-22  Kevin Ryde  <user42@zip.com.au>
15736
15737         * message.el (message-font-lock-keywords): Use message-header-xheader
15738         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
15739         ahead of the anything pattern, to get it recognized.
15740
15741 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15742
15743         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
15744         spam.el loads uses it in the compiled defadvice form.
15745
15746 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
15747
15748         * gnus-sum.el (gnus-articles-to-read)
15749         (gnus-summary-insert-old-articles): Don't truncate group name for
15750         `read-string'.
15751
15752         * gnus-util.el (gnus-limit-string): Delete this function.
15753
15754         * gnus-sum.el (gnus-simplify-subject-fully):
15755         Use `truncate-string-to-width' instead.
15756
15757 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
15758
15759         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
15760         Tell if, on summary exit, the next group has to be selected.
15761         (gnus-summary-exit): Use it.
15762
15763 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
15764
15765         * gnus-art.el (gnus-article-mode): Fix comment about displaying
15766         non-break space.
15767
15768 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15769
15770         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
15771         Check if group is not a directory.
15772         (nnfolder-request-expire-articles): Don't delete articles if the target
15773         group is not available.
15774
15775         * nnml.el (nnml-request-create-group): Properly check if group is not a
15776         file.
15777         (nnml-request-expire-articles): Don't delete articles if the target
15778         group is not available.
15779
15780         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
15781         Don't quote characters that are within parentheses.
15782
15783 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15784
15785         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
15786         (gnus-handle-ephemeral-exit): Select article according to it.
15787
15788 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
15789
15790         * message.el (message-insert-formated-citation-line): Remove newline.
15791         (message-citation-line-format): Add final \n here so that the user can
15792         avoid a blank line.
15793
15794 2007-05-03  Dan Christensen  <jdc@uwo.ca>
15795
15796         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
15797         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
15798         Update lanl/arXiv support.
15799
15800 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
15801
15802         * gnus.el: Bump version number.
15803
15804 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15805
15806         * gnus.el (gnus-version-number): Bump version.
15807
15808 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15809
15810         * gnus.el: No Gnus v0.6 is released.
15811
15812 2007-04-27  Didier Verna  <didier@xemacs.org>
15813
15814         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
15815         * gmm-utils.el (gmm-regexp-concat): ... here.
15816         * message.el: Don't require 'gnus-util.
15817         (message-dont-reply-to-names): Handle name change above.
15818         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
15819
15820 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15821
15822         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
15823         since the initial value varies according to the system.
15824
15825 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15826
15827         * mm-util.el (mm-charset-synonym-alist): Defcustom.
15828
15829 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
15830
15831         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
15832
15833 2007-04-24  Didier Verna  <didier@xemacs.org>
15834
15835         Improve the type of gnus-ignored-from-addresses.
15836         * gnus-util.el (gnus-orify-regexp): New function.
15837         * message.el (gnus-util): Require it.
15838         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
15839         * gnus-sum.el (gnus-ignored-from-addresses): New function.
15840         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
15841
15842 2007-04-24  Didier Verna  <didier@xemacs.org>
15843
15844         * gnus-sum.el:
15845         * gnus-utils.el: Fix some trailing whitespaces.
15846
15847 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15848
15849         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
15850         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
15851         article's Message-ID; refer parent article in summary buffer.
15852
15853         * message.el (message-bounce): Call mime-to-mml.
15854
15855         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
15856         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
15857         optimize and/or forms properly.
15858
15859 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
15860
15861         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
15862         URL.
15863
15864 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15865
15866         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
15867
15868 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15869
15870         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
15871         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
15872         displayed of multipart/alternative part if it is invoked from summary
15873         buffer.
15874
15875         * mm-view.el (mm-inline-text-html-render-with-w3m)
15876         (mm-inline-text-html-render-with-w3m-standalone)
15877         (mm-inline-render-with-function): Use mail-parse-charset by default.
15878
15879 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
15880
15881         * parse-time.el (parse-time-string-chars): Check if CHAR
15882         is less than the length of parse-time-syntax.
15883
15884 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15885
15886         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
15887         from gnus-newsgroup-processable.
15888
15889 2007-04-16  Didier Verna  <didier@xemacs.org>
15890
15891         * gnus-msg.el (gnus-configure-posting-styles):
15892         Handle message-signature-directory properly with :file syntax.
15893         Reported by "Leo".
15894
15895 2007-04-11  Didier Verna  <didier@xemacs.org>
15896
15897         New user option: message-signature-directory.
15898         * gnus-msg.el (gnus-configure-posting-styles): Support it.
15899         * message.el (message-insert-signature): Ditto.
15900         * message.el (message-signature-file): Doc update.
15901         * message.el (message-signature-directory): New.
15902
15903 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15904
15905         * gnus-msg.el (gnus-inews-yank-articles):
15906         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
15907
15908 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15909
15910         * message.el (message-yank-original): Make sure cited text ends with
15911         newline; don't exchange point and mark.
15912
15913 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
15914
15915         * tls.el (open-tls-stream): Properly handle case where there
15916         is no associated buffer.
15917
15918 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
15919
15920         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
15921         message-yank-original, make sure (< mark TEXT point).
15922
15923 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
15924
15925         * message.el (message-fill-column): New variable.
15926         (message-mode): Use it.  Add comment on a possible new hook.
15927
15928         * nnmail.el (nnmail-spool-file): Mark as obsolete.
15929         (nnmail-get-new-mail): Reformat.
15930
15931         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
15932
15933         * gmm-utils.el: Fix Commentary.
15934         (gmm-tool-bar-from-list): Fix typo in doc string.
15935
15936 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
15937
15938         * message.el (message-yank-original): Don't switch point and mark
15939         unnecessarily to put point and mark as documented.
15940
15941 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15942
15943         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
15944         from the message heads.
15945
15946 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
15947
15948         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
15949         article buffer does not have a window.  This may not be the best
15950         solution but is certainly better than setting the start of the null,
15951         that is the current, window.
15952
15953 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
15954
15955         * gnus-draft.el (gnus-draft-setup-hook): New hook.
15956         (gnus-draft-setup): Run it.
15957
15958         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
15959         gnus-score-fast-scoring.  Allow regexp.
15960         (gnus-score-headers): Use it.
15961
15962         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
15963         XEmacs.
15964
15965         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
15966         string.
15967         (gnus-button-alist): Also catch `<f1> k ...'.
15968         (gnus-treat-display-x-face): Fix doc string.
15969
15970 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
15971
15972         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
15973         evaluation of gnus-extended-version to ensure correct generation of the
15974         User-Agent header when message-generate-headers-first is used.
15975
15976 2007-03-24  Simon Josefsson  <simon@josefsson.org>
15977
15978         * hashcash.el (hashcash-generate-payment-async): Don't crash if
15979         hashcash-path is nil.  Don't call callback with incorrect number of
15980         parameters if val is 0.
15981
15982 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
15983
15984         * message.el (message-required-news-headers):
15985         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
15986
15987 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
15988
15989         * tls.el (open-tls-stream): In handshake-waiting loop,
15990         don't wait more if there is output available to process.
15991
15992 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
15993
15994         * tls.el (tls-program): Doc fix.
15995
15996 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15997
15998         * message.el (message-generate-new-buffers): Change the meaning of the
15999         nil value; add `standard' to the choices; treat t as `unique'; improve
16000         doc string.
16001         (gnus-select-frame-set-input-focus): Autoload.
16002         (message-buffer-name): Search for the existing message buffer if
16003         message-generate-new-buffers is nil or `standard'; treat the value t of
16004         message-generate-new-buffers as `unique'.
16005         (message-pop-to-buffer): Raise the frame already displaying the message
16006         buffer; clear the echo area after querying.
16007         (message-setup): Pass the `continue' argument to compose-mail.
16008         (message-mail): Prefer `switch-function' if it is given; search for the
16009         existing message buffer if the `continue' argument is non-nil; pass
16010         continue and switch-function arguments to compose-mail by way of
16011         message-setup.
16012         (message-mail-other-window): Adjust argument of message-setup.
16013         (message-mail-other-frame): Ditto.
16014
16015 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16016
16017         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
16018         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
16019         to turn font-lock on when turning gnus-message-citation-mode on.
16020
16021 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
16022
16023         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
16024         (mml-smime-function-alist): New variable; add epg as the backend.
16025         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
16026         mml-smime- functions instead.
16027         * mm-view.el: Require smime.
16028
16029 2007-03-05  Didier Verna  <didier@xemacs.org>
16030
16031         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
16032         instead of just inheritance for posting styles.
16033         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
16034
16035 2007-02-24  Chris Moore  <dooglus@gmail.com>
16036
16037         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
16038         * pgg-pgp.el (pgg-pgp-encrypt-region):
16039         * pgg-gpg.el (pgg-gpg-encrypt-region):
16040         Check pgg-encrypt-for-me if no other recipients.
16041
16042 2007-02-24  John Paul Wallington  <jpw@pobox.com>
16043
16044         * tls.el (tls-certtool-program): Fix custom type.
16045
16046 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16047
16048         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
16049         and point-at-eol instead of line-(beginning|end)-position.
16050
16051         * assistant.el (assistant-parse-buffer): Ditto.
16052
16053         * netrc.el (netrc-parse-services): Ditto.
16054
16055 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
16056
16057         * mml2015.el (mml2015-epg-find-usable-key): New function.
16058         (mml2015-epg-sign): Use it.
16059         (mml2015-epg-encrypt): Use it.
16060
16061 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16062
16063         * message.el (message-make-in-reply-to): Quote name containing
16064         non-ASCII characters.  It will make the RFC2047 encoder cause an error
16065         if there are special characters.  Reported by NAKAJI Hiroyuki
16066         <nakaji@jp.freebsd.org>.
16067
16068 2007-02-27  Didier Verna  <didier@xemacs.org>
16069
16070         Include the group parameters as well as the topic ones in the
16071         inheritance filter process.
16072         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
16073         argument GROUP-PARAMS-LIST.
16074         * gnus-topic.el (gnus-group-topic-parameters): Use it.
16075
16076 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
16077
16078         * nntp.el (nntp-never-echoes-commands)
16079         (nntp-open-connection-functions-never-echo-commands): New variables.
16080         (nntp-send-command): Use them.
16081
16082 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
16083
16084         * mml2015.el (mml2015-epg-verify): Simplify.
16085
16086 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16087
16088         * mml.el (mml-content-disposition-alist): New user option.
16089         (mml-content-disposition): New function.
16090         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
16091         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
16092
16093 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
16094
16095         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
16096         verification.
16097
16098 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16099
16100         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
16101         articles posted in the last 24 hours.
16102
16103 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
16104
16105         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
16106
16107 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
16108
16109         * nntp.el (nntp-send-command): Don't wait for echoes when
16110         nntp-open-ssl-stream is used.
16111
16112 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16113
16114         * gnus-cite.el (gnus-test-font-lock-add-keywords)
16115         (gnus-message-add-citation-keywords)
16116         (gnus-message-remove-citation-keywords): Remove.
16117         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
16118         directly, make the variables in font-lock-defaults buffer-local, add
16119         gnus-message-citation-keywords to them and then update the value of
16120         font-lock-keywords.
16121
16122 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16123
16124         * message.el (message-cite-original-1): Don't call
16125         gnus-article-highlight-citation.
16126
16127         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
16128         citations; fix line count.
16129
16130 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
16131
16132         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
16133         (gnus-message-add-citation-keywords)
16134         (gnus-message-remove-citation-keywords): Use it; fix the emulating
16135         versions of font-lock-add-keywords and font-lock-remove-keywords to
16136         work with XEmacs correctly.
16137
16138 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16139
16140         * gnus-cite.el (gnus-cite-face-list): Set the values of
16141         gnus-message-max-citation-depth and gnus-message-citation-keywords.
16142         (gnus-message-max-citation-depth): Use defvar rather than defconst.
16143         (gnus-message-cite-prefix-regexp): New variable.
16144         (gnus-message-search-citation-line): Use it; protect against long
16145         citation prefix; fill match data with nil rather than 0 for XEmacs; set
16146         the 0th match data for Emacs.
16147         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
16148         (gnus-message-add-citation-keywords): Append keywords rather than
16149         prepending; emulate font-lock-add-keywords if it is not available.
16150         (gnus-message-remove-citation-keywords):
16151         Emulate font-lock-remove-keywords if it is not available.
16152
16153         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
16154
16155         * message.el (message-cite-prefix-regexp): Set the value of
16156         gnus-message-cite-prefix-regexp.
16157
16158 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16159
16160         * nnweb.el (nnweb-google-parse-1): Update parser.
16161
16162 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
16163
16164         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
16165
16166 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16167
16168         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
16169         regexp.
16170
16171 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16172
16173         * uudecode.el (uudecode-string-to-multibyte): New function emulating
16174         string-to-multibyte.
16175         (uudecode-decode-region-internal): Use it.
16176
16177         * lpath.el: Fbind string-as-multibyte for XEmacs.
16178
16179 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
16180
16181         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
16182         Fix custom choice.
16183
16184         * gnus-art.el (gnus-signature-limit): Fix custom choice.
16185
16186 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
16187
16188         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
16189
16190         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
16191         `write-region' to respect `mm-inhibit-file-name-handlers'.
16192
16193 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
16194
16195         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
16196         Use gnus-home-directory instead of "~/" or "$HOME".
16197
16198 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
16199
16200         * encrypt.el (encrypt-insert-file-contents): Add better prompt
16201         to mention filename.
16202         Add comments at beginning regarding usage.
16203         (encrypt-write-file-contents): Change interactive so a string is
16204         acceptable.  If the file has no associated model, show an error instead
16205         of a nonsense prompt.
16206
16207 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
16208
16209         * spam.el (spam-bsfilter-ham-switch): Fix typo.
16210         Thanks to Yoshihiko Yamada for kind notification of this typo.
16211
16212 2007-01-12  Kenichi Handa  <handa@m17n.org>
16213
16214         * uudecode.el (uudecode-decode-region-internal): Make it work in a
16215         multibyte buffer.
16216
16217 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
16218
16219         * gnus-score.el (gnus-score-fast-scoring): New variable.
16220         (gnus-score-headers): Use it.
16221
16222         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
16223
16224         * message.el (message-cite-original-1):
16225         Call gnus-article-highlight-citation if requested.
16226         (message-make-from): Allow name and address as optional arguments.
16227
16228         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
16229
16230         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
16231         bugs to doc string.
16232         (gnus-button-alist): Add mid\\|message-id.
16233         (gnus-button-fetch-group): Extend for use in
16234         `browse-url-browser-function'.
16235         (gnus-button-url-regexp): Try to catch paired parentheses like in
16236         Wikipedia URLs.
16237
16238         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
16239         Suggested by Simon Krahnke <overlord@gmx.li>.
16240
16241 2007-01-13  Romain Francoise  <romain@orebokech.com>
16242
16243         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
16244         Update copyright.
16245
16246 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
16247
16248         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
16249
16250 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
16251
16252         * gnus-registry.el (gnus-registry-unfollowed-groups)
16253         (gnus-registry-split-fancy-with-parent): Fix documentation.
16254
16255 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16256
16257         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
16258         from nnweb groups.
16259
16260 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16261
16262         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
16263         Xref urls.  Erase buffer before requesting head.
16264
16265         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
16266
16267 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
16268
16269         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
16270         customizable.
16271
16272 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
16273
16274         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
16275         no signing key is found.
16276         (mml2015-epg-encrypt): Ask user whether to skip or abort if
16277         no encrypting and/or signing key is found.
16278
16279 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
16280
16281         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
16282
16283 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16284
16285         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
16286         headers read from disk with the ones newly found in the current search.
16287         This should no longer cause problems, because the article numbers in
16288         Gmane's `nov.php' output are ignored since the previous change.
16289
16290 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16291
16292         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
16293
16294 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16295
16296         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
16297         replace-regexp-in-string; bind url-version; fbind display-images-p and
16298         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
16299         find-face and set-itimer-function for Emacs; bind itimer-list for
16300         Emacs.
16301
16302         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
16303
16304 2007-01-01  Romain Francoise  <romain@orebokech.com>
16305
16306         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
16307
16308 2006-12-31  Steve Youngs  <steve@sxemacs.org>
16309
16310         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
16311         `define-minor-mode' macro definition expanded properly.
16312         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
16313         exclude it there.
16314
16315         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
16316         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
16317         `fboundp' test.
16318         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
16319         This is OK to autoload in (S)XEmacs now.
16320
16321 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16322
16323         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
16324         keystroke.
16325         (gnus-summary-limit-to-singletons): Fix typo.
16326
16327         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
16328         else fails.
16329
16330 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16331
16332         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
16333         docstring.
16334
16335         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
16336         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
16337         (gnus-summary-insert-dormant-articles): Fix typo in message.
16338
16339 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
16340
16341         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
16342         nil for XEmacs.
16343         (gnus-message-citation-mode): Don't autoload in XEmacs.
16344
16345         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
16346
16347 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
16348
16349         * nnimap.el (nnimap-expunge-search-string):
16350         Mention nnimap-search-uids-not-since-is-evil in docstring.
16351
16352 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
16353
16354         * spam.el: Revert to make-obsolete-variable because
16355         define-obsolete-variable-alias is not supported in Emacs 21.
16356
16357         * spam.el (spam-ifile-path, spam-ifile-database-path)
16358         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
16359         make-obsolete-variable.
16360         (spam-bsfilter-path, spam-bsfilter-program)
16361         (spam-spamassassin-path, spam-spamassassin-program)
16362         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
16363         Don't use "path" inappropriately.
16364         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
16365         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
16366         variable names.
16367
16368 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
16369
16370         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
16371         summary buffer.
16372
16373         * password.el (password-cache-remove): Use clear-string to burn
16374         password, if available.
16375
16376 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
16377
16378         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
16379
16380         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
16381
16382         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
16383         (gnus-message-highlight-citation): Move defcustom here from
16384         gnus-cite.el.
16385         (gnus-message-citation-mode): Autoload.
16386
16387         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
16388         checks to make it compile with XEmacs.
16389         (gnus-message-citation-mode): New minor mode.
16390         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
16391         (gnus-message-highlight-citation): New variables.
16392         (gnus-message-search-citation-line)
16393         (gnus-message-add-citation-keywords)
16394         (gnus-message-remove-citation-keywords)
16395         (turn-on-gnus-message-citation-mode)
16396         (turn-off-gnus-message-citation-mode): New functions.
16397
16398 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
16399
16400         * gnus-cite.el: Enable highlighting of different citation levels in
16401         message-mode.
16402
16403 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
16404
16405         * message.el (message-make-fqdn): Fix comment.
16406         (message-bogus-system-names): Add ".local".
16407
16408         * spam.el (spam-ifile-path, spam-ifile-program)
16409         (spam-ifile-database-path, spam-ifile-database)
16410         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
16411         Don't use "path" inappropriately.
16412         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
16413         strings.
16414         (spam-check-ifile, spam-ifile-register-with-ifile)
16415         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
16416         Use new variable names.
16417
16418         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
16419         (gnus-treat-display-smileys): Simplify using
16420         gnus-image-type-available-p.
16421
16422         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
16423         available.
16424
16425         * gnus-xmas.el (gnus-xmas-image-type-available-p):
16426         Use `display-images-p' if available.
16427
16428 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16429
16430         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
16431         one after turning on the buffer's multibyteness instead of decoding
16432         them directly in the unibyte buffer that causes unexpected conversion
16433         in Emacs 23 (unicode).
16434
16435 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16436
16437         * message.el (message-generate-hashcash): Fix custom type.
16438
16439 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
16440
16441         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
16442
16443 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
16444
16445         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
16446         disconnect icons.  Add help text.
16447
16448 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
16449
16450         * spam.el (spam-extra-header-to-number): CRM114 spam score is
16451         negated to be consistent with the others we handle.
16452
16453 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16454
16455         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
16456         version of gnus-summary-buffer to something, so that we can use two
16457         article buffers at the same time.
16458
16459 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
16460
16461         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
16462         trigger all the extra headers.
16463         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
16464         sorting.
16465
16466 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16467
16468         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
16469         solid groups.
16470
16471 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
16472
16473         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
16474
16475 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
16476
16477         * legacy-gnus-agent.el: Add Copyright notice.
16478
16479 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
16480
16481         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
16482
16483 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16484
16485         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
16486
16487         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
16488         to make it work reliably in CVS Emacs.
16489         (gnus-summary-limit-strange-charsets-predicate)
16490         (gnus-summary-limit-to-predicate): New functions.
16491
16492 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
16493
16494         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
16495         specifying array size.
16496         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
16497         array if it is too small.
16498         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
16499         (gnus-sort-threads-loop): New function.
16500
16501 2006-12-06  Chris Moore  <dooglus@gmail.com>
16502
16503         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
16504         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
16505
16506 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
16507
16508         * mm-url.el (mm-url-predefined-programs): Call curl with correct
16509         options.
16510
16511 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16512
16513         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
16514         DOS-ing the recipient.
16515
16516         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
16517         the headers when creating the mapping to avoid mismappings.
16518         (nnweb-gmane-create-mapping): Always nix out old mapping.
16519
16520 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16521
16522         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
16523         and mm-verify-option to never.
16524
16525 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16526
16527         * message.el (message-signed-or-encrypted-p): New function.
16528         (message-forward-make-body): Use it.
16529
16530         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
16531         Replace encode-coding-string with mm-encode-coding-string.
16532
16533 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16534
16535         * nneething.el (nneething-decode-file-name):
16536         Replace decode-coding-string with mm-decode-coding-string.
16537
16538         * gnus-int.el (gnus-open-server): Say failed server's name.
16539
16540 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16541
16542         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
16543         strings to a single string.  Quote `errors-file-name'.
16544         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
16545         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
16546         Adjust calls.  Use `shell-quote-argument'.
16547
16548 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
16549
16550         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
16551         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
16552
16553         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
16554         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
16555         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
16556         (gnus-group-make-directory-group, gnus-group-transpose-groups):
16557         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
16558         (gnus-subscribe-newsgroup, gnus-1):
16559         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
16560         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
16561         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
16562         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
16563
16564 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16565
16566         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
16567         keystroke.
16568         (gnus-summary-limit-to-bodies): Implement headersp.
16569
16570 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16571
16572         * dns.el (query-dns): Protect against "Process dns deleted" strings.
16573
16574 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16575
16576         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
16577
16578 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16579
16580         * message.el (message-generate-hashcash): Expand range of values to
16581         include `opportunistic'.
16582         (message-send-mail): Use it.
16583
16584 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16585
16586         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
16587         and comment it.
16588
16589         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
16590
16591 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
16592
16593         * gnus-util.el (gnus-extract-address-components): Improve comment.
16594
16595 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16596
16597         * gnus-util.el (gnus-extract-address-components): Work with address in
16598         which the name portion contains @.
16599
16600         * lpath.el: Fbind custom-autoload.
16601
16602 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
16603
16604         * gnus.el (gnus-start): Move custom group up.
16605         (gnus-select-method): Don't autoload, but make it available for
16606         `customize-variable'.
16607         (gnus-getenv-nntpserver): Don't autoload.
16608
16609 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
16610
16611         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
16612
16613 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
16614
16615         * message.el (message-sendmail-extra-arguments): New variable.
16616         (message-send-mail-with-sendmail): Use it.
16617
16618 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16619
16620         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
16621         mm-with-unibyte-current-buffer to make string unibyte.
16622
16623         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
16624         mm-string-as-multibyte.
16625
16626 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
16627
16628         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
16629         Reported by Werner Koch <wk@gnupg.org>.
16630
16631 2006-11-14  Daiki Ueno  <ueno@p360>
16632
16633         * mml2015.el: Autoload epa-select-keys when compiling.
16634
16635 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
16636
16637         * mml2015.el (mml2015-epg-sign): Save the signing keys in
16638         message-options.
16639         (mml2015-epg-encrypt): Save the recipient keys in message-options.
16640
16641 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
16642
16643         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
16644         EasyPG (< 0.0.6).
16645         (mml2015-always-trust): New user option.
16646         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
16647         prompt.
16648
16649 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16650
16651         * nntp.el (nntp-authinfo-force): New variable.
16652         (nntp-send-authinfo): Use it.
16653
16654 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
16655
16656         * message.el (message-strip-subject-encoded-words): Allow _not_ to
16657         decode encoded words.  Improve prompt.  Add comment about forwarding.
16658         (message-replacement-char): Move up.
16659
16660 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
16661
16662         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
16663         instead of gnus-intersection because arguments of gnus-sorted-nunion
16664         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
16665
16666 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
16667
16668         * message.el (message-strip-subject-encoded-words): Reformat prompt.
16669         (message-simplify-subject-functions):
16670         Enable message-strip-subject-encoded-words by default.
16671
16672 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
16673
16674         * message.el (message-strip-subject-encoded-words): New function.
16675         (message-simplify-subject-functions): New variable.
16676         (message-simplify-subject): Use it.  Fix typo in doc string.
16677         Support message-strip-subject-encoded-words.
16678
16679 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
16680
16681         * gnus-diary.el (gnus-diary-delay-format-function):
16682         * nndiary.el (nndiary-reminders):
16683         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
16684
16685 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
16686
16687         * gnus-art.el (article-hide-boring-headers): Fetch date from
16688         gnus-original-article-buffer to avoid problems with localized date
16689         strings.
16690
16691 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16692
16693         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
16694
16695 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
16696
16697         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
16698         New variables.
16699         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
16700         (mm-charset-synonym-alist): Move some entries to
16701         mm-codepage-iso-8859-list.
16702         (mm-charset-synonym-alist, mm-charset-override-alist):
16703         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
16704
16705 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16706
16707         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
16708
16709 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
16710
16711         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
16712         with Emacs 21 and XEmacs.
16713
16714 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
16715
16716         * spam.el (spam-parse-address): New function for better parsing,
16717         catching errors, etc.
16718         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
16719
16720 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
16721
16722         * mm-view.el: Add interactive arg to html2text autoload.
16723
16724 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16725
16726         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
16727
16728 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
16729
16730         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
16731         New variables.
16732         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
16733         (mm-charset-synonym-alist): Move some entries to
16734         mm-codepage-iso-8859-list.
16735
16736         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
16737
16738 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
16739
16740         * message.el (message-citation-line-format)
16741         (message-insert-formated-citation-line): Fix implementation of %E, %N
16742         and %n according to the doc string.
16743
16744 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
16745
16746         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
16747         Use car-safe to avoid bad parses.
16748
16749 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16750
16751         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
16752         names.
16753
16754         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
16755
16756 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16757
16758         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
16759         header.
16760
16761         * message.el (message-draft-headers): Add Date.
16762         (message-headers-to-generate): Fix typo in docstring.
16763
16764         * nndraft.el (nndraft-required-headers): New variable.
16765         (nndraft-generate-headers): Use it.
16766
16767         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
16768
16769 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
16770
16771         * gnus-registry.el (gnus-registry-wash-for-keywords)
16772         (gnus-registry-find-keywords): New functions to allow easy searching of
16773         articles that are in the registry.
16774
16775 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
16776
16777         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
16778         Use ietf-drums-parse-address instead of gnus-extract-address-components.
16779         Reported by Damien Elmes <damien@repose.cx>.
16780
16781 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
16782
16783         * gnus.el (gnus-mime): Remove unused custom group.
16784
16785 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16786
16787         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
16788         "blank line" when searching for end of armor headers.
16789
16790 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16791
16792         * gmm-utils.el (gmm-write-region): Fix variable name.
16793
16794 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
16795
16796         * gmm-utils.el (gmm-write-region): New function based on compatibility
16797         code from `mm-make-temp-file'.
16798
16799         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
16800
16801         * nnmaildir.el (nnmaildir--update-nov)
16802         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
16803         Use `gmm-write-region'.
16804
16805 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
16806
16807         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
16808         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
16809
16810         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
16811
16812         * message.el (message-replacement-char): New variable.
16813         (message-fix-before-sending): Use it.
16814         (message-simplify-subject): New function to remove duplicate code.
16815         (message-reply, message-followup): Use it.
16816
16817         * gnus-sum.el (gnus-summary-make-menu-bar):
16818         Clarify gnus-summary-limit-to-articles.
16819
16820 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
16821
16822         * gnus-util.el (gnus-with-local-quit): New macro.
16823
16824         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
16825
16826 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
16827
16828         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
16829         ignore non-string data.
16830
16831 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
16832
16833         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
16834         non-string data (needs to be done in the registry too).
16835
16836 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16837
16838         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
16839         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
16840         (gnus-registry-split-fancy-with-parent)
16841         (gnus-registry-fetch-simplified-message-subject-fast)
16842         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
16843         Remove text properties on ingress into the registry and when it's saved.
16844         (gnus-registry-clean-empty-function): Fix bug with cleaning the
16845         registry from entries with no groups.
16846
16847 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16848
16849         * gnus-util.el (gnus-string-remove-all-properties): Add utility
16850         function to remove string properties.
16851
16852 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
16853
16854         * gmm-utils.el (gmm): Adjust custom version.
16855
16856         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
16857         Adjust custom version.
16858
16859         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
16860
16861 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
16862
16863         * gnus-art.el (gnus-insert-prev-page-button)
16864         (gnus-insert-next-page-button): Simplify.  Reformat.
16865
16866 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
16867
16868         * gnus-art.el (gnus-insert-prev-page-button)
16869         (gnus-insert-next-page-button): Apply gnus-article-button-face.
16870
16871 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
16872
16873         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
16874
16875 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
16876
16877         * gnus-art.el (gnus-insert-mime-button)
16878         (gnus-insert-mime-security-button):
16879         Apply gnus-article-button-face to MIME and security buttons.
16880
16881 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
16882
16883         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
16884         readable.
16885
16886 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16887
16888         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
16889
16890 2006-09-20  Steve Youngs  <steve@sxemacs.org>
16891
16892         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
16893         `browse-url-of-file' instead of `browse-url'.
16894
16895 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16896
16897         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
16898         regexp.  Articles containing quotation were cut prematurely.
16899
16900 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16901
16902         * message.el (message-cite-original-1): Use nobody by default for the
16903         value of From header.
16904         (message-reply): Ditto.
16905
16906 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
16907
16908         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
16909         to the gnus-info.  This fixes a bug of inline-PGP message verification.
16910         Reported by Michael Piotrowski <mxp@dynalabs.de>.
16911
16912 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
16913
16914         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
16915         mails in the doc string.  Add some URLs in comment.
16916         (pop3-movemail): Warn about pop3-leave-mail-on-server.
16917
16918 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16919
16920         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
16921         backslashes handling and the way to find boundaries of quoted strings.
16922
16923 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
16924
16925         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
16926         mml1991-encrypt-to-self is set and mml1991-signers is not set.
16927         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
16928         mml2015-encrypt-to-self is set and mml2015-signers is not set.
16929
16930 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
16931
16932         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
16933         doc string.
16934         (gnus-button-regexp, gnus-button-last): Remove unused variables.
16935
16936 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16937
16938         * lpath.el: Fbind epg-check-configuration.
16939
16940 2006-09-06  Simon Josefsson  <jas@extundo.com>
16941
16942         * mml2015.el (mml2015-use): Doc fix, mention epg.
16943
16944 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
16945
16946         * mml2015.el (mml2015-use): Default to epg, if available.
16947
16948 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
16949
16950         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
16951         message-sender.
16952         (mml1991-epg-encrypt): Ditto.
16953         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
16954         message-sender.
16955         (mml2015-epg-encrypt): Ditto.
16956
16957 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
16958
16959         * message.el (message-send-mail-with-sendmail): Look for sendmail in
16960         several common directories.
16961
16962 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
16963
16964         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
16965         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
16966
16967 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16968
16969         * gnus-art.el (article-decode-encoded-words): Make it fast.
16970
16971 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16972
16973         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
16974
16975         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
16976         in quoted string into `\'.
16977
16978 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16979
16980         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
16981         Use standard-syntax-table.
16982
16983 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16984
16985         * gnus-art.el (gnus-decode-address-function): New variable.
16986         (article-decode-encoded-words): Use it to decode headers which are
16987         assumed to contain addresses.
16988         (gnus-mime-delete-part): Remove useless `or'.
16989
16990         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
16991         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
16992         (gnus-nov-parse-line): Use it to decode From header.
16993         (gnus-get-newsgroup-headers): Ditto.
16994         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
16995
16996         * mail-parse.el (mail-decode-encoded-address-region): New alias.
16997         (mail-decode-encoded-address-string): New alias.
16998
16999         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
17000         New function.
17001         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
17002         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
17003         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
17004         (rfc2047-decode-string): Ditto.
17005         (rfc2047-decode-address-region): New function.
17006         (rfc2047-decode-address-string): New function.
17007
17008 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
17009
17010         * message.el (message-caesar-buffer-body): Allow rotating headers.
17011
17012         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
17013
17014         * message.el (message-insert-formated-citation-line): Fix %f.
17015         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
17016
17017 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
17018
17019         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
17020         (gnus-bookmark-mouse-available-p): New macro.
17021         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
17022         (gnus-bookmark-bmenu-show-infos): Use it.
17023         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
17024         (gnus-bookmark-bmenu-hide-infos): Ditto.
17025         (gnus-bookmark-remove-properties): New function.
17026         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
17027         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
17028         (gnus-bookmark-write-file): Bind coding-system-for-write.
17029         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
17030         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
17031         group before selecting it.
17032         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
17033         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
17034         quit-window if it is not available; use gnus-mouse-2 and bind it to
17035         gnus-bookmark-bmenu-select-by-mouse.
17036         (gnus-bookmark-show-details): Remove unused variable `details-list'.
17037         (gnus-bookmark-bmenu-select-by-mouse): New function.
17038
17039 2006-08-13  Romain Francoise  <romain@orebokech.com>
17040
17041         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
17042         space.
17043
17044 2006-08-10  Romain Francoise  <romain@orebokech.com>
17045
17046         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
17047         (dns-mode-soa-auto-increment-serial): New user option.
17048         (dns-mode-soa-maybe-increment-serial): New function.
17049         (dns-mode): Add the latter to `write-contents-functions'.
17050
17051 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17052
17053         * compface.el (uncompface): Use binary rather than raw-text-unix.
17054
17055 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17056
17057         * compface.el (uncompface): Make sure the eol conversion doesn't take
17058         place when communicating with the external programs.
17059         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
17060
17061 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
17062
17063         * nnheader.el (nnheader-insert-head): Fix typo in comment.
17064
17065 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17066
17067         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
17068         Make it more robust by parsing author and date independently.
17069
17070 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17071
17072         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
17073
17074 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
17075
17076         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
17077         first matching secret key.
17078         (mml2015-epg-encrypt): Ditto.
17079
17080         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
17081         first matching secret key.
17082         (mml1991-epg-encrypt): Ditto.
17083
17084         * mml2015.el (mml2015-encrypt-to-self): New user option.
17085         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
17086         mml2015-epg-encrypt-to-self is set.
17087
17088         * mml1991.el (mml1991-encrypt-to-self): New variable.
17089         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
17090         mml1991-epg-encrypt-to-self is set.
17091
17092         * mml2015.el (mml2015-signers): New user option.
17093         (mml2015-epg-sign): Reflect the value of mml2015-signers.
17094         (mml2015-epg-encrypt): Allow to select signing keys.
17095
17096         * mml1991.el (mml1991-signers): New variable.
17097         (mml1991-epg-sign): Reflect the value of mml1991-signers.
17098         (mml1991-epg-encrypt): Allow to select signing keys.
17099
17100 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17101
17102         * nnheader.el (nnheader-insert-head): Make it work even if the file
17103         uses CRLF for the line-break code.
17104
17105 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
17106
17107         * mml2015.el: Require mml-sec instead of password.
17108         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
17109         (mml2015-cache-passphrase): Inherit the default value from
17110         mml-secure-cache-passphrase.
17111         (mml2015-passphrase-cache-expiry): Inherit the default value from
17112         mml-secure-passphrase-cache-expiry.
17113
17114         * mml1991.el: Require mml-sec instead of password.
17115         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
17116         (mml1991-cache-passphrase): Inherit the default value from
17117         mml-secure-cache-passphrase.
17118         (mml1991-passphrase-cache-expiry): Inherit the default value from
17119         mml-secure-passphrase-cache-expiry.
17120
17121         * mml-sec.el: Require password.
17122         (mml-secure-verbose): New user option.
17123         (mml-secure-cache-passphrase): New user option.
17124         (mml-secure-passphrase-cache-expiry): New user option.
17125
17126 2006-07-24  David Smith  <davidsmith@acm.org>  (tiny change)
17127             Andreas Vögele  <andreas@altroot.de>   (tiny change)
17128
17129         * pgg-def.el (pgg-truncate-key-identifier):
17130         Truncate the key ID to 8 letters from the end.
17131
17132 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17133
17134         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
17135         workaround for the url package included with Emacs.
17136
17137         * nnweb.el (nnweb-google-create-mapping): Update regexp.
17138
17139 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17140
17141         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
17142         correctly.  This fixes a bug caused by the 2006-05-12 change.
17143
17144 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
17145
17146         * nnmail.el (nnmail-article-group): If splitting raises an error, give
17147         some information about the error when saying that the `bogus' mail
17148         group will be used.
17149
17150 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
17151
17152         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
17153         string.
17154
17155 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
17156
17157         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
17158
17159 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17160
17161         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
17162
17163 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
17164
17165         * mml1991.el (mml1991-function-alist): Add epg.
17166         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
17167         (mml1991-epg-encrypt): New functions.
17168
17169 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
17170
17171         * mml2015.el (mml2015-verbose): New variable.
17172         (mml2015-cache-passphrase): Ditto.
17173         (mml2015-passphrase-cache-expiry): Ditto.
17174         (mml2015-function-alist): Add epg.
17175         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
17176         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
17177         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
17178         New functions.
17179
17180 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17181
17182         * message.el (message-cite-original-1): Preserve region when removing
17183         quoted text due to X-No-Archive in order to avoid bogus attribution
17184         when citing multiple messages.
17185
17186 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17187
17188         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
17189         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
17190
17191 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
17192
17193         * gnus-diary.el (gnus-user-format-function-d)
17194         (gnus-user-format-function-D): Autoload.
17195
17196         * imap.el (Commentary): Fix typo.
17197
17198         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
17199         2006-04-22 contribution.
17200
17201 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17202
17203         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
17204         It didn't really fix the bogosity I'm seeing with solid web groups.
17205
17206 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17207
17208         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
17209         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
17210         created using server names.  If we use the feature without declaring
17211         it, Gnus does not properly manage server and group state.
17212
17213         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
17214         bound.
17215
17216 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17217
17218         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
17219         looking up the method using GROUP's prefix before inventing a new one.
17220         It is used on killed/unknown groups in various places where returning
17221         an all-new method isn't expected by the caller.
17222
17223         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
17224         and match semantics of gnus-group-real-prefix.
17225
17226 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
17227
17228         * nnmail.el (nnmail-broken-references-mailers): New variable.
17229         (nnmail-ignore-broken-references): New function generalizing
17230         nnmail-fix-eudora-headers.
17231         (nnmail-fix-eudora-headers): Now obsolete.
17232
17233         * gnus-art.el (gnus-button-handle-custom):
17234         Support `customize-apropos*'.
17235
17236 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17237
17238         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
17239
17240         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
17241         articles.
17242
17243 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
17244
17245         * message.el (message-cite-reply-above): New variable.
17246         (message-yank-original): Use it.
17247
17248 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17249
17250         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
17251
17252 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
17253
17254         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
17255         as read.
17256
17257         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
17258
17259 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
17260
17261         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
17262         (gnus-bookmark-default-file): Use gnus-directory.
17263         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
17264         Remove "*" in doc string.
17265         (gnus-bookmark-write-file): Simplify.
17266         (gnus-bookmark-maybe-sort-alist): Use `when'.
17267         (gnus-bookmark-get-bookmark): Fix typo in doc string.
17268         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
17269         Add FIXME about Emacs 21 and XEmacs compatibility.
17270         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
17271         compatibility.
17272         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
17273         compatibility.
17274         (gnus-bookmark-menu-heading): Fix version.
17275
17276 2006-06-19  Bastien Guerry  <bzg@altern.org>
17277
17278         * gnus-bookmark.el: New file.
17279
17280 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17281
17282         * message.el (message-syntax-checks): Doc fix.
17283
17284 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17285
17286         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
17287         unsubscribed groups as if they were killed ones.  It causes duplicate
17288         entries in gnus-newsrc-alist.
17289
17290 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17291
17292         * message.el (message-syntax-checks): Doc fix.
17293         (message-send-mail): Add check for continuation headers.
17294         (message-check-news-header-syntax): Fix regexp used to check for
17295         continuation headers.
17296
17297 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17298
17299         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
17300
17301 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
17302
17303         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
17304
17305 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
17306
17307         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
17308         default-truncate-lines.
17309
17310 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17311
17312         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
17313         to fill the utf-8 entry.
17314
17315         * lpath.el: Fbind unicode-precedence-list.
17316
17317 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17318
17319         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
17320
17321 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
17322
17323         * gnus-agent.el (directory-files-and-attributes): Move all the way
17324         forward (the third and final move).
17325         (gnus-agent-read-agentview): Trap reconstruction errors due to
17326         nonexistent directory.  Handle by returning nil.
17327
17328 2006-05-30  Didier Verna  <didier@xemacs.org>
17329
17330         * message.el (message-dont-reply-to-names): Update the custom type.
17331         * message.el (message-dont-reply-to-names): New defsubst: potentially
17332         convert a list of regexps into a single one.
17333         * message.el (message-get-reply-headers): Use it.
17334         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
17335
17336 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
17337
17338         * gnus-agent.el (directory-files-and-attributes): Move forward.
17339
17340 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
17341
17342         * gnus-ml.el (gnus-mailing-list-subscribe)
17343         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
17344         (gnus-mailing-list-message): Fix doc strings.
17345
17346 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17347
17348         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
17349         of doing it manually.
17350
17351 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
17352
17353         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
17354         comment.
17355
17356 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
17357
17358         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
17359         (gnus-agent-read-agentview): Fix handling of end-of-file error.
17360         (gnus-agent-read-local): All symbols allocated in my-obarray.
17361         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
17362         (gnus-agent-regenerate-group): Check numeric names to see if they are
17363         messages or groups.
17364         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
17365         better way of do this...)
17366
17367         * gnus-cache.el (gnus-agent-total-fetched-for):
17368         Ignore 'dummy.group' (there should be a better way of do this...)
17369
17370 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17371
17372         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
17373         (gnus-saved-headers): Ditto.
17374         (gnus-default-article-saver): Mention functions may have properties.
17375         (gnus-article-save): Override gnus-save-all-headers and
17376         gnus-saved-headers by :headers property which saver function may have.
17377         (gnus-summary-save-in-file): Add :headers property.
17378         (gnus-summary-write-to-file): Ditto.
17379
17380         * gnus-sum.el (gnus-summary-save-article): Bind
17381         gnus-prompt-before-saving to t when saving many articles in a file;
17382         always show all headers.
17383
17384         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
17385
17386 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
17387
17388         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
17389         marks.
17390
17391         * message.el (message-indent-citation): Add optional arguments to allow
17392         using it outside of message buffers.
17393
17394         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
17395         (gnus-article-treat-unfold-headers): Use it.
17396         (gnus-article-truncate-lines): New variable.
17397         (gnus-article-mode): Use it.
17398         (gnus-article-toggle-truncate-lines): New function.
17399
17400         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
17401         Add gnus-article-toggle-truncate-lines.
17402
17403         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
17404         coding system in XEmacs, use binary.
17405
17406 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17407
17408         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
17409         after-load-alist.
17410
17411         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
17412         this function should save decoded articles.
17413         (gnus-summary-write-to-file): Use property to specify this function
17414         should save decoded articles and specify gnus-summary-save-in-file
17415         should be used to save articles other than the first one when saving
17416         many articles.
17417         (gnus-summary-save-body-in-file): Use property to specify this
17418         function should save decoded articles.
17419         (gnus-summary-write-body-to-file): Use property to specify this
17420         function should save decoded articles and specify
17421         gnus-summary-save-body-in-file should be used to save articles other
17422         than the first one when saving many articles.
17423
17424         * gnus-sum.el (gnus-summary-save-article): Simplify.
17425
17426 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17427
17428         * gnus-art.el (gnus-default-article-saver):
17429         Add gnus-summary-write-body-to-file.
17430         (gnus-article-save-coding-system): Don't use coding system object
17431         in XEmacs.
17432         (gnus-read-save-file-name): Add optional `dir-var' argument which
17433         specifies directory in which files are saved; work even if optional
17434         `variable' argument is not specified.
17435         (gnus-summary-write-to-file): Read file name.
17436         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
17437         (gnus-summary-write-body-to-file): New function.
17438
17439         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
17440         (gnus-summary-local-variables): Add it.
17441         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
17442         (gnus-summary-save-article): Remove optional `decode' argument;
17443         determine whether to decode articles by the value of
17444         gnus-default-article-saver; when saving many files using
17445         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
17446         it first and use gnus-summary-save-in-file or
17447         gnus-summary-save-body-in-file thereafter unless
17448         gnus-prompt-before-saving is always; move point to article which
17449         will be saved.
17450         (gnus-summary-save-article-file): Revert.
17451         (gnus-summary-write-article-file): Revert.
17452         (gnus-summary-save-article-body-file): Revert.
17453         (gnus-summary-write-article-body-file): New function.
17454
17455 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17456
17457         * gnus-art.el (gnus-default-article-saver): Doc fix.
17458         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
17459         from gnus-summary-save-article-coding-system, and default to a
17460         certain coding system.
17461         (gnus-output-to-file): Add coding cookie and encode text according
17462         to gnus-article-save-coding-system; don't use mm-append-to-file.
17463
17464         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
17465         gnus-art.el and rename to gnus-article-save-coding-system.
17466         (gnus-summary-save-article): Require gnus-art; don't show all
17467         headers if it decodes articles; don't add coding cookie here;
17468         don't bind mm-text-coding-system-for-write.
17469         (gnus-summary-save-article-file): Save decoded articles.
17470         (gnus-summary-write-article-file): When saving many files, use
17471         gnus-summary-write-to-file first and gnus-summary-save-in-file
17472         thereafter unless gnus-prompt-before-saving is always.
17473         (gnus-summary-save-article-body-file): Save decoded articles.
17474
17475         * lpath.el: Fbind select-safe-coding-system for XEmacs.
17476
17477 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17478
17479         * nnrss.el (nnrss-check-group): Bind hash-index.
17480
17481 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
17482
17483         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
17484         its hash index.  Store this hash in `nnrss-group-data'.
17485         (nnrss-read-group-data): Update accordingly.
17486
17487 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17488
17489         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
17490         entry.
17491
17492         * gnus-sum.el (gnus-summary-make-menu-bar):
17493         Add gnus-article-browse-html-article.
17494
17495 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
17496
17497         * gnus-sum.el (gnus-summary-mime-map):
17498         Add gnus-article-browse-html-article.
17499
17500         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
17501
17502 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17503
17504         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
17505         suitable coding systems in customize.
17506
17507 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
17508
17509         * mail-source.el (mail-sources): Fix custom type.
17510
17511 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
17512
17513         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
17514         (gnus-summary-expire-articles-now): Shorten prompt.
17515
17516         * gmm-utils.el (wid-edit): Require.
17517         (defun-gmm): Rename from `gmm-defun-compat'.
17518         (gmm-image-search-load-path): Use it.
17519         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
17520
17521 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17522
17523         * gnus-sum.el (gnus-summary-save-article-coding-system):
17524         New variable.
17525         (gnus-summary-save-article): Add optional `decode' argument.
17526         If it is set and gnus-summary-save-article-coding-system is non-nil,
17527         save decoded article.
17528         (gnus-summary-write-article-file): Save decoded article if
17529         gnus-summary-save-article-coding-system is non-nil.
17530
17531         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
17532         type.
17533
17534 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17535
17536         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
17537
17538 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17539
17540         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
17541         first to test gnus-single-article-buffer which may be buffer-local.
17542
17543         * gnus-sum.el (gnus-summary-setup-buffer):
17544         Make gnus-single-article-buffer buffer-local and nil in ephemeral
17545         group; make gnus-article-buffer, gnus-article-current, and
17546         gnus-original-article-buffer always buffer-local.
17547         (gnus-summary-exit): Kill article buffer belonging to ephemeral
17548         group.
17549         (gnus-handle-ephemeral-exit): Don't move to next summary line.
17550
17551 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
17552
17553         * nnml.el (nnml-request-compact-group): Compressed files might not
17554         have .gz extension.
17555
17556 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
17557
17558         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
17559         (mm-copy-to-buffer): Use with-current-buffer.
17560         (mm-display-part): Simplify.
17561         (mm-inlinable-p): Add optional arg `type'.
17562
17563 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
17564
17565         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
17566         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
17567         Try harder to show the attachment internally or externally using
17568         gnus-mime-view-part-as-type.
17569
17570 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
17571
17572         * message.el (message-from-style, message-signature-separator)
17573         (message-user-organization-file, message-send-mail-function)
17574         (message-citation-line-function, message-yank-prefix)
17575         (message-indent-citation-function, message-signature)
17576         (message-signature-file, message-signature-insert-empty-line):
17577         Remove autoloads.
17578
17579         * gnus-art.el (gnus-buttonized-mime-types):
17580         Remove "multipart/signed".  Revert 2006-04-26 change.
17581
17582 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17583
17584         * gnus.el (gnus-version-number): Bump version.
17585
17586 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
17587
17588         * gnus.el: No Gnus v0.5 is released.
17589
17590 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17591
17592         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
17593         fetching articles by message-id.
17594
17595 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17596
17597         * message.el (hashcash): Require hashcash as normal.
17598
17599         * ecomplete.el (ecomplete-highlight-match-line):
17600         Use point-at-eol.
17601         (ecomplete-highlight-match-line): Use `highlight', because that
17602         face exists in both Emacs and XEmacs.
17603
17604         * message.el (message-display-abbrev): Use point-at-bol.
17605
17606         * mail-source.el: Don't require timer/timer-funcs.
17607
17608         * gnus-async.el: Ditto.
17609
17610         * password.el: Ditto.
17611
17612         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
17613
17614         * mm-url.el: Ditto.
17615
17616         * gnus-xmas.el: Don't require timer-funcs.
17617
17618         * mm-util.el: Require timer/timer-funcs.
17619
17620 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17621
17622         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
17623         Close.
17624
17625 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17626
17627         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
17628         unibyte after clear-decrypt function runs.
17629
17630         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
17631         returns as a unibyte string.
17632
17633 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17634
17635         * lpath.el: Revert.
17636
17637         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
17638         (pgg-gpg-process-sentinel): Revert.
17639
17640         * pgg-pgp.el (pgg-pgp-process-region): Revert.
17641         (pgg-pgp-lookup-key): Revert.
17642
17643         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
17644         (pgg-pgp5-lookup-key): Revert.
17645
17646         * pgg.el (pgg-fetch-key): Revert.
17647
17648 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17649
17650         * lpath.el: Fbind string-as-multibyte for XEmacs.
17651
17652         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
17653         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
17654         (mml1991-pgg-encrypt): Ditto.
17655
17656         * pgg-gpg.el (pgg-string-to-multibyte): New function.
17657         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
17658         a multibyte buffer.
17659
17660         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
17661         (pgg-pgp-lookup-key): Ditto.
17662
17663         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
17664         (pgg-pgp5-lookup-key): Ditto.
17665
17666         * pgg.el (pgg-fetch-key): Ditto.
17667
17668 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
17669
17670         * message.el (message-user-organization-file): Check several
17671         locations of the organization file.
17672
17673         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
17674         Add gnus-article-view-part-as-type.
17675
17676         * gnus-art.el (gnus-article-view-part-as-type): New function.
17677
17678         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
17679         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
17680
17681         * mml.el: Simplify autoload.
17682         (mml-mode): defvar dnd-protocol-alist instead of using
17683         symbol-value.
17684         (mml-default-directory): New variable.
17685         (mml-minibuffer-read-file): Use it.
17686         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
17687
17688         * message.el (message-citation-line-format): New variable.
17689         (message-insert-formated-citation-line): New function.
17690         (message-citation-line-function):
17691         Add `message-insert-formated-citation-line' to custom type.
17692
17693         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
17694         to doc string.
17695
17696         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
17697         depending on mm-verify-option.
17698
17699 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17700
17701         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
17702         binding pgg-* variables; reimplement the section which prevents
17703         MIME header from being signed.
17704         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
17705         pgg-text-mode; remove a blank line at the top of body.
17706
17707         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
17708         lines at the top of body; use gnus-newsgroup-charset if there's no
17709         Charset header.
17710
17711 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17712
17713         * message.el (message-self-insert-commands): Doc fix.
17714
17715         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
17716         (mm-uu-pgp-encrypted-test): Ditto.
17717         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
17718         between header and body; return application/pgp-encrypted handle
17719         if decryption failed; decode decrypted body by charset.
17720
17721         * mm-decode.el (mm-automatic-display): Don't make application/pgp
17722         element match to application/pgp-*.
17723
17724 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17725
17726         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
17727         HTML.
17728
17729 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17730
17731         * mail-source.el (mail-source-call-script): Message the error
17732         string.
17733
17734 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17735
17736         * gnus-util.el (gnus-byte-compile): Use it.
17737
17738 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
17739
17740         * gnus-util.el (kill-empty-logs): New function.
17741
17742 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17743
17744         * message.el (message-mail-alias-type): Doc fix.
17745         (message-mail-alias-type-p): New function.
17746         (message-send): Use it.
17747         (message-mode): Ditto.
17748         (message-strip-forbidden-properties): Ditto.
17749
17750         * ecomplete.el (ecomplete-database-file-coding-system):
17751         New variable.
17752         (ecomplete-save): Use it.
17753         (ecomplete-setup): Use it.
17754
17755 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17756
17757         * message.el (message-self-insert-commands): New variable.
17758         (message-strip-forbidden-properties): Use it.
17759
17760 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17761
17762         * message.el (message-put-addresses-in-ecomplete): Use a regexp
17763         that doesn't make XEmacs choke.
17764
17765 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
17766
17767         * gnus-util.el (gnus-replace-in-string):
17768         Prefer replace-regexp-in-string over of replace-in-string.
17769
17770 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17771
17772         * gnus-util.el (gnus-select-frame-set-input-focus):
17773         Use select-frame-set-input-focus if it is available in XEmacs; use
17774         definition defined in Emacs 22 for old Emacsen.
17775
17776         * dgnushack.el: Autoload unmorse-region for XEmacs.
17777
17778         * lpath.el: Bind cursor-in-non-selected-windows and
17779         select-frame-set-input-focus for XEmacs.
17780
17781 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17782
17783         * mm-view.el (mm-inline-text): Use equal instead of equalp.
17784
17785 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
17786
17787         * gnus-registry.el (gnus-registry-cache-save): Remove text
17788         properties when saving via the temp buffer.
17789
17790 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
17791
17792         * message.el (message-generate-hashcash): Honor custom type.
17793
17794 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17795
17796         * message.el (message-generate-hashcash): Default to non-nil when
17797         hashcash is found.
17798
17799         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
17800         (gnus-refer-thread-limit): Increase default to 500.
17801
17802         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
17803
17804         * flow-fill.el (fill-flowed): Allow delete-space.
17805
17806 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
17807
17808         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
17809         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
17810         Remove autoloads.
17811
17812 2006-04-18  Simon Josefsson  <jas@extundo.com>
17813
17814         * message.el (message-generate-hashcash): Default to.
17815
17816 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
17817
17818         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
17819         concatenating segments rather than before concatenating them.
17820
17821 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
17822
17823         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
17824
17825 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17826
17827         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
17828
17829         * message.el (message-forward-make-body-plain):
17830         Allow message-forward-ignored-headers to be a list.
17831         (message-remove-ignored-headers): Factor out into function.
17832         (message-forward-make-body-mml): Use it.
17833
17834         * imap.el (imap-quote-specials): New function.
17835         (imap-login-auth): Quote specials.
17836
17837         * rfc2231.el (rfc2231-parse-string): Remove dead code.
17838         (rfc2231-parse-string): Allow concatanation of parameters that
17839         aren't contiguous.  The test case is
17840           (mail-header-parse-content-type "message/external-body;
17841             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
17842             access-type=LOCAL-FILE;
17843             name*1*=plugh%2fhello-sailor%2fbing.pdf")
17844
17845 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17846
17847         * nntp.el (nntp-accept-process-output): Return the value of
17848         `nnheader-accept-process-output'.
17849
17850 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17851
17852         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
17853         (gnus-button-alist): Recognize more diff formats.
17854         (gnus-button-patch): Strip directory.
17855
17856 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
17857
17858         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
17859         Emacs 22 when setting focus.
17860
17861 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17862
17863         * gnus-art.el (gnus-article-treat-types): Do treatment of
17864         text/x-verbatim parts.
17865         (gnus-button-patch): New command.
17866
17867         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
17868         addresses that contain invalid characters.
17869
17870 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17871
17872         * message.el (message-put-addresses-in-ecomplete):
17873         Use gnus-replace-in-string.
17874         (message-is-yours-p): Use the more correct
17875         mail-header-parse-address instead of
17876         mail-extract-address-components.
17877         (message-put-addresses-in-ecomplete): Fix typo.
17878
17879         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
17880         keystroke.
17881
17882         * gnus-art.el (gnus-treatment-function-alist): Change order of
17883         newsgroups/generic header folding to avoid double-folding.
17884
17885         * message.el (message-hidden-headers): Add X-Draft-From.
17886
17887         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
17888         New command.
17889         (gnus-summary-repeat-search-article-backward): New command.
17890
17891         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
17892         groups in the parent topic.
17893
17894 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
17895
17896         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
17897         (spam-extra-header-to-number): Return the CRM114 number as a
17898         number instead of a string.
17899
17900 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17901
17902         * gnus-art.el (gnus-face-properties-alist): Move here from
17903         gnus-fun.
17904
17905         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
17906
17907 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17908
17909         * message.el (message-strip-forbidden-properties): Only display on
17910         self-insert-command.
17911
17912         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
17913         reindent.
17914         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
17915
17916 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
17917
17918         * smiley.el (smiley-style): Fix typo.
17919
17920 2006-03-23  Kenichi Handa  <handa@m17n.org>
17921
17922         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
17923         instead of set-buffer-multibyte.
17924
17925 2006-03-23  Kenichi Handa  <handa@m17n.org>
17926
17927         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
17928         buffer and then decode the buffer text if necessary.
17929         (rfc2231-encode-string): Be sure to work on multibyte buffer at
17930         first, and after mm-encode-body, change the buffer to unibyte.
17931
17932 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17933
17934         * hashcash.el (hashcash-insert-payment-async-2):
17935         Use message-goto-eoh instead of doing it manually.
17936         (mail-add-payment): Use message-narrow-to-header instead of trying
17937         to do the same itself.
17938
17939         * message.el (message-hidden-headers): Add Face.
17940
17941         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
17942         reparenting code.
17943         (gnus-summary-reparent-children): Refactored out code.
17944         (gnus-summary-thread-map): New keystroke.
17945         (gnus-summary-reparent-children): Make into command.
17946
17947         * smiley.el (smiley-style): Default to `medium' if using a large
17948         font.
17949
17950         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
17951         does it itself.
17952
17953         * message.el (message-point-in-header-p): Simplify definition.
17954
17955 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17956
17957         * nnagent.el (nnagent-request-set-mark): Silence log file
17958         writing.
17959         (nnagent-request-set-mark): Use write-region instead of
17960         append-to-file.
17961
17962         * gnus-sum.el (gnus-read-header): Fudge article number if using a
17963         strange select method.
17964
17965         * ecomplete.el (ecomplete-display-matches): Get highlightling
17966         right.
17967         (ecomplete-display-matches): Use literals.
17968         (ecomplete-display-matches): Disable message logging.
17969
17970         * message.el (message-display-abbrev): Small optimization.
17971
17972         * ecomplete.el (ecomplete-display-matches): Allow automatic
17973         display.
17974
17975         * message.el (message-strip-forbidden-properties):
17976         Display abbrevs.
17977         (message-display-abbrev): Get automatic display right.
17978
17979         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
17980         keystrokes.
17981
17982 2006-04-13  Romain Francoise  <romain@orebokech.com>
17983
17984         TODO: Backport to v5-10!
17985
17986         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
17987         Move here (and rename) from gnus-registry.el.
17988
17989         * gnus-registry.el: Require gnus-util.
17990         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
17991
17992 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17993
17994         * gnus-group.el (gnus-group-catchup-current):
17995         Change if-then-else-if-then-else into cond.
17996         (gnus-group-catchup): Indent.
17997         (group-name-at-point): New function.
17998         (gnus-fetch-group): Provide default from thing at point.
17999
18000 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18001
18002         * message.el (message-display-abbrev): Fix regexp.
18003
18004         * ecomplete.el (ecomplete-highlight-match-line):
18005         Reimplement choosing.
18006         (ecomplete-highlight-match-line): Fix up code rewrite, remove
18007         dead variables.
18008
18009         * message.el (message-newline-and-indent): Remove debugging.
18010         (message-display-abbrev): Use new implementation.
18011
18012 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
18013
18014         * gnus-art.el (gnus-article-mode):
18015         Set cursor-in-non-selected-windows to nil.
18016
18017         * smiley.el: Revert previous change.
18018         (smiley-data-directory): defvar it before using it in the
18019         defcustom of `smiley-style'.
18020
18021 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18022
18023         * message.el (message-newline-and-indent): New function.
18024
18025         * ecomplete.el: Implement more bits.
18026
18027         * message.el (message-put-addresses-in-ecomplete): Clean up the
18028         string.
18029
18030         * ecomplete.el (ecomplete-add-item): Chop off decimals.
18031
18032         * gnus-sum.el (gnus-summary-save-parts):
18033         Bind gnus-summary-save-parts-counter and use it to make unique file
18034         names.
18035
18036         * gnus-art.el (gnus-ignored-headers): Add some more headers.
18037
18038         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
18039         parameter to say whether to actually parse the individual
18040         addresses.
18041
18042         * message.el (message-put-addresses-in-ecomplete): New function.
18043         (ecomplete): Require.
18044         (message-mail-alias-type): Add ecomplete as an option.
18045
18046 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
18047
18048         * flow-fill.el (fill-flowed): Remove trailing space from blank
18049         quoted lines.
18050
18051 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18052
18053         * smiley.el (smiley-style): Move definition later to avoid a
18054         compilation warning.
18055
18056 2006-04-12  Kenichi Handa  <handa@m17n.org>
18057
18058         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
18059         buffer and then decode the buffer text if necessary.
18060         (rfc2231-encode-string): Be sure to work on multibyte buffer at
18061         first, and after mm-encode-body, change the buffer to unibyte.
18062         Use mm-disable-multibyte instead of set-buffer-multibyte.
18063
18064 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18065
18066         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
18067         Content-Type header instead of Content-Disposition header.
18068         (gnus-mime-inline-part): Ditto.
18069         (gnus-mime-view-part-as-charset): Ignore charset that the part
18070         specifies.
18071
18072         * mm-decode.el (mm-display-part): Work with external parts and
18073         usual parts similarly.
18074
18075         * mm-extern.el (mm-inline-external-body): Use mm-display-part
18076         instead of gnus-display-mime.
18077
18078         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
18079         instead of with-temp-buffer.
18080
18081         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
18082         tag to summarized topics part in order to encode non-ASCII text.
18083
18084 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
18085
18086         * smiley.el (smiley-style): New variable.
18087         (smiley-directory): New function.
18088         (smiley-data-directory): Derive from `smiley-style' using
18089         `smiley-directory'.
18090         (smiley-regexp-alist): Add new entries.
18091
18092         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
18093         (gnus-article-browse-delete-temp): Add :version.
18094
18095 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
18096
18097         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
18098         the sieve region.
18099
18100 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18101
18102         * gnus.el (gnus-version-number): Bump version.
18103
18104 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
18105
18106         * gnus.el: No Gnus v0.4 is released.
18107
18108 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18109
18110         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
18111         layout.
18112
18113         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
18114         unknown charset.
18115
18116         * message.el (message-header-synonyms): Add Original-To to the
18117         default.
18118
18119         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
18120         optional parameter.
18121
18122 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
18123
18124         * gnus-fun.el (gnus): Require it for gnus-directory.
18125
18126 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18127
18128         * gnus-fun.el (gnus-face-properties-alist): Add :version.
18129
18130 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
18131
18132         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
18133
18134 2006-04-05  Simon Josefsson  <jas@extundo.com>
18135
18136         * password.el (password-reset): New function.
18137
18138 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
18139
18140         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
18141         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
18142
18143 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18144
18145         * nnweb.el (nnweb-google-create-mapping): Update regexp.
18146         Some whitespace was matched into the url, which broke browsing hits
18147         > 100 when mm-url-use-external was nil.
18148
18149 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
18150
18151         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
18152         Check gnus-extra-headers for 'Newsgroups.
18153
18154         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
18155         bound.
18156
18157 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
18158
18159         * pgg-gpg.el: Clean up process buffers every time gpg processes
18160         complete.
18161
18162 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
18163
18164         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
18165         doc string.
18166
18167 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
18168
18169         * pgg-gpg.el (pgg-gpg-process-filter)
18170         (pgg-gpg-wait-for-completion): Check if buffer is alive.
18171
18172         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
18173         lines, temporary fix.
18174
18175 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
18176
18177         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
18178
18179 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
18180
18181         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
18182         default-enable-multibyte-characters.  This reverts the change from
18183         revision 6.17 which is no longer necessary because the passphrase
18184         is sent separately now.  GnuPG messages are unreadable under
18185         multibyte locales with default-enable-multibyte-characters set to
18186         nil.
18187
18188 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
18189
18190         * message.el (message-tool-bar-gnome): Move "spell".
18191
18192 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
18193
18194         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
18195         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
18196         instead.
18197
18198 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
18199
18200         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
18201         Improve newsgroups handling for NNTP overviews which don't include
18202         Newsgroups.
18203
18204 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18205
18206         * message.el (message-resend): Bind message-generate-hashcash to nil.
18207
18208 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18209
18210         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
18211         when searching for already-paid recipients.
18212
18213 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
18214
18215         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
18216         passphrases when it is not needed.
18217         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
18218         passphrase stuff from gpg, should only be necessary when you use
18219         gpg with a smartcard.
18220
18221 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18222
18223         * mml.el (mml-insert-mime): Ignore cached contents of
18224         message/external-body part.
18225
18226         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
18227         (mm-insert-part): Ditto.
18228
18229 2006-03-23  Simon Josefsson  <jas@extundo.com>
18230
18231         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
18232         Reiner.
18233         (pgg-gpg-use-agent-p): Use it again.
18234
18235 2006-03-23  Simon Josefsson  <jas@extundo.com>
18236
18237         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
18238         older emacsen.
18239         (pgg-gpg-use-agent-p): Don't use it.
18240
18241 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
18242
18243         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
18244         if we can.
18245
18246 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
18247
18248         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
18249         (pgg-gpg-update-agent): New function.
18250         (pgg-gpg-use-agent-p): New function.
18251         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
18252         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
18253         (pgg-gpg-sign-region): Use it.
18254
18255 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18256
18257         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
18258         Reported by Ralf Wachinger <rwachinger@gmx.de>.
18259
18260 2006-03-21  Simon Josefsson  <jas@extundo.com>
18261
18262         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
18263         <wilde@sha-bang.de>.
18264         (pgg-gpg-use-agent): New variable.
18265         (pgg-gpg-process-region): Use it.
18266         (pgg-gpg-encrypt-region): Likewise.
18267         (pgg-gpg-encrypt-symmetric-region): Likewise.
18268         (pgg-gpg-decrypt-region): Likewise.
18269         (pgg-gpg-sign-region): Likewise.
18270         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
18271
18272 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
18273
18274         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
18275
18276         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
18277         Add comment on version.
18278
18279 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
18280
18281         * smiley.el: Add missing test smiley.
18282
18283 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18284
18285         * mm-decode.el (mm-with-part): New macro.
18286         (mm-get-part): Use it; work with message/external-body as well.
18287         (mm-save-part): Treat name and filename equally.
18288
18289         * mm-extern.el (mm-extern-cache-contents): New function.
18290         (mm-inline-external-body): Use it; force the part to be displayed;
18291         move undisplayer added to the cached handle to the parent.
18292
18293         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
18294         (gnus-mime-view-part-as-type): Work with message/external-body.
18295
18296         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
18297
18298 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
18299
18300         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
18301         images in image-load-path.  [Sync with image.el, revision 1.60, in
18302         Emacs.]
18303
18304 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
18305
18306         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
18307         path rather than symbol.  Always return list of directories.
18308         Guarantee that image directory comes first.  [Sync with image.el,
18309         revision 1.59, in Emacs.]
18310
18311         * message.el (message-make-tool-bar): Adjust to new API of
18312         `gmm-image-load-path-for-library'.
18313
18314         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18315
18316         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
18317
18318 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18319
18320         * gnus-art.el (gnus-article-only-boring-p):
18321         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
18322         intangible text.
18323         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
18324
18325 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
18326
18327         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
18328         Use `defun' instead of `gmm-defun-compat'.
18329
18330 2006-03-14  Simon Josefsson  <jas@extundo.com>
18331
18332         * message.el (message-unique-id): Don't use message-number-base36
18333         if (user-uid) is a float.
18334         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
18335
18336 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18337
18338         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
18339
18340         * gnus-art.el (gnus-mime-display-single): Make sure there is an
18341         empty line between a part and a message part.
18342
18343 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
18344
18345         * smiley.el: Add more test smileys.
18346         (smiley-data-directory, smiley-regexp-alist)
18347         (gnus-smiley-file-types): Fix doc strings.
18348         (smiley-update-cache): Clear smiley-cached-regexp-alist before
18349         adding new elements.
18350         (smiley-mouse-map): Unused code.  Make it a comment.
18351
18352 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18353
18354         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
18355         scan latest NoCeM messages instead of old ones.
18356         (gnus-nocem-check-article): Fix regexps so as to match to PGP
18357         delimiters that are recently used.
18358         (gnus-nocem-load-cache): Add autoload cookie.
18359
18360         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
18361
18362         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
18363         level which is larger than gnus-use-nocem is specified.
18364
18365         * gnus-group.el (gnus-group-get-new-news): Ditto.
18366
18367 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
18368
18369         * gnus-util.el (gnus-tool-bar-update): New function.
18370
18371         * gnus-group.el (gnus-group-update-tool-bar): New variable.
18372         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
18373
18374         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
18375
18376         * gnus-group.el (gnus-group-redraw-when-idle)
18377         (gnus-group-redraw-check): Remove.
18378         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
18379
18380 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18381
18382         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
18383         if optional last element is specified in splits (FIELD VALUE...).
18384
18385 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
18386
18387         * message.el (message-make-tool-bar): Rename gmm-image-load-path
18388         to gmm-image-load-path-for-library.  Call with no-error argument.
18389         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
18390
18391         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18392
18393         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
18394
18395         * gmm-utils.el (gmm-image-load-path): Remove alias.
18396
18397 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
18398
18399         * gmm-utils.el (gmm-image-load-path): Add alias.
18400
18401         * nnml.el (nnml-generate-nov-databases-directory): Rename from
18402         nnml-generate-nov-databases-1.
18403         (nnml-generate-nov-databases): Use it.
18404         (nnml-generate-nov-databases-directory): Document no-active
18405         argument.
18406
18407         * gmm-utils.el (gmm-image-load-path-for-library): Return single
18408         directory if path is t.  Add no-error.
18409
18410         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
18411         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
18412
18413         * gnus-art.el (gnus-article-browse-delete-temp-files):
18414         Simplify resetting gnus-article-browse-html-temp-list.
18415
18416         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
18417         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
18418         Add example to docstring.  Rename local variables.  Move error
18419         checks to default case in cond and simplify.
18420
18421 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18422
18423         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
18424         handle is multipart when calling it recursively.
18425         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
18426
18427 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
18428
18429         * nnimap.el (nnimap-request-update-info-internal): Optimize.
18430         Don't `gnus-uncompress-range' to avoid excessive memory usage.
18431
18432 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18433
18434         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
18435         is loaded.
18436
18437         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
18438         loaded.
18439
18440 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
18441
18442         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
18443         to "Emacs 23 (unicode)" in doc string.
18444
18445         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
18446         "Emacs 23 (unicode)" in comment.
18447
18448 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18449
18450         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
18451
18452         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
18453         characters 160 through 255 in Emacs 23.
18454
18455 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
18456
18457         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
18458         gnus-article-browse-html-temp.
18459         (gnus-article-browse-delete-temp): Make it customizable.
18460         Add `file'.  Adjust doc string.
18461         (gnus-article-browse-delete-temp-files): Add argument.
18462         Allow query for each file.  Adjust doc string.
18463         (gnus-article-browse-html-parts):
18464         Add `gnus-article-browse-delete-temp-files' to
18465         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
18466
18467 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
18468
18469         * gnus-art.el (gnus-article-browse-html-temp)
18470         (gnus-article-browse-delete-temp): New variables.
18471         (gnus-article-browse-delete-temp-files): New function.
18472         (gnus-article-browse-html-parts): Use it.
18473
18474 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
18475
18476         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
18477
18478         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
18479         string.
18480
18481         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
18482         gnus-summary-insert-new-articles when unplugged.
18483         Remove gnus-summary-search-article-forward.
18484
18485         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
18486         display-visual-class instead of display-color-cells.
18487
18488 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
18489
18490         * dgnushack.el: Autoload customize-group for XEmacs.
18491
18492         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
18493         message/* containing non-ASCII text properly.
18494
18495 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
18496
18497         * message.el: Require gmm-utils, remove autoloads.
18498         (message-tool-bar): Set default based on
18499         gmm-tool-bar-style.
18500         (message-tool-bar-gnome): Add gmm-customize-mode.
18501
18502         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
18503         gmm-tool-bar-style.
18504         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
18505
18506         * gnus-group.el (gnus-group-tool-bar): Set default based on
18507         gmm-tool-bar-style.
18508         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
18509
18510         * gmm-utils.el (gmm-image-directory): Rename variable from
18511         gmm-image-load-path.
18512         (gmm-image-load-path): Use gmm-image-directory.
18513         (gmm-customize-mode): New function.
18514         (gmm-tool-bar-style): New variable.
18515
18516         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
18517         gnus-group-redraw-line-number.
18518         (gnus-group-redraw-check): Simplify.
18519         (gnus-group-tool-bar-update): Remove redraw check.
18520         (gnus-group-make-tool-bar): Add redraw check.
18521
18522 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
18523
18524         * gnus-art.el (gnus-button): Add missing parentheses.
18525
18526 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18527
18528         * lpath.el: Fbind line-number-at-pos.
18529
18530 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18531
18532         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
18533
18534 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
18535
18536         * gnus-art.el (gnus-button): New face.
18537         (gnus-article-button-face): Use it.
18538
18539         * gnus-sum.el (gnus-summary-tool-bar-gnome):
18540         Add gnus-summary-next-page.  Re-order.
18541
18542         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
18543         next-node are now included.
18544         (gnus-group-redraw-line-number): New internal variable.
18545         (gnus-group-redraw-check): Helper function for updating the tool
18546         bar.
18547         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
18548
18549         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
18550
18551         * spam.el (spam-spamassassin-score-regexp): New internal variable.
18552         (spam-extra-header-to-number, spam-check-spamassassin-headers):
18553         Use it to match format of Spamassassin 3.0 and later.
18554         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
18555         (spam-check-bogofilter)
18556         (spam-bogofilter-register-with-bogofilter): Fix args of
18557         `gnus-error' calls.
18558
18559 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
18560
18561         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
18562         unnecessary interaction when sending queued mails.
18563         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
18564
18565 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
18566
18567         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
18568         first or last are nil.
18569
18570 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18571
18572         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
18573
18574 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18575
18576         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
18577
18578 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18579
18580         * dns.el (query-dns): Protect more against buggy tcp output.
18581
18582 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
18583
18584         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
18585         nov.php.
18586
18587 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18588
18589         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
18590         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
18591         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
18592         output on the server side.
18593         (nnweb-google-create-mapping): Update regexps and add some
18594         progress indication.
18595
18596 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
18597
18598         * gnus-group.el (gnus-group-tool-bar-gnome):
18599         Fix gnus-agent-toggle-plugged.  Re-order icons.
18600         (gnus-group-tool-bar-gnome):
18601         Add gnus-group-{prev,next}-unread-group.
18602         (gnus-group-tool-bar-gnome): Re-order icons.
18603
18604         * gnus-sum.el (gnus-summary-tool-bar-gnome):
18605         Move gnus-summary-insert-new-articles.
18606
18607         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
18608         Fix comments.
18609
18610         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
18611         also available in Emacs 21.3.
18612
18613         * message.el (message-fix-before-sending): Change "Emacs 22" to
18614         "Emacs 23 (unicode)" in comment.
18615
18616         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
18617         "Emacs 23 (unicode)" in comment.
18618
18619         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
18620         comment.
18621         (mm-coding-system-p): Add comment about no-MULE XEmacs.
18622
18623         * mm-view.el (mm-fill-flowed): Add :version.
18624
18625 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18626
18627         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
18628         and load-path.
18629
18630 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
18631
18632         * message.el: Autoload gmm-image-load-path.
18633         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
18634         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
18635         consitency.
18636
18637         * gmm-utils.el (gmm-image-load-path): Also search in
18638         "../etc/images".  Don't set gmm-image-load-path if we don't find
18639         the image.
18640
18641 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18642
18643         * gmm-utils.el (gmm-image-load-path): Don't make
18644         `gmm-image-load-path' include subdirectories which the second arg
18645         `image' might specify.
18646
18647         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
18648         subdirectory to icon file names.
18649
18650         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
18651
18652 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
18653
18654         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
18655         gmm-image-load-path calls.
18656
18657         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18658
18659         * message.el (message-make-tool-bar): Ditto.
18660
18661         * mml.el (mml-preview): Add comment concerning tool bar icons.
18662
18663         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
18664         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
18665
18666         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
18667         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
18668
18669         * message.el (message-tool-bar-gnome): Use new icon names.
18670         (message-make-tool-bar): Use `gmm-image-load-path'.
18671
18672         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
18673         New functions from MH-E.
18674         (gmm-image-load-path): New variable from MH-E.
18675         (gmm-image-load-path): New function from MH-E.  Add arguments
18676         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
18677         *-image-load-path-called-flag.
18678
18679 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
18680
18681         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
18682
18683 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
18684
18685         * nnimap.el (nnimap-request-move-article): Change folder back to
18686         source group before deleting.
18687
18688 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
18689
18690         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
18691
18692         * gnus-art.el (mm-url-insert-file-contents-external):
18693         Autoload mm-url.
18694
18695         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
18696
18697 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18698
18699         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
18700         coding system which mm-charset-to-coding-system returns for a
18701         given charset is valid.
18702
18703 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
18704
18705         * html2text.el (html2text-remove-tag-list):
18706         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
18707
18708 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
18709
18710         * gnus-cus.el: Revert 2005-10-17 change.
18711
18712 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18713
18714         * gnus-art.el (article-strip-banner):
18715         Call article-really-strip-banner only when the regexp match is made.
18716
18717 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18718
18719         * gnus-art.el (article-strip-banner):
18720         Use gnus-extract-address-components instead of
18721         mail-header-parse-addresses to make it work with non-ASCII text;
18722         remove mail-encode-encoded-word-string.
18723
18724         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
18725         values which are surrounded with \"...\"; make it never cause a
18726         Lisp error; give up parsing of parameters if it failed in
18727         extracting type.
18728
18729 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
18730
18731         * smime.el (smime-cert-by-ldap-1): Fix bug where
18732         `smime-ldap-search' returns results without userCertificates.
18733
18734 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18735
18736         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
18737
18738 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
18739
18740         * spam.el (spam-check-spamassassin-headers): Adapt format for
18741         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
18742         <ari@mbf.ocn.ne.jp>.
18743         (spam-list-of-processors): Add spam-use-gmane.
18744
18745 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18746
18747         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
18748         make-temp-file; make it work with XEmacs as well.
18749
18750         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
18751         mm-make-temp-file.
18752
18753         * mm-decode.el (mm-display-external): Use the 3rd arg of
18754         mm-make-temp-file.
18755         (mm-create-image-xemacs): Ditto.
18756
18757 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18758
18759         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
18760         with message-narrow-to-headers.
18761         (gnus-draft-setup): Narrow to header to run message-fetch-field.
18762         (gnus-draft-check-draft-articles): New function.
18763         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
18764
18765 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
18766
18767         * gnus-art.el (gnus-article-browse-html-parts):
18768         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
18769         Don't use suffix argument for mm-make-temp-file for Emacs 21
18770         compatibility.  Remove useless `format'.
18771
18772 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18773
18774         * nnweb.el (nnweb-google-wash-article): Update regexps.
18775         (nnweb-group-alist): Use defvoo instead of defvar.
18776
18777 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18778
18779         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
18780         re-loading nn* modules.
18781
18782 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
18783
18784         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
18785         for `tool-bar-mode' and don't check it's default-value.
18786
18787         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18788
18789         * message.el (message-make-tool-bar): Ditto.
18790
18791         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
18792         `substring'.  Shorten tmp-file name.
18793
18794         * gnus.el: Remove bogus comment.
18795
18796 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
18797
18798         * gnus-art.el (gnus-article-browse-html-parts): New function.
18799         (gnus-article-browse-html-article): New function for viewing html
18800         articles with a browser.
18801
18802 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
18803
18804         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
18805         in elisp.
18806         (pgg-gpg-encrypt-symmetric-region): Ditto.
18807         (pgg-gpg-sign-region): Ditto.
18808
18809         * pgg-def.el (pgg-text-mode): New variable.
18810
18811         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
18812         (mml2015-pgg-encrypt): Ditto.
18813
18814         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
18815         (mml1991-pgg-encrypt): Ditto.
18816
18817 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18818
18819         * nnfolder.el (nnfolder-insert-newsgroup-line):
18820         Use message-make-date instead of current-time-string.
18821
18822         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
18823         to gnus-decoded which mm-uu might set.
18824
18825 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18826
18827         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
18828         don't decode quoted parameters; remove misimported Emacs code.
18829         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18830         (rfc2231-decode-encoded-string): Don't use split-string which
18831         behaves differently according to Emacs version; use
18832         mm-decode-coding-region to convert charset to coding-system.
18833         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18834         (rfc2231-encode-string): Remove misimported Emacs code.
18835
18836 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
18837
18838         * gnus-art.el (article-decode-charset): Don't use ignore-errors
18839         when calling mail-header-parse-content-type.
18840         (article-de-quoted-unreadable): Ditto.
18841         (article-de-base64-unreadable): Ditto.
18842         (article-wash-html): Ditto.
18843
18844         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
18845         calling mail-header-parse-content-type and
18846         mail-header-parse-content-disposition.
18847         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
18848         mail-header-parse-content-type.
18849
18850         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
18851         insert charset and format parameters; encode description after
18852         inserting it to buffer.
18853         (mml-insert-parameter): Fold lines properly even if a parameter is
18854         segmented into two or more lines; change the max column to 76.
18855
18856         * rfc1843.el (rfc1843-decode-article-body): Don't use
18857         ignore-errors when calling mail-header-parse-content-type.
18858
18859         * rfc2231.el (rfc2231-parse-string): Return at least type if
18860         possible; don't cause an error even if it fails in parsing of
18861         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18862         (rfc2231-encode-string): Don't break lines at the beginning, leave
18863         it to mml-insert-parameter.
18864
18865         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
18866         calling mail-header-parse-content-type.
18867
18868 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
18869
18870         * spam-report.el (spam-report-gmane-use-article-number):
18871         Improve doc string.
18872         (spam-report-gmane-internal): Check if a suitable header was found
18873         in the article.
18874
18875 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18876
18877         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
18878         (rfc2231-encode-string): Make param*=value always begin with LWSP.
18879
18880 2006-02-05  Romain Francoise  <romain@orebokech.com>
18881
18882         Update copyright notices of all files in the gnus directory.
18883
18884 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18885
18886         * nnweb.el (nnweb-request-group): Avoid growing overview files.
18887
18888 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18889
18890         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
18891         segmented lines of parameter value to cope with Thunderbird 1.5
18892         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
18893         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18894         (rfc2231-encode-string): Don't make lines exceeding 76 column.
18895
18896 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
18897
18898         * mml.el (mml-generate-mime-1): Correct the order of inline signed
18899         parts.
18900
18901 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18902
18903         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
18904         there's only one active file for all servers.
18905         (nnweb-request-scan): Make sure nnweb-articles is initialized on
18906         solid groups.  Gnus might have used a FAST request to select the group.
18907         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
18908         and nnweb-search redundantly in the active file.
18909         (nnweb-request-list): Don't list bogus groups.  There can only be one.
18910         (nnweb-request-create-group): Don't use ARGS.
18911         (nnweb-possibly-change-server, nnweb-request-group): Remove some
18912         initializations.  Let nnoo do the work.
18913
18914 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
18915
18916         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
18917         Say the part has been decoded.
18918
18919         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
18920
18921 2006-01-31  Kevin Ryde  <user42@zip.com.au>
18922
18923         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
18924         mailcap-viewer-test-cache when there's no 'test clause, since that
18925         will invert the meaning of a "nil" test previously determined by
18926         mailcap-mailcap-entry-passes-test.
18927
18928 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
18929
18930         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
18931         compiling.
18932
18933         * gnus-sum.el: Ditto.
18934
18935         * message.el: Don't bind tool-bar-map when compiling.
18936
18937 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
18938
18939         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
18940
18941 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18942
18943         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
18944         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
18945         current Google Groups.
18946
18947 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
18948
18949         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
18950         and tool-bar-mode.
18951
18952         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
18953         and tool-bar-mode.
18954
18955         * message.el (message-tool-bar-update): Simplify.
18956         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
18957
18958         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
18959         gnus-summary-buffer.
18960         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
18961         gnus-summary-reply.
18962
18963         * gmm-utils.el (gmm): Add :version.
18964
18965 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18966
18967         * Makefile.in (clean): New rule.
18968         (distclean): Use it.
18969
18970 2006-01-26  Steve Youngs  <steve@sxemacs.org>
18971
18972         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
18973         Don't autoload.
18974
18975 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18976
18977         * gmm-utils.el (gmm-verbose): Add :group.
18978
18979 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
18980
18981         * message.el: Change some comments WRT tool-bars.
18982
18983         * gnus-sum.el (gnus-summary-tool-bar)
18984         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
18985         (gnus-summary-tool-bar-zap-list): New variables.
18986         (gnus-summary-make-tool-bar): Complete rewrite using
18987         `gmm-tool-bar-from-list'.
18988
18989         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
18990         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
18991         New variables.
18992         (gnus-group-make-tool-bar): Complete rewrite using
18993         `gmm-tool-bar-from-list'.
18994         (gnus-group-tool-bar-update): New function.
18995
18996         * message.el (message-mode-field-menu): Add "Show hidden Headers".
18997
18998 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18999
19000         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
19001         is dissected into a single part of which the type is the same as
19002         the given one; decode charset.
19003
19004 2006-01-21  Kevin Ryde  <user42@zip.com.au>
19005
19006         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
19007         into alists as symbol not string, since that's what
19008         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
19009         look for.
19010
19011 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
19012
19013         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
19014         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
19015
19016         * message.el (message-tool-bar-gnome): Use gmm-ignore.
19017
19018 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19019
19020         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
19021         (gnus-xmas-mime-security-button-menu): New function.
19022
19023         * gnus-art.el (gnus-mime-security-button-commands): New variable.
19024         (gnus-mime-security-button-menu): New definition.
19025         (gnus-mime-security-button-map): Use them.
19026         (gnus-mime-security-button-menu): New function.
19027         (gnus-insert-mime-security-button): Addition to help echo.
19028         (gnus-mime-security-run-function, gnus-mime-security-save-part)
19029         (gnus-mime-security-pipe-part): New functions.
19030
19031         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
19032         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
19033
19034         * mm-decode.el (mm-handle-set-disposition): Remove.
19035         (mm-handle-set-description): Remove.
19036
19037 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19038
19039         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
19040         (mm-w3m-standalone-supports-m17n-p): New function.
19041         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
19042         w3m usage.
19043
19044         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
19045         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
19046
19047 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
19048
19049         * message.el (message-tool-bar-zap-list):
19050         Use gmm-tool-bar-zap-list as custom type.
19051         (message-tool-bar-update): New function.
19052         (message-tool-bar, message-tool-bar-gnome)
19053         (message-tool-bar-retro): Add message-tool-bar-update.
19054         (message-tool-bar-gnome): Add flyspell-buffer.
19055
19056         * gnus-util.el (gnus-error): Describe `args'.
19057
19058         * gmm-utils.el (gmm-error): Describe `args'.
19059         (gmm-tool-bar-zap-list): New widget.
19060         (gmm-tool-bar-from-list): Improve description of `zap-list'.
19061
19062 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19063
19064         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
19065         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
19066         the number of recursive calls.
19067
19068         * mm-decode.el (mm-handle-set-disposition): New macro.
19069         (mm-handle-set-description): New macro.
19070
19071 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19072
19073         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
19074         encoding.
19075
19076 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
19077
19078         * message.el (message-tool-bar-zap-list, message-tool-bar)
19079         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
19080         (message-tool-bar-local-item-from-menu): Remove.
19081         (message-tool-bar-map): Replace by `message-make-tool-bar'.
19082         (message-make-tool-bar): New function.
19083         (message-mode): Use `message-make-tool-bar'.
19084
19085         * gmm-utils.el: New file.
19086         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
19087         (gmm-lazy): New widget copied from `nnmail.el'.
19088         (gmm-tool-bar-from-list): New function for creating customizable
19089         tool bars.
19090         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
19091         output.
19092         (gmm): Add :prefix to defgroup.
19093
19094 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
19095
19096         * gmm-utils.el (gmm-widget-p): New function.
19097
19098 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
19099
19100         * mml.el (mml-attach-file): Describe `description' in doc string.
19101         (mml-menu): Add Emacs MIME manual and PGG manual.
19102
19103 2006-01-20  Richard M. Stallman  <rms@gnu.org>
19104
19105         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
19106
19107 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
19108
19109         * nntp.el (nntp-end-of-line): Doc fix.
19110
19111 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
19112
19113         * imap.el (imap-open): Handle case where buffer is a buffer
19114         object.
19115
19116 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
19117
19118         * gnus-delay.el (gnus-delay): Don't autoload.
19119         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
19120         to be re-loaded when customizing the `gnus-delay' group.
19121
19122 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
19123
19124         * message.el (message-insert-citation-line): Use newlines.
19125
19126 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
19127
19128         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
19129         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
19130         these routines, so the passphrase can be managed externally and
19131         passed in to the system.
19132         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
19133         pgg-add-passphrase-to-cache function.
19134
19135         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
19136         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
19137         these routines, so the passphrase can be managed externally and
19138         passed in to the system.
19139         (pgg-pgp5-sign-region): Use new name of
19140         pgg-add-passphrase-to-cache function.
19141
19142 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
19143
19144         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
19145         part of the decoded armor to find the key-identifier.
19146         (pgg-gpg-lookup-key-owner): New function to return the
19147         human-readable identifier of a key owner.
19148         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
19149         itself.
19150         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
19151         the key value) if we have a key and can match it against a secret
19152         key.  Also, added a note pointing out fact that the prompt only
19153         indicates the first matching key.
19154
19155         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
19156         pgg-decrypt-region.
19157         (pgg-add-passphrase-to-cache): Rename from
19158         `pgg-add-passphrase-cache' to reduce confusion (all callers
19159         changed).
19160         (pgg-remove-passphrase-from-cache): Rename from
19161         `pgg-remove-passphrase-cache' to reduce confusion (all callers
19162         changed).
19163         (pgg-read-passphrase, pgg-add-passphrase-cache)
19164         (pgg-remove-passphrase-cache): Add informative docstrings.
19165         (pgg-decrypt): Convey provided passphrase in subordinate call to
19166         pgg-decrypt-region.
19167
19168 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
19169
19170         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
19171         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
19172         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
19173         'passphrase' argument, so the passphrase can be managed externally
19174         and then passed in to the system.
19175
19176         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
19177         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
19178         so the passphrase cache can be used reliably with identifiers
19179         besides a pgp packet's key id.
19180
19181         * pgg-gpg.el (pgg-gpg-encrypt-region)
19182         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
19183         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
19184         these routines, so the passphrase can be managed externally and
19185         passed in to the system.
19186
19187         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
19188         'notruncate' argument, so the passphrase cache can be used
19189         reliably with identifiers besides a pgp packet's key id.
19190
19191 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
19192
19193         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
19194         symmetric encryption.
19195         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
19196         encrypted session key.
19197         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
19198         message ask for the passphrase in a proper way.
19199
19200         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
19201         New user commands for symmetric encryption.
19202
19203 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19204
19205         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
19206
19207         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
19208
19209 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
19210
19211         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
19212
19213 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19214
19215         * mm-decode.el (mm-inlined-types): Add application/pgp.
19216         (mm-automatic-display): Ditto.
19217
19218         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
19219         part as text.
19220
19221 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19222
19223         * nnrss.el: Update copyright.
19224         (nnrss-opml-import): Query whether to subscribe to each entry.
19225
19226         * gnus-art.el:
19227         * gnus-sum.el:
19228         * gnus-xmas.el:
19229         * messagexmas.el:
19230         * mm-uu.el:
19231         * mm-view.el: Update copyright.
19232
19233 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
19234
19235         * message.el (message-info): New function.
19236         (message-mode-menu): Add it.
19237         Update copyright.
19238
19239         * ChangeLog: Fix and update copyright.
19240
19241 2006-01-13  Romain Francoise  <romain@orebokech.com>
19242
19243         * message.el (message-forward-subject-name-subject): Prefer the
19244         address to 'nowhere' if the sender has no name.
19245         Fix typo.  Update copyright year.
19246
19247 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19248
19249         * gnus-art.el (article-wash-html):
19250         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
19251         (gnus-article-wash-html-with-w3m-standalone): New function.
19252
19253         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
19254         mm-inline-text-html-render-with-w3m-standalone.
19255         (mm-text-html-washer-alist): Map w3m-standalone to
19256         gnus-article-wash-html-with-w3m-standalone.
19257         (mm-inline-text-html-render-with-w3m-standalone): New function.
19258
19259 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
19260
19261         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
19262         Improve LaTeX.
19263
19264 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19265
19266         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
19267         (nnrss-request-article): Render text/plain parts as HTML.
19268
19269         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
19270         the buffer.
19271
19272 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
19273
19274         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
19275         custom definition of `gnus-posting-styles'.
19276
19277         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
19278         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
19279
19280 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
19281
19282         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
19283         Use nntp for bug archive.
19284
19285 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
19286
19287         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
19288         parts.
19289         (nnrss-normalize-date): New function converts ISO 8601 date into
19290         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
19291         (nnrss-check-group): Use it.
19292
19293 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19294
19295         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
19296
19297         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
19298         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
19299         (nnrss-insert-w3): Ditto.
19300
19301 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19302
19303         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
19304         the articles to be forwarded including the case where neither a
19305         number of articles nor a region is specified.
19306
19307 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
19308
19309         * nnrss.el (nnrss-request-article): Fix last change; fill
19310         text/plain parts.
19311
19312 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19313
19314         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
19315         in text/plain part.
19316         (nnrss-check-group): Don't add excessive newline to dc:subject.
19317
19318 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
19319
19320         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
19321         article.
19322
19323 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
19324
19325         * nnml.el: Don't require gnus-bcklg.  Autoload it.
19326         (nnml-use-compressed-files, nnml-save-mail): Support other
19327         comression programs such as bzip2.
19328
19329 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19330
19331         * dns.el (query-dns): Make sure we check the buffer size before
19332         removing tcp headers.
19333
19334 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19335
19336         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
19337         remove MIME buttons associated with multipart/alternative parts.
19338         (gnus-mime-display-alternative): Tag buttons using `article-type'
19339         text property.
19340
19341         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
19342         associated with multipart/alternative parts.
19343
19344         * gnus-art.el (gnus-signature-separator): Fix custom type.
19345
19346         * mm-decode.el (mm-inlined-types): Fix custom type.
19347         (mm-keep-viewer-alive-types): Ditto.
19348         (mm-automatic-display): Ditto.
19349         (mm-attachment-override-types): Ditto.
19350         (mm-inline-override-types): Ditto.
19351         (mm-automatic-external-display): Ditto.
19352
19353 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
19354
19355         * spam-report.el (spam-report-user-mail-address)
19356         (spam-report-user-agent): New variables.
19357         (spam-report-url-ping-plain): Use spam-report-user-agent.
19358
19359 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
19360
19361         * gnus-art.el (gnus-button-handle-custom): Do not just use
19362         `customize-apropos' for any "M-x customize-*" button but the
19363         function called for.  Accept both the function name and its
19364         argument in order to achieve this.
19365         (gnus-button-alist): Remove support for "custom:" URL's.
19366         Pass function name to `gnus-button-handle-custom' in case of "M-x
19367         customize-*" buttons.
19368
19369 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19370
19371         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
19372         multipart/alternative and add xref to mm-discouraged-alternatives
19373         in doc string.
19374
19375         * mm-decode.el (mm-discouraged-alternatives): Add xref to
19376         gnus-buttonized-mime-types in doc string.
19377
19378 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
19379
19380         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
19381         Suggest image/.* in the doc string.
19382
19383 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
19384
19385         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
19386         message-marks (Debian bug #342521).
19387
19388 2005-12-12  Simon Josefsson  <jas@extundo.com>
19389
19390         * password.el (password-read-from-cache): Add.
19391         (password-read): Use it.
19392
19393 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19394
19395         * rfc2047.el (rfc2047-charset-to-coding-system):
19396         Recognize us-ascii as a MIME charset.
19397
19398         * mm-bodies.el (mm-decode-content-transfer-encoding):
19399         Protect against the case where the 2nd arg TYPE is nil.
19400
19401 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
19402
19403         * pop3.el (pop3-stream-type): Fix custom version.
19404
19405         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
19406
19407 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
19408
19409         * mm-decode.el (mm-display-external): Add missing cdr.
19410
19411 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
19412
19413         * mm-decode.el (mm-display-external): Use nametemplate (defined in
19414         RFC1524) if it is in mailcap or add a suffix according to
19415         mailcap-mime-extensions when generating a temp filename; postpone
19416         deleting a temp file for 2 seconds for some wrappers, shell
19417         scripts, and so on, which might exit right after having started a
19418         viewer command as a background job.
19419
19420 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
19421
19422         * nntp.el (nntp-marks-directory): Fix custom group.
19423
19424         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
19425         steps when < 10.
19426
19427         * gnus-start.el (gnus-no-server-1):
19428         Mention `gnus-level-default-subscribed' in doc string.
19429
19430 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
19431
19432         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
19433         parens.
19434
19435 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19436
19437         * gnus-xmas.el (gnus-use-toolbar): Revert.
19438         (gnus-xmas-setup-toolbar): Use global default-toolbar if
19439         gnus-use-toolbar is default.
19440
19441         * messagexmas.el (message-use-toolbar): Revert.
19442         (message-setup-toolbar): Use global default-toolbar if
19443         message-use-toolbar is default.
19444
19445 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19446
19447         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
19448         according to default-toolbar-visible-p.
19449
19450         * messagexmas.el (message-use-toolbar): Ditto.
19451
19452 2005-11-26  Dave Love  <fx@gnu.org>
19453
19454         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
19455         (tls-program, tls-success): Provide openssl alternative.
19456
19457         * starttls.el: Doc fixes.
19458         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
19459         SERVICE to PORT.
19460
19461         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
19462         port null or service name.
19463         (starttls-negotiate): Autoload.
19464
19465 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19466
19467         * message.el (message-kill-to-signature): Fix interactive spec.
19468
19469 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19470
19471         * pop3.el (pop3-open-server): Recognize a string as a service name.
19472
19473 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
19474
19475         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
19476
19477 2005-11-23  Dave Love  <fx@gnu.org>
19478
19479         Add pop3s, pop3/starttls.
19480
19481         * pop3.el (pop3-authentication-scheme): Clarify doc.
19482         (open-tls-stream, starttls-open-stream): Autoload.
19483         (pop3-stream-type): New.
19484         (pop3-open-server): Use it.
19485
19486         * mail-source.el (mail-sources): Fix some :types.  Add stream type
19487         for POP.
19488         (mail-source-keyword-map): Add :stream for POP.
19489         (mail-source-fetch-pop): Use pop3-stream-type.
19490
19491 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19492
19493         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
19494         of current-time-string.
19495
19496 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
19497
19498         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
19499         date header.
19500
19501 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
19502
19503         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
19504         it can seriously impact performance as it bypasses the agent's
19505         local caches.
19506
19507 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
19508
19509         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
19510         must be explicitly online rather than "not explicitly offline" for
19511         its flags to be synchronized.
19512
19513         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
19514         that gnus-uu-unmark-thread will function correctly.
19515
19516         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
19517         1024K is instead displayed as 1M.
19518
19519 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19520
19521         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
19522
19523 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
19524
19525         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
19526
19527 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
19528
19529         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
19530         error message to display actual error condition.
19531         (gnus-agent-save-local): Avoid saving symbols that are bound to
19532         nil as they simply result in a warning message in
19533         gnus-agent-read-local.
19534
19535 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19536
19537         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
19538         rather than make-variable-buffer-local for file-precious-flag.
19539
19540 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
19541
19542         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
19543         for duplicates which are removed.  The invalid sort check then
19544         triggers a rescan after the sort as sorting may have moved
19545         duplicate entries such that they can be cheaply detected.
19546
19547 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19548
19549         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
19550
19551 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
19552
19553         * gnus-agent.el (gnus-agent-article-alist-save-format):
19554         Change internal variable to a custom variable.  Change default value
19555         from compressed(2) to uncompressed(1).
19556         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
19557         support for uncompressed agentview files.  Taken together, reading
19558         the agentview file should now be 6-7 times faster.
19559
19560 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
19561
19562         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
19563         as a buffer-local variable.  This avoids creating truncated
19564         dribble files as a result of a hang up, eg.
19565
19566 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
19567
19568         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
19569         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
19570         XEmacs.
19571
19572 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
19573
19574         * gnus-start.el (gnus-start-draft-setup):
19575         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
19576
19577         * gnus.el (gnus-splash): Change custom group.
19578         (gnus-group-get-parameter, gnus-group-parameter-value):
19579         Describe allow-list argument.
19580
19581         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
19582         string.
19583
19584 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
19585
19586         * gnus-art.el (gnus-default-article-saver): Add user-defined
19587         `function' to custom type.
19588
19589 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
19590
19591         * imap.el (imap-open): Handle case where buffer is a buffer
19592         object.
19593
19594 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
19595
19596         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
19597         long lines.
19598         (gnus-cache-delete-group): Wrap doc strings.
19599
19600         * gnus-agent.el (gnus-agent-rename-group)
19601         (gnus-agent-delete-group): Wrap doc strings.
19602
19603 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19604
19605         * messagexmas.el (message-use-toolbar): Change the valid values
19606         into default, top, bottom, left, and right.
19607         (message-toolbar-thickness): New variable.
19608         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
19609         well.
19610         (message-setup-toolbar): Make it work.
19611
19612         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
19613         (gnus-use-toolbar): Change the valid values into default, top,
19614         bottom, left, and right.
19615         (gnus-toolbar-thickness): New variable.
19616         (gnus-xmas-setup-toolbar): New function.
19617         (gnus-xmas-setup-group-toolbar): Use it.
19618         (gnus-xmas-setup-summary-toolbar): Use it.
19619
19620 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19621
19622         * gnus-start.el (gnus-1): Add "native" to
19623         gnus-predefined-server-alist.
19624
19625         * gnus.el (gnus-method-to-server): Don't add "native" to the
19626         lists here, because that leads to problems when
19627         gnus-select-method is bound.
19628
19629 2005-11-09  Simon Josefsson  <jas@extundo.com>
19630
19631         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
19632         use (not sort-by-date) instead.
19633
19634 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
19635
19636         * gnus-delay.el (gnus-delay-group): Don't autoload.
19637         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
19638         to be re-loaded when customizing the `gnus-delay' group.
19639
19640 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
19641
19642         * message.el: Revert last changes.
19643         (message-insert-citation-line): Use newlines.
19644
19645 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
19646
19647         * message.el (message-courtesy-message)
19648         (message-mark-insert-begin, message-mark-insert-end)
19649         (message-elide-ellipsis, message-cancel-message)
19650         (message-add-header, message-change-subject)
19651         (message-cross-post-followup-to-header)
19652         (message-cross-post-insert-note, message-reduce-to-to-cc)
19653         (message-widen-reply, message-delete-not-region)
19654         (message-kill-to-signature, message-insert-signature)
19655         (message-insert-importance-high, message-insert-importance-low)
19656         (message-insert-or-toggle-importance)
19657         (message-insert-disposition-notification-to)
19658         (message-indent-citation, message-yank-original)
19659         (message-cite-original-without-signature, message-cite-original)
19660         (message-insert-citation-line, message-position-on-field)
19661         (message-fix-before-sending, message-send-mail-partially)
19662         (message-send-mail, message-send-mail-with-sendmail)
19663         (message-send-mail-with-qmail, message-send-news)
19664         (message-check-news-header-syntax, message-generate-headers)
19665         (message-insert-courtesy-copy, message-fill-address)
19666         (message-fill-header, message-shorten-references)
19667         (message-setup-1, message-cancel-news)
19668         (message-forward-make-body-plain, message-forward-make-body-mime)
19669         (message-forward-make-body-mml, message-encode-message-body)
19670         (message-forward-make-body-digest-plain)
19671         (message-forward-make-body-digest-mime)
19672         (message-use-alternative-email-as-from): Insert `hard-newline'
19673         instead of ordinary newlines.
19674
19675 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19676
19677         * message.el (message-generate-headers): Downcase the argument
19678         given to message-check-element.
19679
19680 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
19681
19682         * nntp.el (nntp-authinfo-rejected): New error condition.
19683         (nntp-wait-for): Use new error condition to signal authentication
19684         error.
19685         (nntp-retrieve-data): Rethrow new error condition to break out of
19686         recursive call to nntp-send-authinfo.
19687
19688 2005-11-08  Romain Francoise  <romain@orebokech.com>
19689
19690         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
19691         (gnus-summary-exit-map): Bind to `Z p'.
19692         (gnus-summary-make-menu-bar): Add menu item.
19693
19694 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
19695
19696         * gnus-art.el (gnus-article-treat-custom): Add `first'.
19697         (gnus-treat-*): Add `first' in all doc strings.
19698
19699         * gnus-group.el (gnus-group-compact-group): Fix typo.
19700
19701 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19702
19703         * gnus.el (gnus-parameters-case-fold-search): New variable.
19704         (gnus-parameters-get-parameter): Use it.
19705
19706         * gnus-score.el (gnus-home-score-file): Doc fix.
19707
19708 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
19709
19710         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
19711
19712 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
19713
19714         * mm-util.el (mm-special-display-p): New function.
19715
19716         * mml.el (mml-preview): Use it; doc fix.
19717
19718 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
19719
19720         * imap.el (imap-open): Handle case where buffer is a buffer object.
19721
19722 2005-10-29  Romain Francoise  <romain@orebokech.com>
19723
19724         * message.el (message-fix-before-sending): Fix comment.
19725
19726 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
19727
19728         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
19729
19730 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
19731
19732         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
19733         Used in gnus-score.el.
19734
19735 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
19736
19737         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
19738
19739 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
19740
19741         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
19742         whitespace removed in revision 7.8.  Use concatenated string to
19743         protect trailing whitespace.
19744
19745 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
19746
19747         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
19748         (nnimap-request-expire-articles): Use it to avoid sending 'UID
19749         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
19750         Courier IMAP ("some version from 2004").  Mostly based on similar
19751         code in the same function.
19752
19753 2005-10-26  Didier Verna  <didier@xemacs.org>
19754
19755         * gnus-group.el (gnus-group-compact-group): Invalidate original
19756         article buffer.
19757         * gnus-srvr.el (gnus-server-compact-server): Ditto.
19758         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
19759         NOV database and in article itself.
19760         Invalidate article backlog.
19761
19762 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
19763
19764         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
19765
19766 2005-10-26  Simon Josefsson  <jas@extundo.com>
19767
19768         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
19769         part of 2004-07-25 change.
19770
19771 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19772
19773         * message.el (message-display-completion-list): New function.
19774         (message-expand-group): Use it; make sure the Completions buffer
19775         is modifiable.
19776 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
19777
19778         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
19779         user-mail-name is an empty string.
19780
19781 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
19782
19783         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
19784         depending on gnus-score-decay-constant.
19785
19786         * encrypt.el (encrypt-insert-file-contents)
19787         (encrypt-write-file-contents): Don't use `gnus-message'.
19788
19789         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
19790         arguments.
19791         (mm-uu-type-alist): Add message-marks and insert-marks.
19792         Pass arguments to mm-uu-verbatim-marks-extract.
19793         (mm-uu-hide-markers): New variable.
19794         (mm-uu-extract): Use face similar to `gnus-cite-3'.
19795
19796         * gnus-fun.el (gnus-convert-image-to-x-face-command)
19797         (gnus-convert-image-to-face-command): Use "convert" by default to
19798         allow other input image formats.
19799         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
19800         accordingly.
19801
19802 2005-10-23  Simon Josefsson  <jas@extundo.com>
19803
19804         * imap.el (imap-gssapi-program): Align command line parameters
19805         with latest GNU SASL.
19806         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
19807
19808 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19809
19810         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
19811         HTML.
19812         (nnslashdot-request-article): Ditto.
19813
19814         * lpath.el (featurep): Add nobreak-char-display.
19815
19816 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
19817
19818         * mail-source.el (mail-source-fetch-pop): Require pop3.
19819         (mail-source-check-pop): Ditto.
19820
19821 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19822
19823         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
19824         errors.
19825
19826 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
19827
19828         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
19829         (gnus-treat-strip-leading-blank-lines): Improve doc string.
19830
19831         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
19832
19833         * mm-bodies.el (mm-decode-string):
19834         Call `mm-charset-to-coding-system' with allow-override argument.
19835
19836 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19837
19838         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
19839         (rfc2047-charset-to-coding-system): New function.
19840         (rfc2047-decode-encoded-words): New function.
19841         (rfc2047-decode-region): Use them.
19842         (rfc2047-decode-cte): Remove.
19843         (rfc2047-parse-and-decode): Remove.
19844         (rfc2047-decode): Remove.
19845
19846 2005-10-15  Kenichi Handa  <handa@m17n.org>
19847
19848         * rfc2047.el (rfc2047-decode-cte): New function.
19849         (rfc2047-decode-region): Change the way to decode successive
19850         encoded-words: decode B- or Q-encoding in each encoded-word,
19851         concatenate them, and decode it as charset.
19852
19853 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
19854
19855         * lpath.el: Fbind codepage-setup for XEmacs.
19856
19857 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
19858
19859         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
19860         widget-move-and-invoke.
19861         (gnus-custom-mode): Use gnus-custom-map.
19862
19863 2005-10-15  Bill Wohler  <wohler@newt.com>
19864
19865         * message.el (message-tool-bar-map): Rename image file from
19866         mail_send to mail/send.
19867
19868 2005-10-16  Masatake YAMATO  <jet@gyve.org>
19869
19870         * message.el (message-expand-group): Pass the common
19871         prefix substring of completion to `display-completion-list'.
19872
19873 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
19874
19875         * mml-sec.el (mml-secure-method): New internal variable.
19876         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
19877         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
19878         New functions using mml-secure-method.
19879
19880         * mml.el (mml-mode-map): Add key bindings for those functions.
19881         (mml-menu): Simplify security menu entries.  Suggested by Jesper
19882         Harder <harder@myrealbox.com>.
19883         (mml-attach-file, mml-attach-buffer, mml-attach-external):
19884         Goto end of message if point is the headers of the message.
19885
19886         * message.el (message-in-body-p): New function.
19887
19888         * assistant.el: Autoload gnus-util and netrc.
19889
19890         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
19891         Use `mm-charset-override-alist' only when decoding.
19892
19893         * mm-bodies.el (mm-decode-body):
19894         Call `mm-charset-to-coding-system' with allow-override argument.
19895
19896         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
19897         `filename' from Content-Disposition if Content-Type doesn't
19898         provide `name'.
19899         (gnus-mime-view-part-as-type): Set default instead of
19900         initial-input.
19901
19902 2005-10-09  Daniel Brockman  <daniel@brockman.se>
19903
19904         * format-spec.el (format-spec): Propagate text properties of % spec.
19905
19906 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
19907
19908         * gnus-art.el (gnus-treat-predicate): Add `first'.
19909
19910 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
19911
19912         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
19913         (mm-charset-override-alist): New variable.
19914         (mm-charset-to-coding-system): Use it.
19915         (mm-codepage-setup): New helper function.
19916         (mm-charset-eval-alist): New variable.
19917         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
19918         Warn about unknown charsets.
19919
19920         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
19921
19922 2005-10-04  David Hansen  <david.hansen@gmx.net>
19923
19924         * nnrss.el (nnrss-request-article): Add support for the comments tag.
19925         (nnrss-check-group): Ditto.
19926
19927 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
19928
19929         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
19930         Rename x-gnus-verbatim to x-verbatim.
19931         (mm-uu-type-alist): Fix regexp for verbatim-marks.
19932
19933         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
19934         x-verbatim.
19935
19936         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
19937
19938         * gnus-util.el (gnus-remove-duplicates): Remove.
19939
19940         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
19941         instead of gnus-remove-duplicates.
19942
19943         * message.el (message-remove-duplicates): Remove.
19944         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
19945         message-remove-duplicates.
19946
19947         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
19948         available, else use implementation from `delete-dups'.
19949
19950         * message.el (message-insert-expires): New function.
19951         (message-mode-map): Add key binding.
19952         (message-mode-field-menu): Add menu entry.
19953         (message-mode): Document it.
19954         (message-make-expires-date): Use `message-make-date'.
19955
19956 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
19957
19958         * message.el (message-make-expires-date): New function.
19959
19960 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19961
19962         * Makefile.in (list-installed-shadows): New entry.
19963         (install): Use it.
19964         (remove-installed-shadows): New entry.
19965
19966         * dgnushack.el (dgnushack-default-load-path): New variable.
19967         (dgnushack-find-lisp-shadows): New function.
19968         (dgnushack-remove-lisp-shadows): New function.
19969
19970 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
19971
19972         * Makefile.in (install-el-elc): New entry.
19973         (install): Use it so that .el files are necessarily installed.
19974
19975 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19976
19977         * time-date.el: Autoload parse-time-string, XEmacs needs it.
19978
19979 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
19980
19981         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
19982         function rather than the diff-mode.el package.
19983         (mm-display-external): Use with-current-buffer.
19984         (mm-viewer-completion-map, mm-viewer-completion-map):
19985         Move initialization inside declaration.
19986
19987 2005-09-29  Simon Josefsson  <jas@extundo.com>
19988
19989         * spam.el: Load hashcash when compiling, to avoid warnings.
19990         Don't autoload mail-check-payment.
19991         (spam-check-hashcash): Define unconditionally, since hashcash.el
19992         is part of Gnus now.  Ignore errors from payment checking.
19993
19994 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
19995
19996         * message.el (message-bold-region, message-unbold-region):
19997         Rename from `bold-region' and `unbold-region'.
19998
19999         * message.el: Remove useless autoloads.
20000
20001 2005-09-28  Simon Josefsson  <jas@extundo.com>
20002
20003         * message.el (message-use-idna): Default to t.
20004         (message-use-idna): Test whether encoding works too.  Doc fix.
20005
20006 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
20007
20008         * nntp.el (nntp-warn-about-losing-connection): Remove.
20009
20010 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
20011
20012         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
20013         customizable.  Change default value.
20014         (mm-uu-diff-groups-regexp): Change default value.
20015         (mm-uu-type-alist): Add doc string.
20016         (mm-uu-configure): Add doc string.  Make it interactive.
20017         (mm-uu-tex-groups-regexp): New variable.
20018         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
20019         (mm-uu-type-alist): Add LaTeX documents.
20020         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
20021         of "text/verbatim".
20022         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
20023
20024         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
20025         instead of "text/verbatim".
20026
20027         * message.el (message-mark-inserted-region)
20028         (message-mark-insert-file): Use slrn style marks when called with
20029         prefix argument.
20030
20031 2005-09-27  Simon Josefsson  <jas@extundo.com>
20032
20033         * message.el (message-idna-to-ascii-rhs-1): Reformat.
20034
20035 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
20036
20037         * message.el (message-remove-duplicates): New function.
20038         Implementation borrowed from `gnus-remove-duplicates'.
20039         (message-idna-to-ascii-rhs): Also encode idna addresses in
20040         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
20041         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
20042         only ask about the same idna domain once per header and also tell
20043         in what header to replace the idna domain.
20044
20045         * gnus-art.el (article-decode-idna-rhs): Also decode idna
20046         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
20047         (article-decode-idna-rhs): Fix regexp so that all idna-address in
20048         a header is decoded and not just the last one.
20049
20050 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20051
20052         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
20053         has been decoded.
20054
20055         * mm-decode.el (mm-automatic-display): Add text/verbatim.
20056         (mm-insert-part): Don't modify text if it has been decoded.
20057
20058         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
20059         decoded.
20060
20061         * mm-view.el (mm-inline-text): Don't strip text props unless
20062         decoding enriched or richtext parts.
20063
20064 2005-09-25  Romain Francoise  <romain@orebokech.com>
20065
20066         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
20067         * gnus-start.el (gnus-subscribe-interactively):
20068         * gnus-uu.el (gnus-uu-grab-articles):
20069         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
20070         space.
20071
20072 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
20073
20074         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
20075         * mm-view.el (mm-view-pkcs7-decrypt):
20076         * gnus-sum.el (gnus-summary-limit-to-extra)
20077         (gnus-summary-respool-article, gnus-read-move-group-name):
20078         * gnus-score.el (gnus-summary-increase-score):
20079         * gnus-util.el (gnus-completing-read-with-default):
20080         * gnus-art.el (gnus-read-save-file-name)
20081         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
20082         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
20083         * message.el (message-check-news-header-syntax):
20084         Follow convention for reading with the minibuffer.
20085
20086 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
20087
20088         * spam-report.el (spam-report-url-ping-plain):
20089         Use gnus-extended-version as User-Agent.
20090
20091         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
20092         default value is nil.
20093
20094         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
20095         (mm-uu-verbatim-marks-extract): New function.
20096         (mm-uu-extract): New face.
20097         (mm-uu-copy-to-buffer): Use it.
20098
20099         * spam-report.el (spam-report-gmane-ham): Rename from
20100         `spam-report-gmane-unspam'.
20101         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
20102         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
20103
20104         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
20105         Autoload.
20106         (spam-report-gmane-unregister-routine):
20107         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
20108
20109 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
20110
20111         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
20112         (spam-report-gmane-unregister-routine): Add support for gmane
20113         unregistration.
20114
20115         * spam-report.el (spam-report-gmane-unspam)
20116         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
20117         (spam-report-gmane): Change to take a single article and do unspam
20118         registration.
20119
20120 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
20121
20122         * mm-url.el (mm-url-decode-entities): Fix regexp.
20123
20124 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20125
20126         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
20127         default to nil, to be able to use Gnus at all.  If the default
20128         switches to something else, then the function should be fixed not
20129         be exceedingly slow.
20130
20131 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
20132
20133         * gnus-start.el (gnus-activate-group): If the server is nil, don't
20134         fail hard.
20135
20136         * spam-report.el: Add better Keywords line.
20137
20138         * spam.el: Add Maintainer and better Keywords line.
20139
20140 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
20141
20142         * gnus-art.el (gnus-article-replace-part)
20143         (gnus-mime-replace-part): New functions.
20144         (gnus-mime-action-alist, gnus-mime-button-commands)
20145         (gnus-mime-save-part-and-strip): Add file argument.
20146         (gnus-article-part-wrapper): Add interactive argument.
20147
20148         * gnus-sum.el (gnus-summary-mime-map):
20149         Add `gnus-article-replace-part'.
20150
20151 2005-09-19  Didier Verna  <didier@xemacs.org>
20152
20153         The nnml compaction feature:
20154         * nnml.el (nnml-request-compact-group): New function.
20155         * nnml.el (nnml-request-compact): New function.
20156         * gnus-int.el (gnus-request-compact-group): New function.
20157         * gnus-int.el (gnus-request-compact): New function.
20158         * gnus-group.el (gnus-group-compact-group): New function.
20159         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
20160         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
20161         * gnus-srvr.el (gnus-server-compact-server): New function.
20162         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
20163         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
20164
20165 2005-09-18  Deepak Goel  <deego@gnufans.org>
20166
20167         * sieve.el (sieve-help): Fix `message' call: first arg should be a
20168         format spec.
20169
20170 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20171
20172         * gnus.el (gnus-group-startup-message): Bind image-load-path.
20173
20174 2005-09-15  Romain Francoise  <romain@orebokech.com>
20175
20176         * message.el (message-fill-paragraph): Clarify docstring.
20177
20178 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20179
20180         * gnus-art.el (gnus-mime-display-part): Protect against broken
20181         MIME messages.
20182
20183 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20184
20185         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
20186         before parsing header.
20187
20188 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
20189
20190         * html2text.el (html2text-replace-list): Add new entities.
20191
20192 2005-09-11  Romain Francoise  <romain@orebokech.com>
20193
20194         * message.el (message-alternative-emails): Improve docstring.
20195         (message-setup-1): Call `message-use-alternative-email-as-from'
20196         after `message-setup-hook' to give it precedence over posting
20197         styles, etc.
20198         (message-use-alternative-email-as-from): Add docstring.
20199         Remove the original From header if present.
20200
20201         * nnml.el (nnml-compressed-files-size-threshold): New variable.
20202         (nnml-save-mail): Use it.
20203
20204         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
20205         articles.  Add new argument `silent'.
20206         (gnus-uu-mark-all): Report the total number of marked articles.
20207
20208 2005-09-10  Romain Francoise  <romain@orebokech.com>
20209
20210         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
20211         (gnus-uu-mark-series): Likewise.
20212
20213 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
20214
20215         * spam-report.el (spam-report-gmane): Fix generation of spam
20216         report URL.
20217
20218 2005-09-10  Simon Josefsson  <jas@extundo.com>
20219
20220         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
20221         t, based on discussion on the ding list with Robert Epprecht
20222         <epprecht@solnet.ch>.
20223
20224 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
20225
20226         * spam-report.el (spam-report-gmane): Make it work without
20227         X-Report-Spam header.  Gmane now only provides Archived-At.
20228         This is only used if `spam-report-gmane-use-article-number' is nil.
20229         (spam-report-gmane-spam-header): Remove.  Not used anymore.
20230
20231         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
20232         make `gnus-summary-sort-by-recipient' work with threading.
20233
20234         * nnweb.el (nnweb-google-wash-article): Print a message if article
20235         is not available.
20236
20237 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
20238
20239         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
20240         change.  Decode text/* parts content before displaying.
20241
20242 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
20243
20244         * mml-smime.el: Remove defvar of gnus-extract-address-components.
20245
20246 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20247
20248         * mm-view.el (mm-display-inline-fontify): Disable support modes.
20249
20250         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
20251         url-package-name, url-package-version,
20252         w3m-cid-retrieve-function-alist, w3m-current-buffer,
20253         w3m-display-inline-images, and w3m-minor-mode-map.
20254
20255 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
20256
20257         * message.el (message-tab-body-function): Fix mismatched custom type.
20258
20259         * gnus.el (gnus-group-change-level-function): Ditto.
20260
20261         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
20262
20263         * gnus-art.el (gnus-signature-limit)
20264         (gnus-article-mime-part-function): Ditto.
20265
20266 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20267
20268         * mml.el (mml-mode): Silence the byte compiler.
20269
20270         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
20271         using `(sit-for 0)' before moving the point to the specified part;
20272         skip unbuttonized parts.
20273         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
20274         return to the summary window if gnus-auto-select-part is non-nil.
20275
20276 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
20277
20278         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
20279         New variables.
20280         (mml-dnd-attach-file, mml-mode): Use them.
20281
20282         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
20283         Make fetching article by MID work again for Google Groups.
20284         Add FIXME concerning gnus-group-make-web-group.
20285
20286         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
20287         Don't depend on Gnus by using mail-extract-address-components if
20288         gnus-extract-address-components is not bound.
20289
20290 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20291
20292         * gnus-art.el (gnus-mime-display-security): Don't display the
20293         signature, but only the signed part.
20294
20295 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20296
20297         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
20298
20299         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
20300         list, not listp.
20301
20302 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
20303
20304         * mm-encode.el (mm-encode-content-transfer-encoding):
20305         Likewise when encoding.
20306
20307         * mm-bodies.el (mm-decode-content-transfer-encoding):
20308         De-canonicalize CRLF for all text content types, not just
20309         text/plain.
20310
20311 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20312
20313         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
20314         valid article; point arrow and cursor at the MIME button.
20315
20316 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20317
20318         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
20319         Suggested by Dan Christensen <jdc@uwo.ca>.
20320
20321         * mm-decode.el (mm-save-part): Enable change of prompt.
20322
20323 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
20324
20325         * gnus-msg.el (gnus-inews-add-send-actions):
20326         Make `message-post-method' lambda parameter ARG `&optional'.
20327
20328 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
20329
20330         * gnus-sum.el (gnus-summary-mime-map):
20331         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
20332         gnus-article-jump-to-part.
20333
20334         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
20335         (gnus-article-edit-part): Use it.
20336         (gnus-article-part-wrapper): Add no-handle argument.
20337         (gnus-article-save-part-and-strip, gnus-article-delete-part):
20338         New functions.
20339
20340 2005-08-29  Romain Francoise  <romain@orebokech.com>
20341
20342         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
20343         docstring.
20344         (gnus-face-from-file): Likewise.
20345
20346 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
20347
20348         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
20349         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
20350         non-nil.
20351         (gnus-auto-select-part): New variable.
20352         (gnus-article-jump-to-part): New function.
20353         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
20354         (gnus-mime-delete-part): Allow selecting specified part after
20355         deleting or stripping parts.
20356         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
20357         part if argument is bogus.
20358
20359 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
20360
20361         * gnus-art.el (w3m-minor-mode-map):
20362         * gnus-spec.el (gnus-newsrc-file-version):
20363         * gnus-util.el (nnmail-active-file-coding-system)
20364         (gnus-original-article-buffer, gnus-user-agent):
20365         * gnus.el (gnus-ham-process-destinations)
20366         (gnus-parameter-ham-marks-alist)
20367         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
20368         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
20369         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
20370         * mm-decode.el (gnus-current-window-configuration):
20371         * mm-extern.el (gnus-article-mime-handles):
20372         * mm-url.el (url-current-object, url-package-name)
20373         (url-package-version):
20374         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
20375         (smime-keys, w3m-cid-retrieve-function-alist)
20376         (w3m-current-buffer, w3m-display-inline-images)
20377         (w3m-minor-mode-map):
20378         * mml-smime.el (gnus-extract-address-components):
20379         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
20380         (gnus-newsrc-hashtb, message-default-charset)
20381         (message-deletable-headers, message-options)
20382         (message-posting-charset, message-required-mail-headers)
20383         (message-required-news-headers):
20384         * mml1991.el (mc-pgp-always-sign):
20385         * mml2015.el (mc-pgp-always-sign):
20386         * nnheader.el (nnmail-extra-headers):
20387         * rfc1843.el (gnus-decode-encoded-word-function)
20388         (gnus-decode-header-function, gnus-newsgroup-name):
20389         * spam-stat.el (gnus-original-article-buffer): Add defvars.
20390
20391 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
20392
20393         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
20394         the end of the date treatments.
20395
20396 2005-08-15  Simon Josefsson  <jas@extundo.com>
20397
20398         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
20399         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
20400         Capello and Romain Francoise.
20401         (pgg-fetch-key-function): Remove, not used?
20402         (pgg-insert-url-with-w3): Require url, to get
20403         url-insert-file-contents regardless of where it is defined.
20404
20405 2005-08-13  Romain Francoise  <romain@orebokech.com>
20406
20407         * message.el (message-cite-original-1): New function.
20408         (message-cite-original): Use it.
20409         (message-cite-original-without-signature): Ditto.
20410
20411 2005-08-08  Romain Francoise  <romain@orebokech.com>
20412
20413         * message.el (message-yank-empty-prefix): New variable.
20414         (message-indent-citation): Use it.
20415         (message-cite-original-without-signature): Respect X-No-Archive.
20416
20417 2005-08-08  Simon Josefsson  <jas@extundo.com>
20418
20419         * pgg.el: Autoload url-insert-file-contents instead of loading
20420         w3/url.
20421         (pgg-insert-url-with-w3): Don't load url here.
20422
20423 2005-08-07  Jesper Harder  <harder@phys.au.dk>
20424
20425         * message.el (message-kill-to-signature): Don't insert newline at
20426         bol.
20427         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
20428
20429 2005-08-06  Romain Francoise  <romain@orebokech.com>
20430
20431         * message.el (message-user-fqdn): Fix typo in docstring.
20432
20433 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
20434
20435         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
20436
20437         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
20438
20439 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20440
20441         * mm-bodies.el (mm-encode-body): Use coding system rather than
20442         charset to encode text.
20443
20444         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
20445         number of charsets if utf-8 is available (XEmacs).
20446
20447 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
20448
20449         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
20450         taken from `gnus-button-mid-or-mail-regexp'.
20451         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
20452         (gnus-button-alist): Improve regexp for domain part of the MIDs
20453         for news:localpart@domain buttons.
20454         (gnus-button-ctan-directory-regexp): Update.
20455
20456 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20457
20458         * sieve-manage.el (sieve-manage-interactive-login):
20459         Use make-local-variable rather than make-variable-buffer-local.
20460         (sieve-manage-open): Ditto.
20461         (sieve-manage-authenticate): Ditto.
20462
20463         * mml.el (mml-generate-mime-1): Make the content type default to
20464         text/plain if the filename is not specified.
20465
20466 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20467
20468         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
20469         instead of insert-buffer.
20470
20471         * message.el (message-yank-original): Ditto; set the mark at the
20472         end of the yanked message.
20473
20474 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
20475
20476         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
20477         lines to scroll rather than to stop it.
20478
20479         * mml.el (mml-generate-default-type): Add doc string.
20480         (mml-generate-mime-1): Use mm-default-file-encoding or make it
20481         default to application/octet-stream when determining the content
20482         type if it is not specified for the part or the mml contents; add
20483         a comment about mml-generate-default-type.
20484
20485 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
20486
20487         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
20488         make it default to application/octet-stream when determining the
20489         content type if it is not specified for the external contents.
20490
20491 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
20492
20493         * rfc2231.el (rfc2231-parse-string): Take care that not only a
20494         segmented parameter but also other parameters might be there.
20495
20496 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20497
20498         * mm-decode.el (mm-display-external): Delete temp file, directory
20499         and buffer immediately if the external process is exited.
20500
20501 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
20502
20503         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
20504         fewer lines than that of scroll-margin.
20505         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
20506
20507 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
20508
20509         * gnus-art.el (gnus-article-next-page): Revert.
20510         (gnus-article-beginning-of-window): New macro.
20511         (gnus-article-next-page-1): Use it.
20512         (gnus-article-prev-page): Ditto.
20513         (gnus-article-edit-part): Use insert-buffer-substring instead of
20514         insert-buffer.
20515         (gnus-article-edit-exit): Ditto.
20516
20517         * gnus-util.el (gnus-beginning-of-window): Remove.
20518         (gnus-end-of-window): Remove.
20519
20520         * lpath.el: Don't bind header-line-format and scroll-margin.
20521
20522 2005-07-25  Simon Josefsson  <jas@extundo.com>
20523
20524         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
20525         to have the url package without w3.  Reported by Daiki Ueno
20526         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
20527
20528 2005-07-20  Didier Verna  <didier@xemacs.org>
20529
20530         * gnus-diary.el: Remove the description comment (nndiary is now
20531         properly documented in the Gnus manual).
20532         Fix the spelling of "Back End".
20533         * nndiary.el: Ditto.
20534         Fix the copyright notice.
20535
20536 2005-07-18  Romain Francoise  <romain@orebokech.com>
20537
20538         * gnus-sum.el (gnus-summary-to-prefix)
20539         (gnus-summary-newsgroup-prefix): New variables.
20540         (gnus-summary-from-or-to-or-newsgroups): Use them.
20541
20542 2005-07-17  Romain Francoise  <romain@orebokech.com>
20543
20544         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
20545         space as it's generally not especially interesting to the user.
20546
20547 2005-07-16  Romain Francoise  <romain@orebokech.com>
20548
20549         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
20550         nil to avoid prompting and file modification if one of the
20551         messages at the top of the nnfolder file contains a copyright
20552         notice.
20553         Update copyright notice.
20554
20555         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
20556         instead of `current-time-string' as the latter creates a time
20557         string that is not RFC 2822 compliant (it lacks the zone).
20558         Update copyright notice.
20559
20560 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
20561
20562         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
20563         for text/rtf.  Display default in prompt.  Pass default for M-n.
20564
20565         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
20566
20567 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20568
20569         * gnus-msg.el (gnus-button-mailto):
20570         Remove save-selected-window-window hackery because it relies on
20571         save-selected-window internals.
20572
20573 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
20574
20575         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
20576         (gnus-article-next-page-1): Use gnus-beginning-of-window.
20577         (gnus-article-prev-page): Ditto.
20578
20579         * gnus-util.el (gnus-beginning-of-window): New function.
20580         (gnus-end-of-window): New function.
20581
20582         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
20583
20584 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
20585
20586         * gnus-score.el (gnus-score-edit-all-score):
20587         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
20588         gnus-message.
20589
20590 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20591
20592         * gnus-msg.el (gnus-button-mailto):
20593         Remove save-selected-window-window hackery because it relies on
20594         save-selected-window internals.
20595
20596 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20597
20598         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
20599         add-minor-mode.
20600         (gnus-binary-mode): Ditto.
20601
20602         * gnus-topic.el (gnus-topic-mode): Ditto.
20603
20604 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
20605
20606         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
20607         (gnus-article-prev-page): Take scroll-margin into consideration.
20608
20609 2005-07-04  Lute Kamstra  <lute@gnu.org>
20610
20611         Update FSF's address in GPL notices.
20612
20613 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
20614
20615         * gnus.el (gnus-exit):
20616         * gnus-group.el (gnus-group-icons):
20617         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
20618
20619         * gnus-nocem.el (gnus-nocem):
20620         * message.el (message-various, message-buffers, message-sending)
20621         (message-interface, message-forwarding, message-insertion)
20622         (message-headers, message-news, message-mail):
20623         * pgg-gpg.el (pgg-gpg):
20624         * pgg-parse.el (pgg-parse):
20625         * pgg-pgp.el (pgg-pgp):
20626         * pgg-pgp5.el (pgg-pgp5):
20627         * pop3.el (pop3): Finish `defgroup' description with period.
20628
20629 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20630
20631         * gnus-art.el (article-display-face): Improve the efficiency.
20632         (article-display-x-face): Ditto; remove gray x-face stuff.
20633
20634 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20635
20636         * gnus-art.el (article-display-face): Correct the position in
20637         which Faces are inserted.
20638
20639 2005-06-29  Didier Verna  <didier@xemacs.org>
20640
20641         * gnus-art.el (article-display-face): Display faces in correct
20642         order.
20643
20644 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
20645
20646         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
20647         (gnus-fill-real-hashtb): Use hash table instead of obarray.
20648         (gnus-nocem-check-article): Fetch the Type header.
20649         (gnus-nocem-message-wanted-p): Fix the way to examine types.
20650         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
20651         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
20652         make sure gnus-nocem-hashtb is initialized.
20653         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
20654         (gnus-nocem-unwanted-article-p): Ditto.
20655
20656         * pgg.el (pgg-verify): Return the verification result.
20657
20658 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20659
20660         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
20661         is ascii.
20662
20663 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
20664
20665         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
20666         `show-nonbreak-escape'.
20667
20668 2005-06-23  Lute Kamstra  <lute@gnu.org>
20669
20670         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
20671
20672         * dig.el (dig-mode):
20673         * smime.el (smime-mode): Use gnus-run-mode-hooks.
20674
20675 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
20676
20677         * nnimap.el (nnimap-split-download-body): Fix spellings.
20678
20679 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
20680
20681         * gnus-art.el (gnus-article-encrypt-body):
20682         * gnus-cus.el (gnus-score-customize):
20683         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
20684         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
20685
20686 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
20687
20688         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
20689         header by looking for magic "MII" at the beginning.
20690
20691 2005-06-16  Miles Bader  <miles@gnu.org>
20692
20693         * gnus-xmas.el (gnus-xmas-group-startup-message):
20694         Use renamed gnus-splash face.
20695
20696         * assistant.el (assistant-field): Remove "-face" suffix from face name.
20697         (assistant-field-face): New backward-compatibility alias for renamed
20698         face.
20699         (assistant-render-text): Use renamed assistant-field face.
20700
20701         * spam.el (spam): Remove "-face" suffix from face name.
20702         (spam-face): New backward-compatibility alias for renamed face.
20703         (spam-face, spam-initialize): Use renamed spam face.
20704
20705         * message.el (message-header-to, message-header-cc)
20706         (message-header-subject, message-header-newsgroups)
20707         (message-header-other, message-header-name)
20708         (message-header-xheader, message-separator, message-cited-text)
20709         (message-mml): Remove "-face" suffix from face names.
20710         (message-header-to-face, message-header-cc-face)
20711         (message-header-subject-face, message-header-newsgroups-face)
20712         (message-header-other-face, message-header-name-face)
20713         (message-header-xheader-face, message-separator-face)
20714         (message-cited-text-face, message-mml-face):
20715         New backward-compatibility aliases for renamed faces.
20716         (message-font-lock-keywords): Use renamed message faces.
20717
20718         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
20719         (sieve-test-commands, sieve-tagged-arguments):
20720         Remove "-face" suffix from face names.
20721         (sieve-control-commands-face, sieve-action-commands-face)
20722         (sieve-test-commands-face, sieve-tagged-arguments-face):
20723         New backward-compatibility aliases for renamed faces.
20724         (sieve-control-commands-face, sieve-action-commands-face)
20725         (sieve-test-commands-face, sieve-tagged-arguments-face):
20726         Use renamed sieve faces.
20727
20728         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
20729         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
20730         (gnus-group-news-3-empty, gnus-group-news-4)
20731         (gnus-group-news-4-empty, gnus-group-news-5)
20732         (gnus-group-news-5-empty, gnus-group-news-6)
20733         (gnus-group-news-6-empty, gnus-group-news-low)
20734         (gnus-group-news-low-empty, gnus-group-mail-1)
20735         (gnus-group-mail-1-empty, gnus-group-mail-2)
20736         (gnus-group-mail-2-empty, gnus-group-mail-3)
20737         (gnus-group-mail-3-empty, gnus-group-mail-low)
20738         (gnus-group-mail-low-empty, gnus-summary-selected)
20739         (gnus-summary-cancelled, gnus-summary-high-ticked)
20740         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
20741         (gnus-summary-high-ancient, gnus-summary-low-ancient)
20742         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
20743         (gnus-summary-low-undownloaded)
20744         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
20745         (gnus-summary-low-unread, gnus-summary-normal-unread)
20746         (gnus-summary-high-read, gnus-summary-low-read)
20747         (gnus-summary-normal-read, gnus-splash):
20748         Remove "-face" suffix from face names.
20749         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
20750         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
20751         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
20752         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
20753         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
20754         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
20755         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
20756         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
20757         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
20758         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
20759         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
20760         (gnus-summary-selected-face, gnus-summary-cancelled-face)
20761         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
20762         (gnus-summary-normal-ticked-face)
20763         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
20764         (gnus-summary-normal-ancient-face)
20765         (gnus-summary-high-undownloaded-face)
20766         (gnus-summary-low-undownloaded-face)
20767         (gnus-summary-normal-undownloaded-face)
20768         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
20769         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
20770         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
20771         (gnus-splash-face):
20772         New backward-compatibility aliases for renamed faces.
20773         (gnus-group-startup-message): Use renamed gnus faces.
20774
20775         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
20776         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
20777         (gnus-server-agent): Remove "-face" suffix from face names.
20778         (gnus-server-agent-face, gnus-server-opened-face)
20779         (gnus-server-closed-face, gnus-server-denied-face)
20780         (gnus-server-offline-face):
20781         New backward-compatibility aliases for renamed faces.
20782         (gnus-server-agent-face, gnus-server-opened-face)
20783         (gnus-server-closed-face, gnus-server-denied-face)
20784         (gnus-server-offline-face): Use renamed gnus faces.
20785
20786         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
20787         Remove "-face" suffix from face names.
20788         (gnus-picon-xbm-face, gnus-picon-face):
20789         New backward-compatibility aliases for renamed faces.
20790
20791         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
20792         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
20793         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
20794         (gnus-cite-11): Remove "-face" suffix from face names.
20795         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
20796         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
20797         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
20798         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
20799         New backward-compatibility aliases for renamed faces.
20800         (gnus-cite-attribution-face, gnus-cite-face-list)
20801         (gnus-article-boring-faces): Use renamed gnus faces.
20802
20803         * gnus-art.el (gnus-signature, gnus-header-from)
20804         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
20805         (gnus-header-content): Remove "-face" suffix from face names.
20806         (gnus-signature-face, gnus-header-from-face)
20807         (gnus-header-subject-face, gnus-header-newsgroups-face)
20808         (gnus-header-name-face, gnus-header-content-face):
20809         New backward-compatibility aliases for renamed faces.
20810         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
20811
20812         * gnus-sum.el (gnus-summary-selected-face)
20813         (gnus-summary-highlight): Use renamed gnus faces.
20814         * gnus-group.el (gnus-group-highlight): Likewise.
20815
20816 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
20817
20818         * gnus-sieve.el (gnus-sieve-article-add-rule):
20819         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
20820         * spam-stat.el (spam-stat-buffer-change-to-spam)
20821         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
20822
20823         * message.el (message-is-yours-p):
20824         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
20825
20826 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20827
20828         * mm-view.el (mm-inline-text): Withdraw the last change.
20829
20830 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
20831
20832         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
20833         executing enriched-decode.
20834
20835 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20836
20837         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
20838         charset of tar files.
20839
20840 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
20841
20842         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
20843
20844 2005-06-04  Lute Kamstra  <lute@gnu.org>
20845
20846         * nnfolder.el (nnfolder-read-folder): Make sure that undo
20847         information is never recorded.
20848
20849 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20850
20851         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
20852
20853 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20854
20855         * pop3.el (pop3-apop): Run md5 in the binary mode.
20856
20857         * starttls.el (starttls-set-process-query-on-exit-flag):
20858         Use eval-and-compile.
20859
20860 2005-05-31  Simon Josefsson  <jas@extundo.com>
20861
20862         * smime.el (smime-replace-in-string): Define.
20863         (smime-cert-by-ldap-1): Use it.
20864
20865 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
20866
20867         * gnus-art.el (article-display-x-face): Replace
20868         process-kill-without-query by gnus-set-process-query-on-exit-flag.
20869
20870         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
20871         set-process-query-on-exit-flag or process-kill-without-query.
20872
20873         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
20874         loop instead of replace-regexp.
20875
20876         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
20877         instead of process-kill-without-query if it is available.
20878
20879         * lpath.el: Fbind ldap-search-entries.
20880
20881         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
20882         instead of find-file-hooks if it is available.
20883
20884         * mml1991.el: Bind pgg-default-user-id when compiling.
20885
20886         * mml2015.el: Bind pgg-default-user-id when compiling.
20887
20888         * nndraft.el (nndraft-request-associate-buffer):
20889         Use write-contents-functions instead of write-contents-hooks if it is
20890         available.
20891
20892         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
20893         instead of find-file-hooks if it is available.
20894
20895         * nntp.el (nntp-open-connection): Replace
20896         process-kill-without-query by gnus-set-process-query-on-exit-flag.
20897         (nntp-open-ssl-stream): Ditto.
20898         (nntp-open-tls-stream): Ditto.
20899
20900         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
20901         set-process-query-on-exit-flag or process-kill-without-query.
20902         (starttls-open-stream-gnutls): Use it instead of
20903         process-kill-without-query.
20904         (starttls-open-stream): Ditto.
20905
20906 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
20907
20908         * smime.el (smime-cert-by-ldap-1): Don't use
20909         replace-regexp-in-string.
20910
20911 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
20912
20913         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
20914
20915         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
20916         in PEM format.  Adjust to the XEmacs compatibility.
20917
20918 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
20919
20920         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
20921         by `string-to-number'.
20922         * gnus-agent.el (gnus-agent-regenerate-group)
20923         (gnus-agent-fetch-articles): Ditto.
20924         * gnus-art.el (gnus-button-fetch-group): Ditto.
20925         * gnus-cache.el (gnus-cache-generate-active)
20926         (gnus-cache-articles-in-group): Ditto.
20927         * gnus-group.el (gnus-group-set-current-level)
20928         (gnus-group-insert-group-line): Ditto.
20929         * gnus-score.el (gnus-score-set-expunge-below)
20930         (gnus-score-set-mark-below, gnus-summary-score-effect)
20931         (gnus-summary-score-entry): Ditto.
20932         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
20933         (gnus-soup-pack): Ditto.
20934         * gnus-spec.el (gnus-xmas-format): Ditto.
20935         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
20936         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
20937         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
20938         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
20939         * nndb.el (nndb-get-remote-expire-response): Ditto.
20940         * nndiary.el (nndiary-parse-schedule-value)
20941         (nndiary-string-to-number, nndiary-request-replace-article)
20942         (nndiary-request-article): Ditto.
20943         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
20944         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
20945         * nneething.el (nneething-make-head): Ditto.
20946         * nnfolder.el (nnfolder-request-article)
20947         (nnfolder-retrieve-headers): Ditto.
20948         * nnheader.el (nnheader-file-to-number): Ditto.
20949         * nnkiboze.el (nnkiboze-request-article): Ditto.
20950         * nnmail.el (nnmail-process-unix-mail-format)
20951         (nnmail-process-babyl-mail-format): Ditto.
20952         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
20953         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
20954         (nnmh-request-create-group, nnmh-request-list-1)
20955         (nnmh-request-group, nnmh-request-article): Ditto.
20956         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
20957         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
20958         * nnsoup.el (nnsoup-make-active): Ditto.
20959         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
20960         * nntp.el (nntp-find-group-and-number)
20961         (nntp-retrieve-headers-with-xover): Ditto.
20962         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
20963         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
20964         (pgg-format-key-identifier): Ditto.
20965         * pop3.el (pop3-last, pop3-stat): Ditto.
20966         * qp.el (quoted-printable-decode-region): Ditto.
20967
20968         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
20969         of concat.
20970
20971 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20972
20973         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
20974
20975         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
20976
20977         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
20978
20979         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
20980
20981         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
20982
20983         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
20984
20985         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
20986         (gnus-carpal-mode): Ditto.
20987
20988         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
20989         (gnus-browse-mode): Ditto.
20990
20991         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
20992
20993         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
20994
20995 2005-05-29  Richard M. Stallman  <rms@gnu.org>
20996
20997         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
20998
20999 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
21000
21001         * gnus-util.el (gnus-run-mode-hooks): New function.
21002
21003         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
21004
21005         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
21006         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
21007
21008 2005-05-27  Lute Kamstra  <lute@gnu.org>
21009
21010         * dns-mode.el (dns-mode): Specify customization group.
21011
21012 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
21013
21014         * gnus-agent.el (gnus-agent-make-mode-line-string):
21015         Use mode-line-highlight as mouse-face.
21016
21017 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21018
21019         * canlock.el (canlock): Change the parent group to news.
21020
21021         * deuglify.el (gnus-outlook-deuglify): Add :group.
21022
21023         * dig.el (dig): Add :group.
21024
21025         * dns-mode.el (dns-mode): Add :group.
21026
21027         * encrypt.el (encrypt): Add :group.
21028
21029         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
21030         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
21031         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
21032         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
21033         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
21034
21035         * gnus-diary.el (gnus-diary): Add :group.
21036
21037         * gnus.el (gnus-group-news-1-face): Add :group.
21038         (gnus-group-news-1-empty-face): Ditto.
21039         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
21040         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
21041         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
21042         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
21043         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
21044         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
21045         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
21046         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
21047         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
21048         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
21049         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
21050         (gnus-summary-high-ticked-face): Ditto.
21051         (gnus-summary-low-ticked-face): Ditto.
21052         (gnus-summary-normal-ticked-face): Ditto.
21053         (gnus-summary-high-ancient-face): Ditto.
21054         (gnus-summary-low-ancient-face): Ditto.
21055         (gnus-summary-normal-ancient-face): Ditto.
21056         (gnus-summary-high-undownloaded-face): Ditto.
21057         (gnus-summary-low-undownloaded-face): Ditto.
21058         (gnus-summary-normal-undownloaded-face): Ditto.
21059         (gnus-summary-high-unread-face): Ditto.
21060         (gnus-summary-low-unread-face): Ditto.
21061         (gnus-summary-normal-unread-face): Ditto.
21062         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
21063         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
21064
21065         * hashcash.el (hashcash): New custom group.
21066         (hashcash-default-payment): Add :group.
21067         (hashcash-payment-alist): Ditto.
21068         (hashcash-default-accept-payment): Ditto.
21069         (hashcash-accept-resources): Ditto.
21070         (hashcash-path): Ditto.
21071         (hashcash-extra-generate-parameters): Ditto.
21072         (hashcash-double-spend-database): Ditto.
21073         (hashcash-in-news): Ditto.
21074
21075         * message.el (message-minibuffer-local-map): Add :group.
21076
21077         * netrc.el (netrc): Add :group.
21078
21079         * sieve-manage.el (sieve-manage-log): Add :group.
21080         (sieve-manage-default-user): Diito.
21081         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
21082         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
21083         (sieve-manage-authenticators): Ditto.
21084         (sieve-manage-authenticator-alist): Ditto.
21085         (sieve-manage-default-port): Ditto.
21086
21087         * sieve-mode.el (sieve-control-commands-face): Add :group.
21088         (sieve-action-commands-face): Ditto.
21089         (sieve-test-commands-face): Ditto.
21090         (sieve-tagged-arguments-face): Ditto.
21091
21092         * smime.el (smime): Add :group.
21093
21094         * spam-report.el (spam-report): Add :group.
21095
21096         * spam.el (spam, spam-face): Add :group.
21097
21098 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21099
21100         * nntp.el (nntp-next-result-arrived-p): Some news servers may
21101         return \n.\n.\n at the end of articles.  Protect against that.
21102         (nntp-with-open-group): Allow debugging.
21103
21104         * nnheader.el (mail-header-set-extra): Make into a function
21105         because I just could't understand how to quote the list properly.
21106
21107         * dns.el (query-dns-cached): New function.
21108
21109 2005-05-26  Lute Kamstra  <lute@gnu.org>
21110
21111         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
21112
21113 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
21114
21115         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
21116
21117         * gnus-art.el: Don't autoload mail-extract-address-components.
21118
21119         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
21120         eval-and-compile to evaluate it.
21121
21122         * hashcash.el: Don't autoload executable-find.
21123
21124         * nndb.el: Don't declare the nndb back end two or more times; don't
21125         autoload news-reply-mode, news-setup, cancel-timer and telnet.
21126
21127         * nntp.el: Autoload format-spec instead of format; use
21128         eval-and-compile to evaluate autoload forms.
21129
21130 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
21131
21132         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
21133
21134 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21135
21136         * gnus.el (gnus-version-number): Bump version.
21137
21138 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
21139
21140         * gnus.el: No Gnus v0.3 is released.
21141
21142 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21143
21144         * lpath.el (featurep): Bind show-nonbreak-escape.
21145
21146 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21147
21148         * gnus-art.el (gnus-article-edit-part): Disable undo.
21149
21150 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
21151
21152         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
21153         gnus-article-date-lapsed-new-header is t if date timer is active;
21154         skip headers in which the original date value is empty.
21155         (gnus-article-save-original-date): Redefine it as a macro.
21156         (gnus-display-mime): Use it.
21157
21158 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
21159
21160         * gnus-art.el (article-date-ut): Support converting date in
21161         forwarded parts as well.
21162         (gnus-article-save-original-date): New function.
21163         (gnus-display-mime): Use it.
21164
21165 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
21166
21167         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
21168         enclosure element of <item>.
21169
21170 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
21171
21172         * message.el (message-kill-buffer-query): Rename from
21173         `message-kill-buffer-query-if-modified'.  Add :version.
21174
21175 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21176
21177         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
21178         window layout.
21179
21180 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
21181
21182         * mml.el: Autoload dnd when compiling.
21183
21184 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
21185
21186         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
21187         x-dnd-*.
21188
21189 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
21190
21191         * qp.el (quoted-printable-encode-region): Save excursion.
21192
21193 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
21194
21195         * message.el (message-kill-buffer-query-if-modified): Add new variable
21196         so the user can kill a modified message buffer quickly.
21197         (message-kill-buffer): Use it.
21198
21199 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21200
21201         * lpath.el: Fbind display-time-event-handler; don't fbind
21202         string-to-multibyte.
21203
21204         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
21205
21206 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21207
21208         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
21209         contained in text because xml.el decodes entities) with LFs.
21210
21211 2005-04-11  Lute Kamstra  <lute@gnu.org>
21212
21213         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
21214         differently.
21215
21216 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21217
21218         * mm-util.el (mm-detect-coding-region): Typo.
21219
21220 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
21221
21222         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
21223
21224 2005-04-06  Deepak Goel  <deego@gnufans.org>
21225
21226         * spam-stat.el (spam-stat-score-buffer): Add a call to a
21227         user-function allow user modifications of the scores.
21228         (spam-stat-score-buffer-user): New function, to allow
21229         user-computed modifications to the score.
21230         (spam-stat-score-buffer-user-functions): List of additional
21231         scoring functions.
21232         (spam-stat-error-holder): Global temporary error holder.
21233         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
21234         variable.
21235
21236 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
21237
21238         * gnus-registry.el (gnus-registry-clean-empty-function)
21239         (gnus-registry-trim, gnus-registry-fetch-groups)
21240         (gnus-registry-delete-group): Groups that match
21241         `gnus-registry-ignored-groups' are removed from the registry
21242         entries, not just ignored for splitting.  This helps clean up the
21243         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
21244         to get all the groups a message ID is in.
21245
21246         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
21247         (spam-stat-split-fancy): Change "threshhold" to "threshold".
21248         (spam-stat-score-buffer-user-functions): Add :number custom type.
21249
21250 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21251
21252         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
21253         argument in XEmacs.
21254
21255         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
21256         (nnrss-request-group): Decode group name first.
21257         (nnrss-request-article): Make a text/plain article if mml-to-mime
21258         failed.
21259         (nnrss-get-encoding): Return a compatible encoding according to
21260         nnrss-compatible-encoding-alist.
21261         (nnrss-find-el): Use consp instead of listp.
21262         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
21263
21264 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21265
21266         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
21267         which Emacs 20 doesn't support.
21268         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
21269
21270 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
21271
21272         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
21273         silence the byte compiler inside the defun.
21274
21275         * gnus-demon.el (parse-time-string): Add autoload.
21276
21277         * gnus-delay.el (parse-time-string): Add autoload.
21278
21279         * gnus-art.el (parse-time-string): Add autoload.
21280
21281         * nnultimate.el (parse-time): Require for `parse-time-string'.
21282
21283 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
21284
21285         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
21286
21287         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
21288
21289         * smime.el (smime-ldap-host-list): Add :version.
21290
21291 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
21292
21293         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
21294         pass it to `gnus-browse-read-group'.
21295         (gnus-browse-read-group): Add NUMBER argument and pass it to
21296         `gnus-group-read-ephemeral-group'.
21297
21298         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
21299         argument and pass it to `gnus-group-read-group'.
21300
21301 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
21302
21303         * mm-util.el (mm-xemacs-find-mime-charset): Only call
21304         mm-xemacs-find-mime-charset-1 if we have the mule feature
21305         available at runtime.
21306
21307 2005-03-25  Werner Lemberg  <wl@gnu.org>
21308
21309         * nnmaildir.el: Replace `illegal' with `invalid'.
21310
21311 2005-03-23  Lute Kamstra  <lute@gnu.org>
21312
21313         * time-date.el: Add comment on time value formats.
21314         Don't require parse-time.
21315         (with-decoded-time-value): New macro.
21316         (encode-time-value): New function.
21317         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
21318         (days-to-time): Return a valid time value when arg is huge.
21319         (time-since): Use time-subtract.
21320         (time-to-number-of-days): Use time-to-seconds.
21321
21322 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
21323
21324         * gnus-start.el (gnus-display-time-event-handler):
21325         Check display-time-timer at runtime rather than only at load time
21326         in case display-time-mode is turned off in the mean time.
21327
21328 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
21329
21330         * nnimap.el (nnimap-open-connection): Print which authinfo file is
21331         used.
21332
21333         * nneething.el (nneething-map-file-directory): Derive from
21334         `gnus-directory'.
21335
21336         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
21337         the To/Cc button.
21338
21339 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
21340
21341         * nnmaildir.el (nnmaildir-request-accept-article):
21342         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
21343
21344 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
21345
21346         * gnus-async.el: Require timer-funcs at compile time when in
21347         XEmacs for `run-with-idle-timer'.
21348
21349 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
21350
21351         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
21352         autoloaded function.
21353
21354 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21355
21356         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
21357
21358 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
21359
21360         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
21361
21362 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21363
21364         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
21365         Add gnus-expert-user to default.
21366
21367 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
21368
21369         * nnimap.el (nnimap-open-server): Ditto.
21370
21371         * imap.el (imap-authenticate): Fix typo.
21372
21373 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
21374
21375         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
21376         buffer (since IMAP server might return FETCH response out of
21377         order, and the nntp buffer must be sorted).
21378
21379 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
21380
21381         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
21382         comparison on string.
21383
21384         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
21385         (gnus-agent-score): Rename category keywords to match gnus-cus.
21386         (gnus-agent-summary-fetch-series): Modify to protect against
21387         gnus-agent-summary-fetch-group clearing processable flags.
21388         (gnus-agent-synchronize-group-flags): Update live group buffer as
21389         synchronization may occur due to the user toggle the plugged
21390         status.
21391         (gnus-agent-fetch-group-1): Clear downloadable flag when article
21392         successfully downloaded.
21393         (gnus-agent-expire-group-1): Avoid using markers when the overview
21394         is in ascending order; greatly improves performance.
21395         (gnus-agent-regenerate-group):
21396         Use gnus-agent-synchronize-group-flags to reset read status in both
21397         gnus and server.
21398         (gnus-agent-update-files-total-fetched-for): Fix initial size.
21399
21400 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
21401
21402         * message.el: Don't autoload former message-utils variables.
21403         (message-strip-subject-trailing-was): Change doc string.
21404
21405         * nnweb.el: Fixes for `gnus-group-make-web-group'.
21406         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
21407         (nnweb-google-search): Add "hl=en" here.
21408         (nnweb-google-parse-1, nnweb-google-create-mapping):
21409         Don't hardcode URL.
21410
21411 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
21412
21413         * message.el (message-get-reply-headers, message-followup):
21414         Mention related variables `message-use-followup-to' and
21415         `message-use-mail-followup-to', in the information buffer.
21416
21417         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
21418         of broken groups(-beta).google.com.
21419
21420 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
21421
21422         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
21423         parameter to invoked gnus-request-move-article; remove the
21424         redundant gnus-sum-hint-move-is-internal variable; apply the marks
21425         all at once instead of once per article.
21426         (gnus-summary-remove-process-mark): Accept a list of articles as
21427         well as a single article for processing.
21428
21429         * gnus-int.el (gnus-request-move-article): Add move-is-internal
21430         parameter.
21431
21432         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
21433
21434         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
21435
21436         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
21437         parameter.
21438
21439         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
21440         parameter.
21441
21442         * nnimap.el (nnimap-request-move-article): Add move-is-internal
21443         parameter and remove the gnus-sum-hint-move-is-internal variable.
21444
21445         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
21446         parameter.
21447
21448         * nndraft.el (nndraft-request-move-article): Add move-is-internal
21449         parameter.
21450
21451         * nndiary.el (nndiary-request-move-article): Add move-is-internal
21452         parameter.
21453
21454         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
21455
21456         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
21457         parameter.
21458
21459         * nnagent.el (nnagent-request-move-article): Add move-is-internal
21460         parameter.
21461
21462 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21463
21464         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
21465         a more conservative way.
21466
21467 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
21468
21469         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
21470         buffer, so it moves the window's cursor.
21471
21472 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
21473
21474         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
21475         `mm-dissect-multipart' and receive the from field as an (optional)
21476         argument from `mm-dissect-multipart'.
21477         (mm-dissect-multipart): Receive the from field as an argument and
21478         pass it on when we call `mm-dissect-buffer' on MIME parts.
21479         Fixes verification/decryption of signed/encrypted MIME parts.
21480
21481 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
21482
21483         * gnus-sum.el (gnus-summary-move-article):
21484         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
21485         whatever it calls (right now, only nnimap-request-move article
21486         respects it).
21487
21488         * nnimap.el (nnimap-request-move-article):
21489         When gnus-sum-hint-move-is-internal is set, don't do the extra
21490         nnimap-request-article.
21491
21492 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
21493
21494         * nnheader.el (nnheader-find-file-noselect): Add doc string.
21495
21496         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
21497         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
21498
21499         * gnus-sum.el (gnus-summary-caesar-message):
21500         Apply `gnus-treat-article' after rotation.
21501
21502         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
21503         doc string.
21504
21505 2005-02-22  Simon Josefsson  <jas@extundo.com>
21506
21507         * encrypt.el (encrypt-password-cache-expiry): Remove (use
21508         `password-cache-expiry' instead).  Reported by Arne Jørgensen
21509         <arne@arnested.dk>.
21510         (encrypt): Add password-cache and password-cache-expiry as group
21511         members.
21512
21513 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
21514
21515         * smime.el (smime-ldap-host-list): Doc fix.
21516         (smime-ask-passphrase): Use `password-read-and-add' to read (and
21517         cache) password.
21518         (smime-sign-region): Use it.
21519         (smime-decrypt-region): Use it.
21520         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
21521         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
21522         fails.
21523         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
21524         certificate from DER to PEM format rather than calling openssl.
21525
21526         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
21527
21528         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
21529         for signing/encryption.
21530
21531         * mml.el (mml-parse-1): Use them.
21532
21533 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
21534
21535         * nnrss.el (nnrss-verbose): Remove.
21536         (nnrss-request-group): Use `nnheader-message' instead.
21537
21538 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
21539
21540         * nnrss.el (nnrss-verbose): New variable.
21541         (nnrss-request-group): Make it say nnrss is requesting a group.
21542
21543 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
21544
21545         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
21546         Handle news URL with given port correctly.
21547
21548 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21549
21550         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
21551         containing special characters.
21552
21553         * gnus-sum.el (gnus-summary-edit-article): Ditto.
21554
21555         * mml.el (mime-to-mml): Ditto.
21556
21557         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
21558         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
21559         (rfc2047-decode-region): Quote decoded words containing special
21560         characters when rfc2047-quote-decoded-words-containing-tspecials
21561         is non-nil.
21562
21563 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
21564
21565         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
21566
21567         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
21568
21569 2005-02-15  Simon Josefsson  <jas@extundo.com>
21570
21571         * nnimap.el (nnimap-debug): Doc fix.
21572
21573         * imap.el (imap-debug): Doc fix.
21574
21575 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
21576
21577         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
21578
21579 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
21580
21581         * gnus.el (spam-contents): Improve docs for spam-contents
21582         parameter in its variable incarnation.
21583
21584 2005-02-14  Simon Josefsson  <jas@extundo.com>
21585
21586         * smime-ldap.el: Use require instead of load-library for ldap.
21587         (smime-ldap-search): Indent.
21588         (smime-ldap-search-internal): Shorten line.
21589
21590         * smime.el (smime-cert-by-dns): Add doc-string.
21591         (smime-cert-by-ldap-1): Indent.
21592
21593         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
21594         mml-smime-get-dns-ldap.
21595         (mml-smime-encrypt-query): Use new function.  Default to ldap.
21596
21597 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
21598
21599         * smime.el: Require smime-ldap.
21600         (smime-ldap-host-list): New variable.
21601         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
21602
21603         * mml-smime.el (mml-smime-encrypt-query): New function.
21604         (mml-smime-encrypt-query): Use it.
21605
21606         * smime-ldap.el: New file.
21607
21608 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21609
21610         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
21611
21612 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
21613
21614         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
21615         argument in doc string.  Make query for type more clear.
21616
21617 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
21618
21619         * gnus.el (gnus-group-startup-message): Search for gnus images in
21620         etc/images/gnus.
21621         * mm-util.el (mm-image-load-path): Likewise.
21622         * smiley.el (smiley-data-directory): Search for smilies in
21623         etc/images/smilies.
21624
21625 2005-02-09  Kim F. Storm  <storm@cua.dk>
21626
21627         Change Emacs release version from 21.4 to 22.1 throughout.
21628         Change Emacs development version from 21.3.50 to 22.0.50.
21629
21630 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21631
21632         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
21633
21634         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
21635         non-Mule XEmacs as well.
21636         (mm-decompress-buffer): Signal an error intentionally if it does
21637         not decompress compressed data because auto-compression-mode is
21638         disabled.
21639
21640 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
21641
21642         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
21643         an ID in the registry even if it has no groups.
21644
21645 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
21646
21647         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
21648         merge it into mm-decompress-buffer.
21649         (gnus-mime-copy-part): Use the MIME part charset, the value which
21650         a user specified or gnus-newsgroup-charset for decoding, like
21651         gnus-mime-inline-part does; set buffer-file-coding-system to tell
21652         save-buffer what was used.  Suggested by Kevin Ryde
21653         <user42@zip.com.au>.
21654         (gnus-mime-inline-part): Allow the name parameter as well as the
21655         filename parameter; force decompressing of compressed data; always
21656         display contents being not decoded as unibyte.
21657
21658         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
21659         as well as the filename parameter.
21660
21661         * mm-util.el (mm-decompress-buffer):
21662         Merge gnus-mime-jka-compr-maybe-uncompress.
21663         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
21664         of compressed data.
21665
21666 2005-02-08  Simon Josefsson  <jas@extundo.com>
21667
21668         * imap.el (imap-log): Doc fix.
21669
21670 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
21671
21672         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
21673         the coding cookies; decompress compressed parts.
21674
21675         * mml.el (mml-generate-mime-1): Add the charset parameter according
21676         to the value which a user specified manually or the coding cookie.
21677
21678         * mm-util.el (mm-string-to-multibyte): New function.
21679         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
21680         (mm-coding-system-to-mime-charset): New function.
21681         (mm-decompress-buffer): New function.
21682         (mm-find-buffer-file-coding-system): New function.
21683
21684         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
21685         (mm-display-inline-fontify): Rewrite for decoding and decompressing
21686         parts.
21687
21688 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
21689
21690         * mm-view.el (mm-display-inline-fontify): Decode a part according
21691         to the charset parameter.
21692
21693 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
21694
21695         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
21696         prefix arg is neither nil nor a number, as info specifies.
21697
21698 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
21699
21700         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
21701         timestamps.
21702
21703 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
21704
21705         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
21706         groups error checking and notify user.
21707
21708 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
21709
21710         * message.el (message-send-mail-function): Check existence of
21711         sendmail-program first before using default value
21712         `message-send-mail-with-sendmail'.  Otherwise use more generic
21713         `smtpmail-send-it'.
21714
21715 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21716
21717         * nntp.el (nntp-request-update-info): Always return nil.
21718
21719 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21720
21721         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
21722
21723 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
21724
21725         * message.el (message-beginning-of-line): Change the behavior when
21726         invoked between BOL and : so that it first moves backward.
21727
21728 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21729
21730         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
21731         article buffer when editing of the article is discarded.
21732         (gnus-article-prepare): Revert.
21733
21734 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21735
21736         * gnus-art.el (gnus-article-prepare):
21737         Remove message-strip-forbidden-properties from the local hook.
21738
21739 2005-01-27  Simon Josefsson  <jas@extundo.com>
21740
21741         * password.el (password-cache-add): Only start one timer per key.
21742         Reported by Derek Atkins <warlord@MIT.EDU>.
21743
21744 2005-01-26  Steve Youngs  <steve@sxemacs.org>
21745
21746         * run-at-time.el: Remove.  It is no longer needed as
21747         timer-funcs.el in the xemacs-base package has a working version of
21748         `run-at-time'.
21749
21750         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
21751
21752         * password.el: Require timer-funcs instead of run-at-time in
21753         XEmacs.
21754         Remove `password-run-at-time' macro.
21755         (password-cache-add): Use `run-at-time' instead of
21756         `password-run-at-time'.
21757
21758         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
21759         Remove `nnheader-cancel-function-timers' alias,
21760         `cancel-function-timers' exists in XEmacs in timer-funcs.
21761
21762         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
21763         for `run-with-idle-timer'.
21764
21765         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
21766         for `run-at-time'.
21767
21768         * mm-url.el: Require timer-funcs at compile time when in XEmacs
21769         for `with-timeout'.
21770
21771         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
21772         the same as for XEmacs 21.4.
21773         No need to ignore `run-with-idle-timer', this function exists in
21774         XEmacs now in timer-funcs.el in the xemacs-base package.
21775         (dgnushack-compile): No need to delete
21776         run-at-time.el from the list of files to compile because it
21777         doesn't exist anymore.
21778
21779 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
21780
21781         * mml.el (mml-generate-mime-1): Convert string into unibyte when
21782         inserting " *mml*" buffer's contents into a unibyte temp buffer.
21783
21784 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
21785
21786         * mail-source.el (mail-source-fetch-imap): Search for ^From case
21787         sensitively.
21788
21789 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
21790
21791         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
21792
21793 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21794
21795         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
21796         which will be inserted according to the multibyteness of a buffer
21797         rather than the type of contents.  Suggested by ARISAWA Akihiro
21798         <ari@mbf.ocn.ne.jp>.
21799
21800         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
21801         of string which old xml.el may return rather than a string.
21802
21803 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21804
21805         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
21806
21807 2005-01-16  Simon Josefsson  <jas@extundo.com>
21808
21809         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
21810         idn/idna.el isn't available.
21811         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
21812         <michael@waxrat.com>.
21813
21814         * hashcash.el: Remove non-FSF copyright header.
21815
21816         * hashcash.el (hashcash-extra-generate-parameters): New variable.
21817         (hashcash-generate-payment): Use it.
21818         (hashcash-generate-payment-async): Use it.
21819
21820 2005-01-15  Simon Josefsson  <jas@extundo.com>
21821
21822         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
21823         Suggested by Raymond Scholz <ray-2005@zonix.de>.
21824
21825         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
21826         gnus-summary-idna-message.
21827         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
21828         (gnus-summary-idna-message): New function.
21829
21830 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
21831
21832         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
21833         gnus-novice-user.
21834
21835 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21836
21837         * nnrss.el (nnrss-request-delete-group): Delete entries in
21838         nnrss-group-alist as well.
21839         (nnrss-save-server-data): Insert newline.
21840
21841 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
21842
21843         * gnus.el (gnus-user-agent): Use list of symbols instead of
21844         symbols.  Display full version number for (S)XEmacs.
21845         Optionally display (S)XEmacs codename.
21846
21847         * gnus-util.el (gnus-emacs-version): Update for new
21848         `gnus-user-agent'.
21849
21850         * gnus-msg.el (gnus-extended-version): Make it possible to omit
21851         Gnus version.
21852
21853 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
21854
21855         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
21856         which is unreadable in some setups.
21857
21858 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21859
21860         * gnus-spec.el (gnus-update-format-specifications): Flush the
21861         group format spec cache if it doesn't support decoded group names.
21862
21863 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
21864
21865         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
21866         Allow to apply decay on score files matching a regexp.
21867
21868 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
21869
21870         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
21871         compatibility in %g and %c.
21872
21873 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
21874
21875         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
21876         name for only %g and %c.
21877         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
21878         of gnus-tmp-group to decoded group name.
21879         (gnus-group-make-rss-group): Exclude `/'s from group names.
21880
21881 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21882
21883         * nnrss.el (nnrss-get-encoding): Fix regexp.
21884
21885 2004-12-27  Simon Josefsson  <jas@extundo.com>
21886
21887         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
21888         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
21889         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
21890
21891 2004-12-17  Kim F. Storm  <storm@cua.dk>
21892
21893         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
21894
21895         * gnus-sum.el (gnus-summary-mode-map): Likewise.
21896
21897 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
21898
21899         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
21900
21901 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
21902
21903         * nnrss.el: Require rfc2047 and mml.
21904         (nnrss-file-coding-system): New variable.
21905         (nnrss-format-string): Redefine it as an inline function.
21906         (nnrss-decode-group-name): New function.
21907         (nnrss-string-as-multibyte): Remove.
21908         (nnrss-retrieve-headers): Decode group name; don't use
21909         nnrss-format-string.
21910         (nnrss-request-group): Decode group name.
21911         (nnrss-request-article): Decode group name; allow a Message-ID as
21912         well as an article number; don't use nnrss-format-string; encode a
21913         Message-ID string which may contain non-ASCII characters; use
21914         mml-to-mime to compose a MIME article.
21915         (nnrss-request-expire-articles): Decode group name.
21916         (nnrss-request-delete-group): Decode group name.
21917         (nnrss-fetch): Clarify error message.
21918         (nnrss-read-server-data): Use insert-file-contents instead of load;
21919         bind file-name-coding-system; use multibyte buffer.
21920         (nnrss-save-server-data): Bind coding-system-for-write to the
21921         value of nnrss-file-coding-system; bind file-name-coding-system;
21922         add coding cookie.
21923         (nnrss-read-group-data): Use insert-file-contents instead of load;
21924         bind file-name-coding-system; use multibyte buffer.
21925         (nnrss-save-group-data): Bind coding-system-for-write to the
21926         value of nnrss-file-coding-system; bind file-name-coding-system.
21927         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
21928         make it work with non-ASCII text.
21929         (nnrss-find-el): Make it work with old xml.el as well.
21930
21931 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
21932
21933         * nnrss.el (nnrss-get-encoding): New function.
21934         (nnrss-fetch): Use unibyte buffer initially; bind
21935         coding-system-for-read while performing mm-url-insert; remove ^Ms;
21936         decode contents according to the encoding attribute.
21937         (nnrss-save-group-data): Add coding cookie.
21938         (nnrss-mime-encode-string): New function.
21939         (nnrss-check-group): Use it to encode subject and author.
21940
21941 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
21942
21943         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
21944         imaginary variable.
21945
21946 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
21947
21948         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
21949         correctly even if there are wide characters.
21950
21951 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
21952
21953         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
21954         downcased symbol names; make a new cache instead of reusing
21955         bbdb-hashtable.
21956
21957 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
21958
21959         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
21960         concatenating segments rather than before concatenating them.
21961         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
21962
21963         * message.el (message-get-reply-headers): Bind `extra'.
21964
21965 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21966
21967         * message.el (message-extra-wide-headers): New variable.
21968         (message-get-reply-headers): Use it.
21969
21970 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21971
21972         * gnus-agent.el (gnus-agent-group-path): Decode group name.
21973         (gnus-agent-group-pathname): Ditto.
21974
21975         * gnus-cache.el (gnus-cache-file-name): Decode group name.
21976
21977         * gnus-group.el (gnus-group-make-group): Decode group name.
21978         (gnus-group-make-rss-group): Register the group data after opening
21979         the nnrss group.
21980
21981 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
21982
21983         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
21984         by expiry now get marked as read.
21985
21986 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21987
21988         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
21989
21990 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
21991
21992         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
21993         unify Latin characters in XEmacs.
21994         (mm-find-mime-charset-region): Use it.
21995
21996 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21997
21998         * gnus-util.el (gnus-delete-directory): New function.
21999
22000         * gnus-agent.el (gnus-agent-delete-group): Use it.
22001
22002         * gnus-cache.el (gnus-cache-delete-group): Use it.
22003
22004 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
22005
22006         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
22007         names.
22008
22009 2004-12-16  Simon Josefsson  <jas@extundo.com>
22010
22011         * hashcash.el (hashcash-payment-alist): Fix custom :type.
22012
22013 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
22014
22015         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
22016
22017         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
22018         (gnus-group-set-current-level): Decode group name.
22019
22020 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
22021
22022         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
22023         failed.
22024
22025 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
22026
22027         * gnus-group.el (gnus-group-delete-group): Decode group name.
22028         (gnus-group-make-rss-group): Encode group name.
22029         (gnus-group-catchup-current): Decode group name.
22030         (gnus-group-kill-group): Decode group name.
22031
22032 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
22033
22034         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
22035
22036 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22037
22038         * gnus-group.el (gnus-group-make-rss-group):
22039         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
22040
22041         * gnus-start.el (gnus-setup-news): Honor user's setting to
22042         gnus-message-archive-method.  Suggested by Lute Kamstra
22043         <lute@gnu.org>.
22044
22045 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
22046
22047         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
22048         global counterparts of the buffer-local variables.
22049
22050 2004-11-16  Romain Francoise  <romain@orebokech.com>
22051
22052         * gnus-sum.el (gnus-summary-exit): Don't clear the global
22053         counterparts of the buffer-local variables.
22054
22055 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
22056
22057         * message.el (message-forbidden-properties): Fix typo in doc
22058         string.
22059
22060 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
22061
22062         * gnus-util.el (gnus-replace-in-string): Add doc string.
22063
22064         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
22065         to avoid problems when splitting mails with many recipients.
22066
22067 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
22068
22069         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
22070         pop-to-buffer, covered by the subsequent gnus-configure-windows.
22071
22072 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
22073
22074         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
22075         if there is no hashtable in memory or file modification time is
22076         newer than cached timestamp.
22077
22078 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
22079
22080         * gnus-sum.el (gnus-summary-limit-to-recipient):
22081         Implement not-matching option.
22082
22083 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
22084
22085         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
22086         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
22087         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
22088         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
22089         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
22090         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
22091
22092 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22093
22094         * message.el (message-forward-make-body-mml): Remove headers
22095         according to message-forward-ignored-headers if a message is decoded.
22096
22097 2004-12-02  Romain Francoise  <romain@orebokech.com>
22098
22099         * message.el (message-forward-make-body-plain): Always remove
22100         headers according to message-forward-ignored-headers.
22101
22102 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
22103
22104         * spam.el (spam-summary-prepare-exit): Remove the
22105         gnus-summary-limit pop for now, it has problems with ham marks for
22106         me.
22107
22108 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
22109
22110         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
22111         correctly.
22112
22113 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
22114
22115         * format-spec.el (format-spec): Message the char.
22116
22117 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
22118
22119         * gnus-art.el (gnus-split-methods): Reformat comments.
22120
22121         * spam.el (spam-summary-prepare-exit): Remove article limits
22122         before exiting the summary buffer.
22123
22124 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22125
22126         * lpath.el: Remove bbdb-create-internal, bbdb-records,
22127         spam-BBDB-register-routine and spam-enter-ham-BBDB.
22128
22129         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
22130         order to silence the byte compiler.
22131
22132         * spam.el: Fix the way to silence the byte compiler, which
22133         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
22134         bbdb-search-simple, spam-BBDB-register-routine,
22135         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
22136         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
22137         spam-stat-buffer-is-spam, spam-stat-load,
22138         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
22139         spam-stat-save and spam-stat-split-fancy.
22140
22141 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22142
22143         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
22144         which may confuse users.
22145         (canlock-password-for-verify): Ditto.
22146
22147         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
22148
22149         * gnus-art.el (gnus-emphasis-alist): Ditto.
22150
22151         * gnus-registry.el (gnus-registry-max-entries): Ditto.
22152
22153         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
22154
22155         * gnus-start.el (gnus-save-killed-list): Ditto.
22156
22157         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
22158         (gnus-sum-thread-tree-root): Ditto.
22159         (gnus-sum-thread-tree-false-root): Ditto.
22160         (gnus-sum-thread-tree-single-indent): Ditto.
22161
22162         * message.el (message-courtesy-message): Ditto.
22163         (message-archive-note): Ditto.
22164         (message-subscribed-address-file): Ditto.
22165         (message-user-fqdn): Ditto.
22166
22167         * spam-report.el (spam-report-gmane-regex): Ditto.
22168
22169         * spam.el (spam-blackhole-good-server-regex): Ditto.
22170
22171 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
22172
22173         * mml.el (mml-preview): Widen the message buffer before copying
22174         the contents to the preview buffer; sort headers before previewing.
22175
22176         * message.el (message-hidden-headers): Fix the way to avoid a bug
22177         in the `repeat' widget in Emacs 21.3 or earlier.
22178
22179 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
22180
22181         * message.el (message-hidden-headers): Default to "^References:".
22182         Improve customization type.  Suggested by Reiner Steib
22183         <Reiner.Steib@gmx.de>.
22184
22185 2004-11-25  Romain Francoise  <romain@orebokech.com>
22186
22187         * message.el (message-strip-forbidden-properties): Remove check for
22188         obsolete `message-hidden' text property, hidden headers are not
22189         accessible in the buffer anymore.
22190
22191 2004-11-22  Romain Francoise  <romain@orebokech.com>
22192
22193         * message.el (message-header-format-alist): Add `From' in list
22194         so that it can be sorted.
22195         (message-fix-before-sending): Widen and sort headers before
22196         sending.
22197         (message-hide-headers): Use narrowing to hide headers by moving
22198         them to the top of the buffer and narrowing to the region
22199         underneath.
22200
22201 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22202
22203         * message.el (message-strip-forbidden-properties):
22204         Bind buffer-read-only (etc) to nil.
22205
22206 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
22207
22208         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
22209         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
22210
22211 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
22212
22213         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
22214
22215 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22216
22217         * dns.el (query-dns): Use sit-for to time instead of
22218         accept-process-output, since that doesn't seem to work on udp
22219         sockets.
22220
22221 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
22222
22223         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
22224
22225 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
22226
22227         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
22228         doc string.  Improve doc string.
22229
22230 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
22231
22232         * nntp.el (nntp-request-update-info): Return nil if
22233         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
22234         may not call gnus-activate-group which uselessly issues the GROUP
22235         commands for all nntp groups and wastes time.  Reported by Romain
22236         Francoise <romain@orebokech.com>.
22237
22238         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
22239
22240 2004-11-15  Simon Josefsson  <jas@extundo.com>
22241
22242         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
22243         headers separately.
22244         (gnus-button-openpgp): New function, inspired by Jochen Küpper
22245         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
22246
22247 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
22248
22249         * gnus-start.el (gnus-convert-old-newsrc):
22250         Assign legacy-gnus-agent to 5.10.7.
22251
22252 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22253
22254         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
22255         start of the lines.
22256
22257 2004-11-14  Magnus Henoch  <mange@freemail.hu>
22258
22259         * hashcash.el (hashcash-default-payment): Change default to 20.
22260         (hashcash-default-accept-payment): Change default to 20.
22261         (hashcash-process-alist): New variable.
22262         (hashcash-generate-payment-async): Add.
22263         (hashcash-already-paid-p): Add.
22264         (hashcash-insert-payment): Don't generate payments twice.
22265         (hashcash-insert-payment-async): Add.
22266         (hashcash-insert-payment-async-2): Add.
22267         (hashcash-cancel-async): Add.
22268         (hashcash-wait-async): Add.
22269         (hashcash-processes-running-p): Add.
22270         (hashcash-wait-or-cancel): Add.
22271         (mail-add-payment): New optional argument.  Conditionally start
22272         asynchronous calculation.
22273         (mail-add-payment-async): Add.
22274
22275         * message.el (message-send-mail): Wait for asynchronous hashcash
22276         results.  Don't clobber existing X-Hashcash headers.
22277         (message-setup-1): Call mail-add-payment-async when
22278         message-generate-hashcash is non-nil.
22279
22280 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
22281
22282         * message.el (message-use-alternative-email-as-from): Examine the
22283         From header as well; use message-make-from in order to include a
22284         user's full name.
22285
22286 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
22287
22288         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
22289         default; improve customization type.
22290         (gnus-emphasis-custom-with-format): New macro.
22291         (gnus-emphasis-custom-value-to-external): New function.
22292         (gnus-emphasis-custom-value-to-internal): New function.
22293
22294 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22295
22296         * dns.el (query-dns): Resolve reverse addresses.
22297
22298 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22299
22300         * gnus-group.el (gnus-group-get-new-news): Use it.
22301
22302         * gnus-start.el (gnus-check-reasonable-setup): New function.
22303
22304 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
22305
22306         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
22307         "Args out of range" error.  Reported by Arnaud Giersch
22308         <arnaud.giersch@free.fr>.
22309
22310 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
22311
22312         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
22313
22314 2004-11-04  Richard M. Stallman  <rms@gnu.org>
22315
22316         * spam.el (spam group): Add :version.
22317
22318         * pgg-def.el (pgg group): Add :version.
22319
22320 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
22321
22322         * gnus-art.el (gnus-article-edit-article): Don't associate the
22323         article buffer with a draft file.  This is a temporary measure
22324         against the 2004-08-22 change to gnus-article-edit-mode.
22325
22326 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22327
22328         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
22329         (html2text-format-tags): Remove unused variable `attr'.
22330
22331 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
22332
22333         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
22334
22335         * tls.el (tls-process-connection-type, tls-success)
22336         (tls-certtool-program): Add :version.
22337
22338         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
22339         (starttls-extra-arguments, starttls-process-connection-type)
22340         (starttls-connect, starttls-failure, starttls-success): Add :version.
22341
22342         * spam-stat.el (spam-stat): Add :version.
22343
22344         * sieve.el (sieve): Add :version.
22345
22346         * sha1.el (sha1): Add :version.
22347         (sha1-use-external): Remove redundant version.
22348
22349         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
22350         (nnmail-cache-ignore-groups, nnmail-spool-hook)
22351         (nnmail-split-fancy-match-partial-words)
22352         (nnmail-split-lowercase-expanded): Add :version.
22353
22354         * nndiary.el (nndiary): Add :version.
22355
22356         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
22357
22358         * mml-sec.el (mml-default-sign-method)
22359         (mml-default-encrypt-method, mml-signencrypt-style-alist):
22360         Add :version.
22361
22362         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
22363
22364         * mm-url.el (mm-url-use-external, mm-url-program)
22365         (mm-url-arguments): Add :version.
22366
22367         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
22368         (mm-attachment-file-modes, mm-decrypt-option)
22369         (mm-w3m-safe-url-regexp): Add :version.
22370
22371         * message.el (message-cite-prefix-regexp)
22372         (message-sendmail-envelope-from, message-minibuffer-local-map)
22373         (message-user-fqdn, message-completion-alist): Add :version.
22374
22375         * gnus-win.el (gnus-configure-windows-hook)
22376         (gnus-use-frames-on-any-display): Add :version.
22377
22378         * gnus-art.el (gnus-article-address-banner-alist)
22379         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
22380         (gnus-treat-from-picon, gnus-treat-mail-picon)
22381         (gnus-treat-x-pgp-sig): Add :version.
22382
22383         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
22384         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
22385         (gnus-summary-article-delete-hook)
22386         (gnus-summary-display-while-building): Add :version.
22387
22388         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
22389         (gnus-get-top-new-news-hook): Add :version.
22390
22391         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
22392         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
22393
22394         * gnus-registry.el (gnus-registry): Add :version.
22395
22396         * gnus-spec.el (gnus-use-correct-string-widths)
22397         (gnus-make-format-preserve-properties): Add :version.
22398
22399         * gnus.el (gnus-group-charter-alist)
22400         (gnus-group-fetch-control-use-browse-url)
22401         (gnus-install-group-spam-parameters): Add :version.
22402
22403         * gnus-diary.el (gnus-diary): Add :version.
22404
22405         * gnus-delay.el (gnus-delay): Add :version.
22406
22407         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
22408         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
22409         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
22410         Add :version.
22411
22412         * gnus-agent.el (gnus-agent-max-fetch-size)
22413         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
22414         (gnus-agent-prompt-send-queue): Add :version.
22415
22416         * deuglify.el (gnus-outlook-deuglify): Add :version.
22417
22418         * html2text.el: Beautify code.  Improve doc strings.
22419         Some checkdoc cleanup.
22420         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
22421
22422 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
22423
22424         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
22425
22426 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
22427
22428         * gnus-registry.el (gnus-registry-hashtb): Create the registry
22429         when package is loaded.
22430
22431         * spam.el (spam-summary-score-preferred-header): Add global preference
22432         for people who want to override the default SpamAssassin over
22433         Bogofilter preference (when both are set).
22434         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
22435         (spam-user-format-function-S):
22436         Check spam-summary-score-preferred-header.
22437         (spam-extra-header-to-number): Add X-Bogosity header parsing.
22438         (spam-user-format-function-S): Format the score correctly.
22439
22440 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
22441
22442         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
22443         signature file.  Suggested by Manoj Srivastava
22444         <srivasta@golden-gryphon.com>.
22445
22446         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
22447         iso-2022-jp even in the Japanese language environment.
22448         Suggested by Jason Rumney <jasonr@gnu.org>.
22449
22450 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
22451
22452         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
22453         use the same characters as the dummy marks; make it free from
22454         getting affected by the language environment.
22455         (gnus-summary-read-group-1): Update mark positions only when the
22456         format spec is updated.
22457
22458         * gnus-spec.el (gnus-update-format-specifications): Return a list
22459         of updated types.
22460
22461 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22462
22463         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
22464         of boundp to check if display-warning is available.
22465
22466 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
22467
22468         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
22469
22470 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22471
22472         * nnspool.el (nnspool-spool-directory): Use news-path if the
22473         news-directory variable is not bound.
22474
22475         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
22476         function instead of display-warning if it is not available.
22477
22478 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
22479
22480         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
22481         v5-10: Use `point-at-bol'.
22482
22483 2004-10-26  Simon Josefsson  <jas@extundo.com>
22484
22485         * hashcash.el: Fix URL in comment, reported by Cheng Gao
22486         <chenggao@gmail.com>.
22487
22488 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
22489
22490         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
22491         instead.
22492
22493 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
22494
22495         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
22496         to remove a server from the nnimap-server-buffer-alist.
22497         (nnimap-open-connection, nnimap-close-server): Use it.
22498
22499         * gnus-encrypt.el: Remove file in favor of encrypt.el.
22500
22501 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
22502
22503         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
22504         running the major-mode function.
22505
22506 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
22507
22508         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
22509         dummy marks in the right way.
22510
22511 2004-10-18  David Edmondson  <dme@dme.org>
22512
22513         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
22514         excessively.
22515
22516 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
22517
22518         * gnus-util.el (gnus-split-references): Accept a nil references
22519         string and go on blissfully.
22520
22521         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
22522         cases where the references string is non-nil but has no references.
22523
22524         * encrypt.el: Add autoload tags.
22525
22526         * spam.el (spam-resolve-registrations-routine): Remove article
22527         from unregistration list too.  Reported by David Hanak
22528         <dhanak@isis.vanderbilt.edu>
22529
22530 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
22531
22532         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
22533         nil.  Change custom type.
22534
22535 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
22536
22537         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
22538
22539         * gnus-sum.el (gnus-summary-move-article): Use it.
22540
22541 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
22542
22543         * encrypt.el: Add autoload cookies.
22544
22545         * spam.el (spam-backend-article-list-property)
22546         (spam-backend-get-article-todo-list)
22547         (spam-backend-put-article-todo-list)
22548         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
22549         Resolve registrations separately.
22550         (spam-register-routine): Format comments.
22551         (spam-unregister-routine, spam-register-routine): Always call with
22552         specific-articles, no default list.
22553         (spam-summary-prepare-exit): Use the spam-classifications function.
22554
22555         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
22556         gnus-encrypt.el.
22557
22558         * encrypt.el: Copied from gnus-encrypt.el.
22559
22560         * gnus-encrypt.el: Commented that it's obsolete.
22561
22562 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
22563
22564         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
22565         (gnus-score-save): Use it.
22566
22567         * message.el (message-bury): Use `window-dedicated-p'.
22568
22569 2004-10-15  Simon Josefsson  <jas@extundo.com>
22570
22571         * pop3.el (top-level): Don't require nnheader.
22572         (pop3-read-timeout): Add.
22573         (pop3-accept-process-output): Add.
22574         (pop3-read-response, pop3-retr): Use it.
22575
22576 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
22577
22578         * spam.el (spam-register-routine): Move comment.
22579         (spam-verify-bogofilter): Use 'unknown for the initial
22580         spam-bogofilter-valid state, not 'never.
22581
22582         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
22583         for netrc-machine.
22584
22585         * nnimap.el (nnimap-open-connection):
22586         Use netrc-machine-user-or-password.
22587
22588 2004-10-17  Richard M. Stallman  <rms@gnu.org>
22589
22590         * gnus-registry.el (gnus-registry-unload-hook):
22591         Set as a variable with add-hook.
22592
22593         * nnspool.el (nnspool-spool-directory): Use news-directory instead
22594         of news-path.
22595
22596         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
22597
22598         * spam.el: Delete duplicate `provide'.
22599         (spam-unload-hook): Set as a variable with add-hook.
22600
22601 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
22602
22603         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
22604         in the doc string.
22605
22606         * message.el (message-ignored-news-headers)
22607         (message-ignored-supersedes-headers)
22608         (message-ignored-resent-headers)
22609         (message-forward-ignored-headers): Improve custom type.
22610
22611 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22612
22613         * message.el (message-tokenize-header): Fix 2004-09-06 change
22614         which used point-min in the wrong place.
22615
22616 2004-10-12  Simon Josefsson  <jas@extundo.com>
22617
22618         * tls.el (tls-certtool-program): New variable.
22619         (tls-certificate-information): New function, based on
22620         ssl-certificate-information.
22621
22622 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
22623
22624         * compface.el: Move the version of ELisp-based uncompface program
22625         to the contrib directory because of the copyright problem.
22626
22627 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
22628
22629         * message.el (message-kill-buffer): Raise the current frame.
22630
22631 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
22632
22633         * gnus-sum.el: Mention that multibyte characters don't work as marks.
22634
22635         * gnus.el (message-y-or-n-p): Autoload.
22636
22637         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
22638         (pop3-password-required, pop3-authentication-scheme)
22639         (pop3-leave-mail-on-server): Make customizable.
22640         (pop3): New custom group.
22641         (pop3-retr): Remove `sleep-for' statements.
22642         Suggested by Dave Love <fx@gnu.org>.
22643
22644         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
22645         Windows/DOS.
22646
22647         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
22648         (imap-parse-body): Fix incorrect use of `assert'.
22649         Suggested by Dave Love <fx@gnu.org>.
22650
22651         * mml.el (mml-minibuffer-read-disposition): Require match.
22652         Suggested by Dave Love <fx@gnu.org>.
22653
22654 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
22655
22656         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
22657         doc string.
22658
22659 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
22660
22661         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
22662
22663 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
22664
22665         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
22666         instead of calling `mm-insert-inline', to decode text/* parts
22667         before displaying them.
22668
22669 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
22670
22671         * mm-uu.el (mm-uu-text-plain-type): New variable.
22672         (mm-uu-pgp-signed-extract-1): Use it.
22673         (mm-uu-pgp-encrypted-extract-1): Use it.
22674         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
22675         bind mm-uu-text-plain-type with that value.
22676         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
22677         mm-uu-dissect.
22678
22679 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22680
22681         * gnus-group.el (gnus-update-group-mark-positions):
22682         * gnus-sum.el (gnus-update-summary-mark-positions):
22683         * message.el (message-check-news-body-syntax):
22684         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
22685         of string-as-multibyte.
22686
22687 2004-10-05  Juri Linkov  <juri@jurta.org>
22688
22689         * gnus-group.el (gnus-update-group-mark-positions):
22690         * gnus-sum.el (gnus-update-summary-mark-positions):
22691         * message.el (message-check-news-body-syntax):
22692         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
22693         8-bit unibyte values to a multibyte string for search functions.
22694
22695 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22696
22697         * mm-uu.el (mm-uu-dissect): Allow optional arg.
22698         (mm-uu-dissect-text-parts): New function.
22699
22700         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
22701         dissect text parts.
22702
22703         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
22704         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
22705
22706         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
22707
22708         * gnus-topic.el (gnus-topic-hierarchical-parameters):
22709         Use gnus-current-topics instead of gnus-current-topic.
22710
22711 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
22712
22713         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
22714
22715 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
22716
22717         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
22718         where appropriate.
22719
22720         * nnml.el (nnml-generate-active-info): do.
22721
22722         * nndiary.el (nndiary-generate-active-info): do.
22723
22724         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
22725         (gnus-topic-move): do.
22726
22727         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
22728         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
22729
22730         * gnus-srvr.el (gnus-server-prepare)
22731         (gnus-server-open-all-servers): do.
22732
22733         * gnus-msg.el (gnus-summary-cancel-article)
22734         (gnus-summary-resend-message)
22735         (gnus-summary-mail-crosspost-complaint): do.
22736
22737         * gnus-move.el (gnus-change-server): do.
22738
22739         * gnus-group.el (gnus-group-unmark-all-groups)
22740         (gnus-group-set-current-level): do.
22741
22742 2004-10-04  Simon Josefsson  <jas@extundo.com>
22743
22744         * message.el (message-generate-hashcash): Doc fix.
22745
22746 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
22747
22748         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
22749         avoid infinite recursion via gnus-get-function.
22750
22751 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
22752
22753         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
22754
22755         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
22756
22757         * nnmail.el (nnmail-split-history): do.
22758
22759         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
22760         (nnml-request-delete-group): do.
22761
22762         * nnslashdot.el (nnslashdot-read-groups): do.
22763
22764         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
22765         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
22766
22767         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
22768         (nnspool-sift-nov-with-sed): Use last.
22769         (nnspool-retrieve-headers-with-nov): Use mapc.
22770         (nnspool-request-newgroups): Use dolist.
22771         (nnspool-request-group): Use last.
22772
22773         * nntp.el (nntp-read-server-type): Use dolist.
22774
22775         * nnvirtual.el (nnvirtual-create-mapping)
22776         (nnvirtual-update-read-and-marked): Use dolist.
22777         (nnvirtual-convert-headers): Simplify.
22778
22779 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
22780
22781         * gnus-agent.el (gnus-agent-synchronize-group-flags):
22782         Add support for sync'ing tick marks.
22783
22784 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
22785
22786         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
22787         there's no visible header.
22788
22789 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
22790
22791         * gnus-agent.el (gnus-agent-synchronize-group-flags):
22792         When necessary, pass full group name to gnus-request-set-marks.
22793
22794 2004-10-01  Simon Josefsson  <jas@extundo.com>
22795
22796         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
22797         acroread.
22798
22799 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22800
22801         * spam-report.el (spam-report-gmane): Fix interactive.
22802
22803         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
22804
22805         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
22806         when writing file.
22807         (gnus-agent-synchronize-flags): Don't default to being
22808         interactive.
22809
22810 2004-09-30  Simon Josefsson  <jas@extundo.com>
22811
22812         * message.el (message-generate-hashcash): Add.
22813         (message-send-mail): Use it, call mail-add-payment.
22814
22815 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
22816
22817         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
22818
22819 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
22820
22821         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
22822         gnus-requst-update-info with explicit code to sync the in-memory
22823         info read flags with the marks being sync'd to the backend.
22824
22825         * gnus-util.el (gnus-pp): Add optional stream to match pp API.
22826
22827 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
22828
22829         * spam.el (spam-verify-bogofilter): Add new function.
22830         (spam-check-bogofilter)
22831         (spam-bogofilter-register-with-bogofilter): Use it.
22832         (spam-verify-bogofilter): Add small fixes.
22833
22834 2004-09-28  Simon Josefsson  <jas@extundo.com>
22835
22836         * hashcash.el (hashcash-generate-payment): Revert.
22837
22838 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
22839
22840         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
22841         Use gnus-extract-references instead of gnus-split-references.
22842
22843         * gnus-util.el (gnus-extract-references): Add new function, analogous
22844         to gnus-split-references but extracts only the message-ID without
22845         anything extra.
22846
22847         * hashcash.el (hashcash-generate-payment)
22848         (hashcash-check-payment): Do the right thing if hashcash-path is
22849         nil (because the hashcash program could not be found).
22850
22851         * spam.el (spam-use-hashcash): Remove comment.
22852
22853 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
22854
22855         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
22856         (gnus-cache-enter-article, gnus-cache-remove-article)
22857         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
22858
22859         * gnus-async.el (gnus-async-prefetch-remove-group): do.
22860
22861         * gnus-art.el (article-hide-boring-headers)
22862         (article-translate-strings, article-display-face)
22863         (gnus-article-mime-match-handle-first)
22864         (gnus-article-highlight-headers)
22865         (gnus-article-add-buttons-to-head): do.
22866
22867 2004-09-27  Simon Josefsson  <jas@extundo.com>
22868
22869         * hashcash.el: New version, from
22870         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
22871         ../contrib/.
22872
22873 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22874
22875         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
22876
22877 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
22878
22879         * gnus-dup.el (gnus-dup-open): Use mapc.
22880         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
22881
22882         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
22883         Reported by Stefan Wiens <s.wi@gmx.net>.
22884
22885         * gnus.el (gnus-shutdown): Use dolist.
22886
22887         * gnus-undo.el (gnus-undo): Use mapc.
22888
22889         * nnrss.el (nnrss-generate-active): do.
22890
22891         * message.el (message-cite-original-without-signature)
22892         (message-cite-original): Use mapc.
22893         (message-do-actions, message-make-forward-subject): Use dolist.
22894
22895 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
22896
22897         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
22898         deletion to remove entire duplicate line.  Fixes merged article
22899         number bug.
22900
22901 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
22902
22903         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
22904         servers that are offline.  Avoids having gnus-agent-toggle-plugged
22905         first ask if you want to open a server and then, even when you
22906         responded with no, asking if you want to synchronize the server's
22907         flags.
22908         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
22909         multi-line expressions.
22910         (gnus-agent-synchronize-group-flags): New internal function.
22911         Updates marks in memory (in the info structure) AND in the
22912         backend.
22913
22914         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
22915
22916         * nnagent.el (nnagent-request-set-mark):
22917         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
22918         method, to ensure that synchronization updates marks in the
22919         backend and in the info (in memory) structure.
22920
22921 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
22922
22923         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
22924         convention fully; don't miss the root article of a thread; make
22925         the X-Draft-From header with correct article numbers.
22926
22927 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
22928
22929         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
22930         unless plugged.  Disable the agent so that an open failure causes
22931         an error.
22932
22933         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
22934         Revert 2004-09-21 change.  The backend must be opened while
22935         synchronizing flags even when the backend stores the flags
22936         locally.
22937
22938 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
22939
22940         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
22941         in `header' match.  Reported by Svend Tollak Munkejord.
22942
22943         * message.el (message-cite-original): Fix use of
22944         `message-cite-articles-with-x-no-archive'.
22945
22946 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
22947
22948         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
22949         (gnus-window-to-buffer): Ditto.
22950
22951         * mml.el (mml-preview-buffer): New variable.
22952         (mml-preview): Manage window layout with gnus-buffer-configuration.
22953
22954         * gnus-msg.el (gnus-setup-message): Put article numbers into the
22955         X-Draft-From header even if those articles aren't quoted.
22956
22957 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
22958
22959         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
22960         (gnus-request-set-mark, gnus-request-update-mark): Use new
22961         g-s-t-u-l-m to decide to use backend even when unplugged.
22962
22963 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
22964
22965         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
22966         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
22967
22968 2004-09-20  Simon Josefsson  <jas@extundo.com>
22969
22970         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
22971         "utf-16-le".
22972
22973 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
22974
22975         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
22976
22977 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
22978
22979         * uudecode.el (uudecode-use-external): Add :version.
22980
22981         * smime.el (smime-CA-file, smime-encrypt-cipher)
22982         (smime-dns-server): Add :version.
22983
22984         * smiley.el (gnus-smiley-file-types): Add :version.
22985
22986         * sha1.el (sha1-use-external): Add :version.
22987
22988         * pgg-def.el (pgg-query-keyserver): Add :version.
22989
22990         * nnmail.el (nnmail-fancy-expiry-targets)
22991         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
22992         Add :version.
22993
22994         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
22995         (nnimap-retrieve-groups-asynchronous): Add :version.
22996         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
22997
22998         * mml.el (mml-content-disposition-parameters)
22999         (mml-insert-mime-headers-always): Add :version.
23000
23001         * mm-util.el (mm-coding-system-priorities): Add :version.
23002
23003         * mm-decode.el (mm-inline-text-html-with-images)
23004         (mm-keep-viewer-alive-types, mm-external-terminal-program)
23005         (mm-verify-option): Add :version.
23006         (mm-text-html-renderer): Change :version.
23007
23008         * message.el (message-fcc-externalize-attachments)
23009         (message-required-headers, message-draft-headers)
23010         (message-subject-trailing-was-query)
23011         (message-subject-trailing-was-ask-regexp)
23012         (message-subject-trailing-was-regexp, message-mark-insert-begin)
23013         (message-mark-insert-end, message-archive-header)
23014         (message-archive-note, message-cross-post-default)
23015         (message-cross-post-note, message-followup-to-note)
23016         (message-cross-post-note-function, message-use-mail-followup-to)
23017         (message-subscribed-address-functions)
23018         (message-subscribed-address-file, message-subscribed-addresses)
23019         (message-subscribed-regexps, message-allow-no-recipients)
23020         (message-yank-cited-prefix, message-signature-insert-empty-line)
23021         (message-hidden-headers, message-hierarchical-addresses)
23022         (message-mail-user-agent, message-use-idna)
23023         (message-valid-fqdn-regexp)
23024         (message-strip-special-text-properties, message-header-synonyms)
23025         (message-beginning-of-line, message-tab-body-function): Add :version.
23026         (message-insert-canlock, message-wide-reply-confirm-recipients):
23027         Change :version.
23028
23029         * mail-source.el (mail-source-ignore-errors): Add :group, :type
23030         and :version.
23031         (mail-source-delete-old-incoming-confirm)
23032         (mail-source-movemail-program): Add :version.
23033
23034         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
23035         (gnus-agent-cache, gnus-agent): Change :version.
23036
23037         * gnus-util.el (gnus-use-byte-compile): Change :version.
23038
23039         * gnus-sum.el (gnus-summary-make-false-root-always)
23040         (gnus-summary-default-high-score)
23041         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
23042         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
23043         (gnus-read-all-available-headers, gnus-article-emulate-mime)
23044         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
23045         (gnus-sum-thread-tree-single-indent)
23046         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
23047         (gnus-sum-thread-tree-leaf-with-other)
23048         (gnus-sum-thread-tree-single-leaf): Add :version.
23049         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
23050         (gnus-article-loose-mime): Change :version.
23051
23052         * gnus-start.el (gnus-backup-startup-file)
23053         (gnus-save-startup-file-via-temp-buffer): Add :version.
23054
23055         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
23056         (gnus-server-offline-face): Add :version.
23057
23058         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
23059
23060         * gnus-msg.el (gnus-gcc-externalize-attachments)
23061         (gnus-debug-files, gnus-debug-exclude-variables)
23062         (gnus-discouraged-post-methods): Change :version.
23063         (gnus-confirm-mail-reply-to-news)
23064         (gnus-confirm-treat-mail-like-news): Add :version.
23065
23066         * gnus-int.el (gnus-server-unopen-status): Add :version.
23067
23068         * gnus-group.el (gnus-group-jump-to-group-prompt)
23069         (gnus-large-ephemeral-newsgroup)
23070         (gnus-fetch-old-ephemeral-headers): Add :version.
23071
23072         * gnus-fun.el (gnus-x-face-directory)
23073         (gnus-convert-pbm-to-x-face-command)
23074         (gnus-convert-image-to-x-face-command)
23075         (gnus-convert-image-to-face-command): Add :version.
23076
23077         * gnus-delay.el (gnus-delay-default-hour): Add :version.
23078
23079         * gnus-cite.el (gnus-cite-blank-line-after-header)
23080         (gnus-article-boring-faces): Add :version.
23081
23082         * gnus-art.el (gnus-buttonized-mime-types)
23083         (gnus-inhibit-mime-unbuttonizing)
23084         (gnus-treat-display-face)
23085         (gnus-treat-body-boundary): Change :version.
23086         (gnus-body-boundary-delimiter, gnus-picon-databases)
23087         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
23088         (gnus-treat-date-english, gnus-treat-fold-headers)
23089         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
23090         (gnus-treat-mail-picon, gnus-treat-wash-html)
23091         (gnus-article-encrypt-protocol)
23092         (gnus-use-idna, gnus-article-over-scroll)
23093         (gnus-mime-display-multipart-alternative-as-mixed)
23094         (gnus-mime-display-multipart-related-as-mixed)
23095         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
23096         (gnus-ctan-url, gnus-button-ctan-handler)
23097         (gnus-button-handle-ctan-bogus-regexp)
23098         (gnus-button-ctan-directory-regexp)
23099         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
23100         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
23101         (gnus-button-man-level, gnus-button-emacs-level)
23102         (gnus-button-message-level, gnus-button-browse-level): Add :version.
23103
23104         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
23105         (gnus-agent-go-online): Change :version.
23106         (gnus-agent-expire-unagentized-dirs)
23107         (gnus-agent-auto-agentize-methods): Add :version.
23108
23109         * flow-fill.el (fill-flowed-display-column)
23110         (fill-flowed-encode-column): Add :version.
23111
23112         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
23113         (gnus-outlook-deuglify-unwrap-max)
23114         (gnus-outlook-deuglify-cite-marks)
23115         (gnus-outlook-deuglify-unwrap-stop-chars)
23116         (gnus-outlook-deuglify-no-wrap-chars)
23117         (gnus-outlook-deuglify-attrib-cut-regexp)
23118         (gnus-outlook-deuglify-attrib-verb-regexp)
23119         (gnus-outlook-deuglify-attrib-end-regexp)
23120         (gnus-outlook-display-hook): Add :version.
23121
23122         * binhex.el (binhex-use-external): Add :version.
23123
23124 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
23125
23126         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
23127         and `invisible'.
23128
23129 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
23130
23131         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
23132         in gnus-registry-trim.
23133
23134 2004-09-13  Simon Josefsson  <jas@extundo.com>
23135
23136         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
23137
23138         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
23139
23140         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
23141         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
23142         <yamaoka@jpl.org>.
23143         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
23144         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
23145         <yamaoka@jpl.org>.
23146
23147         * sieve.el (sieve-manage-mode): Ditto.
23148
23149 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
23150
23151         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
23152
23153 2004-09-11  Simon Josefsson  <jas@extundo.com>
23154
23155         * dns-mode.el: Add.
23156
23157         * mm-view.el (mm-display-dns-inline): Add.
23158
23159         * mm-decode.el (mm-inline-media-tests): Add text/dns.
23160         (mm-automatic-display): Ditto.
23161
23162         * mailcap.el (mailcap-mime-data): Add text/dns.
23163         (mailcap-mime-extensions): Map .soa to text/dns.
23164
23165 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
23166
23167         * gnus-art.el (article-decode-mime-words, article-babel)
23168         (gnus-article-highlight-signature, gnus-article-add-buttons)
23169         (gnus-signature-toggle): Remove unnecessary bindings of
23170         `inhibit-read-only' inherited from v5.10 merge.
23171
23172 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
23173
23174         * nntp.el (nntp): New customization group.
23175         (nntp-authinfo-file): Add customization group.
23176
23177         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
23178
23179         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
23180
23181         * gnus.el (to-address, to-list, subscribed)
23182         (large-newsgroup-initial): Ditto.
23183
23184         * flow-fill.el (fill-flowed-display-column)
23185         (fill-flowed-encode-column): Ditto.
23186
23187 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
23188
23189         * message.el (message-tokenize-header, message-send-mail-with-qmail):
23190         Use point-min rather than 1.
23191         (message-send-mail): Use buffer-size rather than point-max.
23192
23193         * gnus-sum.el (gnus-summary-search-article-forward):
23194         Signal a specific `search-failed' rather than a generic `error'.
23195
23196         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
23197         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
23198         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
23199
23200 2004-09-10  Simon Josefsson  <jas@extundo.com>
23201
23202         * nndb.el (require): Remove tcp and duplicate cl.
23203
23204 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23205
23206         * gnus-agent.el (directory-files-and-attributes): Move forward.
23207
23208 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
23209
23210         * gnus-agent.el (directory-files-and-attributes):
23211         Optionally defined to support XEmacs.
23212
23213 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
23214
23215         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
23216         to avoid run-time CL dependencies.
23217         (gnus-agent-unfetch-articles): New function.
23218         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
23219         article numbers even when local .overview file is missing.
23220         (gnus-agent-read-article-number): New function.  Only accepts
23221         27-bit article numbers.
23222         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
23223         Use gnus-agent-read-article-number.
23224         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
23225         from backend while recognizing that article numbers in .overview
23226         must be valid.
23227         (gnus-agent-update-files-total-fetched-for):
23228         Use directory-files-and-attributes to improve performance.
23229         * gnus-int.el (gnus-request-move-article):
23230         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
23231         improve performance.
23232
23233         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
23234         some users confused by references to .newsrc when they only have a
23235         .newsrc.eld file.
23236         (gnus-convert-mark-converter-prompt)
23237         (gnus-convert-converter-needs-prompt): Fix use of property list.
23238         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
23239         New function.  Used internally to only display 'gnus converting
23240         files' message when actually necessary.
23241
23242         * gnus-sum.el (): Remove (require 'gnus-agent) as required
23243         methods now autoloaded.
23244
23245 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
23246
23247         * gnus-sum.el (gnus-summary-insert-subject): Remove list
23248         identifiers.
23249
23250 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
23251
23252         * gnus-picon.el: Fix indentation and closing parenthesis.
23253
23254 2004-09-01  Simon Josefsson  <jas@extundo.com>
23255
23256         * message.el (message-canlock-generate): Require sha1, not
23257         sha1-el.  (Can we get rid of this require altogether?  It is ugly
23258         to require within a function.  Sadly, if sha1.el isn't loaded, the
23259         let binding in m-c-g will hide the defcustom definition, which is
23260         bad.)
23261
23262         * canlock.el: Require sha1, not sha1-el.
23263
23264         * message.el: Don't autoload sha1 (there is a autoload cookie in
23265         sha1.el).
23266
23267         * sha1-el.el: Rename to sha1.el.
23268
23269 2004-08-30  Juanma Barranquero  <lektu@terra.es>
23270
23271         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
23272
23273 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
23274
23275         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
23276
23277 2004-08-30  Kim F. Storm  <storm@cua.dk>
23278
23279         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
23280
23281         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
23282         Add :group 'nnimap.
23283
23284 2004-08-30  Andreas Schwab  <schwab@suse.de>
23285
23286         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
23287         ?* and ?\;.
23288
23289         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
23290         and ?\' to symbol instead of whitespace.
23291
23292 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
23293
23294         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
23295
23296         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
23297         instead of re-search-forward.
23298
23299         * gnus-uu.el (gnus-uu-save-article): Ditto.
23300         (gnus-uu-post-encode-uuencode): Ditto.
23301
23302         * html2text.el (html2text-clean-list-items): Ditto.
23303         (html2text-clean-dtdd): Ditto.
23304         (html2text-format-tags): Ditto.
23305
23306         * message.el (message-send-mail-with-sendmail): Fix regexp.
23307         (message-fill-field-general): Use search-forward instead of
23308         re-search-forward.
23309         (unbold-region): Ditto.
23310
23311         * nnrss.el (nnrss-request-article): Ditto.
23312
23313         * nnslashdot.el (nnslashdot-request-article): Ditto.
23314
23315         * nnweb.el (nnweb-gmane-wash-article): Ditto.
23316
23317         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
23318         "Unrecognized menu descriptor" error in XEmacs.
23319
23320 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
23321
23322         * gnus-sum.el (gnus-read-header): Don't remove a header for the
23323         parent article of a sparse article in the thread hashtb.
23324
23325 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
23326
23327         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
23328         (nnmail-expand-newtext): Lowercase expanded entries if
23329         nnmail-split-lowercase-expanded is non-nil.
23330
23331 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23332
23333         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
23334
23335         * gnus-group.el (gnus-group-line-format-alist): Convert the value
23336         of gnus-tmp-news-method into string under XEmacs.  It will be
23337         passed to gnus-correct-length which takes only a string argument.
23338
23339 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
23340
23341         * gnus-util.el (gnus-bind-print-variables): New macro.
23342         (gnus-prin1): Use it.
23343         (gnus-prin1-to-string): Use it.
23344         (gnus-pp): New function.
23345         (gnus-pp-to-string): New function.
23346
23347         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
23348         Replace pp-to-string with gnus-pp-to-string.
23349         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
23350         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
23351         * gnus-msg.el (gnus-debug): Ditto.
23352         * gnus-score.el (gnus-score-save): Ditto.
23353         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
23354         gnus-pp-to-string.
23355         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
23356         with gnus-pp.
23357         * score-mode.el (gnus-score-pretty-print): Ditto.
23358         * webmail.el (webmail-debug): Ditto.
23359
23360 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23361
23362         * gnus-art.el (article-display-face, article-display-x-face):
23363         Use buffer-read-only.
23364
23365 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23366
23367         * gnus-art.el (article-hide-list-identifiers):
23368         Bind inhibit-read-only as t.
23369
23370 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
23371
23372         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
23373
23374 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
23375
23376         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
23377         (gnus-narrow-to-page): Don't assume point-min == 1.
23378         (gnus-article-edit-mode): Derive from message-mode.
23379
23380         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
23381         point-min == 1.
23382
23383         * imap.el (imap-parse-address-list, imap-parse-body-ext):
23384         Disable incorrect use of `assert'.
23385
23386         * message.el (message-mode): Set comment-start-skip.
23387
23388
23389 2004-08-22  Sam Steingold  <sds@gnu.org>
23390
23391         * pop3.el (pop3-leave-mail-on-server): New user variable.
23392         (pop3-movemail): Delete mail only when it is nil.
23393
23394 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
23395
23396         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
23397
23398         * mml.el (mml-preview): Use `pop-to-buffer'.
23399
23400         * message.el (message-goto-mail-followup-to): Insert after "To".
23401         (message-carefully-insert-headers): Add comment.
23402
23403         * gnus.el: Remove unused variable `gnus-article-check-size'.
23404
23405         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
23406
23407         * gnus-art.el (gnus-button-alist):
23408         Improve `gnus-button-handle-library' entry.
23409
23410 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
23411
23412         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
23413         Use downcase, since XEmacs capitalizes error messages differently.
23414
23415 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
23416
23417         * nntp.el: Add (require 'gnus) due to reference to
23418         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
23419
23420 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
23421
23422         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
23423         Bind `mm-fill-flowed'.
23424
23425         * mm-decode.el (mm-dissect-singlepart): Check it.
23426
23427 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
23428
23429         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
23430         'imap' for netrc parsing.
23431
23432 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
23433
23434         * mailcap.el (mailcap-mime-data): Mark as risky.
23435
23436 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23437
23438         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
23439         may be included in the encoded word.
23440         (rfc2047-encode): Don't append a space if the encoded word
23441         includes close parenthesis.
23442
23443 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23444
23445         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
23446         of text within parentheses.
23447
23448 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
23449
23450         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
23451         (gnus-encrypt-write-file-contents): Make the password key the file
23452         name PLUS the cipher, not just the cipher.  Also remove failed
23453         passwords from the cache.
23454
23455 2004-08-06  Simon Josefsson  <jas@extundo.com>
23456
23457         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
23458         Doc fix.
23459
23460 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
23461
23462         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
23463         LWSP.
23464
23465 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
23466
23467         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
23468         Try to append in-reply-to: data to the references: header.
23469
23470         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
23471         (netrc-parse): Use gnus-encrypt.el functions.
23472
23473         * gnus-encrypt.el: Add new file for encryption support; currently
23474         does only a few GPG ciphers and an internal XOR cipher.
23475
23476         * password.el: Add comments on using password-read-and-add.
23477         (password-read-and-add): Add function to read and add the
23478         password to the cache at once.
23479
23480 2004-07-28  Simon Josefsson  <jas@extundo.com>
23481
23482         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
23483         parameter (but don't use it, for now).
23484
23485         * imap.el (imap-ssl-open): Use imap-process-connection-type,
23486         instead of hard coding to nil.
23487
23488 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23489
23490         * mm-view.el (mm-inline-image-emacs): Open lines under an image
23491         as mm-inline-image-xemacs does.
23492
23493 2004-07-26  Simon Josefsson  <jas@extundo.com>
23494
23495         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
23496         Revert part of 2004-07-17 change below.
23497
23498 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
23499
23500         * rfc2047.el (rfc2047-encode-region): Don't infloop.
23501         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
23502
23503 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23504
23505         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
23506         quotes that actually start with ">" at the beginning of the
23507         lines.
23508
23509 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23510
23511         * rfc2047.el (rfc2047-encode-region): Fix last change.
23512         (rfc2047-encode-parameter): Remove useless concat.
23513
23514 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23515
23516         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
23517         encode special characters; fix some kind of misconfigured headers;
23518         signal a real error if debug-on-quit or debug-on-error is non-nil.
23519         (rfc2047-encode-max-chars): New variable.
23520         (rfc2047-encode-1): Use it.
23521         (rfc2047-encode-parameter): New function.
23522
23523         * mml.el (mml-insert-parameter): Remove an excessive space.
23524
23525 2004-07-17  Simon Josefsson  <jas@extundo.com>
23526
23527         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
23528         Kai Grossjohann <kai@emptydomain.de>.
23529         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
23530         (gnus-group-make-menu-bar): Ditto.
23531
23532         * gnus-util.el (gnus-group-server): Add.
23533
23534 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
23535
23536         * message.el (message-clone-locals): Clone sendmail and smtp
23537         variables.
23538
23539 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23540
23541         * rfc2047.el (rfc2047-encode-region): Fix last change.
23542
23543 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23544
23545         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
23546         characters as non-special.
23547
23548 2004-07-09  Simon Josefsson  <jas@extundo.com>
23549
23550         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
23551         Users will lose all flag changes made while unplugged with
23552         e.g. nntp unless flag synchronization happens, thus `nil' is not a
23553         good default.  See numerous reports on ding mailing list.
23554
23555 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
23556
23557         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
23558         add generate-head-function and generate-article-function to the
23559         rfc822-forward entry.
23560         (nndoc-rfc822-forward-generate-article): New function.
23561         (nndoc-rfc822-forward-generate-head): New function.
23562
23563         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
23564
23565 2004-07-06  Dan Christensen  <jdc@uwo.ca>
23566
23567         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
23568         respect display group parameter and gnus-summary-expunge-below.
23569         (gnus-articles-to-read): Remove unused reference to display group
23570         parameter.
23571
23572 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23573
23574         * nnheader.el (nnheader-uniquify-message-id): New experimental
23575         variable.
23576         (nnheader-nov-read-message-id): Use it.
23577
23578         * spam-report.el (spam-report-gmane): Add interactive.
23579
23580 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
23581
23582         * mm-encode.el (mm-content-transfer-encoding-defaults):
23583         Use qp-or-base64 for the application/* types.
23584
23585 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
23586
23587         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
23588
23589 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
23590
23591         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
23592         trim value.
23593
23594 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
23595
23596         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
23597         New macro and function.
23598         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
23599
23600 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23601
23602         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
23603         after-load-alist.
23604
23605 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23606
23607         * gnus-group.el (gnus-group-get-new-news-this-group):
23608         Don't update info that isn't there.
23609
23610 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
23611
23612         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
23613         entry.
23614
23615 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23616
23617         * mm-view.el (mm-inline-render-with-function): Use multibyte
23618         buffer; decode html source by charset.
23619
23620         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
23621
23622         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
23623         Mule-UCS is loaded under XEmacs.
23624         (mm-mime-mule-charset-alist): Avoid duplicated entries.
23625
23626 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
23627
23628         * nnheader.el (nnheader-max-head-length): Increase to 8192.
23629
23630 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23631
23632         * mm-util.el (mm-coding-system-p): Return a coding-system.
23633         (mm-mime-mule-charset-alist): Use shift_jis instead of
23634         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
23635         entries for the mime charsets iso-2022-jp-3 and shift_jis.
23636         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
23637         instead of japanese-shift-jis and iso-latin-1 respectively in
23638         order to share the default value with both Emacs and XEmacs-mule.
23639         (mm-mule-charset-to-mime-charset):
23640         Make mm-coding-system-priorities effective.
23641         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
23642         while predicating of candidates upon the priorities.
23643
23644 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
23645
23646         * gnus-sum.el (gnus-summary-make-menu-bar):
23647         Add gnus-uu-invert-processable.
23648
23649         * gnus.el: Autoload gnus-uu-invert-processable.
23650
23651 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
23652
23653         * mm-util.el (mm-with-multibyte-buffer): New macro.
23654
23655         * rfc2047.el (rfc2047-encode-string): Use it.
23656         (rfc2047-encode-region): Move point to the end of the region after
23657         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
23658
23659 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23660
23661         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
23662         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
23663
23664 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23665
23666         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
23667         (gnus-cite-parse): Ignore quoted envelope From_.
23668         Suggested by Karl Chen <quarl@nospam.quarl.org>.
23669
23670 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
23671
23672         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
23673         invalid addresses.
23674
23675 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
23676
23677         * spam.el: Change section markers, revise TODO list.
23678         (spam-backends): Make new master list of all installed backends.
23679         (spam-summary-exit-behavior): Add new variable to determine how
23680         messages moves are done at summary exit.
23681         (spam-move-spam-nonspam-groups-only)
23682         (spam-process-ham-in-nonham-groups)
23683         (spam-process-ham-in-spam-groups): Remove variables, the
23684         spam-summary-exit-behavior variable should be used to manage this
23685         behavior.
23686         (spam-old-ham-articles, spam-old-spam-articles): Remove.
23687         (spam-old-articles): Add variable, replacing spam-old-ham-articles
23688         and spam-old-spam-articles.
23689         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
23690         Add empty variables, placeholders for the backends they represent.
23691         (spam-set-difference): Move, unchanged.
23692         (spam-list-of-processors): Declare OBSOLETE, not used anymore
23693         unless the user has a processor variable.
23694         (spam-classifications, spam-classification-valid-p)
23695         (spam-backend-properties, spam-backend-property-valid-p)
23696         (spam-backend-function-type-valid-p)
23697         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
23698         (spam-report-articles-gmane, spam-report-articles-resend):
23699         Remove functions, they are not needed.
23700         (spam-install-backend-super, spam-backend-list)
23701         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
23702         (spam-backend-function, spam-backend-ham-registration-function)
23703         (spam-backend-spam-registration-function)
23704         (spam-backend-ham-unregistration-function)
23705         (spam-backend-spam-unregistration-function)
23706         (spam-backend-statistical-p, spam-backend-mover-p)
23707         (spam-install-backend-alias, spam-install-checkonly-backend)
23708         (spam-install-mover-backend, spam-install-nocheck-backend)
23709         (spam-install-backend, spam-install-statistical-backend)
23710         (spam-install-statistical-checkonly-backend): Add backend installation
23711         support.
23712         (spam-summary-prepare-exit): Rewrite to use the new backend code.
23713         (spam-group-processor-p): Use the new backend code and respect the
23714         summary exit behavior.
23715         (spam-mark-spam-as-expired-and-move-routine): Remove.
23716         (spam-summary-prepare): Change to use the new spam-old-articles
23717         variable.
23718         (spam-copy-or-move-routine, spam-copy-spam-routine)
23719         (spam-move-spam-routine, spam-copy-ham-routine)
23720         (spam-move-ham-routine): Add code to copy/move ham or spam.
23721         (spam-fetch-field-fast): Improve doc and code, plus allow the
23722         'number request.
23723         (spam-list-of-checks, spam-list-of-statistical-checks):
23724         Remove variables.
23725         (spam-split, spam-find-spam): Use the new backend code.
23726         (spam-registration-functions): Remove variable.
23727         (spam-unregister-routine): Add convenience wrapper.
23728         (spam-log-undo-registration, spam-register-routine)
23729         (spam-log-processing-to-registry)
23730         (spam-log-unregistration-needed-p): Rename "check" to "backend"
23731         where possible.
23732         (spam-check-gmane-xref, spam-check-regex-headers)
23733         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
23734         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
23735         (spam-check-bogofilter-headers, spam-check-spamoracle)
23736         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
23737         (spam-check-crm114-headers): Use the spam-split-group that
23738         spam-split prepares, no need to determine it every time.
23739
23740         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
23741         to the nnheader-parse-naked-head call.
23742
23743         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
23744
23745         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
23746         the nnheader-nov-read-message-id call.
23747
23748 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
23749
23750         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
23751         gnus-activate-group twice.  Suggested by Markus Peter
23752         <warp@spin.de>.
23753
23754 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
23755
23756         * gnus-art.el (gnus-article-time-format): Exchange the order of
23757         day and month in the default value; fix customization type.
23758         (article-date-ut): Use add-text-properties.
23759         (article-make-date-line): Use message-make-date instead of
23760         current-time-string.
23761
23762         * message.el (message-fetch-field): Don't use set-text-properties.
23763         (message-make-date): Simplify.
23764
23765         * messagexmas.el (message-xmas-make-date): New function.
23766         (message-xmas-redefine): Defalias message-make-date to it.
23767
23768 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23769
23770         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
23771         (rfc2047-encode-region): Treat text within parentheses as special;
23772         show the original text when error has occurred.
23773
23774         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
23775         already-computed method to gnus-activate-group.
23776
23777         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
23778         same select-methods identical Lisp objects.
23779
23780         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
23781         object when modifying the info.
23782
23783 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
23784
23785         * gnus-srvr.el (gnus-server-set-info): Remove the server from
23786         gnus-opened-servers since it has never been opened with the new
23787         configuration yet.
23788
23789 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23790
23791         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
23792         arg to nnheader-generate-fake-message-id.
23793
23794 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
23795
23796         * nnheader.el (nnheader-generate-fake-message-id): Accept a
23797         number and build a fake message ID localized to a group and
23798         article number (so it's repeatable from that point on).
23799         (nnheader-fake-message-id-p): Change regex to accomodate new fake
23800         ID format.
23801
23802         * gnus-sum.el (gnus-get-newsgroup-headers):
23803         Call nnheader-generate-fake-message-id with the article number.
23804
23805 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
23806
23807         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
23808         end-of-buffer.
23809
23810 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23811
23812         * message.el (message-ignored-supersedes-headers): Add Approved.
23813
23814 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
23815
23816         * rfc2047.el (rfc2047-encode-message-header): Remove useless
23817         goto-char.
23818         (rfc2047-encode): Fold the line before encoding.
23819
23820 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23821
23822         * rfc2047.el (rfc2047-encode-message-header): Disabled header
23823         folding -- not all headers can be folded, and this should be done
23824         by the message composition mode.  Probably.  I think.
23825
23826 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23827
23828         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
23829         fast.
23830
23831         * gnus-ems.el (gnus-remove-image): Don't use
23832         message-text-with-property; remove only the image found first.
23833
23834         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
23835         found first.
23836
23837 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
23838
23839         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
23840
23841 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
23842
23843         * message.el (message-text-with-property): Make it fast and accept
23844         optional arguments.
23845         (message-strip-forbidden-properties): Use it.
23846         (message-fix-before-sending): Follow the m-t-w-p change.
23847
23848         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
23849
23850 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
23851
23852         * gnus-art.el (article-hide-headers): Don't change the buffer
23853         mistakenly when performing mml-preview even if
23854         gnus-single-article-buffer is nil.
23855
23856 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
23857
23858         * message.el (message-expand-name-databases): New user option.
23859         (message-expand-name): Use it.
23860
23861 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
23862
23863         * spam.el (spam-report-articles-resend)
23864         (spam-report-resend-register-routine): Allow ham reporting.
23865         (spam-report-resend-register-ham-routine): Add wrapper.
23866         (spam-registration-functions): Add ham resending functions.
23867         (spam-list-of-processors): Add ham resend processor.
23868
23869         * gnus.el (ham-resend-to): Add new group parameter.
23870         (spam-process): Add ham resend option.
23871
23872         * spam-report.el (spam-report-resend): Allow reporting ham.
23873         (spam-report-resend-ham): Add wrapper.
23874
23875 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23876
23877         * message.el (message-cite-articles-with-x-no-archive):
23878         New variable.
23879         (message-cite-original): Use it.
23880
23881 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23882
23883         * message.el (message-cite-original): Respect X-No-Archive.
23884
23885 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
23886
23887         * gnus-art.el (article-hide-headers): Refer to the values for
23888         gnus-ignored-headers and gnus-visible-headers in the summary
23889         buffer since a user may have set them as group parameters.
23890
23891 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
23892
23893         * assistant.el (assistant-node-name): Add convenience function.
23894         (assistant-render-text, assistant-render-node): Add error handling,
23895         plus handle multiple next nodes.
23896         (assistant-find-next-node): Comment out for now.
23897         (assistant-find-next-nodes): Add function, returns list of next
23898         nodes.
23899
23900 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
23901
23902         * mail-source.el (mail-source-directory): Fix doc-string.
23903
23904 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
23905
23906         * assistant.el (assistant-render-text, assistant-eval): Add :set
23907         widget type, which is different because it takes and returns a
23908         list.  Much hilarity ensues.
23909
23910 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
23911
23912         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
23913
23914         * gnus-group.el (gnus-group-get-new-news-this-group):
23915         Add doc-string.
23916
23917         * gnus-start.el (gnus-activate-group): Add doc-string.
23918
23919 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23920
23921         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
23922
23923 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
23924
23925         * assistant.el (assistant-render-text): Try to add a :set
23926         widget, more to come.
23927
23928         * spam.el (spam-group-spam-contents-p): Handle empty groupname
23929         strings.
23930         (spam-report-articles-resend)
23931         (spam-register-routine): Do registration iff any articles warrant
23932         it.
23933         (spam-summary-prepare-exit): Change log message for nil group
23934         destinations.
23935
23936 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
23937
23938         * spam.el (spam-report-resend-register-routine):
23939         Allow spam-report-resend-to to be a group parameter or a global value.
23940
23941 2004-05-26  Simon Josefsson  <jas@extundo.com>
23942
23943         * starttls.el: Merge with my GNUTLS based starttls.el.
23944         (starttls-gnutls-program, starttls-use-gnutls)
23945         (starttls-extra-arguments, starttls-process-connection-type)
23946         (starttls-connect, starttls-failure, starttls-success):
23947         New variables.
23948         (starttls-program, starttls-extra-args): Doc fix.
23949         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
23950         New functions.
23951         (starttls-negotiate, starttls-open-stream):
23952         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
23953         function if it is set.
23954
23955 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
23956
23957         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
23958         structured fields.
23959
23960 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23961
23962         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
23963
23964 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
23965
23966         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
23967         Add variable.
23968         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
23969         assigning the spam-mark to new messages.
23970
23971 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
23972
23973         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
23974
23975 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23976
23977         * dgnushack.el: Autoload customize-set-variable for XEmacs.
23978
23979         * rfc2047.el (rfc2047-encodable-p): Don't move point.
23980         (rfc2047-decode): Treat the ascii coding-system as raw-text by
23981         default.
23982
23983 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
23984
23985         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
23986         correct data.
23987
23988 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
23989
23990         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
23991         (spam-group-processor-p): Fix function.
23992         (spam-group-processor-multiple-p)
23993         (spam-group-spam-processor-report-gmane-p)
23994         (spam-group-spam-processor-report-resend-p)
23995         (spam-group-spam-processor-bogofilter-p)
23996         (spam-group-spam-processor-blacklist-p)
23997         (spam-group-spam-processor-ifile-p)
23998         (spam-group-ham-processor-ifile-p)
23999         (spam-group-spam-processor-spamoracle-p)
24000         (spam-group-spam-processor-crm114-p)
24001         (spam-group-ham-processor-bogofilter-p)
24002         (spam-group-spam-processor-stat-p)
24003         (spam-group-ham-processor-stat-p)
24004         (spam-group-ham-processor-whitelist-p)
24005         (spam-group-ham-processor-BBDB-p)
24006         (spam-group-ham-processor-spamoracle-p)
24007         (spam-group-ham-processor-copy-p): Remove functions with some
24008         prejudice against unneeded code.
24009         (spam-report-articles-resend)
24010         (spam-report-resend-register-routine): Allow the group/topic
24011         spam-resend-to value to override spam-report-resend-to.
24012         (spam-summary-prepare-exit): Invoke spam-group-processor-p
24013         properly now.
24014
24015         * gnus.el (spam-resend-to): Add group/topic parameter.
24016         (spam-process): Move the OBSOLETE processors to the end of the
24017         choices.
24018
24019 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
24020
24021         * spam-report.el (spam-report-resend-to, spam-report-resend):
24022         Start with resend-to set to nil, and then ask the user if necessary.
24023         (spam-report-resend): spam-report-resend takes a list of articles, not
24024         separate article numbers.
24025
24026 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24027
24028         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
24029         addition to emacs-w3m.
24030
24031 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24032
24033         * assistant.el (assistant-authinfo-data): New function.
24034         (assistant-eval): Eval for entire assistant.
24035
24036         * netrc.el (netrc-services-file): New variable.
24037         (netrc-parse-services): New function.
24038         (netrc-find-service-name): New function.
24039         (netrc-find-service-number): New function.
24040         (netrc-port-equal): New function.
24041         (netrc-machine): Use it.
24042
24043         * nnimap.el (nnimap-open-connection): Use netrc.
24044
24045         * gnus-util.el (gnus-netrc-get): Remove aliases.
24046
24047         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
24048
24049         * assistant.el (wid-edit): Fix compilation.
24050
24051         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
24052
24053 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
24054
24055         * gnus-util.el (gnus-set-file-modes): New function.  (small
24056         patch).
24057
24058 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24059
24060         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
24061
24062         * assistant.el (assistant-render-node): Fix up rendering and
24063         read-only text.
24064         (assistant-render-node): Reset.
24065         (assistant-make-read-only): Not sticky.
24066
24067 2004-05-20  Danny Siu  <dsiu@adobe.com>
24068
24069         * gnus-sum.el (gnus-summary-recenter): Summary buffer was not auto
24070         centered even when gnus-auto-center-summary is t.
24071
24072 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24073
24074         * dns.el (dns-get-txt-answer): New function.
24075         (dns-read-txt): Ditto.
24076         (query-dns): Use it.
24077
24078 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
24079
24080         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
24081         active for foreign groups even if the group level is higher than
24082         the specified value.
24083
24084 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24085
24086         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
24087         non-active groups.
24088
24089         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
24090
24091 2004-05-20  Magnus Henoch  <mange@freemail.hu>
24092
24093         * dns.el (dns-read-type): Add support for SVR.  (small patch)
24094
24095 2004-05-20  Adam Sjøgren  <asjo@koldfront.dk>
24096
24097         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
24098         (spam-crm114-header, spam-crm114-spam-switch)
24099         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
24100         (spam-crm114-positive-spam-header)
24101         (spam-crm114-database-directory, spam-list-of-processors)
24102         (spam-group-spam-processor-crm114-p)
24103         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
24104         (spam-generic-score, spam-list-of-checks)
24105         (spam-list-of-statistical-checks, spam-registration-functions)
24106         (spam-check-crm114-headers, spam-crm114-score)
24107         (spam-check-crm114, spam-crm114-register-with-crm114)
24108         (spam-crm114-register-spam-routine)
24109         (spam-crm114-unregister-spam-routine)
24110         (spam-crm114-register-ham-routine)
24111         (spam-crm114-unregister-ham-routine): Add CRM114 support.
24112
24113 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
24114
24115         * gnus.el: Add spam-use-crm114.
24116
24117         * spam.el (spam-list-of-processors, spam-registration-functions):
24118         Add spam-use-resend.
24119         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
24120         (spam-report-articles-gmane): Add doc fix.
24121         (spam-report-articles-resend, spam-report-resend-register-routine):
24122         Add wrappers around spam-report-resend-to.
24123
24124         * spam-report.el (spam-report-resend-to, spam-report-resend):
24125         Add support for resending spam.
24126         (spam-report-gmane): Fix line length >80.
24127
24128         * gnus.el (spam-process): Add spam-use-resend.
24129
24130 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24131
24132         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
24133         number of processed spam messages.
24134         (spam-ham-copy-or-move-routine): Return the number of processed
24135         ham messages.
24136         (spam-summary-prepare-exit): Use the above values to decide
24137         whether status messages shouled be displayed.
24138
24139 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
24140
24141         * rfc2047.el (rfc2047-encode-function-alist): Rename from
24142         `rfc2047-encoding-function-alist' in order to avoid conflicting
24143         with the old version.
24144         (rfc2047-encode-region): Concatenate words containing non-ASCII
24145         characters in structured fields; don't encode space-delimited
24146         ASCII words even in unstructured fields; don't break words at
24147         char-category boundaries.
24148         (rfc2047-encode-1): New function.
24149         (rfc2047-encode): Use it; encode text so that it occupies the
24150         maximum width within 76-column; work correctly on Q encoding for
24151         iso-2022-* charsets.
24152         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
24153         sure not to break a line just after the header name.
24154         (rfc2047-b-encode-region): Remove.
24155         (rfc2047-b-encode-string): New function.
24156         (rfc2047-q-encode-region): Remove.
24157         (rfc2047-q-encode-string): New function.
24158
24159         * mm-util.el (mm-replace-in-string): New function.
24160
24161 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24162
24163         * gnus-msg.el (gnus-inews-make-draft-meta-information):
24164         Really get it right.
24165         (gnus-inews-make-draft): Really.
24166
24167 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
24168
24169         * nnmh.el (nnmh-request-list-1): Don't check the link count
24170         before descending.  (small patch)
24171
24172 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24173
24174         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
24175         stuff.
24176
24177         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
24178         Match on real group name.
24179
24180         * gnus-art.el (gnus-signature-limit): Doc fix.
24181
24182         * gnus-msg.el (gnus-inews-make-draft): Quote list.
24183
24184         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
24185
24186 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
24187
24188         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
24189         isn't a string.
24190
24191 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24192
24193         * gnus-draft.el (gnus-draft-send):
24194         Bind rfc2047-encode-encoded-words.
24195
24196         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
24197         (rfc2047-encodable-p): Say that =? needs encoding.
24198         (rfc2047-encode-encoded-words): New variable.
24199
24200         * gnus-group.el (gnus-group-select-group): Doc fix.
24201
24202         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
24203
24204         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
24205         to nil.
24206
24207         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
24208
24209         * nnheader.el (nnheader-get-lines-and-char): New function.
24210
24211 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
24212
24213         * gnus-msg.el (gnus-summary-followup-with-original):
24214         Document yanking of region when active.
24215
24216 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
24217
24218         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
24219         groups if the group level is higher than the specified value.
24220
24221 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24222
24223         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
24224         (gnus-group-jump-to-group): Add prefix argument using
24225         `gnus-group-jump-to-group-prompt'.  Query before jumping to
24226         non-active group.
24227
24228         * compface.el (uncompface): Be verbose when changing
24229         `uncompface-use-external'.
24230
24231         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
24232         handle manual section.
24233
24234 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24235
24236         * gnus-art.el (gnus-button-alist): Revert previous change.
24237
24238 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24239
24240         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
24241
24242 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24243
24244         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
24245         whether backend can accept message.
24246
24247         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
24248
24249 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
24250
24251         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
24252         Avoid creating directory when nntp-marks-is-evil is true.
24253         Reported by Reiner Steib.
24254
24255 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24256
24257         * gnus-picon.el (gnus-picon-insert-glyph):
24258         Add optional `nostring' argument.
24259
24260 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
24261
24262         * gnus-picon.el (gnus-picon-style): New variable.
24263         (gnus-picon-transform-address): Support `gnus-picon-style'.
24264
24265 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24266
24267         * message.el (message-fill-field): Return point.
24268         (message-generate-headers): Go to end of field.
24269
24270         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
24271         stuff for non-living groups.
24272
24273 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
24274
24275         * gnus-art.el (gnus-article-followup-with-original)
24276         (gnus-article-reply-with-original): gnus-mark-active-p ->
24277         gnus-region-active-p.
24278
24279 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
24280
24281         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
24282         only when there is spam or ham to be processed.
24283
24284 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24285
24286         * mail-source.el (mail-source-delete-crash-box): Refactor.
24287         (mail-source-fetch): Use it.
24288         (mail-source-fetch-file): Ditto.
24289         (mail-source-fetch-directory): Run postscript in loop.
24290         (mail-source-fetch-pop): Delete.
24291         (mail-source-fetch-maildir): Ditto.
24292         (mail-source-fetch-imap): Ditto.
24293
24294         * imap.el (imap-authenticators): Comment out sasl.
24295
24296         * message.el (message-skip-to-next-address): New function.
24297         (message-fill-header-address): Refactor.
24298         (message-fill-address): Use it.
24299         (message-delete-address): Use it.
24300         (message-fill-header-general): Refactor.
24301         (message-fill-field-address): Rename.
24302         (message-narrow-to-field): Find the start of the header.
24303         (message-header-format-alist): Don't pre-fill.
24304         (message-fill-header): Remove.
24305         (message-insert-header): New function.
24306         (message-shorten-references): Use it.
24307
24308         * rfc2047.el (rfc2047-field-value): Strip props.
24309
24310         * mail-parse.el (mail-header-make-address): New alias.
24311
24312         * ietf-drums.el (ietf-drums-make-address): New function.
24313
24314         * imap.el: Add compiler directives.
24315
24316         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
24317
24318         * gnus-art.el (article-decode-idna-rhs): Don't use
24319         message-idna-inside-rhs-p.
24320
24321 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24322
24323         * message.el (message-idna-inside-rhs-p): Remove.
24324         (message-idna-to-ascii-rhs-1): Use proper address parsing.
24325
24326         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
24327         false positives.
24328
24329 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
24330
24331         * imap.el (imap-sasl-make-mechanisms): Use sasl.
24332
24333 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24334
24335         * nneething.el (nneething-file-name): Don't create spurious
24336         files.
24337
24338         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
24339         (gnus-inews-do-gcc): Remove sleep.
24340
24341         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
24342         part under point.
24343
24344         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
24345         (gnus-agent-regenerate-group): Using nil messages aren't valid.
24346
24347 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
24348
24349         * spam.el (spam-summary-prepare-exit): Fix (length).
24350
24351 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
24352
24353         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
24354         as expired without moving it" message when there are spam
24355         messages left.
24356
24357 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
24358
24359         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
24360         header is not nil.
24361
24362 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
24363
24364         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
24365         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
24366         (nntp-marks-changed-p): New arg SERVER.
24367         (nntp-request-update-info): Adjust caller.
24368
24369 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
24370
24371         * nntp.el (nntp-save-marks): Pass missing arg.
24372
24373 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
24374
24375         * nntp.el: Support marks.
24376         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
24377         (nntp-marks-modtime, nntp-marks-directory): New variables.
24378         (nntp-request-set-mark, nntp-request-update-info)
24379         (nntp-possibly-create-directory, nntp-marks-changed-p)
24380         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
24381         New functions.
24382
24383 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
24384
24385         * gnus-xmas.el (gnus-xmas-select-lowest-window)
24386         (gnus-xmas-redefine): Rename.
24387
24388         * gnus-score.el (gnus-score-insert-help):
24389         Use gnus-select-lowest-window.
24390
24391         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
24392         appt-select-lowest-window and rename to gnus-select-lowest-window.
24393
24394         * gnus.el: do.
24395
24396 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24397
24398         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
24399         encodings of MIME-encoded words, in order to improve
24400         interoperability with several broken MUAs.
24401
24402 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24403
24404         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
24405         tags, only when charsets are not specified in headers.
24406         (mm-inline-text-html-render-with-w3m): Ditto.
24407
24408         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
24409         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
24410
24411 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24412
24413         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
24414         instead of MIME-decoded from fields when checking
24415         `gnus-article-address-banner-alist'.
24416
24417 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
24418
24419         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
24420         description rather than subject.
24421
24422 2004-05-02  Steve Youngs  <steve@youngs.au.com>
24423
24424         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
24425
24426 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24427
24428         * gnus.el (gnus-version-number): Bump.
24429
24430 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
24431
24432         * gnus.el: No Gnus v0.2 is released.
24433
24434 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24435
24436         * gnus-agent.el (gnus-agent-read-agentview):
24437         Inline gnus-uncompress-range.
24438
24439 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24440
24441         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
24442         `exec-installed-p'.
24443
24444 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24445
24446         * gnus.el (spam-process, spam-autodetect-methods):
24447         Add bsfilter and bsfilter-headers.
24448
24449         * spam.el (spam-bsfilter): New customize group.
24450         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
24451         (spam-bsfilter-header, spam-bsfilter-probability-header)
24452         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
24453         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
24454         (spam-bsfilter-database-directory): New options.
24455         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
24456         (spam-list-of-statistical-checks, spam-registration-functions):
24457         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
24458         (spam-bsfilter-score): New command.
24459         (spam-check-bsfilter-headers, spam-check-bsfilter)
24460         (spam-bsfilter-register-with-bsfilter)
24461         (spam-bsfilter-register-spam-routine)
24462         (spam-bsfilter-unregister-spam-routine)
24463         (spam-bsfilter-register-ham-routine)
24464         (spam-bsfilter-unregister-ham-routine): New functions.
24465         (spam-generic-score): Support bsfilter; Accept an optional argument
24466         to recalcurate spam score even if scoring header has already been
24467         added.
24468         (spam-bogofilter-score, spam-spamassassin-score): Accept an
24469         optional argument to recalcurate spam score even if scoring header
24470         has already been added.
24471
24472 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
24473
24474         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
24475         strings!  Reported by David D. Smith <davidsmith@acm.org>.
24476         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
24477         link is missing.
24478
24479 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
24480
24481         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
24482         (html2text-get-attr): Rewrite.
24483
24484         * message.el (message-setup-1): Remove redundant put-text-property
24485         on mail-header-separator.
24486
24487 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
24488
24489         * gnus-registry.el (gnus-registry-cache-whitespace)
24490         (gnus-registry-action, gnus-registry-spool-action)
24491         (gnus-registry-split-fancy-with-parent): Change message levels
24492         from 5 to 3 or 7, as needed.
24493
24494         * spam.el (spam-summary-prepare-exit)
24495         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
24496         (spam-split, spam-find-spam, spam-log-undo-registration)
24497         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
24498         level from 5 to 6.
24499
24500 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24501
24502         * gnus-ems.el: Autoload appt-select-lowest-window (revert
24503         2004-03-04 change).
24504
24505 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
24506
24507         * sieve-manage.el (sieve-manage-open):
24508         * nnweb.el (nnweb-insert-html):
24509         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
24510         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
24511         * nnspool.el (nnspool-request-group):
24512         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
24513         * nnml.el (nnml-request-update-info):
24514         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
24515         (nnmh-request-create-group, nnmh-update-gnus-unreads):
24516         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
24517         (nnimap-request-set-mark):
24518         * nnfolder.el (nnfolder-request-update-info):
24519         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
24520         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
24521         * gnus-uu.el (gnus-uu-find-articles-matching):
24522         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
24523         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
24524         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
24525         * gnus-nocem.el (gnus-nocem-scan-groups):
24526         * gnus-int.el (gnus-start-news-server):
24527         * gnus-group.el (gnus-group-make-kiboze-group)
24528         (gnus-group-browse-foreign-server):
24529         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
24530         Use mapc when appropriate.
24531
24532 2004-04-22  Dan Christensen  <jdc@uwo.ca>
24533             Adam Sjøgren  <asjo@koldfront.dk>
24534             Wes Hardaker  <wes@hardakers.net>
24535             Michael Shields  <shields@msrl.com>
24536
24537         * spam.el (spam-necessary-extra-headers): Get the extra headers we
24538         may need for spam sorting and scoring.
24539         (spam-user-format-function-S): Add user format function suitable for
24540         general use.
24541         (spam-article-sort-by-spam-status): Add sorting function for summary
24542         sorting.
24543         (spam-extra-header-to-number): Add function to get a score from a
24544         header.
24545         (spam-summary-score): Add function to get a numeric score from the
24546         headers.
24547         (spam-generic-score): Fix function doc, was in wrong place.
24548         (spam-initialize): Take symbols when it's run, and install the
24549         extra headers that spam-necessary-extra-headers thinks we need.
24550
24551 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
24552
24553         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
24554         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
24555
24556 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
24557
24558         * gnus-sum.el (gnus-set-global-variables)
24559         (gnus-build-all-threads, gnus-get-newsgroup-headers)
24560         (gnus-article-get-xrefs, gnus-summary-best-group)
24561         (gnus-summary-next-article, gnus-summary-enter-digest-group)
24562         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
24563         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
24564         Use with-current-buffer.
24565
24566 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
24567
24568         * spam.el (spam-summary-prepare-exit): Simplify logic.
24569         (spam-fetch-article-header): Read the article header if it's not
24570         available.
24571         (spam-list-articles): Simplify logic.
24572         (spam-filelist-register-routine): Fix bug with unregister-list.
24573
24574         * gnus-registry.el: Fix comments at beginning.
24575
24576 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
24577
24578         * message.el (message-cater-to-broken-inn): Remove.
24579         (message-shorten-references): Make sure the total folded length of
24580         References is shorter than 998 characters to cater to a bug in INN
24581         2.3.  Also, don't pretend that references aren't folded -- this
24582         hasn't worked for a while.
24583
24584 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24585
24586         * gnus-agent.el (gnus-agentize):
24587         gnus-agent-send-mail-real-function no longer set to current value
24588         of message-send-mail-function but rather a lambda that calls
24589         message-send-mail-function.  The change makes the agent real-time
24590         responsive to user changes to message-send-mail-function.
24591
24592 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24593
24594         * legacy-gnus-agent.el
24595         (gnus-agent-convert-to-compressed-agentview): Fix typos with
24596         help from Florian Weimer <fw@deneb.enyo.de>
24597
24598 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24599
24600         * nnmail.el (nnmail-cache-insert): Revert last change.
24601
24602 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
24603
24604         * nnmail.el (nnmail-cache-insert): Always check whether
24605         nnmail-cache-ignore-groups matches a group name.
24606
24607 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
24608
24609         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
24610         (spam-find-spam, spam-log-processing-to-registry)
24611         (spam-log-registered-p, spam-log-unregistration-needed-p)
24612         (spam-log-undo-registration): Use gnus-message instead of
24613         gnus-error, none of these errors are fatal.
24614
24615         * gnus-registry.el (gnus-registry-clean-empty-function)
24616         (gnus-registry-clean-empty): Remove only empty entries without
24617         extra data.
24618
24619 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
24620
24621         * spam-stat.el (spam-stat-buffer-change-to-spam)
24622         (spam-stat-buffer-change-to-non-spam): Change (error) to
24623         (gnus-message 8) invocation.
24624
24625 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24626
24627         * nntp.el (nntp-via-netcat-command): New variable.
24628         (nntp-via-netcat-switches): New variable.
24629         (nntp-open-via-rlogin-and-netcat): New function.
24630         (nntp-open-connection-function): Doc fix.
24631         (nntp-telnet-command): Doc fix.
24632         (nntp-end-of-line): Doc fix.
24633         (nntp-via-rlogin-command): Doc fix.
24634         (nntp-via-user-name): Doc fix.
24635         (nntp-via-address): Doc fix.
24636
24637 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
24638
24639         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
24640         error in Emacs 21.1.
24641
24642 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
24643
24644         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
24645
24646 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24647
24648         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
24649         (gnus-agent-with-refreshed-group): New macro.
24650         (gnus-agent-rename-group): New function.
24651         (gnus-agent-delete-group): New function.
24652         (gnus-agent-save-group-info): Use gnus-command-method when
24653         `method' parameter is nil.  Don't write nil entries into the
24654         active file.
24655         (gnus-agent-get-group-info): New function.
24656         (gnus-agent-fetch-articles):
24657         Use gnus-agent-update-files-total-fetched-for to increment disk space
24658         used.
24659         (gnus-agent-fetch-headers, gnus-agent-save-alist):
24660         Use gnus-agent-update-view-total-fetched-for to increment disk space
24661         used.
24662         (gnus-agent-get-local): Add optional parameters to avoid calling
24663         gnus-group-real-name and gnus-find-method-for-group.
24664         (gnus-agent-set-local): Delete stored entry if either min, or max,
24665         are nil.
24666         (gnus-agent-fetch-session): Reworded error/quit messages.
24667         On quit, use gnus-agent-regenerate-group to record existance of any
24668         articles fetched to disk before the quit occurred.
24669         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
24670         gnus-agent-update-view-total-fetched-for, and
24671         gnus-agent-update-files-total-fetched-for to decrement disk space
24672         used.
24673         (gnus-agent-retrieve-headers):
24674         Use gnus-agent-update-view-total-fetched-for to increment disk space
24675         used.
24676         (gnus-agent-regenerate-group): Replace gnus-group-update-group
24677         with gnus-agent-update-files-total-fetched-for to decrement disk
24678         space and fresh group buffer.
24679         (gnus-agent-inhibit-update-total-fetched-for): New variable.
24680         (gnus-agent-need-update-total-fetched-for): New variable.
24681         (gnus-agent-update-files-total-fetched-for): New function.
24682         (gnus-agent-update-view-total-fetched-for): New function.
24683         (gnus-agent-total-fetched-for): New function.
24684
24685         * gnus-cache.el (gnus-cache-save-buffers):
24686         Use gnus-cache-update-overview-total-fetched-for to change disk space
24687         used by this group.
24688         (gnus-cache-possibly-enter-article):
24689         Use gnus-cache-update-file-total-fetched-for to increment disk space
24690         used by this group.
24691         (gnus-cache-possibly-remove-article):
24692         Use gnus-cache-update-file-total-fetched-for to decrement disk space
24693         used by this group.
24694         (gnus-cache-generate-nov-databases): Purge total fetched cache.
24695         (gnus-cache-rename-group): New function.
24696         (gnus-cache-delete-group): New function.
24697         (gnus-cache-inhibit-update-total-fetched-for): New variable.
24698         (gnus-cache-need-update-total-fetched-for): New variable.
24699         (gnus-cache-with-refreshed-group): New macro.
24700         (gnus-cache-update-file-total-fetched-for): New function.
24701         (gnus-cache-update-overview-total-fetched-for): New function.
24702         (gnus-cache-rename-group-total-fetched-for): New function.
24703         (gnus-cache-delete-group-total-fetched-for): New function.
24704         (gnus-cache-total-fetched-for): New function.
24705
24706         * gnus-group.el: Require gnus-sum and autoload functions to
24707         resolve warnings when gnus-group.el compiled alone.
24708         (gnus-group-line-format): Documented new %F.
24709         (size of Fetched data) group line format; identifies disk space
24710         used by agent and cache.
24711         (gnus-group-line-format-alist): Defined new F format.
24712         (gnus-total-fetched-for): New function.
24713         (gnus-group-delete-group): No longer update
24714         gnus-cache-active-altered as gnus-request-delete-group now keeps
24715         the cache in sync.
24716         (gnus-group-list-active): Let the agent store a server's active
24717         list if currently plugged.
24718
24719         * gnus-int.el (gnus-request-delete-group):
24720         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
24721         local disk in sync with the server.
24722         (gnus-request-rename-group):
24723         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
24724         local disk in sync with the server.
24725
24726         * gnus-start.el (gnus-get-unread-articles):
24727         Cosmetic simplification to logic.
24728
24729         * gnus-util.el (gnus-rename-file): New function.
24730
24731 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
24732
24733         * mm-util.el (mm-image-load-path): Handle nil in load-path.
24734
24735 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
24736
24737         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
24738         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
24739
24740 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
24741
24742         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
24743         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
24744
24745 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
24746
24747         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
24748
24749 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
24750
24751         * spam.el (spam-set-difference): Add function to replace
24752         gnus-set-difference in spam.el.
24753         (spam-summary-prepare-exit): Use spam-set-difference.
24754
24755 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
24756
24757         * gnus-registry.el (gnus-registry-cache-file): Update to use
24758         gnus-dribble-directory OR gnus-home-directory OR ~.
24759         (gnus-registry-split-fancy-with-parent): Fix doc.
24760
24761 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
24762
24763         * message.el (message-exchange-point-and-mark):
24764         Use message-mark-active-p.  Suggested by Jesper Harder
24765         <harder@ifa.au.dk>.
24766
24767 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24768
24769         * message.el (message-exchange-point-and-mark): Don't activate
24770         region if it was inactive.  Suggested by Hiroshi Fujishima
24771         <pooh@nature.tsukuba.ac.jp>.
24772
24773 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
24774
24775         * gnus-art.el (article-display-face): Display Faces in the same
24776         order as X-Faces.
24777
24778 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
24779
24780         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
24781
24782 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24783
24784         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
24785         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
24786         (gnus-article-mime-hierarchy): Remove.
24787         (gnus-article-mime-hierarchy-next): Remove.
24788         (gnus-article-mode): Revert 2004-03-19 change.
24789         (gnus-article-setup-buffer): Revert 2004-03-19 change.
24790         (gnus-insert-mime-button): Revert 2004-03-19 change.
24791         (gnus-mime-accumulate-hierarchy): Remove.
24792         (gnus-mime-enter-multipart): Remove.
24793         (gnus-mime-leave-multipart): Remove.
24794         (gnus-mime-display-part): Revert 2004-03-19 change.
24795         (gnus-mime-display-alternative): Revert 2004-03-19 change.
24796
24797         * mml.el (mml-preview): Revert 2004-03-19 change.
24798
24799 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
24800
24801         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
24802
24803 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
24804
24805         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
24806         t while entering a file name using the mm-with-multibyte macro.
24807         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
24808
24809         * mm-util.el (mm-with-multibyte): New macro.
24810
24811 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
24812
24813         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
24814         New user option.
24815         (gnus-mime-multipart-functions): Doc and customization fix.
24816         (gnus-article-mime-hierarchy): New variable.
24817         (gnus-article-mime-hierarchy-next): New variable.
24818         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
24819         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
24820         gnus-article-mime-hierarchy-next to nil.
24821         (gnus-insert-mime-button): Show hierarchy numbers.
24822         (gnus-mime-accumulate-hierarchy): New function.
24823         (gnus-mime-enter-multipart): New function.
24824         (gnus-mime-leave-multipart): New function.
24825         (gnus-mime-display-part): Recompute hierarchical MIME structure.
24826         (gnus-mime-display-alternative): Show hierarchy numbers.
24827
24828         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
24829         gnus-article-mime-hierarchy-next to nil.
24830
24831 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
24832
24833         * dns.el: Don't require gnus-xmas.
24834
24835 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
24836
24837         * mml.el (mml-generate-mime-1): Don't use format=flowed with
24838         inline PGP.
24839         (mml-menu): Disable mml-quote-region if mark is inactive.
24840
24841 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
24842
24843         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
24844         when the group's active is not available.
24845
24846 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24847
24848         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
24849         error.
24850
24851 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
24852
24853         * imap.el (imap-store-password): New variable.
24854         (imap-interactive-login): Use it.
24855         Suggested by Mark Plaksin <happy@mcplaksin.org>.
24856
24857 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24858
24859         * gnus-art.el (gnus-article-read-summary-keys): Restore new
24860         window-start and hscroll to summary window.
24861
24862 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24863
24864         * gnus-start.el (gnus-convert-old-newsrc): Only write the
24865         conversion message to newsrc-dribble when an actual conversion is
24866         performed.
24867
24868 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
24869
24870         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
24871
24872 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
24873
24874         * mm-decode.el (mm-complicated-handles): New function reviving
24875         former definition of mm-multiple-handles.
24876
24877         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
24878         (gnus-mime-delete-part): Use it.
24879
24880 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24881
24882         * gnus-agent.el (gnus-agent-read-local):
24883         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
24884         avoid the implicit assumption that they will always be equal.
24885         (gnus-agent-save-local): Bind buffer-file-coding-system, not
24886         coding-system-for-write, as the with-temp-file macro first prints
24887         to a buffer then saves the buffer.
24888
24889 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
24890
24891         * gnus-art.el (gnus-article-edit-part): New function.
24892         (gnus-mime-save-part-and-strip): Use it; do query instead of
24893         signaling an error; don't use mm-multiple-handles.
24894         (gnus-mime-delete-part): Ditto.
24895
24896 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24897
24898         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
24899         old file versions.
24900         (gnus-group-prepare-hook): Remove function that converted list
24901         form of gnus-agent-expire-days to group properties.
24902
24903         * gnus-int.el: Autoload gnus-agent-regenerate-group.
24904         (gnus-request-accept-article): Re-indented.
24905
24906         * gnus-start.el (gnus-convert-old-newsrc): Registered new
24907         converters to handle old agent file formats.  Add logic for a
24908         "backup before upgrading warning".
24909         (gnus-convert-mark-converter-prompt): Developers can mark
24910         functions as needing (default), or not needing,
24911         gnus-convert-old-newsrc's "backup before upgrading warning".
24912         (gnus-convert-converter-needs-prompt): Tests whether the user
24913         should be protected from potentially irreversable changes by the
24914         function.
24915
24916         * legacy-gnus-agent.el: New.  Provides converters that are only
24917         loaded when gnus-convert-old-newsrc needs to call them.
24918
24919 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
24920
24921         * mail-source.el (mail-source-touch-pop): Doc fix.
24922
24923         * message.el (message-smtpmail-send-it): Doc fix.
24924
24925 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
24926
24927         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
24928
24929         * nnmail.el (nnmail-split-fancy): do.
24930
24931         * gnus-kill.el (gnus-kill, gnus-execute): do.
24932
24933 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
24934
24935         * gnus-sum.el (gnus-widget-reversible-match)
24936         (gnus-widget-reversible-to-internal)
24937         (gnus-widget-reversible-to-external): New functions.
24938         (gnus-widget-reversible): New widget.
24939         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
24940
24941 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
24942
24943         * gnus-sum.el (gnus-thread-sort-functions)
24944         (gnus-article-sort-functions): Document `(not F)' items.
24945
24946 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
24947
24948         * spam.el (spam-use-gmane-xref): Add new backend.
24949         (spam-gmane-xref-spam-group): Add variable to control the name of the
24950         Gmane spam group.
24951         (spam-blackhole-servers, spam-blackhole-good-server-regex)
24952         (spam-regex-headers-spam, spam-regex-headers-ham)
24953         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
24954         (spam-list-of-checks): Add spam-use-gmane-xref to list of
24955         backends and checks.
24956         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
24957
24958         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
24959         an autodetect method.
24960
24961 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24962
24963         * gnus-int.el (gnus-request-accept-article): Inform the agent that
24964         articles are being added to a group.
24965         (gnus-request-replace-article): Inform the agent that articles
24966         need to be uncached as the cached contents are no longer valid.
24967
24968 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
24969
24970         * binhex.el: Don't autoload executable-find.
24971
24972         * canlock.el: Don't autoload mail-fetch-field.
24973
24974         * dgnushack.el: Autoload c-mode for XEmacs.
24975
24976         * gnus-ems.el: Don't autoload appt-select-lowest-window.
24977
24978         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
24979         rmail-dont-reply-to and rmail-output.
24980
24981         * gnus-score.el: Don't autoload ffap-string-at-point.
24982
24983         * gnus-setup.el: Don't autoload sc-cite-original.
24984
24985         * imap.el: Don't autoload base64-decode-string,
24986         base64-encode-string and md5.
24987
24988         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
24989         and rmail-msg-restore-non-pruned-header.
24990
24991         * mm-decode.el: Don't autoload executable-find.
24992
24993         * mm-url.el: Don't autoload executable-find.
24994
24995         * mm-view.el: Don't autoload diff-mode.
24996
24997         * nndb.el: Don't autoload news-reply-mode, news-setup,
24998         cancel-timer and telnet.
24999
25000         * password.el: Don't autoload run-at-time for Emacs.
25001
25002         * sha1-el.el: Don't autoload executable-find.
25003
25004         * sieve-mode.el: Don't autoload c-mode.
25005
25006         * uudecode.el: Don't autoload executable-find.
25007
25008 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25009
25010         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
25011         (gnus-agent-possibly-alter-active): Avoid null in numeric
25012         comparison.
25013         (gnus-agent-set-local): Refuse to save null in local object table.
25014         (gnus-agent-regenerate-group): The REREAD parameter can now be a
25015         list of articles that will be marked as unread.
25016
25017 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
25018
25019         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
25020
25021 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
25022
25023         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
25024         language tags.
25025
25026 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
25027
25028         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
25029         Don't bind "obarray".
25030
25031         * gnus-sum.el (gnus-thread-sort-functions):
25032         Add `gnus-thread-sort-by-most-recent-number' and
25033         `gnus-thread-sort-by-most-recent-date'.
25034         Reported by Kai Grossjohann <kai@emptydomain.de>.
25035
25036 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
25037
25038         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
25039
25040 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25041
25042         * gnus-cus.el (gnus-agent-customize-category):
25043         Remove ignore-errors macro reference that required cl to be loaded at
25044         run-time.
25045
25046         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
25047         single-interval range of the form (min . max).  Previously the
25048         range had to look like ((min . max)).  Likewise, return
25049         (min . max) rather than ((min . max)).
25050         (gnus-range-map): Use gnus-range-normalize to accept
25051         single-interval range.
25052
25053         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
25054         the cache, but not the agent, now appear with their usual face.
25055
25056         * dgnushack.el (loaddir): New variable that is bound to the
25057         directory containing the dgnushack.el file. Use loaddir, rather
25058         than srcdir, to update load-path. Change lets dgnushack compile
25059         code in directories other than GNUS/lisp.
25060
25061 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
25062
25063         * lpath.el: Don't bind w3m-safe-url-regexp.
25064
25065         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
25066         w3m-safe-url-regexp variable buffer-local.
25067
25068         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
25069
25070 2004-02-27  Simon Josefsson  <jas@extundo.com>
25071
25072         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
25073         gnus-group-real-prefix.
25074         (gnus-summary-move-article): Use it, instead of
25075         gnus-group-real-prefix.
25076
25077 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
25078
25079         * lpath.el: Bind w3m-safe-url-regexp.
25080
25081         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
25082         w3m-safe-url-regexp variable buffer-local and set it as the value
25083         of mm-w3m-safe-url-regexp.
25084
25085         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
25086
25087         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
25088         parsing gnus-posting-styles when the message is not for replying.
25089
25090         * dgnushack.el: Autoload sgml-mode for XEmacs.
25091
25092         * nnrss.el (nnrss-opml-export):
25093         Use mm-set-buffer-file-coding-system instead of
25094         set-buffer-file-coding-system.
25095
25096 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
25097
25098         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
25099         of checkdoc.el).
25100         * nnrss.el: do.
25101         * gnus-mlspl.el: do.
25102         * gnus-ml.el: do.
25103         * gnus-srvr.el: do.
25104
25105         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
25106
25107 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
25108
25109         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
25110         Corrections to custom-manual links.
25111
25112         * gnus-art.el (gnus-article): Ditto.
25113
25114         * mm-decode.el (mime-display, mime-security): Ditto.
25115
25116 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
25117
25118         * flow-fill.el: Typo.
25119
25120 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
25121
25122         * spam-wash.el: New file.
25123
25124 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
25125
25126         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
25127
25128 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
25129
25130         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
25131         to be run with new-articles as LIST1, not LIST2.
25132         (spam-registration-functions): Add spam-use-ham-copy as a nil
25133         registration backend.
25134
25135 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
25136
25137         * spam-stat.el (spam-stat-washing-hook): New option.
25138         (spam-stat-buffer-words): Use it.
25139         (spam-stat-process-directory, spam-stat-test-directory):
25140         Use insert-file-contents-literally.
25141         (spam-stat-coding-system): New variable.
25142         (spam-stat-load, spam-stat-save): Use it.
25143
25144 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
25145
25146         * spam-report.el (spam-report-plug-agent):
25147         Quote spam-report-url-to-file and spam-report-url-ping-plain.
25148
25149 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
25150
25151         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
25152         Allow / in mailto URLs.
25153
25154 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
25155
25156         * spam-report.el (spam-report-process-queue): Fix interactive use.
25157         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
25158         (spam-report-unplug-agent): Doc fixes.
25159         (spam-report-url-ping-mm-url, spam-report-url-to-file)
25160         (spam-report-agentize, spam-report-deagentize): Autoload.
25161
25162 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
25163
25164         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
25165
25166         * message.el (message-setup-fill-variables): Add mml tags to
25167         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
25168         <ajk@iu.edu>.
25169         (message-mode): Don't modify paragraph-separate there.
25170
25171 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
25172
25173         * compface.el (uncompface-use-external): Default to undecided.
25174         (uncompface-use-external-threshold): New variable.
25175         (uncompface-float-time): New macro.
25176         (uncompface): Determine whether to use the external decoder if
25177         uncompface-use-external is undecided.
25178
25179 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25180
25181         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
25182         after images.
25183
25184         * gnus-art.el (gnus-mime-display-single): Remove dead code.
25185
25186 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
25187
25188         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
25189
25190         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
25191
25192         * gnus-sum.el (gnus-summary-limit-to-age)
25193         (gnus-summary-limit-children): do.
25194
25195         * gnus-int.el (gnus-request-scan): do.
25196
25197         * gnus-group.el (gnus-group-suspend): do.
25198
25199         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
25200
25201         * gnus-cite.el (gnus-cite-parse-attributions): do.
25202
25203         * gnus-agent.el (gnus-summary-set-agent-mark)
25204         (gnus-agent-regenerate-group): do.
25205
25206         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
25207
25208         * binhex.el (binhex-decode-region-internal): do.
25209
25210 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
25211
25212         * gnus-fun.el (gnus-face-properties-alist): New user option.
25213         (gnus-display-x-face-in-from): Use it.
25214
25215         * gnus-art.el (article-display-face): Ditto.
25216
25217         * compface.el (uncompface-use-external): Default to nil.
25218
25219 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
25220
25221         * nntp.el (nntp-erase-buffer): New function.
25222         (nntp-retrieve-data, nntp-send-command)
25223         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
25224         (nntp-possibly-change-group): Use it.
25225
25226         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
25227         Use with-current-buffer.
25228
25229 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
25230
25231         * compface.el: Merge the ELisp-based uncompface program.
25232         (compface): New customization group.
25233         (uncompface-use-external): New user option.
25234         (uncompface): Call uncompface-internal if uncompface-use-external
25235         is nil.
25236         (uncompface-internal): New function.  Note that there are also
25237         some other functions and variables added for this function.
25238
25239 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
25240
25241         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
25242         if necessary.
25243
25244 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
25245
25246         * spam-report.el (spam-report-unplug-agent)
25247         (spam-report-plug-agent, spam-report-deagentize)
25248         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
25249         Add support for the Agent in spam-report: when unplugged, report to a
25250         file; when plugged, submit all the requests.
25251
25252         * spam.el (spam-register-routine): Fix message about
25253         registration.
25254
25255 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
25256
25257         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
25258         dependencies.
25259         (rfc2047-encode): Use it.
25260
25261         * gnus-art.el (gnus-button-marker-list): Move before first
25262         reference.
25263
25264         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
25265         (imap-parse-body): Fix format string mismatch.
25266
25267         * gnus-score.el (gnus-summary-increase-score): do.
25268
25269         * nnrss.el (nnrss-close): New function.
25270
25271 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
25272
25273         * nnrss.el (nnrss-make-filename): New function.
25274         (nnrss-request-delete-group, nnrss-read-server-data)
25275         (nnrss-save-server-data, nnrss-read-group-data)
25276         (nnrss-save-group-data): Use it.
25277         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
25278         (nnrss-read-server-data, nnrss-read-group-data): Use load.
25279         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
25280
25281 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
25282
25283         * mml.el (mml-compute-boundary-1): Don't uncompress files.
25284
25285 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
25286
25287         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
25288         files.
25289
25290         * message.el (message-generate-headers-first): Don't quote nil
25291         and t in docstrings.
25292
25293         * imap.el (imap-id): do.
25294
25295         * gnus-agent.el (gnus-agent-consider-all-articles)
25296         (gnus-agent-queue-mail): do.
25297
25298 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
25299
25300         * spam-report.el (spam-report-process-queue): New function.
25301         Process requests from `spam-report-requests-file'.
25302         (spam-report-process-queue): Doc fix.
25303
25304 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
25305
25306         * spam.el (spam-register-routine)
25307         (spam-log-processing-to-registry, spam-log-registered-p)
25308         (spam-log-unregistration-needed-p, spam-log-undo-registration):
25309         Change "check" to "spam-check" for semi-clarity.
25310
25311 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
25312
25313         * pop3.el: Require nnheader.
25314
25315         * mml-smime.el: Require cl.  Autoload message-fetch-field.
25316
25317         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
25318
25319         * gnus-picon.el: Require cl.
25320
25321         * gnus-fun.el: Require gnus-ems and gnus-util.
25322
25323         * gnus.el (gnus-method-to-server): Move defsubst before first use.
25324
25325         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr.
25326
25327         * gnus-art.el (gnus-article-edit-mode): Define before first
25328         reference.
25329
25330 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
25331
25332         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
25333         (gnus-uu-post-encoded): Use point-at-bol.
25334
25335         * gnus-topic.el (gnus-group-active-topic-p): do.
25336
25337         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
25338
25339         * gnus-group.el (gnus-group-kill-region): do.
25340
25341         * gnus-art.el (article-date-ut): do.
25342
25343         * message.el (message-fetch-field): Remove redundant
25344         case-fold-search binding.
25345         (message-narrow-to-field): Simplify.
25346
25347 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
25348
25349         * spam.el (spam-directory): Derive from `gnus-directory'.
25350
25351         * spam-report.el (spam-report-url-to-file)
25352         (spam-report-requests-file): New function and variable for offline
25353         reporting.
25354         (spam-report-url-ping-function): Add `spam-report-url-to-file'
25355         and user defined function.
25356         (spam-report-url-ping-mm-url): Remove doubled slash.
25357
25358 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
25359
25360         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
25361
25362 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
25363
25364         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
25365         Fix format string mismatch.
25366
25367         * sieve.el (sieve-deactivate-all): do.
25368
25369         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
25370
25371         * nnlistserv.el (nnlistserv-kk-wash-article): do.
25372
25373         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
25374
25375         * mm-bodies.el (mm-7bit-chars): Don't include \r.
25376
25377 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
25378
25379         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
25380         the list of checks.
25381
25382 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
25383
25384         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
25385         padding.
25386
25387 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
25388
25389         * mm-view.el (mm-fill-flowed): New variable.
25390         (mm-inline-text): Use it.
25391
25392 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
25393
25394         * spam.el (spam-spamassassin-register-ham-routine)
25395         (spam-spamassassin-register-spam-routine): Fix function names.
25396
25397 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
25398
25399         * gnus.el (gnus-tmp-grouplens): Remove.
25400         (gnus-summary-line-format): Remove grouplens.
25401
25402         * gnus-group.el (gnus-group-line-format): Ditto.
25403
25404         * gnus-spec.el (gnus-format-specs): Ditto.
25405         (gnus-update-format-specifications): Flush the group format spec
25406         cache if there's the grouplens stuff.
25407         (gnus-parse-simple-format): Replace %l with the empty string.
25408
25409 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
25410
25411         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
25412         omission.
25413
25414 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
25415
25416         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
25417         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
25418
25419 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
25420
25421         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
25422         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
25423         New macros and functions.
25424         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
25425         Handle > NLINK_MAX messages.
25426         * nnmaildir.el (nnmaildir-request-set-mark):
25427         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
25428
25429 2004-01-25  Alex Schroeder  <alex@gnu.org>
25430
25431         * spam-stat.el (spam-stat-process-directory-age): New option.
25432         (spam-stat-process-directory): Use it.
25433
25434 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
25435
25436         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
25437         (spam-stat-save): Accept prefix argument.
25438
25439 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
25440
25441         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
25442         links" error.
25443
25444 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25445
25446         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
25447         the rest of the and/or forms.
25448
25449 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
25450
25451         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
25452         compatibility with old .newsrc.eld files.
25453
25454         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
25455
25456         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
25457
25458         * gnus-start.el (gnus-1): do.
25459
25460         * gnus-group.el (gnus-group-line-format-alist): do.
25461
25462         * gnus.el (gnus-use-grouplens, gnus-visual): do.
25463
25464         * gnus-gl.el: Remove.
25465
25466 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25467
25468         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
25469         marks consisting of a single range {for example, (3 . 5)} rather
25470         than a list of a single range { ((3 . 5)) }.
25471
25472 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
25473
25474         * spam-stat.el (spam-stat-store-gnus-article-buffer):
25475         Use with-current-buffer.
25476         (spam-stat-store-current-buffer): Use insert-buffer-substring to
25477         avoid consing a string.
25478
25479         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
25480         Remove obsolete entries for big5 and gb2312.
25481
25482 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25483
25484         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
25485         uncompressed list.
25486
25487 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
25488
25489         * spam-stat.el (spam-stat-strip-xref): New function.
25490         (spam-stat-process-directory): Use it.
25491
25492         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
25493         here -- it's done in message-fetch-field.
25494
25495 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25496
25497         * gnus-agent.el (gnus-agent-queue-mail)
25498         (gnus-agent-prompt-send-queue): New variables.
25499         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
25500         * gnus-draft.el (gnus-group-send-queue): Pass the group name
25501         "nndraft:queue" along to gnus-draft-send.
25502         Use gnus-agent-prompt-send-queue.
25503         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
25504         is "nndraft:queue".  Suggested by Gaute Strokkenes
25505         <gs234@srcf.ucam.org>
25506
25507         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
25508         (agent-enable-undownloaded-faces): Add.
25509         (gnus-agent-cat-groups): Use eval-and-compile, not
25510         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
25511         method of gnus-agent-cat-groups even when the buffer has been
25512         evaled.
25513         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
25514         delete gnus-agent-save-active-1.
25515         (gnus-agent-save-groups): Delete.  Identical to
25516         gnus-agent-save-active.
25517         (gnus-agent-write-active): No longer adjust agent's copy of active
25518         file as agent's adjustments are now stored in their own
25519         file.  Remove optional parameter.
25520         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
25521         servers.  Add use of min/max range limits from server's local
25522         file.
25523         (gnus-agent-save-alist): Remove unused optional argument.
25524         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
25525         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
25526         (gnus-agent-set-local): A per-server file that keeps min/max range
25527         limits for articles known to the agent.  Provides a fast mechanism
25528         for altering many active ranges.
25529         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
25530         active file (local makes it unnecessary).
25531         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
25532
25533         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
25534         (agent-enable-undownloaded-faces): Add.
25535
25536         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
25537         disable it when sending to "nndraft:queue".
25538         (gnus-group-send-queue): Add safety check to avoid sending queue
25539         when unplugged.
25540
25541         * gnus-group.el (gnus-group-catchup): Use new
25542         gnus-sequence-of-unread-articles, not
25543         gnus-list-of-unread-articles, to avoid exhausting memory with huge
25544         numbers of articles.  Use gnus-range-map to avoid having to
25545         uncompress the unread list.
25546         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
25547         Fix invalid ange-ftp reference.
25548
25549         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
25550         (gnus-sorted-range-intersection): Intersection of two ranges
25551         without requiring that they first be uncompressed.
25552
25553         * gnus-start.el (gnus-activate-group): Unless blocked by the
25554         caller, possibly expand the active range to include both cached
25555         and agentized articles.
25556         (gnus-convert-old-newsrc): Rewrote in anticipation of having
25557         multiple version-dependent converters.
25558         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
25559         gnus-agent-save-active.
25560         (gnus-save-newsrc-file): Save dirty agent range limits.
25561
25562         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
25563         gnus-agent-possibly-alter-active.
25564         (gnus-adjust-marked-articles): Faster handling of simple lists.
25565
25566 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
25567
25568         * spam-stat.el (spam-stat-test-directory): New optional argument
25569         displays a list of files detected.  Suggested by Andrew Cohen
25570         <cohen@andy.bu.edu>.
25571         (spam-stat-buffer-words-with-scores): Don't narrow and change
25572         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
25573
25574 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
25575
25576         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
25577         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
25578         (spam-spamassassin-arguments)
25579         (spam-spamassassin-spam-flag-header)
25580         (spam-spamassassin-positive-spam-flag-header)
25581         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
25582         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
25583         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
25584         (spam-list-of-processors, spam-list-of-checks)
25585         (spam-list-of-statistical-checks, spam-registration-functions)
25586         (spam-check-spamassassin-headers, spam-check-spamassassin)
25587         (spam-spamassassin-score)
25588         (spam-spamassassin-register-with-sa-learn)
25589         (spam-spamassassin-register-spam-routine)
25590         (spam-spamassassin-register-ham-routine)
25591         (spam-assassin-register-spam-routine)
25592         (spam-assassin-register-ham-routine): Add SpamAssassin support.
25593         (spam-bogofilter-score): Fix to show article before scoring.
25594
25595 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
25596
25597         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
25598         default scoring function.
25599         (spam-generic-score): Call spam-spamassassin-score if
25600         spam-use-spamassassin or spam-use-spamassassin-headers is on;
25601         spam-bogofilter-score otherwise.
25602
25603         * gnus.el (spam-process, spam-autodetect-methods):
25604         Add spamassassin and spamassassin-headers.
25605
25606 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
25607
25608         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
25609         Suppress unnecessary messages.
25610
25611 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
25612
25613         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
25614         make-hash-table.
25615
25616 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
25617
25618         * canlock.el (base64-encode-string): Don't autoload it.
25619
25620 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
25621
25622         * run-at-time.el: Remove useless (require 'itimer),
25623         eval-and-compile and (featurep 'xemacs).
25624
25625 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
25626
25627         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
25628         GROUP is a virtual group.
25629
25630 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
25631
25632         * gnus.el: Autoload `message-y-or-n-p'.
25633
25634 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
25635
25636         * pgg-parse.el: Remove unnecessary (require 'custom).
25637
25638         * pgg-def.el: do.
25639
25640         * nnmail.el: do.
25641
25642         * gnus-undo.el: do.
25643
25644         * gnus-picon.el: do.
25645
25646         * gnus-util.el: do.
25647
25648 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
25649
25650         * gnus-sum.el (gnus-pick-line-number): Add autoload.
25651
25652 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
25653
25654         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
25655         handle, as well as a list.
25656
25657         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
25658         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
25659         (mm-w3m-cid-retrieve): Simplify.
25660
25661 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
25662
25663         * message.el (message-kill-to-signature): Allow prefix arg to
25664         specify number of lines to keep before signature.
25665
25666 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
25667
25668         * message.el (message-kill-to-signature): Change docstring.
25669
25670 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
25671
25672         * canlock.el: Always require sha1-el.
25673         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
25674
25675         * message.el: Autoload sha1 only when compiling.
25676
25677         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
25678         eudc-expand-inline for XEmacs.
25679
25680 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
25681
25682         * message.el (message-canlock-generate): Require sha1-el.
25683
25684 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
25685
25686         * message.el (message-expand-name): Silence the byte compiler.
25687
25688         * lpath.el: Add detect-coding-system.
25689
25690         * dgnushack.el (dgnushack-compile): Remove obsolete check for
25691         cus-edit.
25692
25693 2004-01-13  Simon Josefsson  <jas@extundo.com>
25694
25695         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
25696         Invoke gnus-score-mode.
25697         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
25698
25699         * gnus-range.el (gnus-compress-sequence): Doc fix.
25700         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
25701
25702 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
25703
25704         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
25705
25706 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
25707
25708         * spam.el (spam-get-article-as-string): Update to use
25709         gnus-request-article-this-buffer, much simpler.
25710         (spam-get-article-as-buffer): Remove.
25711
25712 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
25713
25714         * message.el (message-expand-name): Use EUDC if the user uses that.
25715
25716 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
25717
25718         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
25719         character for the encoding to avoid consing a string.
25720
25721         * rfc2047.el (rfc2047-decode-string): Don't cons a string
25722         unnecessarily.
25723
25724         * mm-util.el (mm-replace-chars-in-string): Remove.
25725
25726         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
25727         of mm-replace-chars-in-string.
25728
25729 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
25730
25731         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
25732
25733         * mm-util.el (mm-subst-char-in-string): Support inplace.
25734
25735         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
25736         a new string in every iteration.  Use shy groups.
25737
25738 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
25739
25740         * gnus-srvr.el (gnus-browse-unsubscribe-group):
25741         * gnus-soup.el (gnus-soup-group-brew):
25742         * gnus-msg.el (gnus-put-message):
25743         * gnus-move.el (gnus-group-move-group-to-server):
25744         * gnus-kill.el (gnus-batch-score):
25745         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
25746         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
25747         (gnus-group-update-group, gnus-group-read-group)
25748         (gnus-group-make-group, gnus-group-make-help-group)
25749         (gnus-group-make-archive-group, gnus-group-make-directory-group)
25750         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
25751         (gnus-group-sort-by-unread, gnus-group-catchup)
25752         (gnus-group-unsubscribe-group, gnus-group-kill-group)
25753         (gnus-group-yank-group, gnus-group-set-info)
25754         (gnus-group-list-groups):
25755         * gnus.el (gnus-generate-new-group-name):
25756         * gnus-delay.el (gnus-delay-send-queue):
25757         * nnvirtual.el (nnvirtual-catchup-group):
25758         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
25759         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
25760         (gnus-group-prepare-topics, gnus-topic-check-topology):
25761         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
25762         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
25763         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
25764         (gnus-group-make-articles-read):
25765         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
25766         (gnus-group-change-level, gnus-kill-newsgroup)
25767         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
25768         (gnus-get-unread-articles, gnus-make-articles-unread)
25769         (gnus-make-ascending-articles-unread): Use accessor
25770         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
25771         to get group information for improved readability.
25772
25773
25774 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25775
25776         * gnus-art.el (article-decode-mime-words, article-babel)
25777         (gnus-article-highlight-signature, gnus-article-add-buttons)
25778         (gnus-signature-toggle): Use gnus-with-article-buffer.
25779
25780         * gnus-art.el (gnus-article-highlight-headers)
25781         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
25782
25783         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
25784         (gnus-article-set-globals, gnus-request-article-this-buffer)
25785         (gnus-button-message-id, gnus-article-maybe-hide-headers)
25786         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
25787         (gnus-mime-display-alternative): Use with-current-buffer.
25788
25789 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
25790
25791         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
25792         also under 80 char limit, and call gnus-error if needed.
25793         (spam-fetch-article-header): Fix - it was a
25794         buffer-local variable (gnus-newsgroup-data).
25795         (spam-find-spam): Use spam-generate-fake-headers, forget about
25796         spam-insert-fake-headers.
25797         (spam-insert-fake-headers): Remove.
25798
25799 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25800
25801         * deuglify.el (gnus-article-outlook-unwrap-lines)
25802         (gnus-outlook-rearrange-article)
25803         (gnus-outlook-repair-attribution-outlook)
25804         (gnus-outlook-repair-attribution-block)
25805         (gnus-outlook-repair-attribution-other): Remove redundant
25806         save-excursion.
25807
25808 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
25809
25810         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
25811         (spam-fetch-field-subject-fast)
25812         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
25813         (spam-fetch-article-header): Add functions to deal with Gnus
25814         internals for fast retrieval of article header data.
25815         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
25816
25817 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25818
25819         * pop3.el (pop3-md5): Remove.
25820         (pop3-apop): Replace pop3-md5 with md5.
25821
25822         * mm-bodies.el: base64 is always built-in.
25823
25824         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
25825         Use with-current-buffer.
25826
25827 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
25828
25829         * canlock.el (canlock-insert-header): Remove excessive grouping in
25830         regexp.
25831
25832         * gnus-sum.el (gnus-summary-read-document): Ditto.
25833
25834         * gnus-uu.el (gnus-uu-part-number): Ditto.
25835
25836         * html2text.el (html2text-remove-tags): Ditto.
25837         (html2text-format-tags): Ditto.
25838         (html2text-format-single-elements): Ditto.
25839
25840         * mml.el (mml-parse-1): Ditto.
25841
25842 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
25843
25844         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
25845
25846         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
25847
25848         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
25849
25850         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
25851
25852 2003-11-15  Simon Josefsson  <jas@extundo.com>
25853
25854         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
25855         (pgg-gpg-lookup-key): Use regexp match instead of
25856         split-string (split-string is different between emacs 21.2 and
25857         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
25858
25859 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
25860
25861         * gnus-art.el (gnus-mime-view-all-parts)
25862         (gnus-article-part-wrapper, gnus-article-view-part):
25863         Use with-current-buffer.
25864
25865 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
25866
25867         * spam.el (spam-disable-spam-split-during-ham-respool)
25868         (spam-spamoracle-database, spam-cache-lookups)
25869         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
25870         (spam-group-ham-mark-p, spam-group-spam-mark-p)
25871         (spam-group-ham-marks, spam-group-spam-marks)
25872         (spam-group-spam-contents-p, spam-group-ham-contents-p)
25873         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
25874         also add spam-use-blackholes to the statistical checks.
25875         (spam-fetch-field-fast): Add interface to fetching fields, may
25876         become a macro.
25877         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
25878         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
25879         (spam-insert-fake-headers): Fake an article when needed.
25880         (spam-find-spam): Fake article when possible.
25881         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
25882         (spam-check-bogofilter-headers): Use message-fetch-field instead
25883         of nnmail-fetch-field.
25884
25885 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
25886
25887         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
25888
25889 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
25890
25891         * spam.el (spam-split): Do not require spam-use-CHECK to be
25892         enabled if that check is passed to spam-split explicitly; also
25893         fix so 'spam doesn't get converted to spam-split-group when
25894         spam-split-symbolic-return is t.
25895         (spam-find-spam): Find registrations of the article and use those
25896         instead of re-running spam-split to find the spam/ham
25897         classification of the article.
25898         (spam-log-processing-to-registry, spam-log-registered-p)
25899         (spam-log-unregistration-needed-p, spam-log-undo-registration):
25900         Use gnus-error instead of gnus-message.
25901         (spam-log-registration-type): Add function to determine the
25902         classification of a message based on registry entries; will
25903         return nil if both 'spam and 'ham are found.
25904         (spam-check-BBDB): Expand all the BBDB macros here so we can have
25905         a reasonably fast local cache without the loading errors.
25906         (spam-cache-lookups): Set to t by default.
25907         (spam-find-spam): Don't try to guess spam-cache-lookups.
25908         (spam-enter-whitelist, spam-enter-blacklist): Clear the
25909         spam-caches entry.
25910         (spam-filelist-build-cache, spam-filelist-check-cache):
25911         Fix caching of whitelist/blacklist entries.
25912         (spam-check-whitelist, spam-check-blacklist):
25913         Invoke spam-from-listed-p with a type, not a cache variable.
25914         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
25915
25916 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
25917
25918         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
25919
25920         * nnmail.el (nnmail-split-fancy): do.
25921
25922         * mml.el (mml-parse): do.
25923
25924         * gnus-score.el (gnus-enter-score-words-into-hashtb)
25925         (gnus-score-adaptive): do.
25926
25927 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
25928
25929         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
25930         (gnus-mime-button-map): Don't set keymap parent.
25931         (gnus-button-ctan-directory-regexp): Use shy grouping.
25932         (gnus-prev-page-map): Don't set keymap parent.
25933         (gnus-prev-page-map): Remove duplicated one.
25934         (gnus-next-page-map): Don't set keymap parent.
25935         (gnus-mime-security-button-map): Ditto.
25936
25937         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
25938         version number.
25939
25940         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
25941
25942 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
25943
25944         * canlock.el (canlock-sha1-function): Remove.
25945         (canlock-sha1-function-for-verify): Remove.
25946         (canlock-openssl-program): Remove.
25947         (canlock-openssl-args): Remove.
25948         (canlock-ignore-errors): Remove.
25949         (canlock-sha1-with-openssl): Remove.
25950         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
25951         (canlock-verify): Don't use canlock-ignore-errors.
25952
25953         * sha1-el.el (sha1-string-external): Make it can return a string
25954         in binary form.
25955         (sha1-region-external): Ditto.
25956         (sha1-string-internal): Ditto.
25957         (sha1-region-internal): Ditto.
25958         (sha1-region): Ditto.
25959         (sha1-string): Ditto.
25960         (sha1): Ditto.
25961
25962 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25963
25964         * spam.el (spam-report-articles-gmane): New command.
25965
25966 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
25967
25968         * gnus.el: Don't make unnecessary *Group* buffer when loading.
25969
25970         * run-at-time.el (run-at-time-saved): Remove.
25971         (run-at-time): Doc fix.
25972
25973 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
25974
25975         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
25976         (gnus-summary-limit-map): Add it.
25977         (gnus-summary-make-menu-bar): do.
25978
25979 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
25980
25981         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
25982         Make attempt at some caching support (done for BBDB only now).
25983         (spam-find-spam): Set spam-cache-lookups if there are more than 2
25984         addresses to be checked.
25985         (spam-clear-cache-BBDB): Add function, to be invoked by
25986         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
25987         (spam-check-BBDB): Check and use the caches, if
25988         spam-cache-lookups is on, remove superfluous (provide).
25989
25990 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
25991
25992         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
25993
25994 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
25995
25996         * run-at-time.el (run-at-time-saved): Move to after the definition
25997         of `run-at-time'.
25998
25999         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
26000
26001 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
26002
26003         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
26004         mm-w3m-local-map-property.
26005
26006         * mm-view.el (mm-w3m-mode-map): Remove.
26007         (mm-w3m-local-map-property): Remove.
26008         (mm-inline-text-html-render-with-w3m): Don't use
26009         mm-w3m-local-map-property.
26010
26011 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26012
26013         * run-at-time.el: New file.
26014
26015         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
26016         under Emacs.
26017
26018         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
26019         of gnus-set-text-properties.
26020
26021         * gnus-uu.el (gnus-uu-save-article): Ditto.
26022
26023         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
26024
26025         * gnus-cite.el (gnus-cite-parse): Ditto.
26026
26027         * gnus-art.el (gnus-button-push): Use set-text-properties instead
26028         of gnus-.
26029
26030         * gnus-xmas.el (run-at-time): Require run-at-time.
26031
26032         * gnus.el: Change calls to nnheader-run-at-time and
26033         password-run-at-time throughout to use run-at-time directly.
26034
26035         * password.el: Remove definition of run-at-time.
26036
26037         * nnheaderxm.el: Remove definition of run-at-time.
26038
26039 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
26040
26041         * mml.el (mml-minibuffer-read-disposition): Show attachment type
26042         in prompt.
26043
26044 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
26045
26046         * messagexmas.el (message-xmas-redefine): Alias
26047         `message-make-caesar-translation-table' to
26048         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
26049         version.
26050
26051         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
26052         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
26053         `gnus-xmas-set-text-properties'.
26054         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
26055         `gnus-xmas-completing-read'.
26056         (gnus-xmas-completing-read): Removed.
26057         (gnus-xmas-open-network-stream): Removed.
26058
26059         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalize on
26060         XEmacs version.
26061
26062         * dns.el (dns-make-network-process): Use `open-network-stream'
26063         instead of `gnus-xmas-open-network-stream'.
26064
26065         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
26066
26067         * .cvsignore: Add auto-autoloads.el, custom-load.el.
26068
26069 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
26070
26071         * gnus-art.el (gnus-mime-display-alternative)
26072         (gnus-insert-mime-button, gnus-insert-mime-security-button)
26073         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
26074         Don't use gnus-local-map-property.
26075
26076         * gnus-util.el (gnus-local-map-property): Remove.
26077
26078         * mm-view.el (mm-view-pkcs7-decrypt):
26079         Replace gnus-completing-read-maybe-default with completing-read.
26080
26081         * gnus-util.el (gnus-completing-read): do.
26082         (gnus-completing-read-maybe-default): Remove.
26083
26084 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
26085
26086         * password.el: Only autoload `run-at-time' if not XEmacs.
26087         Only autoload the itimer functions if XEmacs.
26088
26089 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
26090
26091         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
26092         XEmacsen.
26093
26094         * dgnushack.el: Autoload executable-find for XEmacs.
26095
26096 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
26097
26098         * gnus-art.el (gnus-read-string): Remove.
26099         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
26100         read-string.
26101
26102 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
26103
26104         * netrc.el: Autoload password-read.
26105         (netrc): Add configuration group.
26106         (netrc-encoding-method, netrc-openssl-path):
26107         Add variables for encoding and decoding of files with symmetric
26108         ciphers.
26109         (netrc-encode): Add assistant function to encode a file with
26110         netrc-encoding-method.
26111         (netrc-parse): Add interactive parameter, added optional
26112         decoding if netrc-encoding-method is non-nil but otherwise
26113         behavior is standard.
26114         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
26115         Do s/encode/encrypt/ everywhere.
26116
26117         * spam.el: Remove executable-find autoload.
26118
26119 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
26120
26121         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
26122
26123         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
26124
26125 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
26126
26127         * gnus-art.el (gnus-treat-ansi-sequences)
26128         (article-treat-ansi-sequences): New variable and function.
26129         Suggested by Dan Jacobson <jidanni@jidanni.org>.
26130
26131         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
26132         Use it.
26133
26134 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
26135
26136         * mm-util.el (mm-quote-arg): Remove.
26137
26138         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
26139         shell-quote-argument.
26140
26141         * gnus-uu.el (gnus-uu-command): do.
26142
26143         * gnus-sum.el (gnus-summary-insert-pseudos): do.
26144
26145         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
26146         with make-char.
26147
26148         * mm-util.el (mm-make-char): Remove.
26149
26150         * mml.el (mml-mode): Replace gnus-add-minor-mode with
26151         add-minor-mode.
26152
26153         * gnus-undo.el (gnus-undo-mode): do.
26154
26155         * gnus-topic.el (gnus-topic-mode): do.
26156
26157         * gnus-sum.el (gnus-dead-summary-mode): do.
26158
26159         * gnus-start.el (gnus-slave-mode): do.
26160
26161         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
26162
26163         * gnus-ml.el (gnus-mailing-list-mode): do.
26164
26165         * gnus-gl.el (gnus-grouplens-mode): do.
26166
26167         * gnus-draft.el (gnus-draft-mode): do.
26168
26169         * gnus-dired.el (gnus-dired-mode): do.
26170
26171         * gnus-ems.el (gnus-add-minor-mode): Remove.
26172
26173         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
26174         Replace gnus-char-width with char-width.
26175
26176         * gnus-ems.el (gnus-char-width): Remove.
26177
26178         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
26179         Replace gnus-char-width with char-width.
26180
26181         * gnus-ems.el (gnus-char-width): Remove.
26182
26183         * spam-stat.el (with-syntax-table): Remove with-syntax-table
26184         definition.
26185         Remove Emacs 20 hash table compatibility code.
26186
26187         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
26188         20 compatibility code.
26189
26190         * spam.el (spam-point-at-eol): Replace with point-at-eol.
26191
26192         * smime.el (smime-point-at-eol): Replace with point-at-eol.
26193
26194         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
26195         Replace with point-at-{eol,bol}.
26196
26197         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
26198
26199         * imap.el (imap-point-at-eol): Replace with point-at-eol.
26200
26201         * flow-fill.el (fill-flowed-point-at-bol)
26202         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
26203
26204         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
26205         Replace with point-at-{eol,bol} throughout all files.
26206
26207 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
26208
26209         * ntlm.el (ntlm-string-as-unibyte): New macro.
26210         (ntlm-build-auth-response): Use it.
26211
26212         Remove Emacs 20 stuff:
26213         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
26214         (butlast, mapc, remove): Remove the compiler macros.
26215         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
26216         of delq and copy-sequence.
26217         * gnus-art.el (popup-menu): Remove the compiler macro.
26218         * nnmail.el (nnmail-split-fancy): Don't support customizing with
26219         Emacs 20.
26220
26221 2004-01-05  Simon Josefsson  <jas@extundo.com>
26222
26223         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
26224         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
26225         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
26226         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
26227         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
26228         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
26229         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
26230         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
26231         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
26232         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
26233         ntlm-string-permute, string-lshift into ntlm-string-lshift,
26234         string-xor into ntlm-string-xor.
26235         Suggested by Jesper Harder <harder@myrealbox.com>.
26236
26237         * ntlm.el: Don't include poem.
26238
26239         * md4.el (print-int32, print-string-hexa): Remove.
26240         Suggested by Jesper Harder <harder@myrealbox.com>.
26241
26242         * sasl-ntlm.el, ntlm.el, md4.el: New files.
26243
26244         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
26245         probably breaks emacs with DL patch, but do we care? Is anyone
26246         still using the DL stuff?)
26247
26248         * sieve-manage.el: Use the password package.
26249         (sieve-manage-read-passwd): Remove.
26250         (sieve-manage-interactive-login): Use password.  Re-add
26251         condition-case around loop.
26252
26253         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
26254         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
26255         Use the password package.
26256
26257 2003-02-19  Simon Josefsson  <jas@extundo.com>
26258
26259         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
26260         token.
26261
26262 2002-08-07  Simon Josefsson  <jas@extundo.com>
26263
26264         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
26265         (sieve-manage-authenticators):
26266         (sieve-manage-authenticator-alist): Add some SASL mechs.
26267         (sieve-sasl-auth): New function.
26268         (sieve-manage-cram-md5-auth):
26269         (sieve-manage-plain-auth): Rewrite using SASL library.
26270         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
26271         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
26272         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
26273         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
26274
26275 2004-01-05  Simon Josefsson  <jas@extundo.com>
26276
26277         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
26278         New files.
26279
26280 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26281
26282         * gnus-group.el (gnus-no-groups-message): Update.
26283
26284         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
26285
26286 2003-11-09  Simon Josefsson  <jas@extundo.com>
26287
26288         * imap.el: Support for ID IMAP extension (RFC 2971).
26289         (imap-local-variables): Add imap-id.
26290         (imap-id): New variable.
26291         (imap-id): New function.
26292         (imap-parse-response): Parse untagged ID response.
26293         * nnimap.el (nnimap-id): New variable.
26294         (nnimap-open-connection): Use it.
26295
26296 2003-12-28  Simon Josefsson  <jas@extundo.com>
26297
26298         * gnus-score.el (gnus-score-edit-all-score): New.
26299         * gnus-group.el (gnus-group-score-map): Bind it to W e.
26300
26301 2004-01-04  Simon Josefsson  <jas@extundo.com>
26302
26303         * password.el: Add.
26304
26305 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
26306
26307         * dns.el (dns-query-types): Fix typo.
26308         (dns-query-types): New function.
26309         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
26310         PTR and SOA replies, see RFC 1035.
26311
26312 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26313
26314         * gnus.el (gnus-logo-color-style): Change colors to `no'.
26315
26316         * Move to Changelog.2.
26317
26318 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26319
26320         * gnus.el (gnus-version-number): Bump version.
26321
26322 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
26323
26324         * gnus.el: No Gnus v0.1 is released.
26325
26326 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
26327
26328         * gnus.el: No Gnus v0.0 is released.
26329
26330 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26331
26332         * gnus.el (gnus-version-number): Bump.
26333         (gnus-version): No.
26334
26335 See ChangeLog.2 for earlier changes.
26336
26337   Copyright (C) 2004-2013 Free Software Foundation, Inc.
26338
26339   This file is part of GNU Emacs.
26340
26341   GNU Emacs is free software: you can redistribute it and/or modify
26342   it under the terms of the GNU General Public License as published by
26343   the Free Software Foundation, either version 3 of the License, or
26344   (at your option) any later version.
26345
26346   GNU Emacs is distributed in the hope that it will be useful,
26347   but WITHOUT ANY WARRANTY; without even the implied warranty of
26348   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26349   GNU General Public License for more details.
26350
26351   You should have received a copy of the GNU General Public License
26352   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
26353
26354 ;; Local Variables:
26355 ;; coding: utf-8
26356 ;; fill-column: 79
26357 ;; add-log-time-zone-rule: t
26358 ;; End: