sieve.el (sieve-edit-script): Avoid beginning-of-buffer
[gnus] / lisp / ChangeLog
1 2013-06-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * mm-decode.el (mm-convert-shr-links): New function to convert
4         new-style shr URL links into widgets.
5         (mm-shr): Use it.
6
7         * eww.el (eww-mode-map): Use `shr-next-link' (etc) instead of the
8         widget commands, since we're no longer using widgets for links.
9
10         * shr.el (shr-next-link): New command.
11         (shr-previous-link): New command.
12         (shr-urlify): Don't use `widget-convert', because that's slow.
13         (shr-put-color-1): Use `add-face-text-property' instead of overlays,
14         because collecting the overlays and reapplying them when generating
15         tables is slow.
16         (shr-insert-table): Ditto.
17
18 2013-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
19
20         * sieve.el (sieve-edit-script): Avoid beginning-of-buffer.
21         * shr.el (browse-url): Require `url'.
22         * eww.el (url): Require format-spec.
23
24 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25
26         * eww.el (eww-display-html): Default to using the entire window width.
27         (eww-browse-url): Don't add a User-Agent header (twice), because that
28         makes Bing refuse connection.
29
30         * shr.el (shr-make-table): Cache the table rendering at the table
31         level, and not the <td> level.  This is a bit faster.
32
33         * eww.el (eww-render): Go to the correct ID when given URLs ending with
34         #id.
35
36         * shr.el (shr-tag-li): Don't require a new paragraph, since other
37         browsers don't.
38         (shr-expand-url): Respect #anchor links.
39         (shr-parse-base): Chop off the anchor before using.
40         (shr-descend): Respect display: none.
41         (shr-descend): Allow marking elements that have certain IDs.
42
43         * eww.el (eww-tag-textarea): Use `text' instead of `editable-field'.
44
45         * shr.el (shr-expand-url): Don't bug out on zero-length links.
46
47         * eww.el (eww-tag-textarea): Support <textarea>.
48
49 2013-06-16  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
50
51         * shr.el (shr-dom-to-xml): Fixed function call.
52
53         * eww.el (eww): New group.
54         (eww-header-line-format): New custom variable.
55         (eww-current-title): New variable.
56         (eww-display-html): Update header and handle title tag.
57         (eww-update-header-line-format): New function.
58         (eww-tag-title): New function.
59
60         * shr.el (shr-dom-to-xml): (shr-dom-to-xml): New function.
61         (shr-tag-svg): Add support for the SVG tag.
62         (shr-bullet): New custom variable.
63         (shr-tag-li): Support custom bullet in unordered lists.
64
65 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
66
67         * shr.el (shr-expand-url): Respect // URLs.
68
69         * eww.el (eww-tag-body): Override the shr body rendering so that we can
70         put a background colour onto the entire buffer.
71         (eww-render): When being redirected, use the redirect URL as the new
72         base URL.
73
74         * shr.el (shr-parse-base): Fix parsing error.
75
76         * eww.el (eww-submit): Pass the base in to `shr-expand-url'.
77
78         * shr.el (shr-parse-base): New function.
79         (shr-expand-url): Use it to expand relative URLs reliably.
80
81 2013-06-15  Teodor Zlatanov  <tzz@lifelogs.com>
82
83         * auth-source.el (auth-source-search-collection): Fix docstring.
84         (auth-source-netrc-parse): Refactor and improve netrc parser to support
85         single-quoted strings and multiline entries.
86         (auth-source-netrc-parse-next-interesting)
87         (auth-source-netrc-parse-one, auth-source-netrc-parse-entries): New
88         functions to support parser.
89
90 2013-06-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
91
92         * eww.el (eww-submit): Get submit button logic right when hitting RET
93         on non-submit buttons.
94
95         * shr.el: Remove shr-preliminary-table-render, since that can't really
96         be used for anything in practice.
97
98 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
99
100         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
101         (sieve-manage-quit).
102
103 2013-06-14  Glenn Morris  <rgm@gnu.org>
104
105         * mml2015.el (mml2015-maximum-key-image-dimension): Add :version.
106
107 2013-06-14  David Edmondson  <dme@dme.org>  (tiny change)
108
109         * mml2015.el (mml2015-maximum-key-image-dimension): New user option to
110         control the maximum size of photo ID image.
111         (mml2015-epg-key-image-to-string): Respect it.
112
113 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
114
115         * shr.el (shr-tag-table-1): Mark the preliminary table renderings
116         instead of the final one so that we can more easily distinguish them.
117
118         * eww.el (eww-submit): Compute the submission URL correctly.
119
120 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
121
122         * sieve-manage.el (sieve-manage-open-server): Don't quote lambda.
123         Use plist-get rather than CL's getf.
124         (sieve-manage-parse-capability): Avoid CL's remove-if.
125
126 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
127
128         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
129         (sieve-manage-quit).
130
131 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
132
133         * shr.el (shr-expand-url): Expansion should chop off the bits after the
134         last slash.
135
136         * eww.el (eww-tag-select): Use the first value as the default value.
137
138 2013-06-13  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
139
140         * eww.el (eww): Prepend urls with http:// if scheme is missing.
141         (eww-mode): Use `define-derived-mode'.
142         (eww-parse-headers): Parse headers from beginning of buffer so that
143         file:// links work.
144
145 2013-06-13  Katsumi Yamaoka  <yamaoka@jpl.org>
146
147         * eww.el (eww-detect-charset): Detect charset from the <meta> tag.
148
149 2013-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
150
151         * shr.el (shr-tag-svg): Ignore SVG elements, because we don't know how
152         to handle them at all.
153
154 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
155
156         * eww.el (eww-convert-widgets): Make widgets from non-tabular layouts
157         work, too.
158         (eww-tag-select): Implement <select>.
159
160 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
161
162         * sieve-manage.el (sieve-manage-open): work with STARTTLS: shorten
163         stream managing functions by using open-protocol-stream to do most of
164         the work. Has the nice benefit of enabling STARTTLS.
165         Wait for capabilities after STARTTLS: following RFC5804, the server
166         sends new capabilities after successfully establishing a TLS connection
167         with the client. The client should update the cached list of
168         capabilities, but we just ignore the answer for now.
169         (sieve-manage-network-p, sieve-manage-network-open)
170         (sieve-manage-starttls-p, sieve-manage-starttls-open)
171         (sieve-manage-forward, sieve-manage-streams)
172         (sieve-manage-stream-alist): Remove unneeded functions neither in the
173         API, nor called by any other function.
174         Enable Multibyte for SieveManage buffers: The parser won't properly
175         handle umlauts and line endings unless multibyte is turned on in the
176         process buffer.
177
178 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
179
180         * eww.el (eww-tag-input): Support password fields.
181         (eww-submit): Support POST.
182
183 2013-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
184
185         * eww.el (eww-tag-form): Protect against degenerate forms.
186
187         * shr.el (shr-expand-url): Expand URLs that start with a slash
188         correctly.
189
190         * eww.el (eww-submit): Get submit button logic right.
191
192         * shr.el (shr-final-table-render): New variable to signal when we're
193         doing the final table rendering so that we can collect more data at
194         that point.
195
196         * eww.el (eww-submit): Make form submission work.
197         (eww-tag-input): Implement submit buttons.
198         (eww-click-radio): Implement radio and checkboxes.
199         (eww-submit): Handle hidden elements.
200
201         * shr.el (shr-descend): Allow other packages to override (or provide)
202         rendering of elements.
203         (shr-expand-url): Strip query strings from URLs before expanding them.
204
205         * eww.el: Don't require cl-lib.
206         (eww-tag-form): Start form support.
207
208         * dgnushack.el (dgnushack-compile): Ignore eww on XEmacs.
209
210         * eww.el: Start writing a new, tiny web browser.
211         (eww-previous-url): New command.
212         (eww-quit): New command.
213
214 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
215
216         * sieve.el: Put point at beginning of buffer when viewing a script.
217         (sieve-open-server): respect the PORT parameter. Show the correct port
218         number in sieve-buffer's header. Fixed code to also work with a string
219         as port specifier. Properly close the connection on pressing 'q'. Make
220         sieve-manage-quit close the connection and process buffer. Also, remove
221         duplicate keybinding for 'q'.
222
223 2013-06-10  Roy Hashimoto  <roy.hashimoto@gmail.com>  (tiny change)
224
225         * mm-view.el (mm-pkcs7-signed-magic): Allow newline in the regexp and
226         make it easier to read.
227         (mm-pkcs7-enveloped-magic): Ditto.
228
229 2013-06-06  Teodor Zlatanov  <tzz@lifelogs.com>
230
231         * gnus-ems.el (gnus-image-type-available-p): Test `display-images-p'
232         before `image-type-available-p' to avoid loading the image libraries
233         needlessly.
234
235 2013-06-05  David Engster  <deng@randomsample.de>
236
237         * gnus-sum.el (gnus-update-marks): Do not remove empty 'unexist'
238         ranges, since `nnimap-retrieve-group-data-early' also uses it as a flag
239         to see whether the group was synced before.
240
241 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
242
243         * tls.el (open-tls-stream): Remove unneeded buffer contents up to point
244         when opening the connection.
245         Suggested by João Távora <joaotavora@gmail.com> in
246         <http://lists.gnu.org/archive/html/emacs-devel/2013-05/msg00464.html>.
247
248 2013-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
249
250         * gnus-art.el (article-date-ut, article-update-date-lapsed): Don't
251         assume Date header begins with "Date", that may be customized into
252         something like "X-Sent" using gnus-article-time-format.
253         (article-transform-date): Allow multi-line Date header.
254
255 2013-06-02  David Engster  <deng@randomsample.de>
256
257         * registry.el (initialize-instance, registry-lookup)
258         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
259         (registry-lookup-secondary-value, registry-search, registry-delete)
260         (registry-insert, registry-reindex, registry-size, registry-prune): Do
261         not wrap methods in `eval-and-compile'.  This breaks due to latest
262         changes in EIEIO (introduction of eieio-core.el).
263
264 2013-05-30  Glenn Morris  <rgm@gnu.org>
265
266         * nnmail.el (nnmail-fancy-expiry-target):
267         Also bind mail-dont-reply-to-names.
268
269         * spam-stat.el (spam-stat-save):
270         No need to tweak font-lock in temp buffers.
271
272         * shr.el (shr-put-image): Silence compiler.
273
274 2013-05-29  Glenn Morris  <rgm@gnu.org>
275
276         * gnus-ems.el (set-process-plist): Every supported Emacs has this.
277
278         * gnus-group.el (gnus-sequence-of-unread-articles)
279         (gnus-summary-add-mark, gnus-mark-article-as-read)
280         (gnus-group-make-articles-read): Declare.
281
282         * gnus-sum.el (gnus-parameter-list-identifier)
283         (gnus-article-stop-animations, gnus-stop-downloads)
284         (gnus-article-only-boring-p, article-goto-body)
285         (gnus-flush-original-article-buffer, article-narrow-to-head)
286         (gnus-article-hidden-text-p, gnus-delete-wash-type)
287         (gnus-summary-save-in-pipe, gnus-article-show-summary): Declare.
288
289         * gnus.el: No need to eval-and-compile autoloads.
290
291         * gravatar.el (help-function-arglist): Autoload.
292
293         * nnimap.el (gnus-refer-thread-use-nnir): Declare.
294
295         * nnmail.el (nnmail-fancy-expiry-target): Maybe use mail-dont-reply-to.
296
297         * spam.el: No need to load spam-report when compiling.
298         No need to eval-and-compile autoloads.
299         (spam-report-resend-to): Declare.
300         (spam-report-resend-register-routine): Require 'spam-report.
301
302 2013-05-24  Julien Danjou  <julien@danjou.info>
303
304         * sieve.el (sieve-setup-buffer): Fix default port value in sieve buffer
305         setup.
306
307 2013-05-23  Glenn Morris  <rgm@gnu.org>
308
309         * gnus-util.el (rmail-swap-buffers-maybe)
310         (rmail-maybe-set-message-counters, rmail-count-new-messages)
311         (rmail-summary-exists, rmail-show-message, rmail-summary-displayed)
312         (rmail-pop-to-buffer, rmail-maybe-display-summary): Declare.
313
314         * mm-decode.el: No need to load term when compiling.
315         (term-mode, term-char-mode): Declare.
316
317         * mm-util.el: No need to load jka-compr when compiling.
318         (jka-compr-acceptable-retval-list, jka-compr-make-temp-name): Declare.
319
320         * nnmaildir.el: Require is automatically eval-and-compile.
321         (nnmail): Require at run-time too.
322
323         * registry.el (registry-size): Move definition before use.
324
325 2013-05-22  Daiki Ueno  <ueno@gnu.org>
326
327         * mml2015.el (mml2015-epg-sign): Make sure to insert newline after the
328         signed data to conform the standard.  (Bug#14232)
329
330 2013-05-20  Adam Sjøgren  <asjo@koldfront.dk>
331
332         * gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left
333         double angle quotation mark.
334
335 2013-05-20  Glenn Morris  <rgm@gnu.org>
336
337         * format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)
338
339 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
340
341         * message.el (message-insert-formatted-citation-line): handle finding
342         first/lastname when more than 2 names appear.
343
344 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
345
346         * shr.el (shr-tag-span): New function.
347
348 2013-05-18  Glenn Morris  <rgm@gnu.org>
349
350         * message.el (message-mode): Use message-mode-abbrev-table,
351         with text-mode-abbrev-table as parent.  (Bug#14413)
352
353 2013-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
354
355         * message.el (message-expand-group): Decode group names.
356
357 2013-05-16  Julien Danjou  <julien@danjou.info>
358
359         * gnus-notifications.el (gnus-notifications-notify): Use photo-file as
360         app-icon.
361
362 2013-05-15  Glenn Morris  <rgm@gnu.org>
363
364         * shr-color.el (shr-color-visible-luminance-min)
365         (shr-color-visible-distance-min): Use shr-color group.
366
367 2013-05-11  Glenn Morris  <rgm@gnu.org>
368
369         * gnus-vm.el: Make it loadable without VM.
370         (gnus-vm-make-folder, gnus-summary-save-in-vm): Require 'vm.
371         (vm-forward-message, vm-reply, vm-mail): Remove unused autoloads.
372
373 2013-05-09  Glenn Morris  <rgm@gnu.org>
374
375         * mml1991.el: Make it loadable.  (Bug#13456)
376
377         * gnus-art.el (gnus-article-date-headers, gnus-blocked-images):
378         * gnus-async.el (gnus-async-post-fetch-function):
379         * gnus-gravatar.el (gnus-gravatar-size, gnus-gravatar-properties):
380         * gnus-html.el (gnus-html-image-cache-ttl):
381         * gnus-notifications.el (gnus-notifications-timeout):
382         * gnus-picon.el (gnus-picon-properties):
383         * gnus-util.el (gnus-completion-styles):
384         * gnus.el (gnus-other-frame-resume-function):
385         * message.el (message-user-organization-file)
386         (message-cite-reply-position):
387         * nnir.el (nnir-summary-line-format)
388         (nnir-retrieve-headers-override-function):
389         * shr-color.el (shr-color-visible-luminance-min):
390         * shr.el (shr-blocked-images):
391         * spam-report.el (spam-report-resend-to):
392         * spam.el (spam-summary-exit-behavior): Fix custom types.
393
394         * gnus-salt.el (gnus-selected-tree-face): Fix default.
395
396 2013-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
397
398         * gnus-art.el (gnus-article-describe-bindings): Require help-mode
399         because of let-binding help-xref-following.  (Bug#14356)
400
401 2013-05-06  Glenn Morris  <rgm@gnu.org>
402
403         * mml2015.el (mml2015-epg-sign): Add name="signature.asc".  (Bug#13465)
404
405 2013-05-04  Andrew Cohen  <cohen@bu.edu>
406
407         * gnus-sum.el (gnus-read-header): Ensure groups are prefixed when
408         entering into the registry.
409
410 2013-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
411
412         * gnus.el: Ma Gnus v0.7 is released.
413
414 2013-05-01  Katsumi Yamaoka  <yamaoka@jpl.org>
415
416         * gnus-util.el (gnus-emacs-completing-read): Fix a filter for XEmacs.
417         (Bug#14304)
418
419 2013-04-27  Glenn Morris  <rgm@gnu.org>
420
421         * gnus.el (gnus-list-debbugs):
422         Use require rather than autoload.  (Bug#14262)
423
424 2013-04-27  Julien Danjou  <julien@danjou.info>
425
426         * sieve-manage.el (sieve-manage-authenticator-alist): Update the sieve
427         port to "sieve" now that it has an official IANA port assigned.
428
429 2013-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
430
431         * mail-source.el (mail-source-fetch-pop, mail-source-check-pop):
432         Don't set the MAILHOST environment variable permanently (Bug#14271).
433
434 2013-04-26  Glenn Morris  <rgm@gnu.org>
435
436         * message.el (message-bury): Revert 2013-03-18 change.  (Bug#14117)
437
438 2013-04-25  Andrew Cohen  <cohen@bu.edu>
439
440         * gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for
441         string values of 'gcc-self. Thanks to Saroj Thirumalai.
442
443 2013-04-24  Andrew Cohen  <cohen@bu.edu>
444
445         * nnir.el (nnir-close-group): Make sure we are in the right group.
446
447         * gnus-sum.el (gnus-summary-insert-articles): Force updates to the
448         dependency table from all newly retrieved headers.
449
450 2013-04-16  David Edmondson  <dme@dme.org>
451
452         Support <img src="data:...">.
453
454         * shr.el (shr-image-from-data): New function.
455         (shr-tag-img): Use it.
456
457 2013-04-14  Andrew Cohen  <cohen@bu.edu>
458
459         * nnir.el (nnir-request-set-mark): Make sure we are in the right
460         group.
461
462 2013-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
463
464         * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles
465         corresponding to any existing group (Bug#14166).
466
467 2013-04-10  Andrew Cohen  <cohen@bu.edu>
468
469         * nnir.el (number-sequence): No longer used.
470         (nnir-request-set-mark): New function.
471         (nnir-request-update-info): Improve marks updating.
472         (nnir-request-scan): Don't duplicate marks updating.
473         (gnus-group-make-nnir-group, nnir-run-imap, nnir-request-create-group):
474         Use 'assq rather than 'assoc. Quote anonymous function.
475         (nnir-request-group, nnir-close-group, gnus-summary-create-nnir-group):
476         Use 'gnus-group-prefixed-p.
477         (gnus-summary-create-nnir-group): Make sure server for method is open.
478
479 2013-04-04  Andrew Cohen  <cohen@bu.edu>
480
481         * nnir.el (gnus-nnir-group-p): New function.
482         (nnir-possibly-change-group): Use it.
483
484         * gnus-msg.el (gnus-setup-message): Use it.
485
486 2013-04-04  Katsumi Yamaoka  <yamaoka@jpl.org>
487
488         * mml.el (mml-minibuffer-read-description): Use `default' insted of
489         `initial-input' for the argument name.
490         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
491
492 2013-04-03  Kevin Layer  <layer@known.net>  (tiny change)
493
494         * mml.el (mml-minibuffer-read-description): Allow passing in a prefix
495         (used by MH-E).
496
497 2013-04-01  Andrew Cohen  <cohen@bu.edu>
498
499         * nnir.el (nnir-request-update-mark): Improve mark updating in original
500         group.
501
502         * gnus-msg.el (nnir-article-number, nnir-article-group): Autoload to
503         fix compilation.
504
505 2013-03-31  Andrew Cohen  <cohen@bu.edu>
506
507         * nnir.el (nnir-method-default-engines): And another typo.
508
509 2013-03-30  Andrew Cohen  <cohen@bu.edu>
510
511         * nnir.el (nnir-method-default-engines): Fix typo.
512
513 2013-03-29  Andrew Cohen  <cohen@bu.edu>
514
515         * nnir.el: Define 'number-sequence for xemacs.
516         (gnus-summary-create-nnir-group): New function to create an nnir group
517         from an nnir summary buffer based on the current query.
518         (nnir-request-create-group): Update to allow nnir group creation based
519         on the current query.
520
521 2013-03-28  Katsumi Yamaoka  <yamaoka@jpl.org>
522
523         * nndraft.el (nndraft-request-expire-articles):
524         Make expiry target always `delete'.
525
526 2013-03-27  Andrew Cohen  <cohen@bu.edu>
527
528         * gnus-msg.el (gnus-setup-message): When replying from an nnir summary
529         buffer use the posting-style and gcc of the original article group.
530         (gnus-inews-insert-gcc): Don't set gcc-self for virtual groups.
531
532         * nnir.el: Fix byte-compile warning. nnoo-define-skeleton should come
533         after other deffoos.
534
535 2013-03-25  Andrew Cohen  <cohen@bu.edu>
536
537         * nnir.el: Major rewrite. Cleaner separation between searches and group
538         management. Marks are now shown in nnir summary buffers. Rudimentary
539         support for real (i.e. not ephemeral) nnir groups.
540         (gnus-summary-make-nnir-group): New function for initiating searches
541         from a summary buffer.
542
543 2013-03-18  Sam Steingold  <sds@gnu.org>
544
545         * message.el (message-bury): Minor cleanup.
546
547 2013-03-07  Paul Eggert  <eggert@cs.ucla.edu>
548
549         * gnus-cite.el: Specify utf-8, not iso-8859-1, for ASCII file.
550
551 2013-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
552
553         * nndir.el (nndir-request-list): Remove 2nd argument passed to
554         nnml-request-list.  (Bug#13873)
555         (nndir-request-newsgroups): Remove, unused.
556
557         * nndraft.el (nndraft-request-newsgroups): Remove, unused.
558
559 2013-03-05  Paul Eggert  <eggert@cs.ucla.edu>
560
561         * deuglify.el, gnus-delay.el, gnus-spec.el, gnus-sum.el, html2text.el,
562         message.el, mm-decode.el, mml1991.el, nnir.el, shr.el, utf7.el:
563         Prefer UTF-8 when the encoding shouldn't matter and changes are small.
564
565 2013-03-03  Ted Phelps  <phelps@gnusto.com>
566
567         * shr.el: Make all the overlays set the `evaporate' property so that
568         they're removed properly.
569
570 2013-02-25  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
571
572         * mml2015-el (mml2015-epg-key-image): wrap epg-gpg-program in
573         shell-quote-argument.
574
575 2013-02-22  David Engster  <deng@randomsample.de>
576
577         * gnus-registry.el (gnus-registry-save): Provide class name when
578         calling `eieio-persistent-read' to avoid "unsafe call" warning.  Use
579         `condition-case' to stay compatible with older EIEIO versions which
580         only accept one argument.
581
582 2013-02-17  Daiki Ueno  <ueno@gnu.org>
583
584         * mml2015.el (epg-key-user-id-list, epg-user-id-string)
585         (epg-user-id-validity): Autoload.
586         (mml2015-epg-check-user-id): New function.
587         (mml2015-epg-check-sub-key): New function split from
588         mml2015-epg-find-usable-key.
589         (mml2015-epg-find-usable-key): Accept context, name, usage, and
590         optional name-is-key-id, to handle the case when user-id is unusable.
591         Reported by Łukasz Stelmach <stlman@poczta.fm>.
592
593 2013-02-17  Glenn Morris  <rgm@gnu.org>
594
595         * shr.el (shr-put-image): Use image-multi-frame-p if available.
596
597 2013-02-16  Glenn Morris  <rgm@gnu.org>
598
599         * shr.el (shr-put-image): Only animate images that specify a delay.
600         This is consistent with the old image-animated-p behavior.
601
602 2013-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
603
604         * gnus-util.el (gnus-define-keys): Convert [?\S-\ ] to [(shift space)]
605         for XEmacs.
606
607 2013-02-13  Juri Linkov  <juri@jurta.org>
608
609         * gnus-art.el (gnus-article-mode-map):
610         * gnus-sum.el (gnus-summary-mode-map, gnus-summary-article-map):
611         Make S-SPC scroll in the opposite sense to SPC.  (Bug#2145)
612
613 2013-02-07  Gábor Vida  <gabor.v.vida@ericsson.com>  (tiny change)
614
615         * auth-source.el (auth-source-format-prompt): Don't get confused by
616         any "\" in replacement text.  (Bug#13637)
617
618 2013-01-30  Christopher Schmidt  <christopher@ch.ristopher.com>
619
620         * gnus-int.el (gnus-backend-trace-elapsed): New variable.
621         (gnus-backend-trace): Honour gnus-backend-trace.
622
623         * mml.el (mml-insert-part): Insert closing tag.
624
625         * mm-decode.el (mm-save-part): Handle invalid read-file-name results.
626
627 2013-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
628
629         * gnus-sum.el (gnus-summary-read-group-1): Protect against not being
630         able to find the article, which can happen in debbugs groups,
631         apparently.
632
633 2013-01-16  Glenn Morris  <rgm@gnu.org>
634
635         * smiley.el (smiley-style): Make the file loadable in batch mode.
636
637 2013-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
638
639         * nnimap.el (nnimap-keepalive): Don't throw an error if there's no more
640         imap process running.
641
642 2013-01-14  Julien Danjou  <julien@danjou.info>
643
644         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
645         Compare addresses against addresses, not against the full From field.
646
647 2013-01-13  Richard Stallman  <rms@gnu.org>
648
649         * message.el (message-forward-make-body-mime): New args BEG, END
650         specify what part of FORWARD-BUFFER to use.  Do the work directly
651         instead of calling `mml-insert-buffer'.
652
653 2013-01-11  Aaron S. Hawley  <Aaron.Hawley@vtinfo.com>
654
655         * gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
656         cross-reference(s).
657
658         * gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
659         cross-reference(s).
660
661 2013-01-11  Dmitry Antipov  <dmantipov@yandex.ru>
662
663         * gnus-art.el (gnus-mime-display-security): Use point-min-marker
664         and point-max-marker.
665         * gnus-async.el (gnus-async-article-callback): Use point-max-marker.
666
667 2013-01-11  Julien Danjou  <julien@danjou.info>
668
669         * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
670         max are almost equal. Also return the correct value for V which is
671         already between 0 and 1.
672
673 2013-01-10  Uwe Brauer  <oub@mat.ucm.es>  (tiny change)
674
675         * mml-smime.el (mml-smime-encrypt-to-self): New user option analogous
676         to mml2015-encrypt-to-self.
677         (mml-smime-epg-encrypt): Respect mml-smime-encrypt-to-self.
678
679 2013-01-09  Daiki Ueno  <ueno@gnu.org>
680
681         * mml-smime.el (epg-sub-key-fingerprint): Autoload for
682         mml-smime-epg-find-usable-secret-key.
683
684 2013-01-08  Glenn Morris  <rgm@gnu.org>
685
686         * mml-smime.el (mml-smime-sign-with-sender): Add :version.
687
688 2013-01-07  Daiki Ueno  <ueno@gnu.org>
689
690         * mml-smime.el: Support signing by sender.
691         Requested by Uwe Brauer.
692         (mml-smime-sign-with-sender): New user option analogous
693         to mml2015-sign-with-sender.
694         (mml-smime-epg-sign): Respect mml-smime-sign-with-sender.
695         (mml-smime-epg-find-usable-secret-key): New helper function copied from
696         mml2015.el.
697
698 2012-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
699
700         * gnus-msg.el (gnus-inews-insert-gcc): Don't insert Gcc headers if Gnus
701         isn't running, because Gnus will probably not know how to handle the
702         Gcc header (bug#11941).
703
704         * nnimap.el (nnimap-update-info): Treat \Deleted articles as \Read
705         articles.
706
707 2012-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
708
709         * nnfolder.el (nnfolder-recursive-directory-files): New function.
710         (nnfolder-generate-active-file): Make this function work with recursive
711         folder names.
712
713 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
714
715         * nntp.el (nntp-open-connection): Use HELP as the capability command
716         instead of CAPABILITY because Typhoon v2.2.2.503 chokes completely on
717         unknown commands.  And CAPABILITY is an unknown command (bug#12763).
718
719 2012-12-27  Wolfgang Jenkner  <wjenkner@inode.at>
720
721         * gnus-spec.el (gnus-face-face-function): Don't use nil as no-op face
722         place holder since this gives `Invalid face reference: nil' messages.
723         Use the `default' face instead.  It has the same effect here, even
724         though it is not no-op.
725
726         * gnus-util.el
727         (gnus-put-text-property-excluding-characters-with-faces): Similarly.
728
729 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
730
731         * gnus-msg.el (gnus-summary-resend-message): Don't bug out on
732         non-string posting styles (bug#13285).
733
734 2012-12-27  Glenn Morris  <rgm@gnu.org>
735
736         * plstore.el (plstore-passphrase-callback-function):
737         Use plstore-get-file.
738
739 2012-12-27  Andreas Schwab  <schwab@linux-m68k.org>
740
741         * mml2015.el (mml2015-epg-key-image): Separate attribute stream from
742         stderr.
743
744 2012-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
745
746         * mml2015.el (mml2015-epg-key-image): Use mm-set-buffer-multibyte.
747
748         * gnus-compat.el (set-buffer-multibyte): Remove.
749
750 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
751
752         * mml2015.el (mml2015-epg-key-image): use --attribute-fd rather than
753         temporary file to get PGP key image. Pass no-show-photos when extracting
754         image to avoid having it pop up twice.
755
756 2012-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
757
758         * gnus-art.el (gnus-article-treat-types): Include text/html as parts
759         eligible for treatment.
760
761         * gnus-util.el (gnus-goto-colon): Move to the beginning of the visual
762         lines.  This makes summary commands with hidden threads work more
763         reliably.
764
765         * gnus-cite.el (gnus-article-hide-citation-maybe): Leave an expansion
766         button to mark the hidden citations (bug#9395).
767
768 2012-12-26  Daiki Ueno  <ueno@gnu.org>
769
770         * mml2015.el (mml2015-epg-signature-to-string): New function.
771         (mml2015-epg-verify-result-to-string): New function.
772         (mml2015-epg-decrypt, mml2015-epg-clear-decrypt, mml2015-epg-verify)
773         (mml2015-epg-clear-verify): Use mml2015-epg-verify-result-to-string
774         instead of epg-verify-result-to-string.
775         (epg-signature-key-id, epg-signature-to-string): Autoload.
776         (epg-verify-result-to-string): Remove autoload.
777
778 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
779
780         * mml2015.el (mml2015-epg-key-image): New function, to retrieve photo
781         ID image from GPG public key.
782         (mml2015-epg-key-image-to-string): New function.
783
784 2012-12-25  Leo Liu  <sdl.web@gmail.com>
785
786         * plstore.el (plstore-passphrase-callback-function): Fix error when
787         error when plstore-cache-passphrase-for-symmetric-encryption is set
788         (bug#13264).
789
790 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
791
792         * gnus-sum.el (gnus-set-global-variables): Don't copy over the summary
793         buffer to the article buffer here, because that clobbers multiple
794         article buffers.
795
796         * gnus-art.el (gnus-article-setup-buffer): Make sure that the article
797         buffer always points to the right summary buffer.
798
799 2012-12-25  John Wiegley  <jwiegley@gmail.com>
800
801         * auth-source.el (auth-source-netrc-parse): Allow using "password" as
802         the password (bug#12097).
803
804 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
805
806         * shr.el (shr-tag-a): Don't tagify <A> elements that don't have HREFs
807         (bug#13263).
808
809         * gnus-salt.el (gnus-highlight-selected-tree): Check whether the Tree
810         buffer exists before using it (bug#12475).
811
812         * gnus-agent.el (gnus-agent-fetch-articles): Don't fetch articles from
813         offline groups (bug#11937).
814
815         * message.el (message-yank-original): When using customize to set the
816         value of `message-cite-style', the variable it set to a symbol that's
817         the name of the variable, which must then be dereferenced (bug#12616).
818
819 2012-09-13  Wolfgang Jenkner  <wjenkner@inode.at>
820
821         * lisp/gnus-spec.el (gnus-face-face-function): Initialize the value of
822         the `face' property with a list whose car is the face specified in the
823         format string and whose cdr is (nil).
824         * lisp/gnus-util.el
825         (gnus-put-text-property-excluding-characters-with-faces):
826         Change accordingly.
827         (gnus-get-text-property-excluding-characters-with-faces): New function.
828         * lisp/gnus-sum.el (gnus-summary-highlight-line):
829         * lisp/gnus-salt.el (gnus-tree-highlight-node):
830         * lisp/gnus-group.el (gnus-group-highlight-line): Use it.
831
832 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
833
834         * nnimap.el (nnimap-authenticator): Expand to allow specifying the
835         login methods.
836         (nnimap-login): Respect the `nnimap-authenticator' variable.
837
838         * gnus-sum.el (gnus-summary-push-marks-to-backend): Push the complete
839         mark state when moving articles.  Otherwise unticked articles will get
840         their ticks back after moving.
841
842 2012-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
843
844         * gnus-srvr.el (gnus-browse-delete-group): Fix syntax error.
845
846         * message.el (message-ignored-news-headers): Always remove
847         X-Message-SMTP-Method to avoid information leakage if the user
848         mistakenly inserts the header into news messages.
849
850         * gnus-srvr.el (gnus-browse-delete-group): New command and keystroke.
851
852         * gnus-sum.el (gnus-summary-hide-thread): If point were further to the
853         right than four characters, this command would move point to
854         `point-max'.  Don't do that.
855
856         * gnus-group.el (gnus-group-read-ephemeral-group): Set the active data
857         to nil to allow re-selecting groups that gain articles.
858         (gnus-bug-group-download-format-alist): Update the URL.
859
860 2012-12-23  Andreas Schwab  <schwab@suse.de>
861
862         * shr.el (shr-tag-em): Render em as italic, not bold.
863
864 2012-12-23  Lars Ingebrigtsen  <larsi@gnus.org>
865
866         * gnus-int.el (gnus-backend-trace): Factor out into its own function
867         for reuse.
868         (gnus-open-server): Use it to add more tracing.
869         (gnus-finish-retrieve-group-infos): Add backend tracing.
870         (gnus-backend-trace): Also note the elapsed seconds.
871
872 2012-12-22  Philipp Haselwarter  <philipp@haselwarter.org>
873
874         * gnus-sync.el (gnus-sync-file-encrypt-to, gnus-sync-save):
875         Set epa-file-encrypt-to from variable to avoid querying.
876
877 2012-12-14  Akinori MUSHA  <knu@iDaemons.org>  (tiny change)
878
879         * sieve-mode.el (sieve-font-lock-keywords):
880         Keywords should be word delimited.  (Bug#13173)
881
882 2012-12-13  Andreas Schwab  <schwab@suse.de>
883
884         * tls.el (tls-program): Update customize type.
885
886 2012-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
887
888         * gnus-art.el (gnus-article-browse-html-parts): Use <div align="left">
889         instead of <pre> to align message header.
890
891 2012-12-12  Sam Steingold  <sds@gnu.org>
892
893         * gnus.el (gnus-other-frame-resume-function): Add user option.
894         (gnus-other-frame): Call `gnus-other-frame-resume-function' on resume.
895
896 2012-12-06  Sam Steingold  <sds@gnu.org>
897
898         * gnus-start.el (gnus-before-resume-hook): Add.
899         (gnus-1): Run it when Gnus is alive.
900
901 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
902
903         * gmm-utils.el (gmm-called-interactively-p): Restore as a macro.
904         * gnus-art.el (article-unsplit-urls)
905         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
906         * gnus-registry.el (gnus-registry-get-article-marks)
907         * message.el (message-goto-body): Use it.
908         (message-called-interactively-p): Remove.
909
910         * spam-stat.el (spam-stat-called-interactively-p): New macro.
911         (spam-stat-score-buffer): Use it.
912
913         * spam.el: Silence the warnings against BBDB functions when compiling.
914
915         * gnus-score.el (gnus-score-decode-text-parts):
916         Use append+mapcar instead of the cl function mapcan.
917
918 2012-12-05  Sam Steingold  <sds@gnu.org>
919
920         * gnus.el (gnus-delete-gnus-frame): Extract from `gnus-other-frame'.
921         (gnus-other-frame): Add `gnus-delete-gnus-frame' to
922         `gnus-suspend-gnus-hook' in addition to `gnus-exit-gnus-hook'.
923
924 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
925
926         * gmm-utils.el (gmm-called-interactively-p): Revert.
927         This seems to cause Emacs to get stuck!
928         * gnus-art.el (article-unsplit-urls)
929         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
930         * gnus-registry.el (gnus-registry-get-article-marks)
931         * message.el (message-goto-body)
932         (message-called-interactively-p): Revert.
933
934         * gmm-utils.el (gmm-called-interactively-p): New function.
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): Use it.
939         (message-called-interactively-p): Remove.
940
941         * gmm-utils.el (gmm-flet): Restore it using cl-letf.
942         * gnus-sync.el (gnus-sync-lesync-call)
943         * message.el (message-read-from-minibuffer): Use it.
944
945 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
946
947         * gmm-utils.el (gmm-flet): Remove.
948         * gnus-sync.el (gnus-sync-lesync-call)
949         * message.el (message-read-from-minibuffer): Don't use it.
950
951 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
952
953         * gmm-utils.el (gmm-labels): Use cl-labels if available.
954
955 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
956
957         * gmm-utils.el (gmm-flet, gmm-labels): New macros.
958
959         * gnus-sync.el (gnus-sync-lesync-call)
960         * message.el (message-read-from-minibuffer): Use gmm-flet.
961
962         * gnus-score.el (gnus-score-decode-text-parts): Use gmm-labels.
963
964         * gnus-util.el (gnus-macroexpand-all): Remove.
965
966 2012-12-03  Andreas Schwab  <schwab@linux-m68k.org>
967
968         * gnus-sum.el (gnus-summary-mode-map): Bind gnus-summary-widget-forward
969         to TAB, not [tab].
970         (gnus-summary-article-map): Likewise.
971
972         * gnus-sync.el (gnus-sync-newsrc-offsets): Restore definition.
973         (gnus-sync-save): Use correct format for gnus-sync-newsrc-loader.
974
975 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
976
977         * time-date.el: Commentary fix.
978
979 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
980
981         * color.el: Don't require cl.
982         (color-complement): `caddr' -> `nth 2'.
983
984         * time-date.el (time-to-seconds): De-obsolete.
985
986 2012-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
987
988         * message.el (message-get-reply-headers):
989         Make sure the reply goes to the author if it is a wide reply.
990
991 2012-11-16  Jan Tatarik  <jan.tatarik@gmail.com>
992
993         * gnus-score.el (gnus-score-body):
994         * gnus-logic.el (gnus-advanced-body): Don't score by headers when
995         scoring by body.
996
997 2012-11-16  Glenn Morris  <rgm@gnu.org>
998
999         * gnus-diary.el (nndiary-request-create-group-functions)
1000         (nndiary-request-update-info-functions)
1001         (gnus-subscribe-newsgroup-functions)
1002         (nndiary-request-accept-article-functions):
1003         Use new names for hooks rather than obsolete aliases.
1004
1005 2012-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1006
1007         * dgnushack.el (define-obsolete-variable-alias): Simplify.
1008
1009 2012-11-08  Katsumi Yamaoka  <yamaoka@jpl.org>
1010
1011         * gnus-art.el (gnus-article-browse-html-parts): Always replace charset
1012         in meta tag with the one the part specifies in its header.
1013
1014 2012-10-25  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
1015
1016         * gnus-dired.el (gnus-dired-attach): Attach to last used message buffer
1017         by default.
1018
1019 2012-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1020
1021         * dgnushack.el (define-compiler-macro): Add autoload for XEmacs 21.4
1022         and SXEmacs.  Suggested by Nelson Ferreira <nelson.ferreira@ieee.org>.
1023
1024 2012-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
1025
1026         * dgnushack.el (define-obsolete-variable-alias): Add a compiler-marco
1027         and a runtime function for it, of which the XEmacs version takes only
1028         two arguments.
1029
1030 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1031
1032         * nndiary.el (nndiary-request-create-group-functions)
1033         (nndiary-request-update-info-functions)
1034         (nndiary-request-accept-article-functions):
1035         * gnus-start.el (gnus-subscribe-newsgroup-functions): Don't use
1036         "-hooks" suffix.
1037
1038 2012-10-19  Julien Danjou  <julien@danjou.info>
1039
1040         * gnus-art.el: Require gnus-util because it uses
1041         `gnus-timer--function'.
1042
1043 2012-10-17  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
1044
1045         * starttls.el (starttls-extra-arguments): Doc fix.
1046
1047 2012-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1048
1049         * shr.el (shr-insert): \r is also not inserted, so don't try to delete
1050         it.
1051
1052 2012-10-06  Glenn Morris  <rgm@gnu.org>
1053
1054         * gnus-notifications.el (gnus-notifications):
1055         Add missing group :version tag.
1056         * gnus-msg.el (gnus-gcc-pre-body-encode-hook)
1057         (gnus-gcc-post-body-encode-hook):
1058         * gnus-sync.el (gnus-sync-lesync-name)
1059         (gnus-sync-lesync-install-topics): Add missing custom :version tags.
1060
1061 2012-10-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
1062
1063         * color.el (color-hsl-to-rgb): Fix incorrect results for
1064         small and large hue values.  (Bug#12559)
1065
1066 2012-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1067
1068         New UIDL implementation.
1069
1070         * mail-source.el (mail-sources, mail-source-keyword-map):
1071         Add :leave as a pop3 keyword.
1072         (mail-source-fetch-pop): Bind pop3-leave-mail-on-server.
1073
1074         * pop3.el (pop3-leave-mail-on-server): Allow number.
1075         (pop3-uidl-file, pop3-uidl-file-backup): New user options.
1076         (pop3-movemail): Add UIDL support.
1077         (pop3-send-streaming-command): Take a list of mail numbers instead of
1078         the number of mails.
1079         (pop3-write-to-file): Add X-UIDL header.
1080         (pop3-uidl-stat, pop3-uidl-dele, pop3-uidl-load, pop3-uidl-save)
1081         (pop3-uidl-add-xheader): New functions.
1082
1083         * message.el (message-ignored-resent-headers):
1084         Add X-Content-Length and X-UIDL headers.
1085
1086 2012-10-05  Glenn Morris  <rgm@gnu.org>
1087
1088         * color.el (color-name-to-rgb, color-rgb-to-hex)
1089         (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1090         (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1091         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1092         (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1093
1094 2012-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1095
1096         * gnus-art.el (gnus-article-browse-delete-temp-files): Never ask again
1097         a user about whether to delete temp files if once a user answered as n.
1098
1099 2012-09-25  Chong Yidong  <cyd@gnu.org>
1100
1101         * password-cache.el (password-read-and-add): Use a declare form to mark
1102         this function obsolete.
1103
1104 2012-09-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1105
1106         * lpath.el: Bind mail-encode-mml for old Emacsen.
1107
1108 2012-09-17  Richard Stallman  <rms@gnu.org>
1109
1110         * message.el (message-in-body-p): Don't set mark or modify buffer.
1111
1112         * mml.el (mml-attach-file): Doc fix.
1113         (mml-attach-external, mml-attach-buffer, mml-attach-file):
1114         Set mail-encode-mml when in Mail mode.
1115         Simplify code to set HEAD and move back to HEAD.
1116         (mml-insert-multipart, mml-insert-part):
1117         Set mail-encode-mml when in Mail mode.
1118
1119 2012-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1120
1121         * gnus-util.el (gnus-timer--function): New function.
1122
1123         * gnus-art.el (gnus-article-stop-animations): Use it.
1124
1125 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
1126
1127         Fix glitches caused by addition of psec to timers.
1128         * gnus-art.el (gnus-article-stop-animations): Use timer--function
1129         rather than raw access to timer vector.
1130
1131 2012-09-11  Julien Danjou  <julien@danjou.info>
1132
1133         * gnus-notifications.el (gnus-notifications): Check for nil values in
1134         ignored addresses check.
1135
1136 2012-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1137
1138         * qp.el (quoted-printable-decode-region): Inline+CSE+strength-reduction.
1139
1140 2012-09-07  Chong Yidong  <cyd@gnu.org>
1141
1142         * gnus-util.el
1143         (gnus-put-text-property-excluding-characters-with-faces): Restore.
1144
1145         * gnus-salt.el (gnus-tree-highlight-node):
1146         * gnus-sum.el (gnus-summary-highlight-line):
1147         * gnus-group.el (gnus-group-highlight-line): Revert use of add-face.
1148
1149 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
1150
1151         * gnus-util.el: Fix compilation error on XEmacs 21.4.
1152
1153 2012-09-06  Juri Linkov  <juri@jurta.org>
1154
1155         * gnus-group.el (gnus-read-ephemeral-gmane-group): Change the naming
1156         scheme for buffer names to be more consistent with other group and
1157         article buffer names in Gnus.
1158
1159 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
1160
1161         * gnus-util.el
1162         (gnus-put-text-property-excluding-characters-with-faces): Removed.
1163
1164         * gnus-compat.el: Define compat function `add-face' from Wolfgang
1165         Jenkner.
1166
1167         * gnus-group.el (gnus-group-highlight-line): Use combining faces.
1168
1169         * gnus-sum.el (gnus-summary-highlight-line): Ditto.
1170
1171         * gnus-salt.el (gnus-tree-highlight-node): Ditto.
1172
1173 2012-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1174
1175         * gnus-score.el (gnus-score-decode-text-parts): Use #' for
1176         mm-text-parts used in labels macro to make it work with XEmacs 21.5.
1177
1178         * gnus-util.el (gnus-string-prefix-p): New function, an alias to
1179         string-prefix-p in Emacs >=23.2.
1180
1181         * nnmaildir.el (nnmaildir--ensure-suffix, nnmaildir--add-flag)
1182         (nnmaildir--remove-flag, nnmaildir--scan): Use gnus-string-match-p
1183         instead of string-match-p.
1184         (nnmaildir--scan): Use gnus-string-prefix-p instead of string-prefix-p.
1185
1186 2012-09-06  Kenichi Handa  <handa@gnu.org>
1187
1188         * qp.el (quoted-printable-decode-region): Fix previous change; handle
1189         lowercase a..f.
1190
1191 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
1192
1193         * nnmaildir.el (nnmaildir--article-set-flags): Fix compilation error.
1194
1195 2012-09-05  Martin Stjernholm  <mast@lysator.liu.se>
1196
1197         * nnimap.el (nnimap-request-move-article): Decode the group name when
1198         doing internal moves to avoid charset issues.
1199
1200         * gnus-demon.el (gnus-demon-init): Fixed regression when IDLE is t and
1201         TIME is set.
1202
1203 2012-09-05  Juri Linkov  <juri@jurta.org>
1204
1205         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow opening more
1206         than one group at a time (bug#11961).
1207
1208 2012-09-05  Julien Danjou  <julien@danjou.info>
1209
1210         * gnus-srvr.el (gnus-server-open-server): Don't message on failure:
1211         this hide the real reason with a message giving absolutely no hint.
1212
1213 2012-09-05  Lars Ingebrigtsen  <larsi@gnus.org>
1214
1215         * gnus-group.el (gnus-group-mark-article-read): Propagate the read mark
1216         to the backend (bug#11804).
1217
1218         * message.el (message-insert-newsgroups): Don't insert newsgroup
1219         duplicates (bug#12275).
1220
1221 2012-09-05  John Wiegley  <johnw@newartisans.com>
1222
1223         * gnus.el (gnus-expand-group-parameters): Allow regexp substitutions in
1224         sieve rules.
1225
1226 2012-09-05  Jan Tatarik  <jan.tatarik@gmail.com>
1227
1228         * gnus-score.el (gnus-score-decode-text-parts): Use #' for the local
1229         function.
1230
1231         * gnus-logic.el (gnus-advanced-body): Allow scoring on decoded bodies.
1232
1233         * gnus-score.el (gnus-score-decode-text-parts): Ditto.
1234
1235 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
1236
1237         * nnmaildir.el: Make nnmaildir understand and write maildir flags.
1238         That is, rename files from "unique:2," to "unique:2,S" for "seen", etc.
1239         This should make nnmaildir more usable with offlineimap.
1240
1241 2012-09-05  Julien Danjou  <julien@danjou.info>
1242
1243         * nnimap.el (nnimap-request-list): Revert change that made listing
1244         synchronous.
1245         (nnimap-get-responses): Restore.
1246
1247 2012-09-03  Lars Ingebrigtsen  <larsi@gnus.org>
1248
1249         * dgnushack.el: XEmacs 21.5 compilation fix.
1250
1251         * gnus-notifications.el (gnus-notifications-notify): Use it.
1252
1253         * gnus-fun.el (gnus-funcall-no-warning): New function to silence
1254         warnings on XEmacs.
1255
1256 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
1257
1258         Better seeds for (random).
1259         * gnus-sync.el (gnus-sync-lesync-setup):
1260         * message.el (message-canlock-generate, message-unique-id):
1261         Change (random t) to (random), now that the latter is more random.
1262
1263 2012-08-31  Dave Abrahams  <dave@boostpro.com>
1264
1265         * nnimap.el (nnimap-change-group): Document result value
1266
1267         * auth-source.el (auth-sources): Fix macos keychain access.
1268
1269         * gnus-int.el (gnus-request-head): When gnus-override-method is set,
1270         allow the backend `request-head' function to determine the group
1271         name on its own.
1272         (gnus-request-expire-articles): Filter out negative article numbers
1273         during expiry (Bug#11980).
1274
1275         * gnus-range.el (gnus-set-difference): Change gnus-set-difference from
1276         O(N^2) to O(N).  This makes warping into huge groups tolerable.
1277
1278         * gnus-registry.el (gnus-try-warping-via-registry): Don't act as though
1279         you've found the article when you haven't.
1280
1281         * nnimap.el (nnimap-find-article-by-message-id): Account for the fact
1282         that nnimap-change-group can return t.
1283
1284 2012-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1285
1286         * gnus-notifications.el (gnus-notifications-action): Avoid CL-ism.
1287
1288 2012-08-30  Julien Danjou  <julien@danjou.info>
1289
1290         * gnus-notifications.el (gnus-notifications-notify): Use timeout from
1291         `gnus-notifications-timeout'.
1292         (gnus-notifications-timeout): Add.
1293         (gnus-notifications-action): New function.
1294         (gnus-notifications-notify): Add :action using
1295         `gnus-notifications-action'.
1296         (gnus-notifications-id-to-msg): New variable.
1297         (gnus-notifications): Use `gnus-notifications-id-to-msg' to map
1298         notifications id to messages.
1299
1300 2012-08-30  Kenichi Handa  <handa@gnu.org>
1301
1302         * qp.el (quoted-printable-decode-region): Decode multiple bytes at
1303         once.
1304
1305 2012-08-29  Julien Danjou  <julien@danjou.info>
1306
1307         * gnus-notifications.el: New file.
1308         (gnus-notifications-notify): New function.
1309         (gnus-notifications): Use `gnus-notifications-notify'.
1310
1311 2012-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1312
1313         * gnus-sum.el (gnus-summary-enter-digest-group): Decode content
1314         transfer encoding first; bind gnus-newsgroup-charset to the charset
1315         that the article specifies (Bug#12209).
1316
1317 2012-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1318
1319         * gnus-cus.el (gnus-group-customize): Decode values posting-style holds.
1320         (gnus-group-customize-done): Encode values posting-style holds.
1321
1322         * gnus-msg.el (gnus-summary-resend-message)
1323         (gnus-configure-posting-styles): Decode values posting-style group
1324         parameter holds.
1325
1326 2012-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
1327
1328         * gnus-msg.el (gnus-summary-resend-message): Honor posting-style for
1329         `name' and `address' in Resent-From header.
1330
1331 2012-08-14  Chong Yidong  <cyd@gnu.org>
1332
1333         * gnus-art.el (article-display-face): Handle failure in
1334         gnus-create-image (Bug#11802).
1335
1336 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1337
1338         * gnus-agent.el (gnus-agent-cat-defaccessor, gnus-agent-cat-groups):
1339         Use defsetf.
1340
1341 2012-08-10  Daiki Ueno  <ueno@unixuser.org>
1342
1343         * auth-source.el: (auth-source-plstore-search)
1344         (auth-source-secrets-search): Ignore :require and :type in search spec.
1345
1346 2012-08-06  Julien Danjou  <julien@danjou.info>
1347
1348         * nnimap.el (nnimap-request-head): Resture to-buffer parameter, used by
1349         `nnimap-request-move-article'.
1350
1351         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
1352         Remove autoload, already handled by gnus.el.
1353
1354         * nnimap.el (nnimap-request-head): Remove to-buffer argument.
1355
1356         * gnus-int.el (gnus-request-head): Remove to-buffer argument, only
1357         supported by nnimap actually. Reverts previous change.
1358
1359         * gnus-int.el (gnus-request-head): Add an optional to-buffer parameter
1360         to mimic `gnus-request-article' and enjoy backends the nn*-request-head
1361         to-buffer argument that is already supported.
1362
1363 2012-08-05  Julien Danjou  <julien@danjou.info>
1364
1365         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
1366         Add autoload.
1367
1368 2012-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1369
1370         * gnus.el (gnus-valid-select-methods): Fix custom type.
1371
1372 2012-07-29  Teodor Zlatanov  <tzz@lifelogs.com>
1373
1374         * auth-source.el (auth-sources, auth-source-backend-parse)
1375         (auth-source-macos-keychain-search)
1376         (auth-source-macos-keychain-search-items)
1377         (auth-source-macos-keychain-result-append)
1378         (auth-source-macos-keychain-create): Support Mac OS X Keychains in
1379         auth-source.el through the /usr/bin/security utility.
1380         (auth-sources): Fix syntax error.
1381         (auth-source-macos-keychain-result-append): Fix variable name.
1382         (auth-sources, auth-source-macos-keychain-result-append): More fixes.
1383
1384 2012-07-27  Julien Danjou  <julien@danjou.info>
1385
1386         * message.el (fboundp): Add a defalias on `mail-dont-reply-to' for
1387         Emacs < 24.1
1388
1389 2012-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1390
1391         * message.el (message-kill-address): Don't kill last newline.
1392         (message-skip-to-next-address): Don't move to the next header.
1393         (message-fill-field-address): Work properly.
1394
1395 2012-07-25  Julien Danjou  <julien@danjou.info>
1396
1397         * gnus-art.el (gnus-kill-sticky-article-buffers): Reintroduce.
1398
1399 2012-07-24  Julien Danjou  <julien@danjou.info>
1400
1401         * mail-source.el (mail-source-movemail-and-remove): Remove, unused.
1402
1403         * nntp.el (nntp-send-nosy-authinfo, nntp-send-authinfo-from-file)
1404         (nntp-async-timer-handler): Remove, unused.
1405
1406         * nnimap.el (nnimap-get-responses): Remove, unused.
1407
1408         * nnheader.el (mail-header-set-extra): Remove, unused.
1409
1410         * netrc.el (netrc-find-service-number, netrc-store-data): Remove,
1411         unused.
1412
1413         * mm-view.el (mm-view-sound-file): Remove, unused.
1414
1415         * mm-url.el (mm-url-fetch-simple, mm-url-fetch-form)
1416         (mm-url-encode-multipart-form-data): Remove, unused.
1417
1418         * message.el (message-remove-signature, message-make-host-name)
1419         (message-fill-address): Remove, unused.
1420
1421         * gnus.el (gnus-writable-groups, gnus-group-guess-prefixed-name)
1422         (gnus-group-guess-full-name, gnus-group-guess-prefixed-name): Remove,
1423         unused.
1424
1425         * gnus-xmas.el (gnus-xmas-highlight-selected-summary)
1426         (gnus-xmas-call-region): Remove, unused.
1427
1428         * gnus-uu.el (gnus-uu-find-name-in-shar): Remove, unused.
1429
1430         * gnus-util.el (gnus-extract-address-component-name)
1431         (gnus-extract-address-component-email, gnus-sortable-date)
1432         (gnus-alist-to-hashtable, gnus-hashtable-to-alist)
1433         (gnus-process-live-p): Remove, unused.
1434
1435         * gnus-topic.el (gnus-group-parent-topic): Remove, unused.
1436
1437         * gnus-sum.el (gnus-score-set-default, gnus-article-parent-p)
1438         (gnus-article-read-p, gnus-uncompress-marks): Remove, unused.
1439         (gnus-summary-set-current-mark): Remove obsolete, empty and unused
1440         function.
1441
1442         * gnus-start.el (gnus-kill-newsgroup): Remove unused obsolete function.
1443
1444         * gnus-score.el (gnus-summary-score-crossposting)
1445         (gnus-score-regexp-bad-p): Remove, unused.
1446
1447         * gnus-salt.el (gnus-tree-goto-article): Remove, unused.
1448
1449         * gnus-range.el (gnus-sublist-p): Remove, unused.
1450
1451         * gnus-msg.el (gnus-mail-parse-comma-list, gnus-put-message): Remove,
1452         unused.
1453
1454         * gnus-kill.el (gnus-Newsgroup-kill-file): Remove, unused.
1455
1456         * gnus-int.el (gnus-list-active-group, gnus-request-group-articles)
1457         (gnus-request-associate-buffer): Remove, unused.
1458
1459         * gnus-group.el (gnus-group-set-method-info)
1460         (gnus-group-set-params-info): Remove, unused.
1461
1462         * gnus-fun.el (gnus-shell-command-to-string)
1463         (gnus-shell-command-on-region): Remove, unused.
1464
1465         * gnus-cite.el (gnus-cited-line-p): Remove, unused.
1466
1467         * gnus-art.el (gnus-article-text-type-exists-p)
1468         (article-translate-characters, gnus-article-hide-text-of-type)
1469         (gnus-kill-sticky-article-buffers, gnus-article-maybe-highlight):
1470         Remove, unused.
1471
1472 2012-07-22  Andrew Cohen  <cohen@bu.edu>
1473
1474         * nnir.el ("nnir"): Add 'virtual ability to nnir backend.
1475
1476 2012-07-21  Julien Danjou  <julien@danjou.info>
1477
1478         * message.el (message-dont-reply-to-names): Replace deprecated
1479         `rmail-dont-reply-to-names' with `mail-dont-reply-to-names'.
1480         (message-get-reply-headers): Ditto.
1481
1482 2012-07-18  Julien Danjou  <julien@danjou.info>
1483
1484         * sieve-mode.el (sieve-mode-map): Bind C-c C-c to
1485         `sieve-upload-and-kill'.
1486
1487         * sieve.el (sieve-bury-buffer): Remove function.
1488         (sieve-manage-mode-map): Map "q" to `kill-buffer'.
1489         (sieve-upload-and-kill): New function, mapped to C-c C-c.
1490
1491 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
1492
1493         * shr.el (shr-expand-url): Handle URL starting with `//'.
1494
1495 2012-07-13  Chong Yidong  <cyd@gnu.org>
1496
1497         * smime.el (smime-certificate-info): Set buffer-read-only directly,
1498         instead of calling toggle-read-only with a (bogus) argument.
1499
1500 2012-07-09  Tassilo Horn  <tassilo@member.fsf.org>
1501
1502         * gnus-sum.el (gnus-summary-limit-to-author): Use default value instead
1503         of initial input when reading the author to restrict the summary to.
1504
1505 2012-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1506
1507         * mm-decode.el (mm-shr):
1508         Allow overriding charset by mm-charset-override-alist.
1509
1510 2012-07-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1511
1512         * gnus-art.el (gnus-article-view-part):
1513         Toggle subparts of multipart/alternative part.
1514
1515 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1516
1517         * shr.el (shr-render-buffer): New command.
1518         (shr-visit-file): Use it.
1519
1520 2012-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1521
1522         * tests/gnustest-nntp.el, tests/gnustest-registry.el:
1523         Set no-byte-compile and no-update-autoloads.
1524
1525 2012-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
1526
1527         * mm-decode.el: Add coding cookie for a soft hyphen that mm-shr uses.
1528
1529 2012-06-25  Julien Danjou  <julien@danjou.info>
1530
1531         * nnimap.el (nnimap-request-articles-find-limit): Rename from
1532         `nnimap-request-move-articles-find-limit' since we do not use it only
1533         for move operations.
1534         (nnimap-request-accept-article): Use
1535         `nnimap-request-articles-find-limit' to limit search by message-id.
1536
1537 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
1538
1539         Support higher-resolution time stamps (Bug#9000).
1540
1541         * time-date.el (with-decoded-time-value): New arg PICO-SYMBOL in
1542         VARLIST.  It's optional, for backward compatibility.
1543         (encode-time-value): New optional arg PICO.  New type 3.
1544         (time-to-seconds) [!float-time]: Support the new picoseconds
1545         component if it's used.
1546         (seconds-to-time, time-subtract, time-add):
1547         Support ps-resolution time stamps as well.
1548
1549 2012-06-19  Julien Danjou  <julien@danjou.info>
1550
1551         * nnir.el (nnir-run-imap): Fix, use `nnimap-change-group'.
1552
1553         * nnimap.el (nnimap-log-buffer): Check that
1554         `window-point-insertion-type' is boundp, since it's not available in
1555         XEmacs.
1556
1557 2012-06-19  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
1558
1559         * nnimap.el (nnimap-log-buffer): Add this, setting
1560         `window-point-insertion-type' in the buffer to t.
1561         (nnimap-log-command): Use nnimap-log-buffer.
1562
1563 2012-06-19  Julien Danjou  <julien@danjou.info>
1564
1565         * nnimap.el (nnimap-find-article-by-message-id): Add an optional limit
1566         argument to be able to limit the search.
1567         (nnimap-request-move-article): Use `nnimap-request-move-articles-find-limit'.
1568         (nnimap-request-move-articles-find-limit): Add this to limit the search
1569         by Message-Id after a message move.
1570         (nnimap): Add defgroup.
1571
1572 2012-06-18  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
1573
1574         * gnus-win.el (gnus-configure-frame): Pass an arg to window-dedicated-p.
1575
1576 2012-06-15  Julien Danjou  <julien@danjou.info>
1577
1578         * nnimap.el (nnimap-find-article-by-message-id): Use
1579         `nnimap-possibly-change-group' rather than its own EXAMINE call.
1580         (nnimap-possibly-change-group): Add read-only argument.
1581         (nnimap-request-list): Use nnimap-possibly-change-group rather than
1582         issuing EXAMINE manually.
1583         (nnimap-find-article-by-message-id): Use `nnimap-possibly-change-group'
1584         with read-only argument.
1585         (nnimap-change-group): Rename from `nnimap-possibly-change-group'. We
1586         cannot possibly change because we need to be sure that it's either
1587         read-write or read-only.
1588
1589 2012-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1590
1591         * gnus-art.el (gnus-article-read-summary-keys): Protect against the key
1592         being bound to a lambda form.
1593
1594 2012-04-14  Wolfgang Jenkner  <wjenkner@inode.at>
1595
1596         * gnus-agent.el (gnus-agent-retrieve-headers): Recalculate the range of
1597         articles when fetch-old is non-nil (bug#11370).
1598
1599 2012-05-04  Wolfgang Jenkner  <wjenkner@inode.at>
1600
1601         * gnus-picon.el (gnus-picon-properties): New defcustom.
1602         (gnus-picon-create-glyph): Use it.
1603
1604 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1605
1606         * gnus-group.el (gnus-group-get-new-news): Respect
1607         `gnus-group-use-permanent-levels', as documented (bug#11638).
1608
1609 2012-06-10  Dave Abrahams  <dave@boostpro.com>
1610
1611         * gnus-int.el (gnus-warp-to-article): Limit registry warping to real
1612         groups (bug#11641).
1613
1614 2012-06-10  Toke Høiland-Jørgensen  <toke@toke.dk>  (tiny change)
1615
1616         * nnmaildir.el (nnmaildir-request-expire-articles): Ensure that `time'
1617         is an integer to avoid later problems.
1618
1619 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1620
1621         * shr.el: Add a iso-8859-1 cookie to make stuff work under other
1622         locales.
1623
1624         * mm-decode.el (mm-display-part): Dissect archives when hitting `RET'
1625         on a handle.
1626
1627         * gnus-sum.el (gnus-summary-limit-to-author): Use the current From
1628         address as the default.
1629         (gnus-summary-insert-old-articles): Don't include unexistent messages.
1630
1631         * nnfolder.el (nnfolder-save-buffer): Delete old versions silently.  It
1632         makes no sense to query the user about internal files.
1633
1634         * gnus-spec.el: Remove all the byte-compilation stuff, since
1635         benchmarking shows that it doesn't help when entering large summary
1636         buffers.
1637
1638         * gnus-xmas.el (gnus-xmas-define): Remove.
1639
1640         * gnus-util.el (gnus-byte-code): Remove.
1641
1642         * gnus-spec.el (gnus-update-format-specifications): Remove outdated
1643         grouplens stuff.
1644
1645 2012-06-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1646
1647         * gnus-msg.el (gnus-msg-mail): Warn the user about Gnus not running
1648         (bug#11514).
1649
1650 2012-06-07  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
1651
1652         * message.el (message-buffers): Return all buffers derived from Message
1653         to make `gnus-dired-attach' work with mu4e.
1654
1655 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1656
1657         * nntp.el: Stop the `letf' madness.
1658         (nntp--report-1): New var.
1659         (nntp-report): Merge nntp-report-1 into it.
1660         (nntp-with-open-group-function): Set nntp--report-1 instead of modifying
1661         the nntp-report function.
1662
1663         * auth-source.el: Fix comment-style to follow the convention.
1664
1665 2012-05-28  Daiki Ueno  <ueno@unixuser.org>
1666
1667         * mm-decode.el (mm-inhibit-auto-detect-attachment): New variable.
1668         (mm-dissect-singlepart): Don't guess the MIME type of
1669         application/octet-stream parts if mm-inhibit-auto-detect-attachment is
1670         set.
1671         (mm-dissect-multipart): Bind mm-inhibit-auto-detect-attachment if the
1672         toplevel MIME type is multipart/encrypted.
1673
1674 2012-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1675
1676         * gnus-msg.el (gnus-msg-mail): Ensure that gnus-newsgroup-name is
1677         a string so that Gcc works (bug#11514).
1678
1679 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1680
1681         * legacy-gnus-agent.el (gnus-agent-unhook-expire-days):
1682         * gnus-demon.el (gnus-demon-init): Don't bother with type-of.
1683
1684 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1685
1686         * gnus-win.el (gnus-configure-frame): Don't signal an error when
1687         jumping to *Server* from a dedicated *Group* window.
1688         (gnus-configure-frame): CSE.
1689
1690         * gnus-registry.el: Minor style cleanup.
1691         (gnus-registry--set/remove-mark): New function, extracted from
1692         gnus-registry-install-shortcuts.
1693         (gnus-registry-install-shortcuts): Use it.
1694
1695 2012-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1696
1697         * nnspool.el (news-path): Use eval-and-compile.
1698
1699 2012-05-24  Glenn Morris  <rgm@gnu.org>
1700
1701         * nnspool.el (news-directory, news-path, news-inews-program):
1702         Move here from paths.el.  Don't see a need for these to be autoloaded.
1703
1704         * gnus.el (gnus-default-nntp-server): Make it a defcustom.
1705         Merge in doc from paths.el version.  Don't see any need for this to be
1706         autoloaded, or for the warning about users not setting it.
1707
1708 2011-12-02  Wolfgang Jenkner  <wjenkner@inode.at>
1709
1710         * gnus-agent.el (gnus-agent-save-active): Deal with the "groups"
1711         format.  In particular, add an optional argument and a docstring.
1712
1713         * gnus-start.el (gnus-groups-to-gnus-format): Use it.
1714
1715         * nntp.el (nntp-finish-retrieve-group-infos): Make `nntp-server-buffer'
1716         current before calling `gnus-groups-to-gnus-format'.
1717         Note that this was already the case for `gnus-active-to-gnus-format'.
1718
1719 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
1720
1721         Fix minor Y10k bug.
1722         * nnweb.el (nnweb-google-parse-1): Don't assume years have 4 digits.
1723
1724 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1725
1726         * nnimap.el (nnimap-open-connection-1): Don't leave an "opening..."
1727         message once it's actually open.
1728
1729 2012-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
1730
1731         * gnus.el: Ma Gnus v0.5 is released.
1732
1733 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1734
1735         * auth-source.el (auth-source--aput-1, auth-source--aput)
1736         (auth-source--aget): New functions and macros.
1737         Use them instead of aput/aget.
1738
1739 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
1740
1741         * gnus.el (debbugs-gnu): Don't override existing autoload definition.
1742
1743 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
1744
1745         * plstore.el (plstore-called-interactively-p): New compat macro copied
1746         from message.el.
1747         (plstore-mode): Use it.
1748
1749 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
1750
1751         * plstore.el: Revive the editing feature.
1752         (plstore-mode): New mode to edit plstore file.
1753         (plstore-mode-toggle-display, plstore-mode-original)
1754         (plstore-mode-decoded): New command.
1755         (plstore--encode, plstore--decode, plstore--write-contents-functions)
1756         (plstore--insert-buffer, plstore--make): New function.
1757         (plstore-open, plstore-save): Simplify by using them.
1758
1759 2012-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1760
1761         * pop3.el (pop3-wait-for-messages): Fix retrieved data size calculation.
1762
1763 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
1764
1765         * tls.el (open-tls-stream): Remove unused binding.
1766
1767 2012-04-16  Glenn Morris  <rgm@gnu.org>
1768
1769         * nndraft.el (nndraft-request-list): Fix declaration.
1770
1771 2012-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1772
1773         * mm-decode.el (mm-dissect-buffer): Doc fix.
1774
1775         * gnus-msg.el (gnus-inews-insert-gcc): Don't do the alist stuff when we
1776         don't have a current group.
1777
1778         * gnus-sum.el (gnus-handle-ephemeral-exit): Avoid creating the group
1779         buffer if it doesn't exist.
1780
1781         * gnus-group.el (gnus-group-read-ephemeral-group): If no quit-config is
1782         given, mark the group as ephemeral with the current window conf.
1783
1784         * gnus-sum.el (gnus-set-global-variables): Don't assume that the group
1785         buffer exists, which it doesn't if we haven't started Gnus.
1786         (gnus-summary-exit): Allow quitting when we don't have a group buffer.
1787
1788 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1789
1790         * mml.el (mml-generate-mime): Allow specifying what the top-level part
1791         type is.
1792
1793         * gnus-start.el (gnus-clean-old-newsrc): Remove totally bogus
1794         `unexists' entries.
1795         (gnus-clean-old-newsrc): Fix last checkin.
1796
1797         * nnimap.el (nnimap-update-info): None of the articles below the active
1798         low-water mark exist.
1799
1800         * dgnushack.el: Get rid of XEmacs compilation warning.
1801
1802         * gnus-msg.el (gnus-summary-cancel-article): See what From header we
1803         would have gotten if we posted to the group, and use that to compare
1804         against the message we want to cancel (bug#10808).
1805
1806         * gnus-sum.el (gnus-auto-center-summary): `scroll-margin' isn't defined
1807         on XEmacs.
1808
1809 2012-04-10  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
1810
1811         * gnus-sum.el (gnus-auto-center-summary): Set default to respect
1812         `scroll-margin'.
1813
1814 2012-04-10  Elias Oltmanns  <eo@nebensachen.de>  (tiny change)
1815
1816         * gnus-cite.el (gnus-dissect-cited-text): A single line without
1817         citation prefix within a block of cited text should be considered part
1818         of that block *only* if it is a blank line.
1819
1820 2012-04-09  Chong Yidong  <cyd@gnu.org>
1821
1822         * binhex.el, hashcash.el, uudecode.el:
1823         Remove * characters from the front of variable docstrings.
1824
1825 2012-04-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1826
1827         * shr.el (shr-find-fill-point): Remove unused code; don't break a line
1828         before kinsoku-bol characters nor within kinsoku-eol characters.
1829
1830 2012-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1831
1832         * gnus-sync.el (gnus-topic-alist, gnus-group-topic)
1833         (gnus-topic-create-topic, gnus-topic-enter-dribble): Silence compiler.
1834         (gnus-sync-read): Use mapc instead of mapcar.
1835
1836         * mm-archive.el: Require mm-decode for some macros.
1837         (gnus-recursive-directory-files, mailcap-extension-to-mime): Silence
1838         the byte compiler.
1839         (mm-archive-decoders): New function that returns the value of
1840         the mm-archive-decoders variable.
1841
1842         * mm-decode.el: Don't require mm-archive; autoload mm-archive functions
1843         instead.
1844         (mm-dissect-singlepart): Use the function mm-archive-decoders.
1845
1846         * nnimap.el (gnus-refer-thread-use-nnir):
1847         * nnmail.el (mail-send-and-exit): Silence the byte compiler.
1848
1849 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1850
1851         * gnus-compat.el: Define `bound-and-true-p' for XEmacs.
1852
1853 2012-03-12  Peter Münster  <pmrb@free.fr>
1854
1855         * gnus-demon.el (gnus-demon-timers): Now a plist (function -> timer).
1856         (gnus-demon-cancel): Ditto.
1857         (gnus-demon-run-callback): When function cannot be called due to low
1858         idleness, call it when idleness reaches the expected value, instead of
1859         waiting another timer period.
1860         (gnus-demon-init): Add `time' to arguments of call-back.
1861
1862 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1863
1864         * dgnushack.el: Bind `gnus-registry-enabled' for XEmacs.
1865
1866         * gnus.el: Register gnus-registry functions.
1867
1868         * gnus-registry.el (gnus-try-warping-via-registry): Moved here and
1869         indent.
1870
1871         * gnus-int.el (gnus-warp-to-article): Check whether the registry is
1872         enabled before warping.
1873
1874 2012-03-22  Dave Abrahams  <dave@boostpro.com>
1875
1876         * gnus-sum.el (gnus-summary-insert-subject): Record information in the
1877         registry about each article retrieved.
1878
1879         * gnus-int.el (gnus-select-group-with-message-id): New function.
1880         (gnus-try-warping-via-registry): Ditto.
1881         (gnus-warp-to-article): Fall back on the registry.
1882
1883 2012-03-22  Sergio Martínez  <samf0xb58@gmail.com>  (tiny change)
1884
1885         * nnimap.el (nnimap-request-scan): Allow `nnimap-inbox' to be a list of
1886         inboxes.
1887
1888 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1889
1890         * nnimap.el (nnimap-fetch-partial-articles): Minor doc string fixup.
1891
1892 2012-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1893
1894         * gnus-msg.el (gnus-summary-resend-message-insert-gcc): Assume that
1895         gnus-gcc-self-resent-messages may be a group parameter.
1896         (gnus-summary-resend-message): Don't encode encoded words in header
1897         when Gcc'ing resent message.
1898
1899 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1900
1901         * shr.el (shr-insert): Treat non-breaking space just like normal
1902         space.  This seems to produce more pleasing results.
1903         (shr-insert): Only insert a blank line if we're starting from an image.
1904         (shr-tag-br): Allow <br> to end lines or to make a single blank line.
1905         (shr-ensure-paragraph): Consider lines with white space to be blank.
1906
1907 2012-03-15  Elias Pipping  <pipping@lavabit.com>
1908
1909         * Makefile.in: Respect DESTDIR.
1910
1911 2012-03-14  Christopher Schmidt  <christopher@ch.ristopher.com>
1912
1913         * gnus-msg.el (gnus-inews-do-gcc): Add gnus-gcc-pre-body-encode-hook
1914         and gnus-gcc-post-body-encode-hook.
1915
1916 2012-03-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1917
1918         * gnus-group.el (gnus-group-expire-articles-1): Don't try to expire
1919         messages that don't exist.
1920
1921         * gnus-sum.el (gnus-summary-expire-articles): Ditto.
1922
1923 2012-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1924
1925         pgg-def.el, pgg-gpg.el, pgg-parse.el, pgg-pgp.el, pgg-pgp5.el, pgg.el:
1926         Remove.
1927
1928         dgnushack.el (pgg-snarf-keys-region): Remove autoload.
1929
1930         lpath.el (pgg-parse-crc24-string, pgg-parse-crc24): Remove declaration.
1931
1932 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1933
1934         * gnus-msg.el (gnus-inews-insert-gcc): Protect against when we don't
1935         have a group name.
1936
1937         * gnus-art.el (article-wash-html): Ensure that we insert the HTML into
1938         a multibyte buffer (bug#7410).
1939         (article-wash-html): Parse the original article buffer to get the
1940         unencoded data (bug#7410).
1941
1942         * gnus-start.el (gnus-read-newsrc-el-file): Protect against broken
1943         .newsrc.el files.
1944
1945 2012-04-05  Bastien Guerry  <bzg@altern.org>
1946
1947         * color.el (color-lighten-name): Fix typo.
1948
1949 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1950
1951         * auth-source.el (auth-source-netrc-create): Quote tokens that contain
1952         "#" to avoid having them interpreted as comments.
1953
1954 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1955
1956         * shr.el (shr-insert): Update the text state properly to avoid
1957         inserting spurious paragraph starts.
1958
1959 2012-03-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1960
1961         * shr.el (shr-table-widths): Divide the extra width more fairly over
1962         the TDs (bug#10973).
1963         (shr-render-td): Don't delete too much padding.
1964         (shr-natural-width): Compute the natural width more correctly.
1965         (shr-insert): Allow the natural width to be computed for tables again.
1966         (shr-tag-table-1): Rework how the natural widths are computed by
1967         rendering the table a third time.
1968         (shr-natural-width): Removed.
1969         (shr-buffer-width): New function.
1970         (shr-expand-newlines): Use it.
1971
1972         * gnus-msg.el (gnus-bug): Don't delete the other windows.  We may be
1973         using a `gnus-use-full-window' setup (bug#11013).
1974
1975 2012-03-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1976
1977         * gnus-int.el (gnus-backend-trace): Flip default to nil before Emacs
1978         24.1 release.
1979
1980 2012-03-10  David Edmondson  <dme@dme.org>
1981
1982         * mm-uu.el (mm-uu-forward-extract): Allow for blank lines between the
1983         'Forwarded Message' header and the start of the message.
1984
1985 2012-03-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1986
1987         * gnus-msg.el (gnus-msg-mail): Call `message-mail' correctly when Gnus
1988         isn't running (bug#10897).
1989
1990 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1991
1992         * tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
1993         This is inconsistent with all the other stream functions, which leave
1994         the setting up to the higher levels (if so wanted) (bug#10931).
1995
1996 2012-02-28  Glenn Morris  <rgm@gnu.org>
1997
1998         * gmm-utils.el, gnus-agent.el, gnus-score.el, messagexmas.el,
1999         mm-decode.el: Standardize possessive apostrophe usage.
2000
2001 2012-02-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2002
2003         * shr.el (shr-column-specs): Protect against TDs with "width: 0%".
2004
2005 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
2006
2007         * parse-time.el (parse-time-string): Allow extractor to return nil.
2008
2009 2012-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2010
2011         * nntp.el (nntp-send-authinfo): Work for secure nntp entry in authinfo.
2012
2013 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
2014
2015         * gnus-start.el (gnus-clean-old-newsrc): Allow a FORCE parameter.
2016
2017 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
2018
2019         * mm-decode.el (mm-shr): Remove "soft hyphens".
2020
2021         * nnimap.el (nnimap-request-list): Return the group names encoded as
2022         utf8.  Otherwise non-European group names don't work.
2023         (nnimap-request-newgroups): Ditto.
2024
2025         * gnus-sum.el (gnus-summary-insert-old-articles): Fix the syntax for
2026         the default in `read-string' (bug#10757).
2027
2028         * gnus-msg.el (gnus-group-post-news): Don't bug out on `C-u a' on
2029         topics (bug#10843).
2030
2031         * nnimap.el (nnimap-log-command): Add the IMAP address to the log
2032         buffer.  Suggested by Herbert Valerio Riedel.
2033         (nnimap-request-move-article): Delete the message from the correct IMAP
2034         server.
2035
2036 2012-02-19  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
2037
2038         * gnus-demon.el (gnus-demon-init): Don't multiply time twice.
2039         Reported by Peter Münster.
2040
2041 2012-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
2042
2043         * shr.el (shr-image-fetched): Make sure we really kill the right
2044         buffer.
2045
2046 2012-02-16  Leo Liu  <sdl.web@gmail.com>
2047
2048         * gnus-start.el (gnus-1): Avoid duplicate entries.
2049
2050 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
2051
2052         * imap.el: Remove.
2053
2054         * nntp.el (nntp-coding-system-for-read): Remove.
2055         (nntp-coding-system-for-write): Ditto.
2056         (nntp-open-connection): Just use `binary' directly.
2057
2058         * gnus-start.el (gnus-clean-old-newsrc): Delete `unexist' from pre-Ma
2059         Gnus 0.3.
2060
2061 2012-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
2062
2063         * mm-decode.el (mm-dissect-singlepart): Guess what the type of
2064         application/octet-stream parts really is.
2065
2066         * gnus-sum.el (gnus-propagate-marks): Remove.
2067
2068 2012-02-15  Paul Eggert  <eggert@cs.ucla.edu>
2069
2070         * shr.el (shr-rescale-image): Undo previous change; see
2071         <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
2072
2073 2012-02-15  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
2074
2075         * gnus.el: Ma Gnus v0.3 is released.
2076
2077 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
2078
2079         * gnus-sum.el (gnus-summary-local-variables): Make
2080         `gnus-newsgroup-unexist' into a local variable.
2081
2082 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
2083
2084         * registry.el (registry-usage-test, registry-persistence-test): Move to
2085         tests/gnustest-registry.el.
2086         (registry-make-testable-db, registry-match-test)
2087         (registry-instantiation-test): Move to tests/gnustest-registry.el.
2088
2089         * gnus-registry.el (gnus-registry-misc-test)
2090         (gnus-registry-usage-test): Move to tests/gnustest-registry.el.
2091
2092         * tests/gnustest-registry.el: New file with the registry and
2093         gnus-registry ERT tests.
2094
2095 2012-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2096
2097         * gnus-msg.el (gnus-summary-resend-message): Make
2098         gnus-summary-resend-message-insert-gcc be last item in
2099         message-header-setup-hook.
2100
2101 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
2102
2103         * nnfolder.el (nnfolder-marks-directory, nnfolder-marks-is-evil)
2104         (nnfolder-marks, nnfolder-marks-file-suffix, nnfolder-marks-modtime):
2105         Remove.
2106         (nnfolder-open-server): Don't use marks.
2107         (nnfolder-request-delete-group): Ditto.
2108         (nnfolder-request-rename-group): Ditto.
2109         (nnfolder-request-set-mark, nnfolder-request-marks)
2110         (nnfolder-group-marks-pathname, nnfolder-marks-changed-p)
2111         (nnfolder-save-marks, nnfolder-open-marks): Remove.
2112
2113         * nnml.el (nnml-marks-is-evil, nnml-marks-file-name, nnml-marks)
2114         (nnml-marks-modtime): Remove.
2115         (nnml-request-delete-group): Don't use marks.
2116         (nnml-request-rename-group): Ditto.
2117         (nnml-request-set-mark, nnml-request-marks, nnml-marks-changed-p)
2118         (nnml-save-marks, nnml-open-marks): Remove.
2119
2120         * nntp.el (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
2121         (nntp-marks-modtime, nntp-marks-directory, nntp-request-set-mark)
2122         (nntp-request-marks, nntp-marks-directory, nntp-marks-changed-p)
2123         (nntp-save-marks, nntp-open-marks, nntp-possibly-create-directory)
2124         (nntp-server-to-method-cache): Remove.
2125
2126         * shr.el (shr-rescale-image): Fix wrong merge.
2127
2128 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
2129
2130         * shr.el (shr-remove-trailing-whitespace): Really delete the padding on
2131         too-wide lines.
2132
2133 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
2134
2135         * nnimap.el (nnimap-record-commands): New variable.
2136         (nnimap-log-command): Use it.
2137         (nnimap-make-process-buffer): Add a space to the process buffer.
2138         (nnimap-transform-headers): Don't bug out on header lines containing
2139         stuff that look like IMAP length encodings.
2140
2141         * shr.el (shr-rescale-image): Allow viewing large images.
2142
2143 2012-02-12  Lars Ingebrigtsen  <larsi@gnus.org>
2144
2145         * nnml.el (nnml-request-compact-group): Delete the marks file after
2146         compaction (bug#10800).
2147
2148         * gnus-art.el (gnus-stop-downloads): Stop `url-queue' downloads on
2149         group exit.
2150
2151         * nnimap.el (nnimap-parse-flags): Parse correctly when we have mixed
2152         QRESYNC/FETCH output.
2153
2154 2012-02-11  Glenn Morris  <rgm@gnu.org>
2155
2156         * sieve-manage.el (sieve-manage-default-stream):
2157         * shr.el (shr):
2158         * nnir.el (nnir-ignored-newsgroups, nnir-summary-line-format)
2159         (nnir-retrieve-headers-override-function)
2160         (nnir-imap-default-search-key, nnir-notmuch-program)
2161         (nnir-notmuch-additional-switches, nnir-notmuch-remove-prefix)
2162         (nnir-method-default-engines):
2163         * message.el (message-cite-reply-position):
2164         * gssapi.el (gssapi-program):
2165         * gravatar.el (gravatar):
2166         * gnus-sum.el (gnus-refer-thread-use-nnir):
2167         * gnus-registry.el (gnus-registry-unfollowed-addresses)
2168         (gnus-registry-max-pruned-entries):
2169         * gnus-picon.el (gnus-picon-inhibit-top-level-domains):
2170         * gnus-int.el (gnus-after-set-mark-hook)
2171         (gnus-before-update-mark-hook):
2172         * gnus-async.el (gnus-async-post-fetch-function):
2173         * auth-source.el (auth-source-cache-expiry):
2174         Add missing :version tags to new defcustoms and defgroups.
2175
2176 2012-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
2177
2178         * gnus-sum.el (gnus-adjust-marked-articles): Add to
2179         `gnus-newsgroup-unexist'.
2180
2181         * gnus.el (gnus-article-mark-lists): Add `unexist' to the list of
2182         marks.
2183         (gnus-article-special-mark-lists): Put the `unexist' in the special
2184         marks list instead.
2185
2186         * gnus-sum.el (gnus-articles-to-read): Don't include unexisting
2187         articles in the list of articles to be selected.
2188
2189         * nnimap.el (nnimap-retrieve-group-data-early): Query for unexisting
2190         articles.
2191         (nnimap-update-info): Keep track of unexisting articles.
2192         (nnimap-update-qresync-info): Ditto.
2193
2194 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
2195
2196         * message.el (message-default-send-mail-function): Made into own
2197         function for reuse by emacsbug.el.
2198
2199 2012-02-09  Juanma Barranquero  <lekktu@gmail.com>
2200
2201         * gnus.el (gnus-method-ephemeral-p): Move after declaration of defsubst
2202         `gnus-sloppily-equal-method-parameters' to avoid a warning.
2203
2204 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
2205
2206         * mm-archive.el (mm-archive-dissect-and-inline): New function.
2207         (mm-archive-dissect-and-inline): Fix up the undisplayer.
2208
2209         * gnus-compat.el: Define `timer-set-function'.
2210
2211         * mm-decode.el (mm-display-external): Output the text from the command
2212         in the buffer after the command finished.  This makes text-based
2213         commands behave better.
2214
2215 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
2216
2217         * gnus-compat.el: Add a compat for the old `url-retrieve'.
2218
2219 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2220
2221         * gnus-compat.el: Make `help-function-arglist' be compatible on Emacs
2222         23.1.
2223
2224 2012-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2225
2226         * gnus-sum.el (gnus-summary-show-thread): Revert last two changes.
2227
2228 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2229
2230         * message.el (smtpmail-smtp-user): Silence compiler warning.
2231
2232 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2233
2234         * message.el (message-multi-smtp-send-mail): Also allow specifying the
2235         SMTP user name.
2236
2237 2012-02-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2238
2239         * gnus-sum.el (gnus-summary-show-thread):
2240         next-single-char-property-change may return nil in XEmacs.
2241         (gnus-summary-article-map): Fix typo.
2242
2243 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
2244
2245         * gnus-msg.el (gnus-msg-mail): Use `message-mail' if Gnus isn't
2246         running.
2247
2248         * nnimap.el (nnimap-wait-for-response): Minor fixup of message string.
2249
2250         * gnus.el (gnus-server-extend-method): Don't add an -address component
2251         if the method already has one (bug#9676).
2252
2253 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
2254
2255         * gnus-sum.el (gnus-summary-insert-old-articles): Use a default instead
2256         of an initial-input for consistency (bug#10757).
2257
2258         * dgnushack.el: Fix XEmacs compilation warning.
2259
2260         * shr.el: Inhibit getting and sending cookies when fetching pictures.
2261
2262         * gnus-html.el (gnus-html-schedule-image-fetching): Ditto.
2263
2264 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2265
2266         * shr.el (shr-remove-trailing-whitespace): Don't strip whitespace from
2267         lines that are narrower than the window width.  Otherwise background
2268         "blocks" will look less readable.
2269
2270 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2271
2272         * nnimap.el (nnimap-transform-headers): Remove unused variable.
2273         (nnimap-transform-headers): Fix parsing BODYSTRUCTURE elements that
2274         have newlines within the strings, and where the UID comes after the
2275         BODYSTRUCTURE element (bug#10537).
2276
2277         * shr-color.el (shr-color-set-minimum-interval): Rename to add prefix
2278         (bug#10732).
2279
2280         * shr.el (shr-insert-document): Add doc string.
2281         (shr-visit-file): Ditto.
2282         (shr-remove-trailing-whitespace): New function.
2283         (shr-insert-document): Use it to clean up trailing whitespace as the
2284         final step (bug#10714).
2285
2286 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2287
2288         * gnus-sum.el (gnus-summary-exit-no-update): Really deaden the summary
2289         buffer if `gnus-kill-summary-on-exit' is nil.
2290
2291 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2292
2293         * gnus-sum.el (gnus-handle-ephemeral-exit): Allow exiting from Gnus
2294         when just reading a single group from "without" Gnus.
2295
2296 2012-02-06  Chong Yidong  <cyd@gnu.org>
2297
2298         * gnus-sum.el (gnus-summary-show-thread):
2299         next-single-char-property-change never returns nil (Bug#8657).
2300
2301 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
2302
2303         * message.el (message-multi-smtp-send-mail): New function.
2304         (message-multi-smtp-send-mail): Respect the X-Message-SMTP-Method
2305         header to implement multi-SMTP functionality.
2306
2307         * gnus-agent.el (gnus-agent-send-mail-function): Removed.
2308         (gnus-agentize): Don't set it.
2309         (gnus-agent-send-mail): Don't use it.
2310
2311         * gnus-sum.el (gnus-summary-widget-backward): New function and
2312         keystroke.
2313
2314         * gnus-compat.el: More the compat functions more compatible.
2315
2316         * shr.el (shr-put-image): Remove underlines from sliced images.
2317         (shr-zoom-image): Compute the region to be replaced more correctly.
2318
2319 2012-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2320
2321         * gnus-msg.el (gnus-gcc-self-resent-messages): New user option.
2322         (gnus-summary-resend-message-insert-gcc): New function.
2323         (gnus-summary-resend-message): Modify message-header-setup-hook and
2324         message-sent-hook to make it work for Gcc.
2325         (gnus-inews-do-gcc): Update the number of unread articles of groups
2326         that messages are Gcc'd to.
2327
2328         * message.el (message-resend): Run message-sent-hook to do Gcc.
2329
2330 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
2331
2332         * lpath.el: Fix an XEmacs compilation warning.
2333
2334         * gnus-compat.el: Require `help-fns' to fix compilation error.
2335
2336         * gnus-registry.el (gnus-registry-fixup-registry): Move the message to
2337         a higher level to silence compilation.
2338
2339         * gnus-art.el (gnus-shr-put-image): Take and pass on a `flags'
2340         parameter to allow controlling the scaling.
2341
2342         * shr.el (shr-zoom-image): New command and keystroke.
2343         (shr-put-image): Take a `size' flag to say how to scale the image.
2344
2345         * gnus-compat.el: Redefine `delete-directory' to provide recursive
2346         deletion unless already defined.
2347
2348         * gnus.el (gnus-compat): Require it.
2349
2350         * gnus-compat.el: New file.
2351
2352         * gnus-start.el (gnus-clean-old-newsrc): New function.
2353         (gnus-read-newsrc-file): Use it.
2354
2355         * mm-archive.el (mm-dissect-archive): Use it to get all file names.
2356         Use recursive deletion.
2357         (mm-dissect-archive): Add support for zip files.
2358
2359         * gnus-util.el (gnus-recursive-directory-files): New function.
2360
2361         * mm-archive.el (mm-archive-list-files): Inline text and image parts.
2362         (mm-archive-decoders): Add tgz support.
2363
2364         * mm-decode.el (mm-shr): Make sure that the HTML ends with a newline.
2365         Otherwise inserting text into the Gnus buffer can look odd.
2366
2367         * gnus-art.el (gnus-mime-inline-part): Slight clean-up.
2368
2369         * mm-archive.el (mm-archive-decoders): Add support for tar.
2370
2371         * gnus.el (gnus-logo-color-alist): Change the colours for Ma Gnus.
2372
2373         * nnmail.el (nnmail-extra-headers): Add Cc to the default.
2374
2375 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
2376
2377         * mm-decode.el (mm-dissect-singlepart): Check that the decoder exists.
2378
2379         * mm-archive.el: New file.
2380
2381         * mm-decode.el (mm-dissect-singlepart): Use it to decode ms-tnef files.
2382
2383         * mm-util.el (mm-find-buffer-file-coding-system): Comment fix.
2384
2385         * message.el (message-goto-*): Make all the `message-goto-*' commands
2386         push the mark before moving point.  This makes it easier to go back to
2387         where you came from after editing whatever you jumped to.
2388
2389 2012-01-31  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
2390
2391         * gnus.el: Ma Gnus v0.1 is released.
2392
2393 2012-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
2394
2395         * nnimap.el (nnimap-open-server): Allow switching the nnoo server
2396         without reconnecting.
2397         (nnimap-possibly-change-group): Ditto.
2398         (nnimap-finish-retrieve-group-infos): Don't reconnect if the server
2399         connection has died before being called.
2400
2401 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
2402
2403         * nnimap.el (nnimap-retrieve-group-data-early): Don't say we're doing
2404         an initial sync unless we're really doing one.
2405
2406         * gnus-group.el (gnus-group-read-ephemeral-group): Don't add a new
2407         address parameter if one already exists (bug#9676).
2408
2409         * gnus-msg.el (gnus-summary-mail-forward): Respect the process marks,
2410         not the prefix, as documented (bug#10689).
2411
2412 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
2413
2414         * gnus.el (gnus-valid-select-methods): nnmaildir also saves marks in
2415         the "server".
2416
2417         * gnus-group.el (gnus-group-get-new-news-this-group): Don't overwrite
2418         the real error message with the useless "previously known to be down".
2419         Which isn't even correct.
2420
2421         * nntp.el (nntp-open-connection): Report the error message if the nntp
2422         server can't be reached.
2423
2424         * nnimap.el (nnimap-retrieve-group-data-early): Keep track of how many
2425         groups we do a total scan for.
2426         (nnimap-wait-for-response): Say that we're doing a total scan, if we're
2427         doing that.
2428
2429 2012-01-31  Jim Meyering  <jim@meyering.net>
2430
2431         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
2432         Correct a comment (insert "not") and hide nominally-doubled "to".
2433
2434 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
2435
2436         * gnus.el (gnus-version): Change name to "Ma Gnus".
2437
2438 2012-01-30  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
2439
2440         * gnus-agent.el (gnus-agent-auto-agentize-methods): Point to the Agent
2441         section in the manual.
2442
2443 2012-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
2444
2445         * rfc2047.el (rfc2047-encode-region): Allow not folding the encoded
2446         words.
2447         (rfc2047-encode-string): Ditto.
2448         (rfc2047-encode-parameter): Don't fold parameters.  Some MUAs do not
2449         understand folded filename="..." parameters, for instance.
2450
2451         * nnimap.el (nnimap-wait-for-response): Include the imap server name in
2452         the message for greater debuggability.
2453
2454 2012-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
2455
2456         * mm-view.el (mm-display-inline-fontify): Bind `font-lock-support-mode'
2457         instead of setting it locally, since the latter doesn't seem to have
2458         any effect (most of the time).
2459
2460 2012-01-27  Elias Pipping  <pipping@lavabit.com>  (tiny change)
2461
2462         * shr.el (shr-browse-url): Fix the name of the `browse-url-mail'
2463         function call.
2464
2465 2012-01-27  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
2466
2467         * gnus-demon.el (gnus-demon-run-callback, gnus-demon-init): Convert to
2468         seconds, and make the repeat clause with HH:MM specs work as
2469         documented.
2470
2471 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
2472
2473         * proto-stream.el (proto-stream-capability-open): Fall back on
2474         :end-of-command if :end-of-capability doesn't exist.
2475
2476 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2477
2478         * gnus-sum.el (gnus-summary-mode): Don't make bidi-paragraph-direction
2479         bound globally in old Emacsen and XEmacsen.
2480
2481 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
2482
2483         * gnus-start.el (gnus-get-unread-articles): Clear out "early" methods
2484         so that previous errors don't prohibit getting new news.
2485
2486         * nnimap.el (nnimap-retrieve-group-data-early): Ditto.
2487
2488         * nntp.el (nntp-retrieve-group-data-early): Ditto.
2489
2490 2012-01-26  Nick Alcock  <nick.alcock@oracle.com>  (tiny change)
2491
2492         * gnus.el (gnus-group-find-parameter): Check for liveness of the
2493         buffer, not of the string which is its name.
2494
2495 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
2496
2497         * proto-stream.el (proto-stream-capability-open): Wait for
2498         :end-of-capability, not :end-of-command.
2499
2500         * gnus-sum.el (gnus-summary-move-article): Don't propagate marks to
2501         non-server-marks groups.
2502         (gnus-group-make-articles-read): Ditto.
2503
2504         * gnus-srvr.el (gnus-server-prepare): Use it to avoid showing ephemeral
2505         methods (bug#9676).
2506
2507         * gnus.el (gnus-method-ephemeral-p): New function.
2508
2509 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2510
2511         * gnus-sum.el (gnus-summary-mode): Force paragraph direction to be
2512         left-to-right.
2513
2514 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
2515
2516         * nnimap.el (nnir-search-thread): Autoload to avoid a compilation
2517         warning.
2518
2519 2012-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
2520
2521         * gnus-sum.el (gnus-summary-line-format-alist): Don't try to
2522         macroexpand the nnir things, since they haven't been defined yet, and
2523         nnir requires gnus-sum.
2524
2525 2012-01-24  Julien Danjou  <julien@danjou.info>
2526
2527         * color.el (color-rgb-to-hsl): Fix value computing.
2528         (color-hue-to-rgb): New function.
2529         (color-hsl-to-rgb): New function.
2530         (color-clamp, color-saturate-hsl, color-saturate-name)
2531         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
2532         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
2533
2534 2012-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2535
2536         * mm-decode.el (mm-interactively-view-part): Fix prompt.
2537
2538 2012-01-19  Julien Danjou  <julien@danjou.info>
2539
2540         * color.el (color-name-to-rgb): Use the white color to find the max
2541         color component value and return correctly computed values.
2542         (color-name-to-rgb): Add missing float conversion for max value.
2543
2544 2012-01-10  Teodor Zlatanov  <tzz@lifelogs.com>
2545
2546         * nntp.el (nntp-send-authinfo): Query `auth-source-search' with the
2547         logical server name in addition to the actual machine address.
2548
2549         * auth-source.el (auth-source-user-and-password): Add convenience
2550         wrapper to search by just host and optionally user.
2551
2552 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2553
2554         * shr.el (shr-visit-file): Move point to the beginning of the buffer
2555         after rendering.
2556
2557 2012-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
2558
2559         * gnus-sync.el (gnus-sync-newsrc-groups): Quote normally.
2560         (gnus-sync-lesync-pre-save-group-entry): Remove invalid invlists.
2561         (gnus-sync-lesync-normalize-group-entry): Ignore a few more keys.
2562
2563 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2564
2565         * gnus-sum.el (gnus-summary-read-group): Document more parameters
2566         (bug#9693).
2567         (gnus-summary-setup-buffer): Document return value (bug#9697).
2568
2569         * mm-decode.el (mm-interactively-view-part): Use `completing-read',
2570         since ido doesn't work on symbols (bug#9632).
2571
2572         * gnus.el (gnus-group-fast-parameter): Use the same precedence rules
2573         when getting a single value as when getting all the values.  This means
2574         that atoms like `gcc-self' work cumulatively, like variable settings,
2575         instead of getting the value from the last matching clause.
2576         (gnus-group-find-parameter): Protect against the group buffer not
2577         existing (bug#9585).
2578
2579 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2580
2581         * gnus-start.el (gnus-activate-group): Document more parameters
2582         (bug#9694).
2583
2584         * gnus-group.el (gnus-group-read-ephemeral-group): Doc clarification
2585         (bug#9692).
2586
2587         * gnus-agent.el (gnus-agent-store-article): Tell the Agent when the
2588         article was fetched, so that it can be expired later (bug#9958).
2589         (gnus-agent-summary-fetch-series): Add doc string.
2590         (gnus-agent-summary-fetch-group): Don't remove tick and dormant marks
2591         (bug#9517).
2592
2593         * nntp.el (nntp-retrieve-groups): Refuse to do retrieval when an async
2594         retrieval is happening.
2595
2596         * gnus.el (gnus-parameters): Doc fix.
2597
2598 2012-01-06  Dave Abrahams  <dave@boostpro.com>
2599
2600         * gnus-sum.el (gnus-summary-refer-thread): If the subtree is hidden,
2601         show the thread after expansion.
2602
2603 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2604
2605         * gnus-art.el (article-narrow-to-head): If the head is completely
2606         empty, narrow to the empty region (bug#9764).
2607
2608         * gnus-sum.el (gnus-summary-mark-article-as-unread): Mark articles as
2609         read, and then mark them as unread only when the unread mark is used.
2610         This makes `C-- T k' actually work, even though it's confusing.
2611
2612         * gnus-win.el (gnus-all-windows-visible-p): Ensure that the buffer is
2613         alive before we try to find its window.
2614
2615 2012-01-06  Brian Sniffen  <bsniffen@akamai.com>  (tiny change)
2616
2617         * mm-decode.el (mm-display-external): Use a longer timeout for the
2618         deletion to allow slow programs to display the file.
2619
2620 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2621
2622         * gnus-art.el (gnus-article-browse-delete-temp-files): Fix up the
2623         prompt to be less confusing.
2624
2625         * gnus-msg.el (gnus-summary-reply): Do not give a `switch-to-buffer'
2626         argument to `message-reply'.  This broke `special-display-*' frame
2627         pop-uping (bug#10238).
2628
2629 2012-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2630
2631         * starttls.el (starttls-available-p): Return nil on Windows/MS-DOS
2632         systems, since these allegedly don't work there.
2633
2634 2012-01-04  Chris Gray  <chrismgray@gmail.com>  (tiny change)
2635
2636         * mm-decode.el (mm-shr): Check that `gnus-summary-buffer' really is a
2637         live buffer.
2638
2639 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2640
2641         * nnir.el (nnir-retrieve-headers): Protect against the article not
2642         existing on the server (bug#10335).
2643
2644 2012-01-04  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
2645
2646         * gnus-agent.el (gnus-agent-load-local): Recompute
2647         gnus-agent-article-local on changing method.
2648
2649 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2650
2651         * gnus.el (gnus-parameters): Note precedence.
2652
2653 2012-01-04  Leo Liu  <sdl.web@gmail.com>
2654
2655         * nndraft.el (nndraft-update-unread-articles): Don't move point around
2656         in the group buffer.
2657
2658 2012-01-04  Julien Danjou  <julien@danjou.info>
2659
2660         * nnimap.el (nnimap-update-info): Fix an error when all articles UIDs
2661         change.
2662
2663 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2664
2665         * shr.el (shr-rescale-image): Add :ascent 100 to the rescaled picture,
2666         too.
2667
2668         * nntp.el (nntp-retrieve-group-data-early): Use it.
2669
2670 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2671
2672         * nntp.el (nntp-retrieval-in-progress): New variable.
2673         (nntp-make-process-buffer): Make it buffer-local.
2674
2675         * gnus-demon.el (gnus-demon-time-to-step): Resurrect function lost in
2676         2010.
2677         (gnus-demon-init): Use it to compute the time if time is on the form
2678         "04:23".
2679
2680         * gnus-topic.el (gnus-topic-history): Define `gnus-topic-history'.
2681
2682         * nnimap.el (nnimap-finish-retrieve-group-infos): Check the connection
2683         status in the correct buffer.
2684
2685 2012-01-03  Leo Liu  <sdl.web@gmail.com>
2686
2687         * gnus-topic.el (gnus-topic-goto-next-group): Don't move point around
2688         when opening topics (bug#10407).
2689
2690 2011-12-30  Paul Eggert  <eggert@cs.ucla.edu>
2691
2692         * gnus-cus.el (gnus-score-customize):
2693         * gnus-sum.el (gnus-sort-gathered-threads):
2694         * message.el (message-shorten-references):
2695         * nnmairix.el (nnmairix-request-group):
2696         * uudecode.el (uudecode-decode-region-internal): Spelling fix.
2697
2698 2011-12-29  Paul Eggert  <eggert@cs.ucla.edu>
2699
2700         * gnus-agent.el (gnus-agent-regenerate-group):
2701         * gnus-int.el (gnus-retrieve-group-data-early):
2702         * mm-util.el (mm-codepage-ibm-list):
2703         * nndiary.el (Commentary, nndiary-get-new-mail):
2704         * nnir.el (nnir):
2705         * pgg-parse.el (pgg-parse-symmetric-key-algorithm-alist): Spelling fix.
2706
2707 2011-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2708
2709         * mm-view.el (mm-display-inline-fontify): Add comment.
2710
2711 2011-12-21  Paul Eggert  <eggert@cs.ucla.edu>
2712
2713         * nndiary.el (nndiary-parse-schedule-value, nndiary-parse-schedule):
2714         * ntlm.el (ntlm-smb-dohash): Spelling fix.
2715
2716 2011-12-19  Paul Eggert  <eggert@cs.ucla.edu>
2717
2718         * gnus-art.el (gnus-split-methods):
2719         * gnus-msg.el (gnus-configure-posting-styles):
2720         * gnus-spec.el (gnus-parse-simple-format):
2721         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
2722         * message.el (message-do-actions): Spelling fix.
2723
2724 2011-12-15  Juri Linkov  <juri@jurta.org>
2725
2726         * mm-decode.el (mm-inline-media-tests): Add missing
2727         `mm-handle-media-subtype'.
2728
2729 2011-12-14  Paul Eggert  <eggert@cs.ucla.edu>
2730
2731         * gnus-group.el (gnus-group-tool-bar):
2732         * gnus-sum.el (gnus-summary-tool-bar):
2733         * message.el (message-tool-bar):
2734         * rfc2231.el (rfc2231-parse-string): Spelling fix.
2735
2736 2011-12-12  Paul Eggert  <eggert@cs.ucla.edu>
2737
2738         * plstore.el (plstore--insert-buffer): Spelling fix.
2739
2740 2011-12-09  Tassilo Horn  <tassilo@member.fsf.org>
2741
2742         * message.el (message-valid-fqdn-regexp): Update with newly approved
2743         top-level domain names ".tel" and ".asia".
2744
2745 2011-12-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2746
2747         * gnus-sum.el (gnus-summary-show-article): Don't load shr
2748         unconditionally.
2749
2750 2011-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2751
2752         * message.el (message-pop-to-buffer): Use pop-to-buffer instead of
2753         pop-to-buffer-same-window for old Emacsen.
2754
2755 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
2756
2757         * gnus-sum.el (gnus-summary-make-tool-bar): Fix typo.
2758
2759 2011-12-05  Paul Eggert  <eggert@cs.ucla.edu>
2760
2761         * netrc.el (netrc-credentials): Spelling fix.
2762
2763 2011-12-04  Paul Eggert  <eggert@cs.ucla.edu>
2764
2765         * gnus-fun.el (gnus-fun-ppm-change-string):
2766         * gnus-msg.el (gnus-inews-do-gcc):
2767         * gnus-sum.el (gnus-summary-find-for-reselect):
2768         * gnus.el (gnus-summary-cancelled):
2769         * message.el (message-cancel-hook, message-send-news):
2770         * nndiary.el (nndiary-headers, nndiary-parse-schedule-value):
2771         * nnir.el (nnir-run-hyrex):
2772         * nntp.el (nntp-with-open-group-function):
2773         * pgg.el (pgg-pending-timers): Spelling fix.
2774
2775 2011-12-04  Chong Yidong  <cyd@gnu.org>
2776
2777         * message.el (message-pop-to-buffer): Partially revert 2011-11-30
2778         change (Bug#10200).
2779
2780 2011-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2781
2782         * compface.el (uncompface):
2783         * gnus-art.el (gnus-article-x-face-command): Update the header format
2784         of icon data for the most recent icontopbm program.
2785
2786 2011-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2787
2788         * gnus-msg.el (gnus-inews-do-gcc):
2789         * message.el (message-send-mail):
2790         * mml.el (mml-generate-mime): Share the value of the buffer-local
2791         `message-options' variable between a draft buffer and temprary working
2792         buffers.
2793
2794 2011-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2795
2796         * message.el (message-pop-to-buffer): Revert 2011-09-11 change.
2797
2798 2011-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2799
2800         * gnus-art.el (gnus-article-browse-html-parts): Convert link file names
2801         for Cygwin.
2802
2803 2011-11-27  Paul Eggert  <eggert@cs.ucla.edu>
2804
2805         * gnus-group.el (gnus-group-prepare-flat):
2806         * mm-bodies.el (mm-encode-body):
2807         * mml.el (mml-preview):
2808         * nnml.el (nnml-request-compact-group):
2809         * pop3.el (pop3-stream-type): Spelling fix.
2810
2811 2011-11-26  Paul Eggert  <eggert@cs.ucla.edu>
2812
2813         * gnus-start.el (gnus-newsrc-to-gnus-format): Spelling fix.
2814
2815 2011-11-25  Paul Eggert  <eggert@cs.ucla.edu>
2816
2817         * color.el (color-rgb-to-hsl):
2818         * gmm-utils.el (gmm-tool-bar-style):
2819         * gnus-group.el (gnus-group-prepare-flat):
2820         * gnus-topic.el (gnus-topic-prepare-topic):
2821         * mm-decode.el (mm-discouraged-alternatives):
2822         * rfc2047.el (rfc2047-encode-1):
2823         * starttls.el: Spelling fix.
2824
2825 2011-11-24  Glenn Morris  <rgm@gnu.org>
2826
2827         * binhex.el (binhex-begin-line): Give it basic doc-string.
2828
2829         * starttls.el, tls.el: Fix case of "GnuTLS".
2830
2831 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
2832
2833         * gnus-group.el (gnus-group-highlight): Fix typo.
2834
2835 2011-11-24  Adam W  <adam_w67@yahoo.com>  (tiny change)
2836
2837         * mail-source.el (mail-source-fetch-maildir): Don't expect the return
2838         value of `delete-file', that returns nil for a local file but returns t
2839         for a remote file using ssh.
2840
2841 2011-11-22  Paul Eggert  <eggert@cs.ucla.edu>
2842
2843         * gnus-sum.el (gnus-summary-save-article): Spelling fix.
2844
2845 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2846
2847         * shr.el (shr-table-horizontal-line): Use "?\s" instead of "? " to
2848         avoid later breakage.
2849
2850 2011-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2851
2852         * gnus-art.el (gnus-article-setup-buffer): Decode group name used for
2853         article buffers' name.
2854
2855 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2856
2857         * shr.el (shr-table-horizontal-line): Revert infinite loops introduced
2858         by Paul Eggert's spellfixes two days ago.
2859
2860 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2861
2862         * dgnushack.el (fboundp): Define `with-demoted-errors' for Emacsen that
2863         doesn't have it.
2864
2865         * mm-view.el (mm-display-inline-fontify): Make the font-lock variables
2866         buffer-local instead of binding them to avoid warnings.  Also demote
2867         errors (bug#10063).
2868         (font-lock-mode-hook): Shut up byte compiler.
2869
2870 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
2871
2872         * mm-util.el (mm-charset-after):
2873         * nnir.el (nnir-run-hyrex):
2874         * ntlm.el (ntlm-build-auth-request, ntlm-build-auth-response)
2875         (ntlm-get-password-hashes, ntlm-md4hash):
2876         * smime.el: Fix typo.
2877
2878 2011-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2879
2880         * gnus-agent.el (gnus-agent-expire-group-1):
2881         * nndiary.el (nndiary-last-occurence):
2882         * nnimap.el (nnimap-request-set-mark):
2883         * nnmairix.el (nnmairix-only-use-registry):
2884         * gnus-group.el (gnus-group-prepare-flat):
2885         * gnus-sum.el (gnus-decode-encoded-word-methods):
2886         * message.el (message-wash-subject):
2887         * nntp.el (nntp-retrieve-headers-with-xover):
2888         * smime.el (smime-certificate-directory): Spelling fix.
2889
2890 2011-11-19  Paul Eggert  <eggert@cs.ucla.edu>
2891
2892         * nnmail.el (nnmail-get-new-mail-1): Remove unused local variables.
2893
2894         * color.el:
2895         * gnus-agent.el (gnus-agent-possibly-alter-active):
2896         * gnus-dired.el (gnus-dired-print):
2897         * mail-parse.el:
2898         * nnmairix.el (nnmairix-request-group):
2899         * shr.el (shr-image-displayer):
2900         * sieve-manage.el:
2901         * spam.el (spam-autodetect-recheck-messages): Spelling fix.
2902
2903 2011-11-18  Paul Eggert  <eggert@cs.ucla.edu>
2904
2905         * gnus-sum.el (gnus-auto-select-subject):
2906         * spam-report.el (spam-report-resend): Spelling fix.
2907
2908 2011-11-17  Paul Eggert  <eggert@cs.ucla.edu>
2909
2910         * gnus-agent.el (gnus-agent-get-undownloaded-list):
2911         * gnus-art.el (gnus-default-article-saver):
2912         * gnus-srvr.el (gnus-server-copy-server):
2913         * gnus.el (gnus-sloppily-equal-method-parameters):
2914         * html2text.el (html2text-format-tag-list):
2915         * message.el (message-narrow-to-head):
2916         * nndiary.el:
2917         * nnmairix.el (nnmairix-determine-original-group-from-registry):
2918         * sieve.el: Spelling fix.
2919
2920 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
2921
2922         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
2923         * gnus-sum.el (gnus-summary-make-menu-bar):
2924         * gnus-uu.el (gnus-uu-decode-postscript)
2925         (gnus-uu-decode-postscript-and-save):
2926         * mailcap.el (mailcap-print-command):
2927         * registry.el (registry-lookup, registry-lookup-breaks-before-lexbind):
2928         Fix typos.
2929
2930 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
2931
2932         * gnus-art.el (gnus-article-part-wrapper):
2933         * html2text.el (html2text-fix-paragraphs):
2934         * mm-decode.el (mm-image-fit-p):
2935         * rfc2047.el (rfc2047-encode-message-header):
2936         * shr-color.el (shr-color-visible-distance-min)
2937         (shr-color-relative-to-absolute, set-minimum-interval)
2938         (shr-color-visible): Fix typos.
2939
2940 2011-11-15  Paul Eggert  <eggert@cs.ucla.edu>
2941
2942         * gmm-utils.el (gmm-tool-bar-item):
2943         * gnus-art.el (gnus-treat-body-boundary):
2944         * gnus-diary.el (gnus-user-format-function-d):
2945         * gnus-start.el (gnus-get-unread-articles):
2946         * pgg-gpg.el (pgg-gpg-update-agent):
2947         * smime.el (smime-cert-by-ldap-1): Spelling fix.
2948
2949 2011-11-14  Paul Eggert  <eggert@cs.ucla.edu>
2950
2951         * gnus-topic.el (gnus-group-prepare-topics):
2952         * gnus-uu.el (gnus-extract-view):
2953         * gnus-win.el (gnus-use-frames-on-any-display): Spelling fix.
2954
2955 2011-11-09  Teodor Zlatanov  <tzz@lifelogs.com>
2956
2957         * spam.el: Move BBDB autoloads.
2958         (spam-exists-in-BBDB-p): New function to do the BBDB search directly in
2959         BBDB 2 and 3.
2960         (spam-check-BBDB): Use it.
2961         (spam-enter-ham-BBDB): Use it.
2962
2963 2011-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2964
2965         * smime.el (smime-draw-buffer): Spelling fix.
2966
2967 2011-10-31  Peter Münster  <pmrb@free.fr>  (tiny change)
2968
2969         * gnus-group.el (gnus-group-get-new-news): New parameter `one-level'
2970         for scanning exactly one level.
2971         * gnus-start.el (gnus-get-unread-articles): Ditto.
2972
2973 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2974
2975         * gnus-sum.el (gnus-articles-to-read): Change wording in prompt to be
2976         slightly clearer.
2977
2978 2011-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
2979
2980         * gnus-sync.el: More commentary about setup.
2981
2982 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2983
2984         * message.el (message-send-and-exit): Document `arg'.
2985
2986 2011-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2987
2988         * nnimap.el (nnimap-open-connection-1): Use tcp-keealive if possible.
2989
2990 2011-11-02  Teodor Zlatanov  <tzz@lifelogs.com>
2991
2992         * gnus-sync.el: More commentary about `gnus-sync-read' issues.
2993
2994         * gnus-util.el (gnus-bound-and-true-p): Another comment to explain why
2995         we don't use `bound-and-true-p'.
2996
2997 2011-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
2998
2999         * gnus-util.el (gnus-bound-and-true-p): Remove.
3000         (gnus-bound-and-true-dumber-p): Rename to `gnus-bound-and-true-p'.
3001         * nnir.el: Use it.
3002         * nnmairix.el: Use it.
3003
3004 2011-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
3005
3006         * gnus-sync.el: Improve docs about CouchDB admins.
3007
3008         * gnus-util.el (gnus-bound-and-true-dumber-p): Define new, slower, dumb
3009         function because `gnus-bound-and-true-p' doesn't work well in XEmacs
3010         for reasons unknown.
3011         * nnir.el: Use it.
3012         * nnmairix.el: Use it.
3013
3014         * nnregistry.el: Remove unnecessary `gnus-registry-enabled' defvar.
3015         * nnir.el: Ditto.
3016         * nnmairix.el: Ditto.
3017
3018         * gnus-registry.el (gnus-registry-enabled): Default to nil.
3019
3020 2011-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
3021
3022         * gnus-sync.el (gnus-sync-lesync-setup): Fix salt when user setup is
3023         not needed.  Provide xmlplistread list function to produce XML plist
3024         output for non-Gnus LeSync clients.
3025
3026 2011-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
3027
3028         * gnus-fallback-lib/json.el: Add for XEmacs and Emacs 22 support.
3029
3030         * gnus-sync.el: Add LeSync synchronization backend and logic to read
3031         and save against it.  Group subscriptions, read marks, other marks,
3032         subscription levels, topic names, and topic offsets (the group's
3033         position within the topic) are saved.  This is an experimental backend
3034         and may change significantly.  Load json.el from the gnus-fallback-lib
3035         if it's not available otherwise.
3036         (gnus-sync-save): Don't use `apply-partially' because of XEmacs.
3037
3038 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3039
3040         * message.el (message-completion-function): Make sure
3041         message-tab-body-function is not attempted if one of
3042         message-completion-alist fails to find a completion (bug#9158).
3043
3044 2011-10-26  Daiki Ueno  <ueno@unixuser.org>
3045
3046         * mml.el (mml-quote-region): Quote <#secure> tag.
3047         (mml-generate-mime-1): Unquote <#secure> tag.
3048
3049 2011-10-20  Chong Yidong  <cyd@gnu.org>
3050
3051         * gnus-cite.el (gnus-message-citation-mode): Doc fix (in Emacs 24,
3052         calling a minor mode from Lisp with nil arg enables it, so we have to
3053         make the wording a bit ambiguous here).
3054
3055 2011-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
3056
3057         * gnus-util.el (gnus-bound-and-true-p): Macro for XEmacs compatibility.
3058         * nnir.el (nnir-mode): Use it.
3059         * nnmairix.el (nnmairix-determine-original-group-from-registry):
3060         Use it.
3061
3062         * nnir.el (gnus-registry-enabled): Defvar to keep the compiler happy.
3063         * nnmairix.el (gnus-registry-enabled): Ditto.
3064
3065 2011-10-17  Dave Abrahams  <dave@boostpro.com>
3066
3067         * gnus-registry.el (gnus-registry-enabled): Add new variable (Bug#9691).
3068         (gnus-registry-install-shortcuts): Set `gnus-registry-install' to 'ask
3069         only while we need to find out if it should be t or nil.
3070         (gnus-registry-initialize): Don't set `gnus-registry-install' to t.
3071         (gnus-registry-install-hooks): Set `gnus-registry-enabled' to t when
3072         the registry is installed.  Set it to nil when it's unloaded.
3073         (gnus-registry-install-p): Provide user guidance for the initial value
3074         of `gnus-registry-install' when it's 'ask, otherwise return its value.
3075         * nnregistry.el (nnregistry-open-server, nnregistry-server-opened):
3076         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
3077         * nnmairix.el (nnmairix-determine-original-group-from-registry):
3078         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
3079         * nnir.el (nnir-mode): Use `gnus-registry-enabled' instead of
3080         `gnus-registry-install'.
3081
3082 2011-10-17  Daiki Ueno  <ueno@unixuser.org>
3083
3084         * mml2015.el (mml2015-epg-find-usable-key): Add comment about the
3085         previous change.
3086         * mml1991.el (mml1991-epg-find-usable-key): Skip the whole key if the
3087         primary key is marked as disabled.
3088
3089 2011-10-17  Christian von Roques  <roques@mti.ag>  (tiny change)
3090
3091         * mml2015.el (mml2015-epg-find-usable-key): Skip the whole key if the
3092         primary key is marked as disabled.
3093
3094 2011-10-11  Andreas Schwab  <schwab@linux-m68k.org>
3095
3096         * html2text.el (html2text-clean-anchor): Check for quotes around
3097         `href' value.
3098
3099 2011-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
3100
3101         * spam.el (spam-check-BBDB): Simplify and support BBDB 3.x when
3102         searching.  Drop `bbdb-cache'.
3103
3104 2011-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3105
3106         * message.el (message-signed-or-encrypted-p): Exclude header when
3107         checking if there is signed or encrypted body in text/plain message.
3108
3109 2011-10-09  Andreas Schwab  <schwab@linux-m68k.org>
3110
3111         * html2text.el (html2text-get-attr): Correctly handle attribute values
3112         containing "=".
3113
3114 2011-09-22  Kan-Ru Chen  <kanru@kanru.info>
3115
3116         * ecomplete.el (ecomplete-display-matches): Use a local keymap to
3117         handle bindings.
3118
3119 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3120
3121         * gnus-win.el (gnus-configure-windows): Protect against reading
3122         ephemeral groups outside of Gnus.
3123
3124 2011-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3125
3126         * shr.el (shr-tag-img): Don't get images displayed in tables.
3127
3128 2011-10-03  Glenn Morris  <rgm@gnu.org>
3129
3130         * gnus-group.el (gnus-bug-group-download-format-alist): Once again get
3131         the "maintainer" version of debbugs.gnu.org reports.
3132
3133 2011-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3134
3135         * shr.el (shr-tag-img): Add a space at the end of an ALT image text to
3136         make asynchronous adjacent image insertion work better.
3137
3138 2011-09-27  Daiki Ueno  <ueno@unixuser.org>
3139
3140         * plstore.el (plstore-select-keys, plstore-encrypt-to): Clarify
3141         documentation.
3142
3143 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3144
3145         * gnus-uu.el (gnus-uu-grab-articles): Require gnus-async so that
3146         `gnus-asynchronous' isn't shadowed.
3147
3148 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3149
3150         * gnus-xmas.el (gnus-xmas-define): Add `member-ignore-case'.
3151
3152         * nnimap.el (nnimap-wait-for-response): Message less (bug#9540).
3153         (nnimap-insert-partial-structure): The charset parameter isn't
3154         case-sensitive.
3155
3156         * nnheader.el (nnheader-message-maybe): New function.
3157
3158         * shr.el (shr-tag-table): Render totally broken tables better.
3159
3160         * mml.el (mml-generate-mime-1): Don't alter the contents if we're
3161         computing the boundary.
3162
3163 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3164
3165         * pop3.el (pop3-number-of-responses): Remove.
3166         (pop3-wait-for-messages): Rewrite to take linear time instead of
3167         exponential time.
3168
3169 2011-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3170
3171         * gnus-sum.el (gnus-summary-show-article): Bind `shr-ignore-cache' to
3172         re-fetch images.
3173
3174         * shr.el (shr-tag-img): Support a new variable `shr-ignore-cache' to
3175         re-fetch images when hitting `g' in Gnus.
3176
3177 2011-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
3178
3179         * mml.el (mml-inhibit-compute-boundary): New internal variable.
3180         (mml-compute-boundary): Don't check collision if it is non-nil.
3181         (mml-compute-boundary-1): Use mml-generate-mime-1 to encode part
3182         before checking collision.
3183
3184 2011-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3185
3186         * message.el (message-indent-citation): Really make sure there's a
3187         newline at the end.
3188
3189         * nnimap.el (nnimap-parse-flags): Make regexp less prone to overflows.
3190         Fix suggested by John Wiegley.
3191
3192         * pop3.el (pop3-open-server): Fix +OK end-of-command regexp.
3193
3194         * gnus-art.el (gnus-treat-hide-citation): Add doc.
3195
3196         * message.el (message-default-send-rename-function): Break out into its
3197         own function.
3198
3199         * ecomplete.el (ecomplete-display-matches): Revert patch since it
3200         doesn't work under XEmacs.
3201
3202         * nnimap.el (nnimap-map-port): New function to connect to 993 instead
3203         of "imaps" to word around Windows problems.
3204         (nnimap-open-connection-1): Use it.
3205
3206         * message.el (message-indent-citation): Revert last change which made
3207         `F' not work.
3208
3209 2011-09-13  Kan-Ru Chen  <kanru@kanru.info>
3210
3211         * ecomplete.el (ecomplete-display-matches): Intercept key sequence from
3212         terminal as well.
3213
3214 2011-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
3215
3216         * mm-view.el (mm-display-inline-fontify): Don't run doc-view-mode
3217         because it displays images using overlays that aren't easy to copy to
3218         the article buffer.
3219
3220 2011-09-20  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
3221
3222         * message.el (message-indent-citation): Fix empty line removal at the
3223         end of the citation.
3224
3225 2011-09-20  Julien Danjou  <julien@danjou.info>
3226
3227         * auth-source.el (auth-source-netrc-create): Use default value for
3228         password if specified.  Evaluate default.
3229         (auth-source-plstore-create): Ditto.
3230         (auth-source-plstore-create, auth-source-netrc-create): Fix default
3231         value evaluation.
3232         (auth-source-netrc-create): Typo fix.
3233         (auth-source-plstore-create): Ditto.
3234
3235         * password-cache.el (password-cache-remove): Remove entries even if the
3236         value is nil, so that password with a nil value (negative caching) is
3237         possible to invalidate.
3238
3239         * auth-source.el (auth-source-format-cache-entry): New function.
3240
3241 2011-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3242
3243         * gnus-fun.el (gnus-convert-image-to-x-face-command): Doc fix.
3244
3245 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3246
3247         * mm-decode.el (mm-inline-media-tests): Fix typo in regexp.
3248
3249 2011-09-19  Julien Danjou  <julien@danjou.info>
3250
3251         * auth-source.el (auth-source-netrc-parse): Use an obfuscation method
3252         which work with things that are not ASCII.
3253
3254 2011-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3255
3256         * mm-decode.el (mm-inline-media-tests): Support imagemagick images.
3257
3258 2011-09-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3259
3260         * gnus-sum.el (gnus-summary-read-group-1): Bump the "Retrieving"
3261         message level.
3262
3263 2011-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
3264
3265         * message.el (message-read-from-minibuffer): Make abbrev expansion work.
3266
3267 2011-09-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3268
3269         * gnus.el (gnus-interactive-exit): Update defcustom spec.
3270
3271 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3272
3273         * gnus.el (gnus-nntp-server): Move to gnus-int.el to silence bytecomp.
3274         * gnus-int.el (gnus-nntp-server): Move from gnus.el.
3275
3276 2011-09-12  Andrew Cohen  <cohen@andy.bu.edu>
3277
3278         * gnus-group.el (gnus-group-list-limit-map, gnus-group-list-flush-map)
3279         (gnus-group-list-plus-map): Allow limiting, flushing and plusing ticked
3280         articles.
3281
3282 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
3283
3284         * message.el (message-pop-to-buffer): Default to switch-to-buffer.
3285         (message-mail-other-window, message-mail-other-frame)
3286         (message-news-other-window, message-news-other-frame):
3287         Use switch-to-buffer-other-frame and switch-to-buffer-other-window
3288         instead of setting buffer display varibles.
3289
3290 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3291
3292         * gnus-group.el (gnus-group-list-limit): Explain what the command does.
3293
3294         * gnus-sum.el (gnus-fetch-headers): Bump message level.
3295
3296 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3297
3298         * gnus-dup.el (gnus-dup-suppress-articles): Move "Suppressing
3299         duplicates" to a higher level.
3300
3301         * gnus-util.el (gnus-verbose): Lower default to 6 to get rid of the
3302         most egregious messages.
3303
3304 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3305
3306         * gnus-msg.el (gnus-summary-mail-forward): Minuscule doc fix.
3307
3308 2011-09-10  Tetsuo Tsukamoto  <tt.tetsuo.tsukamoto@gmail.com>  (tiny change)
3309
3310         * nnrss.el (nnrss-retrieve-groups): Decode the charset before looking
3311         up the file (bug#9351).
3312
3313 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3314
3315         * nnimap.el: Redo the charset handling.  Let Gnus encode the names, as
3316         it does with all other backends, but decode the names immediately after
3317         getting them.
3318
3319         * gnus-group.el (gnus-group-name-charset): Always return `utf-7' when
3320         decoding nnimap groups.
3321
3322         * gnus.el (gnus-variable-list): Don't save `gnus-format-specs' in the
3323         newsrc file.  It doesn't seem like an important optimization any more.
3324
3325 2011-09-10  Dave Abrahams  <dave@boostpro.com>
3326
3327         * nnimap.el (nnimap-transform-headers): Fix regexp to be less prone to
3328         overflows.
3329
3330 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3331
3332         * gnus.el (gnus-article-mark-lists): Remove `recent'.
3333         (gnus-interactive-exit): Extend to `quiet'.
3334
3335         * gnus-sum.el (gnus-offer-save-summaries): Use it.
3336
3337         * gnus-art.el (gnus-treat-hide-citation-maybe): Add more doc to the
3338         string.
3339
3340         * plstore.el (plstore--get-buffer): Silence compiler warnings by
3341         renaming function arguments from `this'.
3342
3343         * gnus-sum.el (gnus-newsgroup-recent): Remove.
3344
3345         * gnus-spec.el (gnus-lrm-string-p): `bidi-string-mark-left-to-right'
3346         has been renamed.
3347         (gnus-lrm-string-p): Include RLM and PDF, too.
3348
3349         * gnus-int.el (gnus-open-server): Make the "denied" message clearer
3350         (bug#9225).
3351
3352 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
3353
3354         Add autoload cookies for functions used by sendmail.el.
3355         * mm-encode.el (mm-default-file-encoding): Add autoload cookie.
3356
3357         * mml.el (mml-to-mime, mml-attach-file): Add autoload cookies.
3358
3359 2011-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
3360
3361         * gnus-art.el (article-date-ut): Work properly even when there are
3362         things like Date header in the body; work for forwarded parts.
3363
3364 2011-09-05  Andrew Cohen  <cohen@andy.bu.edu>
3365
3366         * gnus-sum.el (gnus-summary-exit): Ensure we kill the proper
3367         original-article-buffer.
3368
3369 2011-09-05  Kan-Ru Chen  <kanru@kanru.info>
3370
3371         * nnir.el (nnir-compose-result): Fix matching of server type.
3372         (nnir-run-swish++): Ditto.
3373         (nnir-run-namazu): Ditto.
3374         (nnir-run-notmuch): Ditto.
3375
3376 2011-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3377
3378         * gnus.el (gnus-home-directory): Add warning about setting in .gnus.el
3379         (bug#9405).
3380
3381         * gnus-score.el (gnus-summary-increase-score): Doc clarification
3382         (bug#9421).
3383
3384         * gnus-spec.el (gnus-face-0): Make all the face specs into defcustoms
3385         (bug#9425).
3386
3387         * gnus-art.el (gnus-treatment-function-alist): Remove CRs as the first
3388         thing (bug#9426).
3389
3390 2011-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3391
3392         * nnimap.el (nnimap-open-connection-1): Use the correct port number in
3393         the error message.
3394
3395 2011-09-02  Eli Zaretskii  <eliz@gnu.org>
3396
3397         * message.el (message-setup-1): Return t (Bug#9392).
3398
3399 2011-09-01  Andrew Cohen  <cohen@andy.bu.edu>
3400
3401         * gnus-sum.el: When adding article headers to a summary buffer also
3402         update gnus-newsgroup-articles (bug#9386).
3403
3404 2011-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3405
3406         * auth-source.el: Autoload help-mode.
3407
3408 2011-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3409
3410         * gnus-group.el (gnus-group-name-charset): Don't bug out on server
3411         names.
3412
3413 2011-08-27  Daiki Ueno  <ueno@unixuser.org>
3414
3415         * mml-smime.el (mml-smime-epg-verify): Don't use the 4th arg of
3416         mm-replace-in-string for compatibility issues.
3417         * mml2015.el (mml2015-epg-verify): Ditto.
3418
3419 2011-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3420
3421         * mailcap.el (mailcap-mime-data): Regexp-quote MIME subtype.
3422
3423         * gnus-msg.el (gnus-setup-message): Remove extra apostrophe.
3424
3425 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3426
3427         * nnmail.el (nnmail-get-new-mail-1): If one mail source bugs out,
3428         continue on and do the clean-up phase (bug#9188).
3429
3430         * gnus-sum.el (gnus-summary-expire-articles): When expiring articles,
3431         just ignore groups that can't be opened instead of erroring out
3432         (bug#9225).
3433
3434         * gnus-art.el (gnus-article-update-date-headers): Flip the default to
3435         nil since some many people are fuddy-duddies.
3436
3437         * gnus-html.el (gnus-html-image-fetched): Don't cache zero-length
3438         images.
3439
3440         * nntp.el (nntp-authinfo-file): Mark as obsolete -- use auth-source
3441         instead.
3442
3443         * pop3.el (pop3-wait-for-messages): Don't use Gnus functions here.
3444
3445         * gnus-util.el (gnus-process-live-p): Copy over compat function.
3446
3447         * pop3.el (pop3-wait-for-messages): If the pop3 process dies, stop
3448         processing.
3449
3450         * nntp.el (nntp-kill-buffer): Kill the process before killing the
3451         buffer to avoid warnings.
3452
3453 2011-08-20  Simon Josefsson  <simon@josefsson.org>
3454
3455         * gnus-agent.el (gnus-agent-expire-done-message): Use %.f as format
3456         specified to reduce precision.
3457
3458 2011-08-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3459
3460         * nnimap.el (nnimap-transform-headers): Protect against (NIL ...)
3461         bodystructures (bug#9314).
3462
3463 2011-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
3464
3465         * gnus-art.el (gnus-insert-mime-button, gnus-mime-display-alternative):
3466         Make button keymap non-sticky after buttons.
3467
3468 2011-08-18  David Engster  <dengste@eml.cc>
3469
3470         * nnmairix.el (nnmairix-request-set-mark)
3471         (nnmairix-goto-original-article): Remove adding of article to registry,
3472         since `gnus-registry-add-group' isn't available anymore.
3473         (nnmairix-determine-original-group-from-registry):
3474         Use `gnus-registry-get-id-key' since `gnus-registry-fetch-groups' isn't
3475         available anymore.
3476
3477 2011-08-12  Simon Josefsson  <simon@josefsson.org>
3478
3479         * starttls.el (starttls-any-program-available): Define as obsolete
3480         function.
3481
3482 2011-08-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3483
3484         * gnus-util.el (gnus-y-or-n-p): Reinstate the message-clearing y-or-n-p
3485         versions which Gnus use when appropriate.
3486
3487         * gnus-group.el (gnus-group-clear-data): Add a y-or-n query, since it's
3488         a pretty destructive command.
3489
3490         * nnmail.el (nnmail-extra-headers): Clarify slightly (bug#9302).
3491
3492 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3493
3494         * message.el (message-fix-before-sending): Make a different warning
3495         about NUL characters (bug#9270).
3496
3497         * gnus-sum.el (gnus-auto-select-subject): Allow specifying a function
3498         from custom (bug#9260).
3499
3500         * gnus-spec.el (gnus-lrm-string): Use 8206 instead of ?\x200e to make
3501         things work in Emacs 22 and XEmacs, too.
3502
3503         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): LRM-ify the
3504         default From.
3505
3506         * gnus-spec.el (gnus-lrm-string-p): New macro.
3507         (gnus-lrm-string): New constant.
3508         (gnus-summary-line-format-spec): LRM-ify the from.
3509         (gnus-tilde-max-form): LRM-ify string chopping.
3510
3511         * gnus-ems.el (gnus-string-mark-left-to-right): New function.
3512
3513         * message.el (message-is-yours-p): Allow disabling canlock checking
3514         (bug#9295).
3515         (message-shoot-gnksa-feet): Add `canlock-verify'.
3516         (message-auto-save-directory): Use ~/ as the auto-save directory if the
3517         message directory isn't writable (bug#9304).
3518
3519         * auth-source.el (auth-source-netrc-saver): Make the .authinfo file
3520         non-world-readable.
3521
3522 2011-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3523
3524         * nndraft.el (nndraft-update-unread-articles): Don't send delayed
3525         articles.
3526
3527 2011-08-13  Andreas Schwab  <schwab@linux-m68k.org>
3528
3529         * gnus-score.el (gnus-all-score-files): Use copy-sequence instead of
3530         copy-list.
3531
3532 2011-08-12  Sam Steingold  <sds@gnu.org>
3533
3534         * gnus-score.el (gnus-score-find-alist): Keep the score files already
3535         in the reverse order to avoid modifying the cache with `nreverse'.
3536         (gnus-all-score-files): Do not modify the value returned by
3537         `gnus-score-find-alist' because it lives in a cache variable.
3538         (gnus-current-home-score-file): No need to `nreverse' the return value
3539         of `gnus-score-find-alist', it is already in the correct order.
3540
3541 2011-08-11  Andrew Cohen  <cohen@andy.bu.edu>
3542
3543         * nnimap.el (nnimap-transform-headers): BODYSTRUCTURE for messages of
3544         type MESSAGE and subtype RFC822 is slightly different from those of
3545         type TEXT.
3546
3547 2011-08-05  Andrew Cohen  <cohen@andy.bu.edu>
3548
3549         * gnus-sum.el (gnus-summary-refer-article): Warp to article.
3550         This allows article-referral to work from an nnir group.
3551
3552 2011-08-04  Andrew Cohen  <cohen@andy.bu.edu>
3553
3554         * gnus.el (registry-ignore): Add nnir groups to the ignore-list.
3555
3556 2011-08-04  Daiki Ueno  <ueno@unixuser.org>
3557
3558         * mml1991.el (mml1991-epg-find-usable-key)
3559         (mml1991-epg-find-usable-secret-key): New function.
3560         (mml1991-epg-sign): Check if signing key is usable.
3561         (mml1991-epg-encrypt): Check if encrypting key is usable (bug#8955).
3562
3563 2011-08-03  Andrew Cohen  <cohen@andy.bu.edu>
3564
3565         * nnir.el (nnir-read-server-parm): Add an argument to restrict to
3566         server-variables only.  This should fix a bug introduced with commit
3567         e1889675b7f4adf057833c5513c9374134c4e053.
3568         (nnir-run-query): 'nnir-search-engine should not be set from the global
3569         environment.
3570
3571 2011-08-02  Andrew Cohen  <cohen@andy.bu.edu>
3572
3573         * nnir.el (nnir-search-thread): Position point on referring article
3574         line.
3575         (nnir-warp-to-article): Clean up summary buffers.
3576
3577         * nnimap.el (nnimap-request-thread): Whitespace fix.
3578
3579 2011-08-02  Steve Purcell  <steve@sanityinc.com>  (tiny change)
3580
3581         * nnimap.el (nnimap-get-groups): Decode "&" correctly.
3582
3583 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3584
3585         * starttls.el (starttls-available-p): Rename from
3586         `starttls-any-program-available' and changed return convention.
3587
3588 2011-07-31  Lars Ingebrigtsen  <larsi@gnus.org>
3589
3590         * nnmaildir.el (nnmaildir-request-accept-article): Don't call
3591         `unix-sync' unless it's defined.
3592
3593 2011-07-31  Marcus Harnisch  <marcus.harnisch@gmx.net>  (tiny change)
3594
3595         * gnus-art.el (gnus-article-stop-animations): Use `elt' instead of
3596         `aref' for XEmacs compatibiltiy.
3597
3598 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3599
3600         * spam.el (spam-fetch-field-fast): Rewrite slightly for clarity.
3601
3602 2011-07-31  Dave Abrahams  <dave@boostpro.com>
3603
3604         * gnus-sum.el (gnus-summary-refer-thread): Since lambdas aren't
3605         closures, quote the form properly (bug#9194).
3606
3607 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3608
3609         * gnus-sum.el (gnus-summary-insert-new-articles): Clean up slightly.
3610         (gnus-summary-insert-new-articles): Protect against servers that are
3611         down.
3612
3613 2011-07-29  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
3614
3615         * mm-decode.el (mm-dissect-buffer): Add a default content-disposition
3616         in mm handle if none is specified.
3617
3618 2011-07-24  Andrew Cohen  <cohen@andy.bu.edu>
3619
3620         * nnimap.el (nnimap-make-thread-query): Quote message-ids for gmail.
3621
3622 2011-07-23  Andrew Cohen  <cohen@andy.bu.edu>
3623
3624         * nnir.el (nnir-search-thread): New function to make an nnir group
3625         based on a thread query.
3626
3627         * gnus-sum.el (gnus-refer-thread-use-nnir): New variable to control use
3628         of nnir in thread referral.
3629         (gnus-summary-refer-thread): Use it.
3630
3631         * nnimap.el (nnimap-request-thread): Use it.
3632
3633 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3634
3635         * shr.el (shr-tag-comment): Ignore HTML comments.
3636
3637 2011-07-20  Andrew Cohen  <cohen@andy.bu.edu>
3638
3639         * nnir.el (gnus-group-make-nnir-group): Allow optional search query
3640         argument.
3641         (gnus-group-make-nnir-group, nnir-request-group, nnir-run-query):
3642         Use `nnir-address' to handle server info rather than passing an arg.
3643
3644         * nnimap.el (nnimap-make-thread-query): New utility function to format
3645         an imap thread search query.
3646         (nnimap-request-thread): Use it.
3647
3648         * gnus-sum.el (gnus-handle-ephemeral-exit): Ensure we are setting the
3649         right select-method if we are not going back to the group buffer.
3650
3651 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3652
3653         * gnus-group.el (gnus-group-read-ephemeral-group): Make sure we don't
3654         enter invalid buffer configurations into the quit form (bug#9107).
3655         (gnus-group-tool-bar-gnome): Replace connect/disconnect with
3656         unplugged/plugged.
3657
3658         * gnus-sum.el (gnus-summary-refer-thread): When inserting new headers,
3659         keep track of which ones are unread (bug#9061).
3660
3661         * gnus.el (gnus-refer-article-method): Allow entering any sexp
3662         (bug#9055).
3663
3664         * gnus-art.el (gnus-article-show-images): Allow working if using w3m
3665         (bug#9041).
3666
3667         * gnus-html.el (mm-util): Require (bug#9073).
3668
3669         * gnus-sum.el (gnus-delete-duplicate-headers): New function.
3670         (gnus-summary-refer-thread): Use it to remove duplicates in the
3671         un-threaded view (bug#9053).
3672         (gnus-summary-insert-subject): Document USE-OLD-HEADER (bug#9070).
3673
3674 2011-07-07  Kan-Ru Chen  <kanru@kanru.info>
3675
3676         * nnir.el (nnir-read-server-parm): Use default value from global
3677         variable.  Without this the default search engine parameters aren't
3678         used at all.
3679
3680 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3681
3682         * message.el (message-unique-id): Don't use the undocumented return
3683         value from (random t) (bug#9118).
3684
3685 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3686
3687         * message.el (message-auto-save-directory): If the ~/Mail directory
3688         doesn't exist, use ~ as the auto-save directory (bug#4432).
3689
3690         * gnus-group.el (gnus-group-read-ephemeral-group): Start Gnus if it
3691         hasn't already been started.
3692
3693 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3694
3695         * gnus.el (debbugs-gnu): Rename from debbugs-emacs.
3696
3697         * message.el (message-reply): Work around mysterious bug where
3698         `message-mode' seems to overwrite the locally bound `subject' variable.
3699
3700 2011-07-14  Andrew Cohen  <cohen@andy.bu.edu>
3701
3702         * nnimap.el (nnimap-request-thread): Ensure search is performed in
3703         correct group.
3704
3705         * gnus-int.el (gnus-request-thread): Add group argument.
3706
3707         * gnus-sum.el (gnus-summary-refer-thread): Use it.
3708
3709 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3710
3711         * dgnushack.el (debbugs-gnu-summary-mode): Update compat names, too.
3712
3713         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): `debbugs-*'
3714         renamed to `debbugs-gnu-*'.
3715
3716 2011-07-08  Daiki Ueno  <ueno@unixuser.org>
3717
3718         * plstore.el: Revert the editing feature since it is not urgent.
3719         (plstore-mode, plstore-mode-toggle-display, plstore-mode-original)
3720         (plstore-mode-decoded): Remove.
3721
3722 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3723
3724         * gnus-msg.el (gnus-bug): Don't insert user variables.  It usually
3725         isn't very interesting any more, and it leaks potentially secret data.
3726         (gnus-debug): Remove.
3727
3728         * gnus-art.el (gnus-ignored-headers): Remove obsolete and non-working
3729         use of :custom-show.
3730
3731 2011-07-07  Daiki Ueno  <ueno@unixuser.org>
3732
3733         * plstore.el: Add documentation.
3734         (plstore-mode): New mode to edit plstore file.
3735         (plstore-mode-toggle-display, plstore-mode-original)
3736         (plstore-mode-decoded): New command.
3737         (plstore--encode, plstore--decode, plstore--write-contents-functions)
3738         (plstore--insert-buffer, plstore--make): New function.
3739         (plstore-open, plstore-save): Simplify by using them.
3740
3741 2011-07-06  Glenn Morris  <rgm@gnu.org>
3742
3743         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Silence compiler.
3744
3745 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3746
3747         * gnus.el (gnus-refer-article-method): Remove mention of nnspool, which
3748         no longer is much used.
3749         (gnus-summary-line-format): Link to "Marking Articles" instead of "Read
3750         Articles".
3751
3752 2011-04-03  Kan-Ru Chen  <kanru@kanru.info>
3753
3754         * nnir.el (nnir-notmuch-program, nnir-notmuch-additional-switches)
3755         (nnir-notmuch-remove-prefix, nnir-engines, nnir-run-notmuch): New nnir
3756         `notmuch' backend.
3757
3758 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3759
3760         * mm-decode.el (mm-text-html-renderer): Doc fix.
3761
3762         * gnus-msg.el (gnus-bug): Fix the MML tag.
3763
3764         * pop3.el (pop3-open-server): -ERR is a valid response to CAPA.
3765
3766 2011-07-05  Daiki Ueno  <ueno@unixuser.org>
3767
3768         * gnus-start.el (gnus-get-unread-articles): Don't connect to the
3769         secondary methods if started with `gnus-no-server'.
3770
3771 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
3772
3773         * message.el (message-return-action): Fix typo in docstring.
3774
3775 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3776
3777         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow fetching several
3778         bug reports at once.
3779
3780         * nnimap.el (nnimap-request-scan): Say that splitting has finished.
3781
3782 2011-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
3783
3784         * nndraft.el: Require gnus-group.
3785         (nndraft-request-list): Declare.
3786
3787         * nndraft.el (nndraft-update-unread-articles): Don't show group having
3788         no unread article unless it matches gnus-permanently-visible-groups.
3789
3790         * nndraft.el (nndraft-update-unread-articles): New function.
3791         (nndraft-request-associate-buffer): Use it to update the number of
3792         unread articles for the nndraft groups in the group buffer when saving
3793         or killing a draft message.
3794
3795 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3796
3797         * gnus-group.el (gnus-read-ephemeral-bug-group): Bind the coding
3798         systems to binary before writing and reading the mbox files.
3799
3800         * gnus.el (gnus-summary-line-format): Link to the info node for %U
3801         instead of trying to list them all (bug#8978).
3802
3803 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
3804
3805         * pop3.el (pop3-open-server): Use :end-of-capability.
3806
3807 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3808
3809         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Make sure that
3810         the id is always a number.
3811
3812         * dgnushack.el (debbugs-summary-mode): Shut up compiler about debbugs.
3813
3814         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Hook into
3815         debbugs mode, if possible.
3816
3817 2011-07-02  Daiki Ueno  <ueno@unixuser.org>
3818
3819         * auth-source.el (auth-source-token-passphrase-callback-function):
3820         Reindent.
3821         (epg-context-operation): Remove unnecessary autoload.
3822
3823 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3824
3825         * gnus.el (gnus-list-debbugs): New command.
3826
3827         * gnus-group.el (gnus-bug-group-download-format-alist): Get the
3828         mboxstat instead of the maintbox, since the stat seems to be fuller.
3829
3830         * gnus-msg.el (gnus-configure-posting-styles): Don't try to select dead
3831         summary buffers.
3832
3833         * message.el (message-get-reply-headers): Delete all duplicates,
3834         instead of the first.
3835         (message-get-reply-headers): Ensure that we have progress while
3836         deleting duplicates.
3837
3838         * gnus-msg.el (gnus-configure-posting-styles): Get the local
3839         gnus-posting-style value from the summary buffer to make it easier to
3840         make that a per-buffer conf.
3841
3842 2011-07-02  Andrew Cohen  <cohen@andy.bu.edu>
3843
3844         * nnir.el (nnir-run-imap): Allow halting a search when an article is
3845         found by setting `shortcut' in 'query.
3846         (nnir-request-article): Use `shortcut' setting when requesting article
3847         by Message-ID.
3848
3849 2011-07-02  Teodor Zlatanov  <tzz@lifelogs.com>
3850
3851         * gnus-msg.el (gnus-bug): Give the Version and Package headers to
3852         debbugs with the X-Debbugs-Package and X-Debbugs-Version headers.
3853         Bring the pseudo-headers back too.
3854
3855 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3856
3857         * auth-source.el (auth-source-token-passphrase-callback-function):
3858         Simplify and remove EPA dependency.
3859
3860 2011-07-01  Andrew Cohen  <cohen@andy.bu.edu>
3861
3862         * nnir.el (nnir-request-article): Fix error message text.
3863
3864 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3865
3866         * auth-source.el (plstore-delete): Autoload.
3867         (auth-source-plstore-search): Support delete operation.
3868         * plstore.el (plstore-delete): New function.
3869
3870 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3871
3872         * gnus-draft.el (gnus-draft-clear-marks): Revert last change;
3873         mark actually existing articles as unread rather than the ones that
3874         active asserts.
3875
3876 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
3877
3878         * nntp.el (nntp-record-command):
3879         * gnus-util.el (gnus-message-with-timestamp-1):
3880         Use format-time-string rather than decoding time stamps by hand.
3881         This is simpler and insulates the code from potential changes to
3882         current-time format.
3883
3884 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3885
3886         * gnus-draft.el (gnus-draft-clear-marks): Mark deleted articles as read.
3887
3888 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3889
3890         * plstore.el (plstore-select-keys, plstore-encrypt-to): New variable.
3891         (plstore-save): Support public key encryption.
3892         (plstore--init-from-buffer): New function.
3893         (plstore-open): Use it; fix error when opening a non-existent file.
3894         (plstore-revert): Use plstore--init-from-buffer.
3895
3896 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3897
3898         * auth-source.el (auth-source-backend): Fix :initarg for data slot.
3899
3900 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3901
3902         * mml2015.el (mml2015-use): Replace string-match-p with string-match
3903         for old Emacsen.
3904
3905 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
3906
3907         * mml2015.el (mml2015-use): Don't try to load PGG on Emacs 24, when EPG
3908         is not fully working.
3909
3910 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3911
3912         * dgnushack.el: Autoload sha1 on XEmacs.
3913
3914         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Take an optional
3915         quit window configuration.
3916
3917         * auth-source.el (epg-context-set-passphrase-callback):
3918         Remove duplicate autoload.
3919
3920 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
3921
3922         * nnir.el (nnir-request-article): Allow requesting articles by
3923         Message-ID with nnimap.
3924
3925         * gnus-sum.el (gnus-refer-article-methods): Allow (nnir) entry to use
3926         current server.
3927
3928 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
3929
3930         * auth-source.el: Autoload EPA/EPG functions.
3931         (auth-source-netrc-use-gpg-tokens): Clarify that it should not be
3932         changed when EPA/EPG is not available.
3933         (auth-source-backend): Rename "arg" member to "data".
3934         (auth-source-backend-parse, auth-source-plstore-search)
3935         (auth-source-plstore-create): Use it.
3936
3937 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
3938
3939         * gnus-art.el (gnus-request-article-this-buffer): Use existing function
3940         `gnus-refer-article-methods'.
3941
3942 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
3943
3944         * auth-source.el: Require EPA and EPG.
3945         (auth-source-passphrase-alist): New variable.
3946         (auth-source-passphrase-callback-function)
3947         (auth-source-token-passphrase-callback-function): Callbacks for the
3948         netrc field encryption (GPG tokens).
3949         (auth-source-epa-extract-gpg-token, auth-source-epa-make-gpg-token):
3950         Symmetric encryption and decryption of the netrc GPG tokens.
3951         (auth-source-netrc-normalize): Use them, simplifying the closure.
3952
3953 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3954
3955         * dgnushack.el (dgnushack-compile): Don't compile plstore.el unless epg
3956         is available.
3957
3958 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3959
3960         * nnimap.el (nnimap-split-incoming-mail): If `nnimap-split-fancy' is
3961         non-nil, and `nnimap-split-methods' is nil, use the former.
3962
3963 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
3964
3965         * plstore.el (plstore-revert): New function.
3966         (plstore-open): Use it; hide the buffer from user.
3967
3968 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
3969
3970         * auth-source.el (auth-source-backend): New member "arg".
3971         (auth-source-backend-parse): Handle new backend 'plstore.
3972         * plstore.el: New file.
3973
3974 2011-06-30  Glenn Morris  <rgm@gnu.org>
3975
3976         * mm-util.el (mm-charset-synonym-alist): Move definition before use.
3977
3978 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3979
3980         * nnimap.el (nnimap-process-expiry-targets): Say what target we're
3981         expiring articles to.
3982
3983         * mm-util.el (mm-charset-to-coding-system): Recognize all ANSI.x3.4
3984         variations as ASCII (bug#5458).
3985
3986 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3987
3988         * nnmh.el (nnmh-request-list-1): Work on MS Windows.
3989
3990 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3991
3992         * message.el (message-point-in-header-p): Tweak the function to default
3993         to saying that we're not in the headers if there is no separator at
3994         all.  This makes it possible to use the Message version of `M-q' in
3995         buffers with no headers (bug#7987).
3996         (message-point-in-header-p): Fix last checkin to work with an empty
3997         mail-header-separator, too.
3998
3999         * auth-source.el (auth-source-netrc-saver): If the user says "don't ask
4000         again, save the choice via customize.
4001
4002 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4003
4004         * message.el (message-send-mail-function): Add `sendmail-query-once'.
4005
4006         * nnimap.el (nnimap-finish-retrieve-group-infos): If the server has
4007         ended the connection, bail out before waiting infinitely on a new
4008         connection.
4009
4010 2011-06-28  Teodor Zlatanov  <tzz@lifelogs.com>
4011
4012         * gnus-msg.el (gnus-bug): Add Package and Version pseudo-headers to bug
4013         reports.
4014
4015         * gnus.el (gnus-bug-package): Use "gnus."
4016         (gnus-maintainer): Direct bug reports to submit@debbugs.gnu.org.
4017
4018 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4019
4020         * dgnushack.el: Make the timer warning go away on XEmacs.
4021
4022         * gnus-art.el (gnus-article-stop-animations): New function to stop any
4023         animations going on at article exit time.
4024
4025         * gnus-registry.el (gnus-registry-user-format-function-M): Reinstate,
4026         since removing it breaks people upgrading.
4027
4028         * shr.el (shr-put-image): Use the new interface for animating images.
4029         (shr-put-image): Animate for 60 seconds.
4030
4031         * dgnushack.el: Bind `gnutls-available-p' to `ignore' on XEmacs to
4032         avoid compiler warnings.
4033
4034         * auth-source.el (with-auth-source-epa-overrides): Fix compilation
4035         error with `find-file-hooks' on Emacs 22.
4036         (with-auth-source-epa-overrides): Ugly hack to Wrap the
4037         `find-file-hook' things in `symbol-value' to avoid compilation warnings
4038         on all architectures.
4039
4040         * spam.el (spam-stat): Require in a normal fashion without binding
4041         `spam-stat-install-hooks' to avoid compilation warnings.
4042
4043         * spam-stat.el (spam-stat-install-hooks): Remove.
4044         (spam-stat-install-hooks): Don't run automatically.
4045
4046 2011-06-26  Timo Juhani Lindfors  <timo.lindfors@iki.fi>  (tiny change)
4047
4048         * gnus-msg.el (gnus-summary-reply-to-list-with-original): New command
4049         and keystroke.
4050
4051 2011-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4052
4053         * auth-source.el (auth-source-netrc-cache): Move forward.
4054
4055 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4056
4057         * proto-stream.el (proto-stream-open-starttls): Use
4058         `gnutls-available-p' to see whether we have built-in support.
4059
4060         * auth-source.el (auth-source-netrc-create): Don't query the bits that
4061         we already know.
4062         (auth-source-forget-all-cached): Clear auth-source-netrc-cache, too.
4063         (auth-source-netrc-create): Don't prompt for the stuff we already know.
4064
4065 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4066
4067         * auth-source.el (auth-source-netrc-create): Don't print all tokens in
4068         %S format, since that looks odd.
4069         (auth-sources): Prefer the ~/.authinfo file over the ~/.authinfo.gpg
4070         file, especially when saving.
4071
4072 2011-06-21  Andrew Cohen  <cohen@andy.bu.edu>
4073
4074         * nnimap.el (nnimap-find-article-by-message-id): return nil when no
4075         article found.
4076
4077 2011-06-18  Teodor Zlatanov  <tzz@lifelogs.com>
4078
4079         * auth-source.el (auth-source-netrc-use-gpg-tokens): Replace
4080         `auth-source-save-secrets' with a more sensitive alist that can be
4081         configured per file.  Experimental, so defaults to 'never.
4082         (auth-source-netrc-create): Use it.  Still experimental code.
4083         (with-auth-source-epa-overrides): Use `find-file-hooks' if
4084         `find-file-hook' is unbound (XEmacs fix).  Fix backquoting bug.
4085
4086 2011-06-16  Teodor Zlatanov  <tzz@lifelogs.com>
4087
4088         * auth-source.el (auth-source-save-secrets): New variable to control if
4089         secret tokens should be saved encrypted.
4090         (auth-source-netrc-parse, auth-source-netrc-search): Pass the file name
4091         to `auth-source-netrc-normalize'.
4092         (with-auth-source-epa-overrides): Add convenience macro.  Don't depend
4093         on the EPA variables being defined.
4094         (auth-source-epa-make-gpg-token): Convert text to a "gpg:" token.
4095         (auth-source-netrc-normalize): Convert "gpg:" tokens back to text in
4096         the lexical-let closure.
4097         (auth-source-netrc-create): Create "gpg:" tokens according to
4098         `auth-source-save-secrets'.
4099
4100 2011-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4101
4102         * gnus-group.el (gnus-group-update-group): Add new argument
4103         `info-unchanged' that stops updating dribble buffer.
4104
4105         * gnus-start.el (gnus-dribble-enter): Add new argument `regexp' that
4106         deletes lines matching to it in dribble buffer.
4107
4108         * gnus-agent.el (gnus-agent-fetch-group-1):
4109         * gnus-group.el (gnus-group-update-group-line, gnus-group-make-group):
4110         * gnus-srvr.el (gnus-server-update-server, gnus-server-set-info):
4111         * gnus-start.el (gnus-group-change-level):
4112         * gnus-sum.el (gnus-summary-move-article): Delete old dribble entry.
4113
4114         * gnus-sum.el (gnus-summary-update-info): Don't update dribble buffer
4115         if newsgroup info is not changed.
4116
4117         * gnus-group.el (gnus-group-get-new-news-this-group):
4118         * gnus-sum.el (gnus-summary-read-group-1, gnus-summary-exit-no-update):
4119         Don't update dribble buffer.
4120
4121 2011-06-01  Teodor Zlatanov  <tzz@lifelogs.com>
4122
4123         * gnus-registry.el (gnus-registry-remove-ignored): New function to
4124         remove entries with groups we ignore.
4125
4126 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4127
4128         * shr.el (shr-rescale-image): Add an :ascent of 100 to images so that
4129         the underline comes at the bottom.
4130
4131 2011-05-31  Teodor Zlatanov  <tzz@lifelogs.com>
4132
4133         * gnus-registry.el (gnus-registry-article-marks-to-chars): Rename from
4134         `gnus-registry-user-format-function-M' and declare the latter obsolete.
4135         (gnus-registry-article-marks-to-names): Rename from
4136         `gnus-registry-user-format-function-M2'.
4137
4138 2011-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
4139
4140         * gnus-sum.el (gnus-summary-exit): Make sure to kill article buffer in
4141         ephemeral group.
4142
4143 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4144
4145         * shr.el (shr-browse-image): Copy the URL if called interactively.
4146
4147 2011-05-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4148
4149         * gnus-group.el (gnus-group-mark-article-read): It's possible that we
4150         want to have `gnus-newsgroup-unselected' kept sorted.  If this isn't
4151         done, then unselected articles may be marked as read.
4152
4153         * pop3.el (pop3-open-server): Erase the buffer after the greeting,
4154         since not doing this seems to lead to a race condition in pop3-logon.
4155
4156         * nnvirtual.el (nnvirtual-request-article): Bind `gnus-command-method'
4157         so that the call chain it correct when we call "upwards".
4158
4159         * gnus-sum.el (gnus-select-newsgroup): Auto-expiry doesn't make sense
4160         in read-only groups.
4161
4162         * gnus-group.el (gnus-group-mark-article-read): Ditto.
4163
4164         * message.el (message-cite-reply-position): Doc string fix.
4165
4166         * nnimap.el (nnimap-transform-headers): Simplify regexp to hopefully
4167         avoid regexp overflow.
4168         (nnimap-transform-split-mail): Ditto.
4169
4170         * pop3.el (pop3-retr): Error out if the server closes the connection.
4171
4172 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4173
4174         * mml1991.el (mml1991-mailcrypt-encrypt): Remove use of ill-designed
4175         mm-with-unibyte-current-buffer.  The buffer should not contain any
4176         multibyte chars anyway at this stage.
4177
4178 2011-05-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4179
4180         * shr.el (shr-urlify): Use shr-add-font to make underlines be less ugly
4181         at the end of lines.
4182
4183 2011-05-29  Julien Danjou  <julien@danjou.info>
4184
4185         * smiley.el (gnus-smiley-file-types): Add gif as supported file type.
4186
4187 2011-05-27  Glenn Morris  <rgm@gnu.org>
4188
4189         * gnus-group.el (gnus-bug-group-download-format-alist):
4190         Use the "maintainer" version of debian reports as well.
4191
4192 2011-05-26  Glenn Morris  <rgm@gnu.org>
4193
4194         * gnus-group.el (gnus-bug-group-download-format-alist):
4195         Use the "maintainer" version of debbugs.gnu.org reports.
4196
4197 2011-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4198
4199         * gnus-art.el (gnus-mime-delete-part): Fix mm-handle-filename usage.
4200
4201 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4202
4203         * gnus-cus.el (gnus-agent-customize-category):
4204         * gnus-delay.el (gnus-delay-send-queue):
4205         * gnus.el (gnus-other-frame):
4206         Don't quote lambda expressions with `quote'.
4207
4208 2011-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
4209
4210         * gnus-sum.el (gnus-summary-hide-thread): Fix bug where moving to hide
4211         the thread moves us backwards and so we loop forever.
4212
4213 2011-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4214
4215         * mm-bodies.el (mm-decode-content-transfer-encoding): Allow leading
4216         whitespace in base64 data lines.
4217
4218 2011-05-18  Teodor Zlatanov  <tzz@lifelogs.com>
4219
4220         * gnus-registry.el (gnus-registry-user-format-function-M):
4221         Use `mapconcat'.
4222         (gnus-registry-user-format-function-M2): Use to see the full text of
4223         the marks.  Make "," the mark text separator.
4224
4225         * nntp.el (nntp-send-authinfo): Use the "force" token for NNTP
4226         authentication with auth-source.
4227
4228 2011-05-17  Glenn Morris  <rgm@gnu.org>
4229
4230         * gnus-group.el (gnus-import-other-newsrc-file):
4231         Use insert-file-contents.
4232
4233 2011-05-16  Teodor Zlatanov  <tzz@lifelogs.com>
4234
4235         * gnus-sum.el (gnus-summary-hide-all-threads): Add update message every
4236         1000 iterations.
4237
4238 2011-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4239
4240         * nntp.el (nntp-open-connection): Check if process-type is available.
4241
4242 2011-05-16  Julien Danjou  <julien@danjou.info>
4243
4244         * shr.el (shr-tag-del): Add support for del tag.
4245
4246 2011-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4247
4248         * gnus-html.el (gnus-html-put-image): Register a displayer.
4249
4250         * shr.el (shr-image-displayer): Don't remove text props from alt text.
4251
4252 2011-05-13  Teodor Zlatanov  <tzz@lifelogs.com>
4253
4254         * registry.el (prune-factor): New initialization parameter defaulting
4255         to 0.1.
4256         (registry-prune-hard): Use it.
4257
4258         * gnus-registry.el (gnus-registry-fixup-registry): Set prune-factor to
4259         0.1 expicitly.
4260
4261 2011-05-13  Glenn Morris  <rgm@gnu.org>
4262
4263         * message.el (message-send-mail-with-sendmail): Assume sendmail-program
4264         is bound, since this function requires sendmail.
4265
4266 2011-05-11  Teodor Zlatanov  <tzz@lifelogs.com>
4267
4268         * registry.el (registry-usage-test): Disable pruning test.
4269
4270 2011-05-11  David Engster  <dengste@eml.cc>
4271
4272         * lpath.el: Bind shr-put-image and process-type for Emacs22 and XEmacs.
4273         Bind set-network-process-option for XEmacs.
4274
4275 2011-05-10  Teodor Zlatanov  <tzz@lifelogs.com>
4276
4277         * registry.el (registry-prune-hard-candidates)
4278         (registry-prune-soft-candidates): Helper methods for registry pruning.
4279         (registry-prune): Use them.  Make the sort function optional.
4280
4281 2011-05-10  Jim Meyering  <meyering@redhat.com>
4282
4283         * shr.el (shr-colorize-region): Fix typo "on on -> on".
4284
4285 2011-05-10  Julien Danjou  <julien@danjou.info>
4286
4287         * shr.el (shr-put-color-1): Do not bug out when old-props is a face
4288         symbol and not a list.
4289
4290 2011-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4291
4292         * gnus-art.el (gnus-article-mode): Move binding of
4293         shr-put-image-function here from gnus-article-prepare-display.
4294
4295         * shr.el (shr-put-image-function): New variable.
4296         (shr-image-fetched, shr-image-displayer, shr-tag-img): Funcall it.
4297         (shr-put-image): Return scaled image.
4298
4299         * gnus-art.el (gnus-shr-put-image): New function.
4300         (gnus-article-prepare-display): Bind shr-put-image-function to it.
4301
4302         * gnus-html.el (gnus-html-wash-images): Register scaled images, not
4303         original ones, as deletable.
4304
4305 2011-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4306
4307         * nntp.el (nntp-open-connection): Set TCP keepalive option.
4308
4309 2011-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
4310
4311         * registry.el (registry-full): Add convenience method.  Fix logic.
4312         (registry-insert): Use it.  Fix logic here too.
4313
4314         * gnus-registry.el (gnus-registry-insert): Add wrapper that calls
4315         `registry-prune' if `registry-full' returns t.
4316         (gnus-registry-handle-action)
4317         (gnus-registry-get-or-make-entry, gnus-registry-set-id-key)
4318         (gnus-registry-usage-test): Use it.
4319
4320 2011-05-07  Julien Danjou  <julien@danjou.info>
4321
4322         * shr.el (shr-link): Make shr-link inherit from link by default.
4323
4324 2011-05-06  Teodor Zlatanov  <tzz@lifelogs.com>
4325
4326         * shr.el (shr-urlify, shr-link): Fix shr-link face.
4327
4328 2011-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
4329
4330         * shr.el (shr-urlify, shr-link): Still broken but at least doesn't
4331         error out because the face is not a list.
4332
4333 2011-05-05  Glenn Morris  <rgm@gnu.org>
4334
4335         * proto-stream.el (gnutls-negotiate): Fix declarations.
4336
4337         * gnus-start.el (gnus-propagate-marks): Declare.
4338
4339 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
4340
4341         * registry.el (registry-reindex): Fix percentage message.
4342
4343         * proto-stream.el (network-stream-open-starttls): Adjust to call
4344         `gnutls-negotiate' with :process and :hostname arguments.
4345
4346 2011-05-03  Teodor Zlatanov  <tzz@lifelogs.com>
4347
4348         * shr.el: Add shr-link face for links.
4349         (shr-urlify): Use it.
4350
4351         * registry.el (registry-insert): Make error message more helpful.
4352
4353 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4354
4355         * gnus-html.el (gnus-html-schedule-image-fetching):
4356         Use url-queue-retrieve, if it exists.
4357
4358         * shr.el (shr-tag-img): Ditto.
4359
4360         * gnus.el: Autoload more gnus-agent functions.
4361
4362         * gnus-art.el (gnus-request-article-this-buffer): Store articles in the
4363         agent if we haven't already (bug#8502).
4364
4365         * gnus-async.el (gnus-async-article-callback): Put prefetched articles
4366         into the Agent, too.
4367
4368         * gnus-agent.el (gnus-agent-store-article): New function.
4369
4370         * nnheader.el (nnheader-insert-buffer-substring): Rename from nntp-
4371         and moved from that file for reuse.
4372
4373         * pop3.el (pop3-open-server): Error messages are "-ERR".
4374
4375 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4376
4377         * pop3.el (pop3-open-server): Upgrade opportunistically to STARTTLS.
4378         (open-tls-stream): Remove superfluous tls/starttls autoloads.
4379
4380 2011-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4381
4382         * gnus.el: No Gnus v0.17 is released.
4383
4384 2011-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4385
4386         * gnus-sum.el (gnus-summary-next-article): Don't bug out if the summary
4387         buffer has moved to a different frame.
4388
4389 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4390
4391         * nnimap.el (nnimap-request-article): Use nntp-insert-buffer-substring
4392         to get the conversion from unibyte to multibyte buffers to work on
4393         Emacs 22.
4394
4395         * nntp.el (nntp-request-article): Slight clean-up.
4396
4397 2011-04-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4398
4399         * shr.el (shr-strike-through): New face.
4400         (shr-tag-s): Use it to provide <s> support.
4401         (shr-tag-s): Remove duplicate definition.
4402
4403 2011-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
4404
4405         * gnus-registry.el (gnus-registry-ignore-group-p): Don't call
4406         `gnus-parameter-registry-ignore' if the *Group* buffer doesn't exist.
4407
4408 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
4409
4410         * proto-stream.el (proto-stream-open-starttls): Give host parameter to
4411         `gnutls-negotiate'.
4412         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
4413
4414 2011-04-23  Glenn Morris  <rgm@gnu.org>
4415
4416         * gnus-sum.el (gnus-extra-headers): Bump :version.
4417
4418 2011-04-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4419
4420         * shr.el (shr-tag-sup): New function.
4421         (shr-tag-sub): Ditto.
4422
4423 2011-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
4424
4425         * gnus-registry.el (gnus-registry-ignore-group-p): Test specifically
4426         for the case where `gnus-registry-ignored-groups' is a list of lists,
4427         and don't call `gnus-parameter-registry-ignore' otherwise.
4428
4429 2011-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
4430
4431         * nnimap.el (nnimap-user): New backend variable.
4432         (nnimap-open-connection-1): Use it.
4433         (nnimap-credentials): Accept user parameter so it's explicit what user
4434         name is desired.
4435
4436         * gnus-sum.el (gnus-extra-headers): Add Keywords, Cc, and Gcc to
4437         default.
4438
4439         * gnus.el (gnus-registry-ignored-groups): Provide default in gnus.el,
4440         not gnus-registry.el.
4441
4442         * gnus-registry.el: Mention in comments how to modify
4443         `gnus-extra-headers' for proper recipient tracking and that it may
4444         already have To and Cc recently, which it does as of this commit.
4445         (gnus-registry-ignored-groups): Remove defcustom.
4446         Explain why in comments.
4447         (gnus-registry-action): Fix data-header reference to use the extra
4448         headers.  Explain in package commentary how to add To and Cc headers to
4449         the gnus-extra-headers.
4450         (gnus-registry-ignored-groups): Adjust defaults to match the parameter.
4451         (gnus-registry-ignore-group-p): Adjust to take either a group/topic
4452         parameter list or a string list in `gnus-registry-ignored-groups'.
4453         Fix logic error.
4454
4455 2011-04-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4456
4457         * shr.el (shr-expand-url): Protect against null urls.
4458
4459 2011-04-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4460
4461         * shr.el (shr-base): New binding.
4462         (shr-tag-base): Keep track of <base>.
4463         (shr-expand-url): New function used throughout.
4464
4465 2011-04-20  Teodor Zlatanov  <tzz@lifelogs.com>
4466
4467         * gnus-registry.el
4468         (gnus-registry--split-fancy-with-parent-internal): Fix loop bugs.
4469         (gnus-registry-ignored-groups): New variable.
4470         (gnus-registry-ignore-group-p): Use it.
4471         (gnus-registry-handle-action): Use `gnus-registry-ignore-group-p' and
4472         set the destination group to nil (same as delete) if it's ignored.
4473
4474 2011-04-20  David Engster  <dengste@eml.cc>
4475
4476         * tests/gnustest-nntp.el: New file for simple NNTP testing.
4477
4478         * Makefile.in (test-nntp): New rule.
4479         (check): Add it.
4480         (test-registry): Change '$(EMACS_COMP)' to '$(EMACS) $(FLAGS)'.
4481
4482 2011-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4483
4484         * gnus-registry.el (gnus-registry-action)
4485         (gnus-registry-fetch-header-fast):
4486         Don't use mail-header that looks an internal function of mailheader.el.
4487
4488 2011-04-19  Glenn Morris  <rgm@gnu.org>
4489
4490         * time-date.el (time-to-days): Remove unused local variables.
4491
4492 2011-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4493
4494         * gnus-registry.el: Eliminate cl functions.
4495         (gnus-registry-sort-addresses): New function that replaces mapcan.
4496         (gnus-registry-action, gnus-registry-spool-action)
4497         (gnus-registry-split-fancy-with-parent)
4498         (gnus-registry-fetch-recipients-fast): Use it.
4499         (gnus-registry-import-eld): Replace delete* with dolist + delq.
4500
4501         * registry.el (initialize-instance, registry-lookup)
4502         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
4503         (registry-lookup-secondary-value, registry-search, registry-delete)
4504         (registry-insert, registry-reindex, registry-size, registry-prune):
4505         Use eval-and-compile.
4506
4507 2011-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
4508
4509         * registry.el (registry-reindex): New method to recreate the secondary
4510         registry indices.
4511
4512         * gnus-registry.el (gnus-registry-fixup-registry): Use it if the
4513         tracked field changes.
4514         (gnus-registry-unfollowed-addresses, gnus-registry-track-extra)
4515         (gnus-registry-action, gnus-registry-spool-action)
4516         (gnus-registry-handle-action)
4517         (gnus-registry--split-fancy-with-parent-internal)
4518         (gnus-registry-split-fancy-with-parent)
4519         (gnus-registry-register-message-ids): Add recipient tracking on spool,
4520         move, and delete actions, and for fancy splitting with parent.
4521         (gnus-registry-extract-addresses)
4522         (gnus-registry-fetch-recipients-fast)
4523         (gnus-registry-fetch-header-fast): Convenience functions.
4524         (gnus-registry-misc-test): ERT test of
4525         `gnus-registry-extract-addresses'.
4526
4527 2011-04-15  Teodor Zlatanov  <tzz@lifelogs.com>
4528
4529         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
4530         Track by subject first, then sender.
4531
4532 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4533
4534         * message.el (message-bogus-system-names): Replace ^...$ => \`...\'.
4535
4536         * gnus.el (gnus-splash-svg-color-symbols): Don't use insert-file from
4537         Lisp.
4538
4539         * gnus-draft.el (gnus-draft-setup): New arg `dont-pop'.
4540         (gnus-draft-send): Use it to avoid popping
4541         up frames from gnus-group-send-queue.
4542
4543 2011-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
4544
4545         * gnus-registry.el: Updated gnus-registry docs.
4546
4547 2011-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
4548
4549         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
4550         Fix logic bug.
4551         (gnus-registry-post-process-groups): Fix logging of no results and
4552         quote sender and subject.
4553
4554 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4555
4556         * proto-stream.el (proto-stream-open-starttls): Only do opportunistic
4557         STARTTLS upgrades if we have built-in gnutls support.  Upgrades via
4558         gnutls-cli are too slow to be done opportunistically.
4559
4560         * gnus-start.el (gnus-get-unread-articles): Slight cleanup.
4561         (gnus-read-active-for-groups): Don't try to finish getting stuff where
4562         we had no early-data returned.
4563         (gnus-get-unread-articles): Add a sanity check so that we don't issue
4564         two async commands to the same server at the same time.
4565
4566 2011-04-12  Stig Sandbeck Mathisen  <ssm@fnord.no>  (tiny change)
4567
4568         * gnus-sum.el (gnus-summary-select-article-buffer): Doc fix.
4569
4570 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4571
4572         * gnus-registry.el (gnus-registry-remake-db): Put the warning on a
4573         "warning" level.
4574
4575         * mm-url.el (mm-url-package-name): Remove to ease third-party reuse.
4576         (mm-url-insert-file-contents): Don't set the package names.
4577
4578 2011-04-11  Teodor Zlatanov  <tzz@lifelogs.com>
4579
4580         * gnus-registry.el (gnus-registry-action): Remove properties and
4581         simplify subject in `gnus-registry-handle-action'.
4582         (gnus-registry-spool-action): Get subject and sender from message if
4583         they are not passed in.
4584         (gnus-registry-handle-action): Remove properties and simplify subject
4585         consistently.
4586
4587 2011-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4588
4589         * registry.el: Require CL before using defmacro*.
4590
4591 2011-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4592
4593         * gnus-art.el (article-treat-date): Assume that
4594         gnus-article-date-headers may be a group parameter.
4595
4596 2011-04-07  Teodor Zlatanov  <tzz@lifelogs.com>
4597
4598         * gnus-registry.el (gnus-registry-handle-action): More debugging.
4599
4600         * gnus-start.el (gnus-gnus-to-newsrc-format): Add a way to run
4601         interactively so the newsrc file can contain foreign groups too.
4602         Useful for debugging but not much for users.
4603
4604 2011-04-07  David Engster  <dengste@eml.cc>
4605
4606         * registry.el (registry-usage-test): Only do
4607         `registry-lookup-breaks-before-lexbind' testing for Emacs24 with
4608         lexical binding.
4609
4610 2011-04-07  David Engster  <dengste@eml.cc>
4611
4612         * Makefile.in (check, test-registry): New rules for test-suite.
4613
4614 2011-04-06  David Engster  <dengste@eml.cc>
4615
4616         * registry.el, gnus-registry.el: Use `ignore-errors' instead of third
4617         argument NOERROR for `require', since XEmacs 21.4 does not support it.
4618
4619 2011-04-06  David Engster  <dengste@eml.cc>
4620
4621         * registry.el (initialize-instance): Change :after to :AFTER to be
4622         compatible with old EIEIO version in XEmacs.
4623
4624 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
4625
4626         * gnus-registry.el (gnus-registry-post-process-groups)
4627         (gnus-registry--split-fancy-with-parent-internal): Fix splitting bugs
4628         and provide better messaging.
4629
4630 2011-04-06  David Engster  <dengste@eml.cc>
4631
4632         * Makefile.in (fail-on-warning): New rule to compile with warnings as
4633         errors.
4634
4635         * dgnushack.el (dgnushack-compile-error-on-warn): New function to call
4636         dgnushack-compile with error-on-warn enabled, and to signal an error if
4637         clean compilation failed.
4638         (dgnushack-compile): New argument 'error-on-warn'.  If non-nil, compile
4639         with `byte-compile-error-on-warn'.  Return nil if errors occured.
4640
4641 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
4642
4643         * gnus-registry.el: Don't use ERT if it's not available.  Load it
4644         unconditionally anyway, discarding errors.
4645         (gnus-registry-delete-entries): New convenience function.
4646         (gnus-registry-import-eld): Import from old .eld registry.
4647
4648         * registry.el: Don't use ERT if it's not available.  Load it
4649         unconditionally anyway, discarding errors.
4650
4651         * proto-stream.el (gnutls-negotiate): Revert inadvertent commit of the
4652         version from the Claudio Bley GnuTLS patch (extra optional parameters
4653         and host name).
4654
4655 2011-04-05  Teodor Zlatanov  <tzz@lifelogs.com>
4656
4657         * gnus-registry.el (gnus-registry-fixup-registry): New function to
4658         fixup the parameters that can be customized by the user between
4659         save/read cycles.
4660         (gnus-registry-read): Use it.
4661         (gnus-registry-make-db): Use it.
4662         (gnus-registry-spool-action, gnus-registry-handle-action):
4663         Fix messaging.
4664         (gnus-registry--split-fancy-with-parent-internal): Fix loop.
4665         Map references to actual group names with sender and subject tracking.
4666         (gnus-registry-post-process-groups): Use `cond' for better messaging.
4667         (gnus-registry-usage-test): Add subject lookup test.
4668
4669         * registry.el (registry-db, initialize-instance): Set up constructor
4670         instead of :initform arguments for the sake of older Emacsen.
4671         (registry-lookup-breaks-before-lexbind): New method to demonstrate
4672         pre-lexbind merge bug.
4673         (registry-usage-test): Use it.
4674         (initialize-instance, registry-db): Move the non-function initforms
4675         back to the class definition.
4676
4677 2011-04-03  Teodor Zlatanov  <tzz@lifelogs.com>
4678
4679         * registry.el: New library to manage gnus-registry-style data.
4680
4681         * gnus-registry.el: Use it (major rewrite).
4682
4683         * nnregistry.el: Use it.
4684
4685         * spam.el: Use it.
4686
4687 2011-04-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4688
4689         * gnus-sum.el (gnus-update-marks): Reinstate the code to not alter
4690         marks on non-selected articles.
4691
4692 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
4693
4694         * nnimap.el (nnimap-open-connection-1): Pass explicit :end-of-command
4695         parameter to open-protocol-stream.
4696
4697 2011-04-01  Julien Danjou  <julien@danjou.info>
4698
4699         * mm-view.el (mm-display-inline-fontify): Do not fontify with
4700         fundamental-mode.
4701
4702 2011-04-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4703
4704         * gnus-start.el (gnus-get-unread-articles): Don't try to contact denied
4705         servers.
4706
4707 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4708
4709         * gnus-sum.el (gnus-update-marks): Revert intersection change, which
4710         made marks not propagate, again.
4711
4712 2011-03-30  Chong Yidong  <cyd@stupidchicken.com>
4713
4714         * proto-stream.el (open-protocol-stream): Bring back `network' type.
4715         Make this the default type.
4716         (proto-stream-open-plain): Rename from proto-stream-open-default.
4717         (open-protocol-stream, proto-stream-open-starttls)
4718         (proto-stream-open-tls, proto-stream-open-shell): Replace `default'
4719         with `plain'.
4720
4721         * nnimap.el (nnimap-stream, nnimap-open-connection-1): Accept `network'
4722         value.
4723
4724         * nntp.el (nntp-open-connection-function): Document the fact that some
4725         values are not functions but are instead handled specially.
4726         Recognize nntp-open-plain-stream value.
4727         (nntp-open-connection): Recognize that value.
4728
4729 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4730
4731         * dgnushack.el: Only do the defcustom compilation thing on XEmacs,
4732         where it seems to be needed.
4733
4734 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4735
4736         * gssapi.el (open-gssapi-stream): Remove the last mentions of the IMAP
4737         stuff.
4738
4739         * gnus-score.el (gnus-score-string): Fix calling convention of
4740         `gnus-simplify-buffer-fuzzy' after last patches.
4741
4742         * gnus-sum.el (gnus-update-marks): Don't send any marks updates to the
4743         server for articles we didn't get any headers for.  This is a sanity
4744         check.
4745
4746 2011-03-29  Michael Welsh Duggan  <md5i@md5i.com>
4747
4748         * nnimap.el (nnimap-open-connection-1): Is the login responds with a
4749         new CAPABILITY, use it.
4750
4751 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4752
4753         * gnus-agent.el (gnus-agent-fetch-headers): Don't message if we're not
4754         downloading anything.
4755
4756         * gnus.el (gnus-splash-svg-color-symbols): Remove superfluous `and'.
4757
4758 2011-03-29  Adam Sjøgren  <asjo@koldfront.dk>
4759
4760         * gnus.el (gnus-group-startup-message): Prefer svg file and replace
4761         colors.
4762         (gnus-splash-svg-color-symbols): New function.
4763
4764 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4765
4766         * gnus-sum.el (gnus-simplify-buffer-fuzzy): Take the regexp explicitly
4767         instead of using the global gnus-simplify-subject-fuzzy-regexp.
4768         (gnus-simplify-subject-fuzzy): Use the local
4769         gnus-simplify-subject-fuzzy-regex instead of the global one.
4770         This makes using this variable in group parameters work.
4771
4772 2011-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
4773
4774         * gnus-registry.el (gnus-registry-unfollowed-groups):
4775         Add "archive:sent" to the unfollowed group regex (for the recent Gnus
4776         archive:sent-YYYY-MM-DD groups).
4777         (gnus-registry-split-fancy-with-parent): Bail out early in sender
4778         tracking if there are more than `gnus-registry-max-track-groups'
4779         matches.
4780
4781 2011-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4782
4783         * message.el (message--yank-original-internal): New function to do the
4784         insertion cleanly inside eval in `message-yank-original'.
4785         (message-yank-original): Use it.
4786
4787 2011-03-29  Julien Danjou  <julien@danjou.info>
4788
4789         * mm-view.el (mm-display-inline-fontify): Use `set-normal-mode' with
4790         local variables disabled rather than `normal-mode'.
4791
4792 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
4793
4794         * imap.el (imap-shell-open, imap-process-connection-type):
4795         Use imap-process-connection-type for 'shell' streams as well as
4796         Kerberos, SSL, other subprocesses.
4797
4798 2011-03-26  Chong Yidong  <cyd@stupidchicken.com>
4799
4800         * proto-stream.el: Changes preparatory to merging open-protocol-stream
4801         with open-network-stream.
4802         (proto-stream-always-use-starttls): Option removed.
4803         (open-protocol-stream): Return a process object by default.  Provide a
4804         new parameter :return-list specifying a list-type return value, which
4805         now has the form (PROP . PLIST) instead of a fixed-length list.  Change
4806         :type `network' to `try-starttls', and `network-only' to `default'.
4807         Make `default' the default, for compatibility with open-network-stream.
4808         Handle the no-parameter case exactly as open-network-stream, with no
4809         additional stream processing.  Search plists using plist-get.
4810         Explicitly add :end-of-commend parameter if it is missing.
4811         (proto-stream-open-default): Rename from
4812         proto-stream-open-network-only.  Return 'default as the type.
4813         (proto-stream-open-starttls): Rename from proto-stream-open-network.
4814         Use plist-get.  Don't return `tls' as the type if STARTTLS negotiation
4815         failed.  Always return a list with a (possibly dead) process as the
4816         first element, for compatibility with open-network-stream.
4817         (proto-stream-open-tls): Use plist-get.  Always return a list.
4818         (proto-stream-open-shell): Return `default' as connection type.
4819         (proto-stream-capability-open): Use plist-get.
4820         (proto-stream-eoc): Function deleted.
4821
4822         * nnimap.el (nnimap-stream, nnimap-open-connection)
4823         (nnimap-open-connection-1): Handle renaming of :type parameter for
4824         open-protocol-stream.
4825         (nnimap-open-connection-1): Pass a :return-list parameter
4826         open-protocol-stream to obtain a list return value.  Parse this list
4827         using plist-get.
4828
4829         * nntp.el (nntp-open-connection): Handle renaming of :type parameter
4830         for open-protocol-stream.  Accept open-protocol-stream return value
4831         that is a subprocess object instead of a list.  Handle the case of a
4832         dead returned process.
4833
4834 2011-03-25  Teodor Zlatanov  <tzz@lifelogs.com>
4835
4836         * mm-util.el (mm-handle-filename): Move to mm-decode.el (bug#8330).
4837
4838         * mm-decode.el (mm-handle-filename): Move from mm-util.el (bug#8330).
4839
4840 2011-03-21  Julien Danjou  <julien@danjou.info>
4841
4842         * mm-view.el (mm-display-inline-fontify): Make mode optional, and call
4843         normal-mode if not set.  Set temp buffer unmodified to avoid kill-buffer
4844         query.
4845         (mm-inline-text): Render normal text with fontification whenever
4846         possible.
4847
4848         * gnus-sum.el (gnus-summary-save-parts-1):
4849         * gnus-art.el (gnus-article-browse-html-save-cid-content)
4850         (gnus-article-browse-html-parts, gnus-mime-delete-part)
4851         (gnus-mime-copy-part, gnus-mime-inline-part, gnus-insert-mime-button):
4852         Use `mm-handle-filename'.
4853
4854         * mm-util.el (mm-handle-filename): New function, return the filename of
4855         an handle.
4856
4857 2011-03-18  Julien Danjou  <julien@danjou.info>
4858
4859         * gnus-util.el (gnus-buffer-live-p): Simplify gnus-buffer-live-p.
4860         (gnus-buffer-live-p): Check that buffer is not nil.
4861
4862 2011-03-17  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4863
4864         * gnus.el: No Gnus v0.15 is released.
4865
4866 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4867
4868         * time-date.el (format-seconds): Use assoc instead of assoc-string to
4869         avoid warning on XEmacs.
4870
4871         * dgnushack.el: Bind help-echo-owns-message to avoid a compiler warning
4872         on XEmacs.
4873
4874         * gnus-art.el: Require mouse, which the build bot seems to say is
4875         needed.
4876
4877         * dgnushack.el: Define url-retrieve-synchronously unless not defined.
4878
4879         * gravatar.el (gravatar-retrieve-synchronously): Use `url-retrieve' on
4880         XEmacs, since it doesn't have url-retrieve-synchronously.
4881
4882         * time-date.el (format-seconds): Use assoc instead of assoc-string,
4883         since assoc-string doesn't exist in XEmacs.
4884
4885 2011-03-17  Antoine Levitt  <antoine.levitt@gmail.com>
4886
4887         * gnus-group.el (gnus-group-list-ticked): New function.
4888         (gnus-group-make-menu-bar): Provide a menu entry for it.
4889         (gnus-group-list-map): Provide a binding for it.
4890
4891 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4892
4893         * shr.el (shr-visit-file): New command.
4894
4895         * nnimap.el (nnimap-fetch-inbox): Rewrite slightly last patch.
4896
4897 2011-03-17  Bjørn Mork  <bjorn@mork.no>
4898
4899         * nnimap.el (nnimap-fetch-inbox): Don't download bodies on ver4-capable
4900         servers.
4901
4902 2011-03-16  Julien Danjou  <julien@danjou.info>
4903
4904         * mm-uu.el (mm-uu-dissect-text-parts): Only dissect handle that are
4905         inline.
4906
4907         * gnus-art.el (article-hide-list-identifiers):
4908         Use gnus-group-get-list-identifiers.
4909
4910         * gnus-sum.el (gnus-group-get-list-identifiers): New function.
4911         (gnus-summary-remove-list-identifiers):
4912         Use gnus-group-get-list-identifiers to get regexp.
4913         (gnus-select-newsgroup, gnus-summary-insert-subject)
4914         (gnus-summary-insert-articles):
4915         Call gnus-summary-remove-list-identifiers unconditionally.
4916
4917 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4918
4919         * gnus-sum.el (gnus-articles-to-read): Revert back to old behavior if
4920         we're selecting a group with unread articles.
4921
4922         * nnimap.el (nnimap-open-connection-1): Allow `network-only', too.
4923
4924         * gssapi.el: New file separated out from imap.el to provide a general
4925         Kerberos 5 connection facility for Emacs.
4926
4927         * message.el (message-elide-ellipsis): Document the format spec
4928         ellipsis.
4929
4930 2011-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
4931
4932         * message.el (message-elide-region): Allow the ellipsis to say how many
4933         lines were removed.
4934
4935 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4936
4937         * gnus-win.el (gnus-configure-frame): Protect against trying to restore
4938         window configurations containing buffers that are now dead.
4939
4940         * nnimap.el (nnimap-parse-flags): Remove all MODSEQ entries before
4941         parsing to avoid integer overflows.
4942         (nnimap-parse-flags): Simplify the last change.
4943         (nnimap-parse-flags): Store HIGHESTMODSEQ as a string, since it may be
4944         too large for 32-bit Emacsen.
4945
4946 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4947
4948         * auth-source.el (auth-source-netrc-create):
4949         * message.el (message-yank-original): Fix use of `case'.
4950
4951 2011-03-15  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
4952
4953         * gnus-art.el (gnus-article-treat-body-boundary): Fix boundary width on
4954         XEmacs, which was one character too wide.
4955
4956 2011-03-09  Antoine Levitt  <antoine.levitt@gmail.com>
4957
4958         * gnus-sum.el (gnus-articles-to-read): Use gnus-large-newsgroup as
4959         default number of articles to display.
4960         (gnus-articles-to-read): Use pretty names for prompt.
4961
4962 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4963
4964         * gnus-int.el (gnus-open-server): Ditto.
4965
4966         * gnus-start.el (gnus-activate-group): Give a backtrace if
4967         debug-on-quit is set and the user hits `C-g'.
4968         (gnus-read-active-file): Ditto.
4969
4970         * gnus-group.el (gnus-group-read-ephemeral-group): Ditto.
4971
4972 2011-03-15  Teodor Zlatanov  <tzz@lifelogs.com>
4973
4974         * message.el (message-yank-original): Use cond instead of CL case.
4975
4976 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4977
4978         * auth-source.el (auth-source-netrc-create): Use usual format for the
4979         default in prompts.
4980
4981 2011-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4982
4983         * lpath.el: Fbind read-char-choice for XEmacs.
4984
4985 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
4986
4987         * auth-source.el (auth-source-netrc-create): Show the default in the
4988         prompt when prompting for token creation.
4989
4990 2011-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
4991
4992         * auth-source.el (auth-source-format-prompt): Always convert the value
4993         to a string to avoid evaluating non-string arguments.
4994         (auth-source-netrc-create): Offer default properly, not as initial
4995         content in `read-string'.
4996         (auth-source-netrc-saver): Use a cache keyed by file name and MD5 hash
4997         of line to determine if we've been run before.  If so, don't run again,
4998         but print a trivial message to indicate the cache was hit instead.
4999
5000 2011-03-11  Teodor Zlatanov  <tzz@lifelogs.com>
5001
5002         * gnus-sync.el (gnus-sync-install-hooks, gnus-sync-unload-hook):
5003         Don't install `gnus-sync-read' to any hooks by default.  It's buggy.
5004         The user will have to run `gnus-sync-read' manually and wait for Cloudy
5005         Gnus.
5006
5007 2011-03-11  Julien Danjou  <julien@danjou.info>
5008
5009         * mm-uu.el (mm-uu-type-alist): Add support for diff starting with "===
5010         modified file".
5011
5012 2011-03-09  Teodor Zlatanov  <tzz@lifelogs.com>
5013
5014         * auth-source.el (auth-source-read-char-choice): New function to read a
5015         character choice using `dropdown-list', `read-char-choice', or
5016         `read-char'.  It appends "[a/b/c] " to the prompt if the choices were
5017         '(?a ?b ?c).  The `dropdown-list' support is disabled for now.  Use
5018         `eval-when-compile' to load `dropdown-list'.  Remove `dropdown-list'.
5019         (auth-source-netrc-saver): Use it.
5020         (auth-source-pick-first-password): New convenience function.
5021
5022 2011-03-08  Teodor Zlatanov  <tzz@lifelogs.com>
5023
5024         * nnimap.el (nnimap-credentials): Keep the :save-function as the third
5025         parameter in the credentials.
5026         (nnimap-open-connection-1): Use it after a successful login.
5027         (nnimap-credentials): Add IMAP-specific user and password prompt.
5028
5029         * auth-source.el (auth-source-search): Add :require parameter, taking a
5030         list.  Document it and the :save-function return token.  Pass :require
5031         down.  Change the CREATED message from a warning to a debug statement.
5032         (auth-source-search-backends): Pass :require down.
5033         (auth-source-netrc-search): Pass :require down.
5034         (auth-source-netrc-parse): Use :require, if it's given, as a filter.
5035         Change save prompt to indicate all modifications saved here are
5036         deletions.
5037         (auth-source-netrc-create): Take user login name as default in user
5038         prompt.  Move all the save functionality to a lexically bound function
5039         under the :save-function token in the returned list.  Set up clearer
5040         default prompts for user, host, port, and secret.
5041         (auth-source-netrc-saver): New function, intended to be wrapped for
5042         :save-function.
5043
5044 2011-03-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5045
5046         * shr.el (shr-table-horizontal-line): Change the defaults for the table
5047         lines to be spaces instead.
5048
5049 2011-03-07  Julien Danjou  <julien@danjou.info>
5050
5051         * sieve-manage.el (sieve-sasl-auth): Create auth-info if not found.
5052         (sieve-sasl-auth): Check that auth-source-search did return something,
5053         or just return an empty string.
5054
5055 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
5056
5057         * gnus.el (gnus-interactive): Use read-directory-name.
5058
5059         * gnus-uu.el (gnus-uu-decode-uu-and-save)
5060         (gnus-uu-decode-unshar-and-save, gnus-uu-decode-save)
5061         (gnus-uu-decode-binhex, gnus-uu-decode-yenc)
5062         (gnus-uu-decode-save-view, gnus-uu-decode-postscript-and-save):
5063         Likewise.
5064
5065         * gnus-group.el (gnus-group-make-directory-group): Likewise.
5066
5067 2011-03-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5068
5069         * gnus-start.el (gnus-group-change-level): Allow putting foreign groups
5070         onto the list of killed groups, too.  This makes killed nnimap groups,
5071         for instance, more reliably not reappear.
5072
5073         * nnimap.el (nnimap-request-thread): Don't bug out when we can't find
5074         the parent.
5075
5076         * gnus-sum.el (gnus-update-read-articles): Fix typo.
5077
5078         * gnus.el (gnus-valid-select-methods): Mark nnimap as a backend that
5079         really have server-side marks.
5080
5081         * gnus-sum.el (gnus-propagate-marks): Change default back to nil again,
5082         since most backends do not usefully have server-side marks.
5083         (gnus-update-read-articles): Propagate marks to all backends that
5084         really have server-side marks.
5085
5086 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
5087
5088         * message.el (message-cite-reply-position, message-cite-style):
5089         New variables.
5090         (message-yank-original): Use the new citation styles.
5091
5092 2011-03-04  Daiki Ueno  <ueno@unixuser.org>
5093
5094         * message.el (message-options): Revert 22da67af (workaround for XEmacs
5095         buffer-local issue); don't mark it buffer-local when running under
5096         XEmacs.
5097
5098 2011-03-03  Tassilo Horn  <tassilo@member.fsf.org>
5099
5100         * nnimap.el (nnimap-parse-flags): Add a workaround for FETCH lines with
5101         numbers too big to be `read'.
5102
5103 2011-03-02  Teodor Zlatanov  <tzz@lifelogs.com>
5104
5105         * password-cache.el (password-in-cache-p): Add autoload.
5106
5107         * message.el (message-options): Make buffer-local two ways to attempt
5108         to fix a XEmacs bug.
5109
5110 2011-03-02  Julien Danjou  <julien@danjou.info>
5111
5112         * gnus-art.el (gnus-with-article-buffer): Fix buffer live check.
5113
5114 2011-03-01  Julien Danjou  <julien@danjou.info>
5115
5116         * gnus-art.el (list-identifier): Add list-identifier as a parameter
5117         group.
5118         (article-hide-list-identifiers): Use list-identifier group parameter.
5119
5120 2011-02-28  Julien Danjou  <julien@danjou.info>
5121
5122         * sieve.el (sieve-buffer-script-name): New local variable to store
5123         sieve script name.
5124         (sieve-edit-script): Store sieve script name.
5125         (sieve-upload): Use sieve script name when uploading.
5126         (sieve-upload): Use substitute-command-keys.
5127         (sieve-edit-script): Use substitute-command-keys.
5128         (sieve-refresh-scriptlist): Use substitute-command-keys.
5129         (sieve-manage-mode-map): Define keymap properly.
5130         (sieve-manage-mode): Do not set mode name manually, change mode-name to
5131         (sieve-refresh-scriptlist): Use substitute-command-keys."Sieve-manage".
5132         Remove commented code about cvs.
5133         (sieve-manage-quit): New function.
5134         (sieve-manage-mode-map): Bind 'q' to sieve-manage-quit.
5135
5136 2011-02-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5137
5138         * gnus-group.el (gnus-import-other-newsrc-file): New function.
5139
5140 2011-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
5141
5142         * auth-source.el (auth-source-search): Cache empty result sets.
5143
5144         * password-cache.el (password-in-cache-p): Convenience function to
5145         check if a key is in the cache, even if the value is nil.
5146
5147         * auth-source.el (auth-source-save-behavior): New variable to replace
5148         `auth-source-never-create'.
5149         (auth-source-netrc-create): Use it.
5150         (auth-source-never-save): Remove.
5151
5152 2011-02-25  Lars Ingebrigtsen  <larsi@gnus.org>
5153
5154         * nnimap.el (nnimap-stream): Doc fix.
5155         (nnimap-open-connection-1): Reverse the order of the ports to that the
5156         prompted-for port is first.
5157
5158         * gnus-start.el (gnus-get-unread-articles): Don't clobber the async
5159         retrieval by the no-group selection.
5160
5161         * gnus-demon.el (gnus-demon-init): run-with-timer should be called with
5162         numerical parameters.
5163
5164 2011-02-25  Julien Danjou  <julien@danjou.info>
5165
5166         * gnus-gravatar.el: Use gnus-with-article-buffer.
5167
5168         * gnus-art.el (gnus-with-article-buffer): Check that the
5169         gnus-article-buffer is alive.
5170
5171 2011-02-24  Teodor Zlatanov  <tzz@lifelogs.com>
5172
5173         * auth-source.el (auth-source-creation-prompts): New variable to manage
5174         creation-time prompts.
5175         (auth-source-search): Document it.
5176         (auth-source-format-prompt): Add utility function.
5177         (auth-source-netrc-create): Don't default the user name to
5178         user-login-name.  Use `auth-source-creation-prompts' and some default
5179         prompts for user, host, port, and password (the default generic prompt
5180         remains ugly).
5181         (auth-source-never-save): Add customizable option to never save info.
5182         (auth-source-netrc-create): Use it and improve save prompts.  Fix help
5183         mode excursion.
5184
5185 2011-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5186
5187         * auth-source.el (auth-source-netrc-create): Use `read-char' with no
5188         argument that XEmacs doesn't support.
5189
5190         * dgnushack.el (dgnushack-compile): Exclude color.el from being
5191         compiled for Emacsen having no `libxml-parse-html-region' support.
5192
5193         * gnus-xmas.el (gnus-xmas-define): Remove gnus-x-color-values.
5194
5195         * lpath.el: Bind buffer-save-without-query for XEmacs.
5196
5197 2011-02-23  Julien Danjou  <julien@danjou.info>
5198
5199         * gnus-art.el (article-make-date-line): Ignore errors if time is
5200         invalid and not convertible.
5201         (article-make-date-line): Only add lapsed time if time is not nil.
5202
5203 2011-02-23  Teodor Zlatanov  <tzz@lifelogs.com>
5204
5205         * auth-source.el (auth-source-netrc-create): Use `read-char' instead of
5206         `read-char-choice' for backwards compatibility.
5207         (auth-source-netrc-element-or-first): New function to DTRT for
5208         parameter extraction.
5209         (auth-source-netrc-create): Use it and fix multiple parameter print
5210         bug.  Use the default passed from above (given-default) or the
5211         built-in (user-login-name for :user).
5212
5213 2011-02-23  Lars Ingebrigtsen  <larsi@gnus.org>
5214
5215         * gnus-start.el (gnus-dribble-read-file):
5216         Set buffer-save-without-query, since we always want to save the dribble
5217         file, probably.
5218
5219         * nnmail.el (nnmail-article-group): Allow a final "" split to work on
5220         nnimap.
5221
5222         * gnus-sum.el (gnus-user-date-format-alist): Rename back again from
5223         -summary- since it's a user-visible variable.
5224
5225         * nnimap.el (nnimap-retrieve-group-data-early): Don't do QRESYNC the
5226         first time you use the new Gnus.
5227
5228 2011-02-22  Teodor Zlatanov  <tzz@lifelogs.com>
5229
5230         * auth-source.el: Don't load netrc.el.
5231         (auth-sources): Search ~/.netrc as well by default.
5232         (auth-source-debug): Add 'trivia option for extra output.
5233         (auth-source-do-trivia): Use it.
5234         (auth-source-search): Simplify logic to use
5235         `auth-source-search-backends'.  Use `auth-source-do-trivia' where
5236         appropriate.  Don't keep a running count at this level.  Layer :create
5237         and :delete options appropriately on the first and second passes.
5238         Don't track the backend with the search results.
5239         (auth-source-search-backends): New function to search a list of
5240         backends for a processed spec.
5241         (auth-source-netrc-parse): Cache all netrc files, making
5242         auth-source-netrc-cache an alist keyed by the file name and using the
5243         file mtime as the caching criterion.  Keep the obfuscated data secret
5244         with a lexical bind.
5245         (auth-source-netrc-search): Don't calculate the length of the results
5246         unnecessarily.
5247         (auth-source-search-backends): Fix bug.
5248         (auth-source-netrc-create): Rework prompts.
5249
5250 2011-02-22  Andrew Cohen  <cohen@andy.bu.edu>
5251
5252         * nnir.el (nnir-imap-search-arguments,nnir-imap-default-search-key):
5253         Lower case names of search constraints.
5254         (nnir-run-query): Cache and reuse search constraints for all imap
5255         servers.
5256
5257 2011-02-22  Lars Ingebrigtsen  <larsi@gnus.org>
5258
5259         * gnus-msg.el (gnus-inews-add-send-actions): Restore the winconf name
5260         after exit.
5261         (gnus-setup-message): Define missing variable from last checkin.
5262
5263         * gnus-sum.el (gnus-summary-show-article): When called with t as the
5264         value, show the raw article.
5265
5266 2011-02-22  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5267
5268         * gnus.el: No Gnus v0.13 is released.
5269
5270 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5271
5272         * nnimap.el (nnimap-open-connection-1): Revert last change, since
5273         auth-source now accepts numbers.
5274
5275         * auth-source.el (auth-source-netrc-parse): Accept a number as the port
5276         spec, too.
5277         (auth-source-ensure-strings): New function.
5278
5279         * gnus-art.el (gnus-article-update-date-headers): Doc fix.
5280         (gnus-article-setup-buffer): Always restart the date timer so that user
5281         changes to the frequency is respected.
5282
5283         * nnimap.el (nnimap-open-connection-1): auth-source expects strings as
5284         port numbers, so make sure it gets that if nnimap-server-port is
5285         explicit.
5286
5287 2011-02-21  Simon Josefsson  <simon@josefsson.org>
5288
5289         * nnimap.el (nnimap-inbox): Doc fix.
5290
5291 2011-02-21  Chong Yidong  <cyd@stupidchicken.com>
5292
5293         * color.el (color-name-to-rgb): Rename from color-rgb->normalize.
5294         Autoload.  Add optional arg FRAME, and pass it to color-values.
5295         (color-complement): Caller changed.  Doc fix.
5296         (color-gradient): Rewrite for better clarity and efficiency.
5297
5298 2011-02-20  Chong Yidong  <cyd@stupidchicken.com>
5299
5300         * shr-color.el (shr-color->hexadecimal): Use renamed function names
5301         color-rgb-to-hex, color-name-to-rgb, color-srgb-to-lab, and
5302         color-lab-to-srgb.
5303
5304 2011-02-20  Drew Adams  <drew.adams@oracle.com>
5305
5306         * color.el: First part of merge from hexrgb.el.
5307         (color-rgb-to-hex): Rename from color-rgb->hex.
5308         (color-rgb-to-hsv): Rename from color-rgb->hsv.  Force hue and
5309         saturation to zero if the value is too small.
5310         (color-rgb-to-hsl): Rename from color-rgb->hsl.
5311         (color-srgb-to-xyz): Rename from color-srgb->xyz.  Doc fix.
5312         (color-xyz-to-srgb): Rename from color-xyz->srgb.  Doc fix.
5313         (color-xyz-to-lab): Rename from color-xyz->lab.  Doc fix.
5314         (color-lab-to-xyz): Rename from color-lab->xyz.  Doc fix.
5315         (color-lab-to-srgb): Rename from color-lab->srgb.  Doc fix.
5316         (color-cie-de2000): Doc fix.
5317
5318 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5319
5320         * nntp.el (nntp-finish-retrieve-group-infos): Add a kludge to use the
5321         given method as in the group name if we're using an extended method.
5322         (nntp-finish-retrieve-group-infos): Wait for the end of the LIST ACTIVE
5323         command, if we're using that, instead of waiting for the beginning.
5324
5325         * gnus-start.el (gnus-get-unread-articles): Extend the methods so that
5326         we're sure to get unique server names, and we don't output two async
5327         commands in the same buffer.  This fixes an NNTP hang for some users.
5328
5329 2011-02-21  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5330
5331         * gnus.el: No Gnus v0.11 is released.
5332
5333 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5334
5335         * gnus-sum.el (gnus-summary-next-article): Add a kludge to reselect the
5336         summary buffer before reading going to the next buffer.  This avoids
5337         putting the point in the group buffer if you `C-g' the command.
5338
5339         * auth-source.el (auth-source-netrc-parse): Add an in-memory netrc
5340         cache (for now) to make ~/.authinfo.gpg files usable.
5341
5342         * nnfolder.el (copyright-update): Define for the compiler.
5343
5344         * auth-source.el (auth-source-search): Fix unbound variable.
5345
5346 2011-02-19  Glenn Morris  <rgm@gnu.org>
5347
5348         * gnus.el (gnus-meta): Doc fix.
5349
5350 2011-02-19  Chong Yidong  <cyd@stupidchicken.com>
5351
5352         * nnfolder.el (nnfolder-save-buffer): Don't let-bind copyright-update,
5353         in case it's not yet loaded.
5354
5355 2011-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
5356
5357         * nnimap.el (nnimap-wait-for-response): Ensure that we get the entire
5358         line we're waiting for.
5359
5360 2011-02-19  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
5361
5362         * gnus-art.el (gnus-article-next-page-1): Because customized mode-line
5363         face with line-width greater than zero will cause RET in gnus summary
5364         buffer to scroll down article page-wise because auto vscroll happens,
5365         it should be temporally disabled when doing a scroll-up.
5366
5367 2011-02-19  Lars Ingebrigtsen  <larsi@gnus.org>
5368
5369         * nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK"
5370         outputs from the server.
5371
5372 2011-02-18  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
5373
5374         * gnus-art.el (gnus-article-prepare): Run gnus-article-prepare-hook
5375         later so that bbdb can hook in easier.
5376
5377 2011-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
5378
5379         * auth-source.el (auth-source-search): Don't try to create credentials
5380         if the caller doesn't want that.
5381         (auth-source-search): If we don't find a match, don't bug out on
5382         non-bound variables.
5383         (auth-source-search): Only ask a single backend to create the
5384         credentials.
5385
5386         * nnimap.el (nnimap-log-command): Add a newline to the inhibited
5387         logging.
5388         (nnimap-credentials): Protect against auth-source-search returning nil.
5389         (nnimap-request-list): Protect against not being able to open the
5390         server.
5391
5392 2011-02-17  Lars Ingebrigtsen  <larsi@gnus.org>
5393
5394         * auth-source.el (auth-source-search): Do a two-phase search, one with
5395         no :create to get the responses from all backends.
5396
5397         * nnimap.el (nnimap-open-connection-1): Delete duplicate server names
5398         when getting credentials.
5399
5400         * gnus-util.el (gnus-delete-duplicates): New function.
5401
5402 2011-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
5403
5404         * nnimap.el (nnimap-credentials): Instead of picking the first port as
5405         a creation default, pass the whole port list down.  It will be
5406         completed.
5407
5408         * auth-source.el (auth-source-search): Updated docs to talk about
5409         multiple creation choices.
5410         (auth-source-netrc-create): Accept a list as a value (from the search
5411         parameters) and do completion on that list.  Keep a separate netrc line
5412         with the password obscured for showing the user.
5413
5414         * nnimap.el (nnimap-open-connection-1): Make the `nnimap-address' the
5415         first choice to `auth-source-search' so it will be used for entry
5416         creation instead of the server's Gnus-specific name.
5417         (nnimap-credentials): Rely on the auth-source library to select which
5418         port is actually wanted in the new netrc entry, so don't override
5419         `auth-source-creation-defaults'.
5420
5421         * auth-source.el (auth-source-netrc-parse): Use :port instead of
5422         :protocol and accept a missing user, host, or port as a wildcard match.
5423         (auth-source-debug): Default to off.
5424
5425         (auth-source-netrc-search, auth-source-netrc-create)
5426         (auth-source-secrets-search, auth-source-secrets-create)
5427         (auth-source-user-or-password, auth-source-backend, auth-sources)
5428         (auth-source-backend-parse-parameters, auth-source-search): Use :port
5429         instead of :protocol.
5430
5431         * nnimap.el (nnimap-credentials): Pass a port default to
5432         `auth-source-search' in case an entry needs to be created.
5433         (nnimap-open-connection-1): Use :port instead of :protocol.
5434
5435 2011-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5436
5437         * auth-source.el: Bind load-path when loading EIEIO from
5438         "gnus-fallback-lib/eieio"; don't pass more than two args, that XEmacs
5439         21.4 doesn't support, to `require'.
5440         (auth-source-secrets-search): Use mm-delete-duplicates instead of
5441         delete-dups that is not available in XEmacs 21.4.
5442
5443 2011-02-16  Raphael Kubo da Costa  <kubito@gmail.com>  (tiny change)
5444
5445         * auth-source.el: Correctly load EIEIO from "gnus-fallback-lib/eieio"
5446         as EIEIO must also be loaded when auth-source.el is being
5447         byte-compiled.
5448
5449 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
5450
5451         * gnus-fallback-lib/eieio/eieio.el: Copy from Emacs.
5452
5453         * gnus-fallback-lib/eieio/eieio-speedbar.el: Copy from Emacs.
5454
5455         * gnus-fallback-lib/eieio/eieio-opt.el: Copy from Emacs.
5456
5457         * gnus-fallback-lib/eieio/eieio-datadebug.el: Copy from Emacs.
5458
5459         * gnus-fallback-lib/eieio/eieio-custom.el: Copy from Emacs.
5460
5461         * gnus-fallback-lib/eieio/eieio-comp.el: Copy from Emacs.
5462
5463         * gnus-fallback-lib/eieio/eieio-base.el: Copy from Emacs.
5464
5465         * auth-source.el: Load EIEIO from "gnus-fallback-lib/eieio" if
5466         necessary.
5467
5468 2011-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
5469
5470         * gnus-sum.el (gnus-propagate-marks): Change default to t again, since
5471         nil means that nnimap doesn't get updated.
5472
5473 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
5474
5475         * auth-source.el (auth-source-netrc-create): Return a synthetic search
5476         result when the user doesn't want to write to the file.
5477         (auth-source-netrc-search): Expect a synthetic result and proceed
5478         accordingly.
5479         (auth-source-cache-expiry): New variable to override
5480         `password-cache-expiry'.
5481         (auth-source-remember): Use it.
5482
5483         * nnimap.el (nnimap-credentials): Remove the `inhibit-create'
5484         parameter.  Create entry if necessary by using :create t.
5485         (nnimap-open-connection-1): Don't pass `inhibit-create'.
5486
5487 2011-02-15  Teodor Zlatanov  <tzz@lifelogs.com>
5488
5489         * auth-source.el (auth-source-debug): Enable by default and don't
5490         mention the obsolete `auth-source-hide-passwords'.
5491         (auth-source-do-warn): New function to debug unconditionally.
5492         (auth-source-do-debug): Use it.
5493         (auth-source-backend-parse): Use it for invalid `auth-sources' entries
5494         and for Secrets API entries when the secrets.el library is not
5495         available.
5496
5497 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
5498
5499         * gnus-sum.el (gnus-propagate-marks): Default to nil.
5500         (gnus-summary-exit): Kill the correct article buffer on exit from a
5501         `C-d' group.
5502
5503         * gnus-start.el (gnus-use-backend-marks): Removed, since it duplicates
5504         gnus-propagate-marks.
5505
5506         * gnus-sum.el (gnus-summary-exit-no-update): Restore the group conf
5507         before killing the buffers so that a non-full window conf gets handled
5508         correctly.
5509         (gnus-summary-exit): Ditto.
5510         (gnus-summary-read-group-1): Ditto.
5511
5512         * nntp.el (nntp-retrieve-group-data-early): Reinstate the two-part
5513         async code again so that we can debug it properly.
5514
5515         * message.el (message-reply): Take an optional switch-buffer parameter
5516         so that Gnus window confs are respected better.
5517
5518 2011-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
5519
5520         * auth-source.el (auth-source-backend-parse-parameters): Don't rely on
5521         `plist-get' to accept non-list parameters (XEmacs issue).
5522         Fix docstring.
5523         (auth-source-secrets-search): Use `delete-dups', `append mapcar', and
5524         `butlast' instead of `remove-duplicates', `mapcan', and `subseq'.
5525         (auth-sources, auth-source-backend-parse, auth-source-secrets-search):
5526         Login collection is "Login" and not "login".
5527
5528 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
5529
5530         * gnus-art.el (article-update-date-lapsed): Don't bug out when updating
5531         multiple headers.
5532
5533         * nnimap.el (nnimap-inhibit-logging): New variable.
5534         (nnimap-log-command): Don't log login commands.
5535
5536         * auth-source.el (auth-source-netrc-search): The asserts seem to want
5537         to have more parameters.
5538
5539         * nnimap.el (nnimap-send-command): Mark the command time for each
5540         command, so that we don't get NOOPs stepping on our toes.
5541
5542         * gnus-art.el (article-date-ut): Get the date from the Date header on
5543         `t'.
5544
5545 2011-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5546
5547         * auth-source.el (auth-source-search): Use copy-sequence instead of
5548         the cl.el copy-list.
5549
5550 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
5551
5552         * imap.el: Bring it back (revert
5553         84d800cd31de3064f0ed39617d725709a2f8f42f).
5554
5555 2011-02-13  Adam Sjøgren  <asjo@koldfront.dk>
5556
5557         * gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
5558         Improve prompt.
5559
5560 2011-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
5561
5562         * gnus-art.el (gnus-article-mode-line-format): Remove the article
5563         washing status from the default format.  It isn't very informative.
5564
5565 2011-02-13  Tassilo Horn  <tassilo@member.fsf.org>  (tiny change)
5566
5567         * nnimap.el (nnimap-request-accept-article, nnimap-process-quirk):
5568         Fix Gcc processing on imap.
5569
5570 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
5571
5572         * imap.el: Remove file.  All the functionality is in nnimap.el.
5573
5574 2011-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5575
5576         * message.el (message-bury): Don't pop up a new window when selected
5577         window is dedicated.
5578
5579 2011-02-10  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
5580
5581         * gnus-sum.el (gnus-summary-save-parts): Use read-directory-name.
5582
5583 2011-02-10  Teodor Zlatanov  <tzz@lifelogs.com>
5584
5585         * sieve-manage.el: Autoload `auth-source-search'.
5586         (sieve-sasl-auth): Use it.
5587
5588 2011-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
5589
5590         * nnimap.el: Autoload `auth-source-forget+'.
5591         (nnimap-open-connection-1): Use it if the connection fails.
5592
5593         * auth-source.el: Require `password-cache'.
5594         (auth-source-hide-passwords, auth-source-cache): Remove and mark
5595         obsolete.
5596         (auth-source-magic): Marker for `password-cache' keys.
5597         (auth-source-do-cache): Update docstring.
5598         (auth-source-search): Use and check cache.
5599         (auth-source-forget-all-cached, auth-source-remember)
5600         (auth-source-recall, auth-source-forget, auth-source-forget+)
5601         (auth-source-specmatchp): Caching support functions.
5602         (auth-source-forget-user-or-password, auth-source-forget-all-cached):
5603         Remove and obsolete.
5604         (auth-source-user-or-password): Remove caching to further discourage
5605         using it.  Always hide passwords.
5606
5607         * password-cache.el (password-cache-remove): Accept secrets that are
5608         not strings.
5609
5610 2011-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
5611
5612         * nntp.el (nntp-retrieve-group-data-early-disabled): Disable the async
5613         code for now, since it doesn't work for all users.
5614
5615 2011-02-09  Julien Danjou  <julien@danjou.info>
5616
5617         * message.el (message-options): Make message-options really buffer
5618         local.
5619
5620 2011-02-08  Teodor Zlatanov  <tzz@lifelogs.com>
5621
5622         * mail-source.el: Autoload `auth-source-search'.
5623         (mail-source-keyword-map): Note order matters.
5624         (mail-source-set-1): Get all the mail-source source values and
5625         defaults and search auth-source on those if needed.  This can all
5626         probably be simplified.
5627
5628         * nnimap.el: Autoload `auth-source-search'.
5629         (nnimap-credentials): Use it.
5630         (nnimap-open-connection-1): Ask for the virtual server and physical
5631         address in one shot.
5632
5633         * nntp.el: Autoload `auth-source-search'.
5634         (nntp-send-authinfo): Use it.  Note TODO.
5635
5636 2011-02-08  Julien Danjou  <julien@danjou.info>
5637
5638         * shr.el (shr-tag-body): Add support for text attribute in body
5639         markups.
5640
5641         * message.el (message-options): Make message-options a local variable.
5642
5643 2011-02-07  Teodor Zlatanov  <tzz@lifelogs.com>
5644
5645         * auth-source.el (auth-source-secrets-search)
5646         (auth-source-user-or-password): Use `append' instead of `nconc'.
5647         (auth-source-user-or-password): Build return list better and protect
5648         against nil :secret.
5649
5650 2011-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
5651
5652         * nnimap.el (nnimap-update-info): Refactor slightly.
5653         (nnimap-update-info): Tell Gnus whether there are any \Recent messages.
5654         (nnimap-update-info): Clean up slightly.
5655         (nnimap-quirk): Add quirk for Gmail IMAP which bugs out on NUL
5656         characters.
5657         (nnimap-process-quirk): Rename function to avoid collision.
5658         (nnimap-update-info): Fix macrology bug-out.
5659         (nnimap-update-info): Simplify split history test.
5660
5661 2011-02-06  Michael Albinus  <michael.albinus@gmx.de>
5662
5663         * auth-source.el (top): Require 'eieio unconditionally.
5664         Autoload `secrets-get-attributes' instead of `secrets-get-attribute'.
5665         (auth-source-secrets-search): Limit search when `max' is greater than
5666         number of results.
5667
5668 2011-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
5669
5670         * nntp.el (nntp-finish-retrieve-group-infos): Protect against the first
5671         part not returning any data.
5672
5673         * proto-stream.el (open-protocol-stream): Document the return value.
5674
5675 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
5676
5677         * auth-source.el (auth-source-secrets-search): Add examples.
5678
5679 2011-02-06  Julien Danjou  <julien@danjou.info>
5680
5681         * message.el (message-setup-1): Handle message-generate-headers-first
5682         set to t.
5683
5684 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
5685
5686         * auth-source.el (auth-sources): Allow for simpler defaults for Secrets
5687         API with a string "secrets:collection-name" and with 'default.
5688         (auth-source-backend-parse): Parse "secrets:collection-name" and
5689         'default.  Recurse on parses instead of repeating code.  Use the
5690         Secrets API is the source is not nil and 'ignore otherwise.  Emit a
5691         message when ignoring a source.
5692         (auth-source-search): List ignored search keys at the top level.
5693         (auth-source-netrc-create): Use `case' instead of `cond'.
5694         (auth-source-secrets-search): Created with TODOs.
5695         (auth-source-secrets-create): Created with TODOs.
5696         (auth-source-retrieve, auth-source-create, auth-source-delete)
5697         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
5698         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
5699         (auth-source-user-or-password-sftp)
5700         (auth-source-user-or-password-smtp): Remove.
5701         (auth-source-user-or-password): Deprecated and modified to be a wrapper
5702         around `auth-source-search'.  Not tested thoroughly.
5703
5704 2011-02-04  Teodor Zlatanov  <tzz@lifelogs.com>
5705
5706         * auth-source.el: Bring in assoc and eioeio libraries.
5707         (secrets-enabled): New variable to track the status of the Secrets API.
5708         (auth-source-backend): New EIOEIO class to represent a backend.
5709         (auth-source-creation-defaults): New variable to set prompt defaults
5710         during token creation (see the `auth-source-search' docstring for
5711         details).
5712         (auth-sources): Simplify to allow a simple string as a netrc backend
5713         spec.
5714         (auth-source-backend-parse): Parse a backend from an `auth-sources' spec.
5715         (auth-source-backend-parse-parameters): Fill in the backend parameters.
5716         (auth-source-search): Main auth-source API entry point.
5717         (auth-source-delete): Wrapper around `auth-source-search' for deletion.
5718         (auth-source-search-collection): Helper function for searching.
5719         (auth-source-netrc-parse, auth-source-netrc-normalize)
5720         (auth-source-netrc-search, auth-source-netrc-create): Netrc backend.
5721         Supports search, create, and delete.
5722         (auth-source-secrets-search, auth-source-secrets-create): Secrets API
5723         backend stubs.
5724         (auth-source-user-or-password): Call `auth-source-search' but it's not
5725         ready yet.
5726
5727 2011-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
5728
5729         * message.el (message-setup-1): Remove the read-only stuff, since it
5730         doesn't work under XEmacs, for some reason.
5731
5732         * gnus-sum.el (gnus-user-date): Rename back from
5733         gnus-summary-user-date since user code refers to it.
5734
5735         * shr.el (shr-render-td): Store the actual background color used.
5736
5737         * message.el (message-setup-1): Don't bind the constant
5738         -forbidden-properties.
5739         (message-setup-1): Revert previous change, since it needs to bind the
5740         props to insert them.
5741         (message-resend): Allow removing the read-only separator line.
5742
5743 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5744
5745         * nnimap.el (nnimap-request-accept-article): Give an error message if
5746         the APPEND wasn't successful.
5747
5748 2011-02-03  Adam Sjøgren  <asjo@koldfront.dk>
5749
5750         * gnus-start.el (gnus-get-unread-articles): Fix the call to methods
5751         that have no groups.
5752
5753 2011-02-03  Julien Danjou  <julien@danjou.info>
5754
5755         * gnus-draft.el: Remove progn around gnus-draft-setup.
5756
5757 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5758
5759         * gnus-start.el (gnus-read-active-for-groups): This function is never
5760         called with a nil `infos', so clean that up.
5761         (gnus-get-unread-articles): Request active files from primary/secondary
5762         methods that have no groups (yet).
5763
5764 2011-02-03  Julien Danjou  <julien@danjou.info>
5765
5766         * message.el (message-setup-1): Always generate References first.
5767         (message-mail): Return the return value of message-setup, not always t.
5768         (message-setup-1): Insert mail-header-separator with read-only and
5769         intangible properties set.
5770
5771         * gnus.el (gnus-summary-line-format): Add missing semi-colon for
5772         user-date in docstring.
5773
5774         * gnus-art.el (gnus-article-jump-to-part): Remove useless sit-for.
5775
5776         * gnus.el (gnus-summary-line-format): Mention &user-date format in
5777         docstring.
5778
5779         * gnus.el (gnus-user-date-format-alist): Change default value.
5780         Use defcustom, with type and group. Move from gnus-util.el.
5781         Rename to gnus-summary-user-date-format-alist.
5782
5783 2011-02-03  Glenn Morris  <rgm@gnu.org>
5784
5785         * nnimap.el (gnus-fetch-headers): Declare.
5786
5787         * nnheader.el (gnus-range-add, gnus-remove-from-range): Autoload.
5788
5789 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5790
5791         * message.el (message-forward-make-body-digest-plain)
5792         (message-followup, message-reply): Clean up things noted by Stefan.
5793
5794         * gnus-art.el (gnus-article-setup-buffer): Stop the date timer if
5795         gnus-article-update-date-headers is nil.
5796         (gnus-article-date-headers): Rip out the old -treat-date-* stuff, since
5797         it didn't really work with defcustom.
5798         (article-update-date-lapsed): Make sure the window start doesn't move,
5799         either.
5800
5801 2011-02-01  Julien Danjou  <julien@danjou.info>
5802
5803         * mm-uu.el (mm-uu-type-alist): Add support for git format-patch diff
5804         format.
5805
5806         * mm-decode.el (mm-inline-media-tests): Do not check for diff-mode it's
5807         standard in Emacs nowadays.
5808
5809         * color.el (color-gradient): Add a color-gradient function.
5810
5811 2011-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5812
5813         * message.el (message-expand-name): Don't trust the return value of
5814         bbdb-complete-name.
5815         (message-check-news-header-syntax): Remove unused var `start'.
5816         (message-idna-to-ascii-rhs-1): Remove unused vars `rhs' and `address'.
5817         (message-inhibit-body-encoding): Move to before first use.
5818         (mail-abbrev-mode-regexp, Expires, User-Agent, Lines, Distribution)
5819         (To, References, In-Reply-To, Newsgroups, Subject, Path, From)
5820         (Organization, Message-ID, Date, mh-previous-window-config):
5821         Defvar the vars using dynamic scoping.
5822
5823 2011-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
5824
5825         * shr.el (shr-render-td): Only do colors at the final rendering.
5826         Should be slightly faster.
5827         (shr-insert-table): Fix up TD background colors when doing the
5828         vertical padding.
5829
5830         * gnus-art.el (article-date-ut): Protect against articles with no Date
5831         header.
5832         (article-update-date-lapsed): Don't use current-column to find the
5833         horizontal position.  It's fragile in the presence of \003 characters.
5834
5835         * gnus-start.el (gnus-read-active-file-1): Remove dead parameter infos.
5836
5837 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
5838
5839         * gnus-art.el (article-transform-date): Rewrite to still work when
5840         there are several rfc2822 parts.
5841         (article-transform-date): Fix infinite recursion.
5842         (article-date-ut): Replace infinitely many Date headers with a single
5843         one when called interactively.
5844
5845         * nnimap.el (nnimap-wait-for-response): Wait for results in a more
5846         secure manner.
5847
5848         * gnus-art.el (article-update-date-lapsed): Try to avoid having point
5849         move around by not using save-window-excursion.  It seems to work...
5850
5851 2011-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5852
5853         * gnus-art.el (article-make-date-line): Work for user-defined format.
5854
5855 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
5856
5857         * nntp.el (nntp-retrieve-group-data-early)
5858         (nntp-finish-retrieve-group-infos): Implement the asynchronous data
5859         fetching functions.
5860
5861         * gnus-start.el (gnus-read-active-for-groups): Read the active files
5862         thoroughly for all backends that have no known groups.  This should
5863         allow new nnml methods to retrieve mail.
5864
5865         * gnus-group.el (gnus-group-jump-to-group): Allow jumping to groups
5866         that Gnus doesn't know exists again.
5867
5868         * gnus-art.el (gnus-article-date-lapsed-new-header): Remove.
5869         (gnus-treat-date-ut): Ditto.
5870         (gnus-article-update-date-header): Rename.
5871         (gnus-treat-date-local): Remove.
5872         (gnus-treat-date-english): Remove.
5873         (gnus-treat-date-lapsed): Remove.
5874         (gnus-treat-date-combined-lapsed): Remove.
5875         (gnus-treat-date-original): Remove.
5876         (gnus-treat-date-iso8601): Remove.
5877         (gnus-treat-date-user-defined): Remove.
5878         (gnus-article-date-headers): New variable to control all the date
5879         header options.
5880         (article-date-ut): Rewrite to allow using the new way to format date
5881         headers(s).
5882
5883 2011-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
5884
5885         * nnmail.el (nnmail-article-group): Check for a direct fancy split
5886         method.
5887         (nnmail-article-group): A better test for fanciness.
5888
5889         * nnimap.el (nnimap-request-head): Protect against not finding the
5890         article by Message-ID.
5891
5892 2011-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
5893
5894         * gnus-art.el (article-update-date-lapsed): Try a better way to really
5895         keep point at the "same place".
5896
5897 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
5898
5899         * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active
5900         data if the group is inactive.
5901
5902 2011-01-28  Julien Danjou  <julien@danjou.info>
5903
5904         * gnus-win.el: Remove dead function gnus-window-configuration-element.
5905         (gnus-all-windows-visible-p): Remove old compatibility code.
5906         (gnus-window-top-edge): Add docstring.
5907
5908         * gnus-group.el (gnus-group-jump-to-group): Set must match to t.
5909
5910 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
5911
5912         * gnus-int.el (gnus-request-marks): Call *-request-marks instead of the
5913         older request-update-info.
5914
5915         * gnus-art.el (article-make-date-line): Limit the length a bit more.
5916
5917 2011-01-28  Daiki Ueno  <ueno@unixuser.org>
5918
5919         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt):
5920         Give mml2015-signers higher precedence over mml2015-sign-with-sender.
5921
5922 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
5923
5924         * gnus-group.el (gnus-group-refresh-group): Refresh even non-visible
5925         groups.  This makes the nndraft:queue group pop up if it's not already
5926         there.
5927
5928         * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no
5929         messages" logic, which was reversed.
5930
5931         * gnus-art.el (article-update-date-lapsed): Ensure that point stays at
5932         the "same place" even if point is on the line being replaced.
5933         (article-update-date-lapsed): Allow updating both the combined lapsed
5934         and the lapsed headers.
5935         (article-update-date-lapsed): Skip past all the X-Sent/Date headers.
5936         (article-make-date-line): Limit the number of segments dynamically to
5937         avoid too-long lines.
5938
5939 2011-01-27  Julien Danjou  <julien@danjou.info>
5940
5941         * mml2015.el (mml2015-epg-sign): Add and use mml2015-sign-with-sender.
5942         (mml2015-epg-encrypt): Use mml2015-sign-with-sender.
5943
5944 2011-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5945
5946         * shr.el (shr-expand-newlines, shr-previous-newline-padding-width):
5947         Use plist-get instead of the cl function getf.
5948
5949 2011-01-27  Glenn Morris  <rgm@gnu.org>
5950
5951         * gnus-util.el (float-time): Get rid of compiler warning, again.
5952
5953 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
5954
5955         * shr.el (shr-put-color): Special-case background colors: Do put them
5956         at the blank parts at the front of the lines.
5957
5958         * gnus-draft.el (gnus-draft-clear-marks): New function to be run as an
5959         exit hook to nix out all data on readedness on group exit.
5960
5961         * gnus-util.el (float-time): If float-time is bound, always use it on
5962         all Emacsen.  It's unclear why the subrp check was there.
5963         (time-date): Require to make some autoload issues on XEmacs go away.
5964
5965         * shr.el (shr-put-color): Don't do the box padding in tables, since
5966         they're already padded.
5967
5968 2011-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
5969
5970         * gnus-art.el (gnus-article-next-page): When the last line of the
5971         article is displayed, scroll down once more instead of going to the
5972         next article at once.
5973         (article-lapsed-string): Refactor out and allow specifying how many
5974         segments you want.
5975         (gnus-article-setup-buffer): Start updating the lapsed header directly.
5976         (gnus-article-update-lapsed-header): New variable.
5977
5978         * shr.el: Revert change that made headings use different-sized faces.
5979         The Emacs display engine isn't advanced enough that, for instance,
5980         tables can comfortably use differently-sized faces.
5981
5982 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
5983
5984         * nnimap.el (nnimap-open-connection-1): Store the actual stream type
5985         used.
5986         (nnimap-login): Prefer plain LOGIN if it's enabled (since it requires
5987         fewer round trips than CRAM-MD5, and it's less likely to be buggy), and
5988         we're using an encrypted connection.
5989
5990         * proto-stream.el: Alter the interface functions to also return the
5991         actual stream type used: network or tls.
5992
5993 2011-01-25  Julien Danjou  <julien@danjou.info>
5994
5995         * mm-view.el (mm-display-shell-script-inline): Fix typo in docstring.
5996         (mm-display-javascript-inline): New function.
5997
5998         * mm-decode.el (mm-inline-media-tests): Add application/javascript
5999         viewing function.
6000
6001 2011-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6002
6003         * shr.el (shr-expand-newlines): Fix variable name.
6004
6005 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
6006
6007         * shr.el (shr-expand-newlines): Make nested boxes work.
6008
6009 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
6010
6011         * shr.el (shr-expand-newlines): Proof of concept implementation of boxy
6012         backgrounds.
6013         (shr-expand-newlines): Switch to using overlays to enable kill'n'yank
6014         in a more sensible manner.
6015
6016 2011-01-24  Teodor Zlatanov  <tzz@lifelogs.com>
6017
6018         * mml-smime.el (mml-smime-use): Make it a defcustom and default to 'epg
6019         if EPG is loaded.
6020
6021 2011-01-24  Julien Danjou  <julien@danjou.info>
6022
6023         * shr.el: Use defface to create shr-tag-h[1-6] faces to fontify h[1-6]
6024         tags.
6025
6026 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
6027
6028         * gnus-art.el (gnus-article-read-summary-keys): Don't call disabled
6029         commands.
6030
6031         * gnus-gravatar.el (gnus-gravatar-insert): Don't move point around
6032         in the article buffer.
6033         (gnus-gravatar-insert): Use blank space from the current buffer to
6034         avoid breaking text properties.  This makes X-Sent updating work again.
6035
6036         * gravatar.el (gravatar-retrieve): Be silent when retrieving.
6037
6038 2011-01-23  Lars Ingebrigtsen  <larsi@gnus.org>
6039
6040         * gnus-html.el (gnus-html-image-fetched): Kill the buffer anyway, and
6041         fix the bug in url-http.el instead.
6042
6043         * shr.el (shr-image-fetched): Ditto.
6044
6045         * shr.el (shr-image-fetched): Avoid having point move in the article
6046         buffer.
6047
6048         * gnus-html.el (gnus-html-image-fetched): Don't kill the temporary
6049         buffer after being called.  It's apparently being killed by url.el, and
6050         killing it made point move to end-of-buffer in a random buffer.
6051
6052         * shr.el (shr-image-fetched): Ditto.
6053
6054 2011-01-23  Julien Danjou  <julien@danjou.info>
6055
6056         * mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org.
6057
6058         * mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to
6059         text/x-org.
6060
6061 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
6062
6063         * gnus-sum.el (gnus-summary-move-article): Protect against backends
6064         (i.e., nnimap) returning nil as the article number.
6065
6066 2011-01-22  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
6067
6068         * flow-fill.el (fill-flowed): Make `delete-space' option correspond to
6069         "DelSp" parameter in RFC3676.
6070
6071 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
6072
6073         * message.el (message-check-recipients): Display the encoded version of
6074         the bogus address if they differ.
6075
6076         * gnus-draft.el (gnus-group-send-queue): Really refresh the queue group
6077         after sending.
6078
6079         * gnus-agent.el (gnus-agent-send-mail): Ditto.
6080
6081         * gnus-group.el (gnus-group-refresh-group): New convenience function.
6082
6083         * gnus-draft.el (gnus-group-send-queue): Update the queue group in the
6084         group buffer after sending the queue.
6085
6086         * gnus-agent.el (gnus-agent-send-mail): Ditto.
6087
6088 2011-01-22  Julien Danjou  <julien@danjou.info>
6089
6090         * mailcap.el (mailcap-mime-extensions): Rename text/org to text/x-org.
6091
6092 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
6093
6094         * mm-decode.el (mm-preferred-alternative-precedence): Don't bug out on
6095         nested related parts.
6096
6097         * nnfolder.el (nnfolder-request-expire-articles): Return the list of
6098         unexpired articles.  This fixes the regression that led expiry marks to
6099         disappear from nnfolder groups.
6100
6101 2011-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6102
6103         * gnus-art.el (gnus-button-alist, gnus-button-handle-info-keystrokes):
6104         Don't confuse the "ret" of "retrograde" with RET.
6105
6106 2011-01-21  Julien Danjou  <julien@danjou.info>
6107
6108         * gnus-art.el (gnus-mime-display-single): Use mm-display-inline rather
6109         than mm-insert-inline.
6110
6111 2011-01-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6112
6113         * gnus-art.el (gnus-article-remove-images, gnus-article-show-images):
6114         Widen article buffer.
6115
6116 2011-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6117
6118         * mm-util.el (mm-find-buffer-file-coding-system): Don't forget to kill
6119         the temp buffer.
6120         * message.el (message-mailer-swallows-blank-line): Use with-temp-buffer.
6121
6122 2011-01-20  Julien Danjou  <julien@danjou.info>
6123
6124         * mm-decode.el (mm-inline-media-tests): Add text/x-sh.
6125
6126         * gnus-art.el (gnus-mime-inline-part): Use mm-display-inline rather
6127         than mm-insert-inline to insert inline part: this respect
6128         mm-inline-media-tests displayers.
6129
6130         * mm-view.el (mm-display-shell-script-inline): New function.
6131
6132         * mm-decode.el (mm-inline-media-tests): Add x-shellscript and x-sh.
6133
6134         * mm-uu.el (mm-uu-type-alist): Add org block.
6135         (mm-uu-org-src-code-block-extract): New function.
6136
6137         * mm-view.el (mm-display-org-inline): New function.
6138
6139         * mm-decode.el (mm-automatic-display): Add text/org.
6140
6141         * mailcap.el (mailcap-mime-extensions): Add .org.
6142
6143 2011-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6144
6145         * gnus-art.el (gnus-article-highlight): Remove argument passed to
6146         gnus-article-add-buttons.
6147
6148 2011-01-19  Tom Rauchenwald  <sehnsucht.nach.unendlichkeit@quantentunnel.de>  (tiny change)
6149
6150         * spam.el (spam-spamassassin-register-with-sa-learn): Insert a full
6151         From header with a date and "nobody" as the sender.
6152
6153 2011-01-19  Julien Danjou  <julien@danjou.info>
6154
6155         * gnus-art.el (gnus-article-add-buttons): Simplify condition.
6156         (gnus-button-push): Remove gnus-button-entry function, it fails heavily
6157         if you have the same regexp several times.
6158         (gnus-button-push): Fix matching when regexp is symbol.
6159
6160 2011-01-15  Glenn Morris  <rgm@gnu.org>
6161
6162         * message.el (message-mail): A compose-mail function should
6163         accept headers as strings.
6164
6165 2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
6166
6167         * message.el (message-tool-bar-gnome): Tweak tool-bar items.
6168         Add :vert-only tags.
6169         (message-mail): New arg RETURN-ACTION.
6170         (message-return-action): New var.
6171         (message-bury): Use it.
6172         (message-mode): Make it buffer-local.
6173         (message-send-and-exit): Always call message-bury.
6174
6175         * gnus-msg.el (gnus-msg-mail): New arg RETURN-ACTION.  Pass it to
6176         message-mail.
6177
6178 2011-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6179
6180         * nnimap.el (nnimap-convert-partial-article): Protect against
6181         zero-length body parts.
6182
6183         * mm-decode.el (mm-preferred-alternative-precedence):
6184         Discourage showing empty parts.
6185
6186         * gnus-int.el (gnus-request-accept-article): Don't try to update marks
6187         and stuff if the backend didn't return the article number.  This fixes
6188         an Exchange-related nnimap bug.
6189
6190         * gnus-sum.el (gnus-summary-next-article): Remove hack to reselect
6191         group window, because it does the wrong thing when a separate frame
6192         displays the group buffer.
6193
6194         * proto-stream.el (open-protocol-stream): Protect against the low-level
6195         transport functions returning nil.
6196
6197 2011-01-07  Daiki Ueno  <ueno@unixuser.org>
6198
6199         * mml2015.el (epg-sub-key-fingerprint): Autoload.
6200         (mml2015-epg-find-usable-secret-key): New function.
6201         (mml2015-epg-sign): Use mml2015-epg-find-usable-secret-key instead of
6202         mml2015-epg-find-usable-key (Bug#7797).
6203         (mml2015-epg-encrypt): Ditto.
6204
6205 2011-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6206
6207         * dgnushack.el (rot13-string): Fix the way to get the argument.
6208
6209 2011-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6210
6211         * flow-fill.el (fill-flowed-encode): Do encoding citation-aware.
6212
6213 2011-01-03  Glenn Morris  <rgm@gnu.org>
6214
6215         * sieve-manage.el (sieve-manage-open): Correctly set sieve-manage-port.
6216
6217         * sieve.el (sieve-open-server): Give a more explicit error if
6218         sieve-manage-open returns nil.  (Bug#7720)
6219
6220 2011-01-02  Karl Fogel  <kfogel@red-bean.com>
6221
6222         * gnus-msg.el (gnus-message-replyencrypt): Default to `t'.
6223
6224 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6225
6226         * nnimap.el (nnimap-login): Prefer AUTH=CRAM-MD5, if it's available.
6227         This avoids sending passwords in plain text over non-encrypted
6228         channels.
6229
6230         * shr.el (shr-rescale-image): Display all GIF images as animated images.
6231
6232         * nnimap.el (nnimap-login): Refactored out into own function, and
6233         implement CRAM-MD5.
6234         (nnimap-wait-for-line): Refactored out.
6235
6236         * mm-view.el (mml-smime): Require.
6237
6238 2010-12-20  David Engster  <deng@eml.cc>
6239
6240         * mm-view.el (mm-view-pkcs7-decrypt): If mml-smime-use is set to 'epg,
6241         use EPG to decrypt S/MIME messages instead of openssl.
6242
6243 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6244
6245         * nnimap.el (nnimap-request-group): Avoid double SELECT on `M-g'.
6246
6247         * gnus-group.el (gnus-group-kill-group): Don't try to update the group
6248         status is the group clearly is unreachable.
6249
6250         * auth-source.el (auth-source-create): Add the optional second
6251         parameter to `local-variable-p' to be compatible with XEmacs.
6252
6253 2011-01-02  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
6254
6255         * nnml.el (nnml-request-article): Allow requesting by Message-ID to
6256         work when using a compressed nnml folder.
6257
6258 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6259
6260         * gnus-sum.el (gnus-select-newsgroup): Don't propagate marks to
6261         backends after sanitising on entry, because this never makes sense:
6262         If the articles have gone missing, then the data no longer exists on
6263         the backend, and if they haven't, then Gnus is wrong, and shouldn't
6264         overwrite anything anyway.
6265
6266         * shr.el (shr-insert-document): Bind shr-width dynamically to
6267         window-width if it's nil.
6268
6269 2010-12-30  Tassilo Horn  <tassilo@member.fsf.org>
6270
6271         * shr.el (shr-width, shr-insert-document): Allow nil as shr-width value
6272         with the meaning of using the full emacs window width for rendering.
6273
6274 2010-12-27  Daiki Ueno  <ueno@unixuser.org>
6275
6276         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Take care the
6277         case when sender is not given.
6278
6279 2010-12-23  Julien Danjou  <julien@danjou.info>
6280
6281         * gnus-gravatar.el (gnus-gravatar-transform-address): Set
6282         `mail-extr-ignore-realname-equals-mailbox-name' to nil when extracting
6283         the addresses, otherwise we might misplaced the gravatar.
6284
6285 2010-12-21  Daiki Ueno  <ueno@unixuser.org>
6286
6287         * mml1991.el (pgg-sign-region, pgg-encrypt-region):
6288         * gnus-art.el (pgg-snarf-keys-region): Autoload since PGG is now
6289         obsolete in Emacs.
6290
6291 2010-12-20  Julien Danjou  <julien@danjou.info>
6292
6293         * gnus-util.el (gnus-rescale-image): Revert last change.
6294
6295 2010-12-17  Chong Yidong  <cyd@stupidchicken.com>
6296
6297         * binhex.el: Improve commentary (Bug#7482).
6298
6299 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6300
6301         * gnus-group.el (gnus-group-delete-articles): New command.
6302
6303 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
6304
6305         * nnir.el (nnir-mode): Make sure 'gnus-registry-install is bound.
6306
6307 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6308
6309         * gnus-sum.el (gnus-get-newsgroup-headers): Revert the last change
6310         here, since it's up to the backends to do CRLF removal if their
6311         protocol has it.
6312
6313         * nnimap.el (nnimap-retrieve-headers): Remove CRLF from the headers.
6314
6315 2010-12-17  Julien Danjou  <julien@danjou.info>
6316
6317         * gnus-util.el (gnus-rescale-image): Allow to resize images even if
6318         they are from file.  Can also scale up.
6319
6320 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
6321
6322         * gnus-sum.el (gnus-summary-refer-thread): Simplify code.
6323         Restore gnus-use-agent.
6324         (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
6325
6326         * nnir.el (nnir-get-active): Ignore nnir-ignored-newsgroups if null.
6327
6328 2010-12-17  Julien Danjou  <julien@danjou.info>
6329
6330         * gravatar.el (gravatar-retrieve-synchronously): New function.
6331         (gravatar-get-data): Make more robust.
6332
6333 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6334
6335         * lpath.el: Bind epa-file-encrypt-to for Emacs 22 and XEmacs.
6336
6337 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6338
6339         * nnimap.el (nnimap-wait-for-response): Fix the end-point calculation
6340         to really consider the last line.
6341
6342 2010-12-16  Daiki Ueno  <ueno@unixuser.org>
6343
6344         * auth-source.el (auth-source-gpg-encrypt-to): New variable to set the
6345         list of recipient keys, or use symmetric encryption if not a list.
6346         (auth-source-create): Use it to make `epa-file-encrypt-to' local for an
6347         EPA override, replacing the call to `netrc-store-data'.
6348
6349 2010-12-16  Dan Davison  <dandavison7@gmail.com>  (tiny change)
6350
6351         * gnus-srvr.el: Avoid passing nil regexp argument to
6352         delete-matching-lines.
6353
6354 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6355
6356         * gnus-html.el (gnus-html-schedule-image-fetching): Make sure the HTML
6357         fetching stops when Gnus exits.
6358
6359         * nnfolder.el (nnfolder-save-all-buffers): Refactor out into its own
6360         function.
6361         (nnfolder-request-expire-articles): Save all the buffers after doing
6362         expiry.
6363
6364         * nnmail.el (nnmail-expiry-target-group): Revert the "all articles are
6365         the last article", since that led to serious performance regressions
6366         when expiring nnml groups.
6367
6368 2010-12-16  Andrew Cohen  <cohen@andy.bu.edu>
6369
6370         * nnir.el: Improve customizations.
6371
6372 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6373
6374         * gnus-start.el (gnus-subscribe-newsgroup): Notify the backend.
6375
6376         * gnus-group.el (gnus-group-kill-group): Notify the backend that the
6377         group has been killed.
6378         (gnus-group-yank-group): Ditto.
6379
6380         * gnus-srvr.el (gnus-browse-unsubscribe-group): Ditto.
6381
6382         * nnimap.el (nnimap-request-update-group-status): New function.
6383
6384         * gnus-int.el (gnus-request-update-group-status): New interface
6385         function.
6386
6387         * gnus-sum.el (gnus-summary-push-marks-to-backend): Fix the logic for
6388         copying read-ness to the backends.
6389
6390         * nnimap.el (nnimap-quirk): New function.
6391         (nnimap-retrieve-group-data-early): Use it.
6392         (nnimap-quirks): New alist.
6393
6394 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6395
6396         * shr.el (shr-insert): Set shr-start after deleting trailing space;
6397         don't delete it within indentation.
6398
6399 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6400
6401         * nnimap.el (nnimap-wait-for-response): Always look (at least) at the
6402         previous line.
6403
6404 2010-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6405
6406         * nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the
6407         QRESYNC command by deleting a superfluous space which broke Cyrus
6408         servers.  This change will break other servers that are buggy the other
6409         way around.
6410
6411 2010-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
6412
6413         * spam.el: Reindent and fix long lines.
6414         (spam-copy-or-move-routine): Exclude invalid move destinations.
6415
6416 2010-12-14  Andrew Cohen  <cohen@andy.bu.edu>
6417
6418         * nnir.el (nnir-mode): Don't install registry hooks if user hasn't
6419         installed the registry.
6420
6421 2010-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6422
6423         * dgnushack.el (rot13-string): New macro for XEmacs.  netrc.el uses it.
6424
6425 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
6426
6427         * nnir.el (nnir-run-gmane): Better check for gmane groups: error out if
6428         groupname doesn't contain "gmane".
6429
6430 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6431
6432         * netrc.el (netrc-point-at-eol): Remove the unused netrc-point-at-old
6433         and netrc-bound-and-true-p bindings.
6434         (netrc-parse): Cache the netrc contents.
6435
6436         * gnus-start.el (gnus-matches-options-n): Fix typo in last change.
6437         (gnus-1): Don't create the nndrafts group twice.
6438         (gnus-setup-news): There's no need to read the active file here, since
6439         that's done again later on a per-backend basis.
6440         (gnus-start-draft-setup): Make sure that the new group is started out
6441         empty.
6442
6443         * gnus-agent.el (gnus-agentize): Don't create the queue group
6444         automatically on startup.  It'll be created later, if needed.
6445
6446         * gnus-start.el (gnus-auto-subscribed-groups): Add nnimap to the list
6447         of automatically subscribed groups.
6448         (gnus-auto-subscribed-categories): New variable.
6449         (gnus-matches-options-n): Use it.
6450         (gnus-default-subscribed-newsgroups): Remove unused variable.
6451         (gnus-start-draft-setup): Message a bit less.
6452
6453 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
6454
6455         * nnir.el (nnir-run-imap): Return article list in order of increasing
6456         UID.
6457
6458 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6459
6460         * gnus-sum.el (gnus-summary-enter-digest-group):
6461         Mention gnus-auto-select-on-ephemeral-exit.
6462
6463         * proto-stream.el (proto-stream-open-network-only): Fix the calling
6464         convention of the network-only option.
6465
6466 2010-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6467
6468         * proto-stream.el (proto-stream-open-network-only): New function to
6469         have a way to specify non-STARTTLS upgrade connections.
6470
6471 2010-12-10  Julien Danjou  <julien@danjou.info>
6472
6473         * gnus-gravatar.el (gnus-gravatar-transform-address): Fix error when
6474         email address is nil.
6475
6476         * message.el (message-bogus-recipient-p): Set address to "" if nil.
6477
6478 2010-12-10  Andrew Cohen  <cohen@andy.bu.edu>
6479
6480         * nnir.el (nnir-request-expire-articles): Ignore expiry except for
6481         deletion.
6482         (nnir-run-imap): Only need to parse list once.
6483
6484 2010-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6485
6486         * shr.el (shr-tag-script): Ignore <script>.
6487         (shr-tag-label): Add <label> support.
6488
6489 2010-12-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6490
6491         * mm-util.el (mm-ucs-to-char): Use eval-and-compile.
6492
6493         * shr.el (shr-image-displayer): Work for images lined side by side.
6494
6495 2010-12-08  Robert Pluim  <rpluim@gmail.com>
6496
6497         * gnus-demon.el (gnus-demon-init): Call run-with-timer with an integer
6498         parameter, since XEmacs doesn't accept t as a parameter.
6499
6500 2010-12-08  Andrew Cohen  <cohen@andy.bu.edu>
6501
6502         * nnir.el (nnir-retrieve-headers): Use rassq when comparing article
6503         ids.
6504         (nnir-run-gmane): Simplify groupspec formatting.
6505         (nnir-request-expire-articles): New function.
6506
6507 2010-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6508
6509         * nnimap.el (nnimap-parse-flags): Tweak VANISHED regexp to avoid regexp
6510         overflow, possibly.
6511
6512         * shr.el (shr-tag-table-1): Use bg/gfcolor specs on tables.
6513         (shr-render-td): Handle td style="" better.
6514         (shr-tag-table): Use the color from the style sheet.
6515         (shr-render-td): Make sure we copy over all the overlays, too.
6516
6517 2010-12-07  Andrew Cohen  <cohen@andy.bu.edu>
6518
6519         * nnir.el (nnir-run-gmane): Restore sub-optimal test for gmane server.
6520         (nnir-request-article): Improve article retrieval.
6521
6522 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6523
6524         * mm-util.el (mm-extra-numeric-entities): New variable.
6525
6526         * mm-url.el (mm-url-decode-entities):
6527         * mm-decode.el (mm-shr): Use it to decode extra numeric entities.
6528
6529         * lpath.el: Fbind completion-at-point for Emacs 22 and XEmacs.
6530
6531 2010-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6532
6533         * message.el: Use completion-at-point.
6534         (message-completion-function): New fun, extracted from message-tab.
6535         (message-mode): Use it for completion-at-point-functions.
6536         (message-tab): Use it and completion-at-point.
6537
6538 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6539
6540         * shr.el (shr-find-fill-point): Don't break a line after a kinsoku-bol
6541         character if a non-breakable character follows.
6542
6543 2010-12-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6544
6545         * proto-stream.el (proto-stream-open-tls): Return nil if we don't get
6546         any stream.
6547
6548         * shr.el (shr-tag-font): Colorize the region.
6549         (shr-tag-body): Ditto.
6550         (shr-tag-font): Actually let the styles be inherited instead of
6551         overwriting them.
6552         (shr-tag-font): Get the background color right.
6553         (shr-tag-style): Ignore all <style> tags for the moment.
6554
6555         * gnus-int.el (gnus-request-thread): Rework to take a header instead of
6556         a Message-ID to avoid having nnimap depend on gnus-sum.
6557
6558         * shr.el (shr-descend): Only colorize something if we have a node that
6559         sets colors.
6560
6561 2010-12-06  Julien Danjou  <julien@danjou.info>
6562
6563         * shr.el (shr-render-td): Render td content with shr-descend, so style
6564         will be applied to <td> too.
6565         (shr-colorize-region): Colorize region even if we only have a background.
6566         (shr-tag-body): Fix color and background color inheritance.
6567         Do not recolorize after shr-generic.
6568         (shr-tag-font): Let shr-generic colorize via inheritance.
6569
6570 2010-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6571
6572         * shr.el (shr-find-fill-point): Don't regard apostrophe as kinsoku-bol.
6573
6574 2010-12-06  Andrew Cohen  <cohen@andy.bu.edu>
6575
6576         * nnir.el (nnir-request-move-article): Remove obsolete code.
6577
6578 2010-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6579
6580         * gnus-util.el (gnus-macroexpand-all): Use eval-and-compile.
6581
6582 2010-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6583
6584         * gnus-sum.el (gnus-summary-respool-article): The completion function
6585         expects a list instead of an alist.
6586
6587         * nntp.el (nntp-snarf-error-message): nnheader-report takes a format
6588         string as the parameter.
6589
6590         * gnus.el (gnus-valid-select-methods): Allow nnimap to respool.
6591
6592         * shr.el (shr-stylesheet): New dynamic variable for cascading the
6593         styles.
6594         (shr-colorize-region): New function.
6595         (shr-insert-background-overlay): Remove.
6596         (shr-render-td): Background setting should be taken care of on a higher
6597         level.
6598         (shr-tag-body): Use post-hoc colorizations.
6599         (shr-tag-body): Set up a style sheet based on bgcolor/fgcolor.
6600         (shr-put-color-1): Don't overwrite old colors.
6601         (shr-colorize-region): When the background color isn't explicit, use
6602         a fixed background.
6603
6604         * gnus-util.el (gnus-output-to-mail): Require nnmail before using
6605         nnmail variables.
6606
6607 2010-12-05  Bjørn Mork  <bjorn@mork.no>
6608
6609         * nnimap.el (nnimap-process-expiry-targets): Avoid downloading articles
6610         unless necessary.
6611
6612 2010-12-05  Andrew Cohen  <cohen@andy.bu.edu>
6613
6614         * nnir.el (nnir-run-gmane): Use more careful test for gmane nntp
6615         server.
6616
6617 2010-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6618
6619         * gnus-html.el (gnus-html-put-image): Use widget instead of local maps
6620         so that TAB works.
6621
6622         * gnus-sum.el (gnus-summary-show-article): Reverse the meanings of `C-u
6623         C-u g' and `C-u g' so that `C-u g' does what it traditionally did.
6624
6625         * shr.el (shr-urlify): Show the URL before the title to avoid
6626         misleading URLs.
6627
6628 2010-12-04  Adam Sjøgren  <asjo@koldfront.dk>
6629
6630         * shr.el (shr-urlify): Display the title in <a> tags.
6631
6632 2010-12-04  Andrew Cohen  <cohen@andy.bu.edu>
6633
6634         * nnir.el (nnir-categorize): Replace mapcar with mapc.
6635
6636 2010-12-03  Andrew Cohen  <cohen@andy.bu.edu>
6637
6638         * nnir.el: Rearrange code to allow macros to be autoloaded by
6639         gnus-sum.el.
6640         (nnir-retrieve-headers-override-function): Make this variable
6641         customizable.
6642         (nnir-retrieve-headers): Remove obsolete subject-mangling code.
6643
6644         * gnus-sum.el (nnir-article-group,nnir-article-rsv): Autoload macros
6645         from nnir.el.
6646
6647 2010-12-03  Julien Danjou  <julien@danjou.info>
6648
6649         * gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
6650
6651 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6652
6653         * gnus-util.el (gnus-macroexpand-all): Don't modify argument;
6654         allow optional argument `environment'.
6655
6656 2010-12-03  Glenn Morris  <rgm@gnu.org>
6657
6658         * mm-extern.el (message-goto-body): Update declaration.
6659
6660 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6661
6662         * gnus-util.el (gnus-macroexpand-all): New function.
6663
6664         * gnus-sum.el (gnus-summary-line-format-alist): Use gnus-macroexpand-all
6665         instead of macroexpand-all that is unavailable in XEmacs.
6666
6667 2010-12-02  Andrew Cohen  <cohen@andy.bu.edu>
6668
6669         * nnir.el (nnir-summary-line-format): New variable.
6670         (nnir-mode): Use it.
6671         (nnir-artlist-*,nnir-aritem-*): Reimplement as macros.
6672         (nnir-article-ids): Reimplement as defsubst.
6673         (nnir-retrieve-headers): Don't mangle the subject header.
6674         (nnir-run-imap): Use 100 as RSV score.
6675         (nnir-run-find-grep): Fix for full server searching.
6676         (nnir-run-gmane): Better restriction to gmane groups.
6677
6678         * gnus-sum.el (gnus-summary-line-format-alist): Add specs for nnir
6679         summary buffers.
6680
6681 2010-12-02  Julien Danjou  <julien@danjou.info>
6682
6683         * gnus-win.el (gnus-configure-frame): Remove old compatibility code.
6684
6685         * gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
6686
6687         * gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting
6688         support.
6689
6690 2010-12-01  Andrew Cohen  <cohen@andy.bu.edu>
6691
6692         * nnir.el: Update to handle the registry better.
6693         (autoload): Silence byte-compiler.
6694         (nnir-open-server): Add a hook for nnir groups.
6695         (nnir-request-move-article): Don't mangle the header.  Better to use
6696         formatting variables (which will be added in the future).
6697         (nnir-registry-action): Update the registry using the original article
6698         group name.
6699         (nnir-mode): Install nnir-specific hooks for updating the registry.
6700
6701         * gnus-sum.el
6702         (gnus-article-original-subject,gnus-newsgroup-original-name):
6703         Remove obsolete variables.
6704         (gnus-summary-move-article): Remove use of obsolete variables.
6705         (gnus-summary-local-variables): Make move and delete hooks local to
6706         summary buffers.
6707
6708 2010-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6709
6710         * rtree.el: New file.
6711
6712 2010-12-01  Julien Danjou  <julien@danjou.info>
6713
6714         * message.el (message-user-organization): Do not use
6715         gnus-local-organization.
6716
6717         * gnus.el: Remove gnus-local-organization.
6718
6719         * gnus-msg.el: Remove nastygram thing.
6720
6721 2010-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
6722
6723         * nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark
6724         funcall.
6725
6726 2010-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6727
6728         * gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of
6729         names.
6730
6731         * shr.el (shr-find-fill-point): Don't break line between kinsoku-bol
6732         characters.
6733
6734         * gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding
6735         to t of inhibit-read-only since it is inside gnus-with-article-headers.
6736         Suggested by Štěpán Němec <stepnem@gmail.com>.
6737         (gnus-gravatar-transform-address): Use mail-extract-address-components
6738         that supports non-ASCII names rather than mail-header-parse-addresses.
6739
6740 2010-11-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6741
6742         * proto-stream.el (open-protocol-stream): All starttls connections are
6743         handled by the network handler.
6744
6745 2010-11-30  Julien Danjou  <julien@danjou.info>
6746
6747         * nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
6748         (nnimap-open-connection-1): Fix PREAUTH.
6749
6750         * gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
6751
6752 2010-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6753
6754         * shr.el (shr-char-breakable-p, shr-char-nospace-p)
6755         (shr-char-kinsoku-bol-p, shr-char-kinsoku-eol-p): New macros.
6756         (shr-insert): Use them.
6757         (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
6758
6759 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
6760
6761         * nnir.el (nnir-request-move-article): Bail out if original group
6762         doesn't support article moves.
6763         (nnir-get-active): Improve active list retrieval.
6764
6765 2010-11-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6766
6767         * shr.el (shr-find-fill-point): Don't break before apostrophes.
6768
6769 2010-11-29  Binjo  <binjo.cn@gmail.com>  (tiny change)
6770
6771         * nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't
6772         seem to accept strings-with-numbers as port numbers.
6773
6774 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
6775
6776         * gnus-sum.el (gnus-summary-delete-article): If delete fails don't
6777         change the registry.
6778
6779 2010-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6780
6781         * nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of
6782         delete-dups that is not available in XEmacs 21.4.
6783
6784         * mm-util.el (mm-delete-duplicates): Add comment.
6785
6786 2010-11-28  Andrew Cohen  <cohen@andy.bu.edu>
6787
6788         * nnir.el (nnir-ignored-newsgroups): New variable.
6789         (nnir-get-active): Use it.
6790
6791 2010-11-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6792
6793         * proto-stream.el (proto-stream-open-network): Add some comments.
6794
6795         * nntp.el (nntp-open-connection): Provide a :success condition.
6796
6797         * nnimap.el (nnimap-open-connection-1): Ditto.
6798
6799         * proto-stream.el (proto-stream-open-network): See what the response to
6800         the STARTTLS command is.
6801
6802         * nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for
6803         backwards compatibility).
6804         (nnimap-open-connection-1): Really respect nnimap-server-port.
6805
6806         * proto-stream.el (proto-stream-open-network): When doing opportunistic
6807         TLS upgrades we don't really care about the identity of the peer.
6808         (proto-stream-open-network): Force starttls.el to use gnutls-cli, since
6809         that what we've checked for.
6810         (proto-stream-always-use-starttls): Only default to t if
6811         open-gnutls-stream exists.
6812         (proto-stream-open-network): If STARTTLS failed, then just open a
6813         normal connection.
6814         (proto-stream-open-network): Wait until the greeting before doing
6815         STARTTLS.
6816
6817         * nntp.el (nntp-open-connection): Report what the connection error is.
6818
6819         * proto-stream.el (open-protocol-stream): Rename from
6820         open-proto-stream.
6821
6822 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6823
6824         * nnimap.el (nnimap-stream): Change default to `undecided'.
6825         (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl
6826         first, and then network.
6827         (nnimap-open-connection-1): Respect nnimap-server-port.
6828         (nnimap-open-connection): Be more backwards-compatible.
6829
6830         * proto-stream.el (proto-stream-always-use-starttls): New variable.
6831         (proto-stream-open-starttls): De-duplicate the starttls code.
6832         (proto-stream-open-starttls): Folded back into the main function.
6833         (proto-stream-open-network): Fix typo in the gnutls path.
6834         (proto-stream-command): Refactor out.
6835
6836         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
6837
6838         * proto-stream.el (proto-stream-open-starttls): Actually implement the
6839         starttls.el STARTTLS.
6840
6841         * color.el (color-lab->srgb): Fix function call name.
6842
6843         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
6844         if we're using tls.el.
6845         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
6846         built in, then don't try to establish a STARTTLS connection.
6847
6848         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
6849         servers.
6850
6851         * proto-stream.el (open-proto-stream): Use network, not stream.
6852         (open-proto-stream): Add a way to specify what the end of a command is.
6853
6854         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
6855         connections types.
6856         (nntp-open-network-stream): Remove.
6857         (nntp-open-ssl-stream): Remove.
6858         (nntp-open-tls-stream): Remove.
6859         (nntp-ssl-program): Remove.
6860
6861         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
6862
6863 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
6864
6865         * nnir.el: Fix typos.
6866         (nnir-retrieve-headers-override-function): Rename variable to reflect
6867         new semantics.
6868         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
6869         macros.
6870         (nnir-request-article, nnir-request-move-article): Use them.
6871         (nnir-categorize): New function.
6872         (nnir-run-query): Use it.
6873         (nnir-retrieve-headers): Rewrite to batch header retrieval.
6874         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
6875         sorted.
6876         (nnir-group-full-name): Use gnus-group-full-name instead.
6877         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
6878         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
6879
6880 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6881
6882         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
6883
6884         * proto-stream.el: New library to provide protocol-specific
6885         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
6886         protocols.
6887         (open-proto-stream): Complete the documentation.
6888         (proto-stream-open-network): Fix some typos.
6889
6890         * nnimap.el (nnimap-open-connection): Use it.
6891
6892 2010-11-27  Yuri Karaban  <tech@askold.net>  (tiny change)
6893
6894         * pop3.el (pop3-open-server): Read server greeting before starting TLS
6895         negotiation.
6896
6897 2010-11-26  Julien Danjou  <julien@danjou.info>
6898
6899         * color.el: Rename various rgb functions to srgb.
6900
6901 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6902
6903         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
6904         names.
6905
6906 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
6907
6908         * shr.el (shr-insert): Revert last change.
6909         (shr-find-fill-point): Never leave point being at bol;
6910         relax the kinsoku limitation when rendering tables.
6911
6912 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6913
6914         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
6915         results from -accept-article.
6916
6917         * shr-color.el: Require cl when compiling.
6918
6919         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
6920         checkin.
6921
6922         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
6923
6924         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
6925
6926         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
6927         'add and 'delete to set backend marks.
6928
6929         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
6930
6931         * nnheader.el (nnheader-update-marks-actions): Refactor out.
6932
6933         * nntp.el (nntp-request-set-mark): Use it.
6934
6935         * nnfolder.el (nnfolder-request-set-mark): Ditto.
6936
6937         * nnml.el (nnml-request-set-mark): Ditto.
6938
6939         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
6940         introduces regressions in article selection.
6941         (nnimap-find-uid-response): New function.
6942         (nnimap-request-accept-article): Use the UID returned, if any.
6943         (nnimap-request-move-article): Use the UID returned, if any.
6944         (nnimap-get-groups): Reimplement to work with folded lines.
6945         (nnimap-find-uid-response): The UID is the last element in the list.
6946         (nnimap-request-set-mark): Extend syntax with 'set.
6947
6948         * nnml.el (nnml-request-set-mark): Ditto.
6949
6950         * nnfolder.el (nnfolder-request-set-mark): Ditto.
6951
6952         * nntp.el (nntp-request-set-mark): Ditto.
6953
6954 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6955
6956         * message.el (message-called-interactively-p): A temporary macro.
6957         (message-goto-body): Use it temporarily.
6958
6959 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6960
6961         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
6962         (nnimap-last-response-string): Unfold quoted lines, if they exist.
6963         (nnimap-last-response-string): Fix last unfolding fix.
6964
6965 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6966
6967         * shr.el (shr-insert): Fix the way to fold lines.
6968
6969 2010-11-25  Julien Danjou  <julien@danjou.info>
6970
6971         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex.
6972
6973         * color.el: Rename from color-lab.el
6974         (color-rgb->hex): Add.
6975         (color-complement): Add.
6976         (color-complement-hex): Add.
6977
6978         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
6979
6980 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6981
6982         * shr-color.el (shr-color-visible): Don't bug out if the color names
6983         don't exist.
6984
6985 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6986
6987         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
6988         assuming that article displaying or another mml-preview may be
6989         interrupted for an error or for the like.
6990
6991         * shr.el (shr-get-background): Fix argument name.
6992
6993 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6994
6995         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
6996
6997         * gnus-sum.el (gnus-summary-include-articles): New function.
6998
6999         * message.el (message-goto-body): called-interactively-p needs a
7000         parameter, so use `any'.
7001
7002         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
7003         clear marks before moving, since they're synced from the Gnus side
7004         first.
7005
7006         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
7007         (gnus-summary-move-article): Copy over all marks before moving, so that
7008         IMAP doesn't think a new article has arrived.
7009
7010 2010-11-24  Julien Danjou  <julien@danjou.info>
7011
7012         * shr.el (shr-insert-background-overlay): Fix typo.
7013         (shr-render-td): Copy the background before rendering.
7014
7015         * shr-color.el (shr-color-visible): Fix docstring.
7016
7017         * shr.el (shr-tag-table): Add bgcolor support.
7018         (shr-render-td): Add bgcolor support.
7019         (shr-get-background): Add.
7020         (shr-insert-foreground-overlay): Use shr-get-background.
7021
7022         * message.el (message-goto-body): Use called-interactively-p.
7023         (message-in-body-p): message-goto-body returns point.
7024
7025 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7026
7027         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
7028         Fixes something or other in Emacs 23, and is backwards compatible.
7029
7030         * message.el (message-goto-body): Remove the <#secure special-casing,
7031         which is too special.
7032
7033         * shr.el (shr-parse-style): Drop !important from styles.
7034
7035 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
7036
7037         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
7038         this function to return incorrect results when calling it with an
7039         explicit article argument different from
7040         (gnus-summary-article-number).
7041
7042 2010-11-24  Julien Danjou  <julien@danjou.info>
7043
7044         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
7045         (shr-tag-body): Add background support.
7046         (shr-descend): Add background support.
7047         (shr-tag-title): Add.
7048
7049         * shr-color.el (shr-color-visible): Really return original background
7050         if fixed.
7051
7052 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7053
7054         * shr.el (shr-color-check): Protect against non-existent color names.
7055
7056 2010-11-24  Julien Danjou  <julien@danjou.info>
7057
7058         * color-lab.el: Require 'cl when compiling.
7059
7060         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
7061
7062         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
7063         matched part.
7064
7065         * color-lab.el: Fix all expt calls to use float type.
7066
7067 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7068
7069         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
7070         expression to shr-color-check as is.
7071
7072         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
7073
7074         * color-lab.el: Add coding cookie.
7075         (float-pi): Use eval-and-compile.
7076
7077         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
7078         compiled for Emacsen having no `libxml-parse-html-region' support.
7079
7080 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7081
7082         * shr.el (shr-insert-color-overlay): Split stuff like
7083         "#444444 !important" to find the real color.
7084         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
7085         parse <font color="red"> entries.
7086
7087 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
7088
7089         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
7090         point when parsing headers.
7091
7092         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
7093         is positioned properly when parsing headers.
7094
7095 2010-11-23  Julien Danjou  <julien@danjou.info>
7096
7097         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
7098
7099         * shr-color.el (shr-color->hexadecimal): Add support for color names.
7100
7101         * shr.el (shr-parse-style): Replace \n with space in style parsing.
7102
7103         * shr-color.el (shr-color-hsl-to-rgb-fractions):
7104         Use shr-color-hue-to-rgb.
7105         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
7106
7107 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7108
7109         * shr.el (shr-color->hexadecimal): Autoload.
7110         (shr-descend): Add color to all tags.
7111
7112 2010-11-22  Julien Danjou  <julien@danjou.info>
7113
7114         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
7115         shr-color->hexadecimal.
7116
7117         * shr-color.el (shr-color->hexadecimal): Add converting functions for
7118         RGB() or HSL() color representation.
7119
7120         * shr.el (shr-tag-font): Add.
7121         (shr-tag-color-check): New function to get better colors.
7122         (shr-tag-insert-color-overlay): Factorize code between tag-font and
7123         tag-span.
7124
7125         * shr-color.el: New file.
7126
7127         * color-lab.el: New file.
7128
7129         * gnus-art.el (gnus-url-mailto): Do not downcase args.
7130
7131 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
7132
7133         * nnir.el: Fix typo in comments.
7134         (nnir-run-imap): Simplify code.  No need to reverse artlist.
7135         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
7136
7137 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7138
7139         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
7140
7141         * nnimap.el (nnimap-get-capabilities): Refactor out.
7142         (nnimap-open-connection): Re-request capabilities after STARTTLS.
7143
7144 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
7145
7146         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
7147         appearing when `mm-uu-hide-markers' is nil.
7148
7149 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7150
7151         * nnimap.el (nnimap-unselect-group): Make into its own function.
7152         (nnimap-request-rename-group): Unselect group before renaming.
7153         This had gotten lost somewhere.
7154         (nnimap-request-accept-article): Keep track of examined groups, and
7155         unselect the group before APPENDing to read-only groups.
7156         (nnimap-request-move-article): Clear flags before moving so that they
7157         can be re-set later.
7158
7159 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7160
7161         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
7162         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
7163
7164 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7165
7166         * gnus-art.el (gnus-mime-display-single):
7167         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images):
7168         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
7169         parameter.
7170
7171 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7172
7173         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
7174         (shr-table-vertical-line): New variable.
7175         (shr-insert-table): Use it.
7176
7177 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7178
7179         * gnus-html.el (gnus-html-wash-images): Don't display images if
7180         gnus-inhibit-images is non-nil; register displayer for cid images.
7181         (gnus-html-display-image): Work for cid image.
7182         (gnus-html-insert-image): Allow arguments.
7183         (gnus-html-put-image): Inhibit read-only.
7184         (gnus-html-prefetch-images): Don't prefetch images if
7185         gnus-inhibit-images is non-nil.
7186
7187 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7188
7189         * shr.el (shr-put-image): Break lines when inserting big pictures.
7190
7191 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7192
7193         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
7194         sender, thanks Katsumi Yamaoka.
7195
7196 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
7197
7198         * nnir.el (nnir-run-imap): Reverse the article list for each group
7199         rather than the whole list.
7200
7201 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7202
7203         * shr.el (shr-image-displayer): Protect function against non-existent
7204         image source.
7205
7206         * gnus-art.el (gnus-inhibit-images): New user option.
7207         (gnus-mime-display-single): Don't display image if it is non-nil.
7208
7209         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
7210         gnus-inhibit-images.
7211
7212         * shr.el (shr-image-displayer): New function.
7213         (shr-tag-img): Use it.
7214
7215 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7216
7217         * mml2015.el (mml2015-epg-sign): Use From header.
7218
7219 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7220
7221         * gnus-html.el (gnus-html-wash-images): Register a displayer.
7222
7223         * gnus-util.el (gnus-find-text-property-region): Return markers.
7224
7225         * shr.el (shr-tag-img): Put a displayer in the text property.
7226
7227         * gnus-util.el (gnus-find-text-property-region): New utility function.
7228
7229         * gnus-html.el (gnus-html-display-image): Make the alt optional.
7230         (gnus-html-show-images): Remove.
7231
7232         * gnus-art.el (gnus-article-show-images): New, more general function.
7233
7234         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
7235         image url text properties.
7236
7237         * shr.el: Ditto.
7238
7239         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
7240         gnus-agent-auto-agentize-methods is set.  Which it isn't.
7241
7242 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
7243
7244         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
7245         work for two or more articles.
7246
7247 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7248
7249         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
7250         divide an image that's in an html article to two or more when washing
7251         non-ASCII characters in alt text of it.
7252
7253 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7254
7255         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
7256         smime-decrypt-region using function argument.
7257         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
7258
7259         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
7260
7261         * smime.el (smime-decrypt-region): Catch it.
7262
7263 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7264
7265         * smime.el (smime-mode-map): Move initialization into declaration.
7266         (gnus-run-mode-hooks): Don't autoload.
7267         (smime-mode): Use define-derived-mode.
7268
7269 2010-11-11  Glenn Morris  <rgm@gnu.org>
7270
7271         * smime.el (from): Restrict declaration to XEmacs.
7272
7273         * nnir.el (gnus-group-topic-name): Autoload.
7274
7275 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7276
7277         * shr.el (shr-insert): Don't break long line if it is because of
7278         kinsoku-bol characters in the line end.
7279
7280 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
7281
7282         * nnir.el (nnir-request-move-article): Fix to provide original group
7283         and subject.
7284         (nnir-warp-to-article): Don't fail on articles whose headers haven't
7285         been retrieved.
7286
7287         * gnus-sum.el (gnus-summary-move-article): Use original group and
7288         subject for virtual articles such as those in an nnir summary buffer.
7289
7290 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7291
7292         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
7293         least 21.5).
7294
7295         * smime.el (from): Declare it again for XEmacs.
7296
7297 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7298
7299         * message.el (message-resend): Don't disable encoding unless it's
7300         already encoded.
7301
7302         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
7303         low-numbered articles.
7304
7305 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7306
7307         * rfc2047.el (rfc2047-syntax-table): Simplify.
7308
7309         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
7310
7311         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
7312         set-char-table-range for XEmacs.
7313
7314 2010-11-10  Glenn Morris  <rgm@gnu.org>
7315
7316         * time-date.el (time-to-seconds): Always an alias on Emacs,
7317         never a real function.
7318         (with-no-warnings): Remove compat stub, now unused.
7319         (time-less-p): Doc fix.
7320         (time-to-number-of-days): Simplify.
7321
7322         * smime.el (from): Remove unused declaration.
7323
7324         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
7325         (gnus-float-time): On Emacs, always an alias.
7326
7327         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
7328         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
7329
7330 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7331
7332         * dgnushack.el: Don't use ignore-errors in the top level form since it
7333         is unavailable in XEmacs even if cl is loaded.
7334
7335         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
7336
7337 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7338
7339         * shr.el (browse-url-mailto): Autoload.
7340
7341         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
7342
7343         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
7344         regexp doesn't need quoting.
7345
7346 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
7347
7348         * message.el (message-subject-trailing-was-ask-regexp)
7349         (message-subject-trailing-was-regexp): Match was: in addition to was.
7350
7351 2010-11-09  Glenn Morris  <rgm@gnu.org>
7352
7353         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
7354         (nnbabyl-check-mbox): Use point-at-bol.
7355
7356 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7357
7358         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
7359
7360         * message.el (message-mailto): New function.
7361         (message-mailto): Should accept other parameters.
7362         (message-mailto): Remove since it duplicates browse-url-mailto
7363         functionality.
7364
7365 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7366
7367         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
7368         methods.
7369         (gnus-read-active-file): Ditto.
7370
7371         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
7372         ": " from the prompt.
7373         (gnus-group-make-group): Ditto.
7374
7375 2010-11-07  Glenn Morris  <rgm@gnu.org>
7376
7377         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
7378         (gnus-bookmark-kill-line): Use point-at-eol.
7379
7380 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7381
7382         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
7383         asterisks in From header.
7384
7385 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7386
7387         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
7388         string to avoid making the From headers syntactically invalid.
7389
7390         * message.el (message-send-mail): Don't insert courtesy messages if the
7391         message already has List-Post and List-ID messages.
7392
7393 2010-11-06  Glenn Morris  <rgm@gnu.org>
7394
7395         * gnus-art.el (gnus-treat-article): Give dynamic local variables
7396         `condition', `type', `length' a prefix.
7397         (gnus-treat-predicate): Update for above name changes.
7398
7399 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
7400
7401         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
7402         binding.  Handled by `gnus-summary-refer-thread' instead.
7403         (nnir-warp-to-article): New backend function.
7404
7405         * nnimap.el (nnimap-request-thread): Force dependency updating.
7406
7407         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
7408         (gnus-summary-refer-thread): Rework to improve thread-referral.
7409
7410         * gnus-int.el (gnus-warp-to-article): New function.
7411
7412         * gnus-sum.el (gnus-summary-article-map): Bind it.
7413
7414 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
7415
7416         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
7417         gnus-summary-refer-thread.
7418
7419         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
7420         headers.
7421         (gnus-summary-limit-include-thread): Prevent articles in thread from
7422         being cut in gnus-cut-threads.
7423         (gnus-summary-refer-thread): Limit retrieved headers to those in
7424         thread.
7425
7426 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7427
7428         * message.el (message-send-mail): Use the value of
7429         message-courtesy-message from the message buffer.
7430
7431         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
7432
7433         * shr.el (shr-browse-url): Implement mailto: URLs.
7434
7435         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
7436         "raw".
7437
7438         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
7439         if it's already selected.
7440
7441         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
7442
7443 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7444
7445         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
7446         to measure the length and truncate alt text.
7447
7448 2010-11-03  Glenn Morris  <rgm@gnu.org>
7449
7450         * nndiary.el (nndiary-generate-nov-databases-1)
7451         (nndiary-generate-active-info): Rename dynamic variable `files' to
7452         something less generic.
7453
7454 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
7455
7456         * nnir.el (nnir-request-move-article): Call the underlying backend to
7457         move articles from nnir.
7458
7459 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7460
7461         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
7462
7463 2010-11-02  Julien Danjou  <julien@danjou.info>
7464
7465         * nnir.el: Remove wais support.
7466
7467 2010-11-02  Glenn Morris  <rgm@gnu.org>
7468
7469         * gnus-html.el: Reorder requirements to quieten compiler.
7470
7471 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
7472
7473         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
7474         properly for XEmacs as well.
7475         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
7476         (gnus-article-natural-long-line-p): Use window-width rather than
7477         frame-width.
7478
7479 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
7480
7481         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
7482         (nnir-read-parms): Don't modify query.
7483         (nnir-run-query): Add ability to search topic on current line.
7484         (nnir-get-active): Clean up.
7485
7486 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7487
7488         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
7489         degenerate articles.
7490
7491         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
7492         (gnus-print-buffer): Just print the buffer as is, without any copying
7493         to a buffer and then re-highlighting.
7494
7495         * nnimap.el (nnimap-request-group): Store the new updated info.
7496         (nnimap-request-group): Select the group when we don't know whether it
7497         exists or not.
7498
7499         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
7500         groups.
7501
7502         * gnus-group.el (gnus-group-find-new-groups): Display all the new
7503         groups.
7504
7505         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
7506         groups.
7507
7508         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
7509         long-lines case by only filling the long lines.
7510
7511         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
7512         (bug #7311).
7513
7514 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7515
7516         * shr.el: No need to declare `declare-function' since shr.el is for
7517         only Emacsen that provide `libxml-parse-html-region'.
7518
7519         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
7520         effective only in a file it is referred to.
7521
7522 2010-11-01  Glenn Morris  <rgm@gnu.org>
7523
7524         * mm-util.el (gnus-completing-read): Autoload.
7525         (mm-read-coding-system): Simplify Emacs definition.
7526
7527         * nnmail.el (gnus-activate-group):
7528         * nnimap.el (gnutls-negotiate):
7529         * nntp.el (netrc-parse): Fix declarations.
7530
7531 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7532
7533         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
7534         string-match-p in Emacs >=23.
7535
7536         * gnus-msg.el (gnus-configure-posting-styles):
7537         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
7538
7539 2010-11-01  Glenn Morris  <rgm@gnu.org>
7540
7541         * nnir.el (declare-function): Add compat stub.
7542         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
7543         (nnir-run-gmane): Require 'mm-url.
7544
7545         * mm-util.el (mm-string-to-multibyte): Simplify.
7546
7547         * shr.el (declare-function): Add compat stub.
7548         (url-cache-create-filename): Declare.
7549         (mm-disable-multibyte, widget-convert-button): Autoload.
7550
7551         * smime.el (ldap-search): Declare.
7552         (smime-cert-by-ldap-1): Require ldap on Emacs.
7553
7554         * nnimap.el: Require nnmail, and gnus-sum when compiling.
7555         (nnimap-keepalive): Use gnus-float-time.
7556
7557         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
7558         (mail-source-delete-crash-box): Use gnus-float-time.
7559
7560         * gnus-dired.el (gnus-completing-read): Autoload.
7561
7562         * mm-view.el (gnus-rescale-image): Autoload.
7563
7564         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
7565
7566         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
7567
7568         * sieve-manage.el: Require 'cl when compiling.
7569
7570         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
7571         (gnus-iswitchb-completing-read): Require iswitchb.
7572         (gnus-select-frame-set-input-focus): Silence compiler.
7573
7574 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7575
7576         * message.el (message-subject-trailing-was-query): Change default to t,
7577         since I think that's what most people want.
7578
7579         * nnimap.el (nnimap-request-accept-article): Erase buffer before
7580         appending for easier debugging.
7581         (nnimap-wait-for-connection): Take a regexp.
7582         (nnimap-request-accept-article): Wait for the continuation line before
7583         sending anything unless we're streaming.
7584
7585         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
7586         leave the header washing to take place.
7587
7588 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7589
7590         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
7591         regular expression match and replace in posting styles.
7592
7593 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
7594
7595         * nnir.el (gnus-group-make-nnir-group,nnir-run-query): Allow searching
7596         an entire server.
7597         (nnir-get-active): New function.
7598         (nnir-run-imap): Use it.
7599         (nnir-run-gmane): Who knew, gmane search returns an article score!
7600
7601         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
7602         server on the current line with nnir.
7603
7604 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7605
7606         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
7607         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
7608         left edge.
7609         (gnus-article-foldable-buffer): Skip past the prefix when determining
7610         raggedness.
7611
7612         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
7613         the raw article, and change `C-u g' to show the article without doing
7614         treatments.
7615
7616         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
7617         on to `gnus-treat-article'.
7618         (gnus-inhibit-article-treatments): New variable.
7619
7620         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
7621
7622         * gnus-art.el (gnus-treatment-function-alist): Have
7623         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
7624         (gnus-treat-fill-long-lines): Change default to fill all text/plain
7625         sections.
7626
7627         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
7628         parameter.
7629         (gnus-article-fill-cited-long-lines): New function.
7630         (gnus-article-fill-cited-article): Allow filling only long sections.
7631
7632         * shr.el (shr-find-fill-point): Don't break lines between punctuation
7633         and non-punctuation (like after the apostrophe in "'We").
7634
7635         * gnus-sum.el (gnus-summary-select-article): Make sure
7636         gnus-original-article-buffer is alive.
7637
7638         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
7639         reflect the order they're in in the digest.
7640
7641         * gnus.el (gnus-group-startup-message): Move point to the start of the
7642         buffer.
7643
7644         * nnimap.el (nnimap-capability): New function.
7645         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
7646         is set.
7647
7648 2010-10-31  David Engster  <dengste@eml.cc>
7649
7650         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
7651         conform with changes to gnus-completing-read.
7652
7653 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7654
7655         * shr.el (shr-tag-img): Output "*" instead of "[img]".
7656
7657 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
7658
7659         * nnir.el: Move defvar, defcustom around to keep file organized
7660         and keep byte-compiler quiet.
7661         (nnir-read-parms): Accept search-engine as arg.
7662         (nnir-run-query): Pass search-engine as arg.
7663         (nnir-search-engine): Remove.
7664
7665 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7666
7667         * shr.el (shr-generic): The text nodes should be text, not :text.
7668
7669         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
7670         later in the file.
7671
7672 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
7673
7674         * nnir.el: General clean up.  Allow searching with multiple engines.
7675         Allow separate extra-parameters for each engine.
7676         Batch queries when possible.
7677         (nnir-imap-default-search-key,nnir-method-default-engines):
7678         Add customize interface.
7679         (nnir-run-gmane): New engine.
7680         (nnir-engines): Use it.  Qualify all prompts with engine name.
7681         (nnir-search-engine): Remove global variable.
7682         (nnir-run-hyrex): Restore for now.
7683         (nnir-extra-parms,nnir-search-history): New variables.
7684         (gnus-group-make-nnir-group): Use them.
7685         (nnir-group-server): Remove in favor of gnus-group-server.
7686         (nnir-request-group): Avoid searching twice.
7687         (nnir-sort-groups-by-server): New function.
7688
7689 2010-10-30  Julien Danjou  <julien@danjou.info>
7690
7691         * gnus-group.el: Remove gnus-group-fetch-control.
7692
7693         * gnus-start.el (gnus-find-new-newsgroups):
7694         Remove gnus-check-first-time-used.
7695
7696         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
7697
7698 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
7699
7700         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
7701         set on groups that don't have \* permanentflags.
7702
7703 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7704
7705         * shr.el (shr-tag-span): Drop colorization of regions since we don't
7706         control the background color.
7707         (shr-tag-img): Ignore very small web bug type images.
7708         (shr-put-image): Add help-echo alt texts to the images.
7709         (shr-tag-video): Show the video poster image.
7710
7711 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7712
7713         * shr.el (shr-table-depth): New variable.
7714         (shr-tag-table-1): Only insert the images after the top-level table.
7715
7716         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
7717
7718         * gnus-util.el (gnus-list-memq-of-list): New function.
7719
7720         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
7721         selected.
7722         (nnimap-unsplittable-articles): New slot.
7723         (nnimap-new-articles): Use it.
7724
7725 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
7726
7727         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
7728         move to the previous line on `M-g'.
7729
7730 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7731
7732         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
7733         *-request-group, which seems unnecessary.
7734
7735         * nnimap.el (nnimap-quote-specials): Function copied over from
7736         imap.el.
7737         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
7738         they support that.  Suggested by Tom Regner.
7739
7740 2010-10-29  Julien Danjou  <julien@danjou.info>
7741
7742         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
7743         defalias.
7744         (gnus-summary-delete-marked-with): Remove obsolete defalias.
7745
7746         * gnus.el: Remove `gnus-nntp-service' variable.
7747         (gnus-secondary-servers): Make obsolete.
7748         (gnus-nntp-server): Make obsolete.
7749
7750         * gnus-start.el (gnus-1): Remove x-splash calls.
7751
7752         * gnus-ems.el (gnus-x-splash): Remove.
7753
7754         * gnus.el (gnus-group-startup-message): Simplify/update code.
7755
7756         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
7757         definition.
7758
7759         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
7760         capability before doing anything.
7761         (gnus-group-insert-group-line): Remove useless
7762         gnus-group-remove-excess-properties.
7763
7764 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7765
7766         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
7767
7768 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7769
7770         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
7771         config after reselecting.
7772
7773 2010-10-28  Julien Danjou  <julien@danjou.info>
7774
7775         * shr.el (shr-put-image): Use point even if only inserting text.
7776         (shr-put-image): Save excursion when inserting alt text on non-graphic
7777         display, so the behavior is the same when we are on a graphic display.
7778
7779         * nnir.el (nnir-run-swish-e): Remove hyrex support.
7780
7781 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7782
7783         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
7784         (gnus-mime-copy-part): Check coding system, not charset.
7785         (gnus-mime-view-part-externally): Never remove part.
7786         (gnus-mime-view-part-internally): Don't remove part here.
7787         (gnus-article-part-wrapper): Make sure MIME tag is visible.
7788         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
7789         multipart/alternative.
7790
7791         * mm-decode.el (mm-display-part): Take optional arg `force'.
7792
7793 2010-10-26  Julien Danjou  <julien@danjou.info>
7794
7795         * gnus-group.el (gnus-group-default-list-level): Add this function to
7796         compute the default list level.
7797         (gnus-group-default-list-level): Add possibility to use a function.
7798
7799 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7800
7801         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
7802
7803         * gnus-group.el (gnus-group-completing-read)
7804         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
7805         gnus-replace-in-string.
7806
7807 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7808
7809         * shr.el (shr-tag-div): Add.
7810
7811         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
7812
7813 2010-10-25  Julien Danjou  <julien@danjou.info>
7814
7815         * gnus-util.el: Remove `gnus-with-local-quit'.
7816
7817         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
7818
7819 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7820
7821         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
7822         the original article buffer.
7823
7824 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7825
7826         * nnimap.el (nnimap-request-head): New function.
7827         (nnimap-request-move-article): Try to be slightly faster by not
7828         requesting the entire message when moving.
7829         (nnimap-transform-headers): Don't bug out on bodiless articles.
7830         (nnimap-send-command): Have no outstanding messages if the IMAP server
7831         doesn't support streaming.
7832         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
7833
7834 2010-10-24  Julien Danjou  <julien@danjou.info>
7835
7836         * message.el (message-default-headers): Fix type.
7837
7838 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7839
7840         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
7841         prefetching images.
7842
7843         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
7844         backend for unknown groups.  This is mainly useful for nnimap groups.
7845
7846         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
7847         group isn't covered by the agent.
7848
7849 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
7850
7851         * nnir.el (nnir-method-default-engines): New variable.
7852         (nnir-run-query): Use it.
7853         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
7854         (gnus-summary-nnir-goto-thread): Change group if needed.
7855
7856         * gnus-group.el (gnus-group-group-map): Add key binding for
7857         gnus-group-make-nnir-group.
7858
7859 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7860
7861         * shr.el (shr-tag-object): Add.
7862
7863         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
7864         original article buffer live.
7865         (gnus-summary-select-article-buffer):
7866         Mention gnus-widen-article-buffer.
7867
7868 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7869
7870         * shr.el (shr-tag-strong): Add.
7871
7872 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7873
7874         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
7875         group names.  They mess up the group buffer badly.
7876
7877         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
7878
7879         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
7880         instead of the summary one.
7881
7882 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7883
7884         * mml.el (mml-preview): Work properly when editing article.
7885
7886         * gnus-start.el (gnus-read-active-file-1): Don't add method to
7887         gnus-have-read-active-file if it's already been in.
7888
7889 2010-10-22  Tom Tromey  <tromey@redhat.com>
7890
7891         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
7892         gnus-group-completing-read.
7893
7894 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7895
7896         * message.el (message-mode-map): Don't bind M-; to comment region, to
7897         allow the global comment-dwim to work.
7898
7899 2010-10-21  Julien Danjou  <julien@danjou.info>
7900
7901         * message.el (message-setup-1): Allow message-default-headers to be a
7902         function.
7903
7904 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7905
7906         * shr.el (shr-tag-table): Simplify.
7907
7908 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7909
7910         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
7911         to avoid trying to snarf invalid stuff.
7912
7913         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
7914
7915         * gnus.el (gnus-message-archive-group): Quote value.
7916         (gnus-message-archive-group): Mark as changed.
7917
7918         * shr.el (shr-add-font): Don't put the font properties on the newline
7919         or the indentation.
7920
7921         * message.el (message-fix-before-sending): Change options when sending
7922         non-printable characters.
7923
7924         * gnus.el (gnus-message-archive-method): Change the default to
7925         monthly outgoing groups.
7926
7927         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
7928         that have gotten new numbers.
7929
7930         * nnimap.el (nnimap-request-replace-article): New function.
7931
7932 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7933
7934         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
7935         (nnrss-request-article): Don't use special html washing code.
7936
7937 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7938
7939         * shr.el (shr-tag-table): Remove useless nconc.
7940
7941 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7942
7943         * gnus-art.el (article-wash-html): Simplify and remove the charset
7944         stuff.  Use the normal html rendering code instead of the special html
7945         washing code.
7946
7947         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
7948         `gnus-w3m' symbols.
7949         (mm-text-html-washer-alist): Remove.
7950
7951         * mm-decode.el (mm-inline-text-html-renderer): Remove.
7952         (mm-inline-media-tests): Remove use.
7953         (mm-text-html-renderer): Change default to the `shr' symbol.
7954
7955         * mm-view.el (mm-inline-text-html): Remove use.
7956
7957         * gnus-art.el (gnus-blocked-images): New function.  Allow the
7958         `gnus-blocked-images' to be a function.
7959         (gnus-article-wash-function): Remove.
7960
7961 2010-10-20  Julien Danjou  <julien@danjou.info>
7962
7963         * spam.el (spam-list-of-processors): Mark as obsolete.
7964
7965         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
7966         (nnimap-insert-partial-structure): Fix boundary detection.
7967
7968 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
7969
7970         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
7971         run file-truename on remote files.  This can be expensive and even
7972         prevent one from editing drafts if some unrelated buffer has a stale
7973         connection.
7974
7975 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7976
7977         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
7978         kinsoku-eol regardless of shr-kinsoku-shorten.
7979         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
7980         (shr-tag-table): Support caption, thead, and tfoot.
7981
7982 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7983
7984         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
7985         lines.
7986         (shr-save-contents): New command and keystroke.
7987
7988         * nndoc.el (nndoc-type-alist): Add git support.
7989         (nndoc-git-type-p): New function.
7990         (nndoc-transform-git-article): Ditto.
7991         (nndoc-transform-git-headers): Ditto.
7992         (nndoc-transform-git-headers): Generate Subject headers.
7993
7994         * shr.el (shr-parse-style): New function.
7995         (shr-tag-span): Ditto.
7996
7997         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
7998         to `G G' to avoid collisions.
7999
8000 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8001
8002         * shr.el: Load kinsoku if necessary.
8003         (shr-kinsoku-shorten): New internal variable.
8004         (shr-find-fill-point): Make kinsoku shorten text line if
8005         shr-kinsoku-shorten is bound to non-nil.
8006         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
8007         shr-indentation too when testing if table is wider than frame width.
8008         (shr-insert-table): Use `string-width' instead of `length' to measure
8009         text width.
8010         (shr-insert-table-ruler): Make sure indentation is done at bol.
8011
8012 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
8013
8014         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
8015         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
8016         undecoded network data.
8017
8018 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8019
8020         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
8021         name in the mode line spec so that the mode line menu works
8022         (bug #2431).
8023
8024         * message.el (message-get-reply-headers): If we're fed `to-address',
8025         then always use that.
8026
8027         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
8028         aren't so wide as to need to switch off the edit menu.
8029
8030         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
8031         binding.  Suggested by Leo <sdl.web@gmail.com> (bug #6613).
8032
8033         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
8034         `M-g'.
8035         (nnimap-update-info): Update flags/read marks even if \* isn't part of
8036         the permanent marks.
8037
8038 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
8039
8040         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
8041         Splitting according to references/in-reply-to obeys the ignore-groups
8042         variable, while splitting by sender and subject do not.
8043
8044 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8045
8046         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
8047         alist, so that we can look for non-Unicode chars.
8048         (article-translate-strings): Allow both character and string maps.
8049
8050 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8051
8052         * shr.el (shr-insert): Don't insert space behind a wide character
8053         categorized as kinsoku-bol, or between characters both categorized as
8054         nospace.
8055
8056 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
8057
8058         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
8059         headers to gnus-newsgroup-headers.
8060
8061 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8062
8063         * shr.el (shr-tag-img): Don't align images -- since we're not
8064         rescaling, this often leads to ugly displays.
8065
8066 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
8067
8068         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
8069         duplicates.
8070
8071 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
8072
8073         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
8074         call.
8075
8076 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8077
8078         * gnus.el: Autoload gnus-html-show-images.
8079
8080         * nnimap.el: Use nnheader-message throughout.
8081
8082         * shr.el (shr-tag-img): Ignore images with no data.
8083
8084 2010-10-15  Julien Danjou  <julien@danjou.info>
8085
8086         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
8087         a possibility to disable format=flow encoding when using hard newlines.
8088
8089 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8090
8091         * shr.el (shr-insert): Remove space inserted before or after a
8092         breakable character or at the beginning or the end of a line.
8093         (shr-find-fill-point): Do kinsoku; find the second best point or give
8094         it up if there's no breakable point.
8095
8096 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8097
8098         * nnimap.el (nnimap-open-connection): Message when opening connection
8099         for debugging purposes.
8100
8101         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
8102         on every setup buffer call to allow this to change from article to
8103         article.
8104
8105         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
8106         buffers where we have a wide table.
8107
8108 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
8109
8110         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
8111         uses *-request-thread.
8112
8113 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8114
8115         * nnimap.el (nnimap-open-connection): Remove %s from openssl
8116         incantation, which is no longer valid.
8117
8118 2010-10-14  Julien Danjou  <julien@danjou.info>
8119
8120         * shr.el: Fix defcustom type (char -> character).
8121
8122 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8123
8124         * nnimap.el (nnimap-open-connection): tls-program should be a list of
8125         programs.
8126
8127 2010-10-14  Julien Danjou  <julien@danjou.info>
8128
8129         * shr.el (shr-tag-a): Use url-link as widget type.
8130
8131         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
8132         `gnus-group-get-icon'.
8133
8134 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8135
8136         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
8137         This should make server editing work better.
8138
8139         * shr.el (shr-find-fill-point): Don't inloop on indented text.
8140
8141         * tls.el (tls-program): Remove spurious %s from openssl.
8142
8143         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
8144         (nnimap-parse-flags): Fix regexp.
8145
8146         * shr.el (shr-find-fill-point): Use a filling algorithm that should
8147         probably work for CJVK text, too.
8148
8149         * nnimap.el (nnimap-extend-tls-programs): Remove.
8150         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
8151
8152         * tls.el (tls-starttls-switches): Remove starttls hack.
8153         (open-tls-stream): Ditto.
8154         (tls-find-starttls-argument): Ditto.
8155
8156 2010-10-13  Julien Danjou  <julien@danjou.info>
8157
8158         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
8159         responses.
8160
8161 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8162
8163         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
8164
8165         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
8166         anything in Emacs.
8167
8168         * shr.el (shr-current-column): Remove buggy and unnecessary function.
8169
8170 2010-10-13  Julien Danjou  <julien@danjou.info>
8171
8172         * shr.el (shr-width): Make shr-width a defcustom with default to
8173         fill-column.
8174         (shr-tag-img): Use shr-width rather than fill-column.
8175
8176 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8177
8178         * dgnushack.el (byte-optimize-apply):
8179         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
8180
8181         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
8182         position when (X-)Faces exist.
8183         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
8184         avatars when called interactively.
8185
8186 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8187
8188         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
8189         gnus-article-x-face-too-ugly is bound.
8190
8191 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8192
8193         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
8194
8195         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
8196         mailbox that doesn't exist.
8197
8198 2010-10-12  Julien Danjou  <julien@danjou.info>
8199
8200         * shr.el (shr-tag-img): Encode URL properly when retrieving.
8201         (shr-get-image-data): Encode URL properly when fetching from cache.
8202         (shr-tag-img): Use aligned-to spaces to align correctly images.
8203
8204         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
8205         before inserting the Gravatar.
8206
8207         * shr.el (shr-tag-img): Add align attribute support for <img>.
8208
8209 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8210
8211         * gnus-gravatar.el (gnus-art): Require.
8212
8213         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
8214         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
8215         Remove long obsoleted functions.
8216
8217 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8218
8219         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
8220
8221         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
8222
8223         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
8224         * gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
8225         * hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
8226         * mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
8227         * mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
8228         * nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
8229         * sieve-manage.el, smime.el, spam.el:
8230         Fix comment for declare-function.
8231
8232 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8233
8234         * nnimap.el (nnimap-request-rename-group): Select group read-only
8235         before renaming it.
8236
8237         * shr.el (shr-insert): Fix up the white space only regexp.
8238
8239         * nnimap.el (nnimap-transform-split-mail): Not all articles have
8240         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
8241
8242         * shr.el (shr-current-column): New function.
8243         (shr-find-fill-point): New function.
8244
8245 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
8246
8247         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
8248         numbers.
8249
8250 2010-10-11  Julien Danjou  <julien@danjou.info>
8251
8252         * shr.el (shr-hr-line): Add.
8253         (shr-tag-hr): Use shr-hr-line to specify which character to use to
8254         display hr lines.
8255         (shr-max-columns): Do not change state to nil if we just inserting
8256         spaces.
8257
8258 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8259
8260         * gnus-topic.el (gnus-topic-read-group): If after the last group,
8261         select the last group.
8262
8263 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
8264
8265         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
8266
8267 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
8268
8269         * dig.el (dig-mode-map): Declare and define in one step.
8270
8271 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8272
8273         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
8274         for Gnus.
8275         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
8276         (nnimap-update-qresync-info): Mark \Seen articles as read.
8277
8278         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
8279         non-variable, too.
8280
8281         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
8282         available.
8283         (nnimap-update-info): Rely more on the current active than the param
8284         active to avoid marking articles as read too much.
8285
8286         * auth-source.el (auth-source-create): Use (user-login-name) for the
8287         user name default.
8288
8289         * nnimap.el (nnimap-update-info): If the server doesn't return any
8290         useful info, just use the previous info.
8291         (nnimap-update-info): Prefer old info over start-article.
8292         (nnimap-update-qresync-info): Finish implementing QRESYNC.
8293
8294 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
8295
8296         * nnir.el (autoload): Clean up autoloads.
8297         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
8298         Use key rather than value.
8299         (nnir-imap-search-other): New variable.
8300         (nnir-read-parm): Use it.
8301         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
8302         (gnus-summary-nnir-goto-thread): Modify to work with imap.
8303
8304 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8305
8306         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
8307         the process, too.
8308
8309 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8310
8311         * spam.el (gnus-summary-mode-map): Bind to "$".
8312         Suggested by Russ Allbery.
8313
8314         * shr.el: Rework the way things are indented by <li> slightly.
8315
8316         * gnus.el (gnus-group-set-parameter): Fix typo.
8317
8318         * nnimap.el: Start implementing QRESYNC support.
8319
8320 2010-10-09  Julien Danjou  <julien@danjou.info>
8321
8322         * nnir.el (nnir-engines): Fix too many arguments.
8323
8324 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8325
8326         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
8327         group is the "last", so that the backends like nnfolder actually save
8328         their folders.
8329
8330         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
8331         try to use that for the tls stream.
8332         (nnimap-retrieve-group-data-early): Rework the marks code to heed
8333         UIDVALIDITY and find out which groups are read-only and not.
8334         (nnimap-get-flags): Use the same marks parsing code as the rest of
8335         nnimap.
8336
8337 2010-10-09  Julien Danjou  <julien@danjou.info>
8338
8339         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
8340
8341         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
8342         retrieving gravatars.
8343
8344         * shr.el (shr-table-corner): Add.
8345         (shr-table-line): Add.
8346         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
8347
8348 2010-10-08  Julien Danjou  <julien@danjou.info>
8349
8350         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
8351
8352 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
8353
8354         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
8355
8356         * gnus-sum.el (gnus-mark-article-as-unread)
8357         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
8358         (gnus-summary-set-bookmark): Use it.
8359
8360         * gnus-msg.el (gnus-setup-message): Use it.
8361
8362         * gnus-demon.el (gnus-demon-remove-handler): Use it.
8363
8364         * gnus.el (gnus-group-remove-parameter): Use it.
8365
8366         * gnus-group.el (gnus-group-make-web-group): Use it.
8367
8368         * gnus-demon.el (gnus-demon-remove-handler): Use it.
8369
8370         * nnregistry.el: Update docs to mention manual.
8371
8372         * gnus-registry.el: Update docs to mention nnregistry.el.
8373         (gnus-registry-initialize): Don't install nnregistry refer method
8374         automatically.
8375         (gnus-registry-install-nnregistry): Remove it.
8376
8377 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8378
8379         * shr.el (shr-insert): Don't insert double spaces.
8380
8381 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8382
8383         * gnus-gravatar.el (gnus-treat-from-gravatar)
8384         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
8385         called interactively.
8386
8387         * gnus-art.el (gnus-mime-view-part-externally)
8388         (gnus-mime-view-part-internally): Make predicate function passed to
8389         gnus-mime-view-part-as-type assume argument is a mime type, not a list
8390         of a mime type.
8391
8392         * shr.el (shr-table-widths): Don't use cl function `reduce'.
8393
8394 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8395
8396         * shr.el (require): Require cl when compiling.
8397         (shr-tag-hr): New function.
8398
8399         * nnimap.el (nnimap-update-info): Remove double setting of high.
8400         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
8401         This makes nnimap work properly on Courier again.
8402
8403         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
8404         the variable for backwards compatibility.
8405
8406         * mm-decode.el (mm-save-part): If given a non-directory result, expand
8407         the file name before using to avoid setting mm-default-directory to
8408         nil.
8409
8410         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
8411         bidning gnus-agent variables.
8412
8413         * shr.el (shr-render-td): Use a cache for the table rendering function
8414         to avoid getting an exponential rendering behavior in nested tables.
8415         (shr-insert): Rework the line-breaking algorithm.
8416         (shr-insert): Don't leave trailing spaces.
8417         (shr-insert-table): Also insert empty TDs.
8418         (shr-tag-blockquote): Ensure paragraphs after </ul>.
8419
8420 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8421
8422         * gnus-sum.el (gnus-number): Rename from `number'.
8423         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
8424         (gnus-summary-limit-children): Update uses correspondingly.
8425
8426 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8427
8428         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
8429         (gnus-gravatar-transform-address): Don't show avatars of people of
8430         which mail addresses match gnus-gravatar-too-ugly.
8431
8432 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8433
8434         * shr.el (shr-table-widths): Expand TD elements to fill available
8435         space.
8436
8437 2010-10-07  Julien Danjou  <julien@danjou.info>
8438
8439         * nnimap.el (nnimap-request-rename-group): Add this method.
8440
8441 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8442
8443         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
8444         name from XEmacs' function-arglist.
8445
8446         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
8447         gravatar under XEmacs.
8448
8449 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
8450
8451         * auth-source.el: Update docs with TODO items.
8452
8453         * gnus-sync.el: Update docs to explain state and plans.
8454
8455         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
8456         Hooks for mark updates.
8457         (gnus-request-set-mark, gnus-request-update-mark): Use them.
8458
8459         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
8460         hooks with arguments, which is needed for mark update hooks.
8461
8462 2010-10-06  Julien Danjou  <julien@danjou.info>
8463
8464         * gnus.el (gnus-expand-group-parameter): Only return and act on what
8465         was matched.
8466
8467         * sieve-manage.el: Update example in `Commentary'.
8468
8469         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
8470
8471         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
8472         not 2000.
8473         (sieve-manage-authenticate): Re-add function.
8474
8475 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8476
8477         * shr.el (shr-insert): Get 'space transition right.
8478         (shr-render-td): Only delete space at the end of the TD.
8479
8480         * nnimap.el (nnimap-open-connection): Prepare to support
8481         open-gnutls-stream.
8482
8483         * shr.el: Rearrange function order to be more logical.
8484
8485 2010-10-06  Julien Danjou  <julien@danjou.info>
8486
8487         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
8488         (nnrss-discover-feed): Remove 404 URL in docstring.
8489
8490         * nnir.el: Fix Swish-E URL.
8491         Fix Namazu URL.
8492
8493         * message.el (message-change-subject): Remove 404 URL in a comment.
8494
8495 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8496
8497         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
8498         called interactively.
8499
8500         * gnus-util.el (gnus-remove-if): Allow hash table.
8501         (gnus-remove-if-not): New function.
8502
8503         * gnus-art.el (gnus-mime-view-part-as-type):
8504         * gnus-score.el (gnus-summary-score-effect):
8505         * gnus-sum.el (gnus-read-move-group-name):
8506         Replace remove-if-not with gnus-remove-if-not.
8507
8508         * gnus-group.el (gnus-group-completing-read):
8509         Regard collection as a hash table if it is not a list.
8510
8511 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8512
8513         * shr.el (shr-render-td): Allow blank/missing <TD>s.
8514
8515         * shr.el: Document the table-rendering algorithm.
8516
8517 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8518
8519         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
8520         for Emacsen having no `libxml-parse-html-region' support.
8521
8522 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8523
8524         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
8525         invalid URLs.
8526
8527         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
8528         line-broken.
8529         (shr-tag-img): Ignore image fetching errors.
8530         (shr-overlays-in-region): Compute overlay positions correctly.
8531
8532         * mm-decode.el (mm-shr): Require shr.
8533
8534         * gnus-art.el (gnus-blocked-images): Move variable here.
8535
8536         * shr.el (shr-insert-table): Bind free variable.
8537
8538         * mm-decode.el (mm-shr): Bind shr-content-function.
8539
8540         * shr.el (shr-content-function): New variable.
8541
8542         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
8543         added for symmetry.
8544
8545         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
8546
8547         * gnus-group.el (gnus-group-make-group): Doc fix.
8548
8549         * nnimap.el (nnimap-request-newgroups): Return success.
8550
8551         * shr.el (shr-find-elements): New function.
8552         (shr-tag-table): Put all the images after the table.
8553         (shr-tag-table): Really inhibit images inside the table.
8554         (shr-collect-overlays): Copy over overlays from the TD elements to the
8555         main document.
8556
8557         * mm-decode.el (mm-shr): Bind shr-blocked-images to
8558         gnus-blocked-images.
8559
8560 2010-10-05  Julien Danjou  <julien@danjou.info>
8561
8562         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
8563
8564         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
8565         (gnus-html-maximum-image-size): Add this function.
8566         (gnus-html-put-image): Use gnus-html-maximum-image-size.
8567
8568         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
8569         server-value of the capability is nil.
8570
8571 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8572
8573         * shr.el (shr-tag-em): Add <EM> tag.
8574
8575 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
8576
8577         * sieve-manage.el (sieve-manage-default-stream): Make default stream
8578         customizable.
8579
8580         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
8581         handing broken links to browse-url.
8582
8583 2010-10-05  Julien Danjou  <julien@danjou.info>
8584
8585         * gnus-util.el (gnus-emacs-completing-read)
8586         (gnus-iswitchb-completing-read): Use autoload rather than require.
8587
8588 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8589
8590         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
8591         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
8592         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
8593         iswitchb-temp-buflist for XEmacs.
8594
8595         * gnus-util.el (gnus-completing-read-function): Exclude
8596         gnus-icompleting-read and gnus-ido-completing-read from candidates for
8597         XEmacs since iswitchb.el is very old and ido.el is unavailable in
8598         XEmacs.
8599
8600         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
8601         not to use `delete-dups' that is unavailable in XEmacs 21.4.
8602
8603         * gnus-html.el: Don't require help-fns under XEmacs.
8604         (gnus-html-schedule-image-fetching): Work for XEmacs.
8605
8606         * mm-decode.el (mm-shr): Decode contents by charset.
8607
8608 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8609
8610         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
8611         unknown.
8612
8613         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
8614         (shr-get-image-data): Ensure against the cache file missing.
8615
8616         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
8617         for data.
8618
8619         * spam-report.el (spam-report-url-ping-plain): Don't query about
8620         killing the process.
8621
8622         * shr.el (shr-render-td): Protect against too-wide text.
8623
8624 2010-10-04  Julien Danjou  <julien@danjou.info>
8625
8626         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
8627         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
8628
8629         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
8630         retrieved.
8631
8632 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8633
8634         * shr.el (browse-url): Require.
8635         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
8636         lines.
8637         (shr-show-alt-text, shr-browse-image): New commands.
8638         (shr-browse-url, shr-copy-url): New commands.
8639
8640         * gnus-sum.el (gnus-widen-article-window): New variable.
8641         (gnus-summary-select-article-buffer): Use it.
8642
8643         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
8644         without @ signs.
8645
8646 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
8647
8648         * nnir.el (nnir-run-imap): Remove spurious space in search string.
8649
8650 2010-10-04  Julien Danjou  <julien@danjou.info>
8651
8652         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
8653         for XEmacs.
8654
8655 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8656
8657         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
8658
8659         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
8660         (nnimap-close-server): Implement.
8661
8662         * dgnushack.el (iswitchb): Require to shut up the compiler.
8663
8664         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
8665         (shr-insert): Tweak line breaking.
8666         (shr-insert): Handle <pre> better.
8667         (shr-tag-li): Get <li> indentation right.
8668         (shr-tag-li): Get <li> indentation even righter.
8669         (shr-tag-blockquote): Ensure paragraph start.
8670         (shr-make-table): Tweak table generation.
8671         (shr-make-table): Fix typo.
8672
8673         * shr.el: Implement table rendering.
8674
8675 2010-10-04  Julien Danjou  <julien@danjou.info>
8676
8677         * gnus-html.el (gnus-html-put-image): Fix resize image code.
8678
8679 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8680
8681         * shr.el (shr-insert): Use string anchors instead of line anchors.
8682
8683 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8684
8685         * shr.el: Add headings.
8686         (shr-ensure-paragraph): Actually work.
8687         (shr-tag-li): Make <ul> prettier.
8688         (shr-insert): Get white space at the beginning/end of elements right.
8689         (shr-tag-p): Collapse subsequent <p>s.
8690         (shr-ensure-paragraph): Don't insert double line feeds after blank
8691         lines.
8692         (shr-insert): \t is also space.
8693         (shr-tag-s): Fix "s" tag name function.
8694         (shr-tag-s): Fix face prop name.
8695
8696 2010-10-03  Julien Danjou  <julien@danjou.info>
8697
8698         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
8699
8700         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
8701         gnus-window-inside-pixel-edges.
8702
8703         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
8704         gnus-ems.
8705
8706         * mm-view.el (mm-inline-image-emacs): Support image resizing.
8707
8708         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
8709         function.
8710
8711         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
8712         resize choice.
8713
8714 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8715
8716         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
8717         beginning of the buffer.
8718
8719         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
8720         article buffer again.
8721
8722         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
8723
8724         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
8725         when it's at the start of the buffer.
8726
8727         * shr.el (shr-tag-blockquote): Convert name.
8728         (shr-rescale-image): Use the right image-size variant.
8729
8730         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
8731         buffer isn't shown, then select the current article first instead of
8732         bugging out.
8733         (gnus-summary-select-article-buffer): Show both the article and summary
8734         buffers again.
8735
8736         * shr.el (shr-fontize-cont): Protect against regions with no text.
8737         Rename tag functions to shr-tag-* for enhanced security.
8738         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
8739
8740 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
8741
8742         * shr.el (shr-insert):
8743         * pop3.el (pop3-movemail):
8744         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
8745         loaded.
8746
8747 2010-10-03  Glenn Morris  <rgm@gnu.org>
8748
8749         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
8750
8751         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
8752
8753         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
8754
8755         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
8756
8757         * gnus-util.el (gnus-make-local-hook): Simplify.
8758
8759 2010-10-02  Julien Danjou  <julien@danjou.info>
8760
8761         * gnus-util.el (gnus-iswitchb-completing-read): New function.
8762         (gnus-ido-completing-read): New function.
8763         (gnus-emacs-completing-read): New function.
8764         (gnus-completing-read): Use gnus-completing-read-function.
8765         Add gnus-completing-read-function.
8766
8767 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8768
8769         * shr.el (shr-insert-document): Autoload.
8770         (shr-img): Be silent.
8771         (shr-insert): Add a newline after every picture before text.
8772         (shr-add-font): Use overlays for combining faces.
8773         (shr-insert): Pass upwards the text start point.
8774
8775         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
8776         possible.
8777         (mm-shr): New function.
8778
8779 2010-10-02  Julien Danjou  <julien@danjou.info>
8780
8781         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
8782         should go backward.
8783
8784 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
8785
8786         * shr.el (shr): Fix typo in provide call.
8787
8788 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8789
8790         * shr.el: New file.
8791
8792         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
8793
8794         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
8795         completing read.
8796
8797 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8798
8799         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
8800         we're being queried about.  Suggested by Dan Jacobson.
8801
8802         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
8803         Suggested by Jason Eisner.
8804
8805         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
8806         table, too.  Suggested by Stefan Wiens.
8807         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
8808         the table unnecessary.  Suggested by Stefan Wiens.
8809
8810         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
8811         longer needed, and probably doesn't work either, as pointed out by
8812         Stefan Wiens.
8813         (gnus-summary-exit): Remove call to the clearing function.
8814         (gnus-summary-exit-no-update): Ditto.
8815
8816         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
8817         instead of gnus-eval-in-buffer-window to avoid popping up frames.
8818         Reported by Stefan Monnier.
8819         (gnus-summary-save-in-rmail): Ditto.
8820
8821         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
8822         article buffer, instead of both the article buffer and the summary
8823         buffer.  Sort of suggested by Dan Jacobson.
8824
8825         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
8826
8827         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
8828         Suggested by Dan Jacobson.
8829
8830         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
8831         documentation clearer.
8832
8833         * message.el (message-shorten-references): Comment on the number "21".
8834         Suggested by Stefan Monnier.
8835
8836         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
8837         Suggested by Dan Jacobson.
8838
8839         * gnus.el (gnus-large-newsgroup):
8840         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
8841
8842         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
8843         externalize attachments.  Bug reported by Steve Wen.
8844
8845         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
8846         really message anything to the user.
8847
8848         * nnmail.el (nnmail-article-group): Allow using the fancy split method
8849         directly.
8850
8851         * nnimap.el (nnimap-request-group): Low higher than high to signal no
8852         messages in empty groups.
8853
8854 2010-10-01  Ted Zlatanov  <tzz@lifelogs.com>
8855
8856         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
8857         non-UIDNEXT group.
8858
8859 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8860
8861         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
8862         not the value from the collection.
8863
8864         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
8865         values.  This sometimes happens on some groups that have no info.
8866         (nnimap-request-newgroups): New function.
8867
8868 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
8869
8870         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
8871         check into `gnus-registry-initialize'.
8872         (gnus-registry-initialize): Ditto.
8873         Fix and extend header docs.
8874
8875 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8876
8877         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
8878         regexp backtrace overflows.
8879
8880         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
8881         for starttls that tls.el implements; i.e. openssl.
8882
8883         * tls.el (tls-starttls-switches): Give up on using starttls with
8884         gnutls-cli.
8885         (tls-program): Add --insecure to be consistent with the defaults from
8886         openssl s_client.  Now all three commands are insecure.
8887
8888 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8889
8890         * lpath.el: Bind completion-styles-alist for XEmacs.
8891
8892         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
8893         (gravatar-create-image): New function that's an alias to
8894         gnus-xmas-create-image, gnus-create-image, or create-image.
8895         (gravatar-data->image): Use it.
8896
8897 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
8898
8899         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
8900         install the nnregistry refer method.
8901         (gnus-registry-install-hooks): Use it.
8902         (gnus-registry-unfollowed-groups): Add nnmairix to the default
8903         unfollowed groups.
8904
8905 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
8906
8907         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
8908         expanding threads.
8909
8910 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8911
8912         * nnir.el: Use the server names without suffixes (bug #7009).
8913
8914         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
8915         unencrypted to STARTTLS, if possible.
8916
8917 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
8918
8919         * message.el (message-ignored-supersedes-headers): Strip Injection-*
8920         headers before superseding.
8921
8922 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8923
8924         * nnrss.el (nnrss-use-local): Add documentation.
8925
8926         * nnimap.el (nnimap-extend-tls-programs): New function.
8927         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
8928         (nnimap-wait-for-connection): Accept the greeting from the stupid
8929         output from openssl s_client -starttls, too.
8930
8931         * tls.el (tls-starttls-switches): New variable.
8932         (tls-find-starttls-argument): Use it.
8933         (open-tls-stream): Ditto.
8934
8935         * netrc.el (netrc-credentials): Return the value of the "default" entry.
8936         (netrc-machine): Ditto.
8937
8938         * nnimap.el (nnimap-find-article-by-message-id): Really return the
8939         article number.
8940         (nnimap-split-fancy): New variable.
8941         (nnimap-split-incoming-mail): Use it.
8942
8943         * nntp.el (nntp-server-list-active-group): Document.
8944
8945         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
8946         SELECT to get the message-id.
8947
8948         * mail-source.el (mail-sources): Remove webmail support.
8949         (defvar): Ditto.
8950         (mail-source-fetcher-alist): Ditto.
8951         (mail-source-fetch-webmail): Remove.
8952
8953         * webmail.el: Remove -- doesn't seem relevant any more.
8954
8955         * gnus.el: Fix up make-obsolete-variable declarations throughout.
8956
8957         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
8958         the \r.
8959
8960 2010-09-30  Julien Danjou  <julien@danjou.info>
8961
8962         * gnus-agent.el (gnus-agent-add-group): Fix call to
8963         gnus-completing-read.
8964
8965 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8966
8967         * nndoc.el (nndoc-retrieve-groups): New function.
8968
8969         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
8970         `default', use nnmail-split-methods.
8971         (nnimap-request-article): Downcase the NILs so that they are nil.
8972
8973         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
8974         symbol.
8975
8976         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
8977         code, since if the user has requested network, that's what they ought
8978         to get.
8979         (nnimap-request-set-mark): Erase the buffer before issuing commands.
8980         (nnimap-split-rule): Mark as obsolete.
8981
8982         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
8983         New variable.
8984
8985         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
8986         correct slot, too.
8987
8988 2010-09-29  Julien Danjou  <julien@danjou.info>
8989
8990         * gnus.el (gnus-local-domain): Declare variable obsolete.
8991
8992         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
8993         Fix history computing.
8994         (gnus-ido-completing-read): Require ido.
8995
8996 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8997
8998         * gnus-registry.el: Don't prompt on load, which makes it impossible to
8999         build Gnus.
9000
9001         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
9002         when interpreting the structures.
9003         (nnimap-request-accept-article): Add \r\n to the lines to make this
9004         work with Cyrus.
9005
9006         * nndraft.el (nndraft-request-expire-articles): Use the group name
9007         instead if "nndraft".  Fix found by Nils Ackermann.
9008
9009 2010-09-29  Ludovic Courtes  <ludo@gnu.org>
9010
9011         * nnregistry.el: Add.
9012
9013 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9014
9015         * nnmail.el (group, group-art-list, group-art):
9016         Remove unneeded directives.
9017
9018 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9019
9020         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
9021         (mm-mime-charset):
9022         * rfc2047.el (rfc2047-syntax-table):
9023         * utf7.el (utf7-utf-16-coding-system): Comment fix.
9024
9025         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
9026         rather than `insert-file-contents' and `eval-region'.
9027
9028         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
9029         construction.
9030
9031         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
9032
9033         * time-date.el: No need to require cl for Emacs 21.
9034
9035 2010-09-29  Julien Danjou  <julien@danjou.info>
9036
9037         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
9038         replacement of `gnus-gravatar-relief' to mimic
9039         `gnus-faces-properties-alist'.
9040         Add :version property.
9041
9042 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9043
9044         * mail-source.el (mail-source-report-new-mail):
9045         * message.el (message-default-mail-headers):
9046         * mm-decode.el (mm-valid-image-format-p): Comment fix.
9047
9048         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
9049
9050 2010-09-28  Julien Danjou  <julien@danjou.info>
9051
9052         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
9053         mail-address contains the same string as real-name.
9054
9055         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
9056         non-blank in header, otherwise it'll get stripped.
9057
9058         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
9059         real-name, and then for mail address rather than doing : or , search.
9060
9061 2010-09-27  Julien Danjou  <julien@danjou.info>
9062
9063         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
9064         right completing-read function.
9065         (gnus-use-ido): New variable
9066         (gnus-completing-read-with-default): Remove.
9067         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
9068         (gnus-agent-add-group):
9069         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
9070         * mm-view.el (mm-view-pkcs7-decrypt):
9071         * mm-util.el (mm-codepage-setup):
9072         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
9073         * mml-smime.el (mml-smime-openssl-sign-query):
9074         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
9075         (mml-insert-multipart):
9076         * gnus-msg.el (gnus-summary-yank-message):
9077         * gnus-int.el (gnus-start-news-server):
9078         * mm-decode.el (mm-interactively-view-part):
9079         * gnus-dired.el (gnus-dired-attach):
9080         * gnus.el (gnus-read-method):
9081         * gnus-bookmark.el (gnus-bookmark-jump):
9082         * gnus-art.el (gnus-mime-view-part-as-type)
9083         (gnus-mime-action-on-part, gnus-article-encrypt-body):
9084         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
9085         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
9086         * nnmairix.el (nnmairix-create-server-and-default-group)
9087         (nnmairix-update-groups, nnmairix-get-server)
9088         (nnmairix-backend-to-server, nnmairix-goto-original-article)
9089         (nnmairix-get-group-from-file-path):
9090         * nnrss.el (nnrss-find-rss-via-syndic8):
9091         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
9092         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
9093         (gnus-group-browse-foreign-server):
9094         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
9095         (gnus-summary-execute-command, gnus-summary-respool-article)
9096         (gnus-read-move-group-name):
9097         * gnus-score.el (gnus-summary-increase-score)
9098         (gnus-summary-score-effect):
9099         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
9100
9101 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9102
9103         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
9104         x-focus-frame.
9105
9106         * nnimap.el (auth-source-forget-user-or-password)
9107         (auth-source-user-or-password): Autoload.
9108
9109         * message.el (message-from-style, message-interactive)
9110         (message-cite-prefix-regexp, message-sendmail-envelope-from)
9111         (message-yank-prefix, message-indentation-spaces, message-signature)
9112         (message-signature-file): Add comment.
9113
9114 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9115
9116         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
9117         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
9118         new articles.
9119
9120         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
9121         parts.
9122         (nnimap-request-article): Work with the t setting, too.
9123
9124         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
9125         that you don't get flashes of other buffers.
9126         (gnus-summary-show-complete-article): Intern before setting.
9127
9128 2010-09-27  David Engster  <dengste@eml.cc>
9129
9130         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
9131         well as HEADERS.
9132         (nnmairix-retrieve-headers): Provide new argument for the above.
9133
9134 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9135
9136         * gnus-sum.el (gnus-summary-move-article): Don't alter
9137         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
9138         group.
9139
9140         * nnimap.el (nnimap-update-info): Don't destructively alter active.
9141
9142         * message.el (message-cite-prefix-regexp): Revert my last edit.
9143
9144         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
9145         variable instead of the Gnus variable.
9146
9147         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
9148
9149         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
9150
9151         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
9152         since some servers don't like it.
9153         (nnimap-open-connection): Forget credentials if the server says the
9154         password was wrong.
9155         (nnimap-parse-line): Protect against invalid data.
9156
9157         * gnus-sum.el (gnus-summary-move-article): Add comment.
9158         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
9159         nothing alters it while scanning for new messages.
9160
9161         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
9162         which may or may not help.
9163         (nnimap-open-connection): If we're doing a stream connection, and then
9164         discover we're on a STARTTLS-capable server, then open a STARTTLS
9165         connection instead.
9166
9167 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9168
9169         * nnimap.el (utf7): Require.
9170
9171         * message.el (message-cite-prefix-regexp): Remove "}" from citation
9172         prefix.
9173
9174 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
9175
9176         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
9177
9178 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9179
9180         * nnimap.el (nnimap-request-accept-article): Message the error on
9181         error.
9182
9183 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9184
9185         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
9186
9187 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9188
9189         * nndoc.el (nndoc-request-list): Return success always.
9190
9191         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
9192         `fetch-old' -- we only want to fetch the articles we've requested.
9193         The rest are in the agent, probably.
9194         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
9195         disappeared server" to something low.  It's not important.
9196
9197         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
9198         arrived before the FETCH data.
9199
9200         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
9201         target here, because we don't know the Gnus name of the group.
9202
9203         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
9204         for the correct group.
9205
9206         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
9207
9208         * gnus.el (gnus): Give a final warning after startup.
9209
9210         * gnus-util.el (gnus-action-message-log): New variable.
9211         (gnus-message): Use it.
9212         (gnus-final-warning): New function.
9213
9214         * nnimap.el (nnimap-open-connection): Record the greeting.
9215         (nnimap): Add greeting.
9216
9217 2010-09-26  Julien Danjou  <julien@danjou.info>
9218
9219         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
9220         arguments.
9221         (gnus-html-wash-images): Fix spec computing to include start/end.
9222
9223         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
9224
9225 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9226
9227         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
9228         deletion.
9229         (nnimap-retrieve-headers): Don't select the group, because that's
9230         already done by nnimap-possibly-change-group.
9231
9232         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
9233         (gnus-picon-transform-address): Use it.
9234
9235         * mail-source.el (mail-source-value): Revert previous patch.
9236
9237         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
9238         on failure.
9239         (nnimap-open-connection): Look up both virtual and physical server name
9240         credentials.
9241
9242         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
9243
9244 2009-02-07  Dave Love  <fx@gnu.org>
9245
9246         * tls.el (open-tls-stream): Don't query killing process.
9247
9248 2009-02-08  Dave Love  <fx@gnu.org>
9249
9250         * gnus-win.el (gnus-window-to-buffer-helper)
9251         (gnus-all-windows-visible-p): Function needn't be a symbol.
9252
9253         * mail-source.el (mail-source-value): Function needn't be a symbol.
9254
9255 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9256
9257         * message.el (message-cite-prefix-regexp): Remove } from the cite
9258         prefix.
9259
9260         * gnus-art.el (gnus-treatment-function-alist): Do picons before
9261         highlight again, so that the highlight is correct.
9262
9263         * gnus-picon.el (gnus-picon): Remove again.
9264         (gnus-picon-create-glyph): Set the background XPM color explicitly.
9265
9266         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
9267         doing the header highlightling, so that the background color of the
9268         picon is correct.
9269
9270         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
9271         (gnus-picon): Ditto.
9272         (gnus-picon): Reinstate.  The background color for picons is white.
9273         (gnus-picon-insert-glyph): Make the background white.
9274
9275         * nnml.el (nnml-open-nov): Don't return dead buffers.
9276
9277         * auth-source.el (auth-source-create): Query the user for whether to
9278         store the credentials.
9279
9280         * netrc.el (netrc-store-data): New function.
9281
9282         * auth-source.el (auth-source-user-or-password): Use the existing auth
9283         sources, if any, for creation.
9284
9285         * gnus.el (gnus-group-fast-parameter): Return the last matching
9286         parameter instead of the first matching parameter.
9287
9288 2010-09-26  Julien Danjou  <julien@danjou.info>
9289
9290         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
9291
9292 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9293
9294         * mml2015.el (mml2015-use): Remove gpg support.
9295
9296         * mml1991.el (mml1991-function-alist): Remove gpg function.
9297         (mml1991-gpg-sign): Remove.
9298
9299 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
9300
9301         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
9302         (gnus-browse-unsubscribe-current-group): Document it.
9303         (gnus-browse-unsubscribe-group): Use it.
9304
9305 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9306
9307         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
9308         address to the To list for easier response.
9309
9310         * gnus.el (gnus-play-startup-jingle): Remove.
9311         (gnus-splash): Don't play jingle.
9312         (gnus): Silence gnus-load message.
9313
9314         * gnus-art.el (gnus-treat-play-sounds): Remove.
9315
9316         * gnus.el (gnus-play-jingle): Remove audio support.
9317
9318         * gnus-cus.el (gnus-score-customize): Remove audio reference.
9319
9320         * earcon.el: Remove -- no users.
9321
9322         * gnus-audio.el: Remove -- no users of this package.
9323
9324         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
9325
9326         * gnus-start.el (gnus-setup-news): Remove nocem support.
9327
9328         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
9329
9330         * gnus.el (gnus-use-nocem): Remove.
9331
9332         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
9333         Remove.
9334
9335         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
9336         uses NoCeM any more.
9337
9338         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
9339         (gnus-button-ctan-handler): Ditto.
9340         (gnus-button-handle-ctan-bogus-regexp): Ditto.
9341         (gnus-button-ctan-directory-regexp): Ditto.
9342         (gnus-button-handle-ctan): Ditto.
9343         (gnus-button-tex-level): Ditto.
9344         (gnus-button-alist): Remove CTAN stuff.
9345
9346 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9347
9348         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
9349         nnimap-streaming test.
9350
9351         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
9352         servers twice.
9353
9354         * nnimap.el (nnimap-open-connection): Add more error reporting when
9355         nnimap fails early.
9356
9357         * nnheader.el (nnheader-get-report-string): New function.
9358         (nnheader-get-report): Use it.
9359
9360         * gnus-int.el (gnus-check-server): Say what the error was when opening
9361         failed.
9362
9363         * nnimap.el (nnimap-wait-for-response): Search further when we're not
9364         using streaming.
9365
9366 2010-09-25  Julien Danjou  <julien@danjou.info>
9367
9368         * gnus-html.el (gnus-html-rescale-image): Use our defalias
9369         gnus-window-inside-pixel-edges.
9370
9371 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9372
9373         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
9374
9375         * mm-decode.el (mm-save-part): Allow saving to other directories the
9376         normal Emacs way.
9377
9378         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
9379         Suggested by Jay Berkenbilt.
9380
9381         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
9382         there isn't a single byte.
9383
9384         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
9385         just do it.  It doesn't really seem to matter what the user responds
9386         here, I think, so it's just a confusing question.
9387
9388         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
9389         non-streaming case.
9390
9391         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
9392         (gnus-article-encrypt-body): Use it.
9393
9394         * gnus-sum.el (gnus-summary-show-complete-article): New command and
9395         keystroke.
9396
9397         * nnimap.el (nnimap-find-wanted-parts-1):
9398         Use gnus-fetch-partial-articles.
9399
9400         * gnus-art.el (gnus-fetch-partial-articles): New variable.
9401
9402         * nnimap.el (nnimap-insert-partial-structure): New function.
9403         (nnimap-get-partial-article): New function.
9404         (nnimap-request-article): Use it.
9405         (nnimap-wait-for-response): Return whether the wait was successful.
9406         (nnimap-finish-retrieve-group-infos): Don't do anything if the
9407         retrieval wasn't successful.
9408         (nnimap-retrieve-group-data-early): Allow throttling servers.
9409         (nnimap-streaming): New variable.
9410         (nnimap-fetch-partial-articles): Remove.
9411
9412         * mm-decode.el (mm-with-part): Protect against killed buffers.
9413
9414         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
9415         for prettier summary display.
9416
9417 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
9418
9419         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
9420
9421 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9422
9423         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
9424         apparently third-party libraries depend on it.
9425
9426         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
9427         before starting negotiation.
9428
9429         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
9430         privacy reasons.
9431         (gnus-treat-mail-gravatar): Ditto.
9432
9433         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
9434         buffer when inserting images.  Inserting text into the headers, for
9435         instance, can make them invalid.
9436
9437 2010-09-25  Julien Danjou  <julien@danjou.info>
9438
9439         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
9440         variables.
9441
9442         * nnheader.el: Remove useless variables news-reply-yank-from and
9443         news-reply-yank-message-id.
9444
9445         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
9446         variables.
9447
9448         * mml1991.el: Remove useless mml1991-verbose.
9449
9450         * gnus.el: Remove useless variable gnus-use-generic-from.
9451         Remove obsolete variable gnus-topic-indentation.
9452
9453         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
9454
9455         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
9456
9457         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
9458
9459         * gnus-group.el: Remove useless gnus-group-icon-cache.
9460         Remove useless gnus-ephemeral-group-server.
9461
9462         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
9463
9464         * mml2015.el: Remove useless mml2015-verbose.
9465
9466         * mml-smime.el: Remove useless mml-smime-verbose.
9467
9468         * gnus.el: Remove useless gnus-local-domain.
9469
9470         * gnus-gravatar.el (gnus-gravatar-transform-address):
9471         Use gnus-gravatar-size.
9472
9473         * gnus-art.el: Remove useless gnus-treat-translate.
9474
9475 2010-09-24  Julien Danjou  <julien@danjou.info>
9476
9477         * gnus-sum.el: Add support for Gravatars.
9478
9479         * gnus-art.el: Add support for Gravatars.
9480
9481         * gnus-gravatar.el: Add this file.
9482
9483         * gravatar.el: Add this file.
9484
9485 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9486
9487         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
9488
9489         * gnus-group.el (gnus-group-fetch-faq): Remove.
9490
9491         * gnus.el (gnus-group-faq-directory): Remove.
9492
9493         * gnus-group.el (gnus-group-fetch-charter): Remove.
9494
9495         * gnus.el (gnus-group-charter-alist): Remove.
9496
9497         * gnus-group.el (gnus-group-archive-directory): Remove.
9498         (gnus-group-recent-archive-directory): Ditto.
9499         (gnus-group-make-archive-group): Remove.
9500
9501         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
9502
9503         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
9504         use the same article number for all the cached articles.
9505
9506         * nnimap.el (nnimap-command): Register the last command time so
9507         that we can use it for idling NOOPs.
9508         (nnimap-open-connection): Start the keeplive timer.
9509         (nnimap-make-process-buffer): Store all the process buffers.
9510         (nnimap-keepalive): New function.
9511
9512         * starttls.el (starttls-open-stream): Add autoload cookie.
9513
9514 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
9515
9516         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
9517         handling.
9518
9519 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9520
9521         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
9522         its data structures.
9523
9524         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
9525         instead of the cl.el copy-list.
9526         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
9527         equalp.
9528
9529 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9530
9531         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
9532         and tool-bar-local-item-from-menu.
9533
9534         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
9535         mode-line-highlight face for Emacs.
9536
9537         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
9538         loading gnus-sum.elc; fix comment for canlock-verify.
9539         (gnus-article-jump-to-part): Use read-number.
9540         (gnus-insert-mime-button, gnus-insert-mime-security-button):
9541         Remove Emacs pre-21 compatible code for help-echo.
9542         (gnus-article-next-page-1): No need to adjust the number of lines.
9543         (gnus-article-describe-bindings): Always use help-buffer.
9544
9545         * gnus-audio.el (gnus-audio-inline-sound):
9546         * gnus-cus.el (gnus-custom-mode):
9547         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
9548
9549         * gnus-sum.el (gnus-remove-overlays): Doc fix.
9550
9551         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
9552         compatible code.
9553
9554 2010-09-24  Glenn Morris  <rgm@gnu.org>
9555
9556         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
9557         visiting the fcc file in rmail-mode.
9558
9559         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
9560
9561 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9562
9563         * nnir.el: Silence the byte compiler.
9564
9565         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
9566         alias to browse-url-url-encode-chars if any.
9567         (gnus-html-encode-url): Use it.
9568
9569 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9570
9571         * gnus-start.el (gnus-use-backend-marks): New variable.
9572         (gnus-get-unread-articles-in-group): Use it.
9573
9574         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
9575         makeover.
9576
9577 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
9578
9579         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
9580
9581 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9582
9583         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
9584         Remove.
9585         (gnus-setup-news-hook):
9586         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
9587
9588         * gnus-int.el (gnus-request-update-info): Protect against backends not
9589         having the function.
9590
9591         * nnimap.el (nnimap-stream): Mention starttls.
9592         (nnimap-open-connection): Add starttls support.
9593
9594 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
9595
9596         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
9597
9598 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9599
9600         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
9601         BODYSTRUCTUREs.
9602         (nnimap-transform-headers): Unfold quoted {42} headers.
9603
9604         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
9605         the info.
9606         (gnus-get-unread-articles): Only call updatep on backends that support
9607         it.
9608
9609         * nnweb.el (nnweb-request-update-info): NOOP.
9610
9611         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
9612
9613         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
9614         since it only deals with marks.
9615
9616         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
9617         gnus-request-marks, and make a new gnus-request-update-info.
9618
9619         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
9620         the active instead of the high number, which is usually too low.
9621
9622 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
9623
9624         * netrc.el (netrc-parse): Remove encrypt.el mentions.
9625         * encrypt.el: Remove.
9626
9627 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9628
9629         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
9630         server in symbolic form.
9631
9632         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
9633
9634 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9635
9636         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
9637         (nnimap-update-info): Fix up code slightly.
9638
9639         * gnus-int.el (gnus-open-server): Add tracing for performance
9640         debugging.
9641
9642         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
9643         (gnus-group-insert-group-line): Pass the real group name so that it
9644         gets the right data.
9645
9646         * gnus-start.el (gnus-get-unread-articles): Don't have
9647         `gnus-get-unread-articles-in-group' update info, since that can be
9648         really slow and doesn't seem to be needed?
9649
9650 2010-09-22  Dan Christensen  <jdc@uwo.ca>
9651
9652         * time-date.el (date-to-time): Try using parse-time-string first before
9653         using the slower timezone-make-date-arpa-standard.
9654
9655 2010-09-22  Julien Danjou  <julien@danjou.info>
9656
9657         * gnus-group.el (gnus-group-insert-group-line):
9658         Call gnus-group-highlight-line.
9659         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
9660         default hook list.
9661         (gnus-group-update-eval-form): Add new function.
9662         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
9663         (gnus-group-get-icon): Use gnus-group-update-eval-form.
9664
9665 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9666
9667         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
9668         immediate, then expire all articles.
9669         (nnimap-update-info): Fix off-by-one errors.
9670         (nnimap-flags-to-marks): Would return no marks lists for group with no
9671         flags.  Instead return the other data.
9672
9673 2010-09-22  Julien Danjou  <julien@danjou.info>
9674
9675         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
9676         Only return an icon.
9677         (gnus-group-insert-group-line): Compute icon to return.
9678
9679         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
9680         (gnus-html-image-fetched): Only cache if
9681         gnus-html-image-automatic-caching is set.
9682         (gnus-html-image-fetched): Check for errors.
9683
9684 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9685
9686         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
9687         once per method on `g'.  This ensures that backends like nnfolder don't
9688         open all their folders.
9689
9690         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
9691         (nnimap-request-list): Nix out group in the correct buffer.
9692         (nnimap-parse-flags): Implement by using `read' instead of
9693         hand-parsing.
9694         (nnimap-flags-to-marks): Pass on permanent-flags.
9695         (nnimap-make-process-buffer): Record the server name.
9696         (nnimap-parse-flags): Fix typo.
9697         (nnimap-request-scan): Run split on the server in general, not just a
9698         single group.
9699
9700         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
9701         parameter, and propagate this downwards.
9702
9703         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
9704         since EXAMINE changes it on the server.
9705
9706         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
9707         this command might take a while.
9708
9709 2010-09-22  Julien Danjou  <julien@danjou.info>
9710
9711         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
9712         harmful if you have 2 images side-by-side, they can't be properly
9713         update on text deletion.  Using text-property is safer here.
9714         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
9715         data.
9716
9717 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9718
9719         * nnimap.el (nnimap-expunge-inbox): Remove.
9720         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
9721         (nnimap-expunge): Flip default to t.
9722
9723         * gnus.el (gnus-method-to-server): Don't push things to the cache
9724         unless it's unique.
9725         (gnus-server-to-method): Ditto.
9726
9727 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
9728
9729         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
9730
9731 2010-09-22  Julien Danjou  <julien@danjou.info>
9732
9733         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
9734         get the start of data.
9735         (gnus-html-encode-url): Add this function to encode special chars in
9736         URL.
9737         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
9738         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
9739
9740         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
9741         default.
9742         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
9743
9744         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
9745         images alt-text.
9746         (gnus-html-put-image): Put alt-text as help-echo.
9747
9748 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9749
9750         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes):
9751         * mm-util.el (mm-decompress-buffer):
9752         * nnir.el (nnir-run-find-grep):
9753         * pop3.el (pop3-list): Use 3rd arg of split-string.
9754
9755         * time-date.el (format-seconds): Comment fix.
9756
9757         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
9758         and byte-optimize-form-code-walker.
9759         (dgnushack-make-auto-load): Don't advise make-autoload.
9760
9761         * lpath.el: Remove Emacs 21 stuff.
9762
9763 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9764
9765         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
9766         outside the active range.  Suggested by Dan Christensen.
9767
9768         * gnus-start.el (gnus-get-unread-articles): Get the extended method
9769         slightly later to avoid double-getting it.
9770
9771         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
9772         previous patch.
9773
9774         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
9775
9776 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
9777
9778         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
9779
9780 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9781
9782         * gnus-int.el (gnus-open-server): Give a better error message in the
9783         "go offline" case.
9784
9785         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
9786         marks for nnimap, which is seldom the right thing to do.
9787
9788         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
9789         (gnus-same-method-different-name): New function.
9790
9791         * nnimap.el (parse-time): Require.
9792
9793         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
9794         method in the presence of many similar methods.
9795
9796         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
9797
9798         * nnimap.el (nnimap-find-expired-articles): Don't refer to
9799         nnml-inhibit-expiry.
9800
9801         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
9802         find out whether methods are equal.
9803
9804         * nnimap.el (nnimap-find-expired-articles): New function.
9805         (nnimap-process-expiry-targets): New function.
9806         (nnimap-request-move-article): Request the article before looking at
9807         what the Message-ID is.  Fix found by Andrew Cohen.
9808         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
9809
9810         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
9811         for oldness in addition to being a predicate.
9812
9813         * nnimap.el (nnimap-request-group): When we have zero articles, return
9814         the right data to Gnus.
9815         (nnimap-request-expire-articles): Only delete articles immediately if
9816         the target is 'delete.
9817
9818         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
9819         method, this would bug out.
9820
9821         * gnus-group.el (gnus-group-expunge-group): Rename from
9822         gnus-group-nnimap-expunge, and implemented as a normal interface
9823         function.
9824
9825         * gnus-int.el (gnus-request-expunge-group): New function.
9826
9827         * nnimap.el (nnimap-request-create-group): Implement.
9828         (nnimap-request-expunge-group): New function.
9829
9830 2010-09-21  Julien Danjou  <julien@danjou.info>
9831
9832         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
9833         (gnus-html-cache-expired): Add new function.
9834         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
9835         wethever we should display image for fetch it.
9836         Compute alt-text earlier to pass it to the fetching function too.
9837         (gnus-html-schedule-image-fetching): Change function argument to only
9838         get one image at a time, not a list.
9839         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
9840         cache.
9841         (gnus-html-get-image-data): New function to retrieve image data from
9842         cache.
9843         (gnus-html-put-image): Change buffer argument to use image data rather
9844         than file, and place image above region rather than inserting a new
9845         one.  Do not take alt-text as argument, since it's useless now: we place
9846         the image above alt-text.
9847         (gnus-html-prune-cache): Remove.
9848         (gnus-html-show-images): Start to fetch image when we find one, do not
9849         push into a temporary list.
9850         (gnus-html-prefetch-images): Only fetch image if they have expired.
9851         (gnus-html-browse-image): Fix, use 'gnus-image-url.
9852         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
9853
9854 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9855
9856         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
9857
9858 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9859
9860         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
9861         spec inser "*" if the group isn't active instead of 0.
9862
9863         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
9864         opening the server.
9865         (nnimap-request-delete-group): Implement group deletion.
9866         (nnimap-transform-headers): Return the size of the entire message in
9867         the Bytes header, not just the size of the first part.
9868         (nnimap-request-move-article): When moving an article from nnimap,
9869         request the article first so the accepting form has an article to
9870         accept.  Reported by Dan Christensen.
9871         (nnimap-command): Make sure that the error message doesn't error out.
9872
9873 2010-09-20  David Edmondson  <dme@dme.org>
9874
9875         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
9876         we haven't requested anything.
9877
9878 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9879
9880         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
9881         "".  Fix found by Andrew Cohen.
9882
9883         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
9884         instead of -encode-string.
9885
9886 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9887
9888         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
9889
9890         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
9891         by mm-subst-char-in-string.
9892
9893 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9894
9895         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
9896         waiting for the connection string.
9897
9898         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
9899         arriving.
9900
9901         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
9902         bogus characters.  This allows selecting certain Gmail groups.
9903
9904         * nnimap.el (nnimap-find-wanted-parts-1): New function.
9905         (nnimap-fetch-partial-articles): New variable.
9906         (nnimap-open-connection): When looking for credentials, also use the
9907         nnimap-server-port.
9908         (nnimap-request-article): Return the group/article number, so that Gnus
9909         `^' works as expected.
9910         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
9911
9912         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
9913         comments.
9914         (gnus-methods-sloppily-equal): New function.
9915         (gnus): When using the development version of Gnus, load the gnus-load
9916         file.
9917
9918         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
9919         `gnus-open-server' on each method before trying to scan them etc.
9920         This ensures that all the backend parameters are set correctly.
9921
9922         * nnimap.el (nnimap-authenticator): New variable.
9923         (nnimap-open-connection): Allow anonymous login.
9924         (nnimap-transform-headers): The chars header is called Chars not Bytes.
9925         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
9926
9927         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
9928         patch, found by Knut Anders Hatlen.
9929
9930 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
9931
9932         * gnus-agent.el (gnus-agent-batch-confirmation)
9933         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
9934         to gnus-message.
9935         * gnus-art.el (gnus-article-describe-briefly): Likewise.
9936         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
9937         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
9938         * gnus-int.el (gnus-open-server): Likewise.
9939         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
9940         (gnus-score-check-syntax): Likewise.
9941         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
9942         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
9943         Likewise.
9944         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
9945
9946 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9947
9948         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
9949         calling conventions so that prefetch doesn't bug out.
9950
9951 2010-09-19  Julien Danjou  <julien@danjou.info>
9952
9953         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
9954         rather than `subst-char-in-region' in order to be able to replace ASCII
9955         char by UTF-8 ones.
9956
9957         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
9958         than curl.
9959         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
9960         the right URL and ALT text on images.
9961         (gnus-html-wash-tags): Fix tag case.
9962         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
9963         (gnus-article-html): Add -o display_ins_del=2 option.
9964         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
9965
9966 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9967
9968         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
9969         the extra mail headers, which sometimes seem to happen for unknown
9970         reasons.
9971
9972         * mail-parse.el (mail-header-encode-parameter): Define as
9973         rfc2045-encode-string instead of as rfc2231-encode-string, since some
9974         (or most, perhaps?) mail readers don't understand the latter, but do
9975         understand the former.
9976
9977         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
9978         to nil, so that no methods are automatically agentized.  I think this
9979         is probably what most users want.
9980
9981         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
9982         from url-retrieve, for instance about invalid URLs.
9983
9984         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
9985         groups that have no articles.
9986         (nnimap-request-article): Check that we really got an article when we
9987         requested one.
9988
9989         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
9990         doesn't exist.
9991
9992         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
9993         nntp buffer so the agent can save it.
9994         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
9995         that CRLF doesn't get translated to \n.
9996         (nnimap-open-connection): Don't make 'shell commands only send \n.
9997
9998 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9999
10000         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
10001         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
10002         Update var name.
10003         (nnml-generate-nov-file): Use dolist.
10004         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
10005         Use with-current-buffer.
10006
10007 2010-09-18  Julien Danjou  <julien@danjou.info>
10008
10009         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
10010         parallel.
10011
10012 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10013
10014         * nnimap.el (nnimap-update-info): When doing partial marks update, get
10015         the range update right.
10016         (nnimap-request-group): Don't make `M-g' bug out on group with no
10017         marks.
10018         (nnoo): Require, so that other packages can require nnimap.
10019         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
10020         command we're looking for.  This helps when the server sends more
10021         responses after we've gotten everything we expected.
10022         (nnimap): Add a `newlinep' field to keep track of end-of-line
10023         conventions.
10024         Don't send CRLF to things that don't want it.
10025         (nnimap-request-accept-article): Ditto.
10026
10027 2010-09-18  Julien Danjou  <julien@danjou.info>
10028
10029         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
10030         than curl to retrieve images.
10031
10032 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10033
10034         * nnimap.el (nnimap-update-info): Extend the info so that we can set
10035         the marks.
10036         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
10037         (nnimap-wait-for-connection): New function.
10038         (nnimap-open-connection): If we have PREAUTH, don't query for login
10039         credentials.
10040         (nnimap-update-info): Fix off-by-one error when concatenating ranges
10041         when doing a partial update.
10042
10043 2010-09-18  Julien Danjou  <julien@danjou.info>
10044
10045         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
10046         tags.
10047
10048 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10049
10050         * nnimap.el (nnimap-credentials): New function.
10051         (nnimap-open-connection): Use the new function to look for credentials
10052         also on the numeric equivalents of "imap" and "imaps".
10053
10054         * gnus-start.el (gnus-activate-group): Send the info to
10055         gnus-request-group.
10056
10057         * nnimap.el (nnimap-request-group): Have the "check" version of the
10058         function parse flags and update the info, so that a `M-g' get a total
10059         resync of all flags from the group.
10060
10061         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
10062         to allow backends to alter the info on group selection.  Also alter all
10063         the backend -request-group functions to take the parameter.
10064
10065         * nnimap.el (nnimap-store-info): New function.
10066         (nnimap-update-info): Store the info for later usage.
10067         (nnimap-request-group): Use the stored info for the dont-check case, so
10068         that we don't retrieve all marks when we enter a group.
10069
10070         * nnimap.el: Use deffoo instead of defun for interface functions.
10071
10072         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
10073         update the group info.  This makes the nndraft groups, for instance, go
10074         back to their old behavior.
10075
10076         * gnus-sum.el (gnus-select-newsgroup): Indent.
10077
10078         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
10079         in.
10080         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
10081         nothing.
10082
10083         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
10084         from methods that are denied.
10085
10086         * gnus-int.el (gnus-method-denied-p): New function.
10087
10088         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
10089         store the password instead of netrc.
10090         (nnimap-open-connection): Don't error out when we can't make a
10091         connections.
10092
10093         * auth-source.el (auth-source-create): In the password prompt, say what
10094         we're querying for.  Also prompt for user name if that hasn't been
10095         given.
10096
10097         * nnimap.el (nnimap-with-process-buffer): Remove.
10098
10099 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10100
10101         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
10102         method when we're reading from the agent.
10103
10104         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
10105
10106         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
10107         that's probably most useful for users.
10108
10109         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
10110         "failed" all the time.
10111
10112         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
10113         ...)) with (with-current-buffer ... ).
10114
10115         * nntp.el (nntp-open-server): Return whether the open was successful or
10116         not.
10117
10118         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
10119         select an unread unseen article first.
10120
10121         * nnimap.el (nnimap-open-connection): If the user doesn't have a
10122         /etc/services, supply some sensible port defaults.
10123
10124         * dgnushack.el: Define netrc-credentials.
10125
10126 2010-09-17  Julien Danjou  <julien@danjou.info>
10127
10128         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
10129
10130 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
10131
10132         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
10133         doesn't have any parameters.
10134
10135 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10136
10137         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
10138         only upcased checks.
10139
10140         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
10141
10142         * nnimap.el (nnimap-open-shell-stream): New function.
10143         (nnimap-open-connection): Use it.
10144         (nnimap-transform-headers): Get the number of lines in each message.
10145         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
10146         number of lines.
10147         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
10148         problem.
10149
10150         * utf7.el (utf7-encode): Autoload.
10151
10152         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
10153         to allow the mail splitting to not return a default group.  This is
10154         useful for nnimap, which will leave unmatched mail in the inbox.
10155
10156         * nnimap.el: Rewritten.
10157
10158         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
10159         nnimap usage.
10160
10161         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
10162         if the move is internal, so that nnimap can do fast internal moves.
10163
10164         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
10165         data.
10166         (gnus-read-active-for-groups): Support finishing the early retrieval of
10167         data.
10168
10169         * gnus-range.el (gnus-range-nconcat): New function.
10170
10171         * gnus-int.el (gnus-finish-retrieve-group-infos)
10172         (gnus-retrieve-group-data-early): New functions.
10173
10174 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10175
10176         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
10177         (nnrss-retrieve-groups):
10178         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
10179         (pop3-quit): Use with-current-buffer.
10180
10181 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10182
10183         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
10184         instead of nnheader-accept-process-output.
10185
10186         * dgnushack.el (dgnushack-compile): Add comment.
10187
10188         * lpath.el: No need to fbind propertize for XEmacs 21.4.
10189
10190         * gnus-html.el (gnus-html-schedule-image-fetching)
10191         (gnus-html-prefetch-images): Replace process-kill-without-query by
10192         gnus-set-process-query-on-exit-flag.
10193
10194 2010-09-16  Romain Francoise  <romain@orebokech.com>
10195
10196         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
10197
10198 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10199
10200         * gnus-registry.el (gnus-registry-install-shortcuts): The second
10201         parameter to unintern is mandatory-ish in Emacs 24.
10202
10203         * gnus-html.el (gnus-html-schedule-image-fetching)
10204         (gnus-html-prefetch-images): Check for curl before using it.
10205
10206         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
10207         depend on curl, which isn't essential.
10208
10209         * imap.el: Revert back to version
10210         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
10211         seem problematic.
10212
10213 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
10214
10215         * gnus-registry.el (gnus-registry-install-shortcuts):
10216         Explicitly pass `obarray' to `unintern' to avoid a warning.
10217
10218 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10219
10220         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
10221         change.
10222
10223         * nnrss.el (nnrss-request-list): Remove this function and related
10224         functions, including the moreover stuff.
10225
10226 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10227
10228         * nnrss.el (nnrss-retrieve-groups): New function.
10229
10230 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
10231
10232         * .dir-locals.el: Add no-byte-compile cookie.
10233
10234 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10235
10236         * time-date.el (format-seconds): Comment fix.
10237
10238         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
10239         for back end that doesn't support request-scan.
10240
10241 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10242
10243         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
10244         then do request scans from the backends.
10245
10246         * netrc.el (netrc-credentials): New conveniency function.
10247
10248         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
10249         avoid running a hook per line, since this takes a lot of time,
10250         profiling shows.
10251         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
10252         directly if gnus-visual-p is true.
10253
10254 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10255
10256         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
10257         groups; replace mapcar with dolist which is a bit faster; pass groups
10258         info to gnus-read-active-file-1.
10259         (gnus-read-active-file-1): Scan only specified groups if the new
10260         optional arg `infos' is given.
10261
10262 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10263
10264         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
10265
10266         * pop3.el (pop3-movemail): Remove.
10267         (pop3-streaming-movemail): Rename to pop3-movemail.
10268
10269         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
10270         don't restrict end-tag searches to the end of the line.
10271
10272 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10273
10274         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
10275         articles of every unchecked group to t, which means unknown since the
10276         server has never been opened.
10277
10278 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10279
10280         * gnus-html.el (gnus-html-show-alt-text): New command.
10281         (gnus-html-browse-image): Ditto.
10282         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
10283         to browse the image directly.
10284         (gnus-html-wash-tags): Search for images first, so that <a><img> works
10285         better.
10286
10287         * gnus-async.el (gnus-async-article-callback):
10288         Call `gnus-html-prefetch-images' unconditionally.
10289
10290         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
10291         before feeding URLs to curl.
10292
10293 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10294
10295         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
10296         internal images as deletable by `W D D'.
10297
10298         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
10299         (gnus-async-article-callback): Fix typo.
10300
10301 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10302
10303         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
10304         current line to work around bugs in the output from w3m.
10305
10306         * gnus-async.el (gnus-async-article-callback): Always prefetch images
10307         for groups that want that.
10308
10309         * nntp.el (nntp-wait-for-string): Supply a timeout for
10310         accept-process-output to ensure progress.
10311
10312         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
10313         level to get unread articles from, then use that for foreign groups,
10314         too.
10315
10316         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
10317         confuses the rest of the function.
10318
10319         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
10320         for the methods that support -retrieve-groups, too.
10321
10322         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
10323
10324 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10325
10326         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
10327         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
10328
10329         * pop3.el: Require cl when compiling.
10330         (pop3-number-of-responses): Search for "+OK", not "+OK ".
10331
10332 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10333
10334         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
10335         that aren't going to be activated.
10336         (gnus-get-unread-articles): Fix up the last commit.
10337
10338         * gnus-html.el (gnus-article-html): Allow calling without specifying
10339         the handle.  In that case, dissect the buffer first.
10340
10341         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
10342
10343         * nnimap.el (nnimap-open-connection): Revert the change that would look
10344         into authinfo for imaps instead of imap.
10345
10346         * gnus-start.el (gnus-activate-group): Take an optional parameter to
10347         say that you don't want to call gnus-request-group with don-check, but
10348         do check the reponse.  This is for virtual groups only.
10349         (gnus-get-unread-articles): Count the archive groups as secondary, so
10350         that they're activated the same way as before.
10351
10352         * imap.el (imap-message-map): Removed optional buffer parameter, since
10353         no callers use it.
10354         (imap-message-get): Ditto.
10355         (imap-message-put): Ditto.
10356         (imap-mailbox-map): Ditto.
10357         (imap-mailbox-put): Ditto.
10358         (imap-mailbox-get): Ditto.
10359         (imap-mailbox-get): Revert last change for this function.
10360
10361         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
10362         case-insensitively.
10363         (nnimap-debug): Remove.
10364
10365         * net/imap.el (imap-fetch-safe): Remove function, and alter all
10366         callers to use `imap-fetch' instead.  According to the comments, this
10367         should be safe, since all other IMAP clients use the 1:* syntax.
10368         (imap-enable-exchange-bug-workaround): Remove.
10369         (imap-debug): Remove -- doesn't seem very useful.
10370
10371         * mail-source.el (mail-source-fetch): Don't message if we're fetching
10372         mail from a file, and the file doesn't exist.
10373
10374         * imap.el (imap-log): New convenience function used throughout instead
10375         of repeating the same code all over the place.
10376
10377         * pop3.el (pop3-streaming-movemail): Return t for success.
10378
10379         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
10380         .authinfo if we're using ssl connection.
10381
10382         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
10383         already have if we're in a main Gnus `g' run.
10384
10385         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
10386
10387 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10388
10389         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
10390
10391         * nnmh.el (nnmh-request-list-1): Bind `file'.
10392
10393         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
10394         alias to set-process-query-on-exit-flag or process-kill-without-query.
10395         (pop3-open-server): Use it.
10396
10397 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10398
10399         * mail-source.el (mail-source-delete-crash-box): Always move the crash
10400         box to the Incoming file.  Fixes mistake in previous checkin.
10401
10402         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
10403         request loop (for debugging purposes) removed.
10404
10405         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
10406         culprit is more visible.
10407         (nnml-save-incremental-nov, nnml-open-incremental-nov)
10408         (nnml-add-incremental-nov): New functions to do "incremental" nov
10409         updates, where we just append to the end of the existing nov files
10410         without reading/writing them in full.
10411
10412         * mail-source.el (mail-source-delete-crash-box): Really only check the
10413         incoming files once in a while.
10414
10415         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
10416
10417         * mail-source.el (mail-source-delete-crash-box): Only check the
10418         incoming files for deletion once per day to save a lot of file
10419         accesses.
10420
10421         * pop3.el (pop3-logon): Fix up unbound variable typo.
10422
10423         * mail-source.el (pop3-streaming-movemail): Autoload.
10424
10425         * pop3.el (pop3-streaming-movemail):
10426         Respect pop3-leave-mail-on-server.
10427
10428         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
10429         retrieval.
10430
10431         * pop3.el (pop3-process-filter): Remove unused function.
10432         (pop3-streaming-movemail, pop3-send-streaming-command)
10433         (pop3-wait-for-messages, pop3-write-to-file)
10434         (pop3-number-of-responses): New functions for streaming pop3
10435         retrieval.
10436
10437         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
10438         come from no known methods.
10439         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
10440         list.
10441
10442         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
10443         message sizes.
10444         (pop3-movemail): Use erase-buffer instead of looping and deleting
10445         regions, which seems rather odd.
10446
10447         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
10448         file once per `g' run.
10449
10450         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
10451         directories.  This makes the draft queue directory work.
10452
10453         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
10454         data from the backends, so that we only request the list of groups from
10455         each method once.  This should speed things up considerably.
10456
10457         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
10458         detect that it's not implemented.
10459
10460         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
10461         we actually do recurse down into the tree, but don't stat all leaf
10462         nodes.
10463
10464         * gnus-html.el (gnus-html-show-images): If there are no images to show,
10465         then say so instead of bugging out.
10466
10467         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
10468         files exist before trying to read them.
10469
10470         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
10471         around <pre_int>.
10472
10473         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
10474
10475         * nnmh.el (nnmh-request-list-1): Optimize for speed.
10476
10477 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10478
10479         * mm-util.el (mm-image-load-path): Just return the image directories,
10480         not all directories in the path in addition to the image directories.
10481         (mm-image-load-path): Maintain a cache of the image directories so that
10482         the `g' command in Gnus doesn't have to stat dozens of directories each
10483         time.
10484
10485         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
10486         (gnus-html-wash-tags): Add a new `i' command to insert images.
10487         (gnus-html-insert-image): New command and keystroke.
10488         (gnus-html-redisplay-with-images): New command and keystroke.
10489         (gnus-html-show-images): Rename command.
10490         (gnus-html-wash-tags): Remove more white space before <pre_int> image
10491         spacers.
10492         (gnus-html-wash-tags): Decode entities at the end, so that entities
10493         inside the tags don't mess up the rest of the "parsing".
10494
10495         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
10496         so that nnimap methods aren't agentized by default.  There's apparently
10497         many problems related to agent/imap behavior.
10498
10499         * gnus-art.el (gnus-article-copy-string): New command and key binding.
10500
10501         * gnus-html.el: Doc fix.
10502
10503 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
10504
10505         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
10506         specifier-spec-list for Emacs 21.
10507
10508         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
10509         glyph-width and glyph-height instead of display-graphic-p and
10510         image-size; make avoidance of displaying small images work for XEmacs.
10511
10512         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
10513         for XEmacs.
10514
10515         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
10516         of symbol that holds plist data.
10517         (gnus-process-plist): Remove plist of process after getting it.
10518
10519 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10520
10521         * message.el (message-generate-hashcash): Change default to
10522         'opportunistic if hashcash is installed.
10523
10524         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
10525         (gnus-html-put-image): Only call image-size once, since it's somewhat
10526         time-consuming on remote X servers.
10527
10528 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10529
10530         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
10531         type on data, not a file name.
10532
10533         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
10534         window-pixel-edges for Emacs 21.
10535
10536         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
10537         decoded contents.
10538         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
10539
10540 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10541
10542         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
10543         group line format, since it isn't very interesting.
10544
10545         * gnus-agent.el (gnus-agent-short-article),
10546         (gnus-agent-long-article): Increase values for these two variables,
10547         since most people are likely to have more network connection and
10548         storage than before.
10549
10550         * gnus.el (gnus-refer-article-method): Change default to 'current.
10551         When referring an article, the common behavior is to refer it from the
10552         current select method, not the native select method.  The chances of
10553         the native select method having the message in question is rather slim
10554         these days.
10555
10556         * gnus-sum.el (gnus-auto-select-subject): Change default to
10557         `unseen-or-unread'.  I think it's likely that most people want to
10558         select an unseen article over a previously seen, but unread one.
10559
10560         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
10561         means that in the article buffer none of the minor mode elements will
10562         be shown, usually, and this is not desirable in most cases.
10563
10564         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
10565         that commands like `d' (and the like) go to the next line in the
10566         buffer, instead of the next unread article.  I think this is the
10567         behavior that is most natural for most users.
10568         (gnus-single-article-buffer): Change default to nil, so that people can
10569         have as many article buffers open as they have summary buffer.  I think
10570         this is the most natural way for the groups to behave.
10571
10572         * message.el (message-generate-new-buffers): Change default to
10573         `unsent', so that all new message buffers start their names with the
10574         string "*unsent", and it's easier to find the buffers if you move from
10575         them.
10576
10577 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10578
10579         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
10580         small.  They're probably tracking images.
10581         (gnus-html-wash-tags): Remove all <pre_int> place holders.
10582         (gnus-html-rescale-image): Yet another try at getting the image sizing
10583         right.
10584
10585         * nntp.el (nntp-request-set-mark): Refuse to do marks if
10586         nntp-marks-file-name is nil.
10587
10588 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10589
10590         * gnus-html.el (gnus-html-wash-tags)
10591         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
10592         Better logging.
10593
10594 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10595
10596         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
10597
10598         * gnus-html.el (gnus-html-wash-tags): Check the value of
10599         gnus-blocked-images in the summary buffer.
10600
10601 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10602
10603         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
10604
10605 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10606
10607         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
10608         like "a", it seems like.
10609         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
10610         since it needs to be picked from the correct buffer.
10611
10612         * nnwfm.el: Remove.
10613
10614         * nnlistserv.el: Remove.
10615
10616 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10617
10618         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
10619         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
10620
10621 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10622
10623         * nnkiboze.el: Remove.
10624
10625         * nndb.el: Remove.
10626
10627         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
10628         alt text.
10629         (gnus-html-rescale-image): Try to get the rescaling logic right for
10630         images that are just wide and not tall.
10631
10632         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
10633         overshadow variable bindings.
10634
10635 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10636
10637         * gnus-html.el (gnus-html-wash-tags)
10638         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
10639         Add extra logging.
10640
10641 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10642
10643         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
10644         (gnus-max-image-proportion): New variable.
10645         (gnus-html-rescale-image): New function.
10646         (gnus-html-put-image): Rescale images.
10647
10648 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10649
10650         Fix up some byte-compiler warnings.
10651         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
10652         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
10653         (gnus-article-fill-cited-article, gnus-article-hide-citation)
10654         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
10655         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
10656         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
10657         (gnus-group-update-group): Use save-excursion and with-current-buffer.
10658
10659 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10660
10661         * gnus-html.el (gnus-article-html): Decode contents by charset.
10662
10663 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10664
10665         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
10666         (gnus-html-frame-width, gnus-blocked-images):
10667         * message.el (message-prune-recipient-rules): Add custom version.
10668         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
10669
10670         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
10671         functions.
10672
10673         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
10674         gnus-process-get.
10675
10676 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
10677
10678         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
10679         instead of lsub directly.
10680
10681 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10682
10683         * nnwarchive.el: Remove.
10684
10685         * gnus-soup.el: Remove.
10686
10687         * nnsoup.el: Remove.
10688
10689         * nnultimate.el: Remove.
10690
10691         * gnus-html.el (gnus-blocked-images): New variable.
10692
10693         * message.el (message-prune-recipients): New function.
10694         (message-prune-recipient-rules): New variable.
10695
10696         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
10697         guess whether a long line is natural text or not.
10698
10699         * gnus-html.el (gnus-html-schedule-image-fetching):
10700         Use gnus-process-plist and friends for compatibility.
10701
10702 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
10703
10704         * gnus-html.el: Require packages that define macros used in this file.
10705         (gnus-article-mouse-face): Declare to silence byte-compiler.
10706         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
10707         process-get.
10708         (gnus-html-put-image): Use plist-get to avoid getf.
10709         (gnus-html-prefetch-images): Use with-current-buffer.
10710
10711 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10712
10713         * gnus-ems.el: Provide compatibility functions for
10714         gnus-set-process-plist.
10715
10716         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
10717         header-line-format for XEmacs 21.4.
10718
10719         * gnus-sum.el (gnus-summary-stop-at-end-of-message):
10720         * gnus.el (gnus-valid-select-methods):
10721         * message.el (message-send-mail-partially-limit):
10722         * mm-decode.el (mm-text-html-renderer):
10723         * mml.el (mml-insert-mime-headers-always):
10724         * smiley.el (smiley-regexp-alist): Bump custom version.
10725
10726 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10727
10728         * gnus-html.el: require mm-url.
10729         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
10730         with the url to `url'.
10731         (gnus-html-wash-tags): Support cid: URLs/images.
10732
10733 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10734
10735         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
10736         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
10737         bindings, as they aren't useful at all.  `w' is moved to `W w'.
10738
10739         * gnus-move.el: Remove file, since it doesn't really work.
10740
10741         * gnus-html.el (gnus-article-html): Tell w3m that the input is
10742         UTF-8.  This seems to fix problems with some German web feeds.
10743
10744         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
10745         at the top so that the proper colors are applied.
10746
10747         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
10748         don't have dots in their names.
10749
10750         * gnus-art.el (gnus-article-view-part): Doc fix.
10751
10752         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
10753         XEmacs-compatible.
10754         (gnus-html-put-image): Don't do images on non-graphic displays.
10755
10756         * nnslashdot.el: Remove this unused backend.
10757
10758         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
10759         actions.
10760         (gnus-undo-register-1): Revert last change.
10761
10762         * gnus-group.el (gnus-group-completing-read): Protect against not
10763         having completion-styles bound.
10764
10765         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
10766         make broken recipients happier.
10767
10768         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
10769
10770         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
10771         point parameter.
10772
10773         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
10774
10775         * gnus-group.el (gnus-group-completing-read): Add 'substring to
10776         completion-styles for group selection.
10777
10778 2009-02-04  Andreas Schwab  <schwab@suse.de>
10779
10780         * gnus-score.el (gnus-score-string): Fix regex for matching extra
10781         headers and regexp-quote the match if necessary.
10782
10783 2009-03-24  Miles Bader  <miles@gnu.org>
10784
10785         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
10786         the blinking smiley.
10787
10788 2009-03-24  Simon Josefsson  <simon@josefsson.org>
10789
10790         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
10791         blink smiley.
10792
10793 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10794
10795         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
10796         where the dribbel file lives exists.
10797
10798         * message.el (message-send-mail-partially-limit): Change the default to
10799         nil, since most people don't want this.
10800
10801         * mm-url.el (mm-url-decode-entities): Also decode entities like
10802         &#x3212.
10803
10804 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
10805
10806         * gnus-sum.el (gnus-summary-idna-message):
10807         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
10808         Hyperlink urls in docstrings with URL `...'.
10809
10810 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
10811
10812         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
10813         functions.
10814
10815 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10816
10817         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
10818         say what the mouseover text should be.
10819
10820         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
10821         version of the mm-w3m-safe-url-regexp variable to only download images
10822         in the groups where we want that to happen.
10823
10824         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
10825
10826         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
10827         easier debugging.
10828         (gnus-article-beginning-of-window): Add kludge to allow spacing past
10829         big pictures in the article buffer.
10830
10831         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
10832         gnus-article-html.
10833         (mm-text-html-renderer): gnus-article-html needs curl in addition to
10834         w3m.
10835
10836         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
10837
10838 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10839
10840         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
10841         which doesn't exist.
10842
10843         * message.el (message-inhibit-ecomplete): New variable to allow some
10844         function to inhibit ecomplete address storage.
10845         (message-resend): Disable ecomplete message storage when resending
10846         messages.
10847
10848         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
10849
10850 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10851
10852         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
10853         Save excursion while copying, moving, and deleting articles in order to
10854         prevent the cursor from jumping to unforeseen place.
10855
10856 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10857
10858         * lpath.el: No need to bind bookmark-current-buffer,
10859         bookmark-yank-point and bookmark-make-record-function.
10860
10861 2010-08-17  Glenn Morris  <rgm@gnu.org>
10862
10863         * gnus-sync.el: Require gnus components whose functions are used.
10864
10865         * gnus-art.el (bookmark-make-record-function):
10866         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
10867         Declare for compiler.
10868
10869         * mm-url.el (mml-compute-boundary): Autoload.
10870
10871 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10872
10873         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
10874
10875 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
10876
10877         Typo fix "hoo4a" -> "hook".
10878
10879         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
10880
10881 2010-08-14  Glenn Morris  <rgm@gnu.org>
10882
10883         * gnus-sync.el (gnus-sync): Fix defgroup version.
10884
10885 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
10886
10887         Doc fixes and keep unknown groups (ammended for nunion bug fix).
10888
10889         * gnus-sync.el: Fix docs.
10890         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
10891         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
10892
10893 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
10894
10895         Optimizations for gnus-sync.el.
10896
10897         * gnus-sync.el: Add docs about gnus-sync-backend
10898         possibilities.
10899         (gnus-sync-save): Remove unnecessary message.
10900         (gnus-sync-read): Optimize and show what groups were skipped.
10901
10902 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
10903
10904         Minor bug fixes for gnus-sync.el.
10905
10906         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
10907         Don't read the sync on get-new-news.
10908
10909         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
10910         quiet.
10911
10912         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
10913         (fix typo).
10914
10915 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
10916
10917         Make saving and restoring of hidden threads work with overlays.
10918         Patch applied by Ted Zlatanov.
10919
10920         * gnus-sum.el (gnus-hidden-threads-configuration)
10921         (gnus-restore-hidden-threads-configuration): Update to deal with text
10922         properties, rather than searching for a magic character.
10923
10924 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
10925
10926         New gnus-sync.el library for synchronization of marks.
10927
10928         * gnus-sync.el: New library for synchronization of marks.
10929
10930         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
10931         renamed from `gnus-registry-grep-in-list'.
10932
10933         * gnus-registry.el (gnus-registry-follow-group-p):
10934         Use `gnus-grep-in-list'.
10935
10936         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
10937
10938 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10939
10940         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
10941         determining charset of text fails.
10942
10943 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10944
10945         * nnmail.el (nnmail-get-new-mail-1): Revert.
10946
10947         * nnml.el (nnml-active-number): Make sure names of newly created groups
10948         in nnml-group-alist are encoded.
10949
10950 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10951
10952         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
10953         containing non-ASCII characters in active file for nnml back end.
10954
10955 2010-07-24  David Engster  <dengste@eml.cc>
10956
10957         * mml-smime.el (mml-smime-epg-verify): Also accept the older
10958         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
10959
10960 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
10961
10962         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
10963         tag (Bug#6654).
10964
10965 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10966
10967         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
10968         the article buffer, not the summary buffer.
10969
10970 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10971
10972         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
10973         Emacs 23 as well.
10974
10975 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10976
10977         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
10978         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
10979
10980 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10981
10982         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
10983         Patch applied by Karl Fogel.
10984
10985         * gnus-sum.el (gnus-summary-bookmark-make-record):
10986         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
10987
10988 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10989
10990         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
10991         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
10992         C-w still not working correctly from Article buffers; Thierry's
10993         patch to fix that will be applied after this.
10994
10995         * gnus-art.el (bookmark-make-record-function): New local variable.
10996
10997         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
10998         article buffer.
10999         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
11000
11001 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
11002
11003         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
11004         on changes in bookmark.el.
11005
11006 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11007
11008         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
11009         `no-log' instead of message not to log prompt string.
11010
11011 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
11012
11013         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
11014         the *other* type of HTML form submission.
11015
11016 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
11017
11018         * auth-source.el (auth-source-pick): If choice does not contain a
11019         questioned keyword, set the check to t.
11020
11021 2010-06-12  Romain Francoise  <romain@orebokech.com>
11022
11023         * gnus-util.el (gnus-date-get-time): Move up before first use.
11024
11025 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11026
11027         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
11028         (gnus-article-edit-part): Bind it to make last part that is substituted
11029         or deleted visible.
11030         (gnus-mime-display-single): Buttonize part of which id equals to
11031         gnus-mime-buttonized-part-id.
11032
11033 2010-06-10  Dan Christensen  <jdc@uwo.ca>
11034
11035         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
11036         (gnus-dd-mmm): Use gnus-date-get-time.
11037         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
11038         simplify logic.
11039         (gnus-summary-limit-to-age): Use gnus-date-get-time.
11040         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
11041
11042 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
11043
11044         * auth-source.el (top): Autoload `secrets-list-collections',
11045         `secrets-create-item', `secrets-delete-item'.
11046         (auth-sources): Fix tag string.
11047         (auth-get-source, auth-source-retrieve, auth-source-create)
11048         (auth-source-delete): New defuns.
11049         (auth-source-pick): Rewrite in order to avoid 2 passes.
11050         (auth-source-forget-user-or-password): New parameter USERNAME.
11051         (auth-source-user-or-password): New parameters CREATE-MISSING and
11052         DELETE-EXISTING.  Retrieve password interactively, if needed.
11053
11054 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
11055
11056         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
11057         deleting unused directories when gnus-expert-user is t.
11058
11059 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11060
11061         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
11062         for each temp file when gnus-article-browse-delete-temp is ask.
11063
11064 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11065
11066         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el:
11067         Replace Lisp calls to delete-backward-char by calls to delete-char.
11068
11069 2010-05-20  Kevin Ryde  <user42@zip.com.au>
11070
11071         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
11072
11073 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
11074
11075         * password-cache.el (password-cache-remove): Fix docstring.
11076
11077 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11078
11079         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
11080         article unless decoding article to be saved.
11081
11082 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11083
11084         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt):
11085         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
11086         generated within the mm-with-unibyte-current-buffer macro.
11087
11088 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11089
11090         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
11091         to nil when we're in a mml-preview buffer and no group is selected.
11092
11093 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
11094
11095         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
11096         when catching the `C-g'.  Reported by "Leo".
11097
11098 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11099
11100         * message.el (message-forward-make-body-plain)
11101         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
11102         multibyte-string-p.
11103
11104         * lpath.el: Revert.
11105
11106 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11107
11108         * message.el (message-forward-make-body-mml): Assume original message
11109         is multibyte string; error on unibyte.
11110         (message-forward-make-body-plain): Ditto; don't add excessive newline
11111         in body end.
11112
11113         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
11114
11115 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
11116
11117         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
11118         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
11119
11120 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11121
11122         * mm-extern.el (mm-extern-url): Don't use
11123         mm-with-unibyte-current-buffer.
11124         (mm-extern-cache-contents): Use with-current-buffer instead of
11125         save-excursion + set-buffer.
11126
11127 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11128
11129         * mm-util.el (mm-emacs-mule): Remove.
11130
11131 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
11132
11133         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
11134         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
11135         change.
11136
11137 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11138
11139         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
11140         bind the default value of enable-multibyte-characters to nil.
11141
11142 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11143
11144         * message.el (message-forward-make-body-plain)
11145         (message-forward-make-body-mml):
11146         Don't use mm-with-unibyte-current-buffer.
11147
11148 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11149
11150         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
11151
11152 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
11153
11154         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
11155         (Bug#5592).
11156
11157 2010-05-07  Julien Danjou  <julien@danjou.info>
11158
11159         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
11160         it to mm-pipe-part.
11161
11162         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
11163         it is given.
11164
11165 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11166
11167         * binhex.el (binhex-decode-region-internal):
11168         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type):
11169         (dns-query):
11170         * nnweb.el (nnweb-gmane-search):
11171         * pgg-parse.el (pgg-parse-armor):
11172         * pgg.el (pgg-verify-region):
11173         * sha1.el (sha1-string-external):
11174         * uudecode.el (uudecode-decode-region-internal):
11175         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
11176         XEmacs.
11177
11178         * gnus-art.el (gnus-article-browse-html-parts):
11179         * gnus-group.el (gnus-read-ephemeral-gmane-group):
11180         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
11181         make-temp-file.
11182
11183         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
11184         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
11185         compiling.
11186
11187         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
11188         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
11189         XEmacs when compiling.
11190
11191         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
11192         gnus-pick-mode-off-hook for XEmacs when compiling.
11193         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
11194         gnus-binary-mode-off-hook for XEmacs when compiling.
11195
11196         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
11197         Return nil if char-charset is not available.
11198
11199         * imap.el (imap-disable-multibyte)
11200         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
11201         macros.
11202
11203         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
11204         instead of encode-coding-string.
11205
11206         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
11207         'xemacs) instead of mm-emacs-mule to switch function definitions.
11208         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
11209
11210         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
11211         bind temporary-file-directory for XEmacs;
11212         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
11213         timer-set-function for XEmacs 21.4 and SXEmacs;
11214         bind timer-list for XEmacs 21.4 and SXEmacs;
11215         fbind char-charset and find-charset-region for non-Mule XEmacs;
11216         fbind decode-coding-region, decode-coding-string, detect-coding-region,
11217         encode-coding-region and encode-coding-string for XEmacs having no
11218         file-coding feature.
11219
11220 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
11221
11222         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
11223
11224 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11225
11226         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
11227         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
11228
11229 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
11230
11231         * mm-util.el (mm-decompress-buffer): Use `delete-file';
11232         alias `jka-compr-delete-temp-file' no longer exists.
11233
11234 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11235
11236         Use define-minor-mode in Gnus where applicable.
11237         * mml.el (mml-mode): Use define-minor-mode.
11238         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
11239         (gnus-undo-mode): Use define-minor-mode.
11240         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
11241         (gnus-dead-summary-mode): Use define-minor-mode.
11242         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
11243         Initialize in declaration.
11244         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
11245         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
11246         (gnus-mailing-list-mode): Use define-minor-mode.
11247         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
11248         (gnus-draft-mode): Use define-minor-mode.
11249         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
11250         (gnus-dired-mode): Use define-minor-mode.
11251
11252 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
11253
11254         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
11255         handles on recursive mml-to-mime translation and check them for
11256         boundary delimiter collisions.  Reported by Greg Troxel.
11257
11258 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11259
11260         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
11261
11262 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11263
11264         * mm-util.el (mm-find-buffer-file-coding-system):
11265         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
11266
11267 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
11268
11269         * message.el (message-generate-headers): Record insertion of optional
11270         headers as well.  Otherwise the check to prevent repeated insertion of
11271         optional headers is a no-op.
11272
11273 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
11274
11275         * smime.el: Don't mention CVS.
11276
11277         * nnrss.el (nnrss-fetch): Don't mention CVS.
11278
11279         * nnir.el: Don't mention CVS.
11280
11281 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11282
11283         * gnus-sum.el (gnus-summary-bookmark-make-record):
11284         Add `location' field.
11285
11286 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11287
11288         * lpath.el: Fbind bookmark-default-handler,
11289         bookmark-get-bookmark-record, bookmark-make-record-default,
11290         bookmark-prop-get for Emacs <23 and XEmacs.
11291
11292 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
11293
11294         * gnus-sum.el: Add bookmark declarations to silence the compiler.
11295         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
11296         Use with-current-buffer to silence the byte-compiler.
11297         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
11298         bother to require `gnus'.
11299         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
11300
11301 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11302
11303         * gnus-sum.el (gnus-summary-bookmark-make-record)
11304         (gnus-summary-bookmark-jump): New functions.
11305         (gnus-summary-mode): Setup bookmark support.
11306
11307 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
11308
11309         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
11310         if set.
11311
11312 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
11313
11314         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
11315         gnus-article-browse-html-save-cid-image; make it work recursively for
11316         forwarded messages as well.
11317         (gnus-article-browse-html-parts): Work when prefix arg is given.
11318         (gnus-article-browse-html-article): Doc fix.
11319
11320 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
11321
11322         * message.el (message-default-mail-headers):
11323         (message-default-headers): Carry the value mail-default-headers over
11324         into message-default-mail-headers, rather than message-default-headers.
11325
11326 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
11327
11328         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
11329         charset.
11330
11331         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
11332         charset into the <meta> tag when the article is encoded to utf-8.
11333
11334 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11335
11336         * gnus-art.el (gnus-article-browse-delete-temp-files):
11337         Delete directories as well.
11338         (gnus-article-browse-html-parts): Work for images that do not specify
11339         file names; delete temp directory when quitting; insert header at the
11340         right place; use file: scheme for image files.
11341
11342 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
11343
11344         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
11345         (gnus-article-browse-html-parts): Use it to make temporary cid image
11346         files in addition to html file so that browser may display them.
11347
11348 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11349
11350         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
11351
11352 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
11353
11354         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
11355
11356 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
11357
11358         * auth-source.el (auth-sources): Change default to be simpler.
11359         Explain about Secret Service API sources.  Improve Customize options.
11360         (auth-source-pick): Change to accept any number of search parameters.
11361         Implement fallbacks iteratively, not recursively.  Add scoring on the
11362         second pass and sort by score.  Call Secret Service API when needed.
11363         (auth-source-user-or-password): Use it.  Call Secret Service API
11364         directly when needed to get the user name and the password.
11365
11366 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
11367
11368         * message.el (message-interactive): Doc fix.
11369         (message-qmail-inject-args): Reflow.
11370         (message-kill-to-signature): Fix typo in docstring.
11371
11372         * smiley.el (smiley-buffer): Fix typo in docstring.
11373
11374 2010-03-24  Glenn Morris  <rgm@gnu.org>
11375
11376         * mail-source.el (gnus-message): Declare.
11377         (mail-source-delete-old-incoming): Require gnus-util.
11378
11379 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
11380
11381         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
11382
11383         * message.el (ecomplete-setup): Autoload it for Emacs <23.
11384
11385         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
11386         password-cache's default if it is not bound.
11387         (mml-secure-passphrase-cache-expiry): Default to 16 that is
11388         password-cache-expiry's default if it is not bound.
11389
11390         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
11391         available in Emacs 21.
11392
11393         * lpath.el: Suppress compiler warnings for:
11394         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
11395         XEmacs;
11396         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
11397         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
11398         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
11399
11400 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
11401
11402         * auth-source.el (auth-sources): Fix up definition so extra parameters
11403         are always inline.
11404
11405 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
11406
11407         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
11408         wasn't updated after mismatch.  Clear cached mailbox info correctly
11409         when uidvalidity changes.
11410         (nnimap-group-prefixed-name): New function to avoid some code
11411         duplication.
11412         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
11413         (nnimap-request-group): Use it.
11414         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
11415         (nnimap-update-unseen): Significantly improved speed of Gnus startup
11416         with many imap folders.  This is done by caching the group status from
11417         the imap server persistently in a group parameter `imap-status'.  (This
11418         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
11419         but not persistently, so every Gnus startup was still very slow.)
11420
11421 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
11422
11423         * assistant.el (assistant-render-text): Run `widget-setup' and don't
11424         delete the extra newline.  Otherwise editing of :string and :number
11425         types don't work.
11426
11427 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
11428
11429         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
11430         secrets.el dependency.
11431         (auth-sources): Add optional user name.  Add secrets.el configuration
11432         choice (unused right now).
11433
11434 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
11435
11436         * gnus-sum.el (gnus-summary-make-menu-bar):
11437         Let `gnus-registry-install-shortcuts' fill in the functions.
11438
11439         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
11440         warnings.
11441         (gnus-registry-misc-menus): Variable to hold registry mark menus.
11442         (gnus-registry-install-shortcuts): Populate and use it in a
11443         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
11444
11445 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
11446
11447         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
11448         In-place substitutions for the group name encoding/decoding.
11449         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
11450         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
11451         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
11452         (nnimap-update-unseen, nnimap-request-list)
11453         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
11454         (nnimap-request-set-mark, nnimap-split-to-groups)
11455         (nnimap-split-articles, nnimap-request-newgroups)
11456         (nnimap-request-create-group, nnimap-request-accept-article)
11457         (nnimap-request-delete-group, nnimap-request-rename-group)
11458         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
11459         `encoded-mbx' for consistency.
11460         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
11461         variable `imap-current-mailbox'.
11462
11463         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
11464         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
11465
11466 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
11467
11468         * pop3.el (pop3-display-message-size-flag): Display message size byte
11469         counts during POP3 download.
11470         (pop3-movemail): Use it.
11471         (pop3-list): Implement listing of available messages.
11472
11473 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
11474
11475         * nnir.el (nnir-get-article-nov-override-function): New function to
11476         override the normal NOV retrieval.
11477         (nnir-retrieve-headers): Use it.
11478
11479 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
11480
11481         * auth-source.el (netrc-machine-user-or-password): Autoload.
11482
11483 2010-03-19  Glenn Morris  <rgm@gnu.org>
11484
11485         Stop message.el from loading about 40 libraries it doesn't always need.
11486         The general approach is to autoload rather than require, and to
11487         require in the specific functions rather than the file.  (Bug#5642)
11488
11489         * gmm-utils.el: Don't require wid-edit.
11490         (widget-create-child-value, widget-convert, widget-default-get):
11491         Autoload.
11492
11493         * gnus-util.el: Don't require time-date, netrc.
11494         (message-fetch-field, gnus-group-name-decode): Declare rather than
11495         autoloading.
11496         (gnus-fetch-field): Require message.
11497         (gnus-decode-newsgroups): Require gnus-group.
11498
11499         * ietf-drums.el: Don't require time-date.
11500
11501         * message.el: Don't require hashcash, canlock, ecomplete.
11502         Do require mail-utils.  Require nnheader only when compiling.
11503         (smtpmail-default-smtp-server): Remove declaration.
11504         (message-send-mail-function): Check smtpmail-default-smtp-server
11505         is bound rather than requiring smtpmail.
11506         (message-auto-save-directory, message-insert-signature):
11507         Use expand-file-name rather than nnheader-concat.
11508         (nnheader-insert-file-contents): Autoload.
11509         (hashcash-wait-async): Declare.
11510         (message-send-mail): Only call gnus-setup-posting-charset if
11511         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
11512         (message-send-mail-with-sendmail): Require sendmail.
11513         (canlock-password, canlock-password-for-verify): Declare.
11514         (message-canlock-password): Require canlock.
11515         (nnheader-get-report): Autoload.
11516         (gnus-setup-posting-charset): Declare.
11517         (message-send-news): Require gnus-msg.
11518         (message-make-references, message-make-in-reply-to): Use mail-header-id
11519         rather than the alias mail-header-message-id.
11520         (ecomplete-add-item, ecomplete-save): Declare.
11521         (message-put-addresses-in-ecomplete): Require ecomplete.
11522         (ecomplete-display-matches): Autoload.
11523
11524         * mm-decode.el: Don't require mailcap, gnus-util.
11525         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
11526         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
11527         Autoload.
11528         (mailcap-mime-extensions): Declare.
11529
11530         * mm-encode.el: Don't require mailcap.
11531         (mailcap-extension-to-mime): Autoload.
11532
11533         * mml-sec.el: Don't require password-cache.
11534
11535         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
11536         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
11537         (mml-minibuffer-read-type): Require mailcap.
11538         (mml-preview): Require gnus-msg.
11539
11540         * mml1991.el: Require password-cache.
11541         (password-cache-expiry): Remove declaration.
11542
11543         * mml2015.el: Require password-cache.
11544         (password-cache-expiry): Remove declaration.
11545
11546         * nneething.el (mailcap): Require mailcap.
11547
11548         * nnheader.el (declare-function): Add compatibility stub.
11549         (message-remove-header): Declare rather than autoload.
11550         (nnheader-replace-header): Require message.
11551
11552         * nnimap.el (declare-function): Add compatibility stub.
11553         (netrc-parse, netrc-machine-user-or-password): Declare.
11554         (nnimap-open-connection): Require netrc.
11555
11556         * nntp.el (declare-function): Add compatibility stub.
11557         (netrc-parse, netrc-machine, netrc-get): Declare.
11558         (nntp-send-authinfo): Require netrc.
11559
11560         * rfc2047.el: Don't require qp.
11561         (quoted-printable-encode-region, quoted-printable-decode-string):
11562         Autoload.
11563
11564         * sieve-mode.el: Don't require easymenu.
11565         (easy-menu-add-item): Autoload it.
11566
11567         * spam-stat.el (time-to-number-of-days): Autoload it.
11568
11569 2010-03-19  Glenn Morris  <rgm@gnu.org>
11570
11571         * password-cache.el (password-cache, password-cache-expiry): Autoload.
11572
11573 2010-03-18  Glenn Morris  <rgm@gnu.org>
11574
11575         * hashcash.el (declare-function): Remove duplicate definition.
11576
11577 2010-03-17  Kevin Ryde  <user42@zip.com.au>
11578
11579         * mml.el (mml-read-tag): Unquote values with `read' to reverse
11580         prin1 in mml-insert-tag (just stripping the quotes gave wrong
11581         value if any backslash escapes).
11582
11583 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11584
11585         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
11586         if it is available.  (bug#5647)
11587
11588         * lpath.el: Suppress compiler warning for coding-system-from-name for
11589         Emacs 21 and XEmacs.
11590
11591 2010-03-14  Juri Linkov  <juri@jurta.org>
11592
11593         * hmac-def.el:
11594         * hmac-md5.el:
11595         * netrc.el: Fix keywords.
11596
11597 2010-02-26  Glenn Morris  <rgm@gnu.org>
11598
11599         * message.el (message-send-mail-function): Change the default, so that
11600         it inherits from a customized send-mail-function.  (Bug#5643)
11601
11602 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
11603
11604         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
11605         shell-command-to-string signals an error (bug#5299).
11606
11607 2010-02-24  Glenn Morris  <rgm@gnu.org>
11608
11609         * message.el (message-smtpmail-send-it)
11610         (message-send-mail-with-mailclient): Doc fixes.
11611
11612 2010-02-16  Glenn Morris  <rgm@gnu.org>
11613
11614         * message.el (message-default-mail-headers): Change the default value
11615         to ease the transition from mail-mode to message-mode.  (Bug#5555)
11616
11617 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11618
11619         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
11620         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
11621
11622 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
11623
11624         * time-date.el (date-to-time): Doc fix (Bug#5408).
11625
11626 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
11627
11628         * message.el (message-mail): Just pass yank-action on to message-setup.
11629         (message-setup): Handle (FUN . ARGS) form of yank-action.
11630         (message-with-reply-buffer, message-widen-reply)
11631         (message-yank-original): Handle non-buffer values of
11632         message-reply-buffer (Bug#4080).
11633         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
11634
11635 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
11636
11637         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
11638         Fix typo in docstring.
11639
11640 2010-01-08  Jason Rumney  <jasonr@gnu.org>
11641
11642         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
11643         response.
11644
11645 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11646
11647         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
11648
11649         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
11650
11651         * message.el (message-check-news-header-syntax): Protect against a
11652         string that `rfc822-addresses' returns when parsing fails.
11653
11654 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11655
11656         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
11657         (gnus-previous-char-property-change): New functions.
11658
11659         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
11660
11661 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
11662
11663         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
11664         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
11665
11666 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
11667
11668         * message.el (message-exchange-point-and-mark): Rework last change to
11669         avoid using optional arg of exchange-point-and-mark, for backward
11670         compatibility.
11671
11672 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
11673
11674         * message.el (message-exchange-point-and-mark):
11675         Call exchange-point-and-mark with an argument rather than setting
11676         mark-active by hand (Bug#5175).
11677
11678 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11679
11680         * nntp.el (nntp-service-to-port): Work for service expressed with
11681         numeric string; replace [:digit:] with [0-9] for XEmacs.
11682
11683 2009-12-17  Glenn Morris  <rgm@gnu.org>
11684
11685         * gnus-group.el (gnus-bug-group-download-format-alist):
11686         Change emacs entry to debbugs.gnu.org.  Bump :version.
11687
11688 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
11689
11690         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
11691
11692 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
11693
11694         * message.el (message-info): Explain why we use `Info-goto-node'.
11695
11696 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11697
11698         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
11699
11700 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
11701
11702         * message.el (message-completion-in-region): New compatibility function.
11703         (message-expand-group): Use it.
11704
11705 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11706
11707         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
11708         with no unread article should be listed if the 2nd arg `predicate' is
11709         given.
11710
11711 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11712
11713         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
11714
11715 2009-11-29  Juri Linkov  <juri@jurta.org>
11716
11717         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
11718         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
11719         on `gnus-recenter'.  (Bug#4698, Bug#4981)
11720
11721 2009-11-26  Kevin Ryde  <user42@zip.com.au>
11722
11723         * sha1.el (sha1-string-external): default-directory "/" in case
11724         otherwise non-existent.  process-connection-type pipe for touch of
11725         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
11726
11727 2009-11-25  Kevin Ryde  <user42@zip.com.au>
11728
11729         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
11730         it's comms related and sgml-mode.el has "comm" on that basis too.
11731
11732 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11733
11734         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
11735         containing tspecial characters if they have been already quoted.
11736
11737 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
11738
11739         * dns-mode.el (auto-mode-alist): Purecopy string.
11740
11741 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11742
11743         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
11744
11745 2009-10-24  Glenn Morris  <rgm@gnu.org>
11746
11747         * gnus-art.el (help-xref-stack-item): Define for compiler.
11748
11749 2009-10-21  Kevin Ryde  <user42@zip.com.au>
11750
11751         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
11752
11753 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11754
11755         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
11756
11757 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11758
11759         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
11760         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
11761
11762 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11763
11764         * gnus.el (gnus-overlay-get): New alias to overlay-get.
11765         (gnus-overlays-in): New alias to overlays-in.
11766
11767         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
11768         gnus-overlay-get, and gnus-delete-overlay.
11769         (gnus-summary-show-thread): Make it work as well for systems in which
11770         next-single-char-property-change is not available.
11771         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
11772
11773         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
11774         (gnus-overlay-get): New alias to extent-property.
11775         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
11776
11777         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
11778         SXEmacs.
11779
11780         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
11781         SXEmacs.
11782
11783 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
11784
11785         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
11786
11787 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
11788
11789         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
11790         and XEmacs that don't have `remove-overlays'.
11791
11792 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11793
11794         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
11795         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
11796         selective display.  Use overlays instead.
11797
11798 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
11799
11800         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
11801
11802 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
11803
11804         * spam-stat.el (spam-stat-load): Fix typo in message.
11805
11806 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
11807
11808         * dig.el (dig-invoke): Fix typo in docstring.
11809         (query-dig): Reflow docstring.
11810
11811 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
11812
11813         * gnus-art.el (gnus-article-encrypt-body):
11814         * message.el (message-check-recipients):
11815         * mm-util.el (mm-codepage-setup):
11816         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
11817         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
11818
11819 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
11820
11821         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
11822         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
11823         keys from the menu if mm-{sign,encrypt}-option is 'guided.
11824         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
11825         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
11826
11827 2009-09-21  Kevin Ryde  <user42@zip.com.au>
11828
11829         * dig.el: Add "Keywords: comm", as per net-utils.el.
11830
11831 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11832
11833         * dig.el (dig-mode): Use define-derived-mode.
11834
11835 2009-09-19  Glenn Morris  <rgm@gnu.org>
11836
11837         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
11838
11839 2009-09-18  Glenn Morris  <rgm@gnu.org>
11840
11841         * gnus-diary.el (gnus-diary-check-message):
11842         * message.el (message-insert-formatted-citation-line):
11843         * nnbabyl.el (top-level):
11844         * nndiary.el (nndiary-schedule):
11845         Fix typos in condition-case handlers.
11846
11847 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11848
11849         * gnus-art.el (gnus-article-edit-part): Work for the buffer
11850         configuration that provides the sole article window in a frame;
11851         position point correctly after deleting a part.
11852
11853 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
11854
11855         * spam.el (spam-unregister-on-reregister): Add boolean variable.
11856         (spam-resolve-registrations-routine): Use it to unregister articles
11857         that change status.
11858
11859 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11860
11861         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
11862         with XEmacs.
11863         (parse-time-string-chars): Use it.
11864
11865 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
11866
11867         * imap.el (imap-interactive-login): Better messages.
11868         (imap-open): Fix bug with renamed buffer on reconnect.
11869         (imap-authenticate): Add buffer-local imap-last-authenticator variable
11870         for easier debugging and cleaner code.  On successful (guessed based on
11871         server capabilities) secondary authentication, set imap-state
11872         correctly.
11873         (imap-last-authenticator): Define imap-last-authenticator as a variable
11874         to avoid warnings.
11875
11876 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11877
11878         * nnrss.el (nnrss-request-article): Remove binding of
11879         default-enable-multibyte-characters that has gotten needless by
11880         the 2007-07-13 change in rfc2047-encode-message-header.
11881
11882         * mml.el (mml-insert-multipart): Error on the message header.
11883         (mml-insert-part): Error on the message header; position point at
11884         the end of a MIME tag.
11885
11886 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11887
11888         * time-date.el (autoload): Expand define-obsolete-function-alias into
11889         defalias and make-obsolete for old Emacsen that Gnus supports.
11890         (with-no-warnings): Define it for old Emacsen.
11891         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
11892         is available.
11893         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
11894         float-time is available; suppress compile warning for time-to-seconds.
11895
11896         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
11897         (gnus-float-time): Alias to float-time if it exists.
11898
11899         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
11900         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
11901         float-time is available; suppress compile warning for time-to-seconds.
11902
11903         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
11904         XEmacs.
11905
11906 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
11907
11908         * imap.el (imap-message-map): Docstring fix.
11909
11910 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11911
11912         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
11913         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
11914         Add the optional argument `encoding' that overrides the default.
11915
11916         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
11917         mm-encode-buffer.
11918
11919 2009-09-04  Glenn Morris  <rgm@gnu.org>
11920
11921         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
11922         mm-disable-multibyte, rather than default-enable-multibyte-characters.
11923         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
11924         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
11925         * mm-util.el (mm-with-unibyte-current-buffer)
11926         (mm-find-buffer-file-coding-system):
11927         * yenc.el (yenc-decode-region): Use default-value rather than
11928         default-enable-multibyte-characters.
11929
11930 2009-09-03  Glenn Morris  <rgm@gnu.org>
11931
11932         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
11933         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
11934         than default-enable-multibyte-characters.
11935
11936 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
11937
11938         * gnus-art.el (gnus-article-read-summary-keys):
11939         Fix gnus-buffer-configuration's value temporarily used.
11940
11941 2009-09-02  Glenn Morris  <rgm@gnu.org>
11942
11943         * gnus-util.el (gnus-float-time): New function.
11944         * gnus-delay.el (gnus-delay-article):
11945         * gnus-sum.el (gnus-thread-latest-date):
11946         * gnus-util.el (gnus-user-date): Use gnus-float-time.
11947         * nnspool.el (nnspool-request-newgroups):
11948         Use gnus-float-time rather than time-to-seconds.
11949         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
11950
11951         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
11952         (gnus-header-subject-face, gnus-header-newsgroups-face)
11953         (gnus-header-name-face, gnus-header-content-face):
11954         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
11955         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
11956         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
11957         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
11958         (gnus-cite-face-11):
11959         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
11960         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
11961         (gnus-server-closed-face, gnus-server-denied-face)
11962         (gnus-server-offline-face):
11963         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
11964         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
11965         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
11966         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
11967         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
11968         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
11969         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
11970         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
11971         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
11972         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
11973         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
11974         (gnus-summary-selected-face, gnus-summary-cancelled-face)
11975         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
11976         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
11977         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
11978         (gnus-summary-high-undownloaded-face)
11979         (gnus-summary-low-undownloaded-face)
11980         (gnus-summary-normal-undownloaded-face)
11981         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
11982         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
11983         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
11984         (gnus-splash-face):
11985         * message.el (message-header-to-face, message-header-cc-face)
11986         (message-header-subject-face, message-header-newsgroups-face)
11987         (message-header-other-face, message-header-name-face)
11988         (message-header-xheader-face, message-separator-face)
11989         (message-cited-text-face, message-mml-face):
11990         * sieve-mode.el (sieve-control-commands-face)
11991         (sieve-action-commands-face, sieve-test-commands-face)
11992         (sieve-tagged-arguments-face):
11993         * spam.el (spam-face):
11994         Mark face aliases with "-face" in the name as obsolete.
11995
11996 2009-09-01  Glenn Morris  <rgm@gnu.org>
11997
11998         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
11999         than goto-line.
12000
12001 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12002
12003         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
12004         Don't move point if the command is invoked inside the message header.
12005
12006 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12007
12008         * imap.el (imap-send-command): Simplify.
12009         (imap-wait-for-tag): point-max -> buffer-size.
12010
12011 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
12012
12013         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
12014         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
12015         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
12016         * nnir.el (nnir-swish-e-index-file):
12017         * gnus-sum.el (gnus-summary-delete-marked-as-read)
12018         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
12019         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
12020         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
12021         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
12022         (gnus-treat-display-xface): Add Emacs version of obsolescence.
12023
12024 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12025
12026         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
12027         Don't save excursion.
12028
12029 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12030
12031         * nnheader.el (nnheader-find-file-noselect):
12032         * mm-util.el (mm-insert-file-contents):
12033         Use (default-value 'major-mode) instead of default-major-mode.
12034
12035 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
12036
12037         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
12038
12039 2009-08-26  Glenn Morris  <rgm@gnu.org>
12040
12041         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
12042         than placing in files.el.
12043
12044 2009-08-25  Glenn Morris  <rgm@gnu.org>
12045
12046         * nnir.el (top-level): Don't require cl at run-time.
12047         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
12048         Replace cl-function substitute with gnus-replace-in-string.
12049         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
12050         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
12051         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
12052         simplified expansions.
12053
12054 2009-08-25  Kevin Ryde  <user42@zip.com.au>
12055
12056         * dig.el (dig): Add autoload cookie.
12057
12058 2009-08-22  Glenn Morris  <rgm@gnu.org>
12059
12060         * gnus-art.el (gnus-button-patch): Use forward-line rather than
12061         goto-line.
12062
12063 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
12064
12065         * parse-time.el (parse-time-string-chars): Save match data.
12066
12067 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
12068
12069         * parse-time.el (parse-time-string-chars): Compute using character
12070         classes, to handle non-ascii characters (Bug#3190).
12071
12072 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12073
12074         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
12075
12076         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
12077         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
12078         (gnus-mm-display-part, gnus-mime-display-single)
12079         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
12080         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
12081
12082         * gnus-sum.el
12083         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
12084         (gnus-summary-move-article): Add expirable mark to articles copied or
12085         moved to group that has auto-expire turned on if the option is non-nil.
12086
12087 2009-07-24  Glenn Morris  <rgm@gnu.org>
12088
12089         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
12090         Fix typo.  (Bug#3903)
12091
12092 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12093
12094         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
12095         gnus-article-read-summary-keys rather than gnus-summary-edit-article
12096         that should not be used for draft articles.
12097         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
12098         that has no concern in minor mode keys.
12099         (gnus-article-summary-command, gnus-article-summary-command-nosave):
12100         Abolish.
12101
12102 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12103
12104         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
12105         article without making inquiry to a user for unknown encoding.
12106
12107         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
12108         (nnmaildir--scan): Assume i-node and device number that file-attributes
12109         returns might be cons-cell.
12110
12111         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
12112
12113         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
12114
12115 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
12116
12117         * auth-source.el: Remove docs now in auth.texi.  Don't use
12118         `gnus-message' for logging.  Add new variables `auth-source-debug' and
12119         `auth-source-hide-passwords' and use them.
12120
12121 2009-07-15  Glenn Morris  <rgm@gnu.org>
12122
12123         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
12124
12125 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12126
12127         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
12128         excessive whitespace from the default values of title and description.
12129
12130 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12131
12132         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
12133         mail-fetch-field to fetch Content-Description header in order to
12134         exclude newlines.
12135
12136 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
12137
12138         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
12139         format used by GnuPG 2.0.11.
12140
12141 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12142
12143         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
12144         to deleted part.
12145
12146 2009-05-30  David Engster  <dengste@eml.cc>
12147
12148         * nnmairix.el: Remove old documentation in the commentary block.
12149         (nnmairix-request-group): Do not update active file for nnml back ends.
12150         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
12151         end so that overview files are ignored.
12152         (nnmairix-update-groups): Make updating the groups more robust by using
12153         marks.
12154         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
12155         with dollar characters in message-id.
12156
12157 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
12158
12159         * spam.el: Use dns-query instead of query-dns.  Was renamed on
12160         2008-12-25 in dns.el.
12161
12162 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12163
12164         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
12165         could happen if the text is only composed of spaces and/or tabs.
12166
12167 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
12168
12169         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
12170         when sending a queued message to avoid extra mml tags.
12171
12172 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12173
12174         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
12175
12176 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12177
12178         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
12179         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
12180         rmail-toggle-header for XEmacs;
12181         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
12182
12183 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12184
12185         * gnus-dired.el: Remove autoload for gnus-setup-message.
12186         (gnus-dired-attach): Fake this-command value to prevent Gnus from
12187         displaying Gnus logo; always use compose-mail.
12188
12189 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12190
12191         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
12192
12193 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12194
12195         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
12196         (gnus-nocem-issuers): List currently active issuers; fix custom type.
12197         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
12198         available.
12199         (gnus-nocem-epg-verify): New function.
12200
12201 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
12202
12203         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
12204
12205 2009-02-15  Glenn Morris  <rgm@gnu.org>
12206
12207         * gnus-util.el (rmail-insert-rmail-file-header)
12208         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
12209         autoloads.
12210         (rmail-default-rmail-file): Remove unnecessary declaration.
12211         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
12212
12213 2009-02-14  Glenn Morris  <rgm@gnu.org>
12214
12215         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
12216         variable (only used in gnus-util, which declares it anyway).
12217         (rmail-output-to-rmail-file): Remove autoload of deleted function,
12218         which was only needed by gnus-art (changed to not use it any more).
12219         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
12220         only used in gnus-util, which autoloads it itself.
12221         (rmail-update-summary): Fix autoload.
12222
12223         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
12224         rather than rmail-output-to-rmail-file.
12225
12226 2009-02-07  Glenn Morris  <rgm@gnu.org>
12227
12228         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
12229         autoload of function that no longer exists.
12230         (rmail-toggle-header): Declare.
12231         (message-forward-rmail-make-body): Handle mbox Rmail.
12232
12233 2009-01-31  Glenn Morris  <rgm@gnu.org>
12234
12235         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
12236         2009-01-09 change.
12237
12238 2009-01-31  Dave Love  <fx@gnu.org>
12239
12240         * imap.el (imap-fetch-safe): Bind debug-on-error.
12241         (imap-debug): Add imap-fetch-safe.
12242
12243 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
12244
12245         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
12246         (auth-source-forget-all-cached): New convenience function.
12247         (auth-source-user-or-password): Accept list of modes or a single mode.
12248
12249         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
12250         auth-source modes.
12251
12252         * netrc.el (netrc-machine-user-or-password): Use list of
12253         auth-source modes.
12254
12255         * nnimap.el (nnimap-open-connection): Use list of
12256         auth-source modes.
12257
12258         * nntp.el (nntp-send-authinfo): Use list of
12259         auth-source modes.
12260
12261 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
12262
12263         * auth-source.el: Update docs to reflect epa-file-enable is to be used
12264         now.
12265
12266 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12267
12268         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
12269         coding system in XEmacs; add a workaround for XEmacs.
12270
12271         * lpath.el: Fbind coding-system-aliasee.
12272
12273 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12274
12275         * mm-util.el (mm-coding-system-priorities): Protect against nil value
12276         of current-language-environment.
12277
12278 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
12279
12280         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
12281         available at runtime.
12282
12283 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12284
12285         * gnus-art.el (article-date-ut): Fix end point of narrowing.
12286
12287 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
12288
12289         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
12290         the greatest positive fixnum value doesn't work under an XEmacs with
12291         bignum support; use the most-positive-fixnum constant instead,
12292         available since Emacs 21.1 with cl and XEmacs 21.1.
12293
12294 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12295
12296         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
12297         XEmacs gets not to work.
12298
12299 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12300
12301         * mm-util.el (mm-coding-system-priorities): Allow the value like
12302         "Japanese (UTF-8)" of current-language-environment.
12303
12304 2009-01-09  Glenn Morris  <rgm@gnu.org>
12305
12306         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
12307         with last-command-event.
12308
12309 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
12310
12311         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
12312         in the doc string.
12313
12314         * message.el (message-fix-before-sending): Amend comment.
12315
12316 2009-01-08  Dave Love  <fx@gnu.org>
12317
12318         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
12319
12320 2009-01-07  David Engster  <dengste@eml.cc>
12321
12322         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
12323         simplified server definitions by converting it via
12324         gnus-server-to-method.
12325
12326 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12327
12328         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
12329         parameter's operands.
12330
12331 2009-01-06  David Engster  <dengste@eml.cc>
12332
12333         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
12334         primary select method (for gnus-group-mark-article-as-read).
12335
12336 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
12337
12338         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
12339         `(gnus)Face', not `(gnus)X-Face'.
12340
12341 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
12342
12343         * mm-util.el (mm-ucs-to-char): New function.
12344
12345         * mm-url.el (mm-url-decode-entities): Use it.
12346
12347         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
12348         unicode-to-char.
12349
12350 2009-01-05  Dave Love  <fx@gnu.org>
12351
12352         * time-date.el: Require cl for `declare'.
12353
12354 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
12355
12356         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
12357         Dave Love.
12358
12359 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
12360
12361         * message.el (message-fix-before-sending): Add `eight-bit' to
12362         illegible-text check.
12363
12364 2009-01-03  Michael Olson  <mwolson@gnu.org>
12365
12366         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
12367         `headers' is nil.  This can occur if the IMAP server does not have
12368         permissions to read messages from a folder, but can write new messages
12369         to the folder.
12370         (nnimap-request-article-part): Do not insert `data' if it is nil.
12371
12372         * imap.el (imap-parse-fetch): Courier can insert spurious blank
12373         characters which will confuse `read', so skip past them.
12374
12375 2009-01-01  Dave Love  <fx@gnu.org>
12376
12377         * imap.el (imap-string-to-integer): Fix typo.
12378         (imap-fetch-safe): New function.
12379         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
12380
12381         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
12382
12383         * imap.el (imap-process-connection-type, imap-debug, imap-open):
12384         (imap-parse-greeting): Fix doc strings.
12385         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
12386         (imap-parse-flag-list): Make messages unique.
12387         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
12388
12389         * nnimap.el: Fix author email.
12390         (nnimap-split-rule): Add FIXME comment.
12391         (nnimap-debug): Fix doc string.
12392
12393 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
12394
12395         * dns.el (dns-set-servers): Check "Address".  Fix typo.
12396
12397 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
12398
12399         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
12400         nslookup if resolv.conf isn't available.
12401         (dns-query): Rename from query-dns.
12402         (dns-query-cached): Rename from query-dns-cached.
12403
12404 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12405
12406         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
12407         overlay-arrow-position and overlay-arrow-string buffer-local; no need
12408         to check if those variables exist (first appeared in Emacs 18.50).
12409
12410 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12411
12412         * mm-util.el (mm-line-number-at-pos): New function.
12413
12414         * spam-report.el (spam-report-process-queue): Use it.
12415
12416 2008-12-24  David Engster  <dengste@eml.cc>
12417
12418         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
12419         parameters that haven't existed as variables as buffer-local variables.
12420
12421 2008-12-23  Dave Love  <fx@gnu.org>
12422
12423         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
12424         cadar.
12425
12426         * sieve-manage.el (sieve-manage-starttls-p): Rename from
12427         imap-starttls-p.
12428         (sieve-manage-starttls-open): Rename from imap-starttls-open.
12429
12430 2008-12-22  Dave Love  <fx@gnu.org>
12431
12432         * imap.el: Fix author email.  Doc fixes.
12433         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
12434         reply.
12435
12436 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
12437
12438         * spam-report.el (spam-report-gmane-max-requests): New constant.
12439         (spam-report-gmane-wait): New variable.
12440         (spam-report-gmane-ham, spam-report-gmane-spam)
12441         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
12442         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
12443         the server.
12444
12445         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
12446         Add explanations.
12447
12448         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
12449         nnheader-accept-process-output and nnheader-read-timeout if available.
12450         (pop3-movemail): Use it.
12451
12452         * message.el (message-check-news-body-syntax): Fix signature check if
12453         there's an attachment.
12454
12455 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12456
12457         * mm-util.el: Add comments to the mm- emulating functions.
12458
12459 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
12460
12461         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
12462         Reported by Stephen Berman <stephen.berman@gmx.net>.
12463
12464 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12465
12466         * mm-util.el (mm-substring-no-properties): New function.
12467         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
12468         (mm-special-display-p): Enable those lambda forms to be byte compiled.
12469         (mm-string-to-multibyte): Doc fix.
12470
12471         * mml.el (mml-attach-file): Use mm-substring-no-properties.
12472
12473 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
12474
12475         * mml.el (mml-attach-file): Strip text properties from file name.
12476         (Bug#1574)
12477
12478 2008-12-16  Glenn Morris  <rgm@gnu.org>
12479
12480         * mm-util.el (mm-charset-override-alist): Declare for compiler.
12481
12482 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12483
12484         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
12485         knows since the charset specified might be a bogus alias that
12486         mm-charset-synonym-alist provides.
12487
12488 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
12489
12490         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
12491         "ISO_8859-1".
12492
12493         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
12494
12495 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12496
12497         * mm-util.el (mm-charset-eval-alist):
12498         Define it before mm-charset-to-coding-system.
12499         (mm-charset-to-coding-system): Add optional argument `silent';
12500         define it before mm-charset-override-alist.
12501         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
12502         default value if it can be used in Emacs currently running;
12503         silence mm-charset-to-coding-system.
12504
12505 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12506
12507         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
12508         `allow-override' which says whether to use `mm-charset-override-alist'.
12509         (rfc2047-decode-encoded-words): Use it.
12510
12511         * mm-util.el (mm-charset-override-alist): Fix custom type;
12512         add `(gb2312 . gbk)' to choices.
12513
12514 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12515
12516         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
12517         fast.
12518
12519         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
12520
12521         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
12522
12523 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
12524
12525         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
12526         on links.
12527
12528         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
12529
12530 2008-12-03  Lute Kamstra  <lute@gnu.org>
12531
12532         * sha1.el: Remove leading * from docstrings of defcustoms,
12533         deffaces, defconsts and defuns.
12534
12535 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12536
12537         * message.el (message-idna-to-ascii-rhs-1): Protect against local
12538         users' addresses that don't have domain parts.
12539         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
12540         rather than message-narrow-to-head since there will be the message
12541         header separator.
12542
12543 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12544
12545         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
12546         since the result is inserted in a unibyte buffer anyway.
12547         (nnimap-demule-use-string-to-multibyte): Remove.
12548         (nnimap-demule): Alias it to mm-string-to-multibyte.
12549
12550 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
12551
12552         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
12553         variable for debugging bug#464 and bug#1174.
12554         (nnimap-demule): Use it.
12555
12556 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
12557
12558         * gnus-score.el (gnus-score-find-trace): Handle default score in total
12559         score calculation correctly.
12560
12561 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12562
12563         * message.el (message-send-mail): Just set the buffer to unibyte
12564         rather than use mm-with-unibyte-current-buffer which does a lot more.
12565         (message-send-mail-partially): Don't bother with
12566         mm-with-unibyte-current-buffer since it's already been made unibyte by
12567         message-send-mail.
12568
12569 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
12570
12571         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
12572
12573 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
12574
12575         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
12576
12577 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12578
12579         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
12580         require itself and to remove `with-no-warnings'.
12581
12582 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
12583
12584         * starttls.el (starttls-any-program-available): Get the name of the
12585         available TLS layer program.
12586         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
12587         well as the host name in the "opening" message.
12588
12589         * auth-source.el (auth-source-cache, auth-source-do-cache)
12590         (auth-source-user-or-password): Cache passwords and logins by default,
12591         allow override with `auth-source-do-cache'.
12592         (auth-source-forget-user-or-password): Allow users to remove cache
12593         entries if needed.
12594
12595 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
12596
12597         * md4.el (md4-buffer): Fix typo in docstring.
12598         (md4, md4-64): Doc fixes.
12599         (md4-pack-int32): Reflow docstring.
12600
12601 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
12602
12603         * ietf-drums.el (ietf-drums-remove-comments): Localize second
12604         condition-case to only the forward-sexp call.
12605
12606 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
12607
12608         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
12609         quotes contained.  Make it more robust regardless by an extra
12610         condition-case wrapper.
12611
12612 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12613
12614         * lpath.el: No need to fbind codepage-setup for Emacs 23.
12615
12616 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12617
12618         * nnml.el (nnml-request-expire-articles): Check if the function set to
12619         `nnmail-expiry-target' returns the symbol `delete'.
12620
12621         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
12622
12623         * nnmail.el (nnmail-expiry-target): Fix custom type.
12624
12625 2008-10-02  Glenn Morris  <rgm@gnu.org>
12626
12627         * mm-util.el (mm-codepage-setup): Tweak codepage error.
12628         Silence compiler warning.
12629
12630 2008-10-01  Magnus Henoch  <mange@freemail.hu>
12631
12632         * tls.el (open-tls-stream): Show the actual command being
12633         executed, instead of the format string.
12634
12635 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12636
12637         * lpath.el: Fbind codepage-setup for Emacs 23.
12638
12639 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
12640
12641         * mml.el (mml-menu): Don't assume mml2015 is bound.
12642
12643 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12644
12645         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
12646         exists.
12647
12648 2008-09-27  Glenn Morris  <rgm@gnu.org>
12649
12650         * gnus-util.el (mail-header-remove-comments): Autoload it.
12651
12652 2008-09-27  Andreas Schwab  <schwab@suse.de>
12653
12654         * gnus-util.el (gnus-split-references): Strip comments.
12655         (gnus-parent-id): Likewise.
12656
12657 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
12658
12659         * message.el (message-confirm-send): Fix version.
12660
12661 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12662
12663         * message.el (message-idna-to-ascii-rhs-1): Use
12664         mail-extract-address-components rather than mail-header-parse-addresses
12665         that is an alias by default to ietf-drums-parse-addresses that does not
12666         support non-ASCII names in headers' contents.
12667
12668 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
12669
12670         * message.el (message-confirm-send): Fix variable documentation to
12671         avoid the "y/n" wording.
12672
12673 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
12674
12675         * message.el (message-set-auto-save-file-name): Save to a different
12676         filename so multiple messages (especially drafts) can be recovered.
12677
12678 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
12679
12680         * message.el (message-confirm-send): Add appropriate version.
12681
12682 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
12683
12684         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
12685         defvar.
12686
12687 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
12688
12689         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
12690         (mm-pkcs7-enveloped-magic): Ditto.
12691
12692 2008-09-17  Simon Josefsson  <simon@josefsson.org>
12693
12694         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
12695         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
12696
12697 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
12698
12699         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
12700         default, it's better.
12701
12702 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
12703
12704         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
12705         summary line gnus-number property and ignore them (with a warning
12706         message).
12707
12708 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12709
12710         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
12711         macro caddr in the interactive form since it won't be expanded.
12712
12713 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12714
12715         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
12716         `charset'; fix name of function called recursively.
12717         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
12718
12719 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12720
12721         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
12722         (gnus-mime-set-charset-parameters): New function.
12723         (gnus-mime-view-part-as-charset): Use it to correctly display part
12724         specifying wrong charset.
12725
12726 2008-09-08  David Engster  <dengste@eml.cc>
12727
12728         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
12729         in completing-read for back end server.
12730
12731 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
12732
12733         * message.el (message-confirm-send): New variable to confirm sending a
12734         message.
12735         (message-send): Use it.
12736
12737 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
12738
12739         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
12740
12741 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12742
12743         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
12744
12745 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
12746
12747         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
12748         prevent tracking too many groups.
12749         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
12750         Use it.
12751
12752 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
12753
12754         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
12755         moving point to the bottom of the window in order to avoid recentering.
12756
12757 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
12758
12759         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
12760
12761         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
12762         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
12763         (gnus-article-beginning-of-window): Fix calculation.
12764
12765 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12766
12767         * gnus-msg.el (gnus-summary-supersede-article)
12768         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
12769         value of gnus-newsgroup-charset to decode non-MIME encoded text in
12770         message header.
12771
12772 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
12773
12774         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
12775         pending output coming after the status change.
12776
12777 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
12778
12779         * message.el:
12780         * gnus-start.el:
12781         * gnus-registry.el: Remove VMS support.
12782
12783 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12784
12785         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
12786         macro.
12787         (rfc2104-hash): Use it.
12788
12789 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
12790
12791         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
12792         (gnus-summary-sort-by-most-recent-date): New commands.
12793         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
12794         and menu entries.
12795
12796 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12797
12798         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
12799         don't redisplay article for raw contents; remove plural articles stuff.
12800
12801         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
12802         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
12803         on gnus-summary-save-article; display results properly.
12804
12805 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12806
12807         * lpath.el: No need to fbind ns-focus-frame.
12808
12809 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12810
12811         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
12812
12813 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12814
12815         * gnus-art.el (gnus-summary-save-in-pipe):
12816         Consider gnus-save-all-headers.
12817
12818 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
12819
12820         * gnus-util.el (ns-focus-frame): Remove declaration.
12821         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
12822         like x.
12823
12824 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
12825
12826         * rfc2104.el (rfc2104-zero): Delete defconst.
12827         (rfc2104-hex-alist): Likewise.
12828         (rfc2104-hex-to-int): Delete func.
12829         (rfc2104-hexstring-to-bitstring): Likewise.
12830         (rfc2104-nybbles): New defconst.
12831         (rfc2104-hash): Rewrite for speed.
12832
12833 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12834
12835         * tls.el (open-tls-stream): Make it work with the 2nd argument
12836         BUFFER that is a string but does not exist as a buffer object, as
12837         mentioned in the doc-string.
12838
12839 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12840
12841         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
12842         SXEmacs.
12843
12844 2008-07-16  Glenn Morris  <rgm@gnu.org>
12845
12846         * gnus-util.el (ns-focus-frame): Declare for compiler.
12847
12848 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12849
12850         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
12851         set as a group parameter.
12852         (gnus-summary-save-in-pipe): Work when it is called independently.
12853         (gnus-summary-pipe-to-muttprint): Don't modify
12854         gnus-summary-pipe-output-default-command.
12855
12856 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
12857
12858         * message.el (message-send-mail-with-sendmail):
12859         Display the error message.
12860
12861 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12862
12863         * gnus-art.el (gnus-default-article-saver):
12864         Add gnus-summary-save-in-pipe to choices.
12865         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
12866         gnus-summary-pipe-output-default-command as the default command.
12867         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
12868         instead of gnus-last-shell-command.
12869
12870         * gnus-sum.el (gnus-summary-pipe-output-default-command):
12871         New user option.
12872         (gnus-summary-muttprint-program): Mention the value will be changed.
12873         (gnus-summary-save-article): Force showing of all headers.
12874         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
12875
12876 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
12877
12878         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
12879
12880 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
12881
12882         * nnimap.el (nnimap-id):
12883         * sieve-manage.el (sieve-manage-open): Doc fixes.
12884
12885 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
12886
12887         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
12888         if available.
12889
12890 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12891
12892         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
12893
12894         * nnkiboze.el (nnkiboze-generate-group):
12895         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
12896
12897         * nnmairix.el: Require CL.
12898
12899 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12900
12901         * dgnushack.el: Autoload get-display-table and put-display-table for
12902         XEmacs 21.5.
12903
12904         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
12905         21.4 and SXEmacs.
12906
12907 2008-06-15  David Engster  <dengste@eml.cc>
12908
12909         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
12910
12911 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
12912
12913         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
12914         New macros that expand to an `aset'/`aref' call under Emacs, and to a
12915         runtime choice under XEmacs.
12916
12917         * gnus-sum.el (gnus-summary-set-display-table):
12918         Use `gnus-put-display-table', `gnus-get-display-table',
12919         `gnus-set-display-table' for the display table, instead of `aset'.
12920
12921         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
12922         Use `gnus-put-display-table', `gnus-get-display-table',
12923         `gnus-set-display-table' for the display table.
12924
12925 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
12926
12927         * nnmairix.el: Add autoloads.
12928
12929 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
12930
12931         * nnmairix.el (nnmairix-delete-recreate-group)
12932         (nnmairix-update-and-clear-marks): Fix error messages.
12933
12934 2008-06-14  David Engster  <dengste@eml.cc>
12935
12936         * nnmairix.el: Upgrade to version 0.6.
12937         (nnmairix-group-toggle-propmarks-this-group)
12938         (nnmairix-group-toggle-readmarks-this-group)
12939         (nnmairix-group-delete-recreate-this-group)
12940         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
12941         (nnmairix-remove-tick-mark-original-article): New commands.
12942         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
12943         (nnmairix-propagate-marks-to-nnmairix-groups)
12944         (nnmairix-only-use-registry, nnmairix-allowfast-default)
12945         (nnmairix-marks-cache, nnmairix-version-output): New variables.
12946         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
12947         functions needed for marks propagation and manipulation of read marks.
12948         (nnmairix-update-groups): New function.
12949         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
12950         (nnmairix-determine-original-group-from-registry)
12951         (nnmairix-determine-original-group-from-path)
12952         (nnmairix-get-group-from-file-path, nnmairix-map-range)
12953         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
12954         New helper functions.
12955         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
12956         keystrokes for new commands.
12957         (nnmairix-delete-and-create-on-change): Doc string cleanup.
12958         (nnmairix-request-group): Check allow-fast group parameter.
12959         (nnmairix-request-create-group): Set allow-fast group parameter if
12960         nnmairix-allowfast-default is set.
12961         (nnmairix-close-group): Propagate marks upon closing if needed.
12962         (nnmairix-group-toggle-threads-this-group): Use new.
12963         nnmairix-group-toggle-parameter helper function.
12964         (nnmairix-search): Better check for empty search result.
12965         (nnmairix-goto-original-article): Use new helper functions for
12966         determining original article.
12967         (nnmairix-show-original-article): Make sure message-id is in brackets.
12968         (nnmairix-call-mairix-binary): Change variable name.
12969         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
12970         helper function.
12971         (nnmairix-widget-toggle-activate): Fix doc string.
12972
12973 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
12974
12975         * nnir.el: Require edmacro when compiling with XEmacs.
12976         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
12977         available in Emacs 21.
12978
12979 2008-06-11  Glenn Morris  <rgm@gnu.org>
12980
12981         * gnus-util.el (x-focus-frame):
12982         * gnus.el (image-size):
12983         * mm-decode.el (image-size): Declare.
12984
12985         * gnus-picon.el (declare-function): Add compat definition.
12986         (image-size): Declare.
12987
12988         * gnus-group.el (tool-bar-map):
12989         * gnus-sum.el (tool-bar-map): Define for compiler.
12990
12991         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
12992
12993         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
12994
12995         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
12996         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
12997         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
12998         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
12999         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
13000         * sieve-manage.el, spam-report.el, spam.el:
13001         Remove unnecessary eval-and-compile of autoloads.
13002
13003 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
13004
13005         * auth-source.el: Precise Tramp doc.
13006
13007 2008-06-07  Glenn Morris  <rgm@gnu.org>
13008
13009         * nnmairix.el: Remove unnecessary eval-when-compile.
13010
13011 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13012
13013         * lpath.el: Fbind propertize for XEmacs 21.4.
13014
13015 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
13016
13017         * nnir.el: Move here from ../contrib.
13018
13019 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13020
13021         * gnus-util.el (gnus-read-shell-command): New function.
13022         * mm-decode.el (mm-pipe-part):
13023         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
13024
13025 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13026
13027         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
13028
13029 2008-06-03  Glenn Morris  <rgm@gnu.org>
13030
13031         * pop3.el (nnheader-accept-process-output): Autoload it.
13032
13033 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13034
13035         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
13036         are not 2-digit hexadecimal characters that follow `%'s.
13037
13038 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
13039
13040         * message.el (message-bogus-recipient-p): Fix type in doc string.
13041         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
13042         (message-bogus-addresses): Rename from message-bogus-address-regexp.
13043         Improve custom options.
13044         (message-bogus-recipient-p): Adjust accordingly.
13045
13046 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
13047
13048         * parse-time.el (parse-time-months, parse-time-weekdays): Add
13049         long-form month and day names.
13050
13051 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13052
13053         * dgnushack.el: Autoload debug, eudc-expand-inline and
13054         pgg-snarf-keys-region for XEmacs.
13055
13056         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
13057
13058         * nnmairix.el: Require edmacro when compiling with XEmacs.
13059
13060 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
13061
13062         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
13063         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
13064
13065 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
13066
13067         * auth-source.el: Add more docs.
13068
13069         * netrc.el (netrc-machine): Always match if the port is not given.
13070
13071 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13072
13073         * nnheader.el (nnheader-read-timeout): Change the default timeout from
13074         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
13075         retrieval faster in some cases, but might make CPU usage larger.
13076         If this has any bad side effects, we might revert this change.
13077
13078         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
13079         seems to make mail retrieval much, much faster.
13080         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
13081         unconditionally.
13082
13083         * gnus-draft.el (gnus-group-send-queue):
13084         Bind message-send-mail-partially-limit to nil to avoid being prompted.
13085
13086 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
13087
13088         * mml.el (mml-attach-buffer): Prompt for `disposition'.
13089
13090         * message.el (message-bogus-address-regexp): Fix and improve custom
13091         type.
13092         (message-setup-hook): Add message-check-recipients as custom option.
13093
13094 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
13095
13096         * message.el (message-cite-function): Remove bogus autoload which crept
13097         in during merge from v5-10.
13098
13099 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
13100
13101         * nnimap.el (nnimap-open-connection): Fix login/password bug.
13102
13103         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
13104
13105         * auth-source.el: Preliminary Tramp docs.
13106         (auth-sources): Change the default auth-sources to use
13107         EPA .gpg files.
13108
13109 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
13110
13111         * nntp.el: Autoload `auth-source-user-or-password'.
13112         (nntp-send-authinfo): Use it.
13113
13114         * nnimap.el: Autoload `auth-source-user-or-password'.
13115         (nnimap-open-connection): Use it.
13116
13117         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
13118         for the gnus-message function.
13119         (auth-source-user-or-password): Use it.
13120
13121 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13122
13123         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
13124         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
13125         (rfc2104-hash): Use it.
13126
13127 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
13128
13129         * gnus-art.el (gnus-article-toggle-truncate-lines):
13130         Don't use `iff' in docstring.
13131
13132 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
13133
13134         * gnus-registry.el: Adjusted copyright dates and added a keyword.
13135
13136         * gnus-util.el (gnus-extract-address-component-name)
13137         (gnus-extract-address-component-email): Convenience functions around
13138         `gnus-extract-address-components'.
13139
13140         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
13141         Use `gnus-extract-address-component-email' to fix bug of comparing full
13142         sender name to `user-mail-address'.
13143
13144 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
13145
13146         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
13147         catch/throw to optimize.
13148         (gnus-registry-find-keywords): Just use member to find a keyword.
13149
13150 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13151
13152         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
13153         is current before calling gnus-server-prepare.
13154         (gnus-server-setup-buffer, gnus-server-update-server)
13155         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
13156
13157 2008-05-04  Juri Linkov  <juri@jurta.org>
13158
13159         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
13160         (mailcap-file-default-commands): Use mailcap-replace-in-string
13161         instead of replace-regexp-in-string, and mailcap-delete-duplicates
13162         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
13163
13164 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
13165
13166         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
13167
13168 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
13169
13170         * gnus.el: Bump version to 0.11.
13171
13172 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
13173
13174         * gnus.el: No Gnus v0.10 is released.
13175
13176 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13177
13178         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
13179         hooks.
13180         (gnus-update-read-articles): Speed up non-marks-using users.
13181         (gnus-use-marks): Define gnus-use-marks.
13182         (gnus-propagate-marks): Rename variable to something more sensible.
13183
13184 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
13185
13186         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
13187         (gmm-image-load-path-for-library): Fix typos in docstrings.
13188         (gmm-message): Reflow docstring.
13189
13190 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
13191
13192         * mail-source.el (mail-source-set-1, mail-source-bind):
13193         Move auth-source code out of the macro to clean it up and fix bugs.
13194
13195 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
13196
13197         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
13198         by sender if it's equal to user-mail-address, it's likely to be
13199         useless.
13200
13201         * mail-source.el (mail-source-bind): Don't use user or password if they
13202         are not bound.  Unintern them if they are nil.  Don't use server unless
13203         it's bound, and default it to empty string otherwise.
13204
13205 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
13206
13207         * mail-source.el: Load auth-source.el.
13208         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
13209         get user name or password, if auth-sources is set up.
13210
13211         * gnus-registry.el (gnus-registry-split-strategy): New variable for
13212         strategy of splitting with parent.
13213         (gnus-registry-split-fancy-with-parent)
13214         (gnus-registry-post-process-groups): Use it and fix prior
13215         bug (returning a list as the split result).
13216
13217         * auth-source.el (auth-sources): Remove server parameter.
13218         (auth-source-pick, auth-source-user-or-password)
13219         (auth-source-user-or-password-imap)
13220         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13221         (auth-source-user-or-password-sftp)
13222         (auth-source-user-or-password-smtp): Remove server parameter.
13223
13224 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
13225
13226         * smime.el (smime-sign-region, smime-encrypt-region)
13227         (smime-decrypt-region):
13228         Remove redundant calls to `generate-new-buffer-name'.
13229
13230 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
13231
13232         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
13233         Don't use QP for message/rfc822.
13234         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
13235
13236 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13237
13238         * sieve-manage.el (sieve-string-bytes): Remove.
13239         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
13240         correct byte-length only if the process's coding-system is the same as
13241         the one used internally by Emacs to represent strings.
13242
13243 2008-04-22  Juri Linkov  <juri@jurta.org>
13244
13245         * mailcap.el (mailcap-file-default-commands): New function.
13246
13247 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
13248
13249         * message.el (message-signature-separator, message-cite-function):
13250         Change custom version.
13251
13252 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
13253
13254         * tls.el (tls-program): Add -ign_eof argument to call the openssl
13255         commands.
13256         (tls-checktrust): Ditto.
13257
13258 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
13259
13260         * mm-decode.el (mm-display-external): Make temp file read-only.
13261
13262 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
13263
13264         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
13265         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
13266         `C-c C-f d'.
13267
13268 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
13269
13270         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
13271
13272 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
13273
13274         * gnus.el: Bump version to 0.9.
13275
13276 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
13277
13278         * gnus.el: No Gnus v0.8 is released.
13279
13280 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13281
13282         * mail-source.el (mail-source-value):
13283         Prefer fboundp to functionp so it works with macros as well.
13284
13285 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13286
13287         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13288         Fix last change in case the element is not even a symbol.
13289
13290 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13291
13292         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13293         Prefer fboundp to functionp so it works with macros as well.
13294
13295 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
13296
13297         * auth-source.el: Add docs.
13298         (auth-sources): Modify format to support server.
13299         (auth-source-pick, auth-source-user-or-password)
13300         (auth-source-user-or-password-imap)
13301         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13302         (auth-source-user-or-password-sftp)
13303         (auth-source-user-or-password-smtp): Add server parameter.
13304
13305 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
13306
13307         * gnus-registry.el: Initialize the registry when gnus-registry-install
13308         is t.
13309
13310 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13311
13312         * compface.el (uncompface): Make buffer unibyte.
13313
13314 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13315
13316         * mail-source.el (mail-source-value):
13317         Prefer fboundp to functionp so it works with macros as well.
13318
13319 2008-04-05  Glenn Morris  <rgm@gnu.org>
13320
13321         * gnus-ems.el (mm-disable-multibyte): Autoload it.
13322
13323 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13324
13325         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
13326         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
13327
13328         * nnheader.el (nnheader-init-server-buffer): Change buffer's
13329         multibyteness after rather than before erasing it.
13330
13331         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
13332         mm-with-multibyte.
13333         (gnus-request-article-this-buffer): Make sure the proper decoding is
13334         used if gnus-original-article-buffer happens to be unibyte.
13335
13336         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
13337         default-enable-multibyte-characters.
13338
13339         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
13340         default-enable-multibyte-characters.
13341
13342         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
13343
13344         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
13345
13346 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13347
13348         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13349         Fix last change in case the element is not even a symbol.
13350
13351 2008-04-02  Simon Josefsson  <simon@josefsson.org>
13352
13353         * imap.el (imap-enable-exchange-bug-workaround): New variable.
13354         (imap-message-copyuid-1): Use it.
13355         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
13356         J. Williams in
13357         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
13358
13359         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
13360         imap-enable-exchange-bug-workaround.
13361         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
13362
13363 2008-04-01  Simon Josefsson  <simon@josefsson.org>
13364
13365         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
13366         a 100 byte status-checks into a 2-3MB transfer for each group.
13367         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
13368         to enable bug workaround or not.
13369         (nnimap-find-minmax-uid): Only enable workaround conditionally.
13370
13371 2008-03-31  Glenn Morris  <rgm@gnu.org>
13372
13373         * message.el (mml2015-use): Declare for compiler.
13374         (message-info): Require mml2015 when appropriate.
13375
13376 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13377
13378         * Makefile.in (EMACS_COMP): Quote directory name that might contain
13379         whitespace.
13380
13381 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13382
13383         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
13384         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
13385         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
13386         (nntp-service-to-port): New function.
13387         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
13388         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
13389         (nntp-open-netcat-stream): New function.
13390         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
13391
13392 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
13393
13394         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
13395
13396 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13397
13398         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
13399
13400 2008-03-28  Magnus Henoch  <mange@freemail.hu>
13401
13402         * dns.el (dns-write): Use set-buffer-multibyte.
13403
13404 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
13405
13406         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
13407
13408 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
13409
13410         * message.el (message-signature-separator): Change default.
13411         Improve custom type.
13412         (message-cite-function): Change default to
13413         message-cite-original-without-signature.
13414
13415         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
13416         toggle.
13417
13418         * message.el (message-check-news-body-syntax): Fix signature check.
13419         (message-setup-1): Mark buffer as unmodified _after_ running
13420         message-setup-hook and handling message-alternative-emails.
13421         (message-shorten-references): Be more strict when building list of
13422         valid references to comply with GNKSA.
13423
13424         * gnus-group.el (gnus-read-ephemeral-bug-group)
13425         (gnus-read-ephemeral-debian-bug-group)
13426         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
13427
13428         * message.el (message-info): Don't use booleanp which isn't supported
13429         in Emacs 21 and XEmacs.
13430
13431 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
13432
13433         * gnus-group.el (gnus-gmane-group-download-format): Rename from
13434         gnus-group-gmane-group-download-format.
13435         (gnus-group-read-ephemeral-gmane-group): Rename from
13436         gnus-group-read-ephemeral-gmane-group.
13437         (gnus-read-ephemeral-gmane-group-url): Rename from
13438         gnus-group-read-ephemeral-gmane-group-url.
13439         (gnus-bug-group-download-format-alist): New variable.
13440         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
13441         (gnus-read-ephemeral-emacs-bug-group): New commands.
13442
13443 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
13444
13445         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
13446         (gnus-visible-headers): Improve custom type.
13447
13448 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
13449
13450         * mml.el (mml-menu): Add workarounds for XEmacs.
13451
13452         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
13453         X-Boundary header.
13454
13455         * message.el (message-simplify-recipients): Fix previous commit.
13456
13457 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13458
13459         * mm-util.el (mm-set-buffer-multibyte): New function.
13460         * mm-decode.el (mm-copy-to-buffer): Use it.
13461
13462         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13463         Prefer fboundp to functionp so it works with macros as well.
13464
13465 2008-03-19  Glenn Morris  <rgm@gnu.org>
13466
13467         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
13468         Accidentally removed in the sync process with Emacs.
13469
13470 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
13471
13472         * message.el (message-alter-recipients-discard-bogus-full-name):
13473         New function.
13474         (message-alter-recipients-function): New variable.
13475         (message-get-reply-headers): Use it.
13476         (message-replace-header): New helper function.
13477         (message-recipients-without-full-name): New variable.
13478         (message-simplify-recipients): New command.
13479
13480         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
13481
13482         * message.el (message-info): Handle EasyPG manual.
13483
13484         * mml.el (mml-menu): Add entry for EasyPG.
13485
13486 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
13487
13488         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
13489         parameter.
13490
13491         * message.el (message-disassociate-draft): Specify drafts group name
13492         fully.
13493
13494 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
13495
13496         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
13497         Eliminate unnecessary duplicates from the match list.
13498
13499 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13500
13501         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
13502
13503         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
13504
13505         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
13506         args of `how-many' of which the XEmacs version doesn't take; declare
13507         Info-index-next as function.
13508
13509 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
13510
13511         * gnus-score.el (gnus-score-headers): Fix handling of
13512         gnus-inhibit-slow-scoring.
13513
13514         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
13515         string.
13516         (gnus-button-url-regexp): Improve handling of parenthesis.
13517         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
13518         (gnus-button-handle-info-keystrokes): Handle index entries.
13519
13520 2008-03-15  Glenn Morris  <rgm@gnu.org>
13521
13522         * parse-time.el (parse-time-string): Simplify.
13523
13524 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13525
13526         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
13527         Incoming* files.
13528
13529 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
13530
13531         * auth-source.el (auth-sources): Rename from auth-source-choices.
13532         (auth-source-pick): Use it.
13533
13534 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13535
13536         * binhex.el (binhex-decode-region-internal):
13537         * uudecode.el (uudecode-decode-region-internal):
13538         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
13539         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
13540         setting default-enable-multibyte-characters.
13541
13542 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
13543
13544         * auth-source.el (auth-source-protocols)
13545         (auth-source-protocols-customize, auth-source-choices): Add and
13546         modified variable customizations and defaults.
13547         (auth-source-pick, auth-source-user-or-password)
13548         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
13549         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13550         (auth-source-user-or-password-sftp)
13551         (auth-source-user-or-password-smtp): Use new variables and provide an
13552         interface to netrc.el.
13553
13554 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13555
13556         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
13557         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
13558         Make sure the nntp port to specify is a string.
13559
13560 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13561
13562         * nntp.el: Use with-current-buffer.
13563         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
13564         dubious mm-with-unibyte-current-buffer.
13565         (nntp-with-open-group-function): New function extracted from
13566         nntp-with-open-group macro.
13567         (nntp-with-open-group): Use the function, so it's easier to debug.
13568         Add indentation and debugging info.
13569         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
13570         Recommend the use of the netcat alternatives.
13571
13572         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
13573         Avoid mm-string-as-multibyte as well.
13574
13575         * nnweb.el (nnweb-insert-html):
13576         Remove use of nnheader-string-as-multibyte.
13577
13578         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
13579         (nnheader-string-as-multibyte): Remove.
13580
13581         * mm-view.el: Use inhibit-read-only.
13582         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
13583         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
13584         or unibyte-string.
13585
13586         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
13587         (mm-uu-yenc-extract): Use with-current-buffer.
13588
13589         * gnus-soup.el (gnus-soup-send-packet): Don't use
13590         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
13591
13592         * nnmh.el: Use with-current-buffer.
13593         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
13594         mm-string-as-multibyte on the output of mm-encode-coding-string.
13595
13596         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
13597         (nnimap-request-move-article): Use with-current-buffer.
13598
13599         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
13600         inserting the handle-buffer's text, so the implicit multibyte->unibyte
13601         conversion uses string-make-unibyte rather than string-as-unibyte.
13602
13603         * gnus-msg.el: Use with-current-buffer.
13604
13605         * message.el (message-ignored-resent-headers): Add "Delivered-To".
13606
13607 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
13608
13609         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
13610         string for caching if it is 'PIN.
13611
13612 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13613
13614         * lpath.el: Consider the case without Emacs/W3.
13615
13616 2008-03-08  Glenn Morris  <rgm@gnu.org>
13617
13618         * time-date.el (date-to-time, time-subtract, time-add)
13619         (safe-date-to-time): Doc fixes.
13620
13621 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
13622
13623         * mail-source.el (mail-source-delete-old-incoming-confirm):
13624         Change default to nil.
13625         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
13626
13627 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13628
13629         * lpath.el: Rearrange.
13630
13631         * gnus-art.el (gnus-narrow-to-page): Position point properly.
13632         (gnus-article-goto-prev-page): Work for articles having ^L's.
13633
13634         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
13635
13636         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
13637
13638 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
13639
13640         * gnus-bookmark.el: Adjust for renames in bookmark.el.
13641         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
13642         (gnus-bookmark-jump): Adjust some variable names.
13643
13644 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
13645
13646         * auth-source.el: New package.
13647         (auth-source-choices): Add customization entry point variable.
13648
13649         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
13650         bug.
13651
13652 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
13653
13654         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
13655         (gnus-registry-initialize, gnus-registry-install-p): Use it.
13656         (gnus-registry-install-shortcuts): Rename from
13657         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
13658         the `gnus-registry-mark-map' keymap dynamically from
13659         `gnus-registry-marks'.  The generated functions update the summary line
13660         when a registry mark is added or deleted, and will call
13661         `gnus-registry-install-p' (see the comments in the code).
13662         (gnus-registry-user-format-function-M): Use concat intelligently.
13663
13664         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
13665         the registry mark functions.
13666
13667 2008-03-05  Glenn Morris  <rgm@gnu.org>
13668
13669         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
13670         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
13671         gnus-art.
13672         (top-level): No need to load own source when compiling.
13673
13674 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
13675
13676         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
13677         Suggested by <chris.anderton@zetnet.co.uk>.
13678
13679 2008-03-04  Glenn Morris  <rgm@gnu.org>
13680
13681         * gnus-sum.el (top-level): No need to require gnus when compiling,
13682         since unconditionally required near start of file.
13683         (gnus-summary-display-while-building): Move definition before use.
13684
13685 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
13686
13687         * gnus-registry.el (gnus-registry-user-format-function-M):
13688         Add formatting function.
13689
13690 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
13691
13692         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
13693         with plists.
13694         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
13695         Use new format.
13696
13697 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13698
13699         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
13700         `where-is-internal' that returns a range of key sequences.
13701
13702 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13703
13704         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
13705
13706         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
13707         (gnus-summary-jump-to-group): Consider windows on other displayed
13708         frames as well.  Similar changes might be needed elsewhere, but that's
13709         the one I've bumped into during my use.
13710
13711         * nndoc.el (nndoc-oe-dbx-type-p):
13712         * gnus-msg.el (gnus-debug):
13713         * gnus-group.el (gnus-update-group-mark-positions):
13714         Use mm-string-to-multibyte.
13715
13716 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
13717
13718         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
13719         doesn't handle NotDashEscaped.
13720
13721         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
13722         (mml-dnd-attach-options): Fix typo in custom choice.
13723
13724         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
13725         Change nndoc-article-type to mbox.
13726         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
13727
13728         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
13729         to nil, instead of html2text.
13730
13731         * imap.el (imap-debug): Add `imap-ping-server'.
13732
13733         * gnus-bookmark.el: Add FIXMEs.
13734
13735         * message.el (message-form-letter-separator)
13736         (message-send-form-letter-delay): New variables.
13737         (message-send-form-letter): Use them.  New command to send form
13738         letters.  Requested by Uwe Siart.
13739         (message-send-mail-function): Doc fix.  Add "Other" custom option.
13740
13741 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
13742
13743         * Update copyright years.
13744
13745 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
13746
13747         Sync from EMACS_22_BASE.
13748
13749         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
13750
13751 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
13752
13753         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
13754         empty author.
13755
13756 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
13757
13758         * gnus-registry.el (gnus-registry-marks): Add variable for
13759         customization of marks and their appearance.
13760         (gnus-registry-read-mark): Use it.
13761         (gnus-registry-do-marks): Add utility function to loop through
13762         `gnus-registry-marks'.
13763         (gnus-registry-install-shortcuts-and-menus): Add function to install
13764         shortcuts and menus.
13765         (gnus-registry-initialize): Use it.
13766         (gnus-registry-default-mark): Clarify documentation.
13767
13768 2008-02-29  Glenn Morris  <rgm@gnu.org>
13769
13770         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
13771         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
13772         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
13773         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
13774         Change defcustom :version from 23.0 to 23.1.
13775
13776 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
13777
13778         * gnus-registry.el (gnus-registry-follow-group-p)
13779         (gnus-registry-post-process-groups): Add functions to aid registry
13780         splitting and improve logging.  Clarify behavior in function
13781         documentation.
13782         (gnus-registry-split-fancy-with-parent): Use them.
13783
13784 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13785
13786         * gnus-art.el: Use with-current-buffer.
13787
13788 2008-02-27  David Engster  <dengste@eml.cc>
13789
13790         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
13791         Express real group name in the response.
13792
13793 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13794
13795         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
13796         (nnmairix-last-server, nnmairix-current-server): Defvar them.
13797         (nnmairix-goto-original-article): Defvar gnus-registry-install and
13798         autoload gnus-registry-fetch-group when compiling.
13799         (nnmairix-request-group-with-article-number-correction):
13800         Remove unreferenced argument passed to nnmairix-call-backend.
13801
13802 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
13803
13804         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
13805         (mm-uu-extract): Improve face for low color ttys.
13806         Reported by Sascha Wilde.
13807
13808 2008-02-27  Glenn Morris  <rgm@gnu.org>
13809
13810         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
13811         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
13812         variables to defconsts.  Convert comments to doc-strings.
13813         (nnmairix-last-server, nnmairix-current-server): Convert from free
13814         variables to defvars.  Convert comments to doc-strings.
13815         (gnus-registry-fetch-group): Autoload.
13816         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
13817         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
13818         (nnmairix-widget-build-editable-fields): Use car cddr rather than
13819         caddr.
13820         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
13821         nnmairix-request-group-with-article-number-correction call.
13822         (nnmairix-fast, nnmairix-group): New, less general names, for free
13823         variables passed from nnmairix-request-group to
13824         nnmairix-request-group-with-article-number-correction.  Declare.
13825         (nnmairix-request-group-with-article-number-correction):
13826         Use nnmairix-fast, nnmairix-group rather than fast, group.
13827
13828 2008-02-26  David Engster  <dengste@eml.cc>
13829
13830         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
13831         version 0.5.
13832
13833 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
13834
13835         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
13836         instead of making an extra function call.  Don't add the current group
13837         to articles only when they have the group.  Use
13838         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
13839         Reported by David <de_bb@arcor.de>.
13840
13841 2008-02-24  Miles Bader  <miles@gnu.org>
13842
13843         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
13844         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
13845         (mm-find-mime-charset-region):
13846         * mm-bodies.el (mm-encode-body):
13847         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
13848
13849 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13850
13851         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
13852         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
13853
13854 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
13855
13856         * mail-source.el (mail-source-delete-incoming): Change default.
13857         Supplement doc string.
13858
13859         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
13860
13861 2008-02-14  Glenn Morris  <rgm@gnu.org>
13862
13863         * time-date.el (format-seconds): New function.
13864
13865 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
13866
13867         * nnmail.el (nnmail-message-id-cache-file): Derive from
13868         `gnus-home-directory'.
13869
13870 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
13871
13872         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
13873         Document negative prefix.
13874
13875         * gnus-group.el (gnus-group-read-group): Document negative prefix.
13876
13877 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13878
13879         * message.el (message-unsent-separator): Add the Exim bounce
13880         separator.
13881
13882 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
13883
13884         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
13885         list.
13886         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
13887         recipient/signer list.
13888
13889 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13890
13891         * Makefile.in (datarootdir): Define.
13892         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
13893         name that might contain whitespace.
13894
13895 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
13896
13897         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
13898         fbound (Emacs 23 unicode), signal an error.
13899
13900 2008-02-08  Glenn Morris  <rgm@gnu.org>
13901
13902         * gnus-art.el (pgg-display-output-buffer): Declare as function.
13903
13904 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
13905
13906         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
13907         ports to the calls to `netrc-machine-user-or-password' in addition to
13908         "imap" and "imaps".
13909
13910 2008-02-01  Zhang Wei  <id.brep@gmail.com>
13911
13912         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
13913
13914         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
13915
13916 2008-02-01  Kenichi Handa  <handa@m17n.org>
13917
13918         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
13919         rfc2104-hexstring-to-bitstring and changed to return a byte list.
13920         (rfc2104-hash): Convert the result of concat to unibyte string.
13921
13922 2008-02-01  Dave Love  <fx@gnu.org>
13923
13924         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
13925         coding-system-for-read.
13926         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
13927
13928 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
13929
13930         * gnus.el (gnus-group-startup-message): Add `find-image' call before
13931         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
13932         <hanche@math.ntnu.no>.
13933
13934 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13935
13936         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
13937
13938         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
13939
13940 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
13941
13942         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
13943         * message.el (message-beginning-of-line): Use featurep instead of bound
13944         tests in order to resolve conditionals at compile time.
13945
13946 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
13947
13948         * mail-source.el (mail-sources): Add `group' choice.
13949
13950         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
13951         parameter `in-group' to control into which group the articles go.
13952         Add treatment of `group' mail-source.
13953
13954 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13955
13956         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
13957
13958         * mm-decode.el (mm-dissect-buffer): Decode description.
13959
13960         * mml.el (mml-to-mime): Encode message header first.
13961
13962 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13963
13964         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
13965         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
13966
13967         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
13968         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
13969
13970 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
13971
13972         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
13973
13974 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13975
13976         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
13977         prefix keys.
13978         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
13979         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
13980         gnus-xmas.el.
13981
13982         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
13983         (gnus-xmas-article-describe-bindings): New function.
13984         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
13985         gnus-xmas-article-describe-bindings.
13986
13987         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
13988
13989 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
13990
13991         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
13992         Add new variables for article mark management.
13993         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
13994         list of extra data entries which, when present, will indicate that the
13995         article ID should not be trimmed from the registry.
13996         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
13997         functions.
13998         (gnus-registry-read-mark): New function to read a mark name from the
13999         user.
14000         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
14001         (gnus-registry-set-article-mark-internal): New functions to add and
14002         remove marks.
14003         (gnus-registry-get-article-marks): New function to show the marks for
14004         an article, or retrieve them for further use.
14005
14006 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14007
14008         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
14009         keys when no argument is given.
14010
14011 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
14012
14013         * imap.el (imap-ping-server): New variable.
14014         (imap-opened): On add extra ping if imap-ping-server is non-nil.
14015         (imap-ping-server): Minor doc string fixes.
14016
14017 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
14018
14019         * imap.el (imap-ping-server): New function.
14020         (imap-opened): Call imap-ping-server.
14021
14022 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
14023
14024         * gnus-sum.el (gnus-article-sort-by-random)
14025         (gnus-thread-sort-by-random): Fix doc strings.
14026         Reported by jidanni@jidanni.org.
14027
14028 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14029
14030         * gnus-art.el (gnus-article-describe-bindings): New function.
14031         (gnus-article-read-summary-keys): Use it.
14032         (gnus-article-mode-map): Bind `C-h b' to it.
14033
14034 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14035
14036         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
14037         XEmacs.
14038         (gnus-article-describe-key, gnus-article-describe-key-briefly):
14039         Protect against non-character events.
14040
14041         * lpath.el: Fbind map-keymap for Emacs 21.
14042
14043 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
14044
14045         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
14046         New command.
14047         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
14048         instead of END.  Change name of the temp file.
14049         (gnus-group-gmane-group-download-format): Add doc string.  Make it
14050         customizable.
14051
14052 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14053
14054         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
14055         bind `S W' to gnus-article-wide-reply-with-original; set default
14056         binding to gnus-article-read-summary-send-keys.
14057         (gnus-article-read-summary-keys): Fix the order of keys; display
14058         continuation keys correctly in the echo area; describe bindings
14059         correctly when keys end with `C-h'.
14060         (gnus-article-read-summary-send-keys): New function.
14061         (gnus-article-describe-key, gnus-article-describe-key-briefly):
14062         Work for gnus-article-read-summary-send-keys; display continuation keys
14063         correctly in the echo area.
14064         (gnus-article-reply-with-original): Ignore prefix argument.
14065         (gnus-article-wide-reply-with-original): New function.
14066
14067         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
14068         Emacs 21.
14069
14070 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14071
14072         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
14073         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
14074
14075 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
14076
14077         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
14078         (gnus-group-read-ephemeral-gmane-group): New command.
14079
14080 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
14081
14082         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
14083
14084 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
14085
14086         * message.el (message-send-mail-function): Increase custom version.
14087
14088         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
14089         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
14090
14091 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
14092
14093         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
14094         for the cases where imap-authenticate is called with a nil buffer
14095         parameter.
14096
14097 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14098
14099         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
14100         html parts correctly; support forwarded messages.
14101         (gnus-article-browse-html-article): Remove work buffers.
14102
14103         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
14104         compiling.
14105         (netrc-bound-and-true-p): New macro.
14106         (netrc-parse): Use it instead of bound-and-true-p that is not available
14107         in XEmacs 21.4.
14108
14109 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
14110
14111         * gnus-registry.el (gnus-registry-mark-article)
14112         (gnus-registry-article-marks): Add functionality to mark articles
14113         through the Gnus registry.
14114
14115         * encrypt.el: Clarify documentation for the new pgg method.
14116         (encrypt-file-alist): Add PGG option.
14117         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
14118         functionality.  Abstract password key and messaging to external
14119         functions.
14120         (encrypt-password-key, encrypt-get-passphrase-if-needed)
14121         (encrypt-message-method-and-cipher): Add new convenience external
14122         functions.
14123         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
14124         (encrypt-pgg-process-buffer): Add PGG functionality glue.
14125
14126         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
14127         (netrc-parse): Use encrypt-file-alist to determine if
14128         encrypt-find-model or encrypt-insert-file-contents should be used.
14129
14130         * encrypt.el: Clarify documentation.  Load password-cache or
14131         password, whichever one is found first, instead of autoloading.
14132
14133 2007-12-19  Glenn Morris  <rgm@gnu.org>
14134
14135         * mml.el (message-options-set, message-narrow-to-head)
14136         (message-in-body-p, message-mail-p, message-encode-message-body):
14137         Autoload.
14138         (message-remove-header, message-narrow-to-headers-or-head)
14139         (message-subscribed-p, message-make-mail-followup-to)
14140         (message-position-on-field, message-news-p)
14141         (message-options-set-recipient, message-generate-headers)
14142         (message-sort-headers): Declare as functions.
14143
14144 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
14145
14146         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
14147         convention in doc string.
14148
14149 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14150
14151         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
14152         title to html parts.
14153         (gnus-article-browse-html-article): Pass message header to it.
14154
14155         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
14156
14157 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
14158
14159         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
14160         or password compatible with XEmacs.
14161
14162 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
14163
14164         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
14165         format document.
14166         (gnus-mime-delete-part): Don't write description line if empty.
14167         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
14168
14169 2007-12-14  Johan Bockgård  <bojohan@gnu.org>
14170
14171         * gnus-sum.el (gnus-summary-mark-unread-as-read)
14172         (gnus-summary-mark-read-and-unread-as-read)
14173         (gnus-summary-mark-current-read-and-unread-as-read)
14174         (gnus-summary-mark-unread-as-ticked): Doc fix.
14175         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
14176
14177 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
14178
14179         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
14180         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
14181
14182 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
14183
14184         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
14185         yes-or-no-p.
14186
14187 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14188
14189         * mm-decode.el (mm-add-meta-html-tag): New function.
14190         (mm-save-part-to-file, mm-pipe-part): Use it.
14191
14192         * gnus-art.el (gnus-article-browse-delete-temp-files):
14193         Use gnus-y-or-n-p instead of y-or-n-p.
14194         (gnus-article-browse-html-parts): Work with message/external-body; use
14195         mm-add-meta-html-tag.
14196
14197 2007-12-11  Glenn Morris  <rgm@gnu.org>
14198
14199         * gnus-cache.el: Require gnus-sum not just when compiling.
14200
14201         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
14202
14203         * gnus-int.el (gnus-server-opened, gnus-status-message):
14204         Move definitions before use.
14205
14206         * mm-decode.el: Require gnus-util.
14207         (mm-remove-part): Only call delete-annotation on XEmacs.
14208
14209         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
14210
14211         * nnmail.el: Require gnus-int.
14212
14213         * spam.el: Move `require's before `eval-when-compile's.
14214
14215         * gnus-ems.el (gnus-alive-p):
14216         * gnus-fun.el (message-goto-eoh):
14217         * gnus-util.el (gnus-group-name-decode):
14218         * mail-source.el (gnus-compress-sequence):
14219         * message.el (Info-goto-node, format-spec):
14220         * mm-bodies.el (message-options-get):
14221         * mm-decode.el (mm-view-pkcs7):
14222         * mm-util.el (gmm-write-region):
14223         * mml-smime.el (mml-compute-boundary)
14224         (gnus-completing-read-with-default):
14225         * mml.el (widget-button-press, gnus-make-hashtable):
14226         * mml1991.el (mm-decode-content-transfer-encoding)
14227         (mm-encode-content-transfer-encoding)
14228         (message-options-get, message-options-set):
14229         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
14230         * nnfolder.el (gnus-request-group):
14231         * nnheader.el (ietf-drums-unfold-fws):
14232         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
14233         * smime.el (gnus-run-mode-hooks):
14234         * spam-stat.el (gnus-message): Autoload.
14235
14236         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
14237         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
14238         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
14239         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
14240         Add declare-function compatibility definition.
14241
14242         * gnus-cache.el (nnvirtual-find-group-art):
14243         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
14244         (gnus-add-image, gnus-add-wash-type):
14245         * gnus-group.el (nnkiboze-score-file):
14246         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
14247         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
14248         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
14249         (message-tokenize-header, gnus-get-buffer-create)
14250         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
14251         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
14252         * gnus.el (gnus-group-decoded-name):
14253         * mail-source.el (imap-capability):
14254         * mm-bodies.el (message-options-set):
14255         * mm-decode.el (gnus-configure-windows):
14256         * mm-extern.el (message-goto-body):
14257         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
14258         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
14259         (epg-sub-key-validity, message-options-set):
14260         * mml.el (widget-event-point, gnus-configure-windows):
14261         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
14262         * mml2015.el (epg-check-configuration, epg-configuration)
14263         (message-options-set):
14264         * nndb.el (nndb-request-article):
14265         * nnfolder.el (gnus-request-create-group):
14266         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
14267         * nnmaildir.el (gnus-group-mark-article-read):
14268         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
14269         * rfc1843.el (message-fetch-field):
14270         * spam.el (gnus-extract-address-components):
14271         Declare as functions.
14272
14273 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14274
14275         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
14276
14277         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
14278
14279         * lpath.el: Fbind run-mode-hooks for Emacs 21;
14280         bind show-trailing-whitespace for XEmacs.
14281
14282 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
14283
14284         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
14285         new no-op macro for backward compatibility.
14286
14287         * imap.el (imap-string-to-integer): New function.
14288
14289 2007-12-09  Glenn Morris  <rgm@gnu.org>
14290
14291         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
14292
14293         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
14294         * message.el, mm-view.el, sieve-manage.el, smime.el:
14295         Add declare-function compatibility definition.
14296
14297         * gnus-art.el (w3-region, w3m-region, Info-menu):
14298         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
14299         * gnus-sum.el (gnus-get-predicate):
14300         * gnus-util.el (mm-append-to-file, w32-focus-frame):
14301         * message.el (mail-abbrev-in-expansion-header-p):
14302         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
14303         (w3m-detect-meta-charset, w3m-region):
14304         * sieve-manage.el (password-read, password-cache-add)
14305         (password-cache-remove):
14306         * smime.el (password-read-and-add): Declare as functions.
14307
14308 2007-12-08  David Kastrup  <dak@gnu.org>
14309
14310         * gnus-sum.el (gnus-summary-simplify-subject-query):
14311         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
14312         `message'.
14313
14314 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14315
14316         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
14317         it to bind idna-program, installation-directory, defined-colors, and
14318         face-attribute for XEmacs of the version that compiles defcustom forms.
14319
14320 2007-12-07  Glenn Morris  <rgm@gnu.org>
14321
14322         * gnus-art.el (article-make-date-line): Revert previous change.
14323
14324 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
14325
14326         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
14327
14328 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
14329
14330         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
14331         Call gnus-add-to-range ranges only once with a prepared article-list.
14332
14333 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
14334
14335         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
14336         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
14337         group names with backslashes.
14338         Reported by Tassilo Horn <tassilo@member.fsf.org>.
14339
14340 2007-12-06  Deepak Goel  <deego3@gmail.com>
14341
14342         * gnus-art.el (article-make-date-line):
14343         * gnus-start.el (gnus-load):
14344         * pop3.el (pop3-read-response): Fix buggy call to `error'.
14345
14346 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14347
14348         * gnus-art.el (gnus-use-idna):
14349         * gnus-start.el (gnus-site-init-file):
14350         * message.el (message-use-idna):
14351         * mm-uu.el (mm-uu-hide-markers):
14352         * smiley.el (smiley-style): Revert changes that suppress warnings.
14353
14354 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14355
14356         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
14357         specify charset to html source.
14358         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
14359
14360 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14361
14362         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
14363         idna-program in order to suppress byte compile warning issued by XEmacs
14364         that came to byte compile the default value section of defcustom forms
14365         recently.
14366
14367         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
14368         value of installation-directory.
14369
14370         * message.el (message-use-idna): Don't directly refer to the value of
14371         idna-program.
14372
14373         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
14374
14375         * smiley.el (smiley-style): Don't directly call face-attribute.
14376
14377 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
14378
14379         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
14380
14381         * gnus-dired.el: Reduce Gnus dependencies.
14382         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
14383         Don't require.  Use autoloads instead.
14384         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
14385         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
14386         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
14387         (gnus-dired-mode): Adjust doc string.
14388         (gnus-dired-mail-mode): New variable.
14389         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
14390         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
14391         (gnus-dired-mail-buffers): New function.  Return mail or message
14392         composition buffers.
14393         (gnus-dired-attach): Use it.
14394         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
14395         NO-DECODE.
14396         (gnus-dired-print): Use `gnus-print-buffer' depending on
14397         `gnus-dired-mail-mode'.
14398
14399 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14400
14401         * rfc2047.el (rfc2047-encoded-word-regexp)
14402         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
14403         explaining what regexp patterns are for.
14404
14405 2007-12-04  Glenn Morris  <rgm@gnu.org>
14406
14407         * password.el: Move to password-cache.el.
14408
14409         * mml1991.el (password-read, password-cache-add, password-cache-remove):
14410         * mml2015.el (password-read, password-cache-add, password-cache-remove):
14411         * mml-smime.el (password-read, password-cache-add)
14412         (password-cache-remove):
14413         No need to autoload, since mml-sec requires password.
14414
14415         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
14416         * message.el (gnus-extract-address-components):
14417         * mml-smime.el (gnus-extract-address-components): Define for compiler.
14418
14419         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
14420         password.
14421
14422 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
14423
14424         * mailcap.el: Reduce dependencies.
14425         (mail-header-parse-content-type): Autoload.
14426         (mailcap-delete-duplicates): New alias.
14427         (mailcap-mime-info): Add optional argument NO-DECODE.
14428         (mailcap-mime-types): Use mailcap-delete-duplicates.
14429
14430         * message.el (message-ignored-supersedes-headers): Add "X-ID".
14431
14432 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
14433
14434         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
14435         (imap-parse-status): Upcase status-att for servers that sends them
14436         lower-case (e.g., MS Exchange 2007).
14437
14438 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14439
14440         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
14441         function.
14442
14443         * gnus-uu.el (gnus-uu-decode-yenc): New command.
14444         (gnus-uu-yenc-article): New function.
14445
14446         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
14447
14448         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
14449
14450 2007-12-02  Glenn Morris  <rgm@gnu.org>
14451
14452         * binhex.el (binhex): New custom group.
14453         (binhex-decoder-program, binhex-decoder-switches)
14454         (binhex-use-external): Move to the binhex custom group.
14455
14456         * uudecode.el (uudecode): New custom group.
14457         (uudecode-decoder-program, uudecode-decoder-switches)
14458         (uudecode-use-external): Move to the uudecode custom group.
14459
14460         * netrc.el (top-level): Don't load `encrypt' features.
14461         (netrc-parse): Don't use encrypt.
14462         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
14463
14464         * encrypt.el: Remove file.
14465
14466 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
14467
14468         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
14469         matches on patches.
14470
14471         * gnus-art.el (gnus-article-browse-html-article):
14472         Mention `mm-text-html-renderer' in the doc string.
14473
14474         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
14475         string.  Add comments.
14476
14477         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
14478         if rhs is ASCII.
14479
14480 2007-12-01  Glenn Morris  <rgm@gnu.org>
14481
14482         * mail-source.el (top-level): Require format-spec before
14483         eval-when-compile.
14484
14485 2007-11-30  Glenn Morris  <rgm@gnu.org>
14486
14487         * encrypt.el: Require password, rather than autoloading password-read.
14488
14489 2007-11-29  Glenn Morris  <rgm@gnu.org>
14490
14491         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
14492         (sasl-make-client, sasl-next-step, sasl-step-data)
14493         (sasl-step-set-data): Declare as functions.
14494
14495 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
14496
14497         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
14498
14499 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
14500
14501         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
14502         certs should be verified and what is to be done in the event of a
14503         verification failure.
14504
14505         * gnus.el (gnus-method-to-server): Add an optional parameter so the
14506         caller can indicate whether the cache should be disregarded for this
14507         call.  This way the result of the call is reproducible at all times and
14508         can be considered a canonical server name for the supplied method.
14509         (gnus-agent-method-p): Canonicalize server names by pushing their
14510         method through `gnus-method-to-server' using the no-cache argument.
14511
14512         * gnus-srvr.el (gnus-server-insert-server-line):
14513         Call `gnus-method-to-server' with `no-cache' argument.
14514
14515         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
14516         gnus-agent-possibly-synchronize-flags as this should be called when the
14517         server is actually being opened.
14518         (gnus-agent-possibly-synchronize-flags)
14519         (gnus-agent-possibly-synchronize-flags-server): Move check for the
14520         flags file of an agentized server to the latter function.
14521
14522         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
14523         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
14524         after a connection has been established successfully.
14525
14526 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14527
14528         * gnus-art.el (article-display-face): Force to display face if called
14529         interactively; check if gnus-article-x-face-too-ugly matches author.
14530         (article-display-x-face): Display face even if From header is missing
14531         as article-display-face does.
14532
14533 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
14534
14535         * hashcash.el (message-narrow-to-headers-or-head)
14536         (message-fetch-field, message-goto-eoh)
14537         (message-narrow-to-headers): Declare as functions.
14538
14539 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
14540
14541         * mail-source.el (mail-sources): Default to fetch from file for
14542         compatibility with default of nnmail-spool-file.
14543
14544 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14545
14546         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
14547         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
14548         to look for encoded word that should be encoded again.
14549         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
14550         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
14551         encoding pattern.
14552         (rfc2047-decode-region): Switch strict regexp and loose one according
14553         to rfc2047-allow-irregular-q-encoded-words.
14554
14555 2007-11-25  Romain Francoise  <romain@orebokech.com>
14556
14557         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
14558
14559 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
14560
14561         * tls.el (tls-program): Provide more custom choices from
14562         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
14563         (tls-process-connection-type, tls-success): Remove "*" in doc string.
14564
14565 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14566
14567         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
14568         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
14569
14570         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
14571         `nnmail-spool-file'.
14572
14573         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
14574         `nnmail-spool-file'.
14575
14576         * gnus-move.el (gnus-change-server): Ditto.
14577
14578         * gnus-kill.el (gnus-batch-score): Ditto.
14579
14580         * gnus-cache.el (gnus-jog-cache): Ditto.
14581
14582         * gnus-msg.el (gnus-summary-reply):
14583         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
14584
14585 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14586
14587         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
14588         version.  Minor improvement to doc strings.
14589         (tls-program): Add comment.
14590
14591 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
14592
14593         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
14594         (tls-checktrust): New variable.  Check if GNU TLS complained about a
14595         mismatch between the hostname provided in the certificate and the name
14596         of the host connnecting to.
14597         (open-tls-stream): Use them.  Check certificates against trusted root
14598         certificates.
14599
14600 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14601
14602         * gnus-cache.el (gnus-cache-generate-nov-databases):
14603         Use nnml-generate-nov-databases-directory instead of
14604         nnml-generate-nov-databases-1.
14605
14606 2007-11-24  Glenn Morris  <rgm@gnu.org>
14607
14608         * message.el (message-tool-bar-retro): Update for rename
14609         mail_send.xpm->mail-send.xpm.
14610
14611 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
14612
14613         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
14614         `smime-ldap-search' for Emacs 22 and up.
14615
14616 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14617
14618         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
14619
14620         * message.el (message-send-mail-function): Fix error convention.
14621         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
14622         (message-widen-reply, message-send-mail, message-talkative-question)
14623         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
14624         (message-clone-locals, message-send-news): Use with-current-buffer.
14625         (message-insert-or-toggle-importance): Remove unused var `valid'.
14626         (message-make-references): Remove unused var `new-references'.
14627         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
14628
14629 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
14630
14631         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
14632         (spam-split-symbolic-return-positive): Reflow docstring.
14633         (spam-backends, spam-summary-exit-behavior)
14634         (spam-mark-ham-unread-before-move-from-spam-group)
14635         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
14636         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
14637         (spam-clear-cache, spam-backend-check, spam-install-backend)
14638         (spam-install-statistical-backend, spam-list-of-processors)
14639         (spam-group-processor-p, spam-split, spam-bogofilter-score)
14640         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
14641         (spam-check-crm114, spam-initialize, spam-unload-hook):
14642         Fix typos in docstrings.
14643
14644 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14645
14646         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
14647         been checked if they have never been read and those group levels are
14648         higher than the one that a user specified.
14649
14650 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14651
14652         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
14653         foreign groups unless a group level is specified by a user.
14654         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
14655
14656 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
14657
14658         * message.el (message-send-mail-function): Require sendmail.
14659
14660 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
14661
14662         * message.el (message-send-mail-function): Check for smtpmail too.
14663
14664         * utf7.el (utf7-encode, utf7-decode): Use coding system
14665         `utf-7'/`utf-7-imap' from utf-7.el' if available.
14666
14667         * message.el (message-send-mail-function): New function.
14668         (message-send-mail-function): Set default using
14669         message-send-mail-function.  Adjust doc string.
14670         (message-send-mail-with-mailclient): New function.
14671
14672 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
14673
14674         * smime.el (from):
14675         * rfc2047.el (message-posting-charset):
14676         * qp.el (mm-use-ultra-safe-encoding):
14677         * pop3.el (parse-time-months):
14678         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
14679         * nnml.el (files):
14680         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
14681         (jka-compr-compression-info-list, ange-ftp-path-format)
14682         (efs-path-regexp):
14683         * nndiary.el (files):
14684         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
14685         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
14686         (epg-digest-algorithm-alist, inhibit-redisplay)
14687         (password-cache-expiry):
14688         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
14689         (pgg-output-buffer, password-cache-expiry):
14690         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
14691         (efs-path-regexp):
14692         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
14693         (inhibit-redisplay):
14694         * mm-uu.el (file-name, start-point, end-point, entry)
14695         (gnus-newsgroup-name, gnus-newsgroup-charset):
14696         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
14697         (latin-unity-ucs-list):
14698         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
14699         (mm-uu-binhex-decode-function):
14700         * message.el (gnus-message-group-art, gnus-list-identifiers)
14701         (rmail-enable-mime-composing, gnus-local-organization)
14702         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
14703         (gnus-read-active-file, facemenu-add-face-function)
14704         (facemenu-remove-face-function, gnus-article-decoded-p)
14705         (tool-bar-mode):
14706         * mail-source.el (display-time-mail-function):
14707         * gnus-util.el (nnmail-pathname-coding-system)
14708         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
14709         (gnus-original-article-buffer, gnus-user-agent)
14710         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
14711         (xemacs-codename, sxemacs-codename, emacs-program-version):
14712         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
14713         * gnus-start.el (gnus-agent-covered-methods)
14714         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
14715         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
14716         (gnus-newsgroup-headers, gnus-group-list-mode)
14717         (gnus-group-mark-positions, gnus-newsgroup-data)
14718         (gnus-newsgroup-unreads, nnoo-state-alist)
14719         (gnus-current-select-method, mail-sources)
14720         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
14721         (nnmail-spool-file, gnus-cache-active-hashtb):
14722         * gnus-mh.el (mh-lib-progs):
14723         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
14724         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
14725         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
14726         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
14727         (gnus-group-buffer):
14728         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
14729         (font-lock-set-defaults):
14730         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
14731         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
14732         (gnus-summary-post-menu, total-parts, type, condition, length):
14733         * gnus-agent.el (gnus-agent-read-agentview):
14734         * flow-fill.el (show-trailing-whitespace):
14735         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
14736         eval-and-compile wrappers for byte compiler pacifiers.
14737
14738         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
14739         (mm-display-inline-fontify): Check for featurep 'xemacs not
14740         extent-list.
14741
14742         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
14743         itimer-list.
14744         (mm-create-image-xemacs): Only do something for XEmacs.
14745         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
14746
14747         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
14748
14749         * gnus-registry.el (gnus-adaptive-word-syntax-table):
14750         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
14751
14752 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
14753
14754         * nnimap.el (nnimap-split-download-body):
14755         * gnus-demon.el (gnus-demon):
14756         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
14757
14758 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14759
14760         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
14761         New macros.
14762         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
14763         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
14764         copy data from unibyte buffer to multibyte current buffer.
14765         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
14766         to copy data from unibyte current buffer to multibyte buffer.
14767         (nntp-make-process-buffer): Make process buffer unibyte.
14768
14769         * pop3.el (pop3-open-server): Fix typo in Lisp code.
14770
14771 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
14772
14773         * pop3.el (pop3-open-server): Accept and process data more robustly at
14774         connection start to avoid spurious "POP SSL connection failed" errors.
14775
14776 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14777
14778         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
14779         read group names.
14780
14781 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
14782
14783         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
14784
14785 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14786
14787         * nnmail.el (nnmail-parse-active): Make group names unibyte.
14788         (nnmail-save-active): Use a unibyte buffer when saving active file,
14789         which may contain non-ASCII group names.
14790
14791         * nnml.el (nnml-request-group): Decode group names in messages.
14792
14793 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
14794
14795         * message.el (message-citation-line-function)
14796         (message-insert-formatted-citation-line): Fix spelling of
14797         `message-insert-formated-citation-line'.
14798
14799 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
14800
14801         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
14802
14803 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14804
14805         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
14806         nnmail-pathname-coding-system.
14807
14808         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
14809         that a user enters; decode group names in messages.
14810
14811         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
14812
14813 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
14814
14815         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
14816
14817         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
14818
14819         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
14820         risky local variable.
14821
14822         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
14823
14824 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
14825
14826         * encrypt.el: Improve documentation to fix function name typo.
14827         Reported by Daiki Ueno <ueno@unixuser.org>.
14828
14829 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14830
14831         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
14832         even if the point is not in the last page of an article.
14833         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
14834         back to the previous page.
14835
14836 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
14837
14838         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
14839
14840 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14841
14842         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
14843
14844 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14845
14846         * message.el (message-check-news-body-syntax):
14847         Avoid mm-string-as-multibyte.
14848         (message-hide-headers): Don't assume (point-min)==1.
14849
14850 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
14851
14852         * message.el (message-remove-blank-cited-lines): Fix if remove is
14853         given.
14854         (message-bogus-address-regexp): New variable.
14855         (message-bogus-recipient-p): New function.
14856         (message-check-recipients): New command.
14857         (message-syntax-checks): Add `bogus-recipient'.
14858         (message-fix-before-sending): Add `bogus-recipient'.
14859
14860         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
14861         (gnus-treat-body-boundary): Don't test window-system.
14862
14863 2007-10-28  Leo Liu  <sdl.web@gmail.com>
14864
14865         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
14866
14867 2007-10-28  Miles Bader  <miles@gnu.org>
14868
14869         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
14870         at compile-time too.
14871
14872 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
14873
14874         * gnus-msg.el (gnus-message-setup-hook):
14875         Add `message-remove-blank-cited-lines' to options.
14876
14877 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
14878
14879         * message.el (message-remove-blank-cited-lines): New function.
14880         Suggested by Karl Plästerer.
14881
14882 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14883
14884         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
14885         mapc.
14886
14887         * imap.el (imap-open): Replace mapcar called for effect with mapc.
14888         (top-level): Use mapc to set functions to be traced for debugging.
14889
14890         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
14891         called for effect with while loop.
14892
14893         * message.el (message-talkative-question): Replace mapcar called for
14894         effect with mapc.
14895
14896         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
14897         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
14898         called for effect with dolist.
14899
14900         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
14901
14902         * nndiary.el: Use dolist instead of mapcar to add diary headers to
14903         gnus-extra-headers and nnmail-extra-headers.
14904
14905         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
14906         called for effect with dolist.
14907         (top-level): Use mapc to set functions to be traced for debugging.
14908
14909         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
14910         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
14911         dolist.
14912
14913         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
14914         Replace mapcar called for effect with mapc.
14915         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
14916         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
14917         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
14918         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
14919
14920         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
14921         remove-if that's a cl function.
14922
14923         * webmail.el (webmail-debug): Replace mapcar called for effect with
14924         dolist.
14925
14926         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
14927         with mapc.
14928
14929 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14930
14931         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
14932         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
14933         with while loop.
14934
14935         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
14936         functions from article-* functions.
14937         (gnus-multi-decode-header): Replace mapcar called for effect with
14938         dolist.
14939
14940         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
14941         (gnus-bookmark-show-details): Replace mapcar called for effect with
14942         while loop.
14943
14944         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
14945         called for effect with while loop.
14946
14947         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
14948         with dolist.
14949
14950         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
14951         Replace mapcar called for effect with dolist.
14952
14953         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
14954
14955         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
14956         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
14957         Replace mapcar called for effect with dolist.
14958         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
14959         mapc.
14960
14961         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
14962         Replace mapcar called for effect with dolist.
14963         (gnus-topic-list): Replace mapcar called for effect with mapc.
14964
14965         * gnus.el: Use mapc instead of mapcar to add autoloads.
14966
14967 2007-10-23  Richard Stallman  <rms@gnu.org>
14968
14969         * gnus-group.el (gnus-group-highlight): Mark as risky.
14970
14971 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14972
14973         * gnus.el (gnus-server-to-method): Return method found first in
14974         gnus-newsrc-alist.
14975
14976         * gnus-art.el (gnus-article-highlight-signature)
14977         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
14978         button overlay without the front stickiness.
14979
14980 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
14981
14982         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
14983         overview buffer needed a catch to receive its throw.
14984         (gnus-agent-flush-cache): Declare as interactive to make this function
14985         easier to use.
14986
14987 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
14988
14989         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
14990         `next-line'.
14991
14992 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14993
14994         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
14995         exclude address matching message-dont-reply-to-names.
14996
14997 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14998
14999         * gnus-util.el (gnus-string<): New function.
15000
15001         * gnus-sum.el (gnus-article-sort-by-author)
15002         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
15003
15004 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15005
15006         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
15007         the frame-focus tag is set in gnus-buffer-configuration.
15008
15009 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15010
15011         * gnus-art.el (gnus-article-add-button): Make a button overlay without
15012         the front stickiness.
15013
15014 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
15015
15016         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
15017         url pattern; remove duplicate one.
15018         (gnus-article-extend-url-button): New function.
15019         (gnus-article-add-buttons): Use it.
15020         (gnus-button-push): Use concatenated url that it makes.
15021
15022 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
15023
15024         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
15025
15026 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
15027
15028         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
15029         Don't hardcode point-min==1.
15030
15031 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
15032
15033         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
15034         Fix comment about "iso8859-1".
15035
15036 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
15037
15038         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
15039         ones returned from the verify-function.
15040
15041         * mm-uu.el (mm-uu-pgp-signed-extract-1):
15042         Call mml2015-extract-cleartext-signature if extraction failed.
15043
15044 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
15045
15046         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
15047         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
15048         failed.
15049
15050 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
15051
15052         * Relicense "GPLv2 or later" files to "GPLv3 or later".
15053
15054 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
15055
15056         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
15057         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
15058         recommends to use EasyPG instead of PGG.
15059
15060         * pgg.el: Revert to revision 6.23.2.16.
15061
15062         * pgg-def.el: Revert to revision 6.6.2.14.
15063
15064         * pgg-gpg.el: Revert to revision 6.23.2.34.
15065
15066 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
15067
15068         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
15069         to mark a thread as expirable.  Add variable `hide' to handle hiding of
15070         thread for both the null and zero (kill/expire thread) universal prefix
15071         cases.
15072         (gnus-summary-expire-thread): Add new function to expire a thread,
15073         using gnus-summary-kill-thread.
15074         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
15075         shortcuts for gnus-summary-expire-thread.
15076         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
15077         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
15078
15079 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
15080
15081         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
15082         extras value, so an extras entry can be deleted.
15083         (gnus-registry-delete-extra-entry): Use it.
15084         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
15085         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
15086         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
15087         storage through the gnus-registry, and provide an appropriate API for
15088         it.
15089
15090 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15091
15092         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
15093         Suggested by Leo <sdl.web@gmail.com>.
15094
15095         * gnus.el: Do.
15096
15097 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15098
15099         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
15100         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
15101
15102         * gnus-agent.el (gnus-agent-fetch-headers): Do.
15103
15104         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
15105         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
15106
15107 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15108
15109         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
15110         newline.
15111         (nnmbox-request-accept-article): Don't change article in source buffer;
15112         narrow to header to use message-fetch-field rather than
15113         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
15114         (nnmbox-request-replace-article): Quote lines that'll be misidentified
15115         as delimiters; make sure article ends with newline.
15116         (nnmbox-delete-mail): Correct last position of article to be deleted;
15117         ignore X-Gnus-Newsgroup header in article body.
15118         (nnmbox-save-mail): Quote lines looking like delimiters at the right
15119         positions; make sure article ends with newline.
15120
15121         * message.el (message-display-abbrev): Don't infloop when a user
15122         inserts SPC in the beginning of header.
15123
15124         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
15125         coding-system-for-read and coding-system-for-write for XEmacs having no
15126         file-coding feature.
15127
15128         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
15129
15130 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
15131
15132         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
15133         list of groups not followed by default.  Fix type to be regexp.
15134         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
15135
15136 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
15137
15138         * hmac-def.el (define-hmac-function): Switch from old-style to
15139         new-style backquotes.
15140
15141         * md4.el (md4-make-step): Likewise.
15142
15143 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15144
15145         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
15146         raw-text coding system when saving .newsrc file, which may contain
15147         non-ASCII group names.
15148
15149 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15150
15151         * gnus-cus.el (gnus-score-extra): New widget.
15152         (gnus-score-extra-convert): New function.
15153         (gnus-score-customize): Use it for Extra.
15154
15155 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
15156
15157         * mml2015.el (mml2015-extract-cleartext-signature): New function.
15158         (mml2015-mailcrypt-clear-verify): Use it.
15159         (mml2015-gpg-clear-verify): Use it.
15160         (mml2015-pgg-clear-verify): Use it.
15161         (mml2015-epg-clear-verify): Replace the current part with the output
15162         from GnuPG; don't extract the plaintext by itself.
15163
15164         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
15165         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
15166         mml2015-clear-verify-function; don't touch the armor headers or
15167         dash-escaped text here.
15168
15169 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15170
15171         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
15172         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
15173         parts, or application/octet-stream as a last resort.
15174         (gnus-mime-view-part-as-type): Don't toggle display.
15175         (gnus-mime-view-part-as-charset): Don't turn off display before
15176         querying charset.
15177
15178         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
15179         stuff to undisplayer function in Emacs.
15180         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
15181
15182         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
15183         text/calendar parts.
15184
15185 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15186
15187         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
15188         decoding text/calendar parts.
15189
15190         * message.el (message-forward-make-body-mime): Always mark body as
15191         having no illegible text; remove signed-or-encrypted argument.
15192         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
15193
15194         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
15195         (mml-generate-mime-1): Don't encode body if it is specified to be in
15196         raw form; don't make buffer be unibyte when inserting multibyte string.
15197
15198 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
15199
15200         * sha1.el: Fix up comment style.
15201         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
15202         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
15203
15204         * hex-util.el: Fix up comment style.
15205         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
15206
15207         * gnus-salt.el: Use with-current-buffer.
15208         (gnus-pick-setup-message): Fix long-standing typo.
15209
15210 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15211
15212         * imap.el (imap-logout-timeout): New variable.
15213         (imap-logout, imap-logout-wait): New functions.
15214         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
15215
15216         * nnimap.el (nnimap-logout-timeout): New server variable.
15217         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
15218         nnimap-logout-timeout.
15219
15220         * gnus-art.el (gnus-article-summary-command-nosave)
15221         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
15222
15223 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15224
15225         * gnus.el (gnus-maximum-newsgroup): New variable.
15226
15227         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
15228         according to gnus-maximum-newsgroup.
15229
15230         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
15231         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
15232         Limit the range of articles according to gnus-maximum-newsgroup.
15233
15234 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
15235
15236         * gnus-art.el (gnus-sticky-article): Fix problems described in
15237         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
15238         Don't perform gnus-configure-windows here; reuse existing sticky
15239         article buffer.
15240
15241         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
15242         it doesn't exist in gnus-article-mode.
15243
15244 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15245
15246         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
15247         (gnus-agent-decoded-group-name): New function.
15248         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
15249         (gnus-agent-expire-group-1): Use it; decode group name in messages.
15250
15251 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
15252
15253         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
15254         Add binding for gnus-sticky-article.
15255         (gnus-summary-exit): Don't kill sticky article buffers.
15256
15257         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
15258         article buffer.
15259         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
15260         (gnus-kill-sticky-article-buffers): New commands.
15261
15262 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15263
15264         * nntp.el (nntp-xref-number-is-evil): New server variable.
15265         (nntp-find-group-and-number): If it is non-nil, don't trust article
15266         numbers in the Xref header.
15267
15268 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15269
15270         * gnus-agent.el (gnus-agent-read-group): New function.
15271         (gnus-agent-flush-group, gnus-agent-expire-group)
15272         (gnus-agent-regenerate-group): Use it.
15273         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
15274         nnmail-pathname-coding-system.
15275
15276 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15277
15278         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
15279
15280         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
15281         that are unread as unread, and also as selected so that information of
15282         marks having been changed by a user may be updated when exiting group.
15283
15284 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
15285
15286         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
15287
15288 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15289
15290         * gnus-art.el (gnus-mime-display-single): Pass part number that is
15291         calculated ignoring signature parts to gnus-treat-article.
15292
15293 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15294
15295         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
15296         a point here in order to keep the window start.
15297         (gnus-insert-mime-security-button): Make a button overlay without the
15298         front stickiness.
15299         (gnus-mime-display-security): Goto the end of a button.
15300
15301         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
15302
15303 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15304
15305         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
15306         group-name-at-point.
15307         (gnus-group-completing-read): New function that offers decoded
15308         non-ASCII group names for completion.
15309         (gnus-fetch-group, gnus-group-read-ephemeral-group)
15310         (gnus-group-jump-to-group, gnus-group-make-group-simple)
15311         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
15312         (gnus-group-fetch-control): Use it.
15313         (gnus-fetch-group): Use group-name-at-point for the initial value
15314         rather than the default value; use gnus-alive-p.
15315
15316         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
15317         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
15318         (gnus-summary-post-news): Use gnus-group-completing-read.
15319
15320         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
15321         (gnus-read-move-group-name): Decode group name for completion.
15322
15323 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
15324
15325         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
15326         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
15327         Yamaoka slightly modified the code).
15328
15329 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15330
15331         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
15332         (nnmail-split-incoming): Bind it.
15333
15334         * nnml.el (nnml-group-name-charset): New function.
15335         (nnml-decoded-group-name): Use it; don't decode group name if
15336         nnmail-group-names-not-encoded-p is non-nil.
15337         (nnml-encoded-group-name): New function.
15338         (nnml-group-pathname): Inline nnml-decoded-group-name.
15339         (nnml-request-expire-articles): Decode group name in message.
15340         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
15341         nnmail-pathname-coding-system.
15342         (nnml-save-mail, nnml-active-number): Work with decoded group names and
15343         not decoded ones according to nnmail-group-names-not-encoded-p.
15344         (nnml-generate-active-info): Use nnml-encoded-group-name.
15345
15346 2007-08-08  Glenn Morris  <rgm@gnu.org>
15347
15348         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
15349         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
15350         doc-strings and comments.
15351
15352 2007-07-25  Glenn Morris  <rgm@gnu.org>
15353
15354         * Relicense all FSF files to GPLv3 or later.
15355
15356 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15357
15358         * gnus-sum.el (gnus-summary-move-article):
15359         Make gnus-summary-respool-article work.
15360
15361 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
15362
15363         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
15364         string.
15365
15366 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
15367
15368         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
15369         that should be ignored when comparing distant RSS articles with local
15370         ones.
15371         (nnrss-make-hash-index): New function.  Create a hash index according
15372         to the ignored fields.
15373         (nnrss-check-group): Use it.
15374
15375 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15376
15377         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
15378
15379         * gnus-art.el (article-decode-group-name): Decode Xref header too.
15380
15381         * gnus-group.el (gnus-group-make-group): Encode group name here unless
15382         the new optional argument ENCODED is non-nil.
15383         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
15384         coding system for encoding group name.
15385         (gnus-group-make-rss-group): Pass un-encoded group name to
15386         gnus-group-make-group.
15387         (gnus-group-set-info): Tell gnus-group-make-group that group name is
15388         encoded.
15389
15390         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
15391         Encode group name to which articles are moved or copied.
15392         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
15393         coding system for encoding Newsgroup, Followup-To and Xref headers.
15394
15395         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
15396         marks; use nnheader-file-coding-system to write a file.
15397         (nnagent-retrieve-headers): Bind file-name-coding-system to
15398         nnmail-pathname-coding-system.
15399
15400         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
15401
15402         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
15403         (nnml-request-article, nnml-request-create-group)
15404         (nnml-request-rename-group, nnml-find-id)
15405         (nnml-possibly-change-directory, nnml-possibly-create-directory)
15406         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
15407         (nnml-save-marks): Use nnml-group-pathname instead of
15408         nnmail-group-pathname.
15409
15410         (nnml-request-create-group, nnml-request-expire-articles)
15411         (nnml-request-move-article, nnml-request-delete-group)
15412         (nnml-deletable-article-p, nnml-possibly-create-directory)
15413         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
15414         (nnml-open-marks): Bind file-name-coding-system to
15415         nnmail-pathname-coding-system.
15416
15417         (nnml-request-article): Pass server argument to nnml-find-group-number.
15418         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
15419         Pass server argument to nnml-possibly-create-directory.
15420         (nnml-request-accept-article): Pass server argument to
15421         nnml-active-number and nnml-save-mail.
15422         (nnml-find-group-number): Pass server argument to nnml-find-id.
15423         (nnml-request-update-info): Pass server argument to
15424         nnml-marks-changed-p.
15425
15426         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
15427         (nnml-save-mail, nnml-active-number): Add server argument.
15428
15429         (nnml-request-delete-group): Warn if group is missing.
15430         (nnml-get-nov-buffer): Decode group name.
15431         (nnml-generate-active-info): Encode group name.
15432         (nnml-open-marks): Decode group name in messages.
15433
15434 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15435
15436         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
15437         if it is not specified.
15438         (gnus-article-pipe-part, gnus-article-save-part)
15439         (gnus-article-interactively-view-part, gnus-article-copy-part)
15440         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
15441         (gnus-article-inline-part, gnus-article-save-part-and-strip)
15442         (gnus-article-replace-part, gnus-article-delete-part)
15443         (gnus-article-view-part-as-type): Pass raw prefix argument to
15444         gnus-article-part-wrapper.
15445
15446 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15447
15448         * gnus-agent.el (gnus-agent-save-active):
15449         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
15450
15451         * gnus-cache.el (gnus-cache-save-buffers)
15452         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
15453         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
15454         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
15455         (gnus-cache-braid-nov, gnus-cache-braid-heads)
15456         (gnus-cache-generate-active, gnus-cache-rename-group)
15457         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
15458         (gnus-cache-update-overview-total-fetched-for):
15459         Bind file-name-coding-system to nnmail-pathname-coding-system.
15460         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
15461         New variables.
15462         (gnus-cache-decoded-group-name): New function.
15463         (gnus-cache-file-name): Use it.
15464         (gnus-cache-generate-active): Use non-decoded group name for active.
15465
15466         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
15467         right place.
15468         (gnus-write-active-file): Don't break non-ASCII group names.
15469
15470         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
15471         nnmail-pathname-coding-system.
15472
15473         * lpath.el: Bind default-file-name-coding-system,
15474         file-name-coding-system and language-info-alist for XEmacs.
15475
15476         * gnus-uu.el (gnus-uu-decode-save): Typo.
15477
15478 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15479
15480         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
15481
15482 2007-07-14  David Kastrup  <dak@gnu.org>
15483
15484         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
15485         finishing actions if we did not edit the article.
15486
15487 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15488
15489         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
15490         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
15491         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
15492         (gnus-agent-flush-group, gnus-agent-flush-cache)
15493         (gnus-agent-fetch-headers, gnus-agent-load-alist)
15494         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
15495         (gnus-agent-retrieve-headers, gnus-agent-request-article)
15496         (gnus-agent-regenerate-group)
15497         (gnus-agent-update-files-total-fetched-for)
15498         (gnus-agent-update-view-total-fetched-for):
15499         Bind file-name-coding-system to nnmail-pathname-coding-system.
15500         (gnus-agent-group-pathname): Don't encode file names by
15501         nnmail-pathname-coding-system.
15502         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
15503         coding-system-for-write instead of buffer-file-coding-system to
15504         gnus-agent-file-coding-system.
15505
15506         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
15507         Decode group name.
15508
15509         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
15510
15511         * gnus-start.el (gnus-update-active-hashtb-from-killed)
15512         (gnus-read-newsrc-el-file): Make group names unibyte.
15513
15514         * nnmail.el (nnmail-group-pathname): Don't encode file names by
15515         nnmail-pathname-coding-system.
15516
15517         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
15518         (nnrss-request-delete-group): Bind file-name-coding-system to
15519         nnmail-pathname-coding-system.
15520         (nnrss-read-server-data, nnrss-read-group-data):
15521         Bind file-name-coding-system correctly.
15522         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
15523
15524         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
15525         (nntp-server-to-method-cache): New variable.
15526         (nntp-group-pathname): New function that decodes non-ASCII group names.
15527         (nntp-possibly-create-directory, nntp-marks-changed-p)
15528         (nntp-save-marks, nntp-open-marks): Use it.
15529         (nntp-possibly-create-directory, nntp-open-marks):
15530         Bind file-name-coding-system to nnmail-pathname-coding-system.
15531         (nntp-open-marks): Decode group names when bootstrapping marks.
15532
15533         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
15534         Newsgroups and Followup-To headers.
15535
15536 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15537
15538         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
15539         (gnus-server-closed-face, gnus-server-denied-face)
15540         (gnus-server-offline-face): Remove variable.
15541         (gnus-server-font-lock-keywords): Use faces that are not aliases.
15542
15543         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
15544         of modifying message-stack directly for XEmacs.
15545
15546         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
15547         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
15548         if the coding-system argument is nil for XEmacs.
15549
15550         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
15551         mm-charset-override-alist.
15552
15553         * rfc2047.el: Don't require base64; require rfc2045 for the function
15554         rfc2045-encode-string.
15555         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
15556         to quote the parameter value.
15557
15558 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15559
15560         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
15561         form in gnus-group-name-charset-method-alist.
15562
15563         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
15564         overrides the default layout edit-form.
15565
15566         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
15567
15568         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
15569
15570 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15571
15572         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
15573         as unfetched articles.
15574
15575 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
15576
15577         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
15578
15579 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15580
15581         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
15582         original back end that keeps marks in the local system.
15583
15584 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15585
15586         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
15587         arg of pop-to-buffer for XEmacs.
15588         (gnus-article-read-summary-keys): Ditto; don't restore window
15589         configuration if summary command ends up with neither article buffer
15590         nor summary buffer; describe bindings if summary keys end with C-h.
15591
15592 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15593
15594         * message.el (message-fix-before-sending): Skip raw message part to be
15595         forwarded while checking illegible text.
15596         (message-forward-make-body-mime, message-forward-make-body):
15597         Mark signed or encrypted raw message as having no illegible text.
15598
15599 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15600
15601         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
15602         (gnus-message-with-timestamp-1): New macro.
15603         (gnus-message-with-timestamp): New function.
15604         (gnus-message): Use them.
15605
15606         * nnheader.el (nnheader-message): Use them.
15607
15608 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
15609
15610         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
15611         .newsrc.eld file.
15612
15613 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15614
15615         * gnus-agent.el (gnus-agent-fetch-headers)
15616         (gnus-agent-retrieve-headers):
15617         Bind gnus-decode-encoded-address-function to identity.
15618
15619         * nntp.el (nntp-send-xover-command): Recognize an xover command is
15620         available also when the server returns simply a dot.
15621
15622         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
15623
15624 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15625
15626         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
15627
15628 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15629
15630         * gnus-ems.el (gnus-x-splash): Make it work.
15631
15632         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
15633         from being used.
15634
15635         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
15636
15637 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15638
15639         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
15640         4th and the 5th arguments.
15641
15642         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
15643         the front stickiness.
15644         (gnus-article-summary-command-nosave): Correct the order of the
15645         arguments passed to pop-to-buffer.
15646         (gnus-article-read-summary-keys): Ditto; make it work properly when the
15647         summary command ends up with the article buffer.
15648
15649         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
15650         the same faces.
15651
15652 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
15653
15654         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
15655
15656 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
15657
15658         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
15659         * gnus-sum.el (gnus-summary-highlight):
15660         * pgg.el (pgg-sign-region, pgg-sign):
15661         * mail-source.el (mail-source-delete-old-incoming-confirm):
15662         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
15663
15664 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15665
15666         * gnus-art.el (gnus-mime-view-part-externally)
15667         (gnus-mime-view-part-internally): Fix predicate function passed to
15668         completing-read.
15669
15670         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
15671
15672         * gnus.el (gnus-update-message-archive-method): Add :version.
15673
15674 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15675
15676         * gnus.el (gnus-update-message-archive-method): New variable.
15677
15678         * gnus-start.el (gnus-setup-news): Update saved "archive" method
15679         according to gnus-message-archive-method if
15680         gnus-update-message-archive-method is non-nil.
15681
15682 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15683
15684         * gnus-sum.el (gnus-summary-limit-to-address): New function.
15685         Suggested by Loic Dachary <loic@dachary.org>.
15686         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
15687
15688 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15689
15690         * message.el (message-pop-to-buffer): Add switch-function argument.
15691         (message-mail): Pass switch-function argument to it.
15692
15693 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
15694
15695         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
15696         Improve doc string.
15697
15698 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15699
15700         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
15701         (gnus-header-content):
15702         * gnus-cite.el (gnus-cite-10):
15703         * gnus-srvr.el (gnus-server-closed):
15704         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
15705         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
15706         (gnus-group-mail-3-empty, gnus-group-mail-low)
15707         (gnus-group-mail-low-empty, gnus-splash):
15708         * message.el (message-header-to, message-header-cc)
15709         (message-header-subject, message-header-other, message-header-name)
15710         (message-header-xheader, message-separator, message-cited-text)
15711         (message-mml): Lighten colors of faces used for dark background.
15712
15713 2007-05-24  Simon Josefsson  <simon@josefsson.org>
15714
15715         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
15716         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
15717
15718 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15719
15720         * message.el (message-narrow-to-headers-or-head):
15721         Ignore mail-header-separator in the body.
15722
15723 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15724
15725         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
15726         same as window size.
15727
15728 2007-05-22  Kevin Ryde  <user42@zip.com.au>
15729
15730         * message.el (message-font-lock-keywords): Use message-header-xheader
15731         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
15732         ahead of the anything pattern, to get it recognized.
15733
15734 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15735
15736         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
15737         spam.el loads uses it in the compiled defadvice form.
15738
15739 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
15740
15741         * gnus-sum.el (gnus-articles-to-read)
15742         (gnus-summary-insert-old-articles): Don't truncate group name for
15743         `read-string'.
15744
15745         * gnus-util.el (gnus-limit-string): Delete this function.
15746
15747         * gnus-sum.el (gnus-simplify-subject-fully):
15748         Use `truncate-string-to-width' instead.
15749
15750 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
15751
15752         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
15753         Tell if, on summary exit, the next group has to be selected.
15754         (gnus-summary-exit): Use it.
15755
15756 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
15757
15758         * gnus-art.el (gnus-article-mode): Fix comment about displaying
15759         non-break space.
15760
15761 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15762
15763         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
15764         Check if group is not a directory.
15765         (nnfolder-request-expire-articles): Don't delete articles if the target
15766         group is not available.
15767
15768         * nnml.el (nnml-request-create-group): Properly check if group is not a
15769         file.
15770         (nnml-request-expire-articles): Don't delete articles if the target
15771         group is not available.
15772
15773         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
15774         Don't quote characters that are within parentheses.
15775
15776 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15777
15778         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
15779         (gnus-handle-ephemeral-exit): Select article according to it.
15780
15781 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
15782
15783         * message.el (message-insert-formated-citation-line): Remove newline.
15784         (message-citation-line-format): Add final \n here so that the user can
15785         avoid a blank line.
15786
15787 2007-05-03  Dan Christensen  <jdc@uwo.ca>
15788
15789         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
15790         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
15791         Update lanl/arXiv support.
15792
15793 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
15794
15795         * gnus.el: Bump version number.
15796
15797 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15798
15799         * gnus.el (gnus-version-number): Bump version.
15800
15801 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15802
15803         * gnus.el: No Gnus v0.6 is released.
15804
15805 2007-04-27  Didier Verna  <didier@xemacs.org>
15806
15807         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
15808         * gmm-utils.el (gmm-regexp-concat): ... here.
15809         * message.el: Don't require 'gnus-util.
15810         (message-dont-reply-to-names): Handle name change above.
15811         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
15812
15813 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15814
15815         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
15816         since the initial value varies according to the system.
15817
15818 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15819
15820         * mm-util.el (mm-charset-synonym-alist): Defcustom.
15821
15822 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
15823
15824         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
15825
15826 2007-04-24  Didier Verna  <didier@xemacs.org>
15827
15828         Improve the type of gnus-ignored-from-addresses.
15829         * gnus-util.el (gnus-orify-regexp): New function.
15830         * message.el (gnus-util): Require it.
15831         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
15832         * gnus-sum.el (gnus-ignored-from-addresses): New function.
15833         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
15834
15835 2007-04-24  Didier Verna  <didier@xemacs.org>
15836
15837         * gnus-sum.el:
15838         * gnus-utils.el: Fix some trailing whitespaces.
15839
15840 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15841
15842         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
15843         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
15844         article's Message-ID; refer parent article in summary buffer.
15845
15846         * message.el (message-bounce): Call mime-to-mml.
15847
15848         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
15849         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
15850         optimize and/or forms properly.
15851
15852 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
15853
15854         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
15855         URL.
15856
15857 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15858
15859         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
15860
15861 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15862
15863         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
15864         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
15865         displayed of multipart/alternative part if it is invoked from summary
15866         buffer.
15867
15868         * mm-view.el (mm-inline-text-html-render-with-w3m)
15869         (mm-inline-text-html-render-with-w3m-standalone)
15870         (mm-inline-render-with-function): Use mail-parse-charset by default.
15871
15872 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
15873
15874         * parse-time.el (parse-time-string-chars): Check if CHAR
15875         is less than the length of parse-time-syntax.
15876
15877 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15878
15879         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
15880         from gnus-newsgroup-processable.
15881
15882 2007-04-16  Didier Verna  <didier@xemacs.org>
15883
15884         * gnus-msg.el (gnus-configure-posting-styles):
15885         Handle message-signature-directory properly with :file syntax.
15886         Reported by "Leo".
15887
15888 2007-04-11  Didier Verna  <didier@xemacs.org>
15889
15890         New user option: message-signature-directory.
15891         * gnus-msg.el (gnus-configure-posting-styles): Support it.
15892         * message.el (message-insert-signature): Ditto.
15893         * message.el (message-signature-file): Doc update.
15894         * message.el (message-signature-directory): New.
15895
15896 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15897
15898         * gnus-msg.el (gnus-inews-yank-articles):
15899         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
15900
15901 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15902
15903         * message.el (message-yank-original): Make sure cited text ends with
15904         newline; don't exchange point and mark.
15905
15906 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
15907
15908         * tls.el (open-tls-stream): Properly handle case where there
15909         is no associated buffer.
15910
15911 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
15912
15913         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
15914         message-yank-original, make sure (< mark TEXT point).
15915
15916 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
15917
15918         * message.el (message-fill-column): New variable.
15919         (message-mode): Use it.  Add comment on a possible new hook.
15920
15921         * nnmail.el (nnmail-spool-file): Mark as obsolete.
15922         (nnmail-get-new-mail): Reformat.
15923
15924         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
15925
15926         * gmm-utils.el: Fix Commentary.
15927         (gmm-tool-bar-from-list): Fix typo in doc string.
15928
15929 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
15930
15931         * message.el (message-yank-original): Don't switch point and mark
15932         unnecessarily to put point and mark as documented.
15933
15934 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15935
15936         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
15937         from the message heads.
15938
15939 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
15940
15941         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
15942         article buffer does not have a window.  This may not be the best
15943         solution but is certainly better than setting the start of the null,
15944         that is the current, window.
15945
15946 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
15947
15948         * gnus-draft.el (gnus-draft-setup-hook): New hook.
15949         (gnus-draft-setup): Run it.
15950
15951         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
15952         gnus-score-fast-scoring.  Allow regexp.
15953         (gnus-score-headers): Use it.
15954
15955         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
15956         XEmacs.
15957
15958         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
15959         string.
15960         (gnus-button-alist): Also catch `<f1> k ...'.
15961         (gnus-treat-display-x-face): Fix doc string.
15962
15963 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
15964
15965         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
15966         evaluation of gnus-extended-version to ensure correct generation of the
15967         User-Agent header when message-generate-headers-first is used.
15968
15969 2007-03-24  Simon Josefsson  <simon@josefsson.org>
15970
15971         * hashcash.el (hashcash-generate-payment-async): Don't crash if
15972         hashcash-path is nil.  Don't call callback with incorrect number of
15973         parameters if val is 0.
15974
15975 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
15976
15977         * message.el (message-required-news-headers):
15978         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
15979
15980 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
15981
15982         * tls.el (open-tls-stream): In handshake-waiting loop,
15983         don't wait more if there is output available to process.
15984
15985 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
15986
15987         * tls.el (tls-program): Doc fix.
15988
15989 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15990
15991         * message.el (message-generate-new-buffers): Change the meaning of the
15992         nil value; add `standard' to the choices; treat t as `unique'; improve
15993         doc string.
15994         (gnus-select-frame-set-input-focus): Autoload.
15995         (message-buffer-name): Search for the existing message buffer if
15996         message-generate-new-buffers is nil or `standard'; treat the value t of
15997         message-generate-new-buffers as `unique'.
15998         (message-pop-to-buffer): Raise the frame already displaying the message
15999         buffer; clear the echo area after querying.
16000         (message-setup): Pass the `continue' argument to compose-mail.
16001         (message-mail): Prefer `switch-function' if it is given; search for the
16002         existing message buffer if the `continue' argument is non-nil; pass
16003         continue and switch-function arguments to compose-mail by way of
16004         message-setup.
16005         (message-mail-other-window): Adjust argument of message-setup.
16006         (message-mail-other-frame): Ditto.
16007
16008 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16009
16010         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
16011         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
16012         to turn font-lock on when turning gnus-message-citation-mode on.
16013
16014 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
16015
16016         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
16017         (mml-smime-function-alist): New variable; add epg as the backend.
16018         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
16019         mml-smime- functions instead.
16020         * mm-view.el: Require smime.
16021
16022 2007-03-05  Didier Verna  <didier@xemacs.org>
16023
16024         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
16025         instead of just inheritance for posting styles.
16026         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
16027
16028 2007-02-24  Chris Moore  <dooglus@gmail.com>
16029
16030         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
16031         * pgg-pgp.el (pgg-pgp-encrypt-region):
16032         * pgg-gpg.el (pgg-gpg-encrypt-region):
16033         Check pgg-encrypt-for-me if no other recipients.
16034
16035 2007-02-24  John Paul Wallington  <jpw@pobox.com>
16036
16037         * tls.el (tls-certtool-program): Fix custom type.
16038
16039 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16040
16041         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
16042         and point-at-eol instead of line-(beginning|end)-position.
16043
16044         * assistant.el (assistant-parse-buffer): Ditto.
16045
16046         * netrc.el (netrc-parse-services): Ditto.
16047
16048 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
16049
16050         * mml2015.el (mml2015-epg-find-usable-key): New function.
16051         (mml2015-epg-sign): Use it.
16052         (mml2015-epg-encrypt): Use it.
16053
16054 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16055
16056         * message.el (message-make-in-reply-to): Quote name containing
16057         non-ASCII characters.  It will make the RFC2047 encoder cause an error
16058         if there are special characters.  Reported by NAKAJI Hiroyuki
16059         <nakaji@jp.freebsd.org>.
16060
16061 2007-02-27  Didier Verna  <didier@xemacs.org>
16062
16063         Include the group parameters as well as the topic ones in the
16064         inheritance filter process.
16065         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
16066         argument GROUP-PARAMS-LIST.
16067         * gnus-topic.el (gnus-group-topic-parameters): Use it.
16068
16069 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
16070
16071         * nntp.el (nntp-never-echoes-commands)
16072         (nntp-open-connection-functions-never-echo-commands): New variables.
16073         (nntp-send-command): Use them.
16074
16075 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
16076
16077         * mml2015.el (mml2015-epg-verify): Simplify.
16078
16079 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16080
16081         * mml.el (mml-content-disposition-alist): New user option.
16082         (mml-content-disposition): New function.
16083         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
16084         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
16085
16086 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
16087
16088         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
16089         verification.
16090
16091 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16092
16093         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
16094         articles posted in the last 24 hours.
16095
16096 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
16097
16098         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
16099
16100 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
16101
16102         * nntp.el (nntp-send-command): Don't wait for echoes when
16103         nntp-open-ssl-stream is used.
16104
16105 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16106
16107         * gnus-cite.el (gnus-test-font-lock-add-keywords)
16108         (gnus-message-add-citation-keywords)
16109         (gnus-message-remove-citation-keywords): Remove.
16110         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
16111         directly, make the variables in font-lock-defaults buffer-local, add
16112         gnus-message-citation-keywords to them and then update the value of
16113         font-lock-keywords.
16114
16115 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16116
16117         * message.el (message-cite-original-1): Don't call
16118         gnus-article-highlight-citation.
16119
16120         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
16121         citations; fix line count.
16122
16123 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
16124
16125         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
16126         (gnus-message-add-citation-keywords)
16127         (gnus-message-remove-citation-keywords): Use it; fix the emulating
16128         versions of font-lock-add-keywords and font-lock-remove-keywords to
16129         work with XEmacs correctly.
16130
16131 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16132
16133         * gnus-cite.el (gnus-cite-face-list): Set the values of
16134         gnus-message-max-citation-depth and gnus-message-citation-keywords.
16135         (gnus-message-max-citation-depth): Use defvar rather than defconst.
16136         (gnus-message-cite-prefix-regexp): New variable.
16137         (gnus-message-search-citation-line): Use it; protect against long
16138         citation prefix; fill match data with nil rather than 0 for XEmacs; set
16139         the 0th match data for Emacs.
16140         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
16141         (gnus-message-add-citation-keywords): Append keywords rather than
16142         prepending; emulate font-lock-add-keywords if it is not available.
16143         (gnus-message-remove-citation-keywords):
16144         Emulate font-lock-remove-keywords if it is not available.
16145
16146         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
16147
16148         * message.el (message-cite-prefix-regexp): Set the value of
16149         gnus-message-cite-prefix-regexp.
16150
16151 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16152
16153         * nnweb.el (nnweb-google-parse-1): Update parser.
16154
16155 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
16156
16157         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
16158
16159 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16160
16161         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
16162         regexp.
16163
16164 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16165
16166         * uudecode.el (uudecode-string-to-multibyte): New function emulating
16167         string-to-multibyte.
16168         (uudecode-decode-region-internal): Use it.
16169
16170         * lpath.el: Fbind string-as-multibyte for XEmacs.
16171
16172 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
16173
16174         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
16175         Fix custom choice.
16176
16177         * gnus-art.el (gnus-signature-limit): Fix custom choice.
16178
16179 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
16180
16181         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
16182
16183         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
16184         `write-region' to respect `mm-inhibit-file-name-handlers'.
16185
16186 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
16187
16188         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
16189         Use gnus-home-directory instead of "~/" or "$HOME".
16190
16191 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
16192
16193         * encrypt.el (encrypt-insert-file-contents): Add better prompt
16194         to mention filename.
16195         Add comments at beginning regarding usage.
16196         (encrypt-write-file-contents): Change interactive so a string is
16197         acceptable.  If the file has no associated model, show an error instead
16198         of a nonsense prompt.
16199
16200 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
16201
16202         * spam.el (spam-bsfilter-ham-switch): Fix typo.
16203         Thanks to Yoshihiko Yamada for kind notification of this typo.
16204
16205 2007-01-12  Kenichi Handa  <handa@m17n.org>
16206
16207         * uudecode.el (uudecode-decode-region-internal): Make it work in a
16208         multibyte buffer.
16209
16210 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
16211
16212         * gnus-score.el (gnus-score-fast-scoring): New variable.
16213         (gnus-score-headers): Use it.
16214
16215         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
16216
16217         * message.el (message-cite-original-1):
16218         Call gnus-article-highlight-citation if requested.
16219         (message-make-from): Allow name and address as optional arguments.
16220
16221         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
16222
16223         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
16224         bugs to doc string.
16225         (gnus-button-alist): Add mid\\|message-id.
16226         (gnus-button-fetch-group): Extend for use in
16227         `browse-url-browser-function'.
16228         (gnus-button-url-regexp): Try to catch paired parentheses like in
16229         Wikipedia URLs.
16230
16231         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
16232         Suggested by Simon Krahnke <overlord@gmx.li>.
16233
16234 2007-01-13  Romain Francoise  <romain@orebokech.com>
16235
16236         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
16237         Update copyright.
16238
16239 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
16240
16241         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
16242
16243 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
16244
16245         * gnus-registry.el (gnus-registry-unfollowed-groups)
16246         (gnus-registry-split-fancy-with-parent): Fix documentation.
16247
16248 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16249
16250         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
16251         from nnweb groups.
16252
16253 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16254
16255         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
16256         Xref urls.  Erase buffer before requesting head.
16257
16258         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
16259
16260 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
16261
16262         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
16263         customizable.
16264
16265 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
16266
16267         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
16268         no signing key is found.
16269         (mml2015-epg-encrypt): Ask user whether to skip or abort if
16270         no encrypting and/or signing key is found.
16271
16272 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
16273
16274         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
16275
16276 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16277
16278         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
16279         headers read from disk with the ones newly found in the current search.
16280         This should no longer cause problems, because the article numbers in
16281         Gmane's `nov.php' output are ignored since the previous change.
16282
16283 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16284
16285         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
16286
16287 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16288
16289         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
16290         replace-regexp-in-string; bind url-version; fbind display-images-p and
16291         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
16292         find-face and set-itimer-function for Emacs; bind itimer-list for
16293         Emacs.
16294
16295         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
16296
16297 2007-01-01  Romain Francoise  <romain@orebokech.com>
16298
16299         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
16300
16301 2006-12-31  Steve Youngs  <steve@sxemacs.org>
16302
16303         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
16304         `define-minor-mode' macro definition expanded properly.
16305         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
16306         exclude it there.
16307
16308         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
16309         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
16310         `fboundp' test.
16311         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
16312         This is OK to autoload in (S)XEmacs now.
16313
16314 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16315
16316         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
16317         keystroke.
16318         (gnus-summary-limit-to-singletons): Fix typo.
16319
16320         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
16321         else fails.
16322
16323 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16324
16325         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
16326         docstring.
16327
16328         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
16329         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
16330         (gnus-summary-insert-dormant-articles): Fix typo in message.
16331
16332 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
16333
16334         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
16335         nil for XEmacs.
16336         (gnus-message-citation-mode): Don't autoload in XEmacs.
16337
16338         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
16339
16340 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
16341
16342         * nnimap.el (nnimap-expunge-search-string):
16343         Mention nnimap-search-uids-not-since-is-evil in docstring.
16344
16345 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
16346
16347         * spam.el: Revert to make-obsolete-variable because
16348         define-obsolete-variable-alias is not supported in Emacs 21.
16349
16350         * spam.el (spam-ifile-path, spam-ifile-database-path)
16351         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
16352         make-obsolete-variable.
16353         (spam-bsfilter-path, spam-bsfilter-program)
16354         (spam-spamassassin-path, spam-spamassassin-program)
16355         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
16356         Don't use "path" inappropriately.
16357         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
16358         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
16359         variable names.
16360
16361 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
16362
16363         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
16364         summary buffer.
16365
16366         * password.el (password-cache-remove): Use clear-string to burn
16367         password, if available.
16368
16369 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
16370
16371         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
16372
16373         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
16374
16375         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
16376         (gnus-message-highlight-citation): Move defcustom here from
16377         gnus-cite.el.
16378         (gnus-message-citation-mode): Autoload.
16379
16380         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
16381         checks to make it compile with XEmacs.
16382         (gnus-message-citation-mode): New minor mode.
16383         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
16384         (gnus-message-highlight-citation): New variables.
16385         (gnus-message-search-citation-line)
16386         (gnus-message-add-citation-keywords)
16387         (gnus-message-remove-citation-keywords)
16388         (turn-on-gnus-message-citation-mode)
16389         (turn-off-gnus-message-citation-mode): New functions.
16390
16391 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
16392
16393         * gnus-cite.el: Enable highlighting of different citation levels in
16394         message-mode.
16395
16396 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
16397
16398         * message.el (message-make-fqdn): Fix comment.
16399         (message-bogus-system-names): Add ".local".
16400
16401         * spam.el (spam-ifile-path, spam-ifile-program)
16402         (spam-ifile-database-path, spam-ifile-database)
16403         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
16404         Don't use "path" inappropriately.
16405         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
16406         strings.
16407         (spam-check-ifile, spam-ifile-register-with-ifile)
16408         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
16409         Use new variable names.
16410
16411         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
16412         (gnus-treat-display-smileys): Simplify using
16413         gnus-image-type-available-p.
16414
16415         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
16416         available.
16417
16418         * gnus-xmas.el (gnus-xmas-image-type-available-p):
16419         Use `display-images-p' if available.
16420
16421 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16422
16423         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
16424         one after turning on the buffer's multibyteness instead of decoding
16425         them directly in the unibyte buffer that causes unexpected conversion
16426         in Emacs 23 (unicode).
16427
16428 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16429
16430         * message.el (message-generate-hashcash): Fix custom type.
16431
16432 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
16433
16434         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
16435
16436 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
16437
16438         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
16439         disconnect icons.  Add help text.
16440
16441 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
16442
16443         * spam.el (spam-extra-header-to-number): CRM114 spam score is
16444         negated to be consistent with the others we handle.
16445
16446 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16447
16448         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
16449         version of gnus-summary-buffer to something, so that we can use two
16450         article buffers at the same time.
16451
16452 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
16453
16454         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
16455         trigger all the extra headers.
16456         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
16457         sorting.
16458
16459 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16460
16461         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
16462         solid groups.
16463
16464 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
16465
16466         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
16467
16468 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
16469
16470         * legacy-gnus-agent.el: Add Copyright notice.
16471
16472 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
16473
16474         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
16475
16476 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16477
16478         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
16479
16480         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
16481         to make it work reliably in CVS Emacs.
16482         (gnus-summary-limit-strange-charsets-predicate)
16483         (gnus-summary-limit-to-predicate): New functions.
16484
16485 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
16486
16487         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
16488         specifying array size.
16489         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
16490         array if it is too small.
16491         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
16492         (gnus-sort-threads-loop): New function.
16493
16494 2006-12-06  Chris Moore  <dooglus@gmail.com>
16495
16496         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
16497         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
16498
16499 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
16500
16501         * mm-url.el (mm-url-predefined-programs): Call curl with correct
16502         options.
16503
16504 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16505
16506         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
16507         DOS-ing the recipient.
16508
16509         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
16510         the headers when creating the mapping to avoid mismappings.
16511         (nnweb-gmane-create-mapping): Always nix out old mapping.
16512
16513 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16514
16515         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
16516         and mm-verify-option to never.
16517
16518 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16519
16520         * message.el (message-signed-or-encrypted-p): New function.
16521         (message-forward-make-body): Use it.
16522
16523         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
16524         Replace encode-coding-string with mm-encode-coding-string.
16525
16526 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16527
16528         * nneething.el (nneething-decode-file-name):
16529         Replace decode-coding-string with mm-decode-coding-string.
16530
16531         * gnus-int.el (gnus-open-server): Say failed server's name.
16532
16533 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16534
16535         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
16536         strings to a single string.  Quote `errors-file-name'.
16537         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
16538         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
16539         Adjust calls.  Use `shell-quote-argument'.
16540
16541 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
16542
16543         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
16544         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
16545
16546         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
16547         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
16548         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
16549         (gnus-group-make-directory-group, gnus-group-transpose-groups):
16550         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
16551         (gnus-subscribe-newsgroup, gnus-1):
16552         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
16553         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
16554         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
16555         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
16556
16557 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16558
16559         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
16560         keystroke.
16561         (gnus-summary-limit-to-bodies): Implement headersp.
16562
16563 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16564
16565         * dns.el (query-dns): Protect against "Process dns deleted" strings.
16566
16567 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16568
16569         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
16570
16571 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16572
16573         * message.el (message-generate-hashcash): Expand range of values to
16574         include `opportunistic'.
16575         (message-send-mail): Use it.
16576
16577 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16578
16579         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
16580         and comment it.
16581
16582         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
16583
16584 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
16585
16586         * gnus-util.el (gnus-extract-address-components): Improve comment.
16587
16588 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16589
16590         * gnus-util.el (gnus-extract-address-components): Work with address in
16591         which the name portion contains @.
16592
16593         * lpath.el: Fbind custom-autoload.
16594
16595 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
16596
16597         * gnus.el (gnus-start): Move custom group up.
16598         (gnus-select-method): Don't autoload, but make it available for
16599         `customize-variable'.
16600         (gnus-getenv-nntpserver): Don't autoload.
16601
16602 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
16603
16604         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
16605
16606 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
16607
16608         * message.el (message-sendmail-extra-arguments): New variable.
16609         (message-send-mail-with-sendmail): Use it.
16610
16611 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16612
16613         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
16614         mm-with-unibyte-current-buffer to make string unibyte.
16615
16616         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
16617         mm-string-as-multibyte.
16618
16619 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
16620
16621         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
16622         Reported by Werner Koch <wk@gnupg.org>.
16623
16624 2006-11-14  Daiki Ueno  <ueno@p360>
16625
16626         * mml2015.el: Autoload epa-select-keys when compiling.
16627
16628 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
16629
16630         * mml2015.el (mml2015-epg-sign): Save the signing keys in
16631         message-options.
16632         (mml2015-epg-encrypt): Save the recipient keys in message-options.
16633
16634 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
16635
16636         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
16637         EasyPG (< 0.0.6).
16638         (mml2015-always-trust): New user option.
16639         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
16640         prompt.
16641
16642 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16643
16644         * nntp.el (nntp-authinfo-force): New variable.
16645         (nntp-send-authinfo): Use it.
16646
16647 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
16648
16649         * message.el (message-strip-subject-encoded-words): Allow _not_ to
16650         decode encoded words.  Improve prompt.  Add comment about forwarding.
16651         (message-replacement-char): Move up.
16652
16653 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
16654
16655         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
16656         instead of gnus-intersection because arguments of gnus-sorted-nunion
16657         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
16658
16659 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
16660
16661         * message.el (message-strip-subject-encoded-words): Reformat prompt.
16662         (message-simplify-subject-functions):
16663         Enable message-strip-subject-encoded-words by default.
16664
16665 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
16666
16667         * message.el (message-strip-subject-encoded-words): New function.
16668         (message-simplify-subject-functions): New variable.
16669         (message-simplify-subject): Use it.  Fix typo in doc string.
16670         Support message-strip-subject-encoded-words.
16671
16672 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
16673
16674         * gnus-diary.el (gnus-diary-delay-format-function):
16675         * nndiary.el (nndiary-reminders):
16676         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
16677
16678 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
16679
16680         * gnus-art.el (article-hide-boring-headers): Fetch date from
16681         gnus-original-article-buffer to avoid problems with localized date
16682         strings.
16683
16684 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16685
16686         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
16687
16688 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
16689
16690         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
16691         New variables.
16692         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
16693         (mm-charset-synonym-alist): Move some entries to
16694         mm-codepage-iso-8859-list.
16695         (mm-charset-synonym-alist, mm-charset-override-alist):
16696         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
16697
16698 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16699
16700         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
16701
16702 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
16703
16704         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
16705         with Emacs 21 and XEmacs.
16706
16707 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
16708
16709         * spam.el (spam-parse-address): New function for better parsing,
16710         catching errors, etc.
16711         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
16712
16713 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
16714
16715         * mm-view.el: Add interactive arg to html2text autoload.
16716
16717 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16718
16719         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
16720
16721 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
16722
16723         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
16724         New variables.
16725         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
16726         (mm-charset-synonym-alist): Move some entries to
16727         mm-codepage-iso-8859-list.
16728
16729         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
16730
16731 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
16732
16733         * message.el (message-citation-line-format)
16734         (message-insert-formated-citation-line): Fix implementation of %E, %N
16735         and %n according to the doc string.
16736
16737 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
16738
16739         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
16740         Use car-safe to avoid bad parses.
16741
16742 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16743
16744         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
16745         names.
16746
16747         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
16748
16749 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16750
16751         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
16752         header.
16753
16754         * message.el (message-draft-headers): Add Date.
16755         (message-headers-to-generate): Fix typo in docstring.
16756
16757         * nndraft.el (nndraft-required-headers): New variable.
16758         (nndraft-generate-headers): Use it.
16759
16760         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
16761
16762 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
16763
16764         * gnus-registry.el (gnus-registry-wash-for-keywords)
16765         (gnus-registry-find-keywords): New functions to allow easy searching of
16766         articles that are in the registry.
16767
16768 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
16769
16770         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
16771         Use ietf-drums-parse-address instead of gnus-extract-address-components.
16772         Reported by Damien Elmes <damien@repose.cx>.
16773
16774 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
16775
16776         * gnus.el (gnus-mime): Remove unused custom group.
16777
16778 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16779
16780         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
16781         "blank line" when searching for end of armor headers.
16782
16783 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16784
16785         * gmm-utils.el (gmm-write-region): Fix variable name.
16786
16787 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
16788
16789         * gmm-utils.el (gmm-write-region): New function based on compatibility
16790         code from `mm-make-temp-file'.
16791
16792         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
16793
16794         * nnmaildir.el (nnmaildir--update-nov)
16795         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
16796         Use `gmm-write-region'.
16797
16798 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
16799
16800         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
16801         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
16802
16803         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
16804
16805         * message.el (message-replacement-char): New variable.
16806         (message-fix-before-sending): Use it.
16807         (message-simplify-subject): New function to remove duplicate code.
16808         (message-reply, message-followup): Use it.
16809
16810         * gnus-sum.el (gnus-summary-make-menu-bar):
16811         Clarify gnus-summary-limit-to-articles.
16812
16813 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
16814
16815         * gnus-util.el (gnus-with-local-quit): New macro.
16816
16817         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
16818
16819 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
16820
16821         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
16822         ignore non-string data.
16823
16824 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
16825
16826         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
16827         non-string data (needs to be done in the registry too).
16828
16829 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16830
16831         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
16832         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
16833         (gnus-registry-split-fancy-with-parent)
16834         (gnus-registry-fetch-simplified-message-subject-fast)
16835         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
16836         Remove text properties on ingress into the registry and when it's saved.
16837         (gnus-registry-clean-empty-function): Fix bug with cleaning the
16838         registry from entries with no groups.
16839
16840 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16841
16842         * gnus-util.el (gnus-string-remove-all-properties): Add utility
16843         function to remove string properties.
16844
16845 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
16846
16847         * gmm-utils.el (gmm): Adjust custom version.
16848
16849         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
16850         Adjust custom version.
16851
16852         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
16853
16854 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
16855
16856         * gnus-art.el (gnus-insert-prev-page-button)
16857         (gnus-insert-next-page-button): Simplify.  Reformat.
16858
16859 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
16860
16861         * gnus-art.el (gnus-insert-prev-page-button)
16862         (gnus-insert-next-page-button): Apply gnus-article-button-face.
16863
16864 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
16865
16866         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
16867
16868 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
16869
16870         * gnus-art.el (gnus-insert-mime-button)
16871         (gnus-insert-mime-security-button):
16872         Apply gnus-article-button-face to MIME and security buttons.
16873
16874 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
16875
16876         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
16877         readable.
16878
16879 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16880
16881         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
16882
16883 2006-09-20  Steve Youngs  <steve@sxemacs.org>
16884
16885         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
16886         `browse-url-of-file' instead of `browse-url'.
16887
16888 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16889
16890         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
16891         regexp.  Articles containing quotation were cut prematurely.
16892
16893 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16894
16895         * message.el (message-cite-original-1): Use nobody by default for the
16896         value of From header.
16897         (message-reply): Ditto.
16898
16899 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
16900
16901         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
16902         to the gnus-info.  This fixes a bug of inline-PGP message verification.
16903         Reported by Michael Piotrowski <mxp@dynalabs.de>.
16904
16905 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
16906
16907         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
16908         mails in the doc string.  Add some URLs in comment.
16909         (pop3-movemail): Warn about pop3-leave-mail-on-server.
16910
16911 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16912
16913         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
16914         backslashes handling and the way to find boundaries of quoted strings.
16915
16916 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
16917
16918         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
16919         mml1991-encrypt-to-self is set and mml1991-signers is not set.
16920         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
16921         mml2015-encrypt-to-self is set and mml2015-signers is not set.
16922
16923 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
16924
16925         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
16926         doc string.
16927         (gnus-button-regexp, gnus-button-last): Remove unused variables.
16928
16929 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16930
16931         * lpath.el: Fbind epg-check-configuration.
16932
16933 2006-09-06  Simon Josefsson  <jas@extundo.com>
16934
16935         * mml2015.el (mml2015-use): Doc fix, mention epg.
16936
16937 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
16938
16939         * mml2015.el (mml2015-use): Default to epg, if available.
16940
16941 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
16942
16943         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
16944         message-sender.
16945         (mml1991-epg-encrypt): Ditto.
16946         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
16947         message-sender.
16948         (mml2015-epg-encrypt): Ditto.
16949
16950 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
16951
16952         * message.el (message-send-mail-with-sendmail): Look for sendmail in
16953         several common directories.
16954
16955 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
16956
16957         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
16958         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
16959
16960 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16961
16962         * gnus-art.el (article-decode-encoded-words): Make it fast.
16963
16964 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16965
16966         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
16967
16968         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
16969         in quoted string into `\'.
16970
16971 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16972
16973         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
16974         Use standard-syntax-table.
16975
16976 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16977
16978         * gnus-art.el (gnus-decode-address-function): New variable.
16979         (article-decode-encoded-words): Use it to decode headers which are
16980         assumed to contain addresses.
16981         (gnus-mime-delete-part): Remove useless `or'.
16982
16983         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
16984         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
16985         (gnus-nov-parse-line): Use it to decode From header.
16986         (gnus-get-newsgroup-headers): Ditto.
16987         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
16988
16989         * mail-parse.el (mail-decode-encoded-address-region): New alias.
16990         (mail-decode-encoded-address-string): New alias.
16991
16992         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
16993         New function.
16994         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
16995         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
16996         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
16997         (rfc2047-decode-string): Ditto.
16998         (rfc2047-decode-address-region): New function.
16999         (rfc2047-decode-address-string): New function.
17000
17001 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
17002
17003         * message.el (message-caesar-buffer-body): Allow rotating headers.
17004
17005         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
17006
17007         * message.el (message-insert-formated-citation-line): Fix %f.
17008         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
17009
17010 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
17011
17012         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
17013         (gnus-bookmark-mouse-available-p): New macro.
17014         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
17015         (gnus-bookmark-bmenu-show-infos): Use it.
17016         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
17017         (gnus-bookmark-bmenu-hide-infos): Ditto.
17018         (gnus-bookmark-remove-properties): New function.
17019         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
17020         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
17021         (gnus-bookmark-write-file): Bind coding-system-for-write.
17022         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
17023         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
17024         group before selecting it.
17025         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
17026         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
17027         quit-window if it is not available; use gnus-mouse-2 and bind it to
17028         gnus-bookmark-bmenu-select-by-mouse.
17029         (gnus-bookmark-show-details): Remove unused variable `details-list'.
17030         (gnus-bookmark-bmenu-select-by-mouse): New function.
17031
17032 2006-08-13  Romain Francoise  <romain@orebokech.com>
17033
17034         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
17035         space.
17036
17037 2006-08-10  Romain Francoise  <romain@orebokech.com>
17038
17039         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
17040         (dns-mode-soa-auto-increment-serial): New user option.
17041         (dns-mode-soa-maybe-increment-serial): New function.
17042         (dns-mode): Add the latter to `write-contents-functions'.
17043
17044 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17045
17046         * compface.el (uncompface): Use binary rather than raw-text-unix.
17047
17048 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17049
17050         * compface.el (uncompface): Make sure the eol conversion doesn't take
17051         place when communicating with the external programs.
17052         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
17053
17054 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
17055
17056         * nnheader.el (nnheader-insert-head): Fix typo in comment.
17057
17058 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17059
17060         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
17061         Make it more robust by parsing author and date independently.
17062
17063 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17064
17065         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
17066
17067 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
17068
17069         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
17070         first matching secret key.
17071         (mml2015-epg-encrypt): Ditto.
17072
17073         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
17074         first matching secret key.
17075         (mml1991-epg-encrypt): Ditto.
17076
17077         * mml2015.el (mml2015-encrypt-to-self): New user option.
17078         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
17079         mml2015-epg-encrypt-to-self is set.
17080
17081         * mml1991.el (mml1991-encrypt-to-self): New variable.
17082         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
17083         mml1991-epg-encrypt-to-self is set.
17084
17085         * mml2015.el (mml2015-signers): New user option.
17086         (mml2015-epg-sign): Reflect the value of mml2015-signers.
17087         (mml2015-epg-encrypt): Allow to select signing keys.
17088
17089         * mml1991.el (mml1991-signers): New variable.
17090         (mml1991-epg-sign): Reflect the value of mml1991-signers.
17091         (mml1991-epg-encrypt): Allow to select signing keys.
17092
17093 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17094
17095         * nnheader.el (nnheader-insert-head): Make it work even if the file
17096         uses CRLF for the line-break code.
17097
17098 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
17099
17100         * mml2015.el: Require mml-sec instead of password.
17101         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
17102         (mml2015-cache-passphrase): Inherit the default value from
17103         mml-secure-cache-passphrase.
17104         (mml2015-passphrase-cache-expiry): Inherit the default value from
17105         mml-secure-passphrase-cache-expiry.
17106
17107         * mml1991.el: Require mml-sec instead of password.
17108         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
17109         (mml1991-cache-passphrase): Inherit the default value from
17110         mml-secure-cache-passphrase.
17111         (mml1991-passphrase-cache-expiry): Inherit the default value from
17112         mml-secure-passphrase-cache-expiry.
17113
17114         * mml-sec.el: Require password.
17115         (mml-secure-verbose): New user option.
17116         (mml-secure-cache-passphrase): New user option.
17117         (mml-secure-passphrase-cache-expiry): New user option.
17118
17119 2006-07-24  David Smith  <davidsmith@acm.org>  (tiny change)
17120             Andreas Vögele  <andreas@altroot.de>   (tiny change)
17121
17122         * pgg-def.el (pgg-truncate-key-identifier):
17123         Truncate the key ID to 8 letters from the end.
17124
17125 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17126
17127         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
17128         workaround for the url package included with Emacs.
17129
17130         * nnweb.el (nnweb-google-create-mapping): Update regexp.
17131
17132 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17133
17134         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
17135         correctly.  This fixes a bug caused by the 2006-05-12 change.
17136
17137 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
17138
17139         * nnmail.el (nnmail-article-group): If splitting raises an error, give
17140         some information about the error when saying that the `bogus' mail
17141         group will be used.
17142
17143 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
17144
17145         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
17146         string.
17147
17148 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
17149
17150         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
17151
17152 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17153
17154         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
17155
17156 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
17157
17158         * mml1991.el (mml1991-function-alist): Add epg.
17159         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
17160         (mml1991-epg-encrypt): New functions.
17161
17162 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
17163
17164         * mml2015.el (mml2015-verbose): New variable.
17165         (mml2015-cache-passphrase): Ditto.
17166         (mml2015-passphrase-cache-expiry): Ditto.
17167         (mml2015-function-alist): Add epg.
17168         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
17169         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
17170         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
17171         New functions.
17172
17173 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17174
17175         * message.el (message-cite-original-1): Preserve region when removing
17176         quoted text due to X-No-Archive in order to avoid bogus attribution
17177         when citing multiple messages.
17178
17179 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17180
17181         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
17182         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
17183
17184 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
17185
17186         * gnus-diary.el (gnus-user-format-function-d)
17187         (gnus-user-format-function-D): Autoload.
17188
17189         * imap.el (Commentary): Fix typo.
17190
17191         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
17192         2006-04-22 contribution.
17193
17194 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17195
17196         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
17197         It didn't really fix the bogosity I'm seeing with solid web groups.
17198
17199 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17200
17201         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
17202         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
17203         created using server names.  If we use the feature without declaring
17204         it, Gnus does not properly manage server and group state.
17205
17206         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
17207         bound.
17208
17209 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17210
17211         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
17212         looking up the method using GROUP's prefix before inventing a new one.
17213         It is used on killed/unknown groups in various places where returning
17214         an all-new method isn't expected by the caller.
17215
17216         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
17217         and match semantics of gnus-group-real-prefix.
17218
17219 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
17220
17221         * nnmail.el (nnmail-broken-references-mailers): New variable.
17222         (nnmail-ignore-broken-references): New function generalizing
17223         nnmail-fix-eudora-headers.
17224         (nnmail-fix-eudora-headers): Now obsolete.
17225
17226         * gnus-art.el (gnus-button-handle-custom):
17227         Support `customize-apropos*'.
17228
17229 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17230
17231         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
17232
17233         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
17234         articles.
17235
17236 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
17237
17238         * message.el (message-cite-reply-above): New variable.
17239         (message-yank-original): Use it.
17240
17241 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17242
17243         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
17244
17245 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
17246
17247         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
17248         as read.
17249
17250         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
17251
17252 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
17253
17254         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
17255         (gnus-bookmark-default-file): Use gnus-directory.
17256         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
17257         Remove "*" in doc string.
17258         (gnus-bookmark-write-file): Simplify.
17259         (gnus-bookmark-maybe-sort-alist): Use `when'.
17260         (gnus-bookmark-get-bookmark): Fix typo in doc string.
17261         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
17262         Add FIXME about Emacs 21 and XEmacs compatibility.
17263         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
17264         compatibility.
17265         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
17266         compatibility.
17267         (gnus-bookmark-menu-heading): Fix version.
17268
17269 2006-06-19  Bastien Guerry  <bzg@altern.org>
17270
17271         * gnus-bookmark.el: New file.
17272
17273 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17274
17275         * message.el (message-syntax-checks): Doc fix.
17276
17277 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17278
17279         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
17280         unsubscribed groups as if they were killed ones.  It causes duplicate
17281         entries in gnus-newsrc-alist.
17282
17283 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17284
17285         * message.el (message-syntax-checks): Doc fix.
17286         (message-send-mail): Add check for continuation headers.
17287         (message-check-news-header-syntax): Fix regexp used to check for
17288         continuation headers.
17289
17290 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17291
17292         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
17293
17294 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
17295
17296         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
17297
17298 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
17299
17300         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
17301         default-truncate-lines.
17302
17303 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17304
17305         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
17306         to fill the utf-8 entry.
17307
17308         * lpath.el: Fbind unicode-precedence-list.
17309
17310 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17311
17312         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
17313
17314 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
17315
17316         * gnus-agent.el (directory-files-and-attributes): Move all the way
17317         forward (the third and final move).
17318         (gnus-agent-read-agentview): Trap reconstruction errors due to
17319         nonexistent directory.  Handle by returning nil.
17320
17321 2006-05-30  Didier Verna  <didier@xemacs.org>
17322
17323         * message.el (message-dont-reply-to-names): Update the custom type.
17324         * message.el (message-dont-reply-to-names): New defsubst: potentially
17325         convert a list of regexps into a single one.
17326         * message.el (message-get-reply-headers): Use it.
17327         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
17328
17329 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
17330
17331         * gnus-agent.el (directory-files-and-attributes): Move forward.
17332
17333 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
17334
17335         * gnus-ml.el (gnus-mailing-list-subscribe)
17336         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
17337         (gnus-mailing-list-message): Fix doc strings.
17338
17339 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17340
17341         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
17342         of doing it manually.
17343
17344 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
17345
17346         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
17347         comment.
17348
17349 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
17350
17351         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
17352         (gnus-agent-read-agentview): Fix handling of end-of-file error.
17353         (gnus-agent-read-local): All symbols allocated in my-obarray.
17354         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
17355         (gnus-agent-regenerate-group): Check numeric names to see if they are
17356         messages or groups.
17357         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
17358         better way of do this...)
17359
17360         * gnus-cache.el (gnus-agent-total-fetched-for):
17361         Ignore 'dummy.group' (there should be a better way of do this...)
17362
17363 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17364
17365         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
17366         (gnus-saved-headers): Ditto.
17367         (gnus-default-article-saver): Mention functions may have properties.
17368         (gnus-article-save): Override gnus-save-all-headers and
17369         gnus-saved-headers by :headers property which saver function may have.
17370         (gnus-summary-save-in-file): Add :headers property.
17371         (gnus-summary-write-to-file): Ditto.
17372
17373         * gnus-sum.el (gnus-summary-save-article): Bind
17374         gnus-prompt-before-saving to t when saving many articles in a file;
17375         always show all headers.
17376
17377         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
17378
17379 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
17380
17381         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
17382         marks.
17383
17384         * message.el (message-indent-citation): Add optional arguments to allow
17385         using it outside of message buffers.
17386
17387         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
17388         (gnus-article-treat-unfold-headers): Use it.
17389         (gnus-article-truncate-lines): New variable.
17390         (gnus-article-mode): Use it.
17391         (gnus-article-toggle-truncate-lines): New function.
17392
17393         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
17394         Add gnus-article-toggle-truncate-lines.
17395
17396         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
17397         coding system in XEmacs, use binary.
17398
17399 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17400
17401         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
17402         after-load-alist.
17403
17404         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
17405         this function should save decoded articles.
17406         (gnus-summary-write-to-file): Use property to specify this function
17407         should save decoded articles and specify gnus-summary-save-in-file
17408         should be used to save articles other than the first one when saving
17409         many articles.
17410         (gnus-summary-save-body-in-file): Use property to specify this
17411         function should save decoded articles.
17412         (gnus-summary-write-body-to-file): Use property to specify this
17413         function should save decoded articles and specify
17414         gnus-summary-save-body-in-file should be used to save articles other
17415         than the first one when saving many articles.
17416
17417         * gnus-sum.el (gnus-summary-save-article): Simplify.
17418
17419 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17420
17421         * gnus-art.el (gnus-default-article-saver):
17422         Add gnus-summary-write-body-to-file.
17423         (gnus-article-save-coding-system): Don't use coding system object
17424         in XEmacs.
17425         (gnus-read-save-file-name): Add optional `dir-var' argument which
17426         specifies directory in which files are saved; work even if optional
17427         `variable' argument is not specified.
17428         (gnus-summary-write-to-file): Read file name.
17429         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
17430         (gnus-summary-write-body-to-file): New function.
17431
17432         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
17433         (gnus-summary-local-variables): Add it.
17434         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
17435         (gnus-summary-save-article): Remove optional `decode' argument;
17436         determine whether to decode articles by the value of
17437         gnus-default-article-saver; when saving many files using
17438         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
17439         it first and use gnus-summary-save-in-file or
17440         gnus-summary-save-body-in-file thereafter unless
17441         gnus-prompt-before-saving is always; move point to article which
17442         will be saved.
17443         (gnus-summary-save-article-file): Revert.
17444         (gnus-summary-write-article-file): Revert.
17445         (gnus-summary-save-article-body-file): Revert.
17446         (gnus-summary-write-article-body-file): New function.
17447
17448 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17449
17450         * gnus-art.el (gnus-default-article-saver): Doc fix.
17451         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
17452         from gnus-summary-save-article-coding-system, and default to a
17453         certain coding system.
17454         (gnus-output-to-file): Add coding cookie and encode text according
17455         to gnus-article-save-coding-system; don't use mm-append-to-file.
17456
17457         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
17458         gnus-art.el and rename to gnus-article-save-coding-system.
17459         (gnus-summary-save-article): Require gnus-art; don't show all
17460         headers if it decodes articles; don't add coding cookie here;
17461         don't bind mm-text-coding-system-for-write.
17462         (gnus-summary-save-article-file): Save decoded articles.
17463         (gnus-summary-write-article-file): When saving many files, use
17464         gnus-summary-write-to-file first and gnus-summary-save-in-file
17465         thereafter unless gnus-prompt-before-saving is always.
17466         (gnus-summary-save-article-body-file): Save decoded articles.
17467
17468         * lpath.el: Fbind select-safe-coding-system for XEmacs.
17469
17470 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17471
17472         * nnrss.el (nnrss-check-group): Bind hash-index.
17473
17474 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
17475
17476         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
17477         its hash index.  Store this hash in `nnrss-group-data'.
17478         (nnrss-read-group-data): Update accordingly.
17479
17480 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17481
17482         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
17483         entry.
17484
17485         * gnus-sum.el (gnus-summary-make-menu-bar):
17486         Add gnus-article-browse-html-article.
17487
17488 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
17489
17490         * gnus-sum.el (gnus-summary-mime-map):
17491         Add gnus-article-browse-html-article.
17492
17493         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
17494
17495 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17496
17497         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
17498         suitable coding systems in customize.
17499
17500 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
17501
17502         * mail-source.el (mail-sources): Fix custom type.
17503
17504 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
17505
17506         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
17507         (gnus-summary-expire-articles-now): Shorten prompt.
17508
17509         * gmm-utils.el (wid-edit): Require.
17510         (defun-gmm): Rename from `gmm-defun-compat'.
17511         (gmm-image-search-load-path): Use it.
17512         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
17513
17514 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17515
17516         * gnus-sum.el (gnus-summary-save-article-coding-system):
17517         New variable.
17518         (gnus-summary-save-article): Add optional `decode' argument.
17519         If it is set and gnus-summary-save-article-coding-system is non-nil,
17520         save decoded article.
17521         (gnus-summary-write-article-file): Save decoded article if
17522         gnus-summary-save-article-coding-system is non-nil.
17523
17524         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
17525         type.
17526
17527 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17528
17529         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
17530
17531 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17532
17533         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
17534         first to test gnus-single-article-buffer which may be buffer-local.
17535
17536         * gnus-sum.el (gnus-summary-setup-buffer):
17537         Make gnus-single-article-buffer buffer-local and nil in ephemeral
17538         group; make gnus-article-buffer, gnus-article-current, and
17539         gnus-original-article-buffer always buffer-local.
17540         (gnus-summary-exit): Kill article buffer belonging to ephemeral
17541         group.
17542         (gnus-handle-ephemeral-exit): Don't move to next summary line.
17543
17544 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
17545
17546         * nnml.el (nnml-request-compact-group): Compressed files might not
17547         have .gz extension.
17548
17549 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
17550
17551         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
17552         (mm-copy-to-buffer): Use with-current-buffer.
17553         (mm-display-part): Simplify.
17554         (mm-inlinable-p): Add optional arg `type'.
17555
17556 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
17557
17558         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
17559         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
17560         Try harder to show the attachment internally or externally using
17561         gnus-mime-view-part-as-type.
17562
17563 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
17564
17565         * message.el (message-from-style, message-signature-separator)
17566         (message-user-organization-file, message-send-mail-function)
17567         (message-citation-line-function, message-yank-prefix)
17568         (message-indent-citation-function, message-signature)
17569         (message-signature-file, message-signature-insert-empty-line):
17570         Remove autoloads.
17571
17572         * gnus-art.el (gnus-buttonized-mime-types):
17573         Remove "multipart/signed".  Revert 2006-04-26 change.
17574
17575 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17576
17577         * gnus.el (gnus-version-number): Bump version.
17578
17579 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
17580
17581         * gnus.el: No Gnus v0.5 is released.
17582
17583 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17584
17585         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
17586         fetching articles by message-id.
17587
17588 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17589
17590         * message.el (hashcash): Require hashcash as normal.
17591
17592         * ecomplete.el (ecomplete-highlight-match-line):
17593         Use point-at-eol.
17594         (ecomplete-highlight-match-line): Use `highlight', because that
17595         face exists in both Emacs and XEmacs.
17596
17597         * message.el (message-display-abbrev): Use point-at-bol.
17598
17599         * mail-source.el: Don't require timer/timer-funcs.
17600
17601         * gnus-async.el: Ditto.
17602
17603         * password.el: Ditto.
17604
17605         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
17606
17607         * mm-url.el: Ditto.
17608
17609         * gnus-xmas.el: Don't require timer-funcs.
17610
17611         * mm-util.el: Require timer/timer-funcs.
17612
17613 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17614
17615         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
17616         Close.
17617
17618 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17619
17620         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
17621         unibyte after clear-decrypt function runs.
17622
17623         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
17624         returns as a unibyte string.
17625
17626 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17627
17628         * lpath.el: Revert.
17629
17630         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
17631         (pgg-gpg-process-sentinel): Revert.
17632
17633         * pgg-pgp.el (pgg-pgp-process-region): Revert.
17634         (pgg-pgp-lookup-key): Revert.
17635
17636         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
17637         (pgg-pgp5-lookup-key): Revert.
17638
17639         * pgg.el (pgg-fetch-key): Revert.
17640
17641 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17642
17643         * lpath.el: Fbind string-as-multibyte for XEmacs.
17644
17645         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
17646         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
17647         (mml1991-pgg-encrypt): Ditto.
17648
17649         * pgg-gpg.el (pgg-string-to-multibyte): New function.
17650         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
17651         a multibyte buffer.
17652
17653         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
17654         (pgg-pgp-lookup-key): Ditto.
17655
17656         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
17657         (pgg-pgp5-lookup-key): Ditto.
17658
17659         * pgg.el (pgg-fetch-key): Ditto.
17660
17661 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
17662
17663         * message.el (message-user-organization-file): Check several
17664         locations of the organization file.
17665
17666         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
17667         Add gnus-article-view-part-as-type.
17668
17669         * gnus-art.el (gnus-article-view-part-as-type): New function.
17670
17671         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
17672         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
17673
17674         * mml.el: Simplify autoload.
17675         (mml-mode): defvar dnd-protocol-alist instead of using
17676         symbol-value.
17677         (mml-default-directory): New variable.
17678         (mml-minibuffer-read-file): Use it.
17679         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
17680
17681         * message.el (message-citation-line-format): New variable.
17682         (message-insert-formated-citation-line): New function.
17683         (message-citation-line-function):
17684         Add `message-insert-formated-citation-line' to custom type.
17685
17686         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
17687         to doc string.
17688
17689         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
17690         depending on mm-verify-option.
17691
17692 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17693
17694         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
17695         binding pgg-* variables; reimplement the section which prevents
17696         MIME header from being signed.
17697         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
17698         pgg-text-mode; remove a blank line at the top of body.
17699
17700         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
17701         lines at the top of body; use gnus-newsgroup-charset if there's no
17702         Charset header.
17703
17704 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17705
17706         * message.el (message-self-insert-commands): Doc fix.
17707
17708         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
17709         (mm-uu-pgp-encrypted-test): Ditto.
17710         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
17711         between header and body; return application/pgp-encrypted handle
17712         if decryption failed; decode decrypted body by charset.
17713
17714         * mm-decode.el (mm-automatic-display): Don't make application/pgp
17715         element match to application/pgp-*.
17716
17717 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17718
17719         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
17720         HTML.
17721
17722 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17723
17724         * mail-source.el (mail-source-call-script): Message the error
17725         string.
17726
17727 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17728
17729         * gnus-util.el (gnus-byte-compile): Use it.
17730
17731 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
17732
17733         * gnus-util.el (kill-empty-logs): New function.
17734
17735 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17736
17737         * message.el (message-mail-alias-type): Doc fix.
17738         (message-mail-alias-type-p): New function.
17739         (message-send): Use it.
17740         (message-mode): Ditto.
17741         (message-strip-forbidden-properties): Ditto.
17742
17743         * ecomplete.el (ecomplete-database-file-coding-system):
17744         New variable.
17745         (ecomplete-save): Use it.
17746         (ecomplete-setup): Use it.
17747
17748 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17749
17750         * message.el (message-self-insert-commands): New variable.
17751         (message-strip-forbidden-properties): Use it.
17752
17753 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17754
17755         * message.el (message-put-addresses-in-ecomplete): Use a regexp
17756         that doesn't make XEmacs choke.
17757
17758 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
17759
17760         * gnus-util.el (gnus-replace-in-string):
17761         Prefer replace-regexp-in-string over of replace-in-string.
17762
17763 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17764
17765         * gnus-util.el (gnus-select-frame-set-input-focus):
17766         Use select-frame-set-input-focus if it is available in XEmacs; use
17767         definition defined in Emacs 22 for old Emacsen.
17768
17769         * dgnushack.el: Autoload unmorse-region for XEmacs.
17770
17771         * lpath.el: Bind cursor-in-non-selected-windows and
17772         select-frame-set-input-focus for XEmacs.
17773
17774 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17775
17776         * mm-view.el (mm-inline-text): Use equal instead of equalp.
17777
17778 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
17779
17780         * gnus-registry.el (gnus-registry-cache-save): Remove text
17781         properties when saving via the temp buffer.
17782
17783 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
17784
17785         * message.el (message-generate-hashcash): Honor custom type.
17786
17787 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17788
17789         * message.el (message-generate-hashcash): Default to non-nil when
17790         hashcash is found.
17791
17792         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
17793         (gnus-refer-thread-limit): Increase default to 500.
17794
17795         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
17796
17797         * flow-fill.el (fill-flowed): Allow delete-space.
17798
17799 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
17800
17801         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
17802         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
17803         Remove autoloads.
17804
17805 2006-04-18  Simon Josefsson  <jas@extundo.com>
17806
17807         * message.el (message-generate-hashcash): Default to.
17808
17809 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
17810
17811         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
17812         concatenating segments rather than before concatenating them.
17813
17814 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
17815
17816         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
17817
17818 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17819
17820         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
17821
17822         * message.el (message-forward-make-body-plain):
17823         Allow message-forward-ignored-headers to be a list.
17824         (message-remove-ignored-headers): Factor out into function.
17825         (message-forward-make-body-mml): Use it.
17826
17827         * imap.el (imap-quote-specials): New function.
17828         (imap-login-auth): Quote specials.
17829
17830         * rfc2231.el (rfc2231-parse-string): Remove dead code.
17831         (rfc2231-parse-string): Allow concatanation of parameters that
17832         aren't contiguous.  The test case is
17833           (mail-header-parse-content-type "message/external-body;
17834             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
17835             access-type=LOCAL-FILE;
17836             name*1*=plugh%2fhello-sailor%2fbing.pdf")
17837
17838 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17839
17840         * nntp.el (nntp-accept-process-output): Return the value of
17841         `nnheader-accept-process-output'.
17842
17843 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17844
17845         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
17846         (gnus-button-alist): Recognize more diff formats.
17847         (gnus-button-patch): Strip directory.
17848
17849 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
17850
17851         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
17852         Emacs 22 when setting focus.
17853
17854 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17855
17856         * gnus-art.el (gnus-article-treat-types): Do treatment of
17857         text/x-verbatim parts.
17858         (gnus-button-patch): New command.
17859
17860         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
17861         addresses that contain invalid characters.
17862
17863 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17864
17865         * message.el (message-put-addresses-in-ecomplete):
17866         Use gnus-replace-in-string.
17867         (message-is-yours-p): Use the more correct
17868         mail-header-parse-address instead of
17869         mail-extract-address-components.
17870         (message-put-addresses-in-ecomplete): Fix typo.
17871
17872         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
17873         keystroke.
17874
17875         * gnus-art.el (gnus-treatment-function-alist): Change order of
17876         newsgroups/generic header folding to avoid double-folding.
17877
17878         * message.el (message-hidden-headers): Add X-Draft-From.
17879
17880         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
17881         New command.
17882         (gnus-summary-repeat-search-article-backward): New command.
17883
17884         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
17885         groups in the parent topic.
17886
17887 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
17888
17889         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
17890         (spam-extra-header-to-number): Return the CRM114 number as a
17891         number instead of a string.
17892
17893 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17894
17895         * gnus-art.el (gnus-face-properties-alist): Move here from
17896         gnus-fun.
17897
17898         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
17899
17900 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17901
17902         * message.el (message-strip-forbidden-properties): Only display on
17903         self-insert-command.
17904
17905         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
17906         reindent.
17907         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
17908
17909 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
17910
17911         * smiley.el (smiley-style): Fix typo.
17912
17913 2006-03-23  Kenichi Handa  <handa@m17n.org>
17914
17915         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
17916         instead of set-buffer-multibyte.
17917
17918 2006-03-23  Kenichi Handa  <handa@m17n.org>
17919
17920         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
17921         buffer and then decode the buffer text if necessary.
17922         (rfc2231-encode-string): Be sure to work on multibyte buffer at
17923         first, and after mm-encode-body, change the buffer to unibyte.
17924
17925 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17926
17927         * hashcash.el (hashcash-insert-payment-async-2):
17928         Use message-goto-eoh instead of doing it manually.
17929         (mail-add-payment): Use message-narrow-to-header instead of trying
17930         to do the same itself.
17931
17932         * message.el (message-hidden-headers): Add Face.
17933
17934         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
17935         reparenting code.
17936         (gnus-summary-reparent-children): Refactored out code.
17937         (gnus-summary-thread-map): New keystroke.
17938         (gnus-summary-reparent-children): Make into command.
17939
17940         * smiley.el (smiley-style): Default to `medium' if using a large
17941         font.
17942
17943         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
17944         does it itself.
17945
17946         * message.el (message-point-in-header-p): Simplify definition.
17947
17948 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17949
17950         * nnagent.el (nnagent-request-set-mark): Silence log file
17951         writing.
17952         (nnagent-request-set-mark): Use write-region instead of
17953         append-to-file.
17954
17955         * gnus-sum.el (gnus-read-header): Fudge article number if using a
17956         strange select method.
17957
17958         * ecomplete.el (ecomplete-display-matches): Get highlightling
17959         right.
17960         (ecomplete-display-matches): Use literals.
17961         (ecomplete-display-matches): Disable message logging.
17962
17963         * message.el (message-display-abbrev): Small optimization.
17964
17965         * ecomplete.el (ecomplete-display-matches): Allow automatic
17966         display.
17967
17968         * message.el (message-strip-forbidden-properties):
17969         Display abbrevs.
17970         (message-display-abbrev): Get automatic display right.
17971
17972         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
17973         keystrokes.
17974
17975 2006-04-13  Romain Francoise  <romain@orebokech.com>
17976
17977         TODO: Backport to v5-10!
17978
17979         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
17980         Move here (and rename) from gnus-registry.el.
17981
17982         * gnus-registry.el: Require gnus-util.
17983         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
17984
17985 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17986
17987         * gnus-group.el (gnus-group-catchup-current):
17988         Change if-then-else-if-then-else into cond.
17989         (gnus-group-catchup): Indent.
17990         (group-name-at-point): New function.
17991         (gnus-fetch-group): Provide default from thing at point.
17992
17993 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17994
17995         * message.el (message-display-abbrev): Fix regexp.
17996
17997         * ecomplete.el (ecomplete-highlight-match-line):
17998         Reimplement choosing.
17999         (ecomplete-highlight-match-line): Fix up code rewrite, remove
18000         dead variables.
18001
18002         * message.el (message-newline-and-indent): Remove debugging.
18003         (message-display-abbrev): Use new implementation.
18004
18005 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
18006
18007         * gnus-art.el (gnus-article-mode):
18008         Set cursor-in-non-selected-windows to nil.
18009
18010         * smiley.el: Revert previous change.
18011         (smiley-data-directory): defvar it before using it in the
18012         defcustom of `smiley-style'.
18013
18014 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18015
18016         * message.el (message-newline-and-indent): New function.
18017
18018         * ecomplete.el: Implement more bits.
18019
18020         * message.el (message-put-addresses-in-ecomplete): Clean up the
18021         string.
18022
18023         * ecomplete.el (ecomplete-add-item): Chop off decimals.
18024
18025         * gnus-sum.el (gnus-summary-save-parts):
18026         Bind gnus-summary-save-parts-counter and use it to make unique file
18027         names.
18028
18029         * gnus-art.el (gnus-ignored-headers): Add some more headers.
18030
18031         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
18032         parameter to say whether to actually parse the individual
18033         addresses.
18034
18035         * message.el (message-put-addresses-in-ecomplete): New function.
18036         (ecomplete): Require.
18037         (message-mail-alias-type): Add ecomplete as an option.
18038
18039 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
18040
18041         * flow-fill.el (fill-flowed): Remove trailing space from blank
18042         quoted lines.
18043
18044 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18045
18046         * smiley.el (smiley-style): Move definition later to avoid a
18047         compilation warning.
18048
18049 2006-04-12  Kenichi Handa  <handa@m17n.org>
18050
18051         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
18052         buffer and then decode the buffer text if necessary.
18053         (rfc2231-encode-string): Be sure to work on multibyte buffer at
18054         first, and after mm-encode-body, change the buffer to unibyte.
18055         Use mm-disable-multibyte instead of set-buffer-multibyte.
18056
18057 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18058
18059         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
18060         Content-Type header instead of Content-Disposition header.
18061         (gnus-mime-inline-part): Ditto.
18062         (gnus-mime-view-part-as-charset): Ignore charset that the part
18063         specifies.
18064
18065         * mm-decode.el (mm-display-part): Work with external parts and
18066         usual parts similarly.
18067
18068         * mm-extern.el (mm-inline-external-body): Use mm-display-part
18069         instead of gnus-display-mime.
18070
18071         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
18072         instead of with-temp-buffer.
18073
18074         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
18075         tag to summarized topics part in order to encode non-ASCII text.
18076
18077 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
18078
18079         * smiley.el (smiley-style): New variable.
18080         (smiley-directory): New function.
18081         (smiley-data-directory): Derive from `smiley-style' using
18082         `smiley-directory'.
18083         (smiley-regexp-alist): Add new entries.
18084
18085         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
18086         (gnus-article-browse-delete-temp): Add :version.
18087
18088 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
18089
18090         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
18091         the sieve region.
18092
18093 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18094
18095         * gnus.el (gnus-version-number): Bump version.
18096
18097 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
18098
18099         * gnus.el: No Gnus v0.4 is released.
18100
18101 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18102
18103         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
18104         layout.
18105
18106         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
18107         unknown charset.
18108
18109         * message.el (message-header-synonyms): Add Original-To to the
18110         default.
18111
18112         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
18113         optional parameter.
18114
18115 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
18116
18117         * gnus-fun.el (gnus): Require it for gnus-directory.
18118
18119 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18120
18121         * gnus-fun.el (gnus-face-properties-alist): Add :version.
18122
18123 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
18124
18125         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
18126
18127 2006-04-05  Simon Josefsson  <jas@extundo.com>
18128
18129         * password.el (password-reset): New function.
18130
18131 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
18132
18133         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
18134         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
18135
18136 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18137
18138         * nnweb.el (nnweb-google-create-mapping): Update regexp.
18139         Some whitespace was matched into the url, which broke browsing hits
18140         > 100 when mm-url-use-external was nil.
18141
18142 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
18143
18144         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
18145         Check gnus-extra-headers for 'Newsgroups.
18146
18147         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
18148         bound.
18149
18150 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
18151
18152         * pgg-gpg.el: Clean up process buffers every time gpg processes
18153         complete.
18154
18155 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
18156
18157         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
18158         doc string.
18159
18160 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
18161
18162         * pgg-gpg.el (pgg-gpg-process-filter)
18163         (pgg-gpg-wait-for-completion): Check if buffer is alive.
18164
18165         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
18166         lines, temporary fix.
18167
18168 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
18169
18170         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
18171
18172 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
18173
18174         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
18175         default-enable-multibyte-characters.  This reverts the change from
18176         revision 6.17 which is no longer necessary because the passphrase
18177         is sent separately now.  GnuPG messages are unreadable under
18178         multibyte locales with default-enable-multibyte-characters set to
18179         nil.
18180
18181 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
18182
18183         * message.el (message-tool-bar-gnome): Move "spell".
18184
18185 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
18186
18187         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
18188         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
18189         instead.
18190
18191 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
18192
18193         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
18194         Improve newsgroups handling for NNTP overviews which don't include
18195         Newsgroups.
18196
18197 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18198
18199         * message.el (message-resend): Bind message-generate-hashcash to nil.
18200
18201 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18202
18203         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
18204         when searching for already-paid recipients.
18205
18206 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
18207
18208         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
18209         passphrases when it is not needed.
18210         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
18211         passphrase stuff from gpg, should only be necessary when you use
18212         gpg with a smartcard.
18213
18214 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18215
18216         * mml.el (mml-insert-mime): Ignore cached contents of
18217         message/external-body part.
18218
18219         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
18220         (mm-insert-part): Ditto.
18221
18222 2006-03-23  Simon Josefsson  <jas@extundo.com>
18223
18224         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
18225         Reiner.
18226         (pgg-gpg-use-agent-p): Use it again.
18227
18228 2006-03-23  Simon Josefsson  <jas@extundo.com>
18229
18230         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
18231         older emacsen.
18232         (pgg-gpg-use-agent-p): Don't use it.
18233
18234 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
18235
18236         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
18237         if we can.
18238
18239 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
18240
18241         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
18242         (pgg-gpg-update-agent): New function.
18243         (pgg-gpg-use-agent-p): New function.
18244         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
18245         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
18246         (pgg-gpg-sign-region): Use it.
18247
18248 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18249
18250         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
18251         Reported by Ralf Wachinger <rwachinger@gmx.de>.
18252
18253 2006-03-21  Simon Josefsson  <jas@extundo.com>
18254
18255         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
18256         <wilde@sha-bang.de>.
18257         (pgg-gpg-use-agent): New variable.
18258         (pgg-gpg-process-region): Use it.
18259         (pgg-gpg-encrypt-region): Likewise.
18260         (pgg-gpg-encrypt-symmetric-region): Likewise.
18261         (pgg-gpg-decrypt-region): Likewise.
18262         (pgg-gpg-sign-region): Likewise.
18263         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
18264
18265 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
18266
18267         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
18268
18269         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
18270         Add comment on version.
18271
18272 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
18273
18274         * smiley.el: Add missing test smiley.
18275
18276 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18277
18278         * mm-decode.el (mm-with-part): New macro.
18279         (mm-get-part): Use it; work with message/external-body as well.
18280         (mm-save-part): Treat name and filename equally.
18281
18282         * mm-extern.el (mm-extern-cache-contents): New function.
18283         (mm-inline-external-body): Use it; force the part to be displayed;
18284         move undisplayer added to the cached handle to the parent.
18285
18286         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
18287         (gnus-mime-view-part-as-type): Work with message/external-body.
18288
18289         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
18290
18291 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
18292
18293         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
18294         images in image-load-path.  [Sync with image.el, revision 1.60, in
18295         Emacs.]
18296
18297 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
18298
18299         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
18300         path rather than symbol.  Always return list of directories.
18301         Guarantee that image directory comes first.  [Sync with image.el,
18302         revision 1.59, in Emacs.]
18303
18304         * message.el (message-make-tool-bar): Adjust to new API of
18305         `gmm-image-load-path-for-library'.
18306
18307         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18308
18309         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
18310
18311 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18312
18313         * gnus-art.el (gnus-article-only-boring-p):
18314         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
18315         intangible text.
18316         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
18317
18318 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
18319
18320         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
18321         Use `defun' instead of `gmm-defun-compat'.
18322
18323 2006-03-14  Simon Josefsson  <jas@extundo.com>
18324
18325         * message.el (message-unique-id): Don't use message-number-base36
18326         if (user-uid) is a float.
18327         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
18328
18329 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18330
18331         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
18332
18333         * gnus-art.el (gnus-mime-display-single): Make sure there is an
18334         empty line between a part and a message part.
18335
18336 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
18337
18338         * smiley.el: Add more test smileys.
18339         (smiley-data-directory, smiley-regexp-alist)
18340         (gnus-smiley-file-types): Fix doc strings.
18341         (smiley-update-cache): Clear smiley-cached-regexp-alist before
18342         adding new elements.
18343         (smiley-mouse-map): Unused code.  Make it a comment.
18344
18345 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18346
18347         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
18348         scan latest NoCeM messages instead of old ones.
18349         (gnus-nocem-check-article): Fix regexps so as to match to PGP
18350         delimiters that are recently used.
18351         (gnus-nocem-load-cache): Add autoload cookie.
18352
18353         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
18354
18355         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
18356         level which is larger than gnus-use-nocem is specified.
18357
18358         * gnus-group.el (gnus-group-get-new-news): Ditto.
18359
18360 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
18361
18362         * gnus-util.el (gnus-tool-bar-update): New function.
18363
18364         * gnus-group.el (gnus-group-update-tool-bar): New variable.
18365         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
18366
18367         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
18368
18369         * gnus-group.el (gnus-group-redraw-when-idle)
18370         (gnus-group-redraw-check): Remove.
18371         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
18372
18373 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18374
18375         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
18376         if optional last element is specified in splits (FIELD VALUE...).
18377
18378 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
18379
18380         * message.el (message-make-tool-bar): Rename gmm-image-load-path
18381         to gmm-image-load-path-for-library.  Call with no-error argument.
18382         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
18383
18384         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18385
18386         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
18387
18388         * gmm-utils.el (gmm-image-load-path): Remove alias.
18389
18390 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
18391
18392         * gmm-utils.el (gmm-image-load-path): Add alias.
18393
18394         * nnml.el (nnml-generate-nov-databases-directory): Rename from
18395         nnml-generate-nov-databases-1.
18396         (nnml-generate-nov-databases): Use it.
18397         (nnml-generate-nov-databases-directory): Document no-active
18398         argument.
18399
18400         * gmm-utils.el (gmm-image-load-path-for-library): Return single
18401         directory if path is t.  Add no-error.
18402
18403         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
18404         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
18405
18406         * gnus-art.el (gnus-article-browse-delete-temp-files):
18407         Simplify resetting gnus-article-browse-html-temp-list.
18408
18409         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
18410         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
18411         Add example to docstring.  Rename local variables.  Move error
18412         checks to default case in cond and simplify.
18413
18414 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18415
18416         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
18417         handle is multipart when calling it recursively.
18418         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
18419
18420 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
18421
18422         * nnimap.el (nnimap-request-update-info-internal): Optimize.
18423         Don't `gnus-uncompress-range' to avoid excessive memory usage.
18424
18425 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18426
18427         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
18428         is loaded.
18429
18430         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
18431         loaded.
18432
18433 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
18434
18435         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
18436         to "Emacs 23 (unicode)" in doc string.
18437
18438         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
18439         "Emacs 23 (unicode)" in comment.
18440
18441 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18442
18443         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
18444
18445         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
18446         characters 160 through 255 in Emacs 23.
18447
18448 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
18449
18450         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
18451         gnus-article-browse-html-temp.
18452         (gnus-article-browse-delete-temp): Make it customizable.
18453         Add `file'.  Adjust doc string.
18454         (gnus-article-browse-delete-temp-files): Add argument.
18455         Allow query for each file.  Adjust doc string.
18456         (gnus-article-browse-html-parts):
18457         Add `gnus-article-browse-delete-temp-files' to
18458         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
18459
18460 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
18461
18462         * gnus-art.el (gnus-article-browse-html-temp)
18463         (gnus-article-browse-delete-temp): New variables.
18464         (gnus-article-browse-delete-temp-files): New function.
18465         (gnus-article-browse-html-parts): Use it.
18466
18467 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
18468
18469         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
18470
18471         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
18472         string.
18473
18474         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
18475         gnus-summary-insert-new-articles when unplugged.
18476         Remove gnus-summary-search-article-forward.
18477
18478         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
18479         display-visual-class instead of display-color-cells.
18480
18481 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
18482
18483         * dgnushack.el: Autoload customize-group for XEmacs.
18484
18485         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
18486         message/* containing non-ASCII text properly.
18487
18488 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
18489
18490         * message.el: Require gmm-utils, remove autoloads.
18491         (message-tool-bar): Set default based on
18492         gmm-tool-bar-style.
18493         (message-tool-bar-gnome): Add gmm-customize-mode.
18494
18495         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
18496         gmm-tool-bar-style.
18497         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
18498
18499         * gnus-group.el (gnus-group-tool-bar): Set default based on
18500         gmm-tool-bar-style.
18501         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
18502
18503         * gmm-utils.el (gmm-image-directory): Rename variable from
18504         gmm-image-load-path.
18505         (gmm-image-load-path): Use gmm-image-directory.
18506         (gmm-customize-mode): New function.
18507         (gmm-tool-bar-style): New variable.
18508
18509         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
18510         gnus-group-redraw-line-number.
18511         (gnus-group-redraw-check): Simplify.
18512         (gnus-group-tool-bar-update): Remove redraw check.
18513         (gnus-group-make-tool-bar): Add redraw check.
18514
18515 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
18516
18517         * gnus-art.el (gnus-button): Add missing parentheses.
18518
18519 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18520
18521         * lpath.el: Fbind line-number-at-pos.
18522
18523 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18524
18525         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
18526
18527 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
18528
18529         * gnus-art.el (gnus-button): New face.
18530         (gnus-article-button-face): Use it.
18531
18532         * gnus-sum.el (gnus-summary-tool-bar-gnome):
18533         Add gnus-summary-next-page.  Re-order.
18534
18535         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
18536         next-node are now included.
18537         (gnus-group-redraw-line-number): New internal variable.
18538         (gnus-group-redraw-check): Helper function for updating the tool
18539         bar.
18540         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
18541
18542         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
18543
18544         * spam.el (spam-spamassassin-score-regexp): New internal variable.
18545         (spam-extra-header-to-number, spam-check-spamassassin-headers):
18546         Use it to match format of Spamassassin 3.0 and later.
18547         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
18548         (spam-check-bogofilter)
18549         (spam-bogofilter-register-with-bogofilter): Fix args of
18550         `gnus-error' calls.
18551
18552 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
18553
18554         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
18555         unnecessary interaction when sending queued mails.
18556         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
18557
18558 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
18559
18560         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
18561         first or last are nil.
18562
18563 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18564
18565         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
18566
18567 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18568
18569         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
18570
18571 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18572
18573         * dns.el (query-dns): Protect more against buggy tcp output.
18574
18575 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
18576
18577         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
18578         nov.php.
18579
18580 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18581
18582         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
18583         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
18584         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
18585         output on the server side.
18586         (nnweb-google-create-mapping): Update regexps and add some
18587         progress indication.
18588
18589 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
18590
18591         * gnus-group.el (gnus-group-tool-bar-gnome):
18592         Fix gnus-agent-toggle-plugged.  Re-order icons.
18593         (gnus-group-tool-bar-gnome):
18594         Add gnus-group-{prev,next}-unread-group.
18595         (gnus-group-tool-bar-gnome): Re-order icons.
18596
18597         * gnus-sum.el (gnus-summary-tool-bar-gnome):
18598         Move gnus-summary-insert-new-articles.
18599
18600         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
18601         Fix comments.
18602
18603         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
18604         also available in Emacs 21.3.
18605
18606         * message.el (message-fix-before-sending): Change "Emacs 22" to
18607         "Emacs 23 (unicode)" in comment.
18608
18609         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
18610         "Emacs 23 (unicode)" in comment.
18611
18612         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
18613         comment.
18614         (mm-coding-system-p): Add comment about no-MULE XEmacs.
18615
18616         * mm-view.el (mm-fill-flowed): Add :version.
18617
18618 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18619
18620         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
18621         and load-path.
18622
18623 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
18624
18625         * message.el: Autoload gmm-image-load-path.
18626         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
18627         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
18628         consitency.
18629
18630         * gmm-utils.el (gmm-image-load-path): Also search in
18631         "../etc/images".  Don't set gmm-image-load-path if we don't find
18632         the image.
18633
18634 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18635
18636         * gmm-utils.el (gmm-image-load-path): Don't make
18637         `gmm-image-load-path' include subdirectories which the second arg
18638         `image' might specify.
18639
18640         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
18641         subdirectory to icon file names.
18642
18643         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
18644
18645 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
18646
18647         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
18648         gmm-image-load-path calls.
18649
18650         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18651
18652         * message.el (message-make-tool-bar): Ditto.
18653
18654         * mml.el (mml-preview): Add comment concerning tool bar icons.
18655
18656         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
18657         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
18658
18659         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
18660         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
18661
18662         * message.el (message-tool-bar-gnome): Use new icon names.
18663         (message-make-tool-bar): Use `gmm-image-load-path'.
18664
18665         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
18666         New functions from MH-E.
18667         (gmm-image-load-path): New variable from MH-E.
18668         (gmm-image-load-path): New function from MH-E.  Add arguments
18669         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
18670         *-image-load-path-called-flag.
18671
18672 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
18673
18674         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
18675
18676 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
18677
18678         * nnimap.el (nnimap-request-move-article): Change folder back to
18679         source group before deleting.
18680
18681 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
18682
18683         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
18684
18685         * gnus-art.el (mm-url-insert-file-contents-external):
18686         Autoload mm-url.
18687
18688         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
18689
18690 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18691
18692         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
18693         coding system which mm-charset-to-coding-system returns for a
18694         given charset is valid.
18695
18696 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
18697
18698         * html2text.el (html2text-remove-tag-list):
18699         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
18700
18701 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
18702
18703         * gnus-cus.el: Revert 2005-10-17 change.
18704
18705 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18706
18707         * gnus-art.el (article-strip-banner):
18708         Call article-really-strip-banner only when the regexp match is made.
18709
18710 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18711
18712         * gnus-art.el (article-strip-banner):
18713         Use gnus-extract-address-components instead of
18714         mail-header-parse-addresses to make it work with non-ASCII text;
18715         remove mail-encode-encoded-word-string.
18716
18717         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
18718         values which are surrounded with \"...\"; make it never cause a
18719         Lisp error; give up parsing of parameters if it failed in
18720         extracting type.
18721
18722 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
18723
18724         * smime.el (smime-cert-by-ldap-1): Fix bug where
18725         `smime-ldap-search' returns results without userCertificates.
18726
18727 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18728
18729         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
18730
18731 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
18732
18733         * spam.el (spam-check-spamassassin-headers): Adapt format for
18734         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
18735         <ari@mbf.ocn.ne.jp>.
18736         (spam-list-of-processors): Add spam-use-gmane.
18737
18738 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18739
18740         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
18741         make-temp-file; make it work with XEmacs as well.
18742
18743         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
18744         mm-make-temp-file.
18745
18746         * mm-decode.el (mm-display-external): Use the 3rd arg of
18747         mm-make-temp-file.
18748         (mm-create-image-xemacs): Ditto.
18749
18750 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18751
18752         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
18753         with message-narrow-to-headers.
18754         (gnus-draft-setup): Narrow to header to run message-fetch-field.
18755         (gnus-draft-check-draft-articles): New function.
18756         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
18757
18758 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
18759
18760         * gnus-art.el (gnus-article-browse-html-parts):
18761         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
18762         Don't use suffix argument for mm-make-temp-file for Emacs 21
18763         compatibility.  Remove useless `format'.
18764
18765 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18766
18767         * nnweb.el (nnweb-google-wash-article): Update regexps.
18768         (nnweb-group-alist): Use defvoo instead of defvar.
18769
18770 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18771
18772         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
18773         re-loading nn* modules.
18774
18775 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
18776
18777         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
18778         for `tool-bar-mode' and don't check it's default-value.
18779
18780         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18781
18782         * message.el (message-make-tool-bar): Ditto.
18783
18784         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
18785         `substring'.  Shorten tmp-file name.
18786
18787         * gnus.el: Remove bogus comment.
18788
18789 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
18790
18791         * gnus-art.el (gnus-article-browse-html-parts): New function.
18792         (gnus-article-browse-html-article): New function for viewing html
18793         articles with a browser.
18794
18795 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
18796
18797         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
18798         in elisp.
18799         (pgg-gpg-encrypt-symmetric-region): Ditto.
18800         (pgg-gpg-sign-region): Ditto.
18801
18802         * pgg-def.el (pgg-text-mode): New variable.
18803
18804         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
18805         (mml2015-pgg-encrypt): Ditto.
18806
18807         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
18808         (mml1991-pgg-encrypt): Ditto.
18809
18810 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18811
18812         * nnfolder.el (nnfolder-insert-newsgroup-line):
18813         Use message-make-date instead of current-time-string.
18814
18815         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
18816         to gnus-decoded which mm-uu might set.
18817
18818 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18819
18820         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
18821         don't decode quoted parameters; remove misimported Emacs code.
18822         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18823         (rfc2231-decode-encoded-string): Don't use split-string which
18824         behaves differently according to Emacs version; use
18825         mm-decode-coding-region to convert charset to coding-system.
18826         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18827         (rfc2231-encode-string): Remove misimported Emacs code.
18828
18829 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
18830
18831         * gnus-art.el (article-decode-charset): Don't use ignore-errors
18832         when calling mail-header-parse-content-type.
18833         (article-de-quoted-unreadable): Ditto.
18834         (article-de-base64-unreadable): Ditto.
18835         (article-wash-html): Ditto.
18836
18837         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
18838         calling mail-header-parse-content-type and
18839         mail-header-parse-content-disposition.
18840         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
18841         mail-header-parse-content-type.
18842
18843         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
18844         insert charset and format parameters; encode description after
18845         inserting it to buffer.
18846         (mml-insert-parameter): Fold lines properly even if a parameter is
18847         segmented into two or more lines; change the max column to 76.
18848
18849         * rfc1843.el (rfc1843-decode-article-body): Don't use
18850         ignore-errors when calling mail-header-parse-content-type.
18851
18852         * rfc2231.el (rfc2231-parse-string): Return at least type if
18853         possible; don't cause an error even if it fails in parsing of
18854         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18855         (rfc2231-encode-string): Don't break lines at the beginning, leave
18856         it to mml-insert-parameter.
18857
18858         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
18859         calling mail-header-parse-content-type.
18860
18861 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
18862
18863         * spam-report.el (spam-report-gmane-use-article-number):
18864         Improve doc string.
18865         (spam-report-gmane-internal): Check if a suitable header was found
18866         in the article.
18867
18868 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18869
18870         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
18871         (rfc2231-encode-string): Make param*=value always begin with LWSP.
18872
18873 2006-02-05  Romain Francoise  <romain@orebokech.com>
18874
18875         Update copyright notices of all files in the gnus directory.
18876
18877 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18878
18879         * nnweb.el (nnweb-request-group): Avoid growing overview files.
18880
18881 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18882
18883         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
18884         segmented lines of parameter value to cope with Thunderbird 1.5
18885         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
18886         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18887         (rfc2231-encode-string): Don't make lines exceeding 76 column.
18888
18889 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
18890
18891         * mml.el (mml-generate-mime-1): Correct the order of inline signed
18892         parts.
18893
18894 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18895
18896         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
18897         there's only one active file for all servers.
18898         (nnweb-request-scan): Make sure nnweb-articles is initialized on
18899         solid groups.  Gnus might have used a FAST request to select the group.
18900         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
18901         and nnweb-search redundantly in the active file.
18902         (nnweb-request-list): Don't list bogus groups.  There can only be one.
18903         (nnweb-request-create-group): Don't use ARGS.
18904         (nnweb-possibly-change-server, nnweb-request-group): Remove some
18905         initializations.  Let nnoo do the work.
18906
18907 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
18908
18909         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
18910         Say the part has been decoded.
18911
18912         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
18913
18914 2006-01-31  Kevin Ryde  <user42@zip.com.au>
18915
18916         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
18917         mailcap-viewer-test-cache when there's no 'test clause, since that
18918         will invert the meaning of a "nil" test previously determined by
18919         mailcap-mailcap-entry-passes-test.
18920
18921 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
18922
18923         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
18924         compiling.
18925
18926         * gnus-sum.el: Ditto.
18927
18928         * message.el: Don't bind tool-bar-map when compiling.
18929
18930 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
18931
18932         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
18933
18934 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18935
18936         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
18937         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
18938         current Google Groups.
18939
18940 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
18941
18942         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
18943         and tool-bar-mode.
18944
18945         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
18946         and tool-bar-mode.
18947
18948         * message.el (message-tool-bar-update): Simplify.
18949         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
18950
18951         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
18952         gnus-summary-buffer.
18953         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
18954         gnus-summary-reply.
18955
18956         * gmm-utils.el (gmm): Add :version.
18957
18958 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18959
18960         * Makefile.in (clean): New rule.
18961         (distclean): Use it.
18962
18963 2006-01-26  Steve Youngs  <steve@sxemacs.org>
18964
18965         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
18966         Don't autoload.
18967
18968 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18969
18970         * gmm-utils.el (gmm-verbose): Add :group.
18971
18972 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
18973
18974         * message.el: Change some comments WRT tool-bars.
18975
18976         * gnus-sum.el (gnus-summary-tool-bar)
18977         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
18978         (gnus-summary-tool-bar-zap-list): New variables.
18979         (gnus-summary-make-tool-bar): Complete rewrite using
18980         `gmm-tool-bar-from-list'.
18981
18982         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
18983         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
18984         New variables.
18985         (gnus-group-make-tool-bar): Complete rewrite using
18986         `gmm-tool-bar-from-list'.
18987         (gnus-group-tool-bar-update): New function.
18988
18989         * message.el (message-mode-field-menu): Add "Show hidden Headers".
18990
18991 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18992
18993         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
18994         is dissected into a single part of which the type is the same as
18995         the given one; decode charset.
18996
18997 2006-01-21  Kevin Ryde  <user42@zip.com.au>
18998
18999         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
19000         into alists as symbol not string, since that's what
19001         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
19002         look for.
19003
19004 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
19005
19006         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
19007         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
19008
19009         * message.el (message-tool-bar-gnome): Use gmm-ignore.
19010
19011 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19012
19013         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
19014         (gnus-xmas-mime-security-button-menu): New function.
19015
19016         * gnus-art.el (gnus-mime-security-button-commands): New variable.
19017         (gnus-mime-security-button-menu): New definition.
19018         (gnus-mime-security-button-map): Use them.
19019         (gnus-mime-security-button-menu): New function.
19020         (gnus-insert-mime-security-button): Addition to help echo.
19021         (gnus-mime-security-run-function, gnus-mime-security-save-part)
19022         (gnus-mime-security-pipe-part): New functions.
19023
19024         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
19025         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
19026
19027         * mm-decode.el (mm-handle-set-disposition): Remove.
19028         (mm-handle-set-description): Remove.
19029
19030 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19031
19032         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
19033         (mm-w3m-standalone-supports-m17n-p): New function.
19034         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
19035         w3m usage.
19036
19037         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
19038         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
19039
19040 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
19041
19042         * message.el (message-tool-bar-zap-list):
19043         Use gmm-tool-bar-zap-list as custom type.
19044         (message-tool-bar-update): New function.
19045         (message-tool-bar, message-tool-bar-gnome)
19046         (message-tool-bar-retro): Add message-tool-bar-update.
19047         (message-tool-bar-gnome): Add flyspell-buffer.
19048
19049         * gnus-util.el (gnus-error): Describe `args'.
19050
19051         * gmm-utils.el (gmm-error): Describe `args'.
19052         (gmm-tool-bar-zap-list): New widget.
19053         (gmm-tool-bar-from-list): Improve description of `zap-list'.
19054
19055 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19056
19057         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
19058         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
19059         the number of recursive calls.
19060
19061         * mm-decode.el (mm-handle-set-disposition): New macro.
19062         (mm-handle-set-description): New macro.
19063
19064 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19065
19066         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
19067         encoding.
19068
19069 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
19070
19071         * message.el (message-tool-bar-zap-list, message-tool-bar)
19072         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
19073         (message-tool-bar-local-item-from-menu): Remove.
19074         (message-tool-bar-map): Replace by `message-make-tool-bar'.
19075         (message-make-tool-bar): New function.
19076         (message-mode): Use `message-make-tool-bar'.
19077
19078         * gmm-utils.el: New file.
19079         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
19080         (gmm-lazy): New widget copied from `nnmail.el'.
19081         (gmm-tool-bar-from-list): New function for creating customizable
19082         tool bars.
19083         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
19084         output.
19085         (gmm): Add :prefix to defgroup.
19086
19087 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
19088
19089         * gmm-utils.el (gmm-widget-p): New function.
19090
19091 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
19092
19093         * mml.el (mml-attach-file): Describe `description' in doc string.
19094         (mml-menu): Add Emacs MIME manual and PGG manual.
19095
19096 2006-01-20  Richard M. Stallman  <rms@gnu.org>
19097
19098         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
19099
19100 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
19101
19102         * nntp.el (nntp-end-of-line): Doc fix.
19103
19104 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
19105
19106         * imap.el (imap-open): Handle case where buffer is a buffer
19107         object.
19108
19109 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
19110
19111         * gnus-delay.el (gnus-delay): Don't autoload.
19112         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
19113         to be re-loaded when customizing the `gnus-delay' group.
19114
19115 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
19116
19117         * message.el (message-insert-citation-line): Use newlines.
19118
19119 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
19120
19121         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
19122         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
19123         these routines, so the passphrase can be managed externally and
19124         passed in to the system.
19125         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
19126         pgg-add-passphrase-to-cache function.
19127
19128         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
19129         (pgg-pgp5-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-pgp5-sign-region): Use new name of
19133         pgg-add-passphrase-to-cache function.
19134
19135 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
19136
19137         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
19138         part of the decoded armor to find the key-identifier.
19139         (pgg-gpg-lookup-key-owner): New function to return the
19140         human-readable identifier of a key owner.
19141         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
19142         itself.
19143         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
19144         the key value) if we have a key and can match it against a secret
19145         key.  Also, added a note pointing out fact that the prompt only
19146         indicates the first matching key.
19147
19148         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
19149         pgg-decrypt-region.
19150         (pgg-add-passphrase-to-cache): Rename from
19151         `pgg-add-passphrase-cache' to reduce confusion (all callers
19152         changed).
19153         (pgg-remove-passphrase-from-cache): Rename from
19154         `pgg-remove-passphrase-cache' to reduce confusion (all callers
19155         changed).
19156         (pgg-read-passphrase, pgg-add-passphrase-cache)
19157         (pgg-remove-passphrase-cache): Add informative docstrings.
19158         (pgg-decrypt): Convey provided passphrase in subordinate call to
19159         pgg-decrypt-region.
19160
19161 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
19162
19163         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
19164         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
19165         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
19166         'passphrase' argument, so the passphrase can be managed externally
19167         and then passed in to the system.
19168
19169         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
19170         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
19171         so the passphrase cache can be used reliably with identifiers
19172         besides a pgp packet's key id.
19173
19174         * pgg-gpg.el (pgg-gpg-encrypt-region)
19175         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
19176         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
19177         these routines, so the passphrase can be managed externally and
19178         passed in to the system.
19179
19180         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
19181         'notruncate' argument, so the passphrase cache can be used
19182         reliably with identifiers besides a pgp packet's key id.
19183
19184 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
19185
19186         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
19187         symmetric encryption.
19188         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
19189         encrypted session key.
19190         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
19191         message ask for the passphrase in a proper way.
19192
19193         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
19194         New user commands for symmetric encryption.
19195
19196 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19197
19198         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
19199
19200         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
19201
19202 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
19203
19204         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
19205
19206 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19207
19208         * mm-decode.el (mm-inlined-types): Add application/pgp.
19209         (mm-automatic-display): Ditto.
19210
19211         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
19212         part as text.
19213
19214 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19215
19216         * nnrss.el: Update copyright.
19217         (nnrss-opml-import): Query whether to subscribe to each entry.
19218
19219         * gnus-art.el:
19220         * gnus-sum.el:
19221         * gnus-xmas.el:
19222         * messagexmas.el:
19223         * mm-uu.el:
19224         * mm-view.el: Update copyright.
19225
19226 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
19227
19228         * message.el (message-info): New function.
19229         (message-mode-menu): Add it.
19230         Update copyright.
19231
19232         * ChangeLog: Fix and update copyright.
19233
19234 2006-01-13  Romain Francoise  <romain@orebokech.com>
19235
19236         * message.el (message-forward-subject-name-subject): Prefer the
19237         address to 'nowhere' if the sender has no name.
19238         Fix typo.  Update copyright year.
19239
19240 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19241
19242         * gnus-art.el (article-wash-html):
19243         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
19244         (gnus-article-wash-html-with-w3m-standalone): New function.
19245
19246         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
19247         mm-inline-text-html-render-with-w3m-standalone.
19248         (mm-text-html-washer-alist): Map w3m-standalone to
19249         gnus-article-wash-html-with-w3m-standalone.
19250         (mm-inline-text-html-render-with-w3m-standalone): New function.
19251
19252 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
19253
19254         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
19255         Improve LaTeX.
19256
19257 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19258
19259         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
19260         (nnrss-request-article): Render text/plain parts as HTML.
19261
19262         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
19263         the buffer.
19264
19265 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
19266
19267         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
19268         custom definition of `gnus-posting-styles'.
19269
19270         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
19271         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
19272
19273 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
19274
19275         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
19276         Use nntp for bug archive.
19277
19278 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
19279
19280         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
19281         parts.
19282         (nnrss-normalize-date): New function converts ISO 8601 date into
19283         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
19284         (nnrss-check-group): Use it.
19285
19286 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19287
19288         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
19289
19290         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
19291         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
19292         (nnrss-insert-w3): Ditto.
19293
19294 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19295
19296         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
19297         the articles to be forwarded including the case where neither a
19298         number of articles nor a region is specified.
19299
19300 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
19301
19302         * nnrss.el (nnrss-request-article): Fix last change; fill
19303         text/plain parts.
19304
19305 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19306
19307         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
19308         in text/plain part.
19309         (nnrss-check-group): Don't add excessive newline to dc:subject.
19310
19311 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
19312
19313         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
19314         article.
19315
19316 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
19317
19318         * nnml.el: Don't require gnus-bcklg.  Autoload it.
19319         (nnml-use-compressed-files, nnml-save-mail): Support other
19320         comression programs such as bzip2.
19321
19322 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19323
19324         * dns.el (query-dns): Make sure we check the buffer size before
19325         removing tcp headers.
19326
19327 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19328
19329         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
19330         remove MIME buttons associated with multipart/alternative parts.
19331         (gnus-mime-display-alternative): Tag buttons using `article-type'
19332         text property.
19333
19334         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
19335         associated with multipart/alternative parts.
19336
19337         * gnus-art.el (gnus-signature-separator): Fix custom type.
19338
19339         * mm-decode.el (mm-inlined-types): Fix custom type.
19340         (mm-keep-viewer-alive-types): Ditto.
19341         (mm-automatic-display): Ditto.
19342         (mm-attachment-override-types): Ditto.
19343         (mm-inline-override-types): Ditto.
19344         (mm-automatic-external-display): Ditto.
19345
19346 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
19347
19348         * spam-report.el (spam-report-user-mail-address)
19349         (spam-report-user-agent): New variables.
19350         (spam-report-url-ping-plain): Use spam-report-user-agent.
19351
19352 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
19353
19354         * gnus-art.el (gnus-button-handle-custom): Do not just use
19355         `customize-apropos' for any "M-x customize-*" button but the
19356         function called for.  Accept both the function name and its
19357         argument in order to achieve this.
19358         (gnus-button-alist): Remove support for "custom:" URL's.
19359         Pass function name to `gnus-button-handle-custom' in case of "M-x
19360         customize-*" buttons.
19361
19362 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19363
19364         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
19365         multipart/alternative and add xref to mm-discouraged-alternatives
19366         in doc string.
19367
19368         * mm-decode.el (mm-discouraged-alternatives): Add xref to
19369         gnus-buttonized-mime-types in doc string.
19370
19371 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
19372
19373         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
19374         Suggest image/.* in the doc string.
19375
19376 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
19377
19378         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
19379         message-marks (Debian bug #342521).
19380
19381 2005-12-12  Simon Josefsson  <jas@extundo.com>
19382
19383         * password.el (password-read-from-cache): Add.
19384         (password-read): Use it.
19385
19386 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19387
19388         * rfc2047.el (rfc2047-charset-to-coding-system):
19389         Recognize us-ascii as a MIME charset.
19390
19391         * mm-bodies.el (mm-decode-content-transfer-encoding):
19392         Protect against the case where the 2nd arg TYPE is nil.
19393
19394 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
19395
19396         * pop3.el (pop3-stream-type): Fix custom version.
19397
19398         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
19399
19400 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
19401
19402         * mm-decode.el (mm-display-external): Add missing cdr.
19403
19404 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
19405
19406         * mm-decode.el (mm-display-external): Use nametemplate (defined in
19407         RFC1524) if it is in mailcap or add a suffix according to
19408         mailcap-mime-extensions when generating a temp filename; postpone
19409         deleting a temp file for 2 seconds for some wrappers, shell
19410         scripts, and so on, which might exit right after having started a
19411         viewer command as a background job.
19412
19413 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
19414
19415         * nntp.el (nntp-marks-directory): Fix custom group.
19416
19417         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
19418         steps when < 10.
19419
19420         * gnus-start.el (gnus-no-server-1):
19421         Mention `gnus-level-default-subscribed' in doc string.
19422
19423 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
19424
19425         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
19426         parens.
19427
19428 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19429
19430         * gnus-xmas.el (gnus-use-toolbar): Revert.
19431         (gnus-xmas-setup-toolbar): Use global default-toolbar if
19432         gnus-use-toolbar is default.
19433
19434         * messagexmas.el (message-use-toolbar): Revert.
19435         (message-setup-toolbar): Use global default-toolbar if
19436         message-use-toolbar is default.
19437
19438 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19439
19440         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
19441         according to default-toolbar-visible-p.
19442
19443         * messagexmas.el (message-use-toolbar): Ditto.
19444
19445 2005-11-26  Dave Love  <fx@gnu.org>
19446
19447         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
19448         (tls-program, tls-success): Provide openssl alternative.
19449
19450         * starttls.el: Doc fixes.
19451         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
19452         SERVICE to PORT.
19453
19454         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
19455         port null or service name.
19456         (starttls-negotiate): Autoload.
19457
19458 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19459
19460         * message.el (message-kill-to-signature): Fix interactive spec.
19461
19462 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19463
19464         * pop3.el (pop3-open-server): Recognize a string as a service name.
19465
19466 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
19467
19468         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
19469
19470 2005-11-23  Dave Love  <fx@gnu.org>
19471
19472         Add pop3s, pop3/starttls.
19473
19474         * pop3.el (pop3-authentication-scheme): Clarify doc.
19475         (open-tls-stream, starttls-open-stream): Autoload.
19476         (pop3-stream-type): New.
19477         (pop3-open-server): Use it.
19478
19479         * mail-source.el (mail-sources): Fix some :types.  Add stream type
19480         for POP.
19481         (mail-source-keyword-map): Add :stream for POP.
19482         (mail-source-fetch-pop): Use pop3-stream-type.
19483
19484 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19485
19486         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
19487         of current-time-string.
19488
19489 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
19490
19491         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
19492         date header.
19493
19494 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
19495
19496         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
19497         it can seriously impact performance as it bypasses the agent's
19498         local caches.
19499
19500 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
19501
19502         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
19503         must be explicitly online rather than "not explicitly offline" for
19504         its flags to be synchronized.
19505
19506         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
19507         that gnus-uu-unmark-thread will function correctly.
19508
19509         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
19510         1024K is instead displayed as 1M.
19511
19512 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19513
19514         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
19515
19516 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
19517
19518         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
19519
19520 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
19521
19522         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
19523         error message to display actual error condition.
19524         (gnus-agent-save-local): Avoid saving symbols that are bound to
19525         nil as they simply result in a warning message in
19526         gnus-agent-read-local.
19527
19528 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19529
19530         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
19531         rather than make-variable-buffer-local for file-precious-flag.
19532
19533 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
19534
19535         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
19536         for duplicates which are removed.  The invalid sort check then
19537         triggers a rescan after the sort as sorting may have moved
19538         duplicate entries such that they can be cheaply detected.
19539
19540 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19541
19542         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
19543
19544 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
19545
19546         * gnus-agent.el (gnus-agent-article-alist-save-format):
19547         Change internal variable to a custom variable.  Change default value
19548         from compressed(2) to uncompressed(1).
19549         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
19550         support for uncompressed agentview files.  Taken together, reading
19551         the agentview file should now be 6-7 times faster.
19552
19553 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
19554
19555         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
19556         as a buffer-local variable.  This avoids creating truncated
19557         dribble files as a result of a hang up, eg.
19558
19559 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
19560
19561         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
19562         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
19563         XEmacs.
19564
19565 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
19566
19567         * gnus-start.el (gnus-start-draft-setup):
19568         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
19569
19570         * gnus.el (gnus-splash): Change custom group.
19571         (gnus-group-get-parameter, gnus-group-parameter-value):
19572         Describe allow-list argument.
19573
19574         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
19575         string.
19576
19577 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
19578
19579         * gnus-art.el (gnus-default-article-saver): Add user-defined
19580         `function' to custom type.
19581
19582 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
19583
19584         * imap.el (imap-open): Handle case where buffer is a buffer
19585         object.
19586
19587 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
19588
19589         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
19590         long lines.
19591         (gnus-cache-delete-group): Wrap doc strings.
19592
19593         * gnus-agent.el (gnus-agent-rename-group)
19594         (gnus-agent-delete-group): Wrap doc strings.
19595
19596 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19597
19598         * messagexmas.el (message-use-toolbar): Change the valid values
19599         into default, top, bottom, left, and right.
19600         (message-toolbar-thickness): New variable.
19601         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
19602         well.
19603         (message-setup-toolbar): Make it work.
19604
19605         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
19606         (gnus-use-toolbar): Change the valid values into default, top,
19607         bottom, left, and right.
19608         (gnus-toolbar-thickness): New variable.
19609         (gnus-xmas-setup-toolbar): New function.
19610         (gnus-xmas-setup-group-toolbar): Use it.
19611         (gnus-xmas-setup-summary-toolbar): Use it.
19612
19613 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19614
19615         * gnus-start.el (gnus-1): Add "native" to
19616         gnus-predefined-server-alist.
19617
19618         * gnus.el (gnus-method-to-server): Don't add "native" to the
19619         lists here, because that leads to problems when
19620         gnus-select-method is bound.
19621
19622 2005-11-09  Simon Josefsson  <jas@extundo.com>
19623
19624         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
19625         use (not sort-by-date) instead.
19626
19627 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
19628
19629         * gnus-delay.el (gnus-delay-group): Don't autoload.
19630         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
19631         to be re-loaded when customizing the `gnus-delay' group.
19632
19633 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
19634
19635         * message.el: Revert last changes.
19636         (message-insert-citation-line): Use newlines.
19637
19638 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
19639
19640         * message.el (message-courtesy-message)
19641         (message-mark-insert-begin, message-mark-insert-end)
19642         (message-elide-ellipsis, message-cancel-message)
19643         (message-add-header, message-change-subject)
19644         (message-cross-post-followup-to-header)
19645         (message-cross-post-insert-note, message-reduce-to-to-cc)
19646         (message-widen-reply, message-delete-not-region)
19647         (message-kill-to-signature, message-insert-signature)
19648         (message-insert-importance-high, message-insert-importance-low)
19649         (message-insert-or-toggle-importance)
19650         (message-insert-disposition-notification-to)
19651         (message-indent-citation, message-yank-original)
19652         (message-cite-original-without-signature, message-cite-original)
19653         (message-insert-citation-line, message-position-on-field)
19654         (message-fix-before-sending, message-send-mail-partially)
19655         (message-send-mail, message-send-mail-with-sendmail)
19656         (message-send-mail-with-qmail, message-send-news)
19657         (message-check-news-header-syntax, message-generate-headers)
19658         (message-insert-courtesy-copy, message-fill-address)
19659         (message-fill-header, message-shorten-references)
19660         (message-setup-1, message-cancel-news)
19661         (message-forward-make-body-plain, message-forward-make-body-mime)
19662         (message-forward-make-body-mml, message-encode-message-body)
19663         (message-forward-make-body-digest-plain)
19664         (message-forward-make-body-digest-mime)
19665         (message-use-alternative-email-as-from): Insert `hard-newline'
19666         instead of ordinary newlines.
19667
19668 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19669
19670         * message.el (message-generate-headers): Downcase the argument
19671         given to message-check-element.
19672
19673 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
19674
19675         * nntp.el (nntp-authinfo-rejected): New error condition.
19676         (nntp-wait-for): Use new error condition to signal authentication
19677         error.
19678         (nntp-retrieve-data): Rethrow new error condition to break out of
19679         recursive call to nntp-send-authinfo.
19680
19681 2005-11-08  Romain Francoise  <romain@orebokech.com>
19682
19683         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
19684         (gnus-summary-exit-map): Bind to `Z p'.
19685         (gnus-summary-make-menu-bar): Add menu item.
19686
19687 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
19688
19689         * gnus-art.el (gnus-article-treat-custom): Add `first'.
19690         (gnus-treat-*): Add `first' in all doc strings.
19691
19692         * gnus-group.el (gnus-group-compact-group): Fix typo.
19693
19694 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19695
19696         * gnus.el (gnus-parameters-case-fold-search): New variable.
19697         (gnus-parameters-get-parameter): Use it.
19698
19699         * gnus-score.el (gnus-home-score-file): Doc fix.
19700
19701 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
19702
19703         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
19704
19705 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
19706
19707         * mm-util.el (mm-special-display-p): New function.
19708
19709         * mml.el (mml-preview): Use it; doc fix.
19710
19711 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
19712
19713         * imap.el (imap-open): Handle case where buffer is a buffer object.
19714
19715 2005-10-29  Romain Francoise  <romain@orebokech.com>
19716
19717         * message.el (message-fix-before-sending): Fix comment.
19718
19719 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
19720
19721         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
19722
19723 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
19724
19725         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
19726         Used in gnus-score.el.
19727
19728 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
19729
19730         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
19731
19732 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
19733
19734         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
19735         whitespace removed in revision 7.8.  Use concatenated string to
19736         protect trailing whitespace.
19737
19738 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
19739
19740         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
19741         (nnimap-request-expire-articles): Use it to avoid sending 'UID
19742         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
19743         Courier IMAP ("some version from 2004").  Mostly based on similar
19744         code in the same function.
19745
19746 2005-10-26  Didier Verna  <didier@xemacs.org>
19747
19748         * gnus-group.el (gnus-group-compact-group): Invalidate original
19749         article buffer.
19750         * gnus-srvr.el (gnus-server-compact-server): Ditto.
19751         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
19752         NOV database and in article itself.
19753         Invalidate article backlog.
19754
19755 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
19756
19757         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
19758
19759 2005-10-26  Simon Josefsson  <jas@extundo.com>
19760
19761         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
19762         part of 2004-07-25 change.
19763
19764 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19765
19766         * message.el (message-display-completion-list): New function.
19767         (message-expand-group): Use it; make sure the Completions buffer
19768         is modifiable.
19769 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
19770
19771         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
19772         user-mail-name is an empty string.
19773
19774 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
19775
19776         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
19777         depending on gnus-score-decay-constant.
19778
19779         * encrypt.el (encrypt-insert-file-contents)
19780         (encrypt-write-file-contents): Don't use `gnus-message'.
19781
19782         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
19783         arguments.
19784         (mm-uu-type-alist): Add message-marks and insert-marks.
19785         Pass arguments to mm-uu-verbatim-marks-extract.
19786         (mm-uu-hide-markers): New variable.
19787         (mm-uu-extract): Use face similar to `gnus-cite-3'.
19788
19789         * gnus-fun.el (gnus-convert-image-to-x-face-command)
19790         (gnus-convert-image-to-face-command): Use "convert" by default to
19791         allow other input image formats.
19792         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
19793         accordingly.
19794
19795 2005-10-23  Simon Josefsson  <jas@extundo.com>
19796
19797         * imap.el (imap-gssapi-program): Align command line parameters
19798         with latest GNU SASL.
19799         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
19800
19801 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19802
19803         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
19804         HTML.
19805         (nnslashdot-request-article): Ditto.
19806
19807         * lpath.el (featurep): Add nobreak-char-display.
19808
19809 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
19810
19811         * mail-source.el (mail-source-fetch-pop): Require pop3.
19812         (mail-source-check-pop): Ditto.
19813
19814 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19815
19816         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
19817         errors.
19818
19819 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
19820
19821         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
19822         (gnus-treat-strip-leading-blank-lines): Improve doc string.
19823
19824         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
19825
19826         * mm-bodies.el (mm-decode-string):
19827         Call `mm-charset-to-coding-system' with allow-override argument.
19828
19829 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19830
19831         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
19832         (rfc2047-charset-to-coding-system): New function.
19833         (rfc2047-decode-encoded-words): New function.
19834         (rfc2047-decode-region): Use them.
19835         (rfc2047-decode-cte): Remove.
19836         (rfc2047-parse-and-decode): Remove.
19837         (rfc2047-decode): Remove.
19838
19839 2005-10-15  Kenichi Handa  <handa@m17n.org>
19840
19841         * rfc2047.el (rfc2047-decode-cte): New function.
19842         (rfc2047-decode-region): Change the way to decode successive
19843         encoded-words: decode B- or Q-encoding in each encoded-word,
19844         concatenate them, and decode it as charset.
19845
19846 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
19847
19848         * lpath.el: Fbind codepage-setup for XEmacs.
19849
19850 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
19851
19852         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
19853         widget-move-and-invoke.
19854         (gnus-custom-mode): Use gnus-custom-map.
19855
19856 2005-10-15  Bill Wohler  <wohler@newt.com>
19857
19858         * message.el (message-tool-bar-map): Rename image file from
19859         mail_send to mail/send.
19860
19861 2005-10-16  Masatake YAMATO  <jet@gyve.org>
19862
19863         * message.el (message-expand-group): Pass the common
19864         prefix substring of completion to `display-completion-list'.
19865
19866 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
19867
19868         * mml-sec.el (mml-secure-method): New internal variable.
19869         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
19870         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
19871         New functions using mml-secure-method.
19872
19873         * mml.el (mml-mode-map): Add key bindings for those functions.
19874         (mml-menu): Simplify security menu entries.  Suggested by Jesper
19875         Harder <harder@myrealbox.com>.
19876         (mml-attach-file, mml-attach-buffer, mml-attach-external):
19877         Goto end of message if point is the headers of the message.
19878
19879         * message.el (message-in-body-p): New function.
19880
19881         * assistant.el: Autoload gnus-util and netrc.
19882
19883         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
19884         Use `mm-charset-override-alist' only when decoding.
19885
19886         * mm-bodies.el (mm-decode-body):
19887         Call `mm-charset-to-coding-system' with allow-override argument.
19888
19889         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
19890         `filename' from Content-Disposition if Content-Type doesn't
19891         provide `name'.
19892         (gnus-mime-view-part-as-type): Set default instead of
19893         initial-input.
19894
19895 2005-10-09  Daniel Brockman  <daniel@brockman.se>
19896
19897         * format-spec.el (format-spec): Propagate text properties of % spec.
19898
19899 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
19900
19901         * gnus-art.el (gnus-treat-predicate): Add `first'.
19902
19903 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
19904
19905         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
19906         (mm-charset-override-alist): New variable.
19907         (mm-charset-to-coding-system): Use it.
19908         (mm-codepage-setup): New helper function.
19909         (mm-charset-eval-alist): New variable.
19910         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
19911         Warn about unknown charsets.
19912
19913         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
19914
19915 2005-10-04  David Hansen  <david.hansen@gmx.net>
19916
19917         * nnrss.el (nnrss-request-article): Add support for the comments tag.
19918         (nnrss-check-group): Ditto.
19919
19920 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
19921
19922         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
19923         Rename x-gnus-verbatim to x-verbatim.
19924         (mm-uu-type-alist): Fix regexp for verbatim-marks.
19925
19926         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
19927         x-verbatim.
19928
19929         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
19930
19931         * gnus-util.el (gnus-remove-duplicates): Remove.
19932
19933         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
19934         instead of gnus-remove-duplicates.
19935
19936         * message.el (message-remove-duplicates): Remove.
19937         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
19938         message-remove-duplicates.
19939
19940         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
19941         available, else use implementation from `delete-dups'.
19942
19943         * message.el (message-insert-expires): New function.
19944         (message-mode-map): Add key binding.
19945         (message-mode-field-menu): Add menu entry.
19946         (message-mode): Document it.
19947         (message-make-expires-date): Use `message-make-date'.
19948
19949 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
19950
19951         * message.el (message-make-expires-date): New function.
19952
19953 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19954
19955         * Makefile.in (list-installed-shadows): New entry.
19956         (install): Use it.
19957         (remove-installed-shadows): New entry.
19958
19959         * dgnushack.el (dgnushack-default-load-path): New variable.
19960         (dgnushack-find-lisp-shadows): New function.
19961         (dgnushack-remove-lisp-shadows): New function.
19962
19963 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
19964
19965         * Makefile.in (install-el-elc): New entry.
19966         (install): Use it so that .el files are necessarily installed.
19967
19968 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19969
19970         * time-date.el: Autoload parse-time-string, XEmacs needs it.
19971
19972 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
19973
19974         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
19975         function rather than the diff-mode.el package.
19976         (mm-display-external): Use with-current-buffer.
19977         (mm-viewer-completion-map, mm-viewer-completion-map):
19978         Move initialization inside declaration.
19979
19980 2005-09-29  Simon Josefsson  <jas@extundo.com>
19981
19982         * spam.el: Load hashcash when compiling, to avoid warnings.
19983         Don't autoload mail-check-payment.
19984         (spam-check-hashcash): Define unconditionally, since hashcash.el
19985         is part of Gnus now.  Ignore errors from payment checking.
19986
19987 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
19988
19989         * message.el (message-bold-region, message-unbold-region):
19990         Rename from `bold-region' and `unbold-region'.
19991
19992         * message.el: Remove useless autoloads.
19993
19994 2005-09-28  Simon Josefsson  <jas@extundo.com>
19995
19996         * message.el (message-use-idna): Default to t.
19997         (message-use-idna): Test whether encoding works too.  Doc fix.
19998
19999 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
20000
20001         * nntp.el (nntp-warn-about-losing-connection): Remove.
20002
20003 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
20004
20005         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
20006         customizable.  Change default value.
20007         (mm-uu-diff-groups-regexp): Change default value.
20008         (mm-uu-type-alist): Add doc string.
20009         (mm-uu-configure): Add doc string.  Make it interactive.
20010         (mm-uu-tex-groups-regexp): New variable.
20011         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
20012         (mm-uu-type-alist): Add LaTeX documents.
20013         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
20014         of "text/verbatim".
20015         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
20016
20017         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
20018         instead of "text/verbatim".
20019
20020         * message.el (message-mark-inserted-region)
20021         (message-mark-insert-file): Use slrn style marks when called with
20022         prefix argument.
20023
20024 2005-09-27  Simon Josefsson  <jas@extundo.com>
20025
20026         * message.el (message-idna-to-ascii-rhs-1): Reformat.
20027
20028 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
20029
20030         * message.el (message-remove-duplicates): New function.
20031         Implementation borrowed from `gnus-remove-duplicates'.
20032         (message-idna-to-ascii-rhs): Also encode idna addresses in
20033         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
20034         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
20035         only ask about the same idna domain once per header and also tell
20036         in what header to replace the idna domain.
20037
20038         * gnus-art.el (article-decode-idna-rhs): Also decode idna
20039         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
20040         (article-decode-idna-rhs): Fix regexp so that all idna-address in
20041         a header is decoded and not just the last one.
20042
20043 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20044
20045         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
20046         has been decoded.
20047
20048         * mm-decode.el (mm-automatic-display): Add text/verbatim.
20049         (mm-insert-part): Don't modify text if it has been decoded.
20050
20051         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
20052         decoded.
20053
20054         * mm-view.el (mm-inline-text): Don't strip text props unless
20055         decoding enriched or richtext parts.
20056
20057 2005-09-25  Romain Francoise  <romain@orebokech.com>
20058
20059         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
20060         * gnus-start.el (gnus-subscribe-interactively):
20061         * gnus-uu.el (gnus-uu-grab-articles):
20062         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
20063         space.
20064
20065 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
20066
20067         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
20068         * mm-view.el (mm-view-pkcs7-decrypt):
20069         * gnus-sum.el (gnus-summary-limit-to-extra)
20070         (gnus-summary-respool-article, gnus-read-move-group-name):
20071         * gnus-score.el (gnus-summary-increase-score):
20072         * gnus-util.el (gnus-completing-read-with-default):
20073         * gnus-art.el (gnus-read-save-file-name)
20074         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
20075         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
20076         * message.el (message-check-news-header-syntax):
20077         Follow convention for reading with the minibuffer.
20078
20079 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
20080
20081         * spam-report.el (spam-report-url-ping-plain):
20082         Use gnus-extended-version as User-Agent.
20083
20084         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
20085         default value is nil.
20086
20087         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
20088         (mm-uu-verbatim-marks-extract): New function.
20089         (mm-uu-extract): New face.
20090         (mm-uu-copy-to-buffer): Use it.
20091
20092         * spam-report.el (spam-report-gmane-ham): Rename from
20093         `spam-report-gmane-unspam'.
20094         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
20095         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
20096
20097         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
20098         Autoload.
20099         (spam-report-gmane-unregister-routine):
20100         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
20101
20102 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
20103
20104         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
20105         (spam-report-gmane-unregister-routine): Add support for gmane
20106         unregistration.
20107
20108         * spam-report.el (spam-report-gmane-unspam)
20109         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
20110         (spam-report-gmane): Change to take a single article and do unspam
20111         registration.
20112
20113 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
20114
20115         * mm-url.el (mm-url-decode-entities): Fix regexp.
20116
20117 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20118
20119         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
20120         default to nil, to be able to use Gnus at all.  If the default
20121         switches to something else, then the function should be fixed not
20122         be exceedingly slow.
20123
20124 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
20125
20126         * gnus-start.el (gnus-activate-group): If the server is nil, don't
20127         fail hard.
20128
20129         * spam-report.el: Add better Keywords line.
20130
20131         * spam.el: Add Maintainer and better Keywords line.
20132
20133 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
20134
20135         * gnus-art.el (gnus-article-replace-part)
20136         (gnus-mime-replace-part): New functions.
20137         (gnus-mime-action-alist, gnus-mime-button-commands)
20138         (gnus-mime-save-part-and-strip): Add file argument.
20139         (gnus-article-part-wrapper): Add interactive argument.
20140
20141         * gnus-sum.el (gnus-summary-mime-map):
20142         Add `gnus-article-replace-part'.
20143
20144 2005-09-19  Didier Verna  <didier@xemacs.org>
20145
20146         The nnml compaction feature:
20147         * nnml.el (nnml-request-compact-group): New function.
20148         * nnml.el (nnml-request-compact): New function.
20149         * gnus-int.el (gnus-request-compact-group): New function.
20150         * gnus-int.el (gnus-request-compact): New function.
20151         * gnus-group.el (gnus-group-compact-group): New function.
20152         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
20153         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
20154         * gnus-srvr.el (gnus-server-compact-server): New function.
20155         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
20156         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
20157
20158 2005-09-18  Deepak Goel  <deego@gnufans.org>
20159
20160         * sieve.el (sieve-help): Fix `message' call: first arg should be a
20161         format spec.
20162
20163 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20164
20165         * gnus.el (gnus-group-startup-message): Bind image-load-path.
20166
20167 2005-09-15  Romain Francoise  <romain@orebokech.com>
20168
20169         * message.el (message-fill-paragraph): Clarify docstring.
20170
20171 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20172
20173         * gnus-art.el (gnus-mime-display-part): Protect against broken
20174         MIME messages.
20175
20176 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20177
20178         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
20179         before parsing header.
20180
20181 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
20182
20183         * html2text.el (html2text-replace-list): Add new entities.
20184
20185 2005-09-11  Romain Francoise  <romain@orebokech.com>
20186
20187         * message.el (message-alternative-emails): Improve docstring.
20188         (message-setup-1): Call `message-use-alternative-email-as-from'
20189         after `message-setup-hook' to give it precedence over posting
20190         styles, etc.
20191         (message-use-alternative-email-as-from): Add docstring.
20192         Remove the original From header if present.
20193
20194         * nnml.el (nnml-compressed-files-size-threshold): New variable.
20195         (nnml-save-mail): Use it.
20196
20197         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
20198         articles.  Add new argument `silent'.
20199         (gnus-uu-mark-all): Report the total number of marked articles.
20200
20201 2005-09-10  Romain Francoise  <romain@orebokech.com>
20202
20203         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
20204         (gnus-uu-mark-series): Likewise.
20205
20206 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
20207
20208         * spam-report.el (spam-report-gmane): Fix generation of spam
20209         report URL.
20210
20211 2005-09-10  Simon Josefsson  <jas@extundo.com>
20212
20213         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
20214         t, based on discussion on the ding list with Robert Epprecht
20215         <epprecht@solnet.ch>.
20216
20217 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
20218
20219         * spam-report.el (spam-report-gmane): Make it work without
20220         X-Report-Spam header.  Gmane now only provides Archived-At.
20221         This is only used if `spam-report-gmane-use-article-number' is nil.
20222         (spam-report-gmane-spam-header): Remove.  Not used anymore.
20223
20224         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
20225         make `gnus-summary-sort-by-recipient' work with threading.
20226
20227         * nnweb.el (nnweb-google-wash-article): Print a message if article
20228         is not available.
20229
20230 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
20231
20232         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
20233         change.  Decode text/* parts content before displaying.
20234
20235 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
20236
20237         * mml-smime.el: Remove defvar of gnus-extract-address-components.
20238
20239 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20240
20241         * mm-view.el (mm-display-inline-fontify): Disable support modes.
20242
20243         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
20244         url-package-name, url-package-version,
20245         w3m-cid-retrieve-function-alist, w3m-current-buffer,
20246         w3m-display-inline-images, and w3m-minor-mode-map.
20247
20248 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
20249
20250         * message.el (message-tab-body-function): Fix mismatched custom type.
20251
20252         * gnus.el (gnus-group-change-level-function): Ditto.
20253
20254         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
20255
20256         * gnus-art.el (gnus-signature-limit)
20257         (gnus-article-mime-part-function): Ditto.
20258
20259 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20260
20261         * mml.el (mml-mode): Silence the byte compiler.
20262
20263         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
20264         using `(sit-for 0)' before moving the point to the specified part;
20265         skip unbuttonized parts.
20266         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
20267         return to the summary window if gnus-auto-select-part is non-nil.
20268
20269 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
20270
20271         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
20272         New variables.
20273         (mml-dnd-attach-file, mml-mode): Use them.
20274
20275         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
20276         Make fetching article by MID work again for Google Groups.
20277         Add FIXME concerning gnus-group-make-web-group.
20278
20279         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
20280         Don't depend on Gnus by using mail-extract-address-components if
20281         gnus-extract-address-components is not bound.
20282
20283 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20284
20285         * gnus-art.el (gnus-mime-display-security): Don't display the
20286         signature, but only the signed part.
20287
20288 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20289
20290         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
20291
20292         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
20293         list, not listp.
20294
20295 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
20296
20297         * mm-encode.el (mm-encode-content-transfer-encoding):
20298         Likewise when encoding.
20299
20300         * mm-bodies.el (mm-decode-content-transfer-encoding):
20301         De-canonicalize CRLF for all text content types, not just
20302         text/plain.
20303
20304 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20305
20306         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
20307         valid article; point arrow and cursor at the MIME button.
20308
20309 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20310
20311         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
20312         Suggested by Dan Christensen <jdc@uwo.ca>.
20313
20314         * mm-decode.el (mm-save-part): Enable change of prompt.
20315
20316 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
20317
20318         * gnus-msg.el (gnus-inews-add-send-actions):
20319         Make `message-post-method' lambda parameter ARG `&optional'.
20320
20321 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
20322
20323         * gnus-sum.el (gnus-summary-mime-map):
20324         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
20325         gnus-article-jump-to-part.
20326
20327         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
20328         (gnus-article-edit-part): Use it.
20329         (gnus-article-part-wrapper): Add no-handle argument.
20330         (gnus-article-save-part-and-strip, gnus-article-delete-part):
20331         New functions.
20332
20333 2005-08-29  Romain Francoise  <romain@orebokech.com>
20334
20335         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
20336         docstring.
20337         (gnus-face-from-file): Likewise.
20338
20339 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
20340
20341         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
20342         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
20343         non-nil.
20344         (gnus-auto-select-part): New variable.
20345         (gnus-article-jump-to-part): New function.
20346         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
20347         (gnus-mime-delete-part): Allow selecting specified part after
20348         deleting or stripping parts.
20349         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
20350         part if argument is bogus.
20351
20352 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
20353
20354         * gnus-art.el (w3m-minor-mode-map):
20355         * gnus-spec.el (gnus-newsrc-file-version):
20356         * gnus-util.el (nnmail-active-file-coding-system)
20357         (gnus-original-article-buffer, gnus-user-agent):
20358         * gnus.el (gnus-ham-process-destinations)
20359         (gnus-parameter-ham-marks-alist)
20360         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
20361         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
20362         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
20363         * mm-decode.el (gnus-current-window-configuration):
20364         * mm-extern.el (gnus-article-mime-handles):
20365         * mm-url.el (url-current-object, url-package-name)
20366         (url-package-version):
20367         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
20368         (smime-keys, w3m-cid-retrieve-function-alist)
20369         (w3m-current-buffer, w3m-display-inline-images)
20370         (w3m-minor-mode-map):
20371         * mml-smime.el (gnus-extract-address-components):
20372         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
20373         (gnus-newsrc-hashtb, message-default-charset)
20374         (message-deletable-headers, message-options)
20375         (message-posting-charset, message-required-mail-headers)
20376         (message-required-news-headers):
20377         * mml1991.el (mc-pgp-always-sign):
20378         * mml2015.el (mc-pgp-always-sign):
20379         * nnheader.el (nnmail-extra-headers):
20380         * rfc1843.el (gnus-decode-encoded-word-function)
20381         (gnus-decode-header-function, gnus-newsgroup-name):
20382         * spam-stat.el (gnus-original-article-buffer): Add defvars.
20383
20384 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
20385
20386         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
20387         the end of the date treatments.
20388
20389 2005-08-15  Simon Josefsson  <jas@extundo.com>
20390
20391         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
20392         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
20393         Capello and Romain Francoise.
20394         (pgg-fetch-key-function): Remove, not used?
20395         (pgg-insert-url-with-w3): Require url, to get
20396         url-insert-file-contents regardless of where it is defined.
20397
20398 2005-08-13  Romain Francoise  <romain@orebokech.com>
20399
20400         * message.el (message-cite-original-1): New function.
20401         (message-cite-original): Use it.
20402         (message-cite-original-without-signature): Ditto.
20403
20404 2005-08-08  Romain Francoise  <romain@orebokech.com>
20405
20406         * message.el (message-yank-empty-prefix): New variable.
20407         (message-indent-citation): Use it.
20408         (message-cite-original-without-signature): Respect X-No-Archive.
20409
20410 2005-08-08  Simon Josefsson  <jas@extundo.com>
20411
20412         * pgg.el: Autoload url-insert-file-contents instead of loading
20413         w3/url.
20414         (pgg-insert-url-with-w3): Don't load url here.
20415
20416 2005-08-07  Jesper Harder  <harder@phys.au.dk>
20417
20418         * message.el (message-kill-to-signature): Don't insert newline at
20419         bol.
20420         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
20421
20422 2005-08-06  Romain Francoise  <romain@orebokech.com>
20423
20424         * message.el (message-user-fqdn): Fix typo in docstring.
20425
20426 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
20427
20428         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
20429
20430         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
20431
20432 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20433
20434         * mm-bodies.el (mm-encode-body): Use coding system rather than
20435         charset to encode text.
20436
20437         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
20438         number of charsets if utf-8 is available (XEmacs).
20439
20440 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
20441
20442         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
20443         taken from `gnus-button-mid-or-mail-regexp'.
20444         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
20445         (gnus-button-alist): Improve regexp for domain part of the MIDs
20446         for news:localpart@domain buttons.
20447         (gnus-button-ctan-directory-regexp): Update.
20448
20449 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20450
20451         * sieve-manage.el (sieve-manage-interactive-login):
20452         Use make-local-variable rather than make-variable-buffer-local.
20453         (sieve-manage-open): Ditto.
20454         (sieve-manage-authenticate): Ditto.
20455
20456         * mml.el (mml-generate-mime-1): Make the content type default to
20457         text/plain if the filename is not specified.
20458
20459 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20460
20461         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
20462         instead of insert-buffer.
20463
20464         * message.el (message-yank-original): Ditto; set the mark at the
20465         end of the yanked message.
20466
20467 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
20468
20469         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
20470         lines to scroll rather than to stop it.
20471
20472         * mml.el (mml-generate-default-type): Add doc string.
20473         (mml-generate-mime-1): Use mm-default-file-encoding or make it
20474         default to application/octet-stream when determining the content
20475         type if it is not specified for the part or the mml contents; add
20476         a comment about mml-generate-default-type.
20477
20478 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
20479
20480         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
20481         make it default to application/octet-stream when determining the
20482         content type if it is not specified for the external contents.
20483
20484 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
20485
20486         * rfc2231.el (rfc2231-parse-string): Take care that not only a
20487         segmented parameter but also other parameters might be there.
20488
20489 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20490
20491         * mm-decode.el (mm-display-external): Delete temp file, directory
20492         and buffer immediately if the external process is exited.
20493
20494 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
20495
20496         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
20497         fewer lines than that of scroll-margin.
20498         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
20499
20500 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
20501
20502         * gnus-art.el (gnus-article-next-page): Revert.
20503         (gnus-article-beginning-of-window): New macro.
20504         (gnus-article-next-page-1): Use it.
20505         (gnus-article-prev-page): Ditto.
20506         (gnus-article-edit-part): Use insert-buffer-substring instead of
20507         insert-buffer.
20508         (gnus-article-edit-exit): Ditto.
20509
20510         * gnus-util.el (gnus-beginning-of-window): Remove.
20511         (gnus-end-of-window): Remove.
20512
20513         * lpath.el: Don't bind header-line-format and scroll-margin.
20514
20515 2005-07-25  Simon Josefsson  <jas@extundo.com>
20516
20517         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
20518         to have the url package without w3.  Reported by Daiki Ueno
20519         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
20520
20521 2005-07-20  Didier Verna  <didier@xemacs.org>
20522
20523         * gnus-diary.el: Remove the description comment (nndiary is now
20524         properly documented in the Gnus manual).
20525         Fix the spelling of "Back End".
20526         * nndiary.el: Ditto.
20527         Fix the copyright notice.
20528
20529 2005-07-18  Romain Francoise  <romain@orebokech.com>
20530
20531         * gnus-sum.el (gnus-summary-to-prefix)
20532         (gnus-summary-newsgroup-prefix): New variables.
20533         (gnus-summary-from-or-to-or-newsgroups): Use them.
20534
20535 2005-07-17  Romain Francoise  <romain@orebokech.com>
20536
20537         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
20538         space as it's generally not especially interesting to the user.
20539
20540 2005-07-16  Romain Francoise  <romain@orebokech.com>
20541
20542         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
20543         nil to avoid prompting and file modification if one of the
20544         messages at the top of the nnfolder file contains a copyright
20545         notice.
20546         Update copyright notice.
20547
20548         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
20549         instead of `current-time-string' as the latter creates a time
20550         string that is not RFC 2822 compliant (it lacks the zone).
20551         Update copyright notice.
20552
20553 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
20554
20555         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
20556         for text/rtf.  Display default in prompt.  Pass default for M-n.
20557
20558         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
20559
20560 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20561
20562         * gnus-msg.el (gnus-button-mailto):
20563         Remove save-selected-window-window hackery because it relies on
20564         save-selected-window internals.
20565
20566 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
20567
20568         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
20569         (gnus-article-next-page-1): Use gnus-beginning-of-window.
20570         (gnus-article-prev-page): Ditto.
20571
20572         * gnus-util.el (gnus-beginning-of-window): New function.
20573         (gnus-end-of-window): New function.
20574
20575         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
20576
20577 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
20578
20579         * gnus-score.el (gnus-score-edit-all-score):
20580         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
20581         gnus-message.
20582
20583 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20584
20585         * gnus-msg.el (gnus-button-mailto):
20586         Remove save-selected-window-window hackery because it relies on
20587         save-selected-window internals.
20588
20589 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20590
20591         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
20592         add-minor-mode.
20593         (gnus-binary-mode): Ditto.
20594
20595         * gnus-topic.el (gnus-topic-mode): Ditto.
20596
20597 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
20598
20599         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
20600         (gnus-article-prev-page): Take scroll-margin into consideration.
20601
20602 2005-07-04  Lute Kamstra  <lute@gnu.org>
20603
20604         Update FSF's address in GPL notices.
20605
20606 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
20607
20608         * gnus.el (gnus-exit):
20609         * gnus-group.el (gnus-group-icons):
20610         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
20611
20612         * gnus-nocem.el (gnus-nocem):
20613         * message.el (message-various, message-buffers, message-sending)
20614         (message-interface, message-forwarding, message-insertion)
20615         (message-headers, message-news, message-mail):
20616         * pgg-gpg.el (pgg-gpg):
20617         * pgg-parse.el (pgg-parse):
20618         * pgg-pgp.el (pgg-pgp):
20619         * pgg-pgp5.el (pgg-pgp5):
20620         * pop3.el (pop3): Finish `defgroup' description with period.
20621
20622 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20623
20624         * gnus-art.el (article-display-face): Improve the efficiency.
20625         (article-display-x-face): Ditto; remove gray x-face stuff.
20626
20627 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20628
20629         * gnus-art.el (article-display-face): Correct the position in
20630         which Faces are inserted.
20631
20632 2005-06-29  Didier Verna  <didier@xemacs.org>
20633
20634         * gnus-art.el (article-display-face): Display faces in correct
20635         order.
20636
20637 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
20638
20639         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
20640         (gnus-fill-real-hashtb): Use hash table instead of obarray.
20641         (gnus-nocem-check-article): Fetch the Type header.
20642         (gnus-nocem-message-wanted-p): Fix the way to examine types.
20643         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
20644         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
20645         make sure gnus-nocem-hashtb is initialized.
20646         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
20647         (gnus-nocem-unwanted-article-p): Ditto.
20648
20649         * pgg.el (pgg-verify): Return the verification result.
20650
20651 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20652
20653         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
20654         is ascii.
20655
20656 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
20657
20658         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
20659         `show-nonbreak-escape'.
20660
20661 2005-06-23  Lute Kamstra  <lute@gnu.org>
20662
20663         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
20664
20665         * dig.el (dig-mode):
20666         * smime.el (smime-mode): Use gnus-run-mode-hooks.
20667
20668 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
20669
20670         * nnimap.el (nnimap-split-download-body): Fix spellings.
20671
20672 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
20673
20674         * gnus-art.el (gnus-article-encrypt-body):
20675         * gnus-cus.el (gnus-score-customize):
20676         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
20677         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
20678
20679 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
20680
20681         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
20682         header by looking for magic "MII" at the beginning.
20683
20684 2005-06-16  Miles Bader  <miles@gnu.org>
20685
20686         * gnus-xmas.el (gnus-xmas-group-startup-message):
20687         Use renamed gnus-splash face.
20688
20689         * assistant.el (assistant-field): Remove "-face" suffix from face name.
20690         (assistant-field-face): New backward-compatibility alias for renamed
20691         face.
20692         (assistant-render-text): Use renamed assistant-field face.
20693
20694         * spam.el (spam): Remove "-face" suffix from face name.
20695         (spam-face): New backward-compatibility alias for renamed face.
20696         (spam-face, spam-initialize): Use renamed spam face.
20697
20698         * message.el (message-header-to, message-header-cc)
20699         (message-header-subject, message-header-newsgroups)
20700         (message-header-other, message-header-name)
20701         (message-header-xheader, message-separator, message-cited-text)
20702         (message-mml): Remove "-face" suffix from face names.
20703         (message-header-to-face, message-header-cc-face)
20704         (message-header-subject-face, message-header-newsgroups-face)
20705         (message-header-other-face, message-header-name-face)
20706         (message-header-xheader-face, message-separator-face)
20707         (message-cited-text-face, message-mml-face):
20708         New backward-compatibility aliases for renamed faces.
20709         (message-font-lock-keywords): Use renamed message faces.
20710
20711         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
20712         (sieve-test-commands, sieve-tagged-arguments):
20713         Remove "-face" suffix from face names.
20714         (sieve-control-commands-face, sieve-action-commands-face)
20715         (sieve-test-commands-face, sieve-tagged-arguments-face):
20716         New backward-compatibility aliases for renamed faces.
20717         (sieve-control-commands-face, sieve-action-commands-face)
20718         (sieve-test-commands-face, sieve-tagged-arguments-face):
20719         Use renamed sieve faces.
20720
20721         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
20722         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
20723         (gnus-group-news-3-empty, gnus-group-news-4)
20724         (gnus-group-news-4-empty, gnus-group-news-5)
20725         (gnus-group-news-5-empty, gnus-group-news-6)
20726         (gnus-group-news-6-empty, gnus-group-news-low)
20727         (gnus-group-news-low-empty, gnus-group-mail-1)
20728         (gnus-group-mail-1-empty, gnus-group-mail-2)
20729         (gnus-group-mail-2-empty, gnus-group-mail-3)
20730         (gnus-group-mail-3-empty, gnus-group-mail-low)
20731         (gnus-group-mail-low-empty, gnus-summary-selected)
20732         (gnus-summary-cancelled, gnus-summary-high-ticked)
20733         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
20734         (gnus-summary-high-ancient, gnus-summary-low-ancient)
20735         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
20736         (gnus-summary-low-undownloaded)
20737         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
20738         (gnus-summary-low-unread, gnus-summary-normal-unread)
20739         (gnus-summary-high-read, gnus-summary-low-read)
20740         (gnus-summary-normal-read, gnus-splash):
20741         Remove "-face" suffix from face names.
20742         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
20743         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
20744         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
20745         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
20746         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
20747         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
20748         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
20749         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
20750         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
20751         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
20752         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
20753         (gnus-summary-selected-face, gnus-summary-cancelled-face)
20754         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
20755         (gnus-summary-normal-ticked-face)
20756         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
20757         (gnus-summary-normal-ancient-face)
20758         (gnus-summary-high-undownloaded-face)
20759         (gnus-summary-low-undownloaded-face)
20760         (gnus-summary-normal-undownloaded-face)
20761         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
20762         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
20763         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
20764         (gnus-splash-face):
20765         New backward-compatibility aliases for renamed faces.
20766         (gnus-group-startup-message): Use renamed gnus faces.
20767
20768         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
20769         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
20770         (gnus-server-agent): Remove "-face" suffix from face names.
20771         (gnus-server-agent-face, gnus-server-opened-face)
20772         (gnus-server-closed-face, gnus-server-denied-face)
20773         (gnus-server-offline-face):
20774         New backward-compatibility aliases for renamed faces.
20775         (gnus-server-agent-face, gnus-server-opened-face)
20776         (gnus-server-closed-face, gnus-server-denied-face)
20777         (gnus-server-offline-face): Use renamed gnus faces.
20778
20779         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
20780         Remove "-face" suffix from face names.
20781         (gnus-picon-xbm-face, gnus-picon-face):
20782         New backward-compatibility aliases for renamed faces.
20783
20784         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
20785         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
20786         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
20787         (gnus-cite-11): Remove "-face" suffix from face names.
20788         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
20789         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
20790         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
20791         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
20792         New backward-compatibility aliases for renamed faces.
20793         (gnus-cite-attribution-face, gnus-cite-face-list)
20794         (gnus-article-boring-faces): Use renamed gnus faces.
20795
20796         * gnus-art.el (gnus-signature, gnus-header-from)
20797         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
20798         (gnus-header-content): Remove "-face" suffix from face names.
20799         (gnus-signature-face, gnus-header-from-face)
20800         (gnus-header-subject-face, gnus-header-newsgroups-face)
20801         (gnus-header-name-face, gnus-header-content-face):
20802         New backward-compatibility aliases for renamed faces.
20803         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
20804
20805         * gnus-sum.el (gnus-summary-selected-face)
20806         (gnus-summary-highlight): Use renamed gnus faces.
20807         * gnus-group.el (gnus-group-highlight): Likewise.
20808
20809 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
20810
20811         * gnus-sieve.el (gnus-sieve-article-add-rule):
20812         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
20813         * spam-stat.el (spam-stat-buffer-change-to-spam)
20814         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
20815
20816         * message.el (message-is-yours-p):
20817         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
20818
20819 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20820
20821         * mm-view.el (mm-inline-text): Withdraw the last change.
20822
20823 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
20824
20825         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
20826         executing enriched-decode.
20827
20828 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20829
20830         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
20831         charset of tar files.
20832
20833 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
20834
20835         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
20836
20837 2005-06-04  Lute Kamstra  <lute@gnu.org>
20838
20839         * nnfolder.el (nnfolder-read-folder): Make sure that undo
20840         information is never recorded.
20841
20842 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20843
20844         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
20845
20846 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20847
20848         * pop3.el (pop3-apop): Run md5 in the binary mode.
20849
20850         * starttls.el (starttls-set-process-query-on-exit-flag):
20851         Use eval-and-compile.
20852
20853 2005-05-31  Simon Josefsson  <jas@extundo.com>
20854
20855         * smime.el (smime-replace-in-string): Define.
20856         (smime-cert-by-ldap-1): Use it.
20857
20858 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
20859
20860         * gnus-art.el (article-display-x-face): Replace
20861         process-kill-without-query by gnus-set-process-query-on-exit-flag.
20862
20863         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
20864         set-process-query-on-exit-flag or process-kill-without-query.
20865
20866         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
20867         loop instead of replace-regexp.
20868
20869         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
20870         instead of process-kill-without-query if it is available.
20871
20872         * lpath.el: Fbind ldap-search-entries.
20873
20874         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
20875         instead of find-file-hooks if it is available.
20876
20877         * mml1991.el: Bind pgg-default-user-id when compiling.
20878
20879         * mml2015.el: Bind pgg-default-user-id when compiling.
20880
20881         * nndraft.el (nndraft-request-associate-buffer):
20882         Use write-contents-functions instead of write-contents-hooks if it is
20883         available.
20884
20885         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
20886         instead of find-file-hooks if it is available.
20887
20888         * nntp.el (nntp-open-connection): Replace
20889         process-kill-without-query by gnus-set-process-query-on-exit-flag.
20890         (nntp-open-ssl-stream): Ditto.
20891         (nntp-open-tls-stream): Ditto.
20892
20893         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
20894         set-process-query-on-exit-flag or process-kill-without-query.
20895         (starttls-open-stream-gnutls): Use it instead of
20896         process-kill-without-query.
20897         (starttls-open-stream): Ditto.
20898
20899 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
20900
20901         * smime.el (smime-cert-by-ldap-1): Don't use
20902         replace-regexp-in-string.
20903
20904 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
20905
20906         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
20907
20908         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
20909         in PEM format.  Adjust to the XEmacs compatibility.
20910
20911 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
20912
20913         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
20914         by `string-to-number'.
20915         * gnus-agent.el (gnus-agent-regenerate-group)
20916         (gnus-agent-fetch-articles): Ditto.
20917         * gnus-art.el (gnus-button-fetch-group): Ditto.
20918         * gnus-cache.el (gnus-cache-generate-active)
20919         (gnus-cache-articles-in-group): Ditto.
20920         * gnus-group.el (gnus-group-set-current-level)
20921         (gnus-group-insert-group-line): Ditto.
20922         * gnus-score.el (gnus-score-set-expunge-below)
20923         (gnus-score-set-mark-below, gnus-summary-score-effect)
20924         (gnus-summary-score-entry): Ditto.
20925         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
20926         (gnus-soup-pack): Ditto.
20927         * gnus-spec.el (gnus-xmas-format): Ditto.
20928         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
20929         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
20930         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
20931         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
20932         * nndb.el (nndb-get-remote-expire-response): Ditto.
20933         * nndiary.el (nndiary-parse-schedule-value)
20934         (nndiary-string-to-number, nndiary-request-replace-article)
20935         (nndiary-request-article): Ditto.
20936         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
20937         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
20938         * nneething.el (nneething-make-head): Ditto.
20939         * nnfolder.el (nnfolder-request-article)
20940         (nnfolder-retrieve-headers): Ditto.
20941         * nnheader.el (nnheader-file-to-number): Ditto.
20942         * nnkiboze.el (nnkiboze-request-article): Ditto.
20943         * nnmail.el (nnmail-process-unix-mail-format)
20944         (nnmail-process-babyl-mail-format): Ditto.
20945         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
20946         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
20947         (nnmh-request-create-group, nnmh-request-list-1)
20948         (nnmh-request-group, nnmh-request-article): Ditto.
20949         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
20950         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
20951         * nnsoup.el (nnsoup-make-active): Ditto.
20952         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
20953         * nntp.el (nntp-find-group-and-number)
20954         (nntp-retrieve-headers-with-xover): Ditto.
20955         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
20956         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
20957         (pgg-format-key-identifier): Ditto.
20958         * pop3.el (pop3-last, pop3-stat): Ditto.
20959         * qp.el (quoted-printable-decode-region): Ditto.
20960
20961         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
20962         of concat.
20963
20964 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20965
20966         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
20967
20968         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
20969
20970         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
20971
20972         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
20973
20974         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
20975
20976         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
20977
20978         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
20979         (gnus-carpal-mode): Ditto.
20980
20981         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
20982         (gnus-browse-mode): Ditto.
20983
20984         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
20985
20986         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
20987
20988 2005-05-29  Richard M. Stallman  <rms@gnu.org>
20989
20990         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
20991
20992 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20993
20994         * gnus-util.el (gnus-run-mode-hooks): New function.
20995
20996         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
20997
20998         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
20999         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
21000
21001 2005-05-27  Lute Kamstra  <lute@gnu.org>
21002
21003         * dns-mode.el (dns-mode): Specify customization group.
21004
21005 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
21006
21007         * gnus-agent.el (gnus-agent-make-mode-line-string):
21008         Use mode-line-highlight as mouse-face.
21009
21010 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21011
21012         * canlock.el (canlock): Change the parent group to news.
21013
21014         * deuglify.el (gnus-outlook-deuglify): Add :group.
21015
21016         * dig.el (dig): Add :group.
21017
21018         * dns-mode.el (dns-mode): Add :group.
21019
21020         * encrypt.el (encrypt): Add :group.
21021
21022         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
21023         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
21024         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
21025         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
21026         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
21027
21028         * gnus-diary.el (gnus-diary): Add :group.
21029
21030         * gnus.el (gnus-group-news-1-face): Add :group.
21031         (gnus-group-news-1-empty-face): Ditto.
21032         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
21033         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
21034         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
21035         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
21036         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
21037         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
21038         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
21039         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
21040         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
21041         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
21042         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
21043         (gnus-summary-high-ticked-face): Ditto.
21044         (gnus-summary-low-ticked-face): Ditto.
21045         (gnus-summary-normal-ticked-face): Ditto.
21046         (gnus-summary-high-ancient-face): Ditto.
21047         (gnus-summary-low-ancient-face): Ditto.
21048         (gnus-summary-normal-ancient-face): Ditto.
21049         (gnus-summary-high-undownloaded-face): Ditto.
21050         (gnus-summary-low-undownloaded-face): Ditto.
21051         (gnus-summary-normal-undownloaded-face): Ditto.
21052         (gnus-summary-high-unread-face): Ditto.
21053         (gnus-summary-low-unread-face): Ditto.
21054         (gnus-summary-normal-unread-face): Ditto.
21055         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
21056         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
21057
21058         * hashcash.el (hashcash): New custom group.
21059         (hashcash-default-payment): Add :group.
21060         (hashcash-payment-alist): Ditto.
21061         (hashcash-default-accept-payment): Ditto.
21062         (hashcash-accept-resources): Ditto.
21063         (hashcash-path): Ditto.
21064         (hashcash-extra-generate-parameters): Ditto.
21065         (hashcash-double-spend-database): Ditto.
21066         (hashcash-in-news): Ditto.
21067
21068         * message.el (message-minibuffer-local-map): Add :group.
21069
21070         * netrc.el (netrc): Add :group.
21071
21072         * sieve-manage.el (sieve-manage-log): Add :group.
21073         (sieve-manage-default-user): Diito.
21074         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
21075         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
21076         (sieve-manage-authenticators): Ditto.
21077         (sieve-manage-authenticator-alist): Ditto.
21078         (sieve-manage-default-port): Ditto.
21079
21080         * sieve-mode.el (sieve-control-commands-face): Add :group.
21081         (sieve-action-commands-face): Ditto.
21082         (sieve-test-commands-face): Ditto.
21083         (sieve-tagged-arguments-face): Ditto.
21084
21085         * smime.el (smime): Add :group.
21086
21087         * spam-report.el (spam-report): Add :group.
21088
21089         * spam.el (spam, spam-face): Add :group.
21090
21091 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21092
21093         * nntp.el (nntp-next-result-arrived-p): Some news servers may
21094         return \n.\n.\n at the end of articles.  Protect against that.
21095         (nntp-with-open-group): Allow debugging.
21096
21097         * nnheader.el (mail-header-set-extra): Make into a function
21098         because I just could't understand how to quote the list properly.
21099
21100         * dns.el (query-dns-cached): New function.
21101
21102 2005-05-26  Lute Kamstra  <lute@gnu.org>
21103
21104         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
21105
21106 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
21107
21108         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
21109
21110         * gnus-art.el: Don't autoload mail-extract-address-components.
21111
21112         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
21113         eval-and-compile to evaluate it.
21114
21115         * hashcash.el: Don't autoload executable-find.
21116
21117         * nndb.el: Don't declare the nndb back end two or more times; don't
21118         autoload news-reply-mode, news-setup, cancel-timer and telnet.
21119
21120         * nntp.el: Autoload format-spec instead of format; use
21121         eval-and-compile to evaluate autoload forms.
21122
21123 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
21124
21125         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
21126
21127 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21128
21129         * gnus.el (gnus-version-number): Bump version.
21130
21131 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
21132
21133         * gnus.el: No Gnus v0.3 is released.
21134
21135 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21136
21137         * lpath.el (featurep): Bind show-nonbreak-escape.
21138
21139 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21140
21141         * gnus-art.el (gnus-article-edit-part): Disable undo.
21142
21143 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
21144
21145         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
21146         gnus-article-date-lapsed-new-header is t if date timer is active;
21147         skip headers in which the original date value is empty.
21148         (gnus-article-save-original-date): Redefine it as a macro.
21149         (gnus-display-mime): Use it.
21150
21151 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
21152
21153         * gnus-art.el (article-date-ut): Support converting date in
21154         forwarded parts as well.
21155         (gnus-article-save-original-date): New function.
21156         (gnus-display-mime): Use it.
21157
21158 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
21159
21160         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
21161         enclosure element of <item>.
21162
21163 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
21164
21165         * message.el (message-kill-buffer-query): Rename from
21166         `message-kill-buffer-query-if-modified'.  Add :version.
21167
21168 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21169
21170         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
21171         window layout.
21172
21173 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
21174
21175         * mml.el: Autoload dnd when compiling.
21176
21177 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
21178
21179         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
21180         x-dnd-*.
21181
21182 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
21183
21184         * qp.el (quoted-printable-encode-region): Save excursion.
21185
21186 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
21187
21188         * message.el (message-kill-buffer-query-if-modified): Add new variable
21189         so the user can kill a modified message buffer quickly.
21190         (message-kill-buffer): Use it.
21191
21192 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21193
21194         * lpath.el: Fbind display-time-event-handler; don't fbind
21195         string-to-multibyte.
21196
21197         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
21198
21199 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21200
21201         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
21202         contained in text because xml.el decodes entities) with LFs.
21203
21204 2005-04-11  Lute Kamstra  <lute@gnu.org>
21205
21206         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
21207         differently.
21208
21209 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21210
21211         * mm-util.el (mm-detect-coding-region): Typo.
21212
21213 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
21214
21215         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
21216
21217 2005-04-06  Deepak Goel  <deego@gnufans.org>
21218
21219         * spam-stat.el (spam-stat-score-buffer): Add a call to a
21220         user-function allow user modifications of the scores.
21221         (spam-stat-score-buffer-user): New function, to allow
21222         user-computed modifications to the score.
21223         (spam-stat-score-buffer-user-functions): List of additional
21224         scoring functions.
21225         (spam-stat-error-holder): Global temporary error holder.
21226         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
21227         variable.
21228
21229 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
21230
21231         * gnus-registry.el (gnus-registry-clean-empty-function)
21232         (gnus-registry-trim, gnus-registry-fetch-groups)
21233         (gnus-registry-delete-group): Groups that match
21234         `gnus-registry-ignored-groups' are removed from the registry
21235         entries, not just ignored for splitting.  This helps clean up the
21236         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
21237         to get all the groups a message ID is in.
21238
21239         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
21240         (spam-stat-split-fancy): Change "threshhold" to "threshold".
21241         (spam-stat-score-buffer-user-functions): Add :number custom type.
21242
21243 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21244
21245         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
21246         argument in XEmacs.
21247
21248         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
21249         (nnrss-request-group): Decode group name first.
21250         (nnrss-request-article): Make a text/plain article if mml-to-mime
21251         failed.
21252         (nnrss-get-encoding): Return a compatible encoding according to
21253         nnrss-compatible-encoding-alist.
21254         (nnrss-find-el): Use consp instead of listp.
21255         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
21256
21257 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21258
21259         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
21260         which Emacs 20 doesn't support.
21261         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
21262
21263 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
21264
21265         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
21266         silence the byte compiler inside the defun.
21267
21268         * gnus-demon.el (parse-time-string): Add autoload.
21269
21270         * gnus-delay.el (parse-time-string): Add autoload.
21271
21272         * gnus-art.el (parse-time-string): Add autoload.
21273
21274         * nnultimate.el (parse-time): Require for `parse-time-string'.
21275
21276 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
21277
21278         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
21279
21280         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
21281
21282         * smime.el (smime-ldap-host-list): Add :version.
21283
21284 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
21285
21286         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
21287         pass it to `gnus-browse-read-group'.
21288         (gnus-browse-read-group): Add NUMBER argument and pass it to
21289         `gnus-group-read-ephemeral-group'.
21290
21291         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
21292         argument and pass it to `gnus-group-read-group'.
21293
21294 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
21295
21296         * mm-util.el (mm-xemacs-find-mime-charset): Only call
21297         mm-xemacs-find-mime-charset-1 if we have the mule feature
21298         available at runtime.
21299
21300 2005-03-25  Werner Lemberg  <wl@gnu.org>
21301
21302         * nnmaildir.el: Replace `illegal' with `invalid'.
21303
21304 2005-03-23  Lute Kamstra  <lute@gnu.org>
21305
21306         * time-date.el: Add comment on time value formats.
21307         Don't require parse-time.
21308         (with-decoded-time-value): New macro.
21309         (encode-time-value): New function.
21310         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
21311         (days-to-time): Return a valid time value when arg is huge.
21312         (time-since): Use time-subtract.
21313         (time-to-number-of-days): Use time-to-seconds.
21314
21315 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
21316
21317         * gnus-start.el (gnus-display-time-event-handler):
21318         Check display-time-timer at runtime rather than only at load time
21319         in case display-time-mode is turned off in the mean time.
21320
21321 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
21322
21323         * nnimap.el (nnimap-open-connection): Print which authinfo file is
21324         used.
21325
21326         * nneething.el (nneething-map-file-directory): Derive from
21327         `gnus-directory'.
21328
21329         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
21330         the To/Cc button.
21331
21332 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
21333
21334         * nnmaildir.el (nnmaildir-request-accept-article):
21335         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
21336
21337 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
21338
21339         * gnus-async.el: Require timer-funcs at compile time when in
21340         XEmacs for `run-with-idle-timer'.
21341
21342 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
21343
21344         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
21345         autoloaded function.
21346
21347 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21348
21349         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
21350
21351 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
21352
21353         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
21354
21355 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21356
21357         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
21358         Add gnus-expert-user to default.
21359
21360 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
21361
21362         * nnimap.el (nnimap-open-server): Ditto.
21363
21364         * imap.el (imap-authenticate): Fix typo.
21365
21366 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
21367
21368         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
21369         buffer (since IMAP server might return FETCH response out of
21370         order, and the nntp buffer must be sorted).
21371
21372 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
21373
21374         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
21375         comparison on string.
21376
21377         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
21378         (gnus-agent-score): Rename category keywords to match gnus-cus.
21379         (gnus-agent-summary-fetch-series): Modify to protect against
21380         gnus-agent-summary-fetch-group clearing processable flags.
21381         (gnus-agent-synchronize-group-flags): Update live group buffer as
21382         synchronization may occur due to the user toggle the plugged
21383         status.
21384         (gnus-agent-fetch-group-1): Clear downloadable flag when article
21385         successfully downloaded.
21386         (gnus-agent-expire-group-1): Avoid using markers when the overview
21387         is in ascending order; greatly improves performance.
21388         (gnus-agent-regenerate-group):
21389         Use gnus-agent-synchronize-group-flags to reset read status in both
21390         gnus and server.
21391         (gnus-agent-update-files-total-fetched-for): Fix initial size.
21392
21393 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
21394
21395         * message.el: Don't autoload former message-utils variables.
21396         (message-strip-subject-trailing-was): Change doc string.
21397
21398         * nnweb.el: Fixes for `gnus-group-make-web-group'.
21399         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
21400         (nnweb-google-search): Add "hl=en" here.
21401         (nnweb-google-parse-1, nnweb-google-create-mapping):
21402         Don't hardcode URL.
21403
21404 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
21405
21406         * message.el (message-get-reply-headers, message-followup):
21407         Mention related variables `message-use-followup-to' and
21408         `message-use-mail-followup-to', in the information buffer.
21409
21410         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
21411         of broken groups(-beta).google.com.
21412
21413 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
21414
21415         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
21416         parameter to invoked gnus-request-move-article; remove the
21417         redundant gnus-sum-hint-move-is-internal variable; apply the marks
21418         all at once instead of once per article.
21419         (gnus-summary-remove-process-mark): Accept a list of articles as
21420         well as a single article for processing.
21421
21422         * gnus-int.el (gnus-request-move-article): Add move-is-internal
21423         parameter.
21424
21425         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
21426
21427         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
21428
21429         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
21430         parameter.
21431
21432         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
21433         parameter.
21434
21435         * nnimap.el (nnimap-request-move-article): Add move-is-internal
21436         parameter and remove the gnus-sum-hint-move-is-internal variable.
21437
21438         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
21439         parameter.
21440
21441         * nndraft.el (nndraft-request-move-article): Add move-is-internal
21442         parameter.
21443
21444         * nndiary.el (nndiary-request-move-article): Add move-is-internal
21445         parameter.
21446
21447         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
21448
21449         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
21450         parameter.
21451
21452         * nnagent.el (nnagent-request-move-article): Add move-is-internal
21453         parameter.
21454
21455 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21456
21457         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
21458         a more conservative way.
21459
21460 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
21461
21462         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
21463         buffer, so it moves the window's cursor.
21464
21465 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
21466
21467         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
21468         `mm-dissect-multipart' and receive the from field as an (optional)
21469         argument from `mm-dissect-multipart'.
21470         (mm-dissect-multipart): Receive the from field as an argument and
21471         pass it on when we call `mm-dissect-buffer' on MIME parts.
21472         Fixes verification/decryption of signed/encrypted MIME parts.
21473
21474 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
21475
21476         * gnus-sum.el (gnus-summary-move-article):
21477         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
21478         whatever it calls (right now, only nnimap-request-move article
21479         respects it).
21480
21481         * nnimap.el (nnimap-request-move-article):
21482         When gnus-sum-hint-move-is-internal is set, don't do the extra
21483         nnimap-request-article.
21484
21485 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
21486
21487         * nnheader.el (nnheader-find-file-noselect): Add doc string.
21488
21489         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
21490         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
21491
21492         * gnus-sum.el (gnus-summary-caesar-message):
21493         Apply `gnus-treat-article' after rotation.
21494
21495         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
21496         doc string.
21497
21498 2005-02-22  Simon Josefsson  <jas@extundo.com>
21499
21500         * encrypt.el (encrypt-password-cache-expiry): Remove (use
21501         `password-cache-expiry' instead).  Reported by Arne Jørgensen
21502         <arne@arnested.dk>.
21503         (encrypt): Add password-cache and password-cache-expiry as group
21504         members.
21505
21506 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
21507
21508         * smime.el (smime-ldap-host-list): Doc fix.
21509         (smime-ask-passphrase): Use `password-read-and-add' to read (and
21510         cache) password.
21511         (smime-sign-region): Use it.
21512         (smime-decrypt-region): Use it.
21513         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
21514         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
21515         fails.
21516         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
21517         certificate from DER to PEM format rather than calling openssl.
21518
21519         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
21520
21521         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
21522         for signing/encryption.
21523
21524         * mml.el (mml-parse-1): Use them.
21525
21526 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
21527
21528         * nnrss.el (nnrss-verbose): Remove.
21529         (nnrss-request-group): Use `nnheader-message' instead.
21530
21531 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
21532
21533         * nnrss.el (nnrss-verbose): New variable.
21534         (nnrss-request-group): Make it say nnrss is requesting a group.
21535
21536 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
21537
21538         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
21539         Handle news URL with given port correctly.
21540
21541 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21542
21543         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
21544         containing special characters.
21545
21546         * gnus-sum.el (gnus-summary-edit-article): Ditto.
21547
21548         * mml.el (mime-to-mml): Ditto.
21549
21550         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
21551         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
21552         (rfc2047-decode-region): Quote decoded words containing special
21553         characters when rfc2047-quote-decoded-words-containing-tspecials
21554         is non-nil.
21555
21556 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
21557
21558         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
21559
21560         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
21561
21562 2005-02-15  Simon Josefsson  <jas@extundo.com>
21563
21564         * nnimap.el (nnimap-debug): Doc fix.
21565
21566         * imap.el (imap-debug): Doc fix.
21567
21568 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
21569
21570         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
21571
21572 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
21573
21574         * gnus.el (spam-contents): Improve docs for spam-contents
21575         parameter in its variable incarnation.
21576
21577 2005-02-14  Simon Josefsson  <jas@extundo.com>
21578
21579         * smime-ldap.el: Use require instead of load-library for ldap.
21580         (smime-ldap-search): Indent.
21581         (smime-ldap-search-internal): Shorten line.
21582
21583         * smime.el (smime-cert-by-dns): Add doc-string.
21584         (smime-cert-by-ldap-1): Indent.
21585
21586         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
21587         mml-smime-get-dns-ldap.
21588         (mml-smime-encrypt-query): Use new function.  Default to ldap.
21589
21590 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
21591
21592         * smime.el: Require smime-ldap.
21593         (smime-ldap-host-list): New variable.
21594         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
21595
21596         * mml-smime.el (mml-smime-encrypt-query): New function.
21597         (mml-smime-encrypt-query): Use it.
21598
21599         * smime-ldap.el: New file.
21600
21601 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21602
21603         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
21604
21605 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
21606
21607         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
21608         argument in doc string.  Make query for type more clear.
21609
21610 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
21611
21612         * gnus.el (gnus-group-startup-message): Search for gnus images in
21613         etc/images/gnus.
21614         * mm-util.el (mm-image-load-path): Likewise.
21615         * smiley.el (smiley-data-directory): Search for smilies in
21616         etc/images/smilies.
21617
21618 2005-02-09  Kim F. Storm  <storm@cua.dk>
21619
21620         Change Emacs release version from 21.4 to 22.1 throughout.
21621         Change Emacs development version from 21.3.50 to 22.0.50.
21622
21623 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21624
21625         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
21626
21627         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
21628         non-Mule XEmacs as well.
21629         (mm-decompress-buffer): Signal an error intentionally if it does
21630         not decompress compressed data because auto-compression-mode is
21631         disabled.
21632
21633 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
21634
21635         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
21636         an ID in the registry even if it has no groups.
21637
21638 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
21639
21640         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
21641         merge it into mm-decompress-buffer.
21642         (gnus-mime-copy-part): Use the MIME part charset, the value which
21643         a user specified or gnus-newsgroup-charset for decoding, like
21644         gnus-mime-inline-part does; set buffer-file-coding-system to tell
21645         save-buffer what was used.  Suggested by Kevin Ryde
21646         <user42@zip.com.au>.
21647         (gnus-mime-inline-part): Allow the name parameter as well as the
21648         filename parameter; force decompressing of compressed data; always
21649         display contents being not decoded as unibyte.
21650
21651         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
21652         as well as the filename parameter.
21653
21654         * mm-util.el (mm-decompress-buffer):
21655         Merge gnus-mime-jka-compr-maybe-uncompress.
21656         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
21657         of compressed data.
21658
21659 2005-02-08  Simon Josefsson  <jas@extundo.com>
21660
21661         * imap.el (imap-log): Doc fix.
21662
21663 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
21664
21665         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
21666         the coding cookies; decompress compressed parts.
21667
21668         * mml.el (mml-generate-mime-1): Add the charset parameter according
21669         to the value which a user specified manually or the coding cookie.
21670
21671         * mm-util.el (mm-string-to-multibyte): New function.
21672         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
21673         (mm-coding-system-to-mime-charset): New function.
21674         (mm-decompress-buffer): New function.
21675         (mm-find-buffer-file-coding-system): New function.
21676
21677         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
21678         (mm-display-inline-fontify): Rewrite for decoding and decompressing
21679         parts.
21680
21681 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
21682
21683         * mm-view.el (mm-display-inline-fontify): Decode a part according
21684         to the charset parameter.
21685
21686 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
21687
21688         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
21689         prefix arg is neither nil nor a number, as info specifies.
21690
21691 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
21692
21693         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
21694         timestamps.
21695
21696 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
21697
21698         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
21699         groups error checking and notify user.
21700
21701 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
21702
21703         * message.el (message-send-mail-function): Check existence of
21704         sendmail-program first before using default value
21705         `message-send-mail-with-sendmail'.  Otherwise use more generic
21706         `smtpmail-send-it'.
21707
21708 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21709
21710         * nntp.el (nntp-request-update-info): Always return nil.
21711
21712 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21713
21714         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
21715
21716 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
21717
21718         * message.el (message-beginning-of-line): Change the behavior when
21719         invoked between BOL and : so that it first moves backward.
21720
21721 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21722
21723         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
21724         article buffer when editing of the article is discarded.
21725         (gnus-article-prepare): Revert.
21726
21727 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21728
21729         * gnus-art.el (gnus-article-prepare):
21730         Remove message-strip-forbidden-properties from the local hook.
21731
21732 2005-01-27  Simon Josefsson  <jas@extundo.com>
21733
21734         * password.el (password-cache-add): Only start one timer per key.
21735         Reported by Derek Atkins <warlord@MIT.EDU>.
21736
21737 2005-01-26  Steve Youngs  <steve@sxemacs.org>
21738
21739         * run-at-time.el: Remove.  It is no longer needed as
21740         timer-funcs.el in the xemacs-base package has a working version of
21741         `run-at-time'.
21742
21743         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
21744
21745         * password.el: Require timer-funcs instead of run-at-time in
21746         XEmacs.
21747         Remove `password-run-at-time' macro.
21748         (password-cache-add): Use `run-at-time' instead of
21749         `password-run-at-time'.
21750
21751         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
21752         Remove `nnheader-cancel-function-timers' alias,
21753         `cancel-function-timers' exists in XEmacs in timer-funcs.
21754
21755         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
21756         for `run-with-idle-timer'.
21757
21758         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
21759         for `run-at-time'.
21760
21761         * mm-url.el: Require timer-funcs at compile time when in XEmacs
21762         for `with-timeout'.
21763
21764         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
21765         the same as for XEmacs 21.4.
21766         No need to ignore `run-with-idle-timer', this function exists in
21767         XEmacs now in timer-funcs.el in the xemacs-base package.
21768         (dgnushack-compile): No need to delete
21769         run-at-time.el from the list of files to compile because it
21770         doesn't exist anymore.
21771
21772 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
21773
21774         * mml.el (mml-generate-mime-1): Convert string into unibyte when
21775         inserting " *mml*" buffer's contents into a unibyte temp buffer.
21776
21777 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
21778
21779         * mail-source.el (mail-source-fetch-imap): Search for ^From case
21780         sensitively.
21781
21782 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
21783
21784         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
21785
21786 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21787
21788         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
21789         which will be inserted according to the multibyteness of a buffer
21790         rather than the type of contents.  Suggested by ARISAWA Akihiro
21791         <ari@mbf.ocn.ne.jp>.
21792
21793         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
21794         of string which old xml.el may return rather than a string.
21795
21796 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21797
21798         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
21799
21800 2005-01-16  Simon Josefsson  <jas@extundo.com>
21801
21802         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
21803         idn/idna.el isn't available.
21804         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
21805         <michael@waxrat.com>.
21806
21807         * hashcash.el: Remove non-FSF copyright header.
21808
21809         * hashcash.el (hashcash-extra-generate-parameters): New variable.
21810         (hashcash-generate-payment): Use it.
21811         (hashcash-generate-payment-async): Use it.
21812
21813 2005-01-15  Simon Josefsson  <jas@extundo.com>
21814
21815         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
21816         Suggested by Raymond Scholz <ray-2005@zonix.de>.
21817
21818         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
21819         gnus-summary-idna-message.
21820         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
21821         (gnus-summary-idna-message): New function.
21822
21823 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
21824
21825         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
21826         gnus-novice-user.
21827
21828 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21829
21830         * nnrss.el (nnrss-request-delete-group): Delete entries in
21831         nnrss-group-alist as well.
21832         (nnrss-save-server-data): Insert newline.
21833
21834 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
21835
21836         * gnus.el (gnus-user-agent): Use list of symbols instead of
21837         symbols.  Display full version number for (S)XEmacs.
21838         Optionally display (S)XEmacs codename.
21839
21840         * gnus-util.el (gnus-emacs-version): Update for new
21841         `gnus-user-agent'.
21842
21843         * gnus-msg.el (gnus-extended-version): Make it possible to omit
21844         Gnus version.
21845
21846 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
21847
21848         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
21849         which is unreadable in some setups.
21850
21851 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21852
21853         * gnus-spec.el (gnus-update-format-specifications): Flush the
21854         group format spec cache if it doesn't support decoded group names.
21855
21856 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
21857
21858         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
21859         Allow to apply decay on score files matching a regexp.
21860
21861 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
21862
21863         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
21864         compatibility in %g and %c.
21865
21866 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
21867
21868         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
21869         name for only %g and %c.
21870         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
21871         of gnus-tmp-group to decoded group name.
21872         (gnus-group-make-rss-group): Exclude `/'s from group names.
21873
21874 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21875
21876         * nnrss.el (nnrss-get-encoding): Fix regexp.
21877
21878 2004-12-27  Simon Josefsson  <jas@extundo.com>
21879
21880         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
21881         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
21882         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
21883
21884 2004-12-17  Kim F. Storm  <storm@cua.dk>
21885
21886         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
21887
21888         * gnus-sum.el (gnus-summary-mode-map): Likewise.
21889
21890 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
21891
21892         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
21893
21894 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
21895
21896         * nnrss.el: Require rfc2047 and mml.
21897         (nnrss-file-coding-system): New variable.
21898         (nnrss-format-string): Redefine it as an inline function.
21899         (nnrss-decode-group-name): New function.
21900         (nnrss-string-as-multibyte): Remove.
21901         (nnrss-retrieve-headers): Decode group name; don't use
21902         nnrss-format-string.
21903         (nnrss-request-group): Decode group name.
21904         (nnrss-request-article): Decode group name; allow a Message-ID as
21905         well as an article number; don't use nnrss-format-string; encode a
21906         Message-ID string which may contain non-ASCII characters; use
21907         mml-to-mime to compose a MIME article.
21908         (nnrss-request-expire-articles): Decode group name.
21909         (nnrss-request-delete-group): Decode group name.
21910         (nnrss-fetch): Clarify error message.
21911         (nnrss-read-server-data): Use insert-file-contents instead of load;
21912         bind file-name-coding-system; use multibyte buffer.
21913         (nnrss-save-server-data): Bind coding-system-for-write to the
21914         value of nnrss-file-coding-system; bind file-name-coding-system;
21915         add coding cookie.
21916         (nnrss-read-group-data): Use insert-file-contents instead of load;
21917         bind file-name-coding-system; use multibyte buffer.
21918         (nnrss-save-group-data): Bind coding-system-for-write to the
21919         value of nnrss-file-coding-system; bind file-name-coding-system.
21920         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
21921         make it work with non-ASCII text.
21922         (nnrss-find-el): Make it work with old xml.el as well.
21923
21924 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
21925
21926         * nnrss.el (nnrss-get-encoding): New function.
21927         (nnrss-fetch): Use unibyte buffer initially; bind
21928         coding-system-for-read while performing mm-url-insert; remove ^Ms;
21929         decode contents according to the encoding attribute.
21930         (nnrss-save-group-data): Add coding cookie.
21931         (nnrss-mime-encode-string): New function.
21932         (nnrss-check-group): Use it to encode subject and author.
21933
21934 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
21935
21936         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
21937         imaginary variable.
21938
21939 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
21940
21941         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
21942         correctly even if there are wide characters.
21943
21944 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
21945
21946         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
21947         downcased symbol names; make a new cache instead of reusing
21948         bbdb-hashtable.
21949
21950 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
21951
21952         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
21953         concatenating segments rather than before concatenating them.
21954         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
21955
21956         * message.el (message-get-reply-headers): Bind `extra'.
21957
21958 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21959
21960         * message.el (message-extra-wide-headers): New variable.
21961         (message-get-reply-headers): Use it.
21962
21963 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21964
21965         * gnus-agent.el (gnus-agent-group-path): Decode group name.
21966         (gnus-agent-group-pathname): Ditto.
21967
21968         * gnus-cache.el (gnus-cache-file-name): Decode group name.
21969
21970         * gnus-group.el (gnus-group-make-group): Decode group name.
21971         (gnus-group-make-rss-group): Register the group data after opening
21972         the nnrss group.
21973
21974 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
21975
21976         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
21977         by expiry now get marked as read.
21978
21979 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21980
21981         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
21982
21983 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
21984
21985         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
21986         unify Latin characters in XEmacs.
21987         (mm-find-mime-charset-region): Use it.
21988
21989 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21990
21991         * gnus-util.el (gnus-delete-directory): New function.
21992
21993         * gnus-agent.el (gnus-agent-delete-group): Use it.
21994
21995         * gnus-cache.el (gnus-cache-delete-group): Use it.
21996
21997 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
21998
21999         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
22000         names.
22001
22002 2004-12-16  Simon Josefsson  <jas@extundo.com>
22003
22004         * hashcash.el (hashcash-payment-alist): Fix custom :type.
22005
22006 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
22007
22008         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
22009
22010         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
22011         (gnus-group-set-current-level): Decode group name.
22012
22013 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
22014
22015         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
22016         failed.
22017
22018 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
22019
22020         * gnus-group.el (gnus-group-delete-group): Decode group name.
22021         (gnus-group-make-rss-group): Encode group name.
22022         (gnus-group-catchup-current): Decode group name.
22023         (gnus-group-kill-group): Decode group name.
22024
22025 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
22026
22027         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
22028
22029 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22030
22031         * gnus-group.el (gnus-group-make-rss-group):
22032         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
22033
22034         * gnus-start.el (gnus-setup-news): Honor user's setting to
22035         gnus-message-archive-method.  Suggested by Lute Kamstra
22036         <lute@gnu.org>.
22037
22038 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
22039
22040         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
22041         global counterparts of the buffer-local variables.
22042
22043 2004-11-16  Romain Francoise  <romain@orebokech.com>
22044
22045         * gnus-sum.el (gnus-summary-exit): Don't clear the global
22046         counterparts of the buffer-local variables.
22047
22048 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
22049
22050         * message.el (message-forbidden-properties): Fix typo in doc
22051         string.
22052
22053 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
22054
22055         * gnus-util.el (gnus-replace-in-string): Add doc string.
22056
22057         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
22058         to avoid problems when splitting mails with many recipients.
22059
22060 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
22061
22062         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
22063         pop-to-buffer, covered by the subsequent gnus-configure-windows.
22064
22065 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
22066
22067         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
22068         if there is no hashtable in memory or file modification time is
22069         newer than cached timestamp.
22070
22071 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
22072
22073         * gnus-sum.el (gnus-summary-limit-to-recipient):
22074         Implement not-matching option.
22075
22076 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
22077
22078         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
22079         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
22080         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
22081         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
22082         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
22083         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
22084
22085 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22086
22087         * message.el (message-forward-make-body-mml): Remove headers
22088         according to message-forward-ignored-headers if a message is decoded.
22089
22090 2004-12-02  Romain Francoise  <romain@orebokech.com>
22091
22092         * message.el (message-forward-make-body-plain): Always remove
22093         headers according to message-forward-ignored-headers.
22094
22095 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
22096
22097         * spam.el (spam-summary-prepare-exit): Remove the
22098         gnus-summary-limit pop for now, it has problems with ham marks for
22099         me.
22100
22101 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
22102
22103         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
22104         correctly.
22105
22106 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
22107
22108         * format-spec.el (format-spec): Message the char.
22109
22110 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
22111
22112         * gnus-art.el (gnus-split-methods): Reformat comments.
22113
22114         * spam.el (spam-summary-prepare-exit): Remove article limits
22115         before exiting the summary buffer.
22116
22117 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22118
22119         * lpath.el: Remove bbdb-create-internal, bbdb-records,
22120         spam-BBDB-register-routine and spam-enter-ham-BBDB.
22121
22122         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
22123         order to silence the byte compiler.
22124
22125         * spam.el: Fix the way to silence the byte compiler, which
22126         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
22127         bbdb-search-simple, spam-BBDB-register-routine,
22128         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
22129         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
22130         spam-stat-buffer-is-spam, spam-stat-load,
22131         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
22132         spam-stat-save and spam-stat-split-fancy.
22133
22134 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22135
22136         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
22137         which may confuse users.
22138         (canlock-password-for-verify): Ditto.
22139
22140         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
22141
22142         * gnus-art.el (gnus-emphasis-alist): Ditto.
22143
22144         * gnus-registry.el (gnus-registry-max-entries): Ditto.
22145
22146         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
22147
22148         * gnus-start.el (gnus-save-killed-list): Ditto.
22149
22150         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
22151         (gnus-sum-thread-tree-root): Ditto.
22152         (gnus-sum-thread-tree-false-root): Ditto.
22153         (gnus-sum-thread-tree-single-indent): Ditto.
22154
22155         * message.el (message-courtesy-message): Ditto.
22156         (message-archive-note): Ditto.
22157         (message-subscribed-address-file): Ditto.
22158         (message-user-fqdn): Ditto.
22159
22160         * spam-report.el (spam-report-gmane-regex): Ditto.
22161
22162         * spam.el (spam-blackhole-good-server-regex): Ditto.
22163
22164 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
22165
22166         * mml.el (mml-preview): Widen the message buffer before copying
22167         the contents to the preview buffer; sort headers before previewing.
22168
22169         * message.el (message-hidden-headers): Fix the way to avoid a bug
22170         in the `repeat' widget in Emacs 21.3 or earlier.
22171
22172 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
22173
22174         * message.el (message-hidden-headers): Default to "^References:".
22175         Improve customization type.  Suggested by Reiner Steib
22176         <Reiner.Steib@gmx.de>.
22177
22178 2004-11-25  Romain Francoise  <romain@orebokech.com>
22179
22180         * message.el (message-strip-forbidden-properties): Remove check for
22181         obsolete `message-hidden' text property, hidden headers are not
22182         accessible in the buffer anymore.
22183
22184 2004-11-22  Romain Francoise  <romain@orebokech.com>
22185
22186         * message.el (message-header-format-alist): Add `From' in list
22187         so that it can be sorted.
22188         (message-fix-before-sending): Widen and sort headers before
22189         sending.
22190         (message-hide-headers): Use narrowing to hide headers by moving
22191         them to the top of the buffer and narrowing to the region
22192         underneath.
22193
22194 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22195
22196         * message.el (message-strip-forbidden-properties):
22197         Bind buffer-read-only (etc) to nil.
22198
22199 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
22200
22201         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
22202         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
22203
22204 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
22205
22206         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
22207
22208 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22209
22210         * dns.el (query-dns): Use sit-for to time instead of
22211         accept-process-output, since that doesn't seem to work on udp
22212         sockets.
22213
22214 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
22215
22216         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
22217
22218 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
22219
22220         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
22221         doc string.  Improve doc string.
22222
22223 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
22224
22225         * nntp.el (nntp-request-update-info): Return nil if
22226         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
22227         may not call gnus-activate-group which uselessly issues the GROUP
22228         commands for all nntp groups and wastes time.  Reported by Romain
22229         Francoise <romain@orebokech.com>.
22230
22231         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
22232
22233 2004-11-15  Simon Josefsson  <jas@extundo.com>
22234
22235         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
22236         headers separately.
22237         (gnus-button-openpgp): New function, inspired by Jochen Küpper
22238         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
22239
22240 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
22241
22242         * gnus-start.el (gnus-convert-old-newsrc):
22243         Assign legacy-gnus-agent to 5.10.7.
22244
22245 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22246
22247         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
22248         start of the lines.
22249
22250 2004-11-14  Magnus Henoch  <mange@freemail.hu>
22251
22252         * hashcash.el (hashcash-default-payment): Change default to 20.
22253         (hashcash-default-accept-payment): Change default to 20.
22254         (hashcash-process-alist): New variable.
22255         (hashcash-generate-payment-async): Add.
22256         (hashcash-already-paid-p): Add.
22257         (hashcash-insert-payment): Don't generate payments twice.
22258         (hashcash-insert-payment-async): Add.
22259         (hashcash-insert-payment-async-2): Add.
22260         (hashcash-cancel-async): Add.
22261         (hashcash-wait-async): Add.
22262         (hashcash-processes-running-p): Add.
22263         (hashcash-wait-or-cancel): Add.
22264         (mail-add-payment): New optional argument.  Conditionally start
22265         asynchronous calculation.
22266         (mail-add-payment-async): Add.
22267
22268         * message.el (message-send-mail): Wait for asynchronous hashcash
22269         results.  Don't clobber existing X-Hashcash headers.
22270         (message-setup-1): Call mail-add-payment-async when
22271         message-generate-hashcash is non-nil.
22272
22273 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
22274
22275         * message.el (message-use-alternative-email-as-from): Examine the
22276         From header as well; use message-make-from in order to include a
22277         user's full name.
22278
22279 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
22280
22281         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
22282         default; improve customization type.
22283         (gnus-emphasis-custom-with-format): New macro.
22284         (gnus-emphasis-custom-value-to-external): New function.
22285         (gnus-emphasis-custom-value-to-internal): New function.
22286
22287 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22288
22289         * dns.el (query-dns): Resolve reverse addresses.
22290
22291 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22292
22293         * gnus-group.el (gnus-group-get-new-news): Use it.
22294
22295         * gnus-start.el (gnus-check-reasonable-setup): New function.
22296
22297 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
22298
22299         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
22300         "Args out of range" error.  Reported by Arnaud Giersch
22301         <arnaud.giersch@free.fr>.
22302
22303 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
22304
22305         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
22306
22307 2004-11-04  Richard M. Stallman  <rms@gnu.org>
22308
22309         * spam.el (spam group): Add :version.
22310
22311         * pgg-def.el (pgg group): Add :version.
22312
22313 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
22314
22315         * gnus-art.el (gnus-article-edit-article): Don't associate the
22316         article buffer with a draft file.  This is a temporary measure
22317         against the 2004-08-22 change to gnus-article-edit-mode.
22318
22319 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22320
22321         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
22322         (html2text-format-tags): Remove unused variable `attr'.
22323
22324 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
22325
22326         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
22327
22328         * tls.el (tls-process-connection-type, tls-success)
22329         (tls-certtool-program): Add :version.
22330
22331         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
22332         (starttls-extra-arguments, starttls-process-connection-type)
22333         (starttls-connect, starttls-failure, starttls-success): Add :version.
22334
22335         * spam-stat.el (spam-stat): Add :version.
22336
22337         * sieve.el (sieve): Add :version.
22338
22339         * sha1.el (sha1): Add :version.
22340         (sha1-use-external): Remove redundant version.
22341
22342         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
22343         (nnmail-cache-ignore-groups, nnmail-spool-hook)
22344         (nnmail-split-fancy-match-partial-words)
22345         (nnmail-split-lowercase-expanded): Add :version.
22346
22347         * nndiary.el (nndiary): Add :version.
22348
22349         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
22350
22351         * mml-sec.el (mml-default-sign-method)
22352         (mml-default-encrypt-method, mml-signencrypt-style-alist):
22353         Add :version.
22354
22355         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
22356
22357         * mm-url.el (mm-url-use-external, mm-url-program)
22358         (mm-url-arguments): Add :version.
22359
22360         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
22361         (mm-attachment-file-modes, mm-decrypt-option)
22362         (mm-w3m-safe-url-regexp): Add :version.
22363
22364         * message.el (message-cite-prefix-regexp)
22365         (message-sendmail-envelope-from, message-minibuffer-local-map)
22366         (message-user-fqdn, message-completion-alist): Add :version.
22367
22368         * gnus-win.el (gnus-configure-windows-hook)
22369         (gnus-use-frames-on-any-display): Add :version.
22370
22371         * gnus-art.el (gnus-article-address-banner-alist)
22372         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
22373         (gnus-treat-from-picon, gnus-treat-mail-picon)
22374         (gnus-treat-x-pgp-sig): Add :version.
22375
22376         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
22377         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
22378         (gnus-summary-article-delete-hook)
22379         (gnus-summary-display-while-building): Add :version.
22380
22381         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
22382         (gnus-get-top-new-news-hook): Add :version.
22383
22384         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
22385         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
22386
22387         * gnus-registry.el (gnus-registry): Add :version.
22388
22389         * gnus-spec.el (gnus-use-correct-string-widths)
22390         (gnus-make-format-preserve-properties): Add :version.
22391
22392         * gnus.el (gnus-group-charter-alist)
22393         (gnus-group-fetch-control-use-browse-url)
22394         (gnus-install-group-spam-parameters): Add :version.
22395
22396         * gnus-diary.el (gnus-diary): Add :version.
22397
22398         * gnus-delay.el (gnus-delay): Add :version.
22399
22400         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
22401         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
22402         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
22403         Add :version.
22404
22405         * gnus-agent.el (gnus-agent-max-fetch-size)
22406         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
22407         (gnus-agent-prompt-send-queue): Add :version.
22408
22409         * deuglify.el (gnus-outlook-deuglify): Add :version.
22410
22411         * html2text.el: Beautify code.  Improve doc strings.
22412         Some checkdoc cleanup.
22413         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
22414
22415 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
22416
22417         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
22418
22419 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
22420
22421         * gnus-registry.el (gnus-registry-hashtb): Create the registry
22422         when package is loaded.
22423
22424         * spam.el (spam-summary-score-preferred-header): Add global preference
22425         for people who want to override the default SpamAssassin over
22426         Bogofilter preference (when both are set).
22427         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
22428         (spam-user-format-function-S):
22429         Check spam-summary-score-preferred-header.
22430         (spam-extra-header-to-number): Add X-Bogosity header parsing.
22431         (spam-user-format-function-S): Format the score correctly.
22432
22433 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
22434
22435         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
22436         signature file.  Suggested by Manoj Srivastava
22437         <srivasta@golden-gryphon.com>.
22438
22439         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
22440         iso-2022-jp even in the Japanese language environment.
22441         Suggested by Jason Rumney <jasonr@gnu.org>.
22442
22443 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
22444
22445         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
22446         use the same characters as the dummy marks; make it free from
22447         getting affected by the language environment.
22448         (gnus-summary-read-group-1): Update mark positions only when the
22449         format spec is updated.
22450
22451         * gnus-spec.el (gnus-update-format-specifications): Return a list
22452         of updated types.
22453
22454 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22455
22456         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
22457         of boundp to check if display-warning is available.
22458
22459 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
22460
22461         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
22462
22463 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22464
22465         * nnspool.el (nnspool-spool-directory): Use news-path if the
22466         news-directory variable is not bound.
22467
22468         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
22469         function instead of display-warning if it is not available.
22470
22471 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
22472
22473         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
22474         v5-10: Use `point-at-bol'.
22475
22476 2004-10-26  Simon Josefsson  <jas@extundo.com>
22477
22478         * hashcash.el: Fix URL in comment, reported by Cheng Gao
22479         <chenggao@gmail.com>.
22480
22481 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
22482
22483         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
22484         instead.
22485
22486 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
22487
22488         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
22489         to remove a server from the nnimap-server-buffer-alist.
22490         (nnimap-open-connection, nnimap-close-server): Use it.
22491
22492         * gnus-encrypt.el: Remove file in favor of encrypt.el.
22493
22494 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
22495
22496         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
22497         running the major-mode function.
22498
22499 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
22500
22501         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
22502         dummy marks in the right way.
22503
22504 2004-10-18  David Edmondson  <dme@dme.org>
22505
22506         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
22507         excessively.
22508
22509 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
22510
22511         * gnus-util.el (gnus-split-references): Accept a nil references
22512         string and go on blissfully.
22513
22514         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
22515         cases where the references string is non-nil but has no references.
22516
22517         * encrypt.el: Add autoload tags.
22518
22519         * spam.el (spam-resolve-registrations-routine): Remove article
22520         from unregistration list too.  Reported by David Hanak
22521         <dhanak@isis.vanderbilt.edu>
22522
22523 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
22524
22525         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
22526         nil.  Change custom type.
22527
22528 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
22529
22530         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
22531
22532         * gnus-sum.el (gnus-summary-move-article): Use it.
22533
22534 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
22535
22536         * encrypt.el: Add autoload cookies.
22537
22538         * spam.el (spam-backend-article-list-property)
22539         (spam-backend-get-article-todo-list)
22540         (spam-backend-put-article-todo-list)
22541         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
22542         Resolve registrations separately.
22543         (spam-register-routine): Format comments.
22544         (spam-unregister-routine, spam-register-routine): Always call with
22545         specific-articles, no default list.
22546         (spam-summary-prepare-exit): Use the spam-classifications function.
22547
22548         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
22549         gnus-encrypt.el.
22550
22551         * encrypt.el: Copied from gnus-encrypt.el.
22552
22553         * gnus-encrypt.el: Commented that it's obsolete.
22554
22555 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
22556
22557         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
22558         (gnus-score-save): Use it.
22559
22560         * message.el (message-bury): Use `window-dedicated-p'.
22561
22562 2004-10-15  Simon Josefsson  <jas@extundo.com>
22563
22564         * pop3.el (top-level): Don't require nnheader.
22565         (pop3-read-timeout): Add.
22566         (pop3-accept-process-output): Add.
22567         (pop3-read-response, pop3-retr): Use it.
22568
22569 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
22570
22571         * spam.el (spam-register-routine): Move comment.
22572         (spam-verify-bogofilter): Use 'unknown for the initial
22573         spam-bogofilter-valid state, not 'never.
22574
22575         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
22576         for netrc-machine.
22577
22578         * nnimap.el (nnimap-open-connection):
22579         Use netrc-machine-user-or-password.
22580
22581 2004-10-17  Richard M. Stallman  <rms@gnu.org>
22582
22583         * gnus-registry.el (gnus-registry-unload-hook):
22584         Set as a variable with add-hook.
22585
22586         * nnspool.el (nnspool-spool-directory): Use news-directory instead
22587         of news-path.
22588
22589         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
22590
22591         * spam.el: Delete duplicate `provide'.
22592         (spam-unload-hook): Set as a variable with add-hook.
22593
22594 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
22595
22596         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
22597         in the doc string.
22598
22599         * message.el (message-ignored-news-headers)
22600         (message-ignored-supersedes-headers)
22601         (message-ignored-resent-headers)
22602         (message-forward-ignored-headers): Improve custom type.
22603
22604 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22605
22606         * message.el (message-tokenize-header): Fix 2004-09-06 change
22607         which used point-min in the wrong place.
22608
22609 2004-10-12  Simon Josefsson  <jas@extundo.com>
22610
22611         * tls.el (tls-certtool-program): New variable.
22612         (tls-certificate-information): New function, based on
22613         ssl-certificate-information.
22614
22615 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
22616
22617         * compface.el: Move the version of ELisp-based uncompface program
22618         to the contrib directory because of the copyright problem.
22619
22620 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
22621
22622         * message.el (message-kill-buffer): Raise the current frame.
22623
22624 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
22625
22626         * gnus-sum.el: Mention that multibyte characters don't work as marks.
22627
22628         * gnus.el (message-y-or-n-p): Autoload.
22629
22630         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
22631         (pop3-password-required, pop3-authentication-scheme)
22632         (pop3-leave-mail-on-server): Make customizable.
22633         (pop3): New custom group.
22634         (pop3-retr): Remove `sleep-for' statements.
22635         Suggested by Dave Love <fx@gnu.org>.
22636
22637         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
22638         Windows/DOS.
22639
22640         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
22641         (imap-parse-body): Fix incorrect use of `assert'.
22642         Suggested by Dave Love <fx@gnu.org>.
22643
22644         * mml.el (mml-minibuffer-read-disposition): Require match.
22645         Suggested by Dave Love <fx@gnu.org>.
22646
22647 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
22648
22649         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
22650         doc string.
22651
22652 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
22653
22654         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
22655
22656 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
22657
22658         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
22659         instead of calling `mm-insert-inline', to decode text/* parts
22660         before displaying them.
22661
22662 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
22663
22664         * mm-uu.el (mm-uu-text-plain-type): New variable.
22665         (mm-uu-pgp-signed-extract-1): Use it.
22666         (mm-uu-pgp-encrypted-extract-1): Use it.
22667         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
22668         bind mm-uu-text-plain-type with that value.
22669         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
22670         mm-uu-dissect.
22671
22672 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22673
22674         * gnus-group.el (gnus-update-group-mark-positions):
22675         * gnus-sum.el (gnus-update-summary-mark-positions):
22676         * message.el (message-check-news-body-syntax):
22677         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
22678         of string-as-multibyte.
22679
22680 2004-10-05  Juri Linkov  <juri@jurta.org>
22681
22682         * gnus-group.el (gnus-update-group-mark-positions):
22683         * gnus-sum.el (gnus-update-summary-mark-positions):
22684         * message.el (message-check-news-body-syntax):
22685         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
22686         8-bit unibyte values to a multibyte string for search functions.
22687
22688 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22689
22690         * mm-uu.el (mm-uu-dissect): Allow optional arg.
22691         (mm-uu-dissect-text-parts): New function.
22692
22693         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
22694         dissect text parts.
22695
22696         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
22697         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
22698
22699         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
22700
22701         * gnus-topic.el (gnus-topic-hierarchical-parameters):
22702         Use gnus-current-topics instead of gnus-current-topic.
22703
22704 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
22705
22706         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
22707
22708 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
22709
22710         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
22711         where appropriate.
22712
22713         * nnml.el (nnml-generate-active-info): do.
22714
22715         * nndiary.el (nndiary-generate-active-info): do.
22716
22717         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
22718         (gnus-topic-move): do.
22719
22720         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
22721         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
22722
22723         * gnus-srvr.el (gnus-server-prepare)
22724         (gnus-server-open-all-servers): do.
22725
22726         * gnus-msg.el (gnus-summary-cancel-article)
22727         (gnus-summary-resend-message)
22728         (gnus-summary-mail-crosspost-complaint): do.
22729
22730         * gnus-move.el (gnus-change-server): do.
22731
22732         * gnus-group.el (gnus-group-unmark-all-groups)
22733         (gnus-group-set-current-level): do.
22734
22735 2004-10-04  Simon Josefsson  <jas@extundo.com>
22736
22737         * message.el (message-generate-hashcash): Doc fix.
22738
22739 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
22740
22741         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
22742         avoid infinite recursion via gnus-get-function.
22743
22744 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
22745
22746         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
22747
22748         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
22749
22750         * nnmail.el (nnmail-split-history): do.
22751
22752         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
22753         (nnml-request-delete-group): do.
22754
22755         * nnslashdot.el (nnslashdot-read-groups): do.
22756
22757         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
22758         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
22759
22760         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
22761         (nnspool-sift-nov-with-sed): Use last.
22762         (nnspool-retrieve-headers-with-nov): Use mapc.
22763         (nnspool-request-newgroups): Use dolist.
22764         (nnspool-request-group): Use last.
22765
22766         * nntp.el (nntp-read-server-type): Use dolist.
22767
22768         * nnvirtual.el (nnvirtual-create-mapping)
22769         (nnvirtual-update-read-and-marked): Use dolist.
22770         (nnvirtual-convert-headers): Simplify.
22771
22772 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
22773
22774         * gnus-agent.el (gnus-agent-synchronize-group-flags):
22775         Add support for sync'ing tick marks.
22776
22777 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
22778
22779         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
22780         there's no visible header.
22781
22782 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
22783
22784         * gnus-agent.el (gnus-agent-synchronize-group-flags):
22785         When necessary, pass full group name to gnus-request-set-marks.
22786
22787 2004-10-01  Simon Josefsson  <jas@extundo.com>
22788
22789         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
22790         acroread.
22791
22792 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22793
22794         * spam-report.el (spam-report-gmane): Fix interactive.
22795
22796         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
22797
22798         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
22799         when writing file.
22800         (gnus-agent-synchronize-flags): Don't default to being
22801         interactive.
22802
22803 2004-09-30  Simon Josefsson  <jas@extundo.com>
22804
22805         * message.el (message-generate-hashcash): Add.
22806         (message-send-mail): Use it, call mail-add-payment.
22807
22808 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
22809
22810         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
22811
22812 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
22813
22814         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
22815         gnus-requst-update-info with explicit code to sync the in-memory
22816         info read flags with the marks being sync'd to the backend.
22817
22818         * gnus-util.el (gnus-pp): Add optional stream to match pp API.
22819
22820 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
22821
22822         * spam.el (spam-verify-bogofilter): Add new function.
22823         (spam-check-bogofilter)
22824         (spam-bogofilter-register-with-bogofilter): Use it.
22825         (spam-verify-bogofilter): Add small fixes.
22826
22827 2004-09-28  Simon Josefsson  <jas@extundo.com>
22828
22829         * hashcash.el (hashcash-generate-payment): Revert.
22830
22831 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
22832
22833         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
22834         Use gnus-extract-references instead of gnus-split-references.
22835
22836         * gnus-util.el (gnus-extract-references): Add new function, analogous
22837         to gnus-split-references but extracts only the message-ID without
22838         anything extra.
22839
22840         * hashcash.el (hashcash-generate-payment)
22841         (hashcash-check-payment): Do the right thing if hashcash-path is
22842         nil (because the hashcash program could not be found).
22843
22844         * spam.el (spam-use-hashcash): Remove comment.
22845
22846 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
22847
22848         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
22849         (gnus-cache-enter-article, gnus-cache-remove-article)
22850         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
22851
22852         * gnus-async.el (gnus-async-prefetch-remove-group): do.
22853
22854         * gnus-art.el (article-hide-boring-headers)
22855         (article-translate-strings, article-display-face)
22856         (gnus-article-mime-match-handle-first)
22857         (gnus-article-highlight-headers)
22858         (gnus-article-add-buttons-to-head): do.
22859
22860 2004-09-27  Simon Josefsson  <jas@extundo.com>
22861
22862         * hashcash.el: New version, from
22863         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
22864         ../contrib/.
22865
22866 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22867
22868         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
22869
22870 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
22871
22872         * gnus-dup.el (gnus-dup-open): Use mapc.
22873         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
22874
22875         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
22876         Reported by Stefan Wiens <s.wi@gmx.net>.
22877
22878         * gnus.el (gnus-shutdown): Use dolist.
22879
22880         * gnus-undo.el (gnus-undo): Use mapc.
22881
22882         * nnrss.el (nnrss-generate-active): do.
22883
22884         * message.el (message-cite-original-without-signature)
22885         (message-cite-original): Use mapc.
22886         (message-do-actions, message-make-forward-subject): Use dolist.
22887
22888 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
22889
22890         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
22891         deletion to remove entire duplicate line.  Fixes merged article
22892         number bug.
22893
22894 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
22895
22896         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
22897         servers that are offline.  Avoids having gnus-agent-toggle-plugged
22898         first ask if you want to open a server and then, even when you
22899         responded with no, asking if you want to synchronize the server's
22900         flags.
22901         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
22902         multi-line expressions.
22903         (gnus-agent-synchronize-group-flags): New internal function.
22904         Updates marks in memory (in the info structure) AND in the
22905         backend.
22906
22907         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
22908
22909         * nnagent.el (nnagent-request-set-mark):
22910         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
22911         method, to ensure that synchronization updates marks in the
22912         backend and in the info (in memory) structure.
22913
22914 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
22915
22916         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
22917         convention fully; don't miss the root article of a thread; make
22918         the X-Draft-From header with correct article numbers.
22919
22920 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
22921
22922         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
22923         unless plugged.  Disable the agent so that an open failure causes
22924         an error.
22925
22926         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
22927         Revert 2004-09-21 change.  The backend must be opened while
22928         synchronizing flags even when the backend stores the flags
22929         locally.
22930
22931 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
22932
22933         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
22934         in `header' match.  Reported by Svend Tollak Munkejord.
22935
22936         * message.el (message-cite-original): Fix use of
22937         `message-cite-articles-with-x-no-archive'.
22938
22939 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
22940
22941         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
22942         (gnus-window-to-buffer): Ditto.
22943
22944         * mml.el (mml-preview-buffer): New variable.
22945         (mml-preview): Manage window layout with gnus-buffer-configuration.
22946
22947         * gnus-msg.el (gnus-setup-message): Put article numbers into the
22948         X-Draft-From header even if those articles aren't quoted.
22949
22950 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
22951
22952         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
22953         (gnus-request-set-mark, gnus-request-update-mark): Use new
22954         g-s-t-u-l-m to decide to use backend even when unplugged.
22955
22956 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
22957
22958         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
22959         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
22960
22961 2004-09-20  Simon Josefsson  <jas@extundo.com>
22962
22963         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
22964         "utf-16-le".
22965
22966 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
22967
22968         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
22969
22970 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
22971
22972         * uudecode.el (uudecode-use-external): Add :version.
22973
22974         * smime.el (smime-CA-file, smime-encrypt-cipher)
22975         (smime-dns-server): Add :version.
22976
22977         * smiley.el (gnus-smiley-file-types): Add :version.
22978
22979         * sha1.el (sha1-use-external): Add :version.
22980
22981         * pgg-def.el (pgg-query-keyserver): Add :version.
22982
22983         * nnmail.el (nnmail-fancy-expiry-targets)
22984         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
22985         Add :version.
22986
22987         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
22988         (nnimap-retrieve-groups-asynchronous): Add :version.
22989         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
22990
22991         * mml.el (mml-content-disposition-parameters)
22992         (mml-insert-mime-headers-always): Add :version.
22993
22994         * mm-util.el (mm-coding-system-priorities): Add :version.
22995
22996         * mm-decode.el (mm-inline-text-html-with-images)
22997         (mm-keep-viewer-alive-types, mm-external-terminal-program)
22998         (mm-verify-option): Add :version.
22999         (mm-text-html-renderer): Change :version.
23000
23001         * message.el (message-fcc-externalize-attachments)
23002         (message-required-headers, message-draft-headers)
23003         (message-subject-trailing-was-query)
23004         (message-subject-trailing-was-ask-regexp)
23005         (message-subject-trailing-was-regexp, message-mark-insert-begin)
23006         (message-mark-insert-end, message-archive-header)
23007         (message-archive-note, message-cross-post-default)
23008         (message-cross-post-note, message-followup-to-note)
23009         (message-cross-post-note-function, message-use-mail-followup-to)
23010         (message-subscribed-address-functions)
23011         (message-subscribed-address-file, message-subscribed-addresses)
23012         (message-subscribed-regexps, message-allow-no-recipients)
23013         (message-yank-cited-prefix, message-signature-insert-empty-line)
23014         (message-hidden-headers, message-hierarchical-addresses)
23015         (message-mail-user-agent, message-use-idna)
23016         (message-valid-fqdn-regexp)
23017         (message-strip-special-text-properties, message-header-synonyms)
23018         (message-beginning-of-line, message-tab-body-function): Add :version.
23019         (message-insert-canlock, message-wide-reply-confirm-recipients):
23020         Change :version.
23021
23022         * mail-source.el (mail-source-ignore-errors): Add :group, :type
23023         and :version.
23024         (mail-source-delete-old-incoming-confirm)
23025         (mail-source-movemail-program): Add :version.
23026
23027         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
23028         (gnus-agent-cache, gnus-agent): Change :version.
23029
23030         * gnus-util.el (gnus-use-byte-compile): Change :version.
23031
23032         * gnus-sum.el (gnus-summary-make-false-root-always)
23033         (gnus-summary-default-high-score)
23034         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
23035         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
23036         (gnus-read-all-available-headers, gnus-article-emulate-mime)
23037         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
23038         (gnus-sum-thread-tree-single-indent)
23039         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
23040         (gnus-sum-thread-tree-leaf-with-other)
23041         (gnus-sum-thread-tree-single-leaf): Add :version.
23042         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
23043         (gnus-article-loose-mime): Change :version.
23044
23045         * gnus-start.el (gnus-backup-startup-file)
23046         (gnus-save-startup-file-via-temp-buffer): Add :version.
23047
23048         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
23049         (gnus-server-offline-face): Add :version.
23050
23051         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
23052
23053         * gnus-msg.el (gnus-gcc-externalize-attachments)
23054         (gnus-debug-files, gnus-debug-exclude-variables)
23055         (gnus-discouraged-post-methods): Change :version.
23056         (gnus-confirm-mail-reply-to-news)
23057         (gnus-confirm-treat-mail-like-news): Add :version.
23058
23059         * gnus-int.el (gnus-server-unopen-status): Add :version.
23060
23061         * gnus-group.el (gnus-group-jump-to-group-prompt)
23062         (gnus-large-ephemeral-newsgroup)
23063         (gnus-fetch-old-ephemeral-headers): Add :version.
23064
23065         * gnus-fun.el (gnus-x-face-directory)
23066         (gnus-convert-pbm-to-x-face-command)
23067         (gnus-convert-image-to-x-face-command)
23068         (gnus-convert-image-to-face-command): Add :version.
23069
23070         * gnus-delay.el (gnus-delay-default-hour): Add :version.
23071
23072         * gnus-cite.el (gnus-cite-blank-line-after-header)
23073         (gnus-article-boring-faces): Add :version.
23074
23075         * gnus-art.el (gnus-buttonized-mime-types)
23076         (gnus-inhibit-mime-unbuttonizing)
23077         (gnus-treat-display-face)
23078         (gnus-treat-body-boundary): Change :version.
23079         (gnus-body-boundary-delimiter, gnus-picon-databases)
23080         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
23081         (gnus-treat-date-english, gnus-treat-fold-headers)
23082         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
23083         (gnus-treat-mail-picon, gnus-treat-wash-html)
23084         (gnus-article-encrypt-protocol)
23085         (gnus-use-idna, gnus-article-over-scroll)
23086         (gnus-mime-display-multipart-alternative-as-mixed)
23087         (gnus-mime-display-multipart-related-as-mixed)
23088         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
23089         (gnus-ctan-url, gnus-button-ctan-handler)
23090         (gnus-button-handle-ctan-bogus-regexp)
23091         (gnus-button-ctan-directory-regexp)
23092         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
23093         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
23094         (gnus-button-man-level, gnus-button-emacs-level)
23095         (gnus-button-message-level, gnus-button-browse-level): Add :version.
23096
23097         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
23098         (gnus-agent-go-online): Change :version.
23099         (gnus-agent-expire-unagentized-dirs)
23100         (gnus-agent-auto-agentize-methods): Add :version.
23101
23102         * flow-fill.el (fill-flowed-display-column)
23103         (fill-flowed-encode-column): Add :version.
23104
23105         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
23106         (gnus-outlook-deuglify-unwrap-max)
23107         (gnus-outlook-deuglify-cite-marks)
23108         (gnus-outlook-deuglify-unwrap-stop-chars)
23109         (gnus-outlook-deuglify-no-wrap-chars)
23110         (gnus-outlook-deuglify-attrib-cut-regexp)
23111         (gnus-outlook-deuglify-attrib-verb-regexp)
23112         (gnus-outlook-deuglify-attrib-end-regexp)
23113         (gnus-outlook-display-hook): Add :version.
23114
23115         * binhex.el (binhex-use-external): Add :version.
23116
23117 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
23118
23119         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
23120         and `invisible'.
23121
23122 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
23123
23124         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
23125         in gnus-registry-trim.
23126
23127 2004-09-13  Simon Josefsson  <jas@extundo.com>
23128
23129         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
23130
23131         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
23132
23133         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
23134         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
23135         <yamaoka@jpl.org>.
23136         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
23137         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
23138         <yamaoka@jpl.org>.
23139
23140         * sieve.el (sieve-manage-mode): Ditto.
23141
23142 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
23143
23144         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
23145
23146 2004-09-11  Simon Josefsson  <jas@extundo.com>
23147
23148         * dns-mode.el: Add.
23149
23150         * mm-view.el (mm-display-dns-inline): Add.
23151
23152         * mm-decode.el (mm-inline-media-tests): Add text/dns.
23153         (mm-automatic-display): Ditto.
23154
23155         * mailcap.el (mailcap-mime-data): Add text/dns.
23156         (mailcap-mime-extensions): Map .soa to text/dns.
23157
23158 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
23159
23160         * gnus-art.el (article-decode-mime-words, article-babel)
23161         (gnus-article-highlight-signature, gnus-article-add-buttons)
23162         (gnus-signature-toggle): Remove unnecessary bindings of
23163         `inhibit-read-only' inherited from v5.10 merge.
23164
23165 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
23166
23167         * nntp.el (nntp): New customization group.
23168         (nntp-authinfo-file): Add customization group.
23169
23170         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
23171
23172         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
23173
23174         * gnus.el (to-address, to-list, subscribed)
23175         (large-newsgroup-initial): Ditto.
23176
23177         * flow-fill.el (fill-flowed-display-column)
23178         (fill-flowed-encode-column): Ditto.
23179
23180 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
23181
23182         * message.el (message-tokenize-header, message-send-mail-with-qmail):
23183         Use point-min rather than 1.
23184         (message-send-mail): Use buffer-size rather than point-max.
23185
23186         * gnus-sum.el (gnus-summary-search-article-forward):
23187         Signal a specific `search-failed' rather than a generic `error'.
23188
23189         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
23190         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
23191         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
23192
23193 2004-09-10  Simon Josefsson  <jas@extundo.com>
23194
23195         * nndb.el (require): Remove tcp and duplicate cl.
23196
23197 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23198
23199         * gnus-agent.el (directory-files-and-attributes): Move forward.
23200
23201 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
23202
23203         * gnus-agent.el (directory-files-and-attributes):
23204         Optionally defined to support XEmacs.
23205
23206 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
23207
23208         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
23209         to avoid run-time CL dependencies.
23210         (gnus-agent-unfetch-articles): New function.
23211         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
23212         article numbers even when local .overview file is missing.
23213         (gnus-agent-read-article-number): New function.  Only accepts
23214         27-bit article numbers.
23215         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
23216         Use gnus-agent-read-article-number.
23217         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
23218         from backend while recognizing that article numbers in .overview
23219         must be valid.
23220         (gnus-agent-update-files-total-fetched-for):
23221         Use directory-files-and-attributes to improve performance.
23222         * gnus-int.el (gnus-request-move-article):
23223         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
23224         improve performance.
23225
23226         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
23227         some users confused by references to .newsrc when they only have a
23228         .newsrc.eld file.
23229         (gnus-convert-mark-converter-prompt)
23230         (gnus-convert-converter-needs-prompt): Fix use of property list.
23231         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
23232         New function.  Used internally to only display 'gnus converting
23233         files' message when actually necessary.
23234
23235         * gnus-sum.el (): Remove (require 'gnus-agent) as required
23236         methods now autoloaded.
23237
23238 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
23239
23240         * gnus-sum.el (gnus-summary-insert-subject): Remove list
23241         identifiers.
23242
23243 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
23244
23245         * gnus-picon.el: Fix indentation and closing parenthesis.
23246
23247 2004-09-01  Simon Josefsson  <jas@extundo.com>
23248
23249         * message.el (message-canlock-generate): Require sha1, not
23250         sha1-el.  (Can we get rid of this require altogether?  It is ugly
23251         to require within a function.  Sadly, if sha1.el isn't loaded, the
23252         let binding in m-c-g will hide the defcustom definition, which is
23253         bad.)
23254
23255         * canlock.el: Require sha1, not sha1-el.
23256
23257         * message.el: Don't autoload sha1 (there is a autoload cookie in
23258         sha1.el).
23259
23260         * sha1-el.el: Rename to sha1.el.
23261
23262 2004-08-30  Juanma Barranquero  <lektu@terra.es>
23263
23264         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
23265
23266 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
23267
23268         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
23269
23270 2004-08-30  Kim F. Storm  <storm@cua.dk>
23271
23272         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
23273
23274         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
23275         Add :group 'nnimap.
23276
23277 2004-08-30  Andreas Schwab  <schwab@suse.de>
23278
23279         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
23280         ?* and ?\;.
23281
23282         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
23283         and ?\' to symbol instead of whitespace.
23284
23285 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
23286
23287         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
23288
23289         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
23290         instead of re-search-forward.
23291
23292         * gnus-uu.el (gnus-uu-save-article): Ditto.
23293         (gnus-uu-post-encode-uuencode): Ditto.
23294
23295         * html2text.el (html2text-clean-list-items): Ditto.
23296         (html2text-clean-dtdd): Ditto.
23297         (html2text-format-tags): Ditto.
23298
23299         * message.el (message-send-mail-with-sendmail): Fix regexp.
23300         (message-fill-field-general): Use search-forward instead of
23301         re-search-forward.
23302         (unbold-region): Ditto.
23303
23304         * nnrss.el (nnrss-request-article): Ditto.
23305
23306         * nnslashdot.el (nnslashdot-request-article): Ditto.
23307
23308         * nnweb.el (nnweb-gmane-wash-article): Ditto.
23309
23310         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
23311         "Unrecognized menu descriptor" error in XEmacs.
23312
23313 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
23314
23315         * gnus-sum.el (gnus-read-header): Don't remove a header for the
23316         parent article of a sparse article in the thread hashtb.
23317
23318 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
23319
23320         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
23321         (nnmail-expand-newtext): Lowercase expanded entries if
23322         nnmail-split-lowercase-expanded is non-nil.
23323
23324 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23325
23326         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
23327
23328         * gnus-group.el (gnus-group-line-format-alist): Convert the value
23329         of gnus-tmp-news-method into string under XEmacs.  It will be
23330         passed to gnus-correct-length which takes only a string argument.
23331
23332 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
23333
23334         * gnus-util.el (gnus-bind-print-variables): New macro.
23335         (gnus-prin1): Use it.
23336         (gnus-prin1-to-string): Use it.
23337         (gnus-pp): New function.
23338         (gnus-pp-to-string): New function.
23339
23340         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
23341         Replace pp-to-string with gnus-pp-to-string.
23342         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
23343         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
23344         * gnus-msg.el (gnus-debug): Ditto.
23345         * gnus-score.el (gnus-score-save): Ditto.
23346         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
23347         gnus-pp-to-string.
23348         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
23349         with gnus-pp.
23350         * score-mode.el (gnus-score-pretty-print): Ditto.
23351         * webmail.el (webmail-debug): Ditto.
23352
23353 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23354
23355         * gnus-art.el (article-display-face, article-display-x-face):
23356         Use buffer-read-only.
23357
23358 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23359
23360         * gnus-art.el (article-hide-list-identifiers):
23361         Bind inhibit-read-only as t.
23362
23363 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
23364
23365         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
23366
23367 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
23368
23369         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
23370         (gnus-narrow-to-page): Don't assume point-min == 1.
23371         (gnus-article-edit-mode): Derive from message-mode.
23372
23373         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
23374         point-min == 1.
23375
23376         * imap.el (imap-parse-address-list, imap-parse-body-ext):
23377         Disable incorrect use of `assert'.
23378
23379         * message.el (message-mode): Set comment-start-skip.
23380
23381
23382 2004-08-22  Sam Steingold  <sds@gnu.org>
23383
23384         * pop3.el (pop3-leave-mail-on-server): New user variable.
23385         (pop3-movemail): Delete mail only when it is nil.
23386
23387 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
23388
23389         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
23390
23391         * mml.el (mml-preview): Use `pop-to-buffer'.
23392
23393         * message.el (message-goto-mail-followup-to): Insert after "To".
23394         (message-carefully-insert-headers): Add comment.
23395
23396         * gnus.el: Remove unused variable `gnus-article-check-size'.
23397
23398         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
23399
23400         * gnus-art.el (gnus-button-alist):
23401         Improve `gnus-button-handle-library' entry.
23402
23403 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
23404
23405         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
23406         Use downcase, since XEmacs capitalizes error messages differently.
23407
23408 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
23409
23410         * nntp.el: Add (require 'gnus) due to reference to
23411         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
23412
23413 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
23414
23415         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
23416         Bind `mm-fill-flowed'.
23417
23418         * mm-decode.el (mm-dissect-singlepart): Check it.
23419
23420 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
23421
23422         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
23423         'imap' for netrc parsing.
23424
23425 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
23426
23427         * mailcap.el (mailcap-mime-data): Mark as risky.
23428
23429 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23430
23431         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
23432         may be included in the encoded word.
23433         (rfc2047-encode): Don't append a space if the encoded word
23434         includes close parenthesis.
23435
23436 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23437
23438         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
23439         of text within parentheses.
23440
23441 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
23442
23443         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
23444         (gnus-encrypt-write-file-contents): Make the password key the file
23445         name PLUS the cipher, not just the cipher.  Also remove failed
23446         passwords from the cache.
23447
23448 2004-08-06  Simon Josefsson  <jas@extundo.com>
23449
23450         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
23451         Doc fix.
23452
23453 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
23454
23455         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
23456         LWSP.
23457
23458 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
23459
23460         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
23461         Try to append in-reply-to: data to the references: header.
23462
23463         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
23464         (netrc-parse): Use gnus-encrypt.el functions.
23465
23466         * gnus-encrypt.el: Add new file for encryption support; currently
23467         does only a few GPG ciphers and an internal XOR cipher.
23468
23469         * password.el: Add comments on using password-read-and-add.
23470         (password-read-and-add): Add function to read and add the
23471         password to the cache at once.
23472
23473 2004-07-28  Simon Josefsson  <jas@extundo.com>
23474
23475         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
23476         parameter (but don't use it, for now).
23477
23478         * imap.el (imap-ssl-open): Use imap-process-connection-type,
23479         instead of hard coding to nil.
23480
23481 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23482
23483         * mm-view.el (mm-inline-image-emacs): Open lines under an image
23484         as mm-inline-image-xemacs does.
23485
23486 2004-07-26  Simon Josefsson  <jas@extundo.com>
23487
23488         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
23489         Revert part of 2004-07-17 change below.
23490
23491 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
23492
23493         * rfc2047.el (rfc2047-encode-region): Don't infloop.
23494         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
23495
23496 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23497
23498         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
23499         quotes that actually start with ">" at the beginning of the
23500         lines.
23501
23502 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23503
23504         * rfc2047.el (rfc2047-encode-region): Fix last change.
23505         (rfc2047-encode-parameter): Remove useless concat.
23506
23507 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23508
23509         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
23510         encode special characters; fix some kind of misconfigured headers;
23511         signal a real error if debug-on-quit or debug-on-error is non-nil.
23512         (rfc2047-encode-max-chars): New variable.
23513         (rfc2047-encode-1): Use it.
23514         (rfc2047-encode-parameter): New function.
23515
23516         * mml.el (mml-insert-parameter): Remove an excessive space.
23517
23518 2004-07-17  Simon Josefsson  <jas@extundo.com>
23519
23520         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
23521         Kai Grossjohann <kai@emptydomain.de>.
23522         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
23523         (gnus-group-make-menu-bar): Ditto.
23524
23525         * gnus-util.el (gnus-group-server): Add.
23526
23527 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
23528
23529         * message.el (message-clone-locals): Clone sendmail and smtp
23530         variables.
23531
23532 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23533
23534         * rfc2047.el (rfc2047-encode-region): Fix last change.
23535
23536 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23537
23538         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
23539         characters as non-special.
23540
23541 2004-07-09  Simon Josefsson  <jas@extundo.com>
23542
23543         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
23544         Users will lose all flag changes made while unplugged with
23545         e.g. nntp unless flag synchronization happens, thus `nil' is not a
23546         good default.  See numerous reports on ding mailing list.
23547
23548 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
23549
23550         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
23551         add generate-head-function and generate-article-function to the
23552         rfc822-forward entry.
23553         (nndoc-rfc822-forward-generate-article): New function.
23554         (nndoc-rfc822-forward-generate-head): New function.
23555
23556         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
23557
23558 2004-07-06  Dan Christensen  <jdc@uwo.ca>
23559
23560         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
23561         respect display group parameter and gnus-summary-expunge-below.
23562         (gnus-articles-to-read): Remove unused reference to display group
23563         parameter.
23564
23565 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23566
23567         * nnheader.el (nnheader-uniquify-message-id): New experimental
23568         variable.
23569         (nnheader-nov-read-message-id): Use it.
23570
23571         * spam-report.el (spam-report-gmane): Add interactive.
23572
23573 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
23574
23575         * mm-encode.el (mm-content-transfer-encoding-defaults):
23576         Use qp-or-base64 for the application/* types.
23577
23578 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
23579
23580         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
23581
23582 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
23583
23584         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
23585         trim value.
23586
23587 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
23588
23589         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
23590         New macro and function.
23591         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
23592
23593 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23594
23595         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
23596         after-load-alist.
23597
23598 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23599
23600         * gnus-group.el (gnus-group-get-new-news-this-group):
23601         Don't update info that isn't there.
23602
23603 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
23604
23605         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
23606         entry.
23607
23608 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23609
23610         * mm-view.el (mm-inline-render-with-function): Use multibyte
23611         buffer; decode html source by charset.
23612
23613         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
23614
23615         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
23616         Mule-UCS is loaded under XEmacs.
23617         (mm-mime-mule-charset-alist): Avoid duplicated entries.
23618
23619 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
23620
23621         * nnheader.el (nnheader-max-head-length): Increase to 8192.
23622
23623 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23624
23625         * mm-util.el (mm-coding-system-p): Return a coding-system.
23626         (mm-mime-mule-charset-alist): Use shift_jis instead of
23627         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
23628         entries for the mime charsets iso-2022-jp-3 and shift_jis.
23629         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
23630         instead of japanese-shift-jis and iso-latin-1 respectively in
23631         order to share the default value with both Emacs and XEmacs-mule.
23632         (mm-mule-charset-to-mime-charset):
23633         Make mm-coding-system-priorities effective.
23634         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
23635         while predicating of candidates upon the priorities.
23636
23637 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
23638
23639         * gnus-sum.el (gnus-summary-make-menu-bar):
23640         Add gnus-uu-invert-processable.
23641
23642         * gnus.el: Autoload gnus-uu-invert-processable.
23643
23644 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
23645
23646         * mm-util.el (mm-with-multibyte-buffer): New macro.
23647
23648         * rfc2047.el (rfc2047-encode-string): Use it.
23649         (rfc2047-encode-region): Move point to the end of the region after
23650         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
23651
23652 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23653
23654         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
23655         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
23656
23657 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23658
23659         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
23660         (gnus-cite-parse): Ignore quoted envelope From_.
23661         Suggested by Karl Chen <quarl@nospam.quarl.org>.
23662
23663 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
23664
23665         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
23666         invalid addresses.
23667
23668 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
23669
23670         * spam.el: Change section markers, revise TODO list.
23671         (spam-backends): Make new master list of all installed backends.
23672         (spam-summary-exit-behavior): Add new variable to determine how
23673         messages moves are done at summary exit.
23674         (spam-move-spam-nonspam-groups-only)
23675         (spam-process-ham-in-nonham-groups)
23676         (spam-process-ham-in-spam-groups): Remove variables, the
23677         spam-summary-exit-behavior variable should be used to manage this
23678         behavior.
23679         (spam-old-ham-articles, spam-old-spam-articles): Remove.
23680         (spam-old-articles): Add variable, replacing spam-old-ham-articles
23681         and spam-old-spam-articles.
23682         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
23683         Add empty variables, placeholders for the backends they represent.
23684         (spam-set-difference): Move, unchanged.
23685         (spam-list-of-processors): Declare OBSOLETE, not used anymore
23686         unless the user has a processor variable.
23687         (spam-classifications, spam-classification-valid-p)
23688         (spam-backend-properties, spam-backend-property-valid-p)
23689         (spam-backend-function-type-valid-p)
23690         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
23691         (spam-report-articles-gmane, spam-report-articles-resend):
23692         Remove functions, they are not needed.
23693         (spam-install-backend-super, spam-backend-list)
23694         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
23695         (spam-backend-function, spam-backend-ham-registration-function)
23696         (spam-backend-spam-registration-function)
23697         (spam-backend-ham-unregistration-function)
23698         (spam-backend-spam-unregistration-function)
23699         (spam-backend-statistical-p, spam-backend-mover-p)
23700         (spam-install-backend-alias, spam-install-checkonly-backend)
23701         (spam-install-mover-backend, spam-install-nocheck-backend)
23702         (spam-install-backend, spam-install-statistical-backend)
23703         (spam-install-statistical-checkonly-backend): Add backend installation
23704         support.
23705         (spam-summary-prepare-exit): Rewrite to use the new backend code.
23706         (spam-group-processor-p): Use the new backend code and respect the
23707         summary exit behavior.
23708         (spam-mark-spam-as-expired-and-move-routine): Remove.
23709         (spam-summary-prepare): Change to use the new spam-old-articles
23710         variable.
23711         (spam-copy-or-move-routine, spam-copy-spam-routine)
23712         (spam-move-spam-routine, spam-copy-ham-routine)
23713         (spam-move-ham-routine): Add code to copy/move ham or spam.
23714         (spam-fetch-field-fast): Improve doc and code, plus allow the
23715         'number request.
23716         (spam-list-of-checks, spam-list-of-statistical-checks):
23717         Remove variables.
23718         (spam-split, spam-find-spam): Use the new backend code.
23719         (spam-registration-functions): Remove variable.
23720         (spam-unregister-routine): Add convenience wrapper.
23721         (spam-log-undo-registration, spam-register-routine)
23722         (spam-log-processing-to-registry)
23723         (spam-log-unregistration-needed-p): Rename "check" to "backend"
23724         where possible.
23725         (spam-check-gmane-xref, spam-check-regex-headers)
23726         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
23727         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
23728         (spam-check-bogofilter-headers, spam-check-spamoracle)
23729         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
23730         (spam-check-crm114-headers): Use the spam-split-group that
23731         spam-split prepares, no need to determine it every time.
23732
23733         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
23734         to the nnheader-parse-naked-head call.
23735
23736         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
23737
23738         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
23739         the nnheader-nov-read-message-id call.
23740
23741 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
23742
23743         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
23744         gnus-activate-group twice.  Suggested by Markus Peter
23745         <warp@spin.de>.
23746
23747 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
23748
23749         * gnus-art.el (gnus-article-time-format): Exchange the order of
23750         day and month in the default value; fix customization type.
23751         (article-date-ut): Use add-text-properties.
23752         (article-make-date-line): Use message-make-date instead of
23753         current-time-string.
23754
23755         * message.el (message-fetch-field): Don't use set-text-properties.
23756         (message-make-date): Simplify.
23757
23758         * messagexmas.el (message-xmas-make-date): New function.
23759         (message-xmas-redefine): Defalias message-make-date to it.
23760
23761 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23762
23763         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
23764         (rfc2047-encode-region): Treat text within parentheses as special;
23765         show the original text when error has occurred.
23766
23767         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
23768         already-computed method to gnus-activate-group.
23769
23770         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
23771         same select-methods identical Lisp objects.
23772
23773         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
23774         object when modifying the info.
23775
23776 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
23777
23778         * gnus-srvr.el (gnus-server-set-info): Remove the server from
23779         gnus-opened-servers since it has never been opened with the new
23780         configuration yet.
23781
23782 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23783
23784         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
23785         arg to nnheader-generate-fake-message-id.
23786
23787 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
23788
23789         * nnheader.el (nnheader-generate-fake-message-id): Accept a
23790         number and build a fake message ID localized to a group and
23791         article number (so it's repeatable from that point on).
23792         (nnheader-fake-message-id-p): Change regex to accomodate new fake
23793         ID format.
23794
23795         * gnus-sum.el (gnus-get-newsgroup-headers):
23796         Call nnheader-generate-fake-message-id with the article number.
23797
23798 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
23799
23800         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
23801         end-of-buffer.
23802
23803 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23804
23805         * message.el (message-ignored-supersedes-headers): Add Approved.
23806
23807 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
23808
23809         * rfc2047.el (rfc2047-encode-message-header): Remove useless
23810         goto-char.
23811         (rfc2047-encode): Fold the line before encoding.
23812
23813 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23814
23815         * rfc2047.el (rfc2047-encode-message-header): Disabled header
23816         folding -- not all headers can be folded, and this should be done
23817         by the message composition mode.  Probably.  I think.
23818
23819 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23820
23821         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
23822         fast.
23823
23824         * gnus-ems.el (gnus-remove-image): Don't use
23825         message-text-with-property; remove only the image found first.
23826
23827         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
23828         found first.
23829
23830 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
23831
23832         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
23833
23834 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
23835
23836         * message.el (message-text-with-property): Make it fast and accept
23837         optional arguments.
23838         (message-strip-forbidden-properties): Use it.
23839         (message-fix-before-sending): Follow the m-t-w-p change.
23840
23841         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
23842
23843 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
23844
23845         * gnus-art.el (article-hide-headers): Don't change the buffer
23846         mistakenly when performing mml-preview even if
23847         gnus-single-article-buffer is nil.
23848
23849 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
23850
23851         * message.el (message-expand-name-databases): New user option.
23852         (message-expand-name): Use it.
23853
23854 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
23855
23856         * spam.el (spam-report-articles-resend)
23857         (spam-report-resend-register-routine): Allow ham reporting.
23858         (spam-report-resend-register-ham-routine): Add wrapper.
23859         (spam-registration-functions): Add ham resending functions.
23860         (spam-list-of-processors): Add ham resend processor.
23861
23862         * gnus.el (ham-resend-to): Add new group parameter.
23863         (spam-process): Add ham resend option.
23864
23865         * spam-report.el (spam-report-resend): Allow reporting ham.
23866         (spam-report-resend-ham): Add wrapper.
23867
23868 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23869
23870         * message.el (message-cite-articles-with-x-no-archive):
23871         New variable.
23872         (message-cite-original): Use it.
23873
23874 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23875
23876         * message.el (message-cite-original): Respect X-No-Archive.
23877
23878 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
23879
23880         * gnus-art.el (article-hide-headers): Refer to the values for
23881         gnus-ignored-headers and gnus-visible-headers in the summary
23882         buffer since a user may have set them as group parameters.
23883
23884 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
23885
23886         * assistant.el (assistant-node-name): Add convenience function.
23887         (assistant-render-text, assistant-render-node): Add error handling,
23888         plus handle multiple next nodes.
23889         (assistant-find-next-node): Comment out for now.
23890         (assistant-find-next-nodes): Add function, returns list of next
23891         nodes.
23892
23893 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
23894
23895         * mail-source.el (mail-source-directory): Fix doc-string.
23896
23897 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
23898
23899         * assistant.el (assistant-render-text, assistant-eval): Add :set
23900         widget type, which is different because it takes and returns a
23901         list.  Much hilarity ensues.
23902
23903 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
23904
23905         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
23906
23907         * gnus-group.el (gnus-group-get-new-news-this-group):
23908         Add doc-string.
23909
23910         * gnus-start.el (gnus-activate-group): Add doc-string.
23911
23912 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23913
23914         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
23915
23916 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
23917
23918         * assistant.el (assistant-render-text): Try to add a :set
23919         widget, more to come.
23920
23921         * spam.el (spam-group-spam-contents-p): Handle empty groupname
23922         strings.
23923         (spam-report-articles-resend)
23924         (spam-register-routine): Do registration iff any articles warrant
23925         it.
23926         (spam-summary-prepare-exit): Change log message for nil group
23927         destinations.
23928
23929 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
23930
23931         * spam.el (spam-report-resend-register-routine):
23932         Allow spam-report-resend-to to be a group parameter or a global value.
23933
23934 2004-05-26  Simon Josefsson  <jas@extundo.com>
23935
23936         * starttls.el: Merge with my GNUTLS based starttls.el.
23937         (starttls-gnutls-program, starttls-use-gnutls)
23938         (starttls-extra-arguments, starttls-process-connection-type)
23939         (starttls-connect, starttls-failure, starttls-success):
23940         New variables.
23941         (starttls-program, starttls-extra-args): Doc fix.
23942         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
23943         New functions.
23944         (starttls-negotiate, starttls-open-stream):
23945         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
23946         function if it is set.
23947
23948 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
23949
23950         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
23951         structured fields.
23952
23953 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23954
23955         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
23956
23957 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
23958
23959         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
23960         Add variable.
23961         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
23962         assigning the spam-mark to new messages.
23963
23964 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
23965
23966         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
23967
23968 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23969
23970         * dgnushack.el: Autoload customize-set-variable for XEmacs.
23971
23972         * rfc2047.el (rfc2047-encodable-p): Don't move point.
23973         (rfc2047-decode): Treat the ascii coding-system as raw-text by
23974         default.
23975
23976 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
23977
23978         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
23979         correct data.
23980
23981 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
23982
23983         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
23984         (spam-group-processor-p): Fix function.
23985         (spam-group-processor-multiple-p)
23986         (spam-group-spam-processor-report-gmane-p)
23987         (spam-group-spam-processor-report-resend-p)
23988         (spam-group-spam-processor-bogofilter-p)
23989         (spam-group-spam-processor-blacklist-p)
23990         (spam-group-spam-processor-ifile-p)
23991         (spam-group-ham-processor-ifile-p)
23992         (spam-group-spam-processor-spamoracle-p)
23993         (spam-group-spam-processor-crm114-p)
23994         (spam-group-ham-processor-bogofilter-p)
23995         (spam-group-spam-processor-stat-p)
23996         (spam-group-ham-processor-stat-p)
23997         (spam-group-ham-processor-whitelist-p)
23998         (spam-group-ham-processor-BBDB-p)
23999         (spam-group-ham-processor-spamoracle-p)
24000         (spam-group-ham-processor-copy-p): Remove functions with some
24001         prejudice against unneeded code.
24002         (spam-report-articles-resend)
24003         (spam-report-resend-register-routine): Allow the group/topic
24004         spam-resend-to value to override spam-report-resend-to.
24005         (spam-summary-prepare-exit): Invoke spam-group-processor-p
24006         properly now.
24007
24008         * gnus.el (spam-resend-to): Add group/topic parameter.
24009         (spam-process): Move the OBSOLETE processors to the end of the
24010         choices.
24011
24012 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
24013
24014         * spam-report.el (spam-report-resend-to, spam-report-resend):
24015         Start with resend-to set to nil, and then ask the user if necessary.
24016         (spam-report-resend): spam-report-resend takes a list of articles, not
24017         separate article numbers.
24018
24019 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24020
24021         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
24022         addition to emacs-w3m.
24023
24024 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24025
24026         * assistant.el (assistant-authinfo-data): New function.
24027         (assistant-eval): Eval for entire assistant.
24028
24029         * netrc.el (netrc-services-file): New variable.
24030         (netrc-parse-services): New function.
24031         (netrc-find-service-name): New function.
24032         (netrc-find-service-number): New function.
24033         (netrc-port-equal): New function.
24034         (netrc-machine): Use it.
24035
24036         * nnimap.el (nnimap-open-connection): Use netrc.
24037
24038         * gnus-util.el (gnus-netrc-get): Remove aliases.
24039
24040         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
24041
24042         * assistant.el (wid-edit): Fix compilation.
24043
24044         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
24045
24046 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
24047
24048         * gnus-util.el (gnus-set-file-modes): New function.  (small
24049         patch).
24050
24051 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24052
24053         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
24054
24055         * assistant.el (assistant-render-node): Fix up rendering and
24056         read-only text.
24057         (assistant-render-node): Reset.
24058         (assistant-make-read-only): Not sticky.
24059
24060 2004-05-20  Danny Siu  <dsiu@adobe.com>
24061
24062         * gnus-sum.el (gnus-summary-recenter): Summary buffer was not auto
24063         centered even when gnus-auto-center-summary is t.
24064
24065 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24066
24067         * dns.el (dns-get-txt-answer): New function.
24068         (dns-read-txt): Ditto.
24069         (query-dns): Use it.
24070
24071 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
24072
24073         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
24074         active for foreign groups even if the group level is higher than
24075         the specified value.
24076
24077 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24078
24079         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
24080         non-active groups.
24081
24082         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
24083
24084 2004-05-20  Magnus Henoch  <mange@freemail.hu>
24085
24086         * dns.el (dns-read-type): Add support for SVR.  (small patch)
24087
24088 2004-05-20  Adam Sjøgren  <asjo@koldfront.dk>
24089
24090         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
24091         (spam-crm114-header, spam-crm114-spam-switch)
24092         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
24093         (spam-crm114-positive-spam-header)
24094         (spam-crm114-database-directory, spam-list-of-processors)
24095         (spam-group-spam-processor-crm114-p)
24096         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
24097         (spam-generic-score, spam-list-of-checks)
24098         (spam-list-of-statistical-checks, spam-registration-functions)
24099         (spam-check-crm114-headers, spam-crm114-score)
24100         (spam-check-crm114, spam-crm114-register-with-crm114)
24101         (spam-crm114-register-spam-routine)
24102         (spam-crm114-unregister-spam-routine)
24103         (spam-crm114-register-ham-routine)
24104         (spam-crm114-unregister-ham-routine): Add CRM114 support.
24105
24106 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
24107
24108         * gnus.el: Add spam-use-crm114.
24109
24110         * spam.el (spam-list-of-processors, spam-registration-functions):
24111         Add spam-use-resend.
24112         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
24113         (spam-report-articles-gmane): Add doc fix.
24114         (spam-report-articles-resend, spam-report-resend-register-routine):
24115         Add wrappers around spam-report-resend-to.
24116
24117         * spam-report.el (spam-report-resend-to, spam-report-resend):
24118         Add support for resending spam.
24119         (spam-report-gmane): Fix line length >80.
24120
24121         * gnus.el (spam-process): Add spam-use-resend.
24122
24123 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24124
24125         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
24126         number of processed spam messages.
24127         (spam-ham-copy-or-move-routine): Return the number of processed
24128         ham messages.
24129         (spam-summary-prepare-exit): Use the above values to decide
24130         whether status messages shouled be displayed.
24131
24132 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
24133
24134         * rfc2047.el (rfc2047-encode-function-alist): Rename from
24135         `rfc2047-encoding-function-alist' in order to avoid conflicting
24136         with the old version.
24137         (rfc2047-encode-region): Concatenate words containing non-ASCII
24138         characters in structured fields; don't encode space-delimited
24139         ASCII words even in unstructured fields; don't break words at
24140         char-category boundaries.
24141         (rfc2047-encode-1): New function.
24142         (rfc2047-encode): Use it; encode text so that it occupies the
24143         maximum width within 76-column; work correctly on Q encoding for
24144         iso-2022-* charsets.
24145         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
24146         sure not to break a line just after the header name.
24147         (rfc2047-b-encode-region): Remove.
24148         (rfc2047-b-encode-string): New function.
24149         (rfc2047-q-encode-region): Remove.
24150         (rfc2047-q-encode-string): New function.
24151
24152         * mm-util.el (mm-replace-in-string): New function.
24153
24154 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24155
24156         * gnus-msg.el (gnus-inews-make-draft-meta-information):
24157         Really get it right.
24158         (gnus-inews-make-draft): Really.
24159
24160 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
24161
24162         * nnmh.el (nnmh-request-list-1): Don't check the link count
24163         before descending.  (small patch)
24164
24165 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24166
24167         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
24168         stuff.
24169
24170         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
24171         Match on real group name.
24172
24173         * gnus-art.el (gnus-signature-limit): Doc fix.
24174
24175         * gnus-msg.el (gnus-inews-make-draft): Quote list.
24176
24177         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
24178
24179 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
24180
24181         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
24182         isn't a string.
24183
24184 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24185
24186         * gnus-draft.el (gnus-draft-send):
24187         Bind rfc2047-encode-encoded-words.
24188
24189         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
24190         (rfc2047-encodable-p): Say that =? needs encoding.
24191         (rfc2047-encode-encoded-words): New variable.
24192
24193         * gnus-group.el (gnus-group-select-group): Doc fix.
24194
24195         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
24196
24197         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
24198         to nil.
24199
24200         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
24201
24202         * nnheader.el (nnheader-get-lines-and-char): New function.
24203
24204 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
24205
24206         * gnus-msg.el (gnus-summary-followup-with-original):
24207         Document yanking of region when active.
24208
24209 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
24210
24211         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
24212         groups if the group level is higher than the specified value.
24213
24214 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24215
24216         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
24217         (gnus-group-jump-to-group): Add prefix argument using
24218         `gnus-group-jump-to-group-prompt'.  Query before jumping to
24219         non-active group.
24220
24221         * compface.el (uncompface): Be verbose when changing
24222         `uncompface-use-external'.
24223
24224         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
24225         handle manual section.
24226
24227 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24228
24229         * gnus-art.el (gnus-button-alist): Revert previous change.
24230
24231 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24232
24233         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
24234
24235 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24236
24237         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
24238         whether backend can accept message.
24239
24240         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
24241
24242 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
24243
24244         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
24245         Avoid creating directory when nntp-marks-is-evil is true.
24246         Reported by Reiner Steib.
24247
24248 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24249
24250         * gnus-picon.el (gnus-picon-insert-glyph):
24251         Add optional `nostring' argument.
24252
24253 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
24254
24255         * gnus-picon.el (gnus-picon-style): New variable.
24256         (gnus-picon-transform-address): Support `gnus-picon-style'.
24257
24258 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24259
24260         * message.el (message-fill-field): Return point.
24261         (message-generate-headers): Go to end of field.
24262
24263         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
24264         stuff for non-living groups.
24265
24266 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
24267
24268         * gnus-art.el (gnus-article-followup-with-original)
24269         (gnus-article-reply-with-original): gnus-mark-active-p ->
24270         gnus-region-active-p.
24271
24272 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
24273
24274         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
24275         only when there is spam or ham to be processed.
24276
24277 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24278
24279         * mail-source.el (mail-source-delete-crash-box): Refactor.
24280         (mail-source-fetch): Use it.
24281         (mail-source-fetch-file): Ditto.
24282         (mail-source-fetch-directory): Run postscript in loop.
24283         (mail-source-fetch-pop): Delete.
24284         (mail-source-fetch-maildir): Ditto.
24285         (mail-source-fetch-imap): Ditto.
24286
24287         * imap.el (imap-authenticators): Comment out sasl.
24288
24289         * message.el (message-skip-to-next-address): New function.
24290         (message-fill-header-address): Refactor.
24291         (message-fill-address): Use it.
24292         (message-delete-address): Use it.
24293         (message-fill-header-general): Refactor.
24294         (message-fill-field-address): Rename.
24295         (message-narrow-to-field): Find the start of the header.
24296         (message-header-format-alist): Don't pre-fill.
24297         (message-fill-header): Remove.
24298         (message-insert-header): New function.
24299         (message-shorten-references): Use it.
24300
24301         * rfc2047.el (rfc2047-field-value): Strip props.
24302
24303         * mail-parse.el (mail-header-make-address): New alias.
24304
24305         * ietf-drums.el (ietf-drums-make-address): New function.
24306
24307         * imap.el: Add compiler directives.
24308
24309         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
24310
24311         * gnus-art.el (article-decode-idna-rhs): Don't use
24312         message-idna-inside-rhs-p.
24313
24314 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24315
24316         * message.el (message-idna-inside-rhs-p): Remove.
24317         (message-idna-to-ascii-rhs-1): Use proper address parsing.
24318
24319         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
24320         false positives.
24321
24322 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
24323
24324         * imap.el (imap-sasl-make-mechanisms): Use sasl.
24325
24326 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24327
24328         * nneething.el (nneething-file-name): Don't create spurious
24329         files.
24330
24331         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
24332         (gnus-inews-do-gcc): Remove sleep.
24333
24334         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
24335         part under point.
24336
24337         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
24338         (gnus-agent-regenerate-group): Using nil messages aren't valid.
24339
24340 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
24341
24342         * spam.el (spam-summary-prepare-exit): Fix (length).
24343
24344 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
24345
24346         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
24347         as expired without moving it" message when there are spam
24348         messages left.
24349
24350 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
24351
24352         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
24353         header is not nil.
24354
24355 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
24356
24357         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
24358         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
24359         (nntp-marks-changed-p): New arg SERVER.
24360         (nntp-request-update-info): Adjust caller.
24361
24362 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
24363
24364         * nntp.el (nntp-save-marks): Pass missing arg.
24365
24366 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
24367
24368         * nntp.el: Support marks.
24369         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
24370         (nntp-marks-modtime, nntp-marks-directory): New variables.
24371         (nntp-request-set-mark, nntp-request-update-info)
24372         (nntp-possibly-create-directory, nntp-marks-changed-p)
24373         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
24374         New functions.
24375
24376 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
24377
24378         * gnus-xmas.el (gnus-xmas-select-lowest-window)
24379         (gnus-xmas-redefine): Rename.
24380
24381         * gnus-score.el (gnus-score-insert-help):
24382         Use gnus-select-lowest-window.
24383
24384         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
24385         appt-select-lowest-window and rename to gnus-select-lowest-window.
24386
24387         * gnus.el: do.
24388
24389 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24390
24391         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
24392         encodings of MIME-encoded words, in order to improve
24393         interoperability with several broken MUAs.
24394
24395 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24396
24397         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
24398         tags, only when charsets are not specified in headers.
24399         (mm-inline-text-html-render-with-w3m): Ditto.
24400
24401         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
24402         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
24403
24404 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24405
24406         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
24407         instead of MIME-decoded from fields when checking
24408         `gnus-article-address-banner-alist'.
24409
24410 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
24411
24412         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
24413         description rather than subject.
24414
24415 2004-05-02  Steve Youngs  <steve@youngs.au.com>
24416
24417         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
24418
24419 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24420
24421         * gnus.el (gnus-version-number): Bump.
24422
24423 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
24424
24425         * gnus.el: No Gnus v0.2 is released.
24426
24427 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24428
24429         * gnus-agent.el (gnus-agent-read-agentview):
24430         Inline gnus-uncompress-range.
24431
24432 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24433
24434         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
24435         `exec-installed-p'.
24436
24437 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24438
24439         * gnus.el (spam-process, spam-autodetect-methods):
24440         Add bsfilter and bsfilter-headers.
24441
24442         * spam.el (spam-bsfilter): New customize group.
24443         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
24444         (spam-bsfilter-header, spam-bsfilter-probability-header)
24445         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
24446         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
24447         (spam-bsfilter-database-directory): New options.
24448         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
24449         (spam-list-of-statistical-checks, spam-registration-functions):
24450         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
24451         (spam-bsfilter-score): New command.
24452         (spam-check-bsfilter-headers, spam-check-bsfilter)
24453         (spam-bsfilter-register-with-bsfilter)
24454         (spam-bsfilter-register-spam-routine)
24455         (spam-bsfilter-unregister-spam-routine)
24456         (spam-bsfilter-register-ham-routine)
24457         (spam-bsfilter-unregister-ham-routine): New functions.
24458         (spam-generic-score): Support bsfilter; Accept an optional argument
24459         to recalcurate spam score even if scoring header has already been
24460         added.
24461         (spam-bogofilter-score, spam-spamassassin-score): Accept an
24462         optional argument to recalcurate spam score even if scoring header
24463         has already been added.
24464
24465 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
24466
24467         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
24468         strings!  Reported by David D. Smith <davidsmith@acm.org>.
24469         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
24470         link is missing.
24471
24472 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
24473
24474         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
24475         (html2text-get-attr): Rewrite.
24476
24477         * message.el (message-setup-1): Remove redundant put-text-property
24478         on mail-header-separator.
24479
24480 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
24481
24482         * gnus-registry.el (gnus-registry-cache-whitespace)
24483         (gnus-registry-action, gnus-registry-spool-action)
24484         (gnus-registry-split-fancy-with-parent): Change message levels
24485         from 5 to 3 or 7, as needed.
24486
24487         * spam.el (spam-summary-prepare-exit)
24488         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
24489         (spam-split, spam-find-spam, spam-log-undo-registration)
24490         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
24491         level from 5 to 6.
24492
24493 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24494
24495         * gnus-ems.el: Autoload appt-select-lowest-window (revert
24496         2004-03-04 change).
24497
24498 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
24499
24500         * sieve-manage.el (sieve-manage-open):
24501         * nnweb.el (nnweb-insert-html):
24502         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
24503         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
24504         * nnspool.el (nnspool-request-group):
24505         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
24506         * nnml.el (nnml-request-update-info):
24507         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
24508         (nnmh-request-create-group, nnmh-update-gnus-unreads):
24509         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
24510         (nnimap-request-set-mark):
24511         * nnfolder.el (nnfolder-request-update-info):
24512         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
24513         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
24514         * gnus-uu.el (gnus-uu-find-articles-matching):
24515         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
24516         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
24517         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
24518         * gnus-nocem.el (gnus-nocem-scan-groups):
24519         * gnus-int.el (gnus-start-news-server):
24520         * gnus-group.el (gnus-group-make-kiboze-group)
24521         (gnus-group-browse-foreign-server):
24522         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
24523         Use mapc when appropriate.
24524
24525 2004-04-22  Dan Christensen  <jdc@uwo.ca>
24526             Adam Sjøgren  <asjo@koldfront.dk>
24527             Wes Hardaker  <wes@hardakers.net>
24528             Michael Shields  <shields@msrl.com>
24529
24530         * spam.el (spam-necessary-extra-headers): Get the extra headers we
24531         may need for spam sorting and scoring.
24532         (spam-user-format-function-S): Add user format function suitable for
24533         general use.
24534         (spam-article-sort-by-spam-status): Add sorting function for summary
24535         sorting.
24536         (spam-extra-header-to-number): Add function to get a score from a
24537         header.
24538         (spam-summary-score): Add function to get a numeric score from the
24539         headers.
24540         (spam-generic-score): Fix function doc, was in wrong place.
24541         (spam-initialize): Take symbols when it's run, and install the
24542         extra headers that spam-necessary-extra-headers thinks we need.
24543
24544 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
24545
24546         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
24547         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
24548
24549 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
24550
24551         * gnus-sum.el (gnus-set-global-variables)
24552         (gnus-build-all-threads, gnus-get-newsgroup-headers)
24553         (gnus-article-get-xrefs, gnus-summary-best-group)
24554         (gnus-summary-next-article, gnus-summary-enter-digest-group)
24555         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
24556         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
24557         Use with-current-buffer.
24558
24559 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
24560
24561         * spam.el (spam-summary-prepare-exit): Simplify logic.
24562         (spam-fetch-article-header): Read the article header if it's not
24563         available.
24564         (spam-list-articles): Simplify logic.
24565         (spam-filelist-register-routine): Fix bug with unregister-list.
24566
24567         * gnus-registry.el: Fix comments at beginning.
24568
24569 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
24570
24571         * message.el (message-cater-to-broken-inn): Remove.
24572         (message-shorten-references): Make sure the total folded length of
24573         References is shorter than 998 characters to cater to a bug in INN
24574         2.3.  Also, don't pretend that references aren't folded -- this
24575         hasn't worked for a while.
24576
24577 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24578
24579         * gnus-agent.el (gnus-agentize):
24580         gnus-agent-send-mail-real-function no longer set to current value
24581         of message-send-mail-function but rather a lambda that calls
24582         message-send-mail-function.  The change makes the agent real-time
24583         responsive to user changes to message-send-mail-function.
24584
24585 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24586
24587         * legacy-gnus-agent.el
24588         (gnus-agent-convert-to-compressed-agentview): Fix typos with
24589         help from Florian Weimer <fw@deneb.enyo.de>
24590
24591 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24592
24593         * nnmail.el (nnmail-cache-insert): Revert last change.
24594
24595 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
24596
24597         * nnmail.el (nnmail-cache-insert): Always check whether
24598         nnmail-cache-ignore-groups matches a group name.
24599
24600 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
24601
24602         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
24603         (spam-find-spam, spam-log-processing-to-registry)
24604         (spam-log-registered-p, spam-log-unregistration-needed-p)
24605         (spam-log-undo-registration): Use gnus-message instead of
24606         gnus-error, none of these errors are fatal.
24607
24608         * gnus-registry.el (gnus-registry-clean-empty-function)
24609         (gnus-registry-clean-empty): Remove only empty entries without
24610         extra data.
24611
24612 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
24613
24614         * spam-stat.el (spam-stat-buffer-change-to-spam)
24615         (spam-stat-buffer-change-to-non-spam): Change (error) to
24616         (gnus-message 8) invocation.
24617
24618 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24619
24620         * nntp.el (nntp-via-netcat-command): New variable.
24621         (nntp-via-netcat-switches): New variable.
24622         (nntp-open-via-rlogin-and-netcat): New function.
24623         (nntp-open-connection-function): Doc fix.
24624         (nntp-telnet-command): Doc fix.
24625         (nntp-end-of-line): Doc fix.
24626         (nntp-via-rlogin-command): Doc fix.
24627         (nntp-via-user-name): Doc fix.
24628         (nntp-via-address): Doc fix.
24629
24630 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
24631
24632         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
24633         error in Emacs 21.1.
24634
24635 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
24636
24637         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
24638
24639 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24640
24641         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
24642         (gnus-agent-with-refreshed-group): New macro.
24643         (gnus-agent-rename-group): New function.
24644         (gnus-agent-delete-group): New function.
24645         (gnus-agent-save-group-info): Use gnus-command-method when
24646         `method' parameter is nil.  Don't write nil entries into the
24647         active file.
24648         (gnus-agent-get-group-info): New function.
24649         (gnus-agent-fetch-articles):
24650         Use gnus-agent-update-files-total-fetched-for to increment disk space
24651         used.
24652         (gnus-agent-fetch-headers, gnus-agent-save-alist):
24653         Use gnus-agent-update-view-total-fetched-for to increment disk space
24654         used.
24655         (gnus-agent-get-local): Add optional parameters to avoid calling
24656         gnus-group-real-name and gnus-find-method-for-group.
24657         (gnus-agent-set-local): Delete stored entry if either min, or max,
24658         are nil.
24659         (gnus-agent-fetch-session): Reworded error/quit messages.
24660         On quit, use gnus-agent-regenerate-group to record existance of any
24661         articles fetched to disk before the quit occurred.
24662         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
24663         gnus-agent-update-view-total-fetched-for, and
24664         gnus-agent-update-files-total-fetched-for to decrement disk space
24665         used.
24666         (gnus-agent-retrieve-headers):
24667         Use gnus-agent-update-view-total-fetched-for to increment disk space
24668         used.
24669         (gnus-agent-regenerate-group): Replace gnus-group-update-group
24670         with gnus-agent-update-files-total-fetched-for to decrement disk
24671         space and fresh group buffer.
24672         (gnus-agent-inhibit-update-total-fetched-for): New variable.
24673         (gnus-agent-need-update-total-fetched-for): New variable.
24674         (gnus-agent-update-files-total-fetched-for): New function.
24675         (gnus-agent-update-view-total-fetched-for): New function.
24676         (gnus-agent-total-fetched-for): New function.
24677
24678         * gnus-cache.el (gnus-cache-save-buffers):
24679         Use gnus-cache-update-overview-total-fetched-for to change disk space
24680         used by this group.
24681         (gnus-cache-possibly-enter-article):
24682         Use gnus-cache-update-file-total-fetched-for to increment disk space
24683         used by this group.
24684         (gnus-cache-possibly-remove-article):
24685         Use gnus-cache-update-file-total-fetched-for to decrement disk space
24686         used by this group.
24687         (gnus-cache-generate-nov-databases): Purge total fetched cache.
24688         (gnus-cache-rename-group): New function.
24689         (gnus-cache-delete-group): New function.
24690         (gnus-cache-inhibit-update-total-fetched-for): New variable.
24691         (gnus-cache-need-update-total-fetched-for): New variable.
24692         (gnus-cache-with-refreshed-group): New macro.
24693         (gnus-cache-update-file-total-fetched-for): New function.
24694         (gnus-cache-update-overview-total-fetched-for): New function.
24695         (gnus-cache-rename-group-total-fetched-for): New function.
24696         (gnus-cache-delete-group-total-fetched-for): New function.
24697         (gnus-cache-total-fetched-for): New function.
24698
24699         * gnus-group.el: Require gnus-sum and autoload functions to
24700         resolve warnings when gnus-group.el compiled alone.
24701         (gnus-group-line-format): Documented new %F.
24702         (size of Fetched data) group line format; identifies disk space
24703         used by agent and cache.
24704         (gnus-group-line-format-alist): Defined new F format.
24705         (gnus-total-fetched-for): New function.
24706         (gnus-group-delete-group): No longer update
24707         gnus-cache-active-altered as gnus-request-delete-group now keeps
24708         the cache in sync.
24709         (gnus-group-list-active): Let the agent store a server's active
24710         list if currently plugged.
24711
24712         * gnus-int.el (gnus-request-delete-group):
24713         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
24714         local disk in sync with the server.
24715         (gnus-request-rename-group):
24716         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
24717         local disk in sync with the server.
24718
24719         * gnus-start.el (gnus-get-unread-articles):
24720         Cosmetic simplification to logic.
24721
24722         * gnus-util.el (gnus-rename-file): New function.
24723
24724 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
24725
24726         * mm-util.el (mm-image-load-path): Handle nil in load-path.
24727
24728 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
24729
24730         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
24731         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
24732
24733 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
24734
24735         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
24736         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
24737
24738 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
24739
24740         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
24741
24742 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
24743
24744         * spam.el (spam-set-difference): Add function to replace
24745         gnus-set-difference in spam.el.
24746         (spam-summary-prepare-exit): Use spam-set-difference.
24747
24748 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
24749
24750         * gnus-registry.el (gnus-registry-cache-file): Update to use
24751         gnus-dribble-directory OR gnus-home-directory OR ~.
24752         (gnus-registry-split-fancy-with-parent): Fix doc.
24753
24754 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
24755
24756         * message.el (message-exchange-point-and-mark):
24757         Use message-mark-active-p.  Suggested by Jesper Harder
24758         <harder@ifa.au.dk>.
24759
24760 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24761
24762         * message.el (message-exchange-point-and-mark): Don't activate
24763         region if it was inactive.  Suggested by Hiroshi Fujishima
24764         <pooh@nature.tsukuba.ac.jp>.
24765
24766 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
24767
24768         * gnus-art.el (article-display-face): Display Faces in the same
24769         order as X-Faces.
24770
24771 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
24772
24773         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
24774
24775 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24776
24777         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
24778         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
24779         (gnus-article-mime-hierarchy): Remove.
24780         (gnus-article-mime-hierarchy-next): Remove.
24781         (gnus-article-mode): Revert 2004-03-19 change.
24782         (gnus-article-setup-buffer): Revert 2004-03-19 change.
24783         (gnus-insert-mime-button): Revert 2004-03-19 change.
24784         (gnus-mime-accumulate-hierarchy): Remove.
24785         (gnus-mime-enter-multipart): Remove.
24786         (gnus-mime-leave-multipart): Remove.
24787         (gnus-mime-display-part): Revert 2004-03-19 change.
24788         (gnus-mime-display-alternative): Revert 2004-03-19 change.
24789
24790         * mml.el (mml-preview): Revert 2004-03-19 change.
24791
24792 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
24793
24794         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
24795
24796 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
24797
24798         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
24799         t while entering a file name using the mm-with-multibyte macro.
24800         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
24801
24802         * mm-util.el (mm-with-multibyte): New macro.
24803
24804 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
24805
24806         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
24807         New user option.
24808         (gnus-mime-multipart-functions): Doc and customization fix.
24809         (gnus-article-mime-hierarchy): New variable.
24810         (gnus-article-mime-hierarchy-next): New variable.
24811         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
24812         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
24813         gnus-article-mime-hierarchy-next to nil.
24814         (gnus-insert-mime-button): Show hierarchy numbers.
24815         (gnus-mime-accumulate-hierarchy): New function.
24816         (gnus-mime-enter-multipart): New function.
24817         (gnus-mime-leave-multipart): New function.
24818         (gnus-mime-display-part): Recompute hierarchical MIME structure.
24819         (gnus-mime-display-alternative): Show hierarchy numbers.
24820
24821         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
24822         gnus-article-mime-hierarchy-next to nil.
24823
24824 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
24825
24826         * dns.el: Don't require gnus-xmas.
24827
24828 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
24829
24830         * mml.el (mml-generate-mime-1): Don't use format=flowed with
24831         inline PGP.
24832         (mml-menu): Disable mml-quote-region if mark is inactive.
24833
24834 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
24835
24836         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
24837         when the group's active is not available.
24838
24839 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24840
24841         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
24842         error.
24843
24844 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
24845
24846         * imap.el (imap-store-password): New variable.
24847         (imap-interactive-login): Use it.
24848         Suggested by Mark Plaksin <happy@mcplaksin.org>.
24849
24850 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24851
24852         * gnus-art.el (gnus-article-read-summary-keys): Restore new
24853         window-start and hscroll to summary window.
24854
24855 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24856
24857         * gnus-start.el (gnus-convert-old-newsrc): Only write the
24858         conversion message to newsrc-dribble when an actual conversion is
24859         performed.
24860
24861 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
24862
24863         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
24864
24865 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
24866
24867         * mm-decode.el (mm-complicated-handles): New function reviving
24868         former definition of mm-multiple-handles.
24869
24870         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
24871         (gnus-mime-delete-part): Use it.
24872
24873 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24874
24875         * gnus-agent.el (gnus-agent-read-local):
24876         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
24877         avoid the implicit assumption that they will always be equal.
24878         (gnus-agent-save-local): Bind buffer-file-coding-system, not
24879         coding-system-for-write, as the with-temp-file macro first prints
24880         to a buffer then saves the buffer.
24881
24882 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
24883
24884         * gnus-art.el (gnus-article-edit-part): New function.
24885         (gnus-mime-save-part-and-strip): Use it; do query instead of
24886         signaling an error; don't use mm-multiple-handles.
24887         (gnus-mime-delete-part): Ditto.
24888
24889 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24890
24891         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
24892         old file versions.
24893         (gnus-group-prepare-hook): Remove function that converted list
24894         form of gnus-agent-expire-days to group properties.
24895
24896         * gnus-int.el: Autoload gnus-agent-regenerate-group.
24897         (gnus-request-accept-article): Re-indented.
24898
24899         * gnus-start.el (gnus-convert-old-newsrc): Registered new
24900         converters to handle old agent file formats.  Add logic for a
24901         "backup before upgrading warning".
24902         (gnus-convert-mark-converter-prompt): Developers can mark
24903         functions as needing (default), or not needing,
24904         gnus-convert-old-newsrc's "backup before upgrading warning".
24905         (gnus-convert-converter-needs-prompt): Tests whether the user
24906         should be protected from potentially irreversable changes by the
24907         function.
24908
24909         * legacy-gnus-agent.el: New.  Provides converters that are only
24910         loaded when gnus-convert-old-newsrc needs to call them.
24911
24912 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
24913
24914         * mail-source.el (mail-source-touch-pop): Doc fix.
24915
24916         * message.el (message-smtpmail-send-it): Doc fix.
24917
24918 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
24919
24920         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
24921
24922         * nnmail.el (nnmail-split-fancy): do.
24923
24924         * gnus-kill.el (gnus-kill, gnus-execute): do.
24925
24926 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
24927
24928         * gnus-sum.el (gnus-widget-reversible-match)
24929         (gnus-widget-reversible-to-internal)
24930         (gnus-widget-reversible-to-external): New functions.
24931         (gnus-widget-reversible): New widget.
24932         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
24933
24934 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
24935
24936         * gnus-sum.el (gnus-thread-sort-functions)
24937         (gnus-article-sort-functions): Document `(not F)' items.
24938
24939 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
24940
24941         * spam.el (spam-use-gmane-xref): Add new backend.
24942         (spam-gmane-xref-spam-group): Add variable to control the name of the
24943         Gmane spam group.
24944         (spam-blackhole-servers, spam-blackhole-good-server-regex)
24945         (spam-regex-headers-spam, spam-regex-headers-ham)
24946         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
24947         (spam-list-of-checks): Add spam-use-gmane-xref to list of
24948         backends and checks.
24949         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
24950
24951         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
24952         an autodetect method.
24953
24954 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24955
24956         * gnus-int.el (gnus-request-accept-article): Inform the agent that
24957         articles are being added to a group.
24958         (gnus-request-replace-article): Inform the agent that articles
24959         need to be uncached as the cached contents are no longer valid.
24960
24961 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
24962
24963         * binhex.el: Don't autoload executable-find.
24964
24965         * canlock.el: Don't autoload mail-fetch-field.
24966
24967         * dgnushack.el: Autoload c-mode for XEmacs.
24968
24969         * gnus-ems.el: Don't autoload appt-select-lowest-window.
24970
24971         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
24972         rmail-dont-reply-to and rmail-output.
24973
24974         * gnus-score.el: Don't autoload ffap-string-at-point.
24975
24976         * gnus-setup.el: Don't autoload sc-cite-original.
24977
24978         * imap.el: Don't autoload base64-decode-string,
24979         base64-encode-string and md5.
24980
24981         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
24982         and rmail-msg-restore-non-pruned-header.
24983
24984         * mm-decode.el: Don't autoload executable-find.
24985
24986         * mm-url.el: Don't autoload executable-find.
24987
24988         * mm-view.el: Don't autoload diff-mode.
24989
24990         * nndb.el: Don't autoload news-reply-mode, news-setup,
24991         cancel-timer and telnet.
24992
24993         * password.el: Don't autoload run-at-time for Emacs.
24994
24995         * sha1-el.el: Don't autoload executable-find.
24996
24997         * sieve-mode.el: Don't autoload c-mode.
24998
24999         * uudecode.el: Don't autoload executable-find.
25000
25001 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25002
25003         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
25004         (gnus-agent-possibly-alter-active): Avoid null in numeric
25005         comparison.
25006         (gnus-agent-set-local): Refuse to save null in local object table.
25007         (gnus-agent-regenerate-group): The REREAD parameter can now be a
25008         list of articles that will be marked as unread.
25009
25010 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
25011
25012         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
25013
25014 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
25015
25016         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
25017         language tags.
25018
25019 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
25020
25021         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
25022         Don't bind "obarray".
25023
25024         * gnus-sum.el (gnus-thread-sort-functions):
25025         Add `gnus-thread-sort-by-most-recent-number' and
25026         `gnus-thread-sort-by-most-recent-date'.
25027         Reported by Kai Grossjohann <kai@emptydomain.de>.
25028
25029 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
25030
25031         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
25032
25033 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25034
25035         * gnus-cus.el (gnus-agent-customize-category):
25036         Remove ignore-errors macro reference that required cl to be loaded at
25037         run-time.
25038
25039         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
25040         single-interval range of the form (min . max).  Previously the
25041         range had to look like ((min . max)).  Likewise, return
25042         (min . max) rather than ((min . max)).
25043         (gnus-range-map): Use gnus-range-normalize to accept
25044         single-interval range.
25045
25046         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
25047         the cache, but not the agent, now appear with their usual face.
25048
25049         * dgnushack.el (loaddir): New variable that is bound to the
25050         directory containing the dgnushack.el file. Use loaddir, rather
25051         than srcdir, to update load-path. Change lets dgnushack compile
25052         code in directories other than GNUS/lisp.
25053
25054 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
25055
25056         * lpath.el: Don't bind w3m-safe-url-regexp.
25057
25058         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
25059         w3m-safe-url-regexp variable buffer-local.
25060
25061         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
25062
25063 2004-02-27  Simon Josefsson  <jas@extundo.com>
25064
25065         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
25066         gnus-group-real-prefix.
25067         (gnus-summary-move-article): Use it, instead of
25068         gnus-group-real-prefix.
25069
25070 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
25071
25072         * lpath.el: Bind w3m-safe-url-regexp.
25073
25074         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
25075         w3m-safe-url-regexp variable buffer-local and set it as the value
25076         of mm-w3m-safe-url-regexp.
25077
25078         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
25079
25080         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
25081         parsing gnus-posting-styles when the message is not for replying.
25082
25083         * dgnushack.el: Autoload sgml-mode for XEmacs.
25084
25085         * nnrss.el (nnrss-opml-export):
25086         Use mm-set-buffer-file-coding-system instead of
25087         set-buffer-file-coding-system.
25088
25089 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
25090
25091         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
25092         of checkdoc.el).
25093         * nnrss.el: do.
25094         * gnus-mlspl.el: do.
25095         * gnus-ml.el: do.
25096         * gnus-srvr.el: do.
25097
25098         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
25099
25100 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
25101
25102         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
25103         Corrections to custom-manual links.
25104
25105         * gnus-art.el (gnus-article): Ditto.
25106
25107         * mm-decode.el (mime-display, mime-security): Ditto.
25108
25109 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
25110
25111         * flow-fill.el: Typo.
25112
25113 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
25114
25115         * spam-wash.el: New file.
25116
25117 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
25118
25119         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
25120
25121 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
25122
25123         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
25124         to be run with new-articles as LIST1, not LIST2.
25125         (spam-registration-functions): Add spam-use-ham-copy as a nil
25126         registration backend.
25127
25128 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
25129
25130         * spam-stat.el (spam-stat-washing-hook): New option.
25131         (spam-stat-buffer-words): Use it.
25132         (spam-stat-process-directory, spam-stat-test-directory):
25133         Use insert-file-contents-literally.
25134         (spam-stat-coding-system): New variable.
25135         (spam-stat-load, spam-stat-save): Use it.
25136
25137 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
25138
25139         * spam-report.el (spam-report-plug-agent):
25140         Quote spam-report-url-to-file and spam-report-url-ping-plain.
25141
25142 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
25143
25144         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
25145         Allow / in mailto URLs.
25146
25147 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
25148
25149         * spam-report.el (spam-report-process-queue): Fix interactive use.
25150         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
25151         (spam-report-unplug-agent): Doc fixes.
25152         (spam-report-url-ping-mm-url, spam-report-url-to-file)
25153         (spam-report-agentize, spam-report-deagentize): Autoload.
25154
25155 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
25156
25157         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
25158
25159         * message.el (message-setup-fill-variables): Add mml tags to
25160         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
25161         <ajk@iu.edu>.
25162         (message-mode): Don't modify paragraph-separate there.
25163
25164 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
25165
25166         * compface.el (uncompface-use-external): Default to undecided.
25167         (uncompface-use-external-threshold): New variable.
25168         (uncompface-float-time): New macro.
25169         (uncompface): Determine whether to use the external decoder if
25170         uncompface-use-external is undecided.
25171
25172 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25173
25174         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
25175         after images.
25176
25177         * gnus-art.el (gnus-mime-display-single): Remove dead code.
25178
25179 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
25180
25181         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
25182
25183         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
25184
25185         * gnus-sum.el (gnus-summary-limit-to-age)
25186         (gnus-summary-limit-children): do.
25187
25188         * gnus-int.el (gnus-request-scan): do.
25189
25190         * gnus-group.el (gnus-group-suspend): do.
25191
25192         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
25193
25194         * gnus-cite.el (gnus-cite-parse-attributions): do.
25195
25196         * gnus-agent.el (gnus-summary-set-agent-mark)
25197         (gnus-agent-regenerate-group): do.
25198
25199         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
25200
25201         * binhex.el (binhex-decode-region-internal): do.
25202
25203 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
25204
25205         * gnus-fun.el (gnus-face-properties-alist): New user option.
25206         (gnus-display-x-face-in-from): Use it.
25207
25208         * gnus-art.el (article-display-face): Ditto.
25209
25210         * compface.el (uncompface-use-external): Default to nil.
25211
25212 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
25213
25214         * nntp.el (nntp-erase-buffer): New function.
25215         (nntp-retrieve-data, nntp-send-command)
25216         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
25217         (nntp-possibly-change-group): Use it.
25218
25219         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
25220         Use with-current-buffer.
25221
25222 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
25223
25224         * compface.el: Merge the ELisp-based uncompface program.
25225         (compface): New customization group.
25226         (uncompface-use-external): New user option.
25227         (uncompface): Call uncompface-internal if uncompface-use-external
25228         is nil.
25229         (uncompface-internal): New function.  Note that there are also
25230         some other functions and variables added for this function.
25231
25232 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
25233
25234         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
25235         if necessary.
25236
25237 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
25238
25239         * spam-report.el (spam-report-unplug-agent)
25240         (spam-report-plug-agent, spam-report-deagentize)
25241         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
25242         Add support for the Agent in spam-report: when unplugged, report to a
25243         file; when plugged, submit all the requests.
25244
25245         * spam.el (spam-register-routine): Fix message about
25246         registration.
25247
25248 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
25249
25250         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
25251         dependencies.
25252         (rfc2047-encode): Use it.
25253
25254         * gnus-art.el (gnus-button-marker-list): Move before first
25255         reference.
25256
25257         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
25258         (imap-parse-body): Fix format string mismatch.
25259
25260         * gnus-score.el (gnus-summary-increase-score): do.
25261
25262         * nnrss.el (nnrss-close): New function.
25263
25264 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
25265
25266         * nnrss.el (nnrss-make-filename): New function.
25267         (nnrss-request-delete-group, nnrss-read-server-data)
25268         (nnrss-save-server-data, nnrss-read-group-data)
25269         (nnrss-save-group-data): Use it.
25270         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
25271         (nnrss-read-server-data, nnrss-read-group-data): Use load.
25272         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
25273
25274 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
25275
25276         * mml.el (mml-compute-boundary-1): Don't uncompress files.
25277
25278 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
25279
25280         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
25281         files.
25282
25283         * message.el (message-generate-headers-first): Don't quote nil
25284         and t in docstrings.
25285
25286         * imap.el (imap-id): do.
25287
25288         * gnus-agent.el (gnus-agent-consider-all-articles)
25289         (gnus-agent-queue-mail): do.
25290
25291 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
25292
25293         * spam-report.el (spam-report-process-queue): New function.
25294         Process requests from `spam-report-requests-file'.
25295         (spam-report-process-queue): Doc fix.
25296
25297 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
25298
25299         * spam.el (spam-register-routine)
25300         (spam-log-processing-to-registry, spam-log-registered-p)
25301         (spam-log-unregistration-needed-p, spam-log-undo-registration):
25302         Change "check" to "spam-check" for semi-clarity.
25303
25304 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
25305
25306         * pop3.el: Require nnheader.
25307
25308         * mml-smime.el: Require cl.  Autoload message-fetch-field.
25309
25310         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
25311
25312         * gnus-picon.el: Require cl.
25313
25314         * gnus-fun.el: Require gnus-ems and gnus-util.
25315
25316         * gnus.el (gnus-method-to-server): Move defsubst before first use.
25317
25318         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr.
25319
25320         * gnus-art.el (gnus-article-edit-mode): Define before first
25321         reference.
25322
25323 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
25324
25325         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
25326         (gnus-uu-post-encoded): Use point-at-bol.
25327
25328         * gnus-topic.el (gnus-group-active-topic-p): do.
25329
25330         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
25331
25332         * gnus-group.el (gnus-group-kill-region): do.
25333
25334         * gnus-art.el (article-date-ut): do.
25335
25336         * message.el (message-fetch-field): Remove redundant
25337         case-fold-search binding.
25338         (message-narrow-to-field): Simplify.
25339
25340 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
25341
25342         * spam.el (spam-directory): Derive from `gnus-directory'.
25343
25344         * spam-report.el (spam-report-url-to-file)
25345         (spam-report-requests-file): New function and variable for offline
25346         reporting.
25347         (spam-report-url-ping-function): Add `spam-report-url-to-file'
25348         and user defined function.
25349         (spam-report-url-ping-mm-url): Remove doubled slash.
25350
25351 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
25352
25353         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
25354
25355 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
25356
25357         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
25358         Fix format string mismatch.
25359
25360         * sieve.el (sieve-deactivate-all): do.
25361
25362         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
25363
25364         * nnlistserv.el (nnlistserv-kk-wash-article): do.
25365
25366         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
25367
25368         * mm-bodies.el (mm-7bit-chars): Don't include \r.
25369
25370 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
25371
25372         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
25373         the list of checks.
25374
25375 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
25376
25377         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
25378         padding.
25379
25380 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
25381
25382         * mm-view.el (mm-fill-flowed): New variable.
25383         (mm-inline-text): Use it.
25384
25385 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
25386
25387         * spam.el (spam-spamassassin-register-ham-routine)
25388         (spam-spamassassin-register-spam-routine): Fix function names.
25389
25390 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
25391
25392         * gnus.el (gnus-tmp-grouplens): Remove.
25393         (gnus-summary-line-format): Remove grouplens.
25394
25395         * gnus-group.el (gnus-group-line-format): Ditto.
25396
25397         * gnus-spec.el (gnus-format-specs): Ditto.
25398         (gnus-update-format-specifications): Flush the group format spec
25399         cache if there's the grouplens stuff.
25400         (gnus-parse-simple-format): Replace %l with the empty string.
25401
25402 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
25403
25404         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
25405         omission.
25406
25407 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
25408
25409         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
25410         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
25411
25412 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
25413
25414         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
25415         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
25416         New macros and functions.
25417         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
25418         Handle > NLINK_MAX messages.
25419         * nnmaildir.el (nnmaildir-request-set-mark):
25420         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
25421
25422 2004-01-25  Alex Schroeder  <alex@gnu.org>
25423
25424         * spam-stat.el (spam-stat-process-directory-age): New option.
25425         (spam-stat-process-directory): Use it.
25426
25427 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
25428
25429         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
25430         (spam-stat-save): Accept prefix argument.
25431
25432 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
25433
25434         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
25435         links" error.
25436
25437 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25438
25439         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
25440         the rest of the and/or forms.
25441
25442 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
25443
25444         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
25445         compatibility with old .newsrc.eld files.
25446
25447         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
25448
25449         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
25450
25451         * gnus-start.el (gnus-1): do.
25452
25453         * gnus-group.el (gnus-group-line-format-alist): do.
25454
25455         * gnus.el (gnus-use-grouplens, gnus-visual): do.
25456
25457         * gnus-gl.el: Remove.
25458
25459 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25460
25461         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
25462         marks consisting of a single range {for example, (3 . 5)} rather
25463         than a list of a single range { ((3 . 5)) }.
25464
25465 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
25466
25467         * spam-stat.el (spam-stat-store-gnus-article-buffer):
25468         Use with-current-buffer.
25469         (spam-stat-store-current-buffer): Use insert-buffer-substring to
25470         avoid consing a string.
25471
25472         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
25473         Remove obsolete entries for big5 and gb2312.
25474
25475 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25476
25477         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
25478         uncompressed list.
25479
25480 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
25481
25482         * spam-stat.el (spam-stat-strip-xref): New function.
25483         (spam-stat-process-directory): Use it.
25484
25485         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
25486         here -- it's done in message-fetch-field.
25487
25488 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25489
25490         * gnus-agent.el (gnus-agent-queue-mail)
25491         (gnus-agent-prompt-send-queue): New variables.
25492         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
25493         * gnus-draft.el (gnus-group-send-queue): Pass the group name
25494         "nndraft:queue" along to gnus-draft-send.
25495         Use gnus-agent-prompt-send-queue.
25496         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
25497         is "nndraft:queue".  Suggested by Gaute Strokkenes
25498         <gs234@srcf.ucam.org>
25499
25500         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
25501         (agent-enable-undownloaded-faces): Add.
25502         (gnus-agent-cat-groups): Use eval-and-compile, not
25503         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
25504         method of gnus-agent-cat-groups even when the buffer has been
25505         evaled.
25506         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
25507         delete gnus-agent-save-active-1.
25508         (gnus-agent-save-groups): Delete.  Identical to
25509         gnus-agent-save-active.
25510         (gnus-agent-write-active): No longer adjust agent's copy of active
25511         file as agent's adjustments are now stored in their own
25512         file.  Remove optional parameter.
25513         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
25514         servers.  Add use of min/max range limits from server's local
25515         file.
25516         (gnus-agent-save-alist): Remove unused optional argument.
25517         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
25518         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
25519         (gnus-agent-set-local): A per-server file that keeps min/max range
25520         limits for articles known to the agent.  Provides a fast mechanism
25521         for altering many active ranges.
25522         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
25523         active file (local makes it unnecessary).
25524         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
25525
25526         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
25527         (agent-enable-undownloaded-faces): Add.
25528
25529         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
25530         disable it when sending to "nndraft:queue".
25531         (gnus-group-send-queue): Add safety check to avoid sending queue
25532         when unplugged.
25533
25534         * gnus-group.el (gnus-group-catchup): Use new
25535         gnus-sequence-of-unread-articles, not
25536         gnus-list-of-unread-articles, to avoid exhausting memory with huge
25537         numbers of articles.  Use gnus-range-map to avoid having to
25538         uncompress the unread list.
25539         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
25540         Fix invalid ange-ftp reference.
25541
25542         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
25543         (gnus-sorted-range-intersection): Intersection of two ranges
25544         without requiring that they first be uncompressed.
25545
25546         * gnus-start.el (gnus-activate-group): Unless blocked by the
25547         caller, possibly expand the active range to include both cached
25548         and agentized articles.
25549         (gnus-convert-old-newsrc): Rewrote in anticipation of having
25550         multiple version-dependent converters.
25551         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
25552         gnus-agent-save-active.
25553         (gnus-save-newsrc-file): Save dirty agent range limits.
25554
25555         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
25556         gnus-agent-possibly-alter-active.
25557         (gnus-adjust-marked-articles): Faster handling of simple lists.
25558
25559 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
25560
25561         * spam-stat.el (spam-stat-test-directory): New optional argument
25562         displays a list of files detected.  Suggested by Andrew Cohen
25563         <cohen@andy.bu.edu>.
25564         (spam-stat-buffer-words-with-scores): Don't narrow and change
25565         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
25566
25567 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
25568
25569         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
25570         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
25571         (spam-spamassassin-arguments)
25572         (spam-spamassassin-spam-flag-header)
25573         (spam-spamassassin-positive-spam-flag-header)
25574         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
25575         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
25576         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
25577         (spam-list-of-processors, spam-list-of-checks)
25578         (spam-list-of-statistical-checks, spam-registration-functions)
25579         (spam-check-spamassassin-headers, spam-check-spamassassin)
25580         (spam-spamassassin-score)
25581         (spam-spamassassin-register-with-sa-learn)
25582         (spam-spamassassin-register-spam-routine)
25583         (spam-spamassassin-register-ham-routine)
25584         (spam-assassin-register-spam-routine)
25585         (spam-assassin-register-ham-routine): Add SpamAssassin support.
25586         (spam-bogofilter-score): Fix to show article before scoring.
25587
25588 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
25589
25590         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
25591         default scoring function.
25592         (spam-generic-score): Call spam-spamassassin-score if
25593         spam-use-spamassassin or spam-use-spamassassin-headers is on;
25594         spam-bogofilter-score otherwise.
25595
25596         * gnus.el (spam-process, spam-autodetect-methods):
25597         Add spamassassin and spamassassin-headers.
25598
25599 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
25600
25601         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
25602         Suppress unnecessary messages.
25603
25604 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
25605
25606         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
25607         make-hash-table.
25608
25609 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
25610
25611         * canlock.el (base64-encode-string): Don't autoload it.
25612
25613 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
25614
25615         * run-at-time.el: Remove useless (require 'itimer),
25616         eval-and-compile and (featurep 'xemacs).
25617
25618 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
25619
25620         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
25621         GROUP is a virtual group.
25622
25623 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
25624
25625         * gnus.el: Autoload `message-y-or-n-p'.
25626
25627 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
25628
25629         * pgg-parse.el: Remove unnecessary (require 'custom).
25630
25631         * pgg-def.el: do.
25632
25633         * nnmail.el: do.
25634
25635         * gnus-undo.el: do.
25636
25637         * gnus-picon.el: do.
25638
25639         * gnus-util.el: do.
25640
25641 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
25642
25643         * gnus-sum.el (gnus-pick-line-number): Add autoload.
25644
25645 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
25646
25647         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
25648         handle, as well as a list.
25649
25650         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
25651         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
25652         (mm-w3m-cid-retrieve): Simplify.
25653
25654 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
25655
25656         * message.el (message-kill-to-signature): Allow prefix arg to
25657         specify number of lines to keep before signature.
25658
25659 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
25660
25661         * message.el (message-kill-to-signature): Change docstring.
25662
25663 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
25664
25665         * canlock.el: Always require sha1-el.
25666         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
25667
25668         * message.el: Autoload sha1 only when compiling.
25669
25670         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
25671         eudc-expand-inline for XEmacs.
25672
25673 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
25674
25675         * message.el (message-canlock-generate): Require sha1-el.
25676
25677 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
25678
25679         * message.el (message-expand-name): Silence the byte compiler.
25680
25681         * lpath.el: Add detect-coding-system.
25682
25683         * dgnushack.el (dgnushack-compile): Remove obsolete check for
25684         cus-edit.
25685
25686 2004-01-13  Simon Josefsson  <jas@extundo.com>
25687
25688         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
25689         Invoke gnus-score-mode.
25690         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
25691
25692         * gnus-range.el (gnus-compress-sequence): Doc fix.
25693         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
25694
25695 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
25696
25697         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
25698
25699 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
25700
25701         * spam.el (spam-get-article-as-string): Update to use
25702         gnus-request-article-this-buffer, much simpler.
25703         (spam-get-article-as-buffer): Remove.
25704
25705 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
25706
25707         * message.el (message-expand-name): Use EUDC if the user uses that.
25708
25709 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
25710
25711         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
25712         character for the encoding to avoid consing a string.
25713
25714         * rfc2047.el (rfc2047-decode-string): Don't cons a string
25715         unnecessarily.
25716
25717         * mm-util.el (mm-replace-chars-in-string): Remove.
25718
25719         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
25720         of mm-replace-chars-in-string.
25721
25722 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
25723
25724         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
25725
25726         * mm-util.el (mm-subst-char-in-string): Support inplace.
25727
25728         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
25729         a new string in every iteration.  Use shy groups.
25730
25731 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
25732
25733         * gnus-srvr.el (gnus-browse-unsubscribe-group):
25734         * gnus-soup.el (gnus-soup-group-brew):
25735         * gnus-msg.el (gnus-put-message):
25736         * gnus-move.el (gnus-group-move-group-to-server):
25737         * gnus-kill.el (gnus-batch-score):
25738         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
25739         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
25740         (gnus-group-update-group, gnus-group-read-group)
25741         (gnus-group-make-group, gnus-group-make-help-group)
25742         (gnus-group-make-archive-group, gnus-group-make-directory-group)
25743         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
25744         (gnus-group-sort-by-unread, gnus-group-catchup)
25745         (gnus-group-unsubscribe-group, gnus-group-kill-group)
25746         (gnus-group-yank-group, gnus-group-set-info)
25747         (gnus-group-list-groups):
25748         * gnus.el (gnus-generate-new-group-name):
25749         * gnus-delay.el (gnus-delay-send-queue):
25750         * nnvirtual.el (nnvirtual-catchup-group):
25751         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
25752         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
25753         (gnus-group-prepare-topics, gnus-topic-check-topology):
25754         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
25755         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
25756         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
25757         (gnus-group-make-articles-read):
25758         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
25759         (gnus-group-change-level, gnus-kill-newsgroup)
25760         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
25761         (gnus-get-unread-articles, gnus-make-articles-unread)
25762         (gnus-make-ascending-articles-unread): Use accessor
25763         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
25764         to get group information for improved readability.
25765
25766
25767 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25768
25769         * gnus-art.el (article-decode-mime-words, article-babel)
25770         (gnus-article-highlight-signature, gnus-article-add-buttons)
25771         (gnus-signature-toggle): Use gnus-with-article-buffer.
25772
25773         * gnus-art.el (gnus-article-highlight-headers)
25774         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
25775
25776         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
25777         (gnus-article-set-globals, gnus-request-article-this-buffer)
25778         (gnus-button-message-id, gnus-article-maybe-hide-headers)
25779         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
25780         (gnus-mime-display-alternative): Use with-current-buffer.
25781
25782 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
25783
25784         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
25785         also under 80 char limit, and call gnus-error if needed.
25786         (spam-fetch-article-header): Fix - it was a
25787         buffer-local variable (gnus-newsgroup-data).
25788         (spam-find-spam): Use spam-generate-fake-headers, forget about
25789         spam-insert-fake-headers.
25790         (spam-insert-fake-headers): Remove.
25791
25792 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25793
25794         * deuglify.el (gnus-article-outlook-unwrap-lines)
25795         (gnus-outlook-rearrange-article)
25796         (gnus-outlook-repair-attribution-outlook)
25797         (gnus-outlook-repair-attribution-block)
25798         (gnus-outlook-repair-attribution-other): Remove redundant
25799         save-excursion.
25800
25801 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
25802
25803         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
25804         (spam-fetch-field-subject-fast)
25805         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
25806         (spam-fetch-article-header): Add functions to deal with Gnus
25807         internals for fast retrieval of article header data.
25808         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
25809
25810 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25811
25812         * pop3.el (pop3-md5): Remove.
25813         (pop3-apop): Replace pop3-md5 with md5.
25814
25815         * mm-bodies.el: base64 is always built-in.
25816
25817         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
25818         Use with-current-buffer.
25819
25820 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
25821
25822         * canlock.el (canlock-insert-header): Remove excessive grouping in
25823         regexp.
25824
25825         * gnus-sum.el (gnus-summary-read-document): Ditto.
25826
25827         * gnus-uu.el (gnus-uu-part-number): Ditto.
25828
25829         * html2text.el (html2text-remove-tags): Ditto.
25830         (html2text-format-tags): Ditto.
25831         (html2text-format-single-elements): Ditto.
25832
25833         * mml.el (mml-parse-1): Ditto.
25834
25835 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
25836
25837         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
25838
25839         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
25840
25841         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
25842
25843         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
25844
25845 2003-11-15  Simon Josefsson  <jas@extundo.com>
25846
25847         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
25848         (pgg-gpg-lookup-key): Use regexp match instead of
25849         split-string (split-string is different between emacs 21.2 and
25850         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
25851
25852 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
25853
25854         * gnus-art.el (gnus-mime-view-all-parts)
25855         (gnus-article-part-wrapper, gnus-article-view-part):
25856         Use with-current-buffer.
25857
25858 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
25859
25860         * spam.el (spam-disable-spam-split-during-ham-respool)
25861         (spam-spamoracle-database, spam-cache-lookups)
25862         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
25863         (spam-group-ham-mark-p, spam-group-spam-mark-p)
25864         (spam-group-ham-marks, spam-group-spam-marks)
25865         (spam-group-spam-contents-p, spam-group-ham-contents-p)
25866         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
25867         also add spam-use-blackholes to the statistical checks.
25868         (spam-fetch-field-fast): Add interface to fetching fields, may
25869         become a macro.
25870         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
25871         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
25872         (spam-insert-fake-headers): Fake an article when needed.
25873         (spam-find-spam): Fake article when possible.
25874         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
25875         (spam-check-bogofilter-headers): Use message-fetch-field instead
25876         of nnmail-fetch-field.
25877
25878 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
25879
25880         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
25881
25882 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
25883
25884         * spam.el (spam-split): Do not require spam-use-CHECK to be
25885         enabled if that check is passed to spam-split explicitly; also
25886         fix so 'spam doesn't get converted to spam-split-group when
25887         spam-split-symbolic-return is t.
25888         (spam-find-spam): Find registrations of the article and use those
25889         instead of re-running spam-split to find the spam/ham
25890         classification of the article.
25891         (spam-log-processing-to-registry, spam-log-registered-p)
25892         (spam-log-unregistration-needed-p, spam-log-undo-registration):
25893         Use gnus-error instead of gnus-message.
25894         (spam-log-registration-type): Add function to determine the
25895         classification of a message based on registry entries; will
25896         return nil if both 'spam and 'ham are found.
25897         (spam-check-BBDB): Expand all the BBDB macros here so we can have
25898         a reasonably fast local cache without the loading errors.
25899         (spam-cache-lookups): Set to t by default.
25900         (spam-find-spam): Don't try to guess spam-cache-lookups.
25901         (spam-enter-whitelist, spam-enter-blacklist): Clear the
25902         spam-caches entry.
25903         (spam-filelist-build-cache, spam-filelist-check-cache):
25904         Fix caching of whitelist/blacklist entries.
25905         (spam-check-whitelist, spam-check-blacklist):
25906         Invoke spam-from-listed-p with a type, not a cache variable.
25907         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
25908
25909 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
25910
25911         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
25912
25913         * nnmail.el (nnmail-split-fancy): do.
25914
25915         * mml.el (mml-parse): do.
25916
25917         * gnus-score.el (gnus-enter-score-words-into-hashtb)
25918         (gnus-score-adaptive): do.
25919
25920 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
25921
25922         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
25923         (gnus-mime-button-map): Don't set keymap parent.
25924         (gnus-button-ctan-directory-regexp): Use shy grouping.
25925         (gnus-prev-page-map): Don't set keymap parent.
25926         (gnus-prev-page-map): Remove duplicated one.
25927         (gnus-next-page-map): Don't set keymap parent.
25928         (gnus-mime-security-button-map): Ditto.
25929
25930         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
25931         version number.
25932
25933         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
25934
25935 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
25936
25937         * canlock.el (canlock-sha1-function): Remove.
25938         (canlock-sha1-function-for-verify): Remove.
25939         (canlock-openssl-program): Remove.
25940         (canlock-openssl-args): Remove.
25941         (canlock-ignore-errors): Remove.
25942         (canlock-sha1-with-openssl): Remove.
25943         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
25944         (canlock-verify): Don't use canlock-ignore-errors.
25945
25946         * sha1-el.el (sha1-string-external): Make it can return a string
25947         in binary form.
25948         (sha1-region-external): Ditto.
25949         (sha1-string-internal): Ditto.
25950         (sha1-region-internal): Ditto.
25951         (sha1-region): Ditto.
25952         (sha1-string): Ditto.
25953         (sha1): Ditto.
25954
25955 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25956
25957         * spam.el (spam-report-articles-gmane): New command.
25958
25959 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
25960
25961         * gnus.el: Don't make unnecessary *Group* buffer when loading.
25962
25963         * run-at-time.el (run-at-time-saved): Remove.
25964         (run-at-time): Doc fix.
25965
25966 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
25967
25968         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
25969         (gnus-summary-limit-map): Add it.
25970         (gnus-summary-make-menu-bar): do.
25971
25972 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
25973
25974         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
25975         Make attempt at some caching support (done for BBDB only now).
25976         (spam-find-spam): Set spam-cache-lookups if there are more than 2
25977         addresses to be checked.
25978         (spam-clear-cache-BBDB): Add function, to be invoked by
25979         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
25980         (spam-check-BBDB): Check and use the caches, if
25981         spam-cache-lookups is on, remove superfluous (provide).
25982
25983 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
25984
25985         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
25986
25987 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
25988
25989         * run-at-time.el (run-at-time-saved): Move to after the definition
25990         of `run-at-time'.
25991
25992         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
25993
25994 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
25995
25996         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
25997         mm-w3m-local-map-property.
25998
25999         * mm-view.el (mm-w3m-mode-map): Remove.
26000         (mm-w3m-local-map-property): Remove.
26001         (mm-inline-text-html-render-with-w3m): Don't use
26002         mm-w3m-local-map-property.
26003
26004 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26005
26006         * run-at-time.el: New file.
26007
26008         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
26009         under Emacs.
26010
26011         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
26012         of gnus-set-text-properties.
26013
26014         * gnus-uu.el (gnus-uu-save-article): Ditto.
26015
26016         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
26017
26018         * gnus-cite.el (gnus-cite-parse): Ditto.
26019
26020         * gnus-art.el (gnus-button-push): Use set-text-properties instead
26021         of gnus-.
26022
26023         * gnus-xmas.el (run-at-time): Require run-at-time.
26024
26025         * gnus.el: Change calls to nnheader-run-at-time and
26026         password-run-at-time throughout to use run-at-time directly.
26027
26028         * password.el: Remove definition of run-at-time.
26029
26030         * nnheaderxm.el: Remove definition of run-at-time.
26031
26032 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
26033
26034         * mml.el (mml-minibuffer-read-disposition): Show attachment type
26035         in prompt.
26036
26037 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
26038
26039         * messagexmas.el (message-xmas-redefine): Alias
26040         `message-make-caesar-translation-table' to
26041         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
26042         version.
26043
26044         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
26045         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
26046         `gnus-xmas-set-text-properties'.
26047         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
26048         `gnus-xmas-completing-read'.
26049         (gnus-xmas-completing-read): Removed.
26050         (gnus-xmas-open-network-stream): Removed.
26051
26052         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalize on
26053         XEmacs version.
26054
26055         * dns.el (dns-make-network-process): Use `open-network-stream'
26056         instead of `gnus-xmas-open-network-stream'.
26057
26058         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
26059
26060         * .cvsignore: Add auto-autoloads.el, custom-load.el.
26061
26062 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
26063
26064         * gnus-art.el (gnus-mime-display-alternative)
26065         (gnus-insert-mime-button, gnus-insert-mime-security-button)
26066         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
26067         Don't use gnus-local-map-property.
26068
26069         * gnus-util.el (gnus-local-map-property): Remove.
26070
26071         * mm-view.el (mm-view-pkcs7-decrypt):
26072         Replace gnus-completing-read-maybe-default with completing-read.
26073
26074         * gnus-util.el (gnus-completing-read): do.
26075         (gnus-completing-read-maybe-default): Remove.
26076
26077 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
26078
26079         * password.el: Only autoload `run-at-time' if not XEmacs.
26080         Only autoload the itimer functions if XEmacs.
26081
26082 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
26083
26084         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
26085         XEmacsen.
26086
26087         * dgnushack.el: Autoload executable-find for XEmacs.
26088
26089 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
26090
26091         * gnus-art.el (gnus-read-string): Remove.
26092         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
26093         read-string.
26094
26095 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
26096
26097         * netrc.el: Autoload password-read.
26098         (netrc): Add configuration group.
26099         (netrc-encoding-method, netrc-openssl-path):
26100         Add variables for encoding and decoding of files with symmetric
26101         ciphers.
26102         (netrc-encode): Add assistant function to encode a file with
26103         netrc-encoding-method.
26104         (netrc-parse): Add interactive parameter, added optional
26105         decoding if netrc-encoding-method is non-nil but otherwise
26106         behavior is standard.
26107         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
26108         Do s/encode/encrypt/ everywhere.
26109
26110         * spam.el: Remove executable-find autoload.
26111
26112 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
26113
26114         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
26115
26116         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
26117
26118 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
26119
26120         * gnus-art.el (gnus-treat-ansi-sequences)
26121         (article-treat-ansi-sequences): New variable and function.
26122         Suggested by Dan Jacobson <jidanni@jidanni.org>.
26123
26124         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
26125         Use it.
26126
26127 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
26128
26129         * mm-util.el (mm-quote-arg): Remove.
26130
26131         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
26132         shell-quote-argument.
26133
26134         * gnus-uu.el (gnus-uu-command): do.
26135
26136         * gnus-sum.el (gnus-summary-insert-pseudos): do.
26137
26138         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
26139         with make-char.
26140
26141         * mm-util.el (mm-make-char): Remove.
26142
26143         * mml.el (mml-mode): Replace gnus-add-minor-mode with
26144         add-minor-mode.
26145
26146         * gnus-undo.el (gnus-undo-mode): do.
26147
26148         * gnus-topic.el (gnus-topic-mode): do.
26149
26150         * gnus-sum.el (gnus-dead-summary-mode): do.
26151
26152         * gnus-start.el (gnus-slave-mode): do.
26153
26154         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
26155
26156         * gnus-ml.el (gnus-mailing-list-mode): do.
26157
26158         * gnus-gl.el (gnus-grouplens-mode): do.
26159
26160         * gnus-draft.el (gnus-draft-mode): do.
26161
26162         * gnus-dired.el (gnus-dired-mode): do.
26163
26164         * gnus-ems.el (gnus-add-minor-mode): Remove.
26165
26166         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
26167         Replace gnus-char-width with char-width.
26168
26169         * gnus-ems.el (gnus-char-width): Remove.
26170
26171         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
26172         Replace gnus-char-width with char-width.
26173
26174         * gnus-ems.el (gnus-char-width): Remove.
26175
26176         * spam-stat.el (with-syntax-table): Remove with-syntax-table
26177         definition.
26178         Remove Emacs 20 hash table compatibility code.
26179
26180         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
26181         20 compatibility code.
26182
26183         * spam.el (spam-point-at-eol): Replace with point-at-eol.
26184
26185         * smime.el (smime-point-at-eol): Replace with point-at-eol.
26186
26187         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
26188         Replace with point-at-{eol,bol}.
26189
26190         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
26191
26192         * imap.el (imap-point-at-eol): Replace with point-at-eol.
26193
26194         * flow-fill.el (fill-flowed-point-at-bol)
26195         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
26196
26197         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
26198         Replace with point-at-{eol,bol} throughout all files.
26199
26200 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
26201
26202         * ntlm.el (ntlm-string-as-unibyte): New macro.
26203         (ntlm-build-auth-response): Use it.
26204
26205         Remove Emacs 20 stuff:
26206         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
26207         (butlast, mapc, remove): Remove the compiler macros.
26208         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
26209         of delq and copy-sequence.
26210         * gnus-art.el (popup-menu): Remove the compiler macro.
26211         * nnmail.el (nnmail-split-fancy): Don't support customizing with
26212         Emacs 20.
26213
26214 2004-01-05  Simon Josefsson  <jas@extundo.com>
26215
26216         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
26217         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
26218         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
26219         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
26220         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
26221         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
26222         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
26223         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
26224         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
26225         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
26226         ntlm-string-permute, string-lshift into ntlm-string-lshift,
26227         string-xor into ntlm-string-xor.
26228         Suggested by Jesper Harder <harder@myrealbox.com>.
26229
26230         * ntlm.el: Don't include poem.
26231
26232         * md4.el (print-int32, print-string-hexa): Remove.
26233         Suggested by Jesper Harder <harder@myrealbox.com>.
26234
26235         * sasl-ntlm.el, ntlm.el, md4.el: New files.
26236
26237         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
26238         probably breaks emacs with DL patch, but do we care? Is anyone
26239         still using the DL stuff?)
26240
26241         * sieve-manage.el: Use the password package.
26242         (sieve-manage-read-passwd): Remove.
26243         (sieve-manage-interactive-login): Use password.  Re-add
26244         condition-case around loop.
26245
26246         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
26247         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
26248         Use the password package.
26249
26250 2003-02-19  Simon Josefsson  <jas@extundo.com>
26251
26252         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
26253         token.
26254
26255 2002-08-07  Simon Josefsson  <jas@extundo.com>
26256
26257         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
26258         (sieve-manage-authenticators):
26259         (sieve-manage-authenticator-alist): Add some SASL mechs.
26260         (sieve-sasl-auth): New function.
26261         (sieve-manage-cram-md5-auth):
26262         (sieve-manage-plain-auth): Rewrite using SASL library.
26263         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
26264         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
26265         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
26266         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
26267
26268 2004-01-05  Simon Josefsson  <jas@extundo.com>
26269
26270         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
26271         New files.
26272
26273 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26274
26275         * gnus-group.el (gnus-no-groups-message): Update.
26276
26277         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
26278
26279 2003-11-09  Simon Josefsson  <jas@extundo.com>
26280
26281         * imap.el: Support for ID IMAP extension (RFC 2971).
26282         (imap-local-variables): Add imap-id.
26283         (imap-id): New variable.
26284         (imap-id): New function.
26285         (imap-parse-response): Parse untagged ID response.
26286         * nnimap.el (nnimap-id): New variable.
26287         (nnimap-open-connection): Use it.
26288
26289 2003-12-28  Simon Josefsson  <jas@extundo.com>
26290
26291         * gnus-score.el (gnus-score-edit-all-score): New.
26292         * gnus-group.el (gnus-group-score-map): Bind it to W e.
26293
26294 2004-01-04  Simon Josefsson  <jas@extundo.com>
26295
26296         * password.el: Add.
26297
26298 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
26299
26300         * dns.el (dns-query-types): Fix typo.
26301         (dns-query-types): New function.
26302         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
26303         PTR and SOA replies, see RFC 1035.
26304
26305 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26306
26307         * gnus.el (gnus-logo-color-style): Change colors to `no'.
26308
26309         * Move to Changelog.2.
26310
26311 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26312
26313         * gnus.el (gnus-version-number): Bump version.
26314
26315 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
26316
26317         * gnus.el: No Gnus v0.1 is released.
26318
26319 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
26320
26321         * gnus.el: No Gnus v0.0 is released.
26322
26323 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26324
26325         * gnus.el (gnus-version-number): Bump.
26326         (gnus-version): No.
26327
26328 See ChangeLog.2 for earlier changes.
26329
26330   Copyright (C) 2004-2013 Free Software Foundation, Inc.
26331
26332   This file is part of GNU Emacs.
26333
26334   GNU Emacs is free software: you can redistribute it and/or modify
26335   it under the terms of the GNU General Public License as published by
26336   the Free Software Foundation, either version 3 of the License, or
26337   (at your option) any later version.
26338
26339   GNU Emacs is distributed in the hope that it will be useful,
26340   but WITHOUT ANY WARRANTY; without even the implied warranty of
26341   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26342   GNU General Public License for more details.
26343
26344   You should have received a copy of the GNU General Public License
26345   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
26346
26347 ;; Local Variables:
26348 ;; coding: utf-8
26349 ;; fill-column: 79
26350 ;; add-log-time-zone-rule: t
26351 ;; End: