* shr.el (shr-parse-base): Fix parsing error.
[gnus] / lisp / ChangeLog
1 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * shr.el (shr-parse-base): Fix parsing error.
4
5         * eww.el (eww-submit): Pass the base in to `shr-expand-url'.
6
7         * shr.el (shr-parse-base): New function.
8         (shr-expand-url): Use it to expand relative URLs reliably.
9
10 2013-06-15  Teodor Zlatanov  <tzz@lifelogs.com>
11
12         * auth-source.el (auth-source-search-collection): Fix docstring.
13         (auth-source-netrc-parse): Refactor and improve netrc parser to support
14         single-quoted strings and multiline entries.
15         (auth-source-netrc-parse-next-interesting)
16         (auth-source-netrc-parse-one, auth-source-netrc-parse-entries): New
17         functions to support parser.
18
19 2013-06-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20
21         * eww.el (eww-submit): Get submit button logic right when hitting RET
22         on non-submit buttons.
23
24         * shr.el: Remove shr-preliminary-table-render, since that can't really
25         be used for anything in practice.
26
27 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
28
29         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
30         (sieve-manage-quit).
31
32 2013-06-14  Glenn Morris  <rgm@gnu.org>
33
34         * mml2015.el (mml2015-maximum-key-image-dimension): Add :version.
35
36 2013-06-14  David Edmondson  <dme@dme.org>  (tiny change)
37
38         * mml2015.el (mml2015-maximum-key-image-dimension): New user option to
39         control the maximum size of photo ID image.
40         (mml2015-epg-key-image-to-string): Respect it.
41
42 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
43
44         * shr.el (shr-tag-table-1): Mark the preliminary table renderings
45         instead of the final one so that we can more easily distinguish them.
46
47         * eww.el (eww-submit): Compute the submission URL correctly.
48
49 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
50
51         * sieve-manage.el (sieve-manage-open-server): Don't quote lambda.
52         Use plist-get rather than CL's getf.
53         (sieve-manage-parse-capability): Avoid CL's remove-if.
54
55 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
56
57         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
58         (sieve-manage-quit).
59
60 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
61
62         * shr.el (shr-expand-url): Expansion should chop off the bits after the
63         last slash.
64
65         * eww.el (eww-tag-select): Use the first value as the default value.
66
67 2013-06-13  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
68
69         * eww.el (eww): Prepend urls with http:// if scheme is missing.
70         (eww-mode): Use `define-derived-mode'.
71         (eww-parse-headers): Parse headers from beginning of buffer so that
72         file:// links work.
73
74 2013-06-13  Katsumi Yamaoka  <yamaoka@jpl.org>
75
76         * eww.el (eww-detect-charset): Detect charset from the <meta> tag.
77
78 2013-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
79
80         * shr.el (shr-tag-svg): Ignore SVG elements, because we don't know how
81         to handle them at all.
82
83 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
84
85         * eww.el (eww-convert-widgets): Make widgets from non-tabular layouts
86         work, too.
87         (eww-tag-select): Implement <select>.
88
89 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
90
91         * sieve-manage.el (sieve-manage-open): work with STARTTLS: shorten
92         stream managing functions by using open-protocol-stream to do most of
93         the work. Has the nice benefit of enabling STARTTLS.
94         Wait for capabilities after STARTTLS: following RFC5804, the server
95         sends new capabilities after successfully establishing a TLS connection
96         with the client. The client should update the cached list of
97         capabilities, but we just ignore the answer for now.
98         (sieve-manage-network-p, sieve-manage-network-open)
99         (sieve-manage-starttls-p, sieve-manage-starttls-open)
100         (sieve-manage-forward, sieve-manage-streams)
101         (sieve-manage-stream-alist): Remove unneeded functions neither in the
102         API, nor called by any other function.
103         Enable Multibyte for SieveManage buffers: The parser won't properly
104         handle umlauts and line endings unless multibyte is turned on in the
105         process buffer.
106
107 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
108
109         * eww.el (eww-tag-input): Support password fields.
110         (eww-submit): Support POST.
111
112 2013-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
113
114         * eww.el (eww-tag-form): Protect against degenerate forms.
115
116         * shr.el (shr-expand-url): Expand URLs that start with a slash
117         correctly.
118
119         * eww.el (eww-submit): Get submit button logic right.
120
121         * shr.el (shr-final-table-render): New variable to signal when we're
122         doing the final table rendering so that we can collect more data at
123         that point.
124
125         * eww.el (eww-submit): Make form submission work.
126         (eww-tag-input): Implement submit buttons.
127         (eww-click-radio): Implement radio and checkboxes.
128         (eww-submit): Handle hidden elements.
129
130         * shr.el (shr-descend): Allow other packages to override (or provide)
131         rendering of elements.
132         (shr-expand-url): Strip query strings from URLs before expanding them.
133
134         * eww.el: Don't require cl-lib.
135         (eww-tag-form): Start form support.
136
137         * dgnushack.el (dgnushack-compile): Ignore eww on XEmacs.
138
139         * eww.el: Start writing a new, tiny web browser.
140         (eww-previous-url): New command.
141         (eww-quit): New command.
142
143 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
144
145         * sieve.el: Put point at beginning of buffer when viewing a script.
146         (sieve-open-server): respect the PORT parameter. Show the correct port
147         number in sieve-buffer's header. Fixed code to also work with a string
148         as port specifier. Properly close the connection on pressing 'q'. Make
149         sieve-manage-quit close the connection and process buffer. Also, remove
150         duplicate keybinding for 'q'.
151
152 2013-06-10  Roy Hashimoto  <roy.hashimoto@gmail.com>  (tiny change)
153
154         * mm-view.el (mm-pkcs7-signed-magic): Allow newline in the regexp and
155         make it easier to read.
156         (mm-pkcs7-enveloped-magic): Ditto.
157
158 2013-06-06  Teodor Zlatanov  <tzz@lifelogs.com>
159
160         * gnus-ems.el (gnus-image-type-available-p): Test `display-images-p'
161         before `image-type-available-p' to avoid loading the image libraries
162         needlessly.
163
164 2013-06-05  David Engster  <deng@randomsample.de>
165
166         * gnus-sum.el (gnus-update-marks): Do not remove empty 'unexist'
167         ranges, since `nnimap-retrieve-group-data-early' also uses it as a flag
168         to see whether the group was synced before.
169
170 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
171
172         * tls.el (open-tls-stream): Remove unneeded buffer contents up to point
173         when opening the connection.
174         Suggested by João Távora <joaotavora@gmail.com> in
175         <http://lists.gnu.org/archive/html/emacs-devel/2013-05/msg00464.html>.
176
177 2013-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
178
179         * gnus-art.el (article-date-ut, article-update-date-lapsed): Don't
180         assume Date header begins with "Date", that may be customized into
181         something like "X-Sent" using gnus-article-time-format.
182         (article-transform-date): Allow multi-line Date header.
183
184 2013-06-02  David Engster  <deng@randomsample.de>
185
186         * registry.el (initialize-instance, registry-lookup)
187         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
188         (registry-lookup-secondary-value, registry-search, registry-delete)
189         (registry-insert, registry-reindex, registry-size, registry-prune): Do
190         not wrap methods in `eval-and-compile'.  This breaks due to latest
191         changes in EIEIO (introduction of eieio-core.el).
192
193 2013-05-30  Glenn Morris  <rgm@gnu.org>
194
195         * nnmail.el (nnmail-fancy-expiry-target):
196         Also bind mail-dont-reply-to-names.
197
198         * spam-stat.el (spam-stat-save):
199         No need to tweak font-lock in temp buffers.
200
201         * shr.el (shr-put-image): Silence compiler.
202
203 2013-05-29  Glenn Morris  <rgm@gnu.org>
204
205         * gnus-ems.el (set-process-plist): Every supported Emacs has this.
206
207         * gnus-group.el (gnus-sequence-of-unread-articles)
208         (gnus-summary-add-mark, gnus-mark-article-as-read)
209         (gnus-group-make-articles-read): Declare.
210
211         * gnus-sum.el (gnus-parameter-list-identifier)
212         (gnus-article-stop-animations, gnus-stop-downloads)
213         (gnus-article-only-boring-p, article-goto-body)
214         (gnus-flush-original-article-buffer, article-narrow-to-head)
215         (gnus-article-hidden-text-p, gnus-delete-wash-type)
216         (gnus-summary-save-in-pipe, gnus-article-show-summary): Declare.
217
218         * gnus.el: No need to eval-and-compile autoloads.
219
220         * gravatar.el (help-function-arglist): Autoload.
221
222         * nnimap.el (gnus-refer-thread-use-nnir): Declare.
223
224         * nnmail.el (nnmail-fancy-expiry-target): Maybe use mail-dont-reply-to.
225
226         * spam.el: No need to load spam-report when compiling.
227         No need to eval-and-compile autoloads.
228         (spam-report-resend-to): Declare.
229         (spam-report-resend-register-routine): Require 'spam-report.
230
231 2013-05-24  Julien Danjou  <julien@danjou.info>
232
233         * sieve.el (sieve-setup-buffer): Fix default port value in sieve buffer
234         setup.
235
236 2013-05-23  Glenn Morris  <rgm@gnu.org>
237
238         * gnus-util.el (rmail-swap-buffers-maybe)
239         (rmail-maybe-set-message-counters, rmail-count-new-messages)
240         (rmail-summary-exists, rmail-show-message, rmail-summary-displayed)
241         (rmail-pop-to-buffer, rmail-maybe-display-summary): Declare.
242
243         * mm-decode.el: No need to load term when compiling.
244         (term-mode, term-char-mode): Declare.
245
246         * mm-util.el: No need to load jka-compr when compiling.
247         (jka-compr-acceptable-retval-list, jka-compr-make-temp-name): Declare.
248
249         * nnmaildir.el: Require is automatically eval-and-compile.
250         (nnmail): Require at run-time too.
251
252         * registry.el (registry-size): Move definition before use.
253
254 2013-05-22  Daiki Ueno  <ueno@gnu.org>
255
256         * mml2015.el (mml2015-epg-sign): Make sure to insert newline after the
257         signed data to conform the standard.  (Bug#14232)
258
259 2013-05-20  Adam Sjøgren  <asjo@koldfront.dk>
260
261         * gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left
262         double angle quotation mark.
263
264 2013-05-20  Glenn Morris  <rgm@gnu.org>
265
266         * format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)
267
268 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
269
270         * message.el (message-insert-formatted-citation-line): handle finding
271         first/lastname when more than 2 names appear.
272
273 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
274
275         * shr.el (shr-tag-span): New function.
276
277 2013-05-18  Glenn Morris  <rgm@gnu.org>
278
279         * message.el (message-mode): Use message-mode-abbrev-table,
280         with text-mode-abbrev-table as parent.  (Bug#14413)
281
282 2013-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
283
284         * message.el (message-expand-group): Decode group names.
285
286 2013-05-16  Julien Danjou  <julien@danjou.info>
287
288         * gnus-notifications.el (gnus-notifications-notify): Use photo-file as
289         app-icon.
290
291 2013-05-15  Glenn Morris  <rgm@gnu.org>
292
293         * shr-color.el (shr-color-visible-luminance-min)
294         (shr-color-visible-distance-min): Use shr-color group.
295
296 2013-05-11  Glenn Morris  <rgm@gnu.org>
297
298         * gnus-vm.el: Make it loadable without VM.
299         (gnus-vm-make-folder, gnus-summary-save-in-vm): Require 'vm.
300         (vm-forward-message, vm-reply, vm-mail): Remove unused autoloads.
301
302 2013-05-09  Glenn Morris  <rgm@gnu.org>
303
304         * mml1991.el: Make it loadable.  (Bug#13456)
305
306         * gnus-art.el (gnus-article-date-headers, gnus-blocked-images):
307         * gnus-async.el (gnus-async-post-fetch-function):
308         * gnus-gravatar.el (gnus-gravatar-size, gnus-gravatar-properties):
309         * gnus-html.el (gnus-html-image-cache-ttl):
310         * gnus-notifications.el (gnus-notifications-timeout):
311         * gnus-picon.el (gnus-picon-properties):
312         * gnus-util.el (gnus-completion-styles):
313         * gnus.el (gnus-other-frame-resume-function):
314         * message.el (message-user-organization-file)
315         (message-cite-reply-position):
316         * nnir.el (nnir-summary-line-format)
317         (nnir-retrieve-headers-override-function):
318         * shr-color.el (shr-color-visible-luminance-min):
319         * shr.el (shr-blocked-images):
320         * spam-report.el (spam-report-resend-to):
321         * spam.el (spam-summary-exit-behavior): Fix custom types.
322
323         * gnus-salt.el (gnus-selected-tree-face): Fix default.
324
325 2013-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
326
327         * gnus-art.el (gnus-article-describe-bindings): Require help-mode
328         because of let-binding help-xref-following.  (Bug#14356)
329
330 2013-05-06  Glenn Morris  <rgm@gnu.org>
331
332         * mml2015.el (mml2015-epg-sign): Add name="signature.asc".  (Bug#13465)
333
334 2013-05-04  Andrew Cohen  <cohen@bu.edu>
335
336         * gnus-sum.el (gnus-read-header): Ensure groups are prefixed when
337         entering into the registry.
338
339 2013-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
340
341         * gnus.el: Ma Gnus v0.7 is released.
342
343 2013-05-01  Katsumi Yamaoka  <yamaoka@jpl.org>
344
345         * gnus-util.el (gnus-emacs-completing-read): Fix a filter for XEmacs.
346         (Bug#14304)
347
348 2013-04-27  Glenn Morris  <rgm@gnu.org>
349
350         * gnus.el (gnus-list-debbugs):
351         Use require rather than autoload.  (Bug#14262)
352
353 2013-04-27  Julien Danjou  <julien@danjou.info>
354
355         * sieve-manage.el (sieve-manage-authenticator-alist): Update the sieve
356         port to "sieve" now that it has an official IANA port assigned.
357
358 2013-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
359
360         * mail-source.el (mail-source-fetch-pop, mail-source-check-pop):
361         Don't set the MAILHOST environment variable permanently (Bug#14271).
362
363 2013-04-26  Glenn Morris  <rgm@gnu.org>
364
365         * message.el (message-bury): Revert 2013-03-18 change.  (Bug#14117)
366
367 2013-04-25  Andrew Cohen  <cohen@bu.edu>
368
369         * gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for
370         string values of 'gcc-self. Thanks to Saroj Thirumalai.
371
372 2013-04-24  Andrew Cohen  <cohen@bu.edu>
373
374         * nnir.el (nnir-close-group): Make sure we are in the right group.
375
376         * gnus-sum.el (gnus-summary-insert-articles): Force updates to the
377         dependency table from all newly retrieved headers.
378
379 2013-04-16  David Edmondson  <dme@dme.org>
380
381         Support <img src="data:...">.
382
383         * shr.el (shr-image-from-data): New function.
384         (shr-tag-img): Use it.
385
386 2013-04-14  Andrew Cohen  <cohen@bu.edu>
387
388         * nnir.el (nnir-request-set-mark): Make sure we are in the right
389         group.
390
391 2013-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
392
393         * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles
394         corresponding to any existing group (Bug#14166).
395
396 2013-04-10  Andrew Cohen  <cohen@bu.edu>
397
398         * nnir.el (number-sequence): No longer used.
399         (nnir-request-set-mark): New function.
400         (nnir-request-update-info): Improve marks updating.
401         (nnir-request-scan): Don't duplicate marks updating.
402         (gnus-group-make-nnir-group, nnir-run-imap, nnir-request-create-group):
403         Use 'assq rather than 'assoc. Quote anonymous function.
404         (nnir-request-group, nnir-close-group, gnus-summary-create-nnir-group):
405         Use 'gnus-group-prefixed-p.
406         (gnus-summary-create-nnir-group): Make sure server for method is open.
407
408 2013-04-04  Andrew Cohen  <cohen@bu.edu>
409
410         * nnir.el (gnus-nnir-group-p): New function.
411         (nnir-possibly-change-group): Use it.
412
413         * gnus-msg.el (gnus-setup-message): Use it.
414
415 2013-04-04  Katsumi Yamaoka  <yamaoka@jpl.org>
416
417         * mml.el (mml-minibuffer-read-description): Use `default' insted of
418         `initial-input' for the argument name.
419         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
420
421 2013-04-03  Kevin Layer  <layer@known.net>  (tiny change)
422
423         * mml.el (mml-minibuffer-read-description): Allow passing in a prefix
424         (used by MH-E).
425
426 2013-04-01  Andrew Cohen  <cohen@bu.edu>
427
428         * nnir.el (nnir-request-update-mark): Improve mark updating in original
429         group.
430
431         * gnus-msg.el (nnir-article-number, nnir-article-group): Autoload to
432         fix compilation.
433
434 2013-03-31  Andrew Cohen  <cohen@bu.edu>
435
436         * nnir.el (nnir-method-default-engines): And another typo.
437
438 2013-03-30  Andrew Cohen  <cohen@bu.edu>
439
440         * nnir.el (nnir-method-default-engines): Fix typo.
441
442 2013-03-29  Andrew Cohen  <cohen@bu.edu>
443
444         * nnir.el: Define 'number-sequence for xemacs.
445         (gnus-summary-create-nnir-group): New function to create an nnir group
446         from an nnir summary buffer based on the current query.
447         (nnir-request-create-group): Update to allow nnir group creation based
448         on the current query.
449
450 2013-03-28  Katsumi Yamaoka  <yamaoka@jpl.org>
451
452         * nndraft.el (nndraft-request-expire-articles):
453         Make expiry target always `delete'.
454
455 2013-03-27  Andrew Cohen  <cohen@bu.edu>
456
457         * gnus-msg.el (gnus-setup-message): When replying from an nnir summary
458         buffer use the posting-style and gcc of the original article group.
459         (gnus-inews-insert-gcc): Don't set gcc-self for virtual groups.
460
461         * nnir.el: Fix byte-compile warning. nnoo-define-skeleton should come
462         after other deffoos.
463
464 2013-03-25  Andrew Cohen  <cohen@bu.edu>
465
466         * nnir.el: Major rewrite. Cleaner separation between searches and group
467         management. Marks are now shown in nnir summary buffers. Rudimentary
468         support for real (i.e. not ephemeral) nnir groups.
469         (gnus-summary-make-nnir-group): New function for initiating searches
470         from a summary buffer.
471
472 2013-03-18  Sam Steingold  <sds@gnu.org>
473
474         * message.el (message-bury): Minor cleanup.
475
476 2013-03-07  Paul Eggert  <eggert@cs.ucla.edu>
477
478         * gnus-cite.el: Specify utf-8, not iso-8859-1, for ASCII file.
479
480 2013-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
481
482         * nndir.el (nndir-request-list): Remove 2nd argument passed to
483         nnml-request-list.  (Bug#13873)
484         (nndir-request-newsgroups): Remove, unused.
485
486         * nndraft.el (nndraft-request-newsgroups): Remove, unused.
487
488 2013-03-05  Paul Eggert  <eggert@cs.ucla.edu>
489
490         * deuglify.el, gnus-delay.el, gnus-spec.el, gnus-sum.el, html2text.el,
491         message.el, mm-decode.el, mml1991.el, nnir.el, shr.el, utf7.el:
492         Prefer UTF-8 when the encoding shouldn't matter and changes are small.
493
494 2013-03-03  Ted Phelps  <phelps@gnusto.com>
495
496         * shr.el: Make all the overlays set the `evaporate' property so that
497         they're removed properly.
498
499 2013-02-25  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
500
501         * mml2015-el (mml2015-epg-key-image): wrap epg-gpg-program in
502         shell-quote-argument.
503
504 2013-02-22  David Engster  <deng@randomsample.de>
505
506         * gnus-registry.el (gnus-registry-save): Provide class name when
507         calling `eieio-persistent-read' to avoid "unsafe call" warning.  Use
508         `condition-case' to stay compatible with older EIEIO versions which
509         only accept one argument.
510
511 2013-02-17  Daiki Ueno  <ueno@gnu.org>
512
513         * mml2015.el (epg-key-user-id-list, epg-user-id-string)
514         (epg-user-id-validity): Autoload.
515         (mml2015-epg-check-user-id): New function.
516         (mml2015-epg-check-sub-key): New function split from
517         mml2015-epg-find-usable-key.
518         (mml2015-epg-find-usable-key): Accept context, name, usage, and
519         optional name-is-key-id, to handle the case when user-id is unusable.
520         Reported by Łukasz Stelmach <stlman@poczta.fm>.
521
522 2013-02-17  Glenn Morris  <rgm@gnu.org>
523
524         * shr.el (shr-put-image): Use image-multi-frame-p if available.
525
526 2013-02-16  Glenn Morris  <rgm@gnu.org>
527
528         * shr.el (shr-put-image): Only animate images that specify a delay.
529         This is consistent with the old image-animated-p behavior.
530
531 2013-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
532
533         * gnus-util.el (gnus-define-keys): Convert [?\S-\ ] to [(shift space)]
534         for XEmacs.
535
536 2013-02-13  Juri Linkov  <juri@jurta.org>
537
538         * gnus-art.el (gnus-article-mode-map):
539         * gnus-sum.el (gnus-summary-mode-map, gnus-summary-article-map):
540         Make S-SPC scroll in the opposite sense to SPC.  (Bug#2145)
541
542 2013-02-07  Gábor Vida  <gabor.v.vida@ericsson.com>  (tiny change)
543
544         * auth-source.el (auth-source-format-prompt): Don't get confused by
545         any "\" in replacement text.  (Bug#13637)
546
547 2013-01-30  Christopher Schmidt  <christopher@ch.ristopher.com>
548
549         * gnus-int.el (gnus-backend-trace-elapsed): New variable.
550         (gnus-backend-trace): Honour gnus-backend-trace.
551
552         * mml.el (mml-insert-part): Insert closing tag.
553
554         * mm-decode.el (mm-save-part): Handle invalid read-file-name results.
555
556 2013-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
557
558         * gnus-sum.el (gnus-summary-read-group-1): Protect against not being
559         able to find the article, which can happen in debbugs groups,
560         apparently.
561
562 2013-01-16  Glenn Morris  <rgm@gnu.org>
563
564         * smiley.el (smiley-style): Make the file loadable in batch mode.
565
566 2013-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
567
568         * nnimap.el (nnimap-keepalive): Don't throw an error if there's no more
569         imap process running.
570
571 2013-01-14  Julien Danjou  <julien@danjou.info>
572
573         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
574         Compare addresses against addresses, not against the full From field.
575
576 2013-01-13  Richard Stallman  <rms@gnu.org>
577
578         * message.el (message-forward-make-body-mime): New args BEG, END
579         specify what part of FORWARD-BUFFER to use.  Do the work directly
580         instead of calling `mml-insert-buffer'.
581
582 2013-01-11  Aaron S. Hawley  <Aaron.Hawley@vtinfo.com>
583
584         * gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
585         cross-reference(s).
586
587         * gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
588         cross-reference(s).
589
590 2013-01-11  Dmitry Antipov  <dmantipov@yandex.ru>
591
592         * gnus-art.el (gnus-mime-display-security): Use point-min-marker
593         and point-max-marker.
594         * gnus-async.el (gnus-async-article-callback): Use point-max-marker.
595
596 2013-01-11  Julien Danjou  <julien@danjou.info>
597
598         * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
599         max are almost equal. Also return the correct value for V which is
600         already between 0 and 1.
601
602 2013-01-10  Uwe Brauer  <oub@mat.ucm.es>  (tiny change)
603
604         * mml-smime.el (mml-smime-encrypt-to-self): New user option analogous
605         to mml2015-encrypt-to-self.
606         (mml-smime-epg-encrypt): Respect mml-smime-encrypt-to-self.
607
608 2013-01-09  Daiki Ueno  <ueno@gnu.org>
609
610         * mml-smime.el (epg-sub-key-fingerprint): Autoload for
611         mml-smime-epg-find-usable-secret-key.
612
613 2013-01-08  Glenn Morris  <rgm@gnu.org>
614
615         * mml-smime.el (mml-smime-sign-with-sender): Add :version.
616
617 2013-01-07  Daiki Ueno  <ueno@gnu.org>
618
619         * mml-smime.el: Support signing by sender.
620         Requested by Uwe Brauer.
621         (mml-smime-sign-with-sender): New user option analogous
622         to mml2015-sign-with-sender.
623         (mml-smime-epg-sign): Respect mml-smime-sign-with-sender.
624         (mml-smime-epg-find-usable-secret-key): New helper function copied from
625         mml2015.el.
626
627 2012-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
628
629         * gnus-msg.el (gnus-inews-insert-gcc): Don't insert Gcc headers if Gnus
630         isn't running, because Gnus will probably not know how to handle the
631         Gcc header (bug#11941).
632
633         * nnimap.el (nnimap-update-info): Treat \Deleted articles as \Read
634         articles.
635
636 2012-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
637
638         * nnfolder.el (nnfolder-recursive-directory-files): New function.
639         (nnfolder-generate-active-file): Make this function work with recursive
640         folder names.
641
642 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
643
644         * nntp.el (nntp-open-connection): Use HELP as the capability command
645         instead of CAPABILITY because Typhoon v2.2.2.503 chokes completely on
646         unknown commands.  And CAPABILITY is an unknown command (bug#12763).
647
648 2012-12-27  Wolfgang Jenkner  <wjenkner@inode.at>
649
650         * gnus-spec.el (gnus-face-face-function): Don't use nil as no-op face
651         place holder since this gives `Invalid face reference: nil' messages.
652         Use the `default' face instead.  It has the same effect here, even
653         though it is not no-op.
654
655         * gnus-util.el
656         (gnus-put-text-property-excluding-characters-with-faces): Similarly.
657
658 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
659
660         * gnus-msg.el (gnus-summary-resend-message): Don't bug out on
661         non-string posting styles (bug#13285).
662
663 2012-12-27  Glenn Morris  <rgm@gnu.org>
664
665         * plstore.el (plstore-passphrase-callback-function):
666         Use plstore-get-file.
667
668 2012-12-27  Andreas Schwab  <schwab@linux-m68k.org>
669
670         * mml2015.el (mml2015-epg-key-image): Separate attribute stream from
671         stderr.
672
673 2012-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
674
675         * mml2015.el (mml2015-epg-key-image): Use mm-set-buffer-multibyte.
676
677         * gnus-compat.el (set-buffer-multibyte): Remove.
678
679 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
680
681         * mml2015.el (mml2015-epg-key-image): use --attribute-fd rather than
682         temporary file to get PGP key image. Pass no-show-photos when extracting
683         image to avoid having it pop up twice.
684
685 2012-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
686
687         * gnus-art.el (gnus-article-treat-types): Include text/html as parts
688         eligible for treatment.
689
690         * gnus-util.el (gnus-goto-colon): Move to the beginning of the visual
691         lines.  This makes summary commands with hidden threads work more
692         reliably.
693
694         * gnus-cite.el (gnus-article-hide-citation-maybe): Leave an expansion
695         button to mark the hidden citations (bug#9395).
696
697 2012-12-26  Daiki Ueno  <ueno@gnu.org>
698
699         * mml2015.el (mml2015-epg-signature-to-string): New function.
700         (mml2015-epg-verify-result-to-string): New function.
701         (mml2015-epg-decrypt, mml2015-epg-clear-decrypt, mml2015-epg-verify)
702         (mml2015-epg-clear-verify): Use mml2015-epg-verify-result-to-string
703         instead of epg-verify-result-to-string.
704         (epg-signature-key-id, epg-signature-to-string): Autoload.
705         (epg-verify-result-to-string): Remove autoload.
706
707 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
708
709         * mml2015.el (mml2015-epg-key-image): New function, to retrieve photo
710         ID image from GPG public key.
711         (mml2015-epg-key-image-to-string): New function.
712
713 2012-12-25  Leo Liu  <sdl.web@gmail.com>
714
715         * plstore.el (plstore-passphrase-callback-function): Fix error when
716         error when plstore-cache-passphrase-for-symmetric-encryption is set
717         (bug#13264).
718
719 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
720
721         * gnus-sum.el (gnus-set-global-variables): Don't copy over the summary
722         buffer to the article buffer here, because that clobbers multiple
723         article buffers.
724
725         * gnus-art.el (gnus-article-setup-buffer): Make sure that the article
726         buffer always points to the right summary buffer.
727
728 2012-12-25  John Wiegley  <jwiegley@gmail.com>
729
730         * auth-source.el (auth-source-netrc-parse): Allow using "password" as
731         the password (bug#12097).
732
733 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
734
735         * shr.el (shr-tag-a): Don't tagify <A> elements that don't have HREFs
736         (bug#13263).
737
738         * gnus-salt.el (gnus-highlight-selected-tree): Check whether the Tree
739         buffer exists before using it (bug#12475).
740
741         * gnus-agent.el (gnus-agent-fetch-articles): Don't fetch articles from
742         offline groups (bug#11937).
743
744         * message.el (message-yank-original): When using customize to set the
745         value of `message-cite-style', the variable it set to a symbol that's
746         the name of the variable, which must then be dereferenced (bug#12616).
747
748 2012-09-13  Wolfgang Jenkner  <wjenkner@inode.at>
749
750         * lisp/gnus-spec.el (gnus-face-face-function): Initialize the value of
751         the `face' property with a list whose car is the face specified in the
752         format string and whose cdr is (nil).
753         * lisp/gnus-util.el
754         (gnus-put-text-property-excluding-characters-with-faces):
755         Change accordingly.
756         (gnus-get-text-property-excluding-characters-with-faces): New function.
757         * lisp/gnus-sum.el (gnus-summary-highlight-line):
758         * lisp/gnus-salt.el (gnus-tree-highlight-node):
759         * lisp/gnus-group.el (gnus-group-highlight-line): Use it.
760
761 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
762
763         * nnimap.el (nnimap-authenticator): Expand to allow specifying the
764         login methods.
765         (nnimap-login): Respect the `nnimap-authenticator' variable.
766
767         * gnus-sum.el (gnus-summary-push-marks-to-backend): Push the complete
768         mark state when moving articles.  Otherwise unticked articles will get
769         their ticks back after moving.
770
771 2012-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
772
773         * gnus-srvr.el (gnus-browse-delete-group): Fix syntax error.
774
775         * message.el (message-ignored-news-headers): Always remove
776         X-Message-SMTP-Method to avoid information leakage if the user
777         mistakenly inserts the header into news messages.
778
779         * gnus-srvr.el (gnus-browse-delete-group): New command and keystroke.
780
781         * gnus-sum.el (gnus-summary-hide-thread): If point were further to the
782         right than four characters, this command would move point to
783         `point-max'.  Don't do that.
784
785         * gnus-group.el (gnus-group-read-ephemeral-group): Set the active data
786         to nil to allow re-selecting groups that gain articles.
787         (gnus-bug-group-download-format-alist): Update the URL.
788
789 2012-12-23  Andreas Schwab  <schwab@suse.de>
790
791         * shr.el (shr-tag-em): Render em as italic, not bold.
792
793 2012-12-23  Lars Ingebrigtsen  <larsi@gnus.org>
794
795         * gnus-int.el (gnus-backend-trace): Factor out into its own function
796         for reuse.
797         (gnus-open-server): Use it to add more tracing.
798         (gnus-finish-retrieve-group-infos): Add backend tracing.
799         (gnus-backend-trace): Also note the elapsed seconds.
800
801 2012-12-22  Philipp Haselwarter  <philipp@haselwarter.org>
802
803         * gnus-sync.el (gnus-sync-file-encrypt-to, gnus-sync-save):
804         Set epa-file-encrypt-to from variable to avoid querying.
805
806 2012-12-14  Akinori MUSHA  <knu@iDaemons.org>  (tiny change)
807
808         * sieve-mode.el (sieve-font-lock-keywords):
809         Keywords should be word delimited.  (Bug#13173)
810
811 2012-12-13  Andreas Schwab  <schwab@suse.de>
812
813         * tls.el (tls-program): Update customize type.
814
815 2012-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
816
817         * gnus-art.el (gnus-article-browse-html-parts): Use <div align="left">
818         instead of <pre> to align message header.
819
820 2012-12-12  Sam Steingold  <sds@gnu.org>
821
822         * gnus.el (gnus-other-frame-resume-function): Add user option.
823         (gnus-other-frame): Call `gnus-other-frame-resume-function' on resume.
824
825 2012-12-06  Sam Steingold  <sds@gnu.org>
826
827         * gnus-start.el (gnus-before-resume-hook): Add.
828         (gnus-1): Run it when Gnus is alive.
829
830 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
831
832         * gmm-utils.el (gmm-called-interactively-p): Restore as a macro.
833         * gnus-art.el (article-unsplit-urls)
834         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
835         * gnus-registry.el (gnus-registry-get-article-marks)
836         * message.el (message-goto-body): Use it.
837         (message-called-interactively-p): Remove.
838
839         * spam-stat.el (spam-stat-called-interactively-p): New macro.
840         (spam-stat-score-buffer): Use it.
841
842         * spam.el: Silence the warnings against BBDB functions when compiling.
843
844         * gnus-score.el (gnus-score-decode-text-parts):
845         Use append+mapcar instead of the cl function mapcan.
846
847 2012-12-05  Sam Steingold  <sds@gnu.org>
848
849         * gnus.el (gnus-delete-gnus-frame): Extract from `gnus-other-frame'.
850         (gnus-other-frame): Add `gnus-delete-gnus-frame' to
851         `gnus-suspend-gnus-hook' in addition to `gnus-exit-gnus-hook'.
852
853 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
854
855         * gmm-utils.el (gmm-called-interactively-p): Revert.
856         This seems to cause Emacs to get stuck!
857         * gnus-art.el (article-unsplit-urls)
858         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
859         * gnus-registry.el (gnus-registry-get-article-marks)
860         * message.el (message-goto-body)
861         (message-called-interactively-p): Revert.
862
863         * gmm-utils.el (gmm-called-interactively-p): New function.
864         * gnus-art.el (article-unsplit-urls)
865         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
866         * gnus-registry.el (gnus-registry-get-article-marks)
867         * message.el (message-goto-body): Use it.
868         (message-called-interactively-p): Remove.
869
870         * gmm-utils.el (gmm-flet): Restore it using cl-letf.
871         * gnus-sync.el (gnus-sync-lesync-call)
872         * message.el (message-read-from-minibuffer): Use it.
873
874 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
875
876         * gmm-utils.el (gmm-flet): Remove.
877         * gnus-sync.el (gnus-sync-lesync-call)
878         * message.el (message-read-from-minibuffer): Don't use it.
879
880 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
881
882         * gmm-utils.el (gmm-labels): Use cl-labels if available.
883
884 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
885
886         * gmm-utils.el (gmm-flet, gmm-labels): New macros.
887
888         * gnus-sync.el (gnus-sync-lesync-call)
889         * message.el (message-read-from-minibuffer): Use gmm-flet.
890
891         * gnus-score.el (gnus-score-decode-text-parts): Use gmm-labels.
892
893         * gnus-util.el (gnus-macroexpand-all): Remove.
894
895 2012-12-03  Andreas Schwab  <schwab@linux-m68k.org>
896
897         * gnus-sum.el (gnus-summary-mode-map): Bind gnus-summary-widget-forward
898         to TAB, not [tab].
899         (gnus-summary-article-map): Likewise.
900
901         * gnus-sync.el (gnus-sync-newsrc-offsets): Restore definition.
902         (gnus-sync-save): Use correct format for gnus-sync-newsrc-loader.
903
904 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
905
906         * time-date.el: Commentary fix.
907
908 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
909
910         * color.el: Don't require cl.
911         (color-complement): `caddr' -> `nth 2'.
912
913         * time-date.el (time-to-seconds): De-obsolete.
914
915 2012-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
916
917         * message.el (message-get-reply-headers):
918         Make sure the reply goes to the author if it is a wide reply.
919
920 2012-11-16  Jan Tatarik  <jan.tatarik@gmail.com>
921
922         * gnus-score.el (gnus-score-body):
923         * gnus-logic.el (gnus-advanced-body): Don't score by headers when
924         scoring by body.
925
926 2012-11-16  Glenn Morris  <rgm@gnu.org>
927
928         * gnus-diary.el (nndiary-request-create-group-functions)
929         (nndiary-request-update-info-functions)
930         (gnus-subscribe-newsgroup-functions)
931         (nndiary-request-accept-article-functions):
932         Use new names for hooks rather than obsolete aliases.
933
934 2012-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
935
936         * dgnushack.el (define-obsolete-variable-alias): Simplify.
937
938 2012-11-08  Katsumi Yamaoka  <yamaoka@jpl.org>
939
940         * gnus-art.el (gnus-article-browse-html-parts): Always replace charset
941         in meta tag with the one the part specifies in its header.
942
943 2012-10-25  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
944
945         * gnus-dired.el (gnus-dired-attach): Attach to last used message buffer
946         by default.
947
948 2012-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
949
950         * dgnushack.el (define-compiler-macro): Add autoload for XEmacs 21.4
951         and SXEmacs.  Suggested by Nelson Ferreira <nelson.ferreira@ieee.org>.
952
953 2012-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
954
955         * dgnushack.el (define-obsolete-variable-alias): Add a compiler-marco
956         and a runtime function for it, of which the XEmacs version takes only
957         two arguments.
958
959 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
960
961         * nndiary.el (nndiary-request-create-group-functions)
962         (nndiary-request-update-info-functions)
963         (nndiary-request-accept-article-functions):
964         * gnus-start.el (gnus-subscribe-newsgroup-functions): Don't use
965         "-hooks" suffix.
966
967 2012-10-19  Julien Danjou  <julien@danjou.info>
968
969         * gnus-art.el: Require gnus-util because it uses
970         `gnus-timer--function'.
971
972 2012-10-17  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
973
974         * starttls.el (starttls-extra-arguments): Doc fix.
975
976 2012-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
977
978         * shr.el (shr-insert): \r is also not inserted, so don't try to delete
979         it.
980
981 2012-10-06  Glenn Morris  <rgm@gnu.org>
982
983         * gnus-notifications.el (gnus-notifications):
984         Add missing group :version tag.
985         * gnus-msg.el (gnus-gcc-pre-body-encode-hook)
986         (gnus-gcc-post-body-encode-hook):
987         * gnus-sync.el (gnus-sync-lesync-name)
988         (gnus-sync-lesync-install-topics): Add missing custom :version tags.
989
990 2012-10-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
991
992         * color.el (color-hsl-to-rgb): Fix incorrect results for
993         small and large hue values.  (Bug#12559)
994
995 2012-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
996
997         New UIDL implementation.
998
999         * mail-source.el (mail-sources, mail-source-keyword-map):
1000         Add :leave as a pop3 keyword.
1001         (mail-source-fetch-pop): Bind pop3-leave-mail-on-server.
1002
1003         * pop3.el (pop3-leave-mail-on-server): Allow number.
1004         (pop3-uidl-file, pop3-uidl-file-backup): New user options.
1005         (pop3-movemail): Add UIDL support.
1006         (pop3-send-streaming-command): Take a list of mail numbers instead of
1007         the number of mails.
1008         (pop3-write-to-file): Add X-UIDL header.
1009         (pop3-uidl-stat, pop3-uidl-dele, pop3-uidl-load, pop3-uidl-save)
1010         (pop3-uidl-add-xheader): New functions.
1011
1012         * message.el (message-ignored-resent-headers):
1013         Add X-Content-Length and X-UIDL headers.
1014
1015 2012-10-05  Glenn Morris  <rgm@gnu.org>
1016
1017         * color.el (color-name-to-rgb, color-rgb-to-hex)
1018         (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1019         (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1020         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1021         (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1022
1023 2012-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1024
1025         * gnus-art.el (gnus-article-browse-delete-temp-files): Never ask again
1026         a user about whether to delete temp files if once a user answered as n.
1027
1028 2012-09-25  Chong Yidong  <cyd@gnu.org>
1029
1030         * password-cache.el (password-read-and-add): Use a declare form to mark
1031         this function obsolete.
1032
1033 2012-09-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1034
1035         * lpath.el: Bind mail-encode-mml for old Emacsen.
1036
1037 2012-09-17  Richard Stallman  <rms@gnu.org>
1038
1039         * message.el (message-in-body-p): Don't set mark or modify buffer.
1040
1041         * mml.el (mml-attach-file): Doc fix.
1042         (mml-attach-external, mml-attach-buffer, mml-attach-file):
1043         Set mail-encode-mml when in Mail mode.
1044         Simplify code to set HEAD and move back to HEAD.
1045         (mml-insert-multipart, mml-insert-part):
1046         Set mail-encode-mml when in Mail mode.
1047
1048 2012-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1049
1050         * gnus-util.el (gnus-timer--function): New function.
1051
1052         * gnus-art.el (gnus-article-stop-animations): Use it.
1053
1054 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
1055
1056         Fix glitches caused by addition of psec to timers.
1057         * gnus-art.el (gnus-article-stop-animations): Use timer--function
1058         rather than raw access to timer vector.
1059
1060 2012-09-11  Julien Danjou  <julien@danjou.info>
1061
1062         * gnus-notifications.el (gnus-notifications): Check for nil values in
1063         ignored addresses check.
1064
1065 2012-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1066
1067         * qp.el (quoted-printable-decode-region): Inline+CSE+strength-reduction.
1068
1069 2012-09-07  Chong Yidong  <cyd@gnu.org>
1070
1071         * gnus-util.el
1072         (gnus-put-text-property-excluding-characters-with-faces): Restore.
1073
1074         * gnus-salt.el (gnus-tree-highlight-node):
1075         * gnus-sum.el (gnus-summary-highlight-line):
1076         * gnus-group.el (gnus-group-highlight-line): Revert use of add-face.
1077
1078 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
1079
1080         * gnus-util.el: Fix compilation error on XEmacs 21.4.
1081
1082 2012-09-06  Juri Linkov  <juri@jurta.org>
1083
1084         * gnus-group.el (gnus-read-ephemeral-gmane-group): Change the naming
1085         scheme for buffer names to be more consistent with other group and
1086         article buffer names in Gnus.
1087
1088 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
1089
1090         * gnus-util.el
1091         (gnus-put-text-property-excluding-characters-with-faces): Removed.
1092
1093         * gnus-compat.el: Define compat function `add-face' from Wolfgang
1094         Jenkner.
1095
1096         * gnus-group.el (gnus-group-highlight-line): Use combining faces.
1097
1098         * gnus-sum.el (gnus-summary-highlight-line): Ditto.
1099
1100         * gnus-salt.el (gnus-tree-highlight-node): Ditto.
1101
1102 2012-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1103
1104         * gnus-score.el (gnus-score-decode-text-parts): Use #' for
1105         mm-text-parts used in labels macro to make it work with XEmacs 21.5.
1106
1107         * gnus-util.el (gnus-string-prefix-p): New function, an alias to
1108         string-prefix-p in Emacs >=23.2.
1109
1110         * nnmaildir.el (nnmaildir--ensure-suffix, nnmaildir--add-flag)
1111         (nnmaildir--remove-flag, nnmaildir--scan): Use gnus-string-match-p
1112         instead of string-match-p.
1113         (nnmaildir--scan): Use gnus-string-prefix-p instead of string-prefix-p.
1114
1115 2012-09-06  Kenichi Handa  <handa@gnu.org>
1116
1117         * qp.el (quoted-printable-decode-region): Fix previous change; handle
1118         lowercase a..f.
1119
1120 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
1121
1122         * nnmaildir.el (nnmaildir--article-set-flags): Fix compilation error.
1123
1124 2012-09-05  Martin Stjernholm  <mast@lysator.liu.se>
1125
1126         * nnimap.el (nnimap-request-move-article): Decode the group name when
1127         doing internal moves to avoid charset issues.
1128
1129         * gnus-demon.el (gnus-demon-init): Fixed regression when IDLE is t and
1130         TIME is set.
1131
1132 2012-09-05  Juri Linkov  <juri@jurta.org>
1133
1134         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow opening more
1135         than one group at a time (bug#11961).
1136
1137 2012-09-05  Julien Danjou  <julien@danjou.info>
1138
1139         * gnus-srvr.el (gnus-server-open-server): Don't message on failure:
1140         this hide the real reason with a message giving absolutely no hint.
1141
1142 2012-09-05  Lars Ingebrigtsen  <larsi@gnus.org>
1143
1144         * gnus-group.el (gnus-group-mark-article-read): Propagate the read mark
1145         to the backend (bug#11804).
1146
1147         * message.el (message-insert-newsgroups): Don't insert newsgroup
1148         duplicates (bug#12275).
1149
1150 2012-09-05  John Wiegley  <johnw@newartisans.com>
1151
1152         * gnus.el (gnus-expand-group-parameters): Allow regexp substitutions in
1153         sieve rules.
1154
1155 2012-09-05  Jan Tatarik  <jan.tatarik@gmail.com>
1156
1157         * gnus-score.el (gnus-score-decode-text-parts): Use #' for the local
1158         function.
1159
1160         * gnus-logic.el (gnus-advanced-body): Allow scoring on decoded bodies.
1161
1162         * gnus-score.el (gnus-score-decode-text-parts): Ditto.
1163
1164 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
1165
1166         * nnmaildir.el: Make nnmaildir understand and write maildir flags.
1167         That is, rename files from "unique:2," to "unique:2,S" for "seen", etc.
1168         This should make nnmaildir more usable with offlineimap.
1169
1170 2012-09-05  Julien Danjou  <julien@danjou.info>
1171
1172         * nnimap.el (nnimap-request-list): Revert change that made listing
1173         synchronous.
1174         (nnimap-get-responses): Restore.
1175
1176 2012-09-03  Lars Ingebrigtsen  <larsi@gnus.org>
1177
1178         * dgnushack.el: XEmacs 21.5 compilation fix.
1179
1180         * gnus-notifications.el (gnus-notifications-notify): Use it.
1181
1182         * gnus-fun.el (gnus-funcall-no-warning): New function to silence
1183         warnings on XEmacs.
1184
1185 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
1186
1187         Better seeds for (random).
1188         * gnus-sync.el (gnus-sync-lesync-setup):
1189         * message.el (message-canlock-generate, message-unique-id):
1190         Change (random t) to (random), now that the latter is more random.
1191
1192 2012-08-31  Dave Abrahams  <dave@boostpro.com>
1193
1194         * nnimap.el (nnimap-change-group): Document result value
1195
1196         * auth-source.el (auth-sources): Fix macos keychain access.
1197
1198         * gnus-int.el (gnus-request-head): When gnus-override-method is set,
1199         allow the backend `request-head' function to determine the group
1200         name on its own.
1201         (gnus-request-expire-articles): Filter out negative article numbers
1202         during expiry (Bug#11980).
1203
1204         * gnus-range.el (gnus-set-difference): Change gnus-set-difference from
1205         O(N^2) to O(N).  This makes warping into huge groups tolerable.
1206
1207         * gnus-registry.el (gnus-try-warping-via-registry): Don't act as though
1208         you've found the article when you haven't.
1209
1210         * nnimap.el (nnimap-find-article-by-message-id): Account for the fact
1211         that nnimap-change-group can return t.
1212
1213 2012-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1214
1215         * gnus-notifications.el (gnus-notifications-action): Avoid CL-ism.
1216
1217 2012-08-30  Julien Danjou  <julien@danjou.info>
1218
1219         * gnus-notifications.el (gnus-notifications-notify): Use timeout from
1220         `gnus-notifications-timeout'.
1221         (gnus-notifications-timeout): Add.
1222         (gnus-notifications-action): New function.
1223         (gnus-notifications-notify): Add :action using
1224         `gnus-notifications-action'.
1225         (gnus-notifications-id-to-msg): New variable.
1226         (gnus-notifications): Use `gnus-notifications-id-to-msg' to map
1227         notifications id to messages.
1228
1229 2012-08-30  Kenichi Handa  <handa@gnu.org>
1230
1231         * qp.el (quoted-printable-decode-region): Decode multiple bytes at
1232         once.
1233
1234 2012-08-29  Julien Danjou  <julien@danjou.info>
1235
1236         * gnus-notifications.el: New file.
1237         (gnus-notifications-notify): New function.
1238         (gnus-notifications): Use `gnus-notifications-notify'.
1239
1240 2012-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1241
1242         * gnus-sum.el (gnus-summary-enter-digest-group): Decode content
1243         transfer encoding first; bind gnus-newsgroup-charset to the charset
1244         that the article specifies (Bug#12209).
1245
1246 2012-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1247
1248         * gnus-cus.el (gnus-group-customize): Decode values posting-style holds.
1249         (gnus-group-customize-done): Encode values posting-style holds.
1250
1251         * gnus-msg.el (gnus-summary-resend-message)
1252         (gnus-configure-posting-styles): Decode values posting-style group
1253         parameter holds.
1254
1255 2012-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
1256
1257         * gnus-msg.el (gnus-summary-resend-message): Honor posting-style for
1258         `name' and `address' in Resent-From header.
1259
1260 2012-08-14  Chong Yidong  <cyd@gnu.org>
1261
1262         * gnus-art.el (article-display-face): Handle failure in
1263         gnus-create-image (Bug#11802).
1264
1265 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1266
1267         * gnus-agent.el (gnus-agent-cat-defaccessor, gnus-agent-cat-groups):
1268         Use defsetf.
1269
1270 2012-08-10  Daiki Ueno  <ueno@unixuser.org>
1271
1272         * auth-source.el: (auth-source-plstore-search)
1273         (auth-source-secrets-search): Ignore :require and :type in search spec.
1274
1275 2012-08-06  Julien Danjou  <julien@danjou.info>
1276
1277         * nnimap.el (nnimap-request-head): Resture to-buffer parameter, used by
1278         `nnimap-request-move-article'.
1279
1280         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
1281         Remove autoload, already handled by gnus.el.
1282
1283         * nnimap.el (nnimap-request-head): Remove to-buffer argument.
1284
1285         * gnus-int.el (gnus-request-head): Remove to-buffer argument, only
1286         supported by nnimap actually. Reverts previous change.
1287
1288         * gnus-int.el (gnus-request-head): Add an optional to-buffer parameter
1289         to mimic `gnus-request-article' and enjoy backends the nn*-request-head
1290         to-buffer argument that is already supported.
1291
1292 2012-08-05  Julien Danjou  <julien@danjou.info>
1293
1294         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
1295         Add autoload.
1296
1297 2012-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1298
1299         * gnus.el (gnus-valid-select-methods): Fix custom type.
1300
1301 2012-07-29  Teodor Zlatanov  <tzz@lifelogs.com>
1302
1303         * auth-source.el (auth-sources, auth-source-backend-parse)
1304         (auth-source-macos-keychain-search)
1305         (auth-source-macos-keychain-search-items)
1306         (auth-source-macos-keychain-result-append)
1307         (auth-source-macos-keychain-create): Support Mac OS X Keychains in
1308         auth-source.el through the /usr/bin/security utility.
1309         (auth-sources): Fix syntax error.
1310         (auth-source-macos-keychain-result-append): Fix variable name.
1311         (auth-sources, auth-source-macos-keychain-result-append): More fixes.
1312
1313 2012-07-27  Julien Danjou  <julien@danjou.info>
1314
1315         * message.el (fboundp): Add a defalias on `mail-dont-reply-to' for
1316         Emacs < 24.1
1317
1318 2012-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1319
1320         * message.el (message-kill-address): Don't kill last newline.
1321         (message-skip-to-next-address): Don't move to the next header.
1322         (message-fill-field-address): Work properly.
1323
1324 2012-07-25  Julien Danjou  <julien@danjou.info>
1325
1326         * gnus-art.el (gnus-kill-sticky-article-buffers): Reintroduce.
1327
1328 2012-07-24  Julien Danjou  <julien@danjou.info>
1329
1330         * mail-source.el (mail-source-movemail-and-remove): Remove, unused.
1331
1332         * nntp.el (nntp-send-nosy-authinfo, nntp-send-authinfo-from-file)
1333         (nntp-async-timer-handler): Remove, unused.
1334
1335         * nnimap.el (nnimap-get-responses): Remove, unused.
1336
1337         * nnheader.el (mail-header-set-extra): Remove, unused.
1338
1339         * netrc.el (netrc-find-service-number, netrc-store-data): Remove,
1340         unused.
1341
1342         * mm-view.el (mm-view-sound-file): Remove, unused.
1343
1344         * mm-url.el (mm-url-fetch-simple, mm-url-fetch-form)
1345         (mm-url-encode-multipart-form-data): Remove, unused.
1346
1347         * message.el (message-remove-signature, message-make-host-name)
1348         (message-fill-address): Remove, unused.
1349
1350         * gnus.el (gnus-writable-groups, gnus-group-guess-prefixed-name)
1351         (gnus-group-guess-full-name, gnus-group-guess-prefixed-name): Remove,
1352         unused.
1353
1354         * gnus-xmas.el (gnus-xmas-highlight-selected-summary)
1355         (gnus-xmas-call-region): Remove, unused.
1356
1357         * gnus-uu.el (gnus-uu-find-name-in-shar): Remove, unused.
1358
1359         * gnus-util.el (gnus-extract-address-component-name)
1360         (gnus-extract-address-component-email, gnus-sortable-date)
1361         (gnus-alist-to-hashtable, gnus-hashtable-to-alist)
1362         (gnus-process-live-p): Remove, unused.
1363
1364         * gnus-topic.el (gnus-group-parent-topic): Remove, unused.
1365
1366         * gnus-sum.el (gnus-score-set-default, gnus-article-parent-p)
1367         (gnus-article-read-p, gnus-uncompress-marks): Remove, unused.
1368         (gnus-summary-set-current-mark): Remove obsolete, empty and unused
1369         function.
1370
1371         * gnus-start.el (gnus-kill-newsgroup): Remove unused obsolete function.
1372
1373         * gnus-score.el (gnus-summary-score-crossposting)
1374         (gnus-score-regexp-bad-p): Remove, unused.
1375
1376         * gnus-salt.el (gnus-tree-goto-article): Remove, unused.
1377
1378         * gnus-range.el (gnus-sublist-p): Remove, unused.
1379
1380         * gnus-msg.el (gnus-mail-parse-comma-list, gnus-put-message): Remove,
1381         unused.
1382
1383         * gnus-kill.el (gnus-Newsgroup-kill-file): Remove, unused.
1384
1385         * gnus-int.el (gnus-list-active-group, gnus-request-group-articles)
1386         (gnus-request-associate-buffer): Remove, unused.
1387
1388         * gnus-group.el (gnus-group-set-method-info)
1389         (gnus-group-set-params-info): Remove, unused.
1390
1391         * gnus-fun.el (gnus-shell-command-to-string)
1392         (gnus-shell-command-on-region): Remove, unused.
1393
1394         * gnus-cite.el (gnus-cited-line-p): Remove, unused.
1395
1396         * gnus-art.el (gnus-article-text-type-exists-p)
1397         (article-translate-characters, gnus-article-hide-text-of-type)
1398         (gnus-kill-sticky-article-buffers, gnus-article-maybe-highlight):
1399         Remove, unused.
1400
1401 2012-07-22  Andrew Cohen  <cohen@bu.edu>
1402
1403         * nnir.el ("nnir"): Add 'virtual ability to nnir backend.
1404
1405 2012-07-21  Julien Danjou  <julien@danjou.info>
1406
1407         * message.el (message-dont-reply-to-names): Replace deprecated
1408         `rmail-dont-reply-to-names' with `mail-dont-reply-to-names'.
1409         (message-get-reply-headers): Ditto.
1410
1411 2012-07-18  Julien Danjou  <julien@danjou.info>
1412
1413         * sieve-mode.el (sieve-mode-map): Bind C-c C-c to
1414         `sieve-upload-and-kill'.
1415
1416         * sieve.el (sieve-bury-buffer): Remove function.
1417         (sieve-manage-mode-map): Map "q" to `kill-buffer'.
1418         (sieve-upload-and-kill): New function, mapped to C-c C-c.
1419
1420 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
1421
1422         * shr.el (shr-expand-url): Handle URL starting with `//'.
1423
1424 2012-07-13  Chong Yidong  <cyd@gnu.org>
1425
1426         * smime.el (smime-certificate-info): Set buffer-read-only directly,
1427         instead of calling toggle-read-only with a (bogus) argument.
1428
1429 2012-07-09  Tassilo Horn  <tassilo@member.fsf.org>
1430
1431         * gnus-sum.el (gnus-summary-limit-to-author): Use default value instead
1432         of initial input when reading the author to restrict the summary to.
1433
1434 2012-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1435
1436         * mm-decode.el (mm-shr):
1437         Allow overriding charset by mm-charset-override-alist.
1438
1439 2012-07-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1440
1441         * gnus-art.el (gnus-article-view-part):
1442         Toggle subparts of multipart/alternative part.
1443
1444 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1445
1446         * shr.el (shr-render-buffer): New command.
1447         (shr-visit-file): Use it.
1448
1449 2012-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1450
1451         * tests/gnustest-nntp.el, tests/gnustest-registry.el:
1452         Set no-byte-compile and no-update-autoloads.
1453
1454 2012-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
1455
1456         * mm-decode.el: Add coding cookie for a soft hyphen that mm-shr uses.
1457
1458 2012-06-25  Julien Danjou  <julien@danjou.info>
1459
1460         * nnimap.el (nnimap-request-articles-find-limit): Rename from
1461         `nnimap-request-move-articles-find-limit' since we do not use it only
1462         for move operations.
1463         (nnimap-request-accept-article): Use
1464         `nnimap-request-articles-find-limit' to limit search by message-id.
1465
1466 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
1467
1468         Support higher-resolution time stamps (Bug#9000).
1469
1470         * time-date.el (with-decoded-time-value): New arg PICO-SYMBOL in
1471         VARLIST.  It's optional, for backward compatibility.
1472         (encode-time-value): New optional arg PICO.  New type 3.
1473         (time-to-seconds) [!float-time]: Support the new picoseconds
1474         component if it's used.
1475         (seconds-to-time, time-subtract, time-add):
1476         Support ps-resolution time stamps as well.
1477
1478 2012-06-19  Julien Danjou  <julien@danjou.info>
1479
1480         * nnir.el (nnir-run-imap): Fix, use `nnimap-change-group'.
1481
1482         * nnimap.el (nnimap-log-buffer): Check that
1483         `window-point-insertion-type' is boundp, since it's not available in
1484         XEmacs.
1485
1486 2012-06-19  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
1487
1488         * nnimap.el (nnimap-log-buffer): Add this, setting
1489         `window-point-insertion-type' in the buffer to t.
1490         (nnimap-log-command): Use nnimap-log-buffer.
1491
1492 2012-06-19  Julien Danjou  <julien@danjou.info>
1493
1494         * nnimap.el (nnimap-find-article-by-message-id): Add an optional limit
1495         argument to be able to limit the search.
1496         (nnimap-request-move-article): Use `nnimap-request-move-articles-find-limit'.
1497         (nnimap-request-move-articles-find-limit): Add this to limit the search
1498         by Message-Id after a message move.
1499         (nnimap): Add defgroup.
1500
1501 2012-06-18  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
1502
1503         * gnus-win.el (gnus-configure-frame): Pass an arg to window-dedicated-p.
1504
1505 2012-06-15  Julien Danjou  <julien@danjou.info>
1506
1507         * nnimap.el (nnimap-find-article-by-message-id): Use
1508         `nnimap-possibly-change-group' rather than its own EXAMINE call.
1509         (nnimap-possibly-change-group): Add read-only argument.
1510         (nnimap-request-list): Use nnimap-possibly-change-group rather than
1511         issuing EXAMINE manually.
1512         (nnimap-find-article-by-message-id): Use `nnimap-possibly-change-group'
1513         with read-only argument.
1514         (nnimap-change-group): Rename from `nnimap-possibly-change-group'. We
1515         cannot possibly change because we need to be sure that it's either
1516         read-write or read-only.
1517
1518 2012-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1519
1520         * gnus-art.el (gnus-article-read-summary-keys): Protect against the key
1521         being bound to a lambda form.
1522
1523 2012-04-14  Wolfgang Jenkner  <wjenkner@inode.at>
1524
1525         * gnus-agent.el (gnus-agent-retrieve-headers): Recalculate the range of
1526         articles when fetch-old is non-nil (bug#11370).
1527
1528 2012-05-04  Wolfgang Jenkner  <wjenkner@inode.at>
1529
1530         * gnus-picon.el (gnus-picon-properties): New defcustom.
1531         (gnus-picon-create-glyph): Use it.
1532
1533 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1534
1535         * gnus-group.el (gnus-group-get-new-news): Respect
1536         `gnus-group-use-permanent-levels', as documented (bug#11638).
1537
1538 2012-06-10  Dave Abrahams  <dave@boostpro.com>
1539
1540         * gnus-int.el (gnus-warp-to-article): Limit registry warping to real
1541         groups (bug#11641).
1542
1543 2012-06-10  Toke Høiland-Jørgensen  <toke@toke.dk>  (tiny change)
1544
1545         * nnmaildir.el (nnmaildir-request-expire-articles): Ensure that `time'
1546         is an integer to avoid later problems.
1547
1548 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1549
1550         * shr.el: Add a iso-8859-1 cookie to make stuff work under other
1551         locales.
1552
1553         * mm-decode.el (mm-display-part): Dissect archives when hitting `RET'
1554         on a handle.
1555
1556         * gnus-sum.el (gnus-summary-limit-to-author): Use the current From
1557         address as the default.
1558         (gnus-summary-insert-old-articles): Don't include unexistent messages.
1559
1560         * nnfolder.el (nnfolder-save-buffer): Delete old versions silently.  It
1561         makes no sense to query the user about internal files.
1562
1563         * gnus-spec.el: Remove all the byte-compilation stuff, since
1564         benchmarking shows that it doesn't help when entering large summary
1565         buffers.
1566
1567         * gnus-xmas.el (gnus-xmas-define): Remove.
1568
1569         * gnus-util.el (gnus-byte-code): Remove.
1570
1571         * gnus-spec.el (gnus-update-format-specifications): Remove outdated
1572         grouplens stuff.
1573
1574 2012-06-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1575
1576         * gnus-msg.el (gnus-msg-mail): Warn the user about Gnus not running
1577         (bug#11514).
1578
1579 2012-06-07  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
1580
1581         * message.el (message-buffers): Return all buffers derived from Message
1582         to make `gnus-dired-attach' work with mu4e.
1583
1584 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1585
1586         * nntp.el: Stop the `letf' madness.
1587         (nntp--report-1): New var.
1588         (nntp-report): Merge nntp-report-1 into it.
1589         (nntp-with-open-group-function): Set nntp--report-1 instead of modifying
1590         the nntp-report function.
1591
1592         * auth-source.el: Fix comment-style to follow the convention.
1593
1594 2012-05-28  Daiki Ueno  <ueno@unixuser.org>
1595
1596         * mm-decode.el (mm-inhibit-auto-detect-attachment): New variable.
1597         (mm-dissect-singlepart): Don't guess the MIME type of
1598         application/octet-stream parts if mm-inhibit-auto-detect-attachment is
1599         set.
1600         (mm-dissect-multipart): Bind mm-inhibit-auto-detect-attachment if the
1601         toplevel MIME type is multipart/encrypted.
1602
1603 2012-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1604
1605         * gnus-msg.el (gnus-msg-mail): Ensure that gnus-newsgroup-name is
1606         a string so that Gcc works (bug#11514).
1607
1608 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1609
1610         * legacy-gnus-agent.el (gnus-agent-unhook-expire-days):
1611         * gnus-demon.el (gnus-demon-init): Don't bother with type-of.
1612
1613 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1614
1615         * gnus-win.el (gnus-configure-frame): Don't signal an error when
1616         jumping to *Server* from a dedicated *Group* window.
1617         (gnus-configure-frame): CSE.
1618
1619         * gnus-registry.el: Minor style cleanup.
1620         (gnus-registry--set/remove-mark): New function, extracted from
1621         gnus-registry-install-shortcuts.
1622         (gnus-registry-install-shortcuts): Use it.
1623
1624 2012-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1625
1626         * nnspool.el (news-path): Use eval-and-compile.
1627
1628 2012-05-24  Glenn Morris  <rgm@gnu.org>
1629
1630         * nnspool.el (news-directory, news-path, news-inews-program):
1631         Move here from paths.el.  Don't see a need for these to be autoloaded.
1632
1633         * gnus.el (gnus-default-nntp-server): Make it a defcustom.
1634         Merge in doc from paths.el version.  Don't see any need for this to be
1635         autoloaded, or for the warning about users not setting it.
1636
1637 2011-12-02  Wolfgang Jenkner  <wjenkner@inode.at>
1638
1639         * gnus-agent.el (gnus-agent-save-active): Deal with the "groups"
1640         format.  In particular, add an optional argument and a docstring.
1641
1642         * gnus-start.el (gnus-groups-to-gnus-format): Use it.
1643
1644         * nntp.el (nntp-finish-retrieve-group-infos): Make `nntp-server-buffer'
1645         current before calling `gnus-groups-to-gnus-format'.
1646         Note that this was already the case for `gnus-active-to-gnus-format'.
1647
1648 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
1649
1650         Fix minor Y10k bug.
1651         * nnweb.el (nnweb-google-parse-1): Don't assume years have 4 digits.
1652
1653 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1654
1655         * nnimap.el (nnimap-open-connection-1): Don't leave an "opening..."
1656         message once it's actually open.
1657
1658 2012-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
1659
1660         * gnus.el: Ma Gnus v0.5 is released.
1661
1662 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1663
1664         * auth-source.el (auth-source--aput-1, auth-source--aput)
1665         (auth-source--aget): New functions and macros.
1666         Use them instead of aput/aget.
1667
1668 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
1669
1670         * gnus.el (debbugs-gnu): Don't override existing autoload definition.
1671
1672 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
1673
1674         * plstore.el (plstore-called-interactively-p): New compat macro copied
1675         from message.el.
1676         (plstore-mode): Use it.
1677
1678 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
1679
1680         * plstore.el: Revive the editing feature.
1681         (plstore-mode): New mode to edit plstore file.
1682         (plstore-mode-toggle-display, plstore-mode-original)
1683         (plstore-mode-decoded): New command.
1684         (plstore--encode, plstore--decode, plstore--write-contents-functions)
1685         (plstore--insert-buffer, plstore--make): New function.
1686         (plstore-open, plstore-save): Simplify by using them.
1687
1688 2012-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1689
1690         * pop3.el (pop3-wait-for-messages): Fix retrieved data size calculation.
1691
1692 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
1693
1694         * tls.el (open-tls-stream): Remove unused binding.
1695
1696 2012-04-16  Glenn Morris  <rgm@gnu.org>
1697
1698         * nndraft.el (nndraft-request-list): Fix declaration.
1699
1700 2012-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1701
1702         * mm-decode.el (mm-dissect-buffer): Doc fix.
1703
1704         * gnus-msg.el (gnus-inews-insert-gcc): Don't do the alist stuff when we
1705         don't have a current group.
1706
1707         * gnus-sum.el (gnus-handle-ephemeral-exit): Avoid creating the group
1708         buffer if it doesn't exist.
1709
1710         * gnus-group.el (gnus-group-read-ephemeral-group): If no quit-config is
1711         given, mark the group as ephemeral with the current window conf.
1712
1713         * gnus-sum.el (gnus-set-global-variables): Don't assume that the group
1714         buffer exists, which it doesn't if we haven't started Gnus.
1715         (gnus-summary-exit): Allow quitting when we don't have a group buffer.
1716
1717 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1718
1719         * mml.el (mml-generate-mime): Allow specifying what the top-level part
1720         type is.
1721
1722         * gnus-start.el (gnus-clean-old-newsrc): Remove totally bogus
1723         `unexists' entries.
1724         (gnus-clean-old-newsrc): Fix last checkin.
1725
1726         * nnimap.el (nnimap-update-info): None of the articles below the active
1727         low-water mark exist.
1728
1729         * dgnushack.el: Get rid of XEmacs compilation warning.
1730
1731         * gnus-msg.el (gnus-summary-cancel-article): See what From header we
1732         would have gotten if we posted to the group, and use that to compare
1733         against the message we want to cancel (bug#10808).
1734
1735         * gnus-sum.el (gnus-auto-center-summary): `scroll-margin' isn't defined
1736         on XEmacs.
1737
1738 2012-04-10  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
1739
1740         * gnus-sum.el (gnus-auto-center-summary): Set default to respect
1741         `scroll-margin'.
1742
1743 2012-04-10  Elias Oltmanns  <eo@nebensachen.de>  (tiny change)
1744
1745         * gnus-cite.el (gnus-dissect-cited-text): A single line without
1746         citation prefix within a block of cited text should be considered part
1747         of that block *only* if it is a blank line.
1748
1749 2012-04-09  Chong Yidong  <cyd@gnu.org>
1750
1751         * binhex.el, hashcash.el, uudecode.el:
1752         Remove * characters from the front of variable docstrings.
1753
1754 2012-04-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1755
1756         * shr.el (shr-find-fill-point): Remove unused code; don't break a line
1757         before kinsoku-bol characters nor within kinsoku-eol characters.
1758
1759 2012-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1760
1761         * gnus-sync.el (gnus-topic-alist, gnus-group-topic)
1762         (gnus-topic-create-topic, gnus-topic-enter-dribble): Silence compiler.
1763         (gnus-sync-read): Use mapc instead of mapcar.
1764
1765         * mm-archive.el: Require mm-decode for some macros.
1766         (gnus-recursive-directory-files, mailcap-extension-to-mime): Silence
1767         the byte compiler.
1768         (mm-archive-decoders): New function that returns the value of
1769         the mm-archive-decoders variable.
1770
1771         * mm-decode.el: Don't require mm-archive; autoload mm-archive functions
1772         instead.
1773         (mm-dissect-singlepart): Use the function mm-archive-decoders.
1774
1775         * nnimap.el (gnus-refer-thread-use-nnir):
1776         * nnmail.el (mail-send-and-exit): Silence the byte compiler.
1777
1778 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1779
1780         * gnus-compat.el: Define `bound-and-true-p' for XEmacs.
1781
1782 2012-03-12  Peter Münster  <pmrb@free.fr>
1783
1784         * gnus-demon.el (gnus-demon-timers): Now a plist (function -> timer).
1785         (gnus-demon-cancel): Ditto.
1786         (gnus-demon-run-callback): When function cannot be called due to low
1787         idleness, call it when idleness reaches the expected value, instead of
1788         waiting another timer period.
1789         (gnus-demon-init): Add `time' to arguments of call-back.
1790
1791 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1792
1793         * dgnushack.el: Bind `gnus-registry-enabled' for XEmacs.
1794
1795         * gnus.el: Register gnus-registry functions.
1796
1797         * gnus-registry.el (gnus-try-warping-via-registry): Moved here and
1798         indent.
1799
1800         * gnus-int.el (gnus-warp-to-article): Check whether the registry is
1801         enabled before warping.
1802
1803 2012-03-22  Dave Abrahams  <dave@boostpro.com>
1804
1805         * gnus-sum.el (gnus-summary-insert-subject): Record information in the
1806         registry about each article retrieved.
1807
1808         * gnus-int.el (gnus-select-group-with-message-id): New function.
1809         (gnus-try-warping-via-registry): Ditto.
1810         (gnus-warp-to-article): Fall back on the registry.
1811
1812 2012-03-22  Sergio Martínez  <samf0xb58@gmail.com>  (tiny change)
1813
1814         * nnimap.el (nnimap-request-scan): Allow `nnimap-inbox' to be a list of
1815         inboxes.
1816
1817 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1818
1819         * nnimap.el (nnimap-fetch-partial-articles): Minor doc string fixup.
1820
1821 2012-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1822
1823         * gnus-msg.el (gnus-summary-resend-message-insert-gcc): Assume that
1824         gnus-gcc-self-resent-messages may be a group parameter.
1825         (gnus-summary-resend-message): Don't encode encoded words in header
1826         when Gcc'ing resent message.
1827
1828 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1829
1830         * shr.el (shr-insert): Treat non-breaking space just like normal
1831         space.  This seems to produce more pleasing results.
1832         (shr-insert): Only insert a blank line if we're starting from an image.
1833         (shr-tag-br): Allow <br> to end lines or to make a single blank line.
1834         (shr-ensure-paragraph): Consider lines with white space to be blank.
1835
1836 2012-03-15  Elias Pipping  <pipping@lavabit.com>
1837
1838         * Makefile.in: Respect DESTDIR.
1839
1840 2012-03-14  Christopher Schmidt  <christopher@ch.ristopher.com>
1841
1842         * gnus-msg.el (gnus-inews-do-gcc): Add gnus-gcc-pre-body-encode-hook
1843         and gnus-gcc-post-body-encode-hook.
1844
1845 2012-03-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1846
1847         * gnus-group.el (gnus-group-expire-articles-1): Don't try to expire
1848         messages that don't exist.
1849
1850         * gnus-sum.el (gnus-summary-expire-articles): Ditto.
1851
1852 2012-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1853
1854         pgg-def.el, pgg-gpg.el, pgg-parse.el, pgg-pgp.el, pgg-pgp5.el, pgg.el:
1855         Remove.
1856
1857         dgnushack.el (pgg-snarf-keys-region): Remove autoload.
1858
1859         lpath.el (pgg-parse-crc24-string, pgg-parse-crc24): Remove declaration.
1860
1861 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1862
1863         * gnus-msg.el (gnus-inews-insert-gcc): Protect against when we don't
1864         have a group name.
1865
1866         * gnus-art.el (article-wash-html): Ensure that we insert the HTML into
1867         a multibyte buffer (bug#7410).
1868         (article-wash-html): Parse the original article buffer to get the
1869         unencoded data (bug#7410).
1870
1871         * gnus-start.el (gnus-read-newsrc-el-file): Protect against broken
1872         .newsrc.el files.
1873
1874 2012-04-05  Bastien Guerry  <bzg@altern.org>
1875
1876         * color.el (color-lighten-name): Fix typo.
1877
1878 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1879
1880         * auth-source.el (auth-source-netrc-create): Quote tokens that contain
1881         "#" to avoid having them interpreted as comments.
1882
1883 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1884
1885         * shr.el (shr-insert): Update the text state properly to avoid
1886         inserting spurious paragraph starts.
1887
1888 2012-03-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1889
1890         * shr.el (shr-table-widths): Divide the extra width more fairly over
1891         the TDs (bug#10973).
1892         (shr-render-td): Don't delete too much padding.
1893         (shr-natural-width): Compute the natural width more correctly.
1894         (shr-insert): Allow the natural width to be computed for tables again.
1895         (shr-tag-table-1): Rework how the natural widths are computed by
1896         rendering the table a third time.
1897         (shr-natural-width): Removed.
1898         (shr-buffer-width): New function.
1899         (shr-expand-newlines): Use it.
1900
1901         * gnus-msg.el (gnus-bug): Don't delete the other windows.  We may be
1902         using a `gnus-use-full-window' setup (bug#11013).
1903
1904 2012-03-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1905
1906         * gnus-int.el (gnus-backend-trace): Flip default to nil before Emacs
1907         24.1 release.
1908
1909 2012-03-10  David Edmondson  <dme@dme.org>
1910
1911         * mm-uu.el (mm-uu-forward-extract): Allow for blank lines between the
1912         'Forwarded Message' header and the start of the message.
1913
1914 2012-03-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1915
1916         * gnus-msg.el (gnus-msg-mail): Call `message-mail' correctly when Gnus
1917         isn't running (bug#10897).
1918
1919 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1920
1921         * tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
1922         This is inconsistent with all the other stream functions, which leave
1923         the setting up to the higher levels (if so wanted) (bug#10931).
1924
1925 2012-02-28  Glenn Morris  <rgm@gnu.org>
1926
1927         * gmm-utils.el, gnus-agent.el, gnus-score.el, messagexmas.el,
1928         mm-decode.el: Standardize possessive apostrophe usage.
1929
1930 2012-02-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1931
1932         * shr.el (shr-column-specs): Protect against TDs with "width: 0%".
1933
1934 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
1935
1936         * parse-time.el (parse-time-string): Allow extractor to return nil.
1937
1938 2012-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1939
1940         * nntp.el (nntp-send-authinfo): Work for secure nntp entry in authinfo.
1941
1942 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
1943
1944         * gnus-start.el (gnus-clean-old-newsrc): Allow a FORCE parameter.
1945
1946 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
1947
1948         * mm-decode.el (mm-shr): Remove "soft hyphens".
1949
1950         * nnimap.el (nnimap-request-list): Return the group names encoded as
1951         utf8.  Otherwise non-European group names don't work.
1952         (nnimap-request-newgroups): Ditto.
1953
1954         * gnus-sum.el (gnus-summary-insert-old-articles): Fix the syntax for
1955         the default in `read-string' (bug#10757).
1956
1957         * gnus-msg.el (gnus-group-post-news): Don't bug out on `C-u a' on
1958         topics (bug#10843).
1959
1960         * nnimap.el (nnimap-log-command): Add the IMAP address to the log
1961         buffer.  Suggested by Herbert Valerio Riedel.
1962         (nnimap-request-move-article): Delete the message from the correct IMAP
1963         server.
1964
1965 2012-02-19  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
1966
1967         * gnus-demon.el (gnus-demon-init): Don't multiply time twice.
1968         Reported by Peter Münster.
1969
1970 2012-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
1971
1972         * shr.el (shr-image-fetched): Make sure we really kill the right
1973         buffer.
1974
1975 2012-02-16  Leo Liu  <sdl.web@gmail.com>
1976
1977         * gnus-start.el (gnus-1): Avoid duplicate entries.
1978
1979 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
1980
1981         * imap.el: Remove.
1982
1983         * nntp.el (nntp-coding-system-for-read): Remove.
1984         (nntp-coding-system-for-write): Ditto.
1985         (nntp-open-connection): Just use `binary' directly.
1986
1987         * gnus-start.el (gnus-clean-old-newsrc): Delete `unexist' from pre-Ma
1988         Gnus 0.3.
1989
1990 2012-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
1991
1992         * mm-decode.el (mm-dissect-singlepart): Guess what the type of
1993         application/octet-stream parts really is.
1994
1995         * gnus-sum.el (gnus-propagate-marks): Remove.
1996
1997 2012-02-15  Paul Eggert  <eggert@cs.ucla.edu>
1998
1999         * shr.el (shr-rescale-image): Undo previous change; see
2000         <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
2001
2002 2012-02-15  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
2003
2004         * gnus.el: Ma Gnus v0.3 is released.
2005
2006 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
2007
2008         * gnus-sum.el (gnus-summary-local-variables): Make
2009         `gnus-newsgroup-unexist' into a local variable.
2010
2011 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
2012
2013         * registry.el (registry-usage-test, registry-persistence-test): Move to
2014         tests/gnustest-registry.el.
2015         (registry-make-testable-db, registry-match-test)
2016         (registry-instantiation-test): Move to tests/gnustest-registry.el.
2017
2018         * gnus-registry.el (gnus-registry-misc-test)
2019         (gnus-registry-usage-test): Move to tests/gnustest-registry.el.
2020
2021         * tests/gnustest-registry.el: New file with the registry and
2022         gnus-registry ERT tests.
2023
2024 2012-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2025
2026         * gnus-msg.el (gnus-summary-resend-message): Make
2027         gnus-summary-resend-message-insert-gcc be last item in
2028         message-header-setup-hook.
2029
2030 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
2031
2032         * nnfolder.el (nnfolder-marks-directory, nnfolder-marks-is-evil)
2033         (nnfolder-marks, nnfolder-marks-file-suffix, nnfolder-marks-modtime):
2034         Remove.
2035         (nnfolder-open-server): Don't use marks.
2036         (nnfolder-request-delete-group): Ditto.
2037         (nnfolder-request-rename-group): Ditto.
2038         (nnfolder-request-set-mark, nnfolder-request-marks)
2039         (nnfolder-group-marks-pathname, nnfolder-marks-changed-p)
2040         (nnfolder-save-marks, nnfolder-open-marks): Remove.
2041
2042         * nnml.el (nnml-marks-is-evil, nnml-marks-file-name, nnml-marks)
2043         (nnml-marks-modtime): Remove.
2044         (nnml-request-delete-group): Don't use marks.
2045         (nnml-request-rename-group): Ditto.
2046         (nnml-request-set-mark, nnml-request-marks, nnml-marks-changed-p)
2047         (nnml-save-marks, nnml-open-marks): Remove.
2048
2049         * nntp.el (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
2050         (nntp-marks-modtime, nntp-marks-directory, nntp-request-set-mark)
2051         (nntp-request-marks, nntp-marks-directory, nntp-marks-changed-p)
2052         (nntp-save-marks, nntp-open-marks, nntp-possibly-create-directory)
2053         (nntp-server-to-method-cache): Remove.
2054
2055         * shr.el (shr-rescale-image): Fix wrong merge.
2056
2057 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
2058
2059         * shr.el (shr-remove-trailing-whitespace): Really delete the padding on
2060         too-wide lines.
2061
2062 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
2063
2064         * nnimap.el (nnimap-record-commands): New variable.
2065         (nnimap-log-command): Use it.
2066         (nnimap-make-process-buffer): Add a space to the process buffer.
2067         (nnimap-transform-headers): Don't bug out on header lines containing
2068         stuff that look like IMAP length encodings.
2069
2070         * shr.el (shr-rescale-image): Allow viewing large images.
2071
2072 2012-02-12  Lars Ingebrigtsen  <larsi@gnus.org>
2073
2074         * nnml.el (nnml-request-compact-group): Delete the marks file after
2075         compaction (bug#10800).
2076
2077         * gnus-art.el (gnus-stop-downloads): Stop `url-queue' downloads on
2078         group exit.
2079
2080         * nnimap.el (nnimap-parse-flags): Parse correctly when we have mixed
2081         QRESYNC/FETCH output.
2082
2083 2012-02-11  Glenn Morris  <rgm@gnu.org>
2084
2085         * sieve-manage.el (sieve-manage-default-stream):
2086         * shr.el (shr):
2087         * nnir.el (nnir-ignored-newsgroups, nnir-summary-line-format)
2088         (nnir-retrieve-headers-override-function)
2089         (nnir-imap-default-search-key, nnir-notmuch-program)
2090         (nnir-notmuch-additional-switches, nnir-notmuch-remove-prefix)
2091         (nnir-method-default-engines):
2092         * message.el (message-cite-reply-position):
2093         * gssapi.el (gssapi-program):
2094         * gravatar.el (gravatar):
2095         * gnus-sum.el (gnus-refer-thread-use-nnir):
2096         * gnus-registry.el (gnus-registry-unfollowed-addresses)
2097         (gnus-registry-max-pruned-entries):
2098         * gnus-picon.el (gnus-picon-inhibit-top-level-domains):
2099         * gnus-int.el (gnus-after-set-mark-hook)
2100         (gnus-before-update-mark-hook):
2101         * gnus-async.el (gnus-async-post-fetch-function):
2102         * auth-source.el (auth-source-cache-expiry):
2103         Add missing :version tags to new defcustoms and defgroups.
2104
2105 2012-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
2106
2107         * gnus-sum.el (gnus-adjust-marked-articles): Add to
2108         `gnus-newsgroup-unexist'.
2109
2110         * gnus.el (gnus-article-mark-lists): Add `unexist' to the list of
2111         marks.
2112         (gnus-article-special-mark-lists): Put the `unexist' in the special
2113         marks list instead.
2114
2115         * gnus-sum.el (gnus-articles-to-read): Don't include unexisting
2116         articles in the list of articles to be selected.
2117
2118         * nnimap.el (nnimap-retrieve-group-data-early): Query for unexisting
2119         articles.
2120         (nnimap-update-info): Keep track of unexisting articles.
2121         (nnimap-update-qresync-info): Ditto.
2122
2123 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
2124
2125         * message.el (message-default-send-mail-function): Made into own
2126         function for reuse by emacsbug.el.
2127
2128 2012-02-09  Juanma Barranquero  <lekktu@gmail.com>
2129
2130         * gnus.el (gnus-method-ephemeral-p): Move after declaration of defsubst
2131         `gnus-sloppily-equal-method-parameters' to avoid a warning.
2132
2133 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
2134
2135         * mm-archive.el (mm-archive-dissect-and-inline): New function.
2136         (mm-archive-dissect-and-inline): Fix up the undisplayer.
2137
2138         * gnus-compat.el: Define `timer-set-function'.
2139
2140         * mm-decode.el (mm-display-external): Output the text from the command
2141         in the buffer after the command finished.  This makes text-based
2142         commands behave better.
2143
2144 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
2145
2146         * gnus-compat.el: Add a compat for the old `url-retrieve'.
2147
2148 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2149
2150         * gnus-compat.el: Make `help-function-arglist' be compatible on Emacs
2151         23.1.
2152
2153 2012-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2154
2155         * gnus-sum.el (gnus-summary-show-thread): Revert last two changes.
2156
2157 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2158
2159         * message.el (smtpmail-smtp-user): Silence compiler warning.
2160
2161 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2162
2163         * message.el (message-multi-smtp-send-mail): Also allow specifying the
2164         SMTP user name.
2165
2166 2012-02-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2167
2168         * gnus-sum.el (gnus-summary-show-thread):
2169         next-single-char-property-change may return nil in XEmacs.
2170         (gnus-summary-article-map): Fix typo.
2171
2172 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
2173
2174         * gnus-msg.el (gnus-msg-mail): Use `message-mail' if Gnus isn't
2175         running.
2176
2177         * nnimap.el (nnimap-wait-for-response): Minor fixup of message string.
2178
2179         * gnus.el (gnus-server-extend-method): Don't add an -address component
2180         if the method already has one (bug#9676).
2181
2182 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
2183
2184         * gnus-sum.el (gnus-summary-insert-old-articles): Use a default instead
2185         of an initial-input for consistency (bug#10757).
2186
2187         * dgnushack.el: Fix XEmacs compilation warning.
2188
2189         * shr.el: Inhibit getting and sending cookies when fetching pictures.
2190
2191         * gnus-html.el (gnus-html-schedule-image-fetching): Ditto.
2192
2193 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2194
2195         * shr.el (shr-remove-trailing-whitespace): Don't strip whitespace from
2196         lines that are narrower than the window width.  Otherwise background
2197         "blocks" will look less readable.
2198
2199 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
2200
2201         * nnimap.el (nnimap-transform-headers): Remove unused variable.
2202         (nnimap-transform-headers): Fix parsing BODYSTRUCTURE elements that
2203         have newlines within the strings, and where the UID comes after the
2204         BODYSTRUCTURE element (bug#10537).
2205
2206         * shr-color.el (shr-color-set-minimum-interval): Rename to add prefix
2207         (bug#10732).
2208
2209         * shr.el (shr-insert-document): Add doc string.
2210         (shr-visit-file): Ditto.
2211         (shr-remove-trailing-whitespace): New function.
2212         (shr-insert-document): Use it to clean up trailing whitespace as the
2213         final step (bug#10714).
2214
2215 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2216
2217         * gnus-sum.el (gnus-summary-exit-no-update): Really deaden the summary
2218         buffer if `gnus-kill-summary-on-exit' is nil.
2219
2220 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
2221
2222         * gnus-sum.el (gnus-handle-ephemeral-exit): Allow exiting from Gnus
2223         when just reading a single group from "without" Gnus.
2224
2225 2012-02-06  Chong Yidong  <cyd@gnu.org>
2226
2227         * gnus-sum.el (gnus-summary-show-thread):
2228         next-single-char-property-change never returns nil (Bug#8657).
2229
2230 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
2231
2232         * message.el (message-multi-smtp-send-mail): New function.
2233         (message-multi-smtp-send-mail): Respect the X-Message-SMTP-Method
2234         header to implement multi-SMTP functionality.
2235
2236         * gnus-agent.el (gnus-agent-send-mail-function): Removed.
2237         (gnus-agentize): Don't set it.
2238         (gnus-agent-send-mail): Don't use it.
2239
2240         * gnus-sum.el (gnus-summary-widget-backward): New function and
2241         keystroke.
2242
2243         * gnus-compat.el: More the compat functions more compatible.
2244
2245         * shr.el (shr-put-image): Remove underlines from sliced images.
2246         (shr-zoom-image): Compute the region to be replaced more correctly.
2247
2248 2012-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2249
2250         * gnus-msg.el (gnus-gcc-self-resent-messages): New user option.
2251         (gnus-summary-resend-message-insert-gcc): New function.
2252         (gnus-summary-resend-message): Modify message-header-setup-hook and
2253         message-sent-hook to make it work for Gcc.
2254         (gnus-inews-do-gcc): Update the number of unread articles of groups
2255         that messages are Gcc'd to.
2256
2257         * message.el (message-resend): Run message-sent-hook to do Gcc.
2258
2259 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
2260
2261         * lpath.el: Fix an XEmacs compilation warning.
2262
2263         * gnus-compat.el: Require `help-fns' to fix compilation error.
2264
2265         * gnus-registry.el (gnus-registry-fixup-registry): Move the message to
2266         a higher level to silence compilation.
2267
2268         * gnus-art.el (gnus-shr-put-image): Take and pass on a `flags'
2269         parameter to allow controlling the scaling.
2270
2271         * shr.el (shr-zoom-image): New command and keystroke.
2272         (shr-put-image): Take a `size' flag to say how to scale the image.
2273
2274         * gnus-compat.el: Redefine `delete-directory' to provide recursive
2275         deletion unless already defined.
2276
2277         * gnus.el (gnus-compat): Require it.
2278
2279         * gnus-compat.el: New file.
2280
2281         * gnus-start.el (gnus-clean-old-newsrc): New function.
2282         (gnus-read-newsrc-file): Use it.
2283
2284         * mm-archive.el (mm-dissect-archive): Use it to get all file names.
2285         Use recursive deletion.
2286         (mm-dissect-archive): Add support for zip files.
2287
2288         * gnus-util.el (gnus-recursive-directory-files): New function.
2289
2290         * mm-archive.el (mm-archive-list-files): Inline text and image parts.
2291         (mm-archive-decoders): Add tgz support.
2292
2293         * mm-decode.el (mm-shr): Make sure that the HTML ends with a newline.
2294         Otherwise inserting text into the Gnus buffer can look odd.
2295
2296         * gnus-art.el (gnus-mime-inline-part): Slight clean-up.
2297
2298         * mm-archive.el (mm-archive-decoders): Add support for tar.
2299
2300         * gnus.el (gnus-logo-color-alist): Change the colours for Ma Gnus.
2301
2302         * nnmail.el (nnmail-extra-headers): Add Cc to the default.
2303
2304 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
2305
2306         * mm-decode.el (mm-dissect-singlepart): Check that the decoder exists.
2307
2308         * mm-archive.el: New file.
2309
2310         * mm-decode.el (mm-dissect-singlepart): Use it to decode ms-tnef files.
2311
2312         * mm-util.el (mm-find-buffer-file-coding-system): Comment fix.
2313
2314         * message.el (message-goto-*): Make all the `message-goto-*' commands
2315         push the mark before moving point.  This makes it easier to go back to
2316         where you came from after editing whatever you jumped to.
2317
2318 2012-01-31  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
2319
2320         * gnus.el: Ma Gnus v0.1 is released.
2321
2322 2012-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
2323
2324         * nnimap.el (nnimap-open-server): Allow switching the nnoo server
2325         without reconnecting.
2326         (nnimap-possibly-change-group): Ditto.
2327         (nnimap-finish-retrieve-group-infos): Don't reconnect if the server
2328         connection has died before being called.
2329
2330 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
2331
2332         * nnimap.el (nnimap-retrieve-group-data-early): Don't say we're doing
2333         an initial sync unless we're really doing one.
2334
2335         * gnus-group.el (gnus-group-read-ephemeral-group): Don't add a new
2336         address parameter if one already exists (bug#9676).
2337
2338         * gnus-msg.el (gnus-summary-mail-forward): Respect the process marks,
2339         not the prefix, as documented (bug#10689).
2340
2341 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
2342
2343         * gnus.el (gnus-valid-select-methods): nnmaildir also saves marks in
2344         the "server".
2345
2346         * gnus-group.el (gnus-group-get-new-news-this-group): Don't overwrite
2347         the real error message with the useless "previously known to be down".
2348         Which isn't even correct.
2349
2350         * nntp.el (nntp-open-connection): Report the error message if the nntp
2351         server can't be reached.
2352
2353         * nnimap.el (nnimap-retrieve-group-data-early): Keep track of how many
2354         groups we do a total scan for.
2355         (nnimap-wait-for-response): Say that we're doing a total scan, if we're
2356         doing that.
2357
2358 2012-01-31  Jim Meyering  <jim@meyering.net>
2359
2360         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
2361         Correct a comment (insert "not") and hide nominally-doubled "to".
2362
2363 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
2364
2365         * gnus.el (gnus-version): Change name to "Ma Gnus".
2366
2367 2012-01-30  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
2368
2369         * gnus-agent.el (gnus-agent-auto-agentize-methods): Point to the Agent
2370         section in the manual.
2371
2372 2012-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
2373
2374         * rfc2047.el (rfc2047-encode-region): Allow not folding the encoded
2375         words.
2376         (rfc2047-encode-string): Ditto.
2377         (rfc2047-encode-parameter): Don't fold parameters.  Some MUAs do not
2378         understand folded filename="..." parameters, for instance.
2379
2380         * nnimap.el (nnimap-wait-for-response): Include the imap server name in
2381         the message for greater debuggability.
2382
2383 2012-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
2384
2385         * mm-view.el (mm-display-inline-fontify): Bind `font-lock-support-mode'
2386         instead of setting it locally, since the latter doesn't seem to have
2387         any effect (most of the time).
2388
2389 2012-01-27  Elias Pipping  <pipping@lavabit.com>  (tiny change)
2390
2391         * shr.el (shr-browse-url): Fix the name of the `browse-url-mail'
2392         function call.
2393
2394 2012-01-27  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
2395
2396         * gnus-demon.el (gnus-demon-run-callback, gnus-demon-init): Convert to
2397         seconds, and make the repeat clause with HH:MM specs work as
2398         documented.
2399
2400 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
2401
2402         * proto-stream.el (proto-stream-capability-open): Fall back on
2403         :end-of-command if :end-of-capability doesn't exist.
2404
2405 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2406
2407         * gnus-sum.el (gnus-summary-mode): Don't make bidi-paragraph-direction
2408         bound globally in old Emacsen and XEmacsen.
2409
2410 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
2411
2412         * gnus-start.el (gnus-get-unread-articles): Clear out "early" methods
2413         so that previous errors don't prohibit getting new news.
2414
2415         * nnimap.el (nnimap-retrieve-group-data-early): Ditto.
2416
2417         * nntp.el (nntp-retrieve-group-data-early): Ditto.
2418
2419 2012-01-26  Nick Alcock  <nick.alcock@oracle.com>  (tiny change)
2420
2421         * gnus.el (gnus-group-find-parameter): Check for liveness of the
2422         buffer, not of the string which is its name.
2423
2424 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
2425
2426         * proto-stream.el (proto-stream-capability-open): Wait for
2427         :end-of-capability, not :end-of-command.
2428
2429         * gnus-sum.el (gnus-summary-move-article): Don't propagate marks to
2430         non-server-marks groups.
2431         (gnus-group-make-articles-read): Ditto.
2432
2433         * gnus-srvr.el (gnus-server-prepare): Use it to avoid showing ephemeral
2434         methods (bug#9676).
2435
2436         * gnus.el (gnus-method-ephemeral-p): New function.
2437
2438 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2439
2440         * gnus-sum.el (gnus-summary-mode): Force paragraph direction to be
2441         left-to-right.
2442
2443 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
2444
2445         * nnimap.el (nnir-search-thread): Autoload to avoid a compilation
2446         warning.
2447
2448 2012-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
2449
2450         * gnus-sum.el (gnus-summary-line-format-alist): Don't try to
2451         macroexpand the nnir things, since they haven't been defined yet, and
2452         nnir requires gnus-sum.
2453
2454 2012-01-24  Julien Danjou  <julien@danjou.info>
2455
2456         * color.el (color-rgb-to-hsl): Fix value computing.
2457         (color-hue-to-rgb): New function.
2458         (color-hsl-to-rgb): New function.
2459         (color-clamp, color-saturate-hsl, color-saturate-name)
2460         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
2461         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
2462
2463 2012-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2464
2465         * mm-decode.el (mm-interactively-view-part): Fix prompt.
2466
2467 2012-01-19  Julien Danjou  <julien@danjou.info>
2468
2469         * color.el (color-name-to-rgb): Use the white color to find the max
2470         color component value and return correctly computed values.
2471         (color-name-to-rgb): Add missing float conversion for max value.
2472
2473 2012-01-10  Teodor Zlatanov  <tzz@lifelogs.com>
2474
2475         * nntp.el (nntp-send-authinfo): Query `auth-source-search' with the
2476         logical server name in addition to the actual machine address.
2477
2478         * auth-source.el (auth-source-user-and-password): Add convenience
2479         wrapper to search by just host and optionally user.
2480
2481 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2482
2483         * shr.el (shr-visit-file): Move point to the beginning of the buffer
2484         after rendering.
2485
2486 2012-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
2487
2488         * gnus-sync.el (gnus-sync-newsrc-groups): Quote normally.
2489         (gnus-sync-lesync-pre-save-group-entry): Remove invalid invlists.
2490         (gnus-sync-lesync-normalize-group-entry): Ignore a few more keys.
2491
2492 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2493
2494         * gnus-sum.el (gnus-summary-read-group): Document more parameters
2495         (bug#9693).
2496         (gnus-summary-setup-buffer): Document return value (bug#9697).
2497
2498         * mm-decode.el (mm-interactively-view-part): Use `completing-read',
2499         since ido doesn't work on symbols (bug#9632).
2500
2501         * gnus.el (gnus-group-fast-parameter): Use the same precedence rules
2502         when getting a single value as when getting all the values.  This means
2503         that atoms like `gcc-self' work cumulatively, like variable settings,
2504         instead of getting the value from the last matching clause.
2505         (gnus-group-find-parameter): Protect against the group buffer not
2506         existing (bug#9585).
2507
2508 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2509
2510         * gnus-start.el (gnus-activate-group): Document more parameters
2511         (bug#9694).
2512
2513         * gnus-group.el (gnus-group-read-ephemeral-group): Doc clarification
2514         (bug#9692).
2515
2516         * gnus-agent.el (gnus-agent-store-article): Tell the Agent when the
2517         article was fetched, so that it can be expired later (bug#9958).
2518         (gnus-agent-summary-fetch-series): Add doc string.
2519         (gnus-agent-summary-fetch-group): Don't remove tick and dormant marks
2520         (bug#9517).
2521
2522         * nntp.el (nntp-retrieve-groups): Refuse to do retrieval when an async
2523         retrieval is happening.
2524
2525         * gnus.el (gnus-parameters): Doc fix.
2526
2527 2012-01-06  Dave Abrahams  <dave@boostpro.com>
2528
2529         * gnus-sum.el (gnus-summary-refer-thread): If the subtree is hidden,
2530         show the thread after expansion.
2531
2532 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2533
2534         * gnus-art.el (article-narrow-to-head): If the head is completely
2535         empty, narrow to the empty region (bug#9764).
2536
2537         * gnus-sum.el (gnus-summary-mark-article-as-unread): Mark articles as
2538         read, and then mark them as unread only when the unread mark is used.
2539         This makes `C-- T k' actually work, even though it's confusing.
2540
2541         * gnus-win.el (gnus-all-windows-visible-p): Ensure that the buffer is
2542         alive before we try to find its window.
2543
2544 2012-01-06  Brian Sniffen  <bsniffen@akamai.com>  (tiny change)
2545
2546         * mm-decode.el (mm-display-external): Use a longer timeout for the
2547         deletion to allow slow programs to display the file.
2548
2549 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2550
2551         * gnus-art.el (gnus-article-browse-delete-temp-files): Fix up the
2552         prompt to be less confusing.
2553
2554         * gnus-msg.el (gnus-summary-reply): Do not give a `switch-to-buffer'
2555         argument to `message-reply'.  This broke `special-display-*' frame
2556         pop-uping (bug#10238).
2557
2558 2012-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2559
2560         * starttls.el (starttls-available-p): Return nil on Windows/MS-DOS
2561         systems, since these allegedly don't work there.
2562
2563 2012-01-04  Chris Gray  <chrismgray@gmail.com>  (tiny change)
2564
2565         * mm-decode.el (mm-shr): Check that `gnus-summary-buffer' really is a
2566         live buffer.
2567
2568 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2569
2570         * nnir.el (nnir-retrieve-headers): Protect against the article not
2571         existing on the server (bug#10335).
2572
2573 2012-01-04  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
2574
2575         * gnus-agent.el (gnus-agent-load-local): Recompute
2576         gnus-agent-article-local on changing method.
2577
2578 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2579
2580         * gnus.el (gnus-parameters): Note precedence.
2581
2582 2012-01-04  Leo Liu  <sdl.web@gmail.com>
2583
2584         * nndraft.el (nndraft-update-unread-articles): Don't move point around
2585         in the group buffer.
2586
2587 2012-01-04  Julien Danjou  <julien@danjou.info>
2588
2589         * nnimap.el (nnimap-update-info): Fix an error when all articles UIDs
2590         change.
2591
2592 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2593
2594         * shr.el (shr-rescale-image): Add :ascent 100 to the rescaled picture,
2595         too.
2596
2597         * nntp.el (nntp-retrieve-group-data-early): Use it.
2598
2599 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2600
2601         * nntp.el (nntp-retrieval-in-progress): New variable.
2602         (nntp-make-process-buffer): Make it buffer-local.
2603
2604         * gnus-demon.el (gnus-demon-time-to-step): Resurrect function lost in
2605         2010.
2606         (gnus-demon-init): Use it to compute the time if time is on the form
2607         "04:23".
2608
2609         * gnus-topic.el (gnus-topic-history): Define `gnus-topic-history'.
2610
2611         * nnimap.el (nnimap-finish-retrieve-group-infos): Check the connection
2612         status in the correct buffer.
2613
2614 2012-01-03  Leo Liu  <sdl.web@gmail.com>
2615
2616         * gnus-topic.el (gnus-topic-goto-next-group): Don't move point around
2617         when opening topics (bug#10407).
2618
2619 2011-12-30  Paul Eggert  <eggert@cs.ucla.edu>
2620
2621         * gnus-cus.el (gnus-score-customize):
2622         * gnus-sum.el (gnus-sort-gathered-threads):
2623         * message.el (message-shorten-references):
2624         * nnmairix.el (nnmairix-request-group):
2625         * uudecode.el (uudecode-decode-region-internal): Spelling fix.
2626
2627 2011-12-29  Paul Eggert  <eggert@cs.ucla.edu>
2628
2629         * gnus-agent.el (gnus-agent-regenerate-group):
2630         * gnus-int.el (gnus-retrieve-group-data-early):
2631         * mm-util.el (mm-codepage-ibm-list):
2632         * nndiary.el (Commentary, nndiary-get-new-mail):
2633         * nnir.el (nnir):
2634         * pgg-parse.el (pgg-parse-symmetric-key-algorithm-alist): Spelling fix.
2635
2636 2011-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2637
2638         * mm-view.el (mm-display-inline-fontify): Add comment.
2639
2640 2011-12-21  Paul Eggert  <eggert@cs.ucla.edu>
2641
2642         * nndiary.el (nndiary-parse-schedule-value, nndiary-parse-schedule):
2643         * ntlm.el (ntlm-smb-dohash): Spelling fix.
2644
2645 2011-12-19  Paul Eggert  <eggert@cs.ucla.edu>
2646
2647         * gnus-art.el (gnus-split-methods):
2648         * gnus-msg.el (gnus-configure-posting-styles):
2649         * gnus-spec.el (gnus-parse-simple-format):
2650         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
2651         * message.el (message-do-actions): Spelling fix.
2652
2653 2011-12-15  Juri Linkov  <juri@jurta.org>
2654
2655         * mm-decode.el (mm-inline-media-tests): Add missing
2656         `mm-handle-media-subtype'.
2657
2658 2011-12-14  Paul Eggert  <eggert@cs.ucla.edu>
2659
2660         * gnus-group.el (gnus-group-tool-bar):
2661         * gnus-sum.el (gnus-summary-tool-bar):
2662         * message.el (message-tool-bar):
2663         * rfc2231.el (rfc2231-parse-string): Spelling fix.
2664
2665 2011-12-12  Paul Eggert  <eggert@cs.ucla.edu>
2666
2667         * plstore.el (plstore--insert-buffer): Spelling fix.
2668
2669 2011-12-09  Tassilo Horn  <tassilo@member.fsf.org>
2670
2671         * message.el (message-valid-fqdn-regexp): Update with newly approved
2672         top-level domain names ".tel" and ".asia".
2673
2674 2011-12-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2675
2676         * gnus-sum.el (gnus-summary-show-article): Don't load shr
2677         unconditionally.
2678
2679 2011-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2680
2681         * message.el (message-pop-to-buffer): Use pop-to-buffer instead of
2682         pop-to-buffer-same-window for old Emacsen.
2683
2684 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
2685
2686         * gnus-sum.el (gnus-summary-make-tool-bar): Fix typo.
2687
2688 2011-12-05  Paul Eggert  <eggert@cs.ucla.edu>
2689
2690         * netrc.el (netrc-credentials): Spelling fix.
2691
2692 2011-12-04  Paul Eggert  <eggert@cs.ucla.edu>
2693
2694         * gnus-fun.el (gnus-fun-ppm-change-string):
2695         * gnus-msg.el (gnus-inews-do-gcc):
2696         * gnus-sum.el (gnus-summary-find-for-reselect):
2697         * gnus.el (gnus-summary-cancelled):
2698         * message.el (message-cancel-hook, message-send-news):
2699         * nndiary.el (nndiary-headers, nndiary-parse-schedule-value):
2700         * nnir.el (nnir-run-hyrex):
2701         * nntp.el (nntp-with-open-group-function):
2702         * pgg.el (pgg-pending-timers): Spelling fix.
2703
2704 2011-12-04  Chong Yidong  <cyd@gnu.org>
2705
2706         * message.el (message-pop-to-buffer): Partially revert 2011-11-30
2707         change (Bug#10200).
2708
2709 2011-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2710
2711         * compface.el (uncompface):
2712         * gnus-art.el (gnus-article-x-face-command): Update the header format
2713         of icon data for the most recent icontopbm program.
2714
2715 2011-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2716
2717         * gnus-msg.el (gnus-inews-do-gcc):
2718         * message.el (message-send-mail):
2719         * mml.el (mml-generate-mime): Share the value of the buffer-local
2720         `message-options' variable between a draft buffer and temprary working
2721         buffers.
2722
2723 2011-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2724
2725         * message.el (message-pop-to-buffer): Revert 2011-09-11 change.
2726
2727 2011-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2728
2729         * gnus-art.el (gnus-article-browse-html-parts): Convert link file names
2730         for Cygwin.
2731
2732 2011-11-27  Paul Eggert  <eggert@cs.ucla.edu>
2733
2734         * gnus-group.el (gnus-group-prepare-flat):
2735         * mm-bodies.el (mm-encode-body):
2736         * mml.el (mml-preview):
2737         * nnml.el (nnml-request-compact-group):
2738         * pop3.el (pop3-stream-type): Spelling fix.
2739
2740 2011-11-26  Paul Eggert  <eggert@cs.ucla.edu>
2741
2742         * gnus-start.el (gnus-newsrc-to-gnus-format): Spelling fix.
2743
2744 2011-11-25  Paul Eggert  <eggert@cs.ucla.edu>
2745
2746         * color.el (color-rgb-to-hsl):
2747         * gmm-utils.el (gmm-tool-bar-style):
2748         * gnus-group.el (gnus-group-prepare-flat):
2749         * gnus-topic.el (gnus-topic-prepare-topic):
2750         * mm-decode.el (mm-discouraged-alternatives):
2751         * rfc2047.el (rfc2047-encode-1):
2752         * starttls.el: Spelling fix.
2753
2754 2011-11-24  Glenn Morris  <rgm@gnu.org>
2755
2756         * binhex.el (binhex-begin-line): Give it basic doc-string.
2757
2758         * starttls.el, tls.el: Fix case of "GnuTLS".
2759
2760 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
2761
2762         * gnus-group.el (gnus-group-highlight): Fix typo.
2763
2764 2011-11-24  Adam W  <adam_w67@yahoo.com>  (tiny change)
2765
2766         * mail-source.el (mail-source-fetch-maildir): Don't expect the return
2767         value of `delete-file', that returns nil for a local file but returns t
2768         for a remote file using ssh.
2769
2770 2011-11-22  Paul Eggert  <eggert@cs.ucla.edu>
2771
2772         * gnus-sum.el (gnus-summary-save-article): Spelling fix.
2773
2774 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2775
2776         * shr.el (shr-table-horizontal-line): Use "?\s" instead of "? " to
2777         avoid later breakage.
2778
2779 2011-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2780
2781         * gnus-art.el (gnus-article-setup-buffer): Decode group name used for
2782         article buffers' name.
2783
2784 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2785
2786         * shr.el (shr-table-horizontal-line): Revert infinite loops introduced
2787         by Paul Eggert's spellfixes two days ago.
2788
2789 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2790
2791         * dgnushack.el (fboundp): Define `with-demoted-errors' for Emacsen that
2792         doesn't have it.
2793
2794         * mm-view.el (mm-display-inline-fontify): Make the font-lock variables
2795         buffer-local instead of binding them to avoid warnings.  Also demote
2796         errors (bug#10063).
2797         (font-lock-mode-hook): Shut up byte compiler.
2798
2799 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
2800
2801         * mm-util.el (mm-charset-after):
2802         * nnir.el (nnir-run-hyrex):
2803         * ntlm.el (ntlm-build-auth-request, ntlm-build-auth-response)
2804         (ntlm-get-password-hashes, ntlm-md4hash):
2805         * smime.el: Fix typo.
2806
2807 2011-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2808
2809         * gnus-agent.el (gnus-agent-expire-group-1):
2810         * nndiary.el (nndiary-last-occurence):
2811         * nnimap.el (nnimap-request-set-mark):
2812         * nnmairix.el (nnmairix-only-use-registry):
2813         * gnus-group.el (gnus-group-prepare-flat):
2814         * gnus-sum.el (gnus-decode-encoded-word-methods):
2815         * message.el (message-wash-subject):
2816         * nntp.el (nntp-retrieve-headers-with-xover):
2817         * smime.el (smime-certificate-directory): Spelling fix.
2818
2819 2011-11-19  Paul Eggert  <eggert@cs.ucla.edu>
2820
2821         * nnmail.el (nnmail-get-new-mail-1): Remove unused local variables.
2822
2823         * color.el:
2824         * gnus-agent.el (gnus-agent-possibly-alter-active):
2825         * gnus-dired.el (gnus-dired-print):
2826         * mail-parse.el:
2827         * nnmairix.el (nnmairix-request-group):
2828         * shr.el (shr-image-displayer):
2829         * sieve-manage.el:
2830         * spam.el (spam-autodetect-recheck-messages): Spelling fix.
2831
2832 2011-11-18  Paul Eggert  <eggert@cs.ucla.edu>
2833
2834         * gnus-sum.el (gnus-auto-select-subject):
2835         * spam-report.el (spam-report-resend): Spelling fix.
2836
2837 2011-11-17  Paul Eggert  <eggert@cs.ucla.edu>
2838
2839         * gnus-agent.el (gnus-agent-get-undownloaded-list):
2840         * gnus-art.el (gnus-default-article-saver):
2841         * gnus-srvr.el (gnus-server-copy-server):
2842         * gnus.el (gnus-sloppily-equal-method-parameters):
2843         * html2text.el (html2text-format-tag-list):
2844         * message.el (message-narrow-to-head):
2845         * nndiary.el:
2846         * nnmairix.el (nnmairix-determine-original-group-from-registry):
2847         * sieve.el: Spelling fix.
2848
2849 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
2850
2851         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
2852         * gnus-sum.el (gnus-summary-make-menu-bar):
2853         * gnus-uu.el (gnus-uu-decode-postscript)
2854         (gnus-uu-decode-postscript-and-save):
2855         * mailcap.el (mailcap-print-command):
2856         * registry.el (registry-lookup, registry-lookup-breaks-before-lexbind):
2857         Fix typos.
2858
2859 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
2860
2861         * gnus-art.el (gnus-article-part-wrapper):
2862         * html2text.el (html2text-fix-paragraphs):
2863         * mm-decode.el (mm-image-fit-p):
2864         * rfc2047.el (rfc2047-encode-message-header):
2865         * shr-color.el (shr-color-visible-distance-min)
2866         (shr-color-relative-to-absolute, set-minimum-interval)
2867         (shr-color-visible): Fix typos.
2868
2869 2011-11-15  Paul Eggert  <eggert@cs.ucla.edu>
2870
2871         * gmm-utils.el (gmm-tool-bar-item):
2872         * gnus-art.el (gnus-treat-body-boundary):
2873         * gnus-diary.el (gnus-user-format-function-d):
2874         * gnus-start.el (gnus-get-unread-articles):
2875         * pgg-gpg.el (pgg-gpg-update-agent):
2876         * smime.el (smime-cert-by-ldap-1): Spelling fix.
2877
2878 2011-11-14  Paul Eggert  <eggert@cs.ucla.edu>
2879
2880         * gnus-topic.el (gnus-group-prepare-topics):
2881         * gnus-uu.el (gnus-extract-view):
2882         * gnus-win.el (gnus-use-frames-on-any-display): Spelling fix.
2883
2884 2011-11-09  Teodor Zlatanov  <tzz@lifelogs.com>
2885
2886         * spam.el: Move BBDB autoloads.
2887         (spam-exists-in-BBDB-p): New function to do the BBDB search directly in
2888         BBDB 2 and 3.
2889         (spam-check-BBDB): Use it.
2890         (spam-enter-ham-BBDB): Use it.
2891
2892 2011-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2893
2894         * smime.el (smime-draw-buffer): Spelling fix.
2895
2896 2011-10-31  Peter Münster  <pmrb@free.fr>  (tiny change)
2897
2898         * gnus-group.el (gnus-group-get-new-news): New parameter `one-level'
2899         for scanning exactly one level.
2900         * gnus-start.el (gnus-get-unread-articles): Ditto.
2901
2902 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2903
2904         * gnus-sum.el (gnus-articles-to-read): Change wording in prompt to be
2905         slightly clearer.
2906
2907 2011-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
2908
2909         * gnus-sync.el: More commentary about setup.
2910
2911 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2912
2913         * message.el (message-send-and-exit): Document `arg'.
2914
2915 2011-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2916
2917         * nnimap.el (nnimap-open-connection-1): Use tcp-keealive if possible.
2918
2919 2011-11-02  Teodor Zlatanov  <tzz@lifelogs.com>
2920
2921         * gnus-sync.el: More commentary about `gnus-sync-read' issues.
2922
2923         * gnus-util.el (gnus-bound-and-true-p): Another comment to explain why
2924         we don't use `bound-and-true-p'.
2925
2926 2011-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
2927
2928         * gnus-util.el (gnus-bound-and-true-p): Remove.
2929         (gnus-bound-and-true-dumber-p): Rename to `gnus-bound-and-true-p'.
2930         * nnir.el: Use it.
2931         * nnmairix.el: Use it.
2932
2933 2011-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2934
2935         * gnus-sync.el: Improve docs about CouchDB admins.
2936
2937         * gnus-util.el (gnus-bound-and-true-dumber-p): Define new, slower, dumb
2938         function because `gnus-bound-and-true-p' doesn't work well in XEmacs
2939         for reasons unknown.
2940         * nnir.el: Use it.
2941         * nnmairix.el: Use it.
2942
2943         * nnregistry.el: Remove unnecessary `gnus-registry-enabled' defvar.
2944         * nnir.el: Ditto.
2945         * nnmairix.el: Ditto.
2946
2947         * gnus-registry.el (gnus-registry-enabled): Default to nil.
2948
2949 2011-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
2950
2951         * gnus-sync.el (gnus-sync-lesync-setup): Fix salt when user setup is
2952         not needed.  Provide xmlplistread list function to produce XML plist
2953         output for non-Gnus LeSync clients.
2954
2955 2011-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
2956
2957         * gnus-fallback-lib/json.el: Add for XEmacs and Emacs 22 support.
2958
2959         * gnus-sync.el: Add LeSync synchronization backend and logic to read
2960         and save against it.  Group subscriptions, read marks, other marks,
2961         subscription levels, topic names, and topic offsets (the group's
2962         position within the topic) are saved.  This is an experimental backend
2963         and may change significantly.  Load json.el from the gnus-fallback-lib
2964         if it's not available otherwise.
2965         (gnus-sync-save): Don't use `apply-partially' because of XEmacs.
2966
2967 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
2968
2969         * message.el (message-completion-function): Make sure
2970         message-tab-body-function is not attempted if one of
2971         message-completion-alist fails to find a completion (bug#9158).
2972
2973 2011-10-26  Daiki Ueno  <ueno@unixuser.org>
2974
2975         * mml.el (mml-quote-region): Quote <#secure> tag.
2976         (mml-generate-mime-1): Unquote <#secure> tag.
2977
2978 2011-10-20  Chong Yidong  <cyd@gnu.org>
2979
2980         * gnus-cite.el (gnus-message-citation-mode): Doc fix (in Emacs 24,
2981         calling a minor mode from Lisp with nil arg enables it, so we have to
2982         make the wording a bit ambiguous here).
2983
2984 2011-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
2985
2986         * gnus-util.el (gnus-bound-and-true-p): Macro for XEmacs compatibility.
2987         * nnir.el (nnir-mode): Use it.
2988         * nnmairix.el (nnmairix-determine-original-group-from-registry):
2989         Use it.
2990
2991         * nnir.el (gnus-registry-enabled): Defvar to keep the compiler happy.
2992         * nnmairix.el (gnus-registry-enabled): Ditto.
2993
2994 2011-10-17  Dave Abrahams  <dave@boostpro.com>
2995
2996         * gnus-registry.el (gnus-registry-enabled): Add new variable (Bug#9691).
2997         (gnus-registry-install-shortcuts): Set `gnus-registry-install' to 'ask
2998         only while we need to find out if it should be t or nil.
2999         (gnus-registry-initialize): Don't set `gnus-registry-install' to t.
3000         (gnus-registry-install-hooks): Set `gnus-registry-enabled' to t when
3001         the registry is installed.  Set it to nil when it's unloaded.
3002         (gnus-registry-install-p): Provide user guidance for the initial value
3003         of `gnus-registry-install' when it's 'ask, otherwise return its value.
3004         * nnregistry.el (nnregistry-open-server, nnregistry-server-opened):
3005         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
3006         * nnmairix.el (nnmairix-determine-original-group-from-registry):
3007         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
3008         * nnir.el (nnir-mode): Use `gnus-registry-enabled' instead of
3009         `gnus-registry-install'.
3010
3011 2011-10-17  Daiki Ueno  <ueno@unixuser.org>
3012
3013         * mml2015.el (mml2015-epg-find-usable-key): Add comment about the
3014         previous change.
3015         * mml1991.el (mml1991-epg-find-usable-key): Skip the whole key if the
3016         primary key is marked as disabled.
3017
3018 2011-10-17  Christian von Roques  <roques@mti.ag>  (tiny change)
3019
3020         * mml2015.el (mml2015-epg-find-usable-key): Skip the whole key if the
3021         primary key is marked as disabled.
3022
3023 2011-10-11  Andreas Schwab  <schwab@linux-m68k.org>
3024
3025         * html2text.el (html2text-clean-anchor): Check for quotes around
3026         `href' value.
3027
3028 2011-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
3029
3030         * spam.el (spam-check-BBDB): Simplify and support BBDB 3.x when
3031         searching.  Drop `bbdb-cache'.
3032
3033 2011-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3034
3035         * message.el (message-signed-or-encrypted-p): Exclude header when
3036         checking if there is signed or encrypted body in text/plain message.
3037
3038 2011-10-09  Andreas Schwab  <schwab@linux-m68k.org>
3039
3040         * html2text.el (html2text-get-attr): Correctly handle attribute values
3041         containing "=".
3042
3043 2011-09-22  Kan-Ru Chen  <kanru@kanru.info>
3044
3045         * ecomplete.el (ecomplete-display-matches): Use a local keymap to
3046         handle bindings.
3047
3048 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3049
3050         * gnus-win.el (gnus-configure-windows): Protect against reading
3051         ephemeral groups outside of Gnus.
3052
3053 2011-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3054
3055         * shr.el (shr-tag-img): Don't get images displayed in tables.
3056
3057 2011-10-03  Glenn Morris  <rgm@gnu.org>
3058
3059         * gnus-group.el (gnus-bug-group-download-format-alist): Once again get
3060         the "maintainer" version of debbugs.gnu.org reports.
3061
3062 2011-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3063
3064         * shr.el (shr-tag-img): Add a space at the end of an ALT image text to
3065         make asynchronous adjacent image insertion work better.
3066
3067 2011-09-27  Daiki Ueno  <ueno@unixuser.org>
3068
3069         * plstore.el (plstore-select-keys, plstore-encrypt-to): Clarify
3070         documentation.
3071
3072 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3073
3074         * gnus-uu.el (gnus-uu-grab-articles): Require gnus-async so that
3075         `gnus-asynchronous' isn't shadowed.
3076
3077 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3078
3079         * gnus-xmas.el (gnus-xmas-define): Add `member-ignore-case'.
3080
3081         * nnimap.el (nnimap-wait-for-response): Message less (bug#9540).
3082         (nnimap-insert-partial-structure): The charset parameter isn't
3083         case-sensitive.
3084
3085         * nnheader.el (nnheader-message-maybe): New function.
3086
3087         * shr.el (shr-tag-table): Render totally broken tables better.
3088
3089         * mml.el (mml-generate-mime-1): Don't alter the contents if we're
3090         computing the boundary.
3091
3092 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3093
3094         * pop3.el (pop3-number-of-responses): Remove.
3095         (pop3-wait-for-messages): Rewrite to take linear time instead of
3096         exponential time.
3097
3098 2011-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3099
3100         * gnus-sum.el (gnus-summary-show-article): Bind `shr-ignore-cache' to
3101         re-fetch images.
3102
3103         * shr.el (shr-tag-img): Support a new variable `shr-ignore-cache' to
3104         re-fetch images when hitting `g' in Gnus.
3105
3106 2011-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
3107
3108         * mml.el (mml-inhibit-compute-boundary): New internal variable.
3109         (mml-compute-boundary): Don't check collision if it is non-nil.
3110         (mml-compute-boundary-1): Use mml-generate-mime-1 to encode part
3111         before checking collision.
3112
3113 2011-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3114
3115         * message.el (message-indent-citation): Really make sure there's a
3116         newline at the end.
3117
3118         * nnimap.el (nnimap-parse-flags): Make regexp less prone to overflows.
3119         Fix suggested by John Wiegley.
3120
3121         * pop3.el (pop3-open-server): Fix +OK end-of-command regexp.
3122
3123         * gnus-art.el (gnus-treat-hide-citation): Add doc.
3124
3125         * message.el (message-default-send-rename-function): Break out into its
3126         own function.
3127
3128         * ecomplete.el (ecomplete-display-matches): Revert patch since it
3129         doesn't work under XEmacs.
3130
3131         * nnimap.el (nnimap-map-port): New function to connect to 993 instead
3132         of "imaps" to word around Windows problems.
3133         (nnimap-open-connection-1): Use it.
3134
3135         * message.el (message-indent-citation): Revert last change which made
3136         `F' not work.
3137
3138 2011-09-13  Kan-Ru Chen  <kanru@kanru.info>
3139
3140         * ecomplete.el (ecomplete-display-matches): Intercept key sequence from
3141         terminal as well.
3142
3143 2011-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
3144
3145         * mm-view.el (mm-display-inline-fontify): Don't run doc-view-mode
3146         because it displays images using overlays that aren't easy to copy to
3147         the article buffer.
3148
3149 2011-09-20  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
3150
3151         * message.el (message-indent-citation): Fix empty line removal at the
3152         end of the citation.
3153
3154 2011-09-20  Julien Danjou  <julien@danjou.info>
3155
3156         * auth-source.el (auth-source-netrc-create): Use default value for
3157         password if specified.  Evaluate default.
3158         (auth-source-plstore-create): Ditto.
3159         (auth-source-plstore-create, auth-source-netrc-create): Fix default
3160         value evaluation.
3161         (auth-source-netrc-create): Typo fix.
3162         (auth-source-plstore-create): Ditto.
3163
3164         * password-cache.el (password-cache-remove): Remove entries even if the
3165         value is nil, so that password with a nil value (negative caching) is
3166         possible to invalidate.
3167
3168         * auth-source.el (auth-source-format-cache-entry): New function.
3169
3170 2011-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3171
3172         * gnus-fun.el (gnus-convert-image-to-x-face-command): Doc fix.
3173
3174 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3175
3176         * mm-decode.el (mm-inline-media-tests): Fix typo in regexp.
3177
3178 2011-09-19  Julien Danjou  <julien@danjou.info>
3179
3180         * auth-source.el (auth-source-netrc-parse): Use an obfuscation method
3181         which work with things that are not ASCII.
3182
3183 2011-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3184
3185         * mm-decode.el (mm-inline-media-tests): Support imagemagick images.
3186
3187 2011-09-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3188
3189         * gnus-sum.el (gnus-summary-read-group-1): Bump the "Retrieving"
3190         message level.
3191
3192 2011-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
3193
3194         * message.el (message-read-from-minibuffer): Make abbrev expansion work.
3195
3196 2011-09-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3197
3198         * gnus.el (gnus-interactive-exit): Update defcustom spec.
3199
3200 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3201
3202         * gnus.el (gnus-nntp-server): Move to gnus-int.el to silence bytecomp.
3203         * gnus-int.el (gnus-nntp-server): Move from gnus.el.
3204
3205 2011-09-12  Andrew Cohen  <cohen@andy.bu.edu>
3206
3207         * gnus-group.el (gnus-group-list-limit-map, gnus-group-list-flush-map)
3208         (gnus-group-list-plus-map): Allow limiting, flushing and plusing ticked
3209         articles.
3210
3211 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
3212
3213         * message.el (message-pop-to-buffer): Default to switch-to-buffer.
3214         (message-mail-other-window, message-mail-other-frame)
3215         (message-news-other-window, message-news-other-frame):
3216         Use switch-to-buffer-other-frame and switch-to-buffer-other-window
3217         instead of setting buffer display varibles.
3218
3219 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3220
3221         * gnus-group.el (gnus-group-list-limit): Explain what the command does.
3222
3223         * gnus-sum.el (gnus-fetch-headers): Bump message level.
3224
3225 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3226
3227         * gnus-dup.el (gnus-dup-suppress-articles): Move "Suppressing
3228         duplicates" to a higher level.
3229
3230         * gnus-util.el (gnus-verbose): Lower default to 6 to get rid of the
3231         most egregious messages.
3232
3233 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3234
3235         * gnus-msg.el (gnus-summary-mail-forward): Minuscule doc fix.
3236
3237 2011-09-10  Tetsuo Tsukamoto  <tt.tetsuo.tsukamoto@gmail.com>  (tiny change)
3238
3239         * nnrss.el (nnrss-retrieve-groups): Decode the charset before looking
3240         up the file (bug#9351).
3241
3242 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3243
3244         * nnimap.el: Redo the charset handling.  Let Gnus encode the names, as
3245         it does with all other backends, but decode the names immediately after
3246         getting them.
3247
3248         * gnus-group.el (gnus-group-name-charset): Always return `utf-7' when
3249         decoding nnimap groups.
3250
3251         * gnus.el (gnus-variable-list): Don't save `gnus-format-specs' in the
3252         newsrc file.  It doesn't seem like an important optimization any more.
3253
3254 2011-09-10  Dave Abrahams  <dave@boostpro.com>
3255
3256         * nnimap.el (nnimap-transform-headers): Fix regexp to be less prone to
3257         overflows.
3258
3259 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3260
3261         * gnus.el (gnus-article-mark-lists): Remove `recent'.
3262         (gnus-interactive-exit): Extend to `quiet'.
3263
3264         * gnus-sum.el (gnus-offer-save-summaries): Use it.
3265
3266         * gnus-art.el (gnus-treat-hide-citation-maybe): Add more doc to the
3267         string.
3268
3269         * plstore.el (plstore--get-buffer): Silence compiler warnings by
3270         renaming function arguments from `this'.
3271
3272         * gnus-sum.el (gnus-newsgroup-recent): Remove.
3273
3274         * gnus-spec.el (gnus-lrm-string-p): `bidi-string-mark-left-to-right'
3275         has been renamed.
3276         (gnus-lrm-string-p): Include RLM and PDF, too.
3277
3278         * gnus-int.el (gnus-open-server): Make the "denied" message clearer
3279         (bug#9225).
3280
3281 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
3282
3283         Add autoload cookies for functions used by sendmail.el.
3284         * mm-encode.el (mm-default-file-encoding): Add autoload cookie.
3285
3286         * mml.el (mml-to-mime, mml-attach-file): Add autoload cookies.
3287
3288 2011-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
3289
3290         * gnus-art.el (article-date-ut): Work properly even when there are
3291         things like Date header in the body; work for forwarded parts.
3292
3293 2011-09-05  Andrew Cohen  <cohen@andy.bu.edu>
3294
3295         * gnus-sum.el (gnus-summary-exit): Ensure we kill the proper
3296         original-article-buffer.
3297
3298 2011-09-05  Kan-Ru Chen  <kanru@kanru.info>
3299
3300         * nnir.el (nnir-compose-result): Fix matching of server type.
3301         (nnir-run-swish++): Ditto.
3302         (nnir-run-namazu): Ditto.
3303         (nnir-run-notmuch): Ditto.
3304
3305 2011-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3306
3307         * gnus.el (gnus-home-directory): Add warning about setting in .gnus.el
3308         (bug#9405).
3309
3310         * gnus-score.el (gnus-summary-increase-score): Doc clarification
3311         (bug#9421).
3312
3313         * gnus-spec.el (gnus-face-0): Make all the face specs into defcustoms
3314         (bug#9425).
3315
3316         * gnus-art.el (gnus-treatment-function-alist): Remove CRs as the first
3317         thing (bug#9426).
3318
3319 2011-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3320
3321         * nnimap.el (nnimap-open-connection-1): Use the correct port number in
3322         the error message.
3323
3324 2011-09-02  Eli Zaretskii  <eliz@gnu.org>
3325
3326         * message.el (message-setup-1): Return t (Bug#9392).
3327
3328 2011-09-01  Andrew Cohen  <cohen@andy.bu.edu>
3329
3330         * gnus-sum.el: When adding article headers to a summary buffer also
3331         update gnus-newsgroup-articles (bug#9386).
3332
3333 2011-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3334
3335         * auth-source.el: Autoload help-mode.
3336
3337 2011-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3338
3339         * gnus-group.el (gnus-group-name-charset): Don't bug out on server
3340         names.
3341
3342 2011-08-27  Daiki Ueno  <ueno@unixuser.org>
3343
3344         * mml-smime.el (mml-smime-epg-verify): Don't use the 4th arg of
3345         mm-replace-in-string for compatibility issues.
3346         * mml2015.el (mml2015-epg-verify): Ditto.
3347
3348 2011-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3349
3350         * mailcap.el (mailcap-mime-data): Regexp-quote MIME subtype.
3351
3352         * gnus-msg.el (gnus-setup-message): Remove extra apostrophe.
3353
3354 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3355
3356         * nnmail.el (nnmail-get-new-mail-1): If one mail source bugs out,
3357         continue on and do the clean-up phase (bug#9188).
3358
3359         * gnus-sum.el (gnus-summary-expire-articles): When expiring articles,
3360         just ignore groups that can't be opened instead of erroring out
3361         (bug#9225).
3362
3363         * gnus-art.el (gnus-article-update-date-headers): Flip the default to
3364         nil since some many people are fuddy-duddies.
3365
3366         * gnus-html.el (gnus-html-image-fetched): Don't cache zero-length
3367         images.
3368
3369         * nntp.el (nntp-authinfo-file): Mark as obsolete -- use auth-source
3370         instead.
3371
3372         * pop3.el (pop3-wait-for-messages): Don't use Gnus functions here.
3373
3374         * gnus-util.el (gnus-process-live-p): Copy over compat function.
3375
3376         * pop3.el (pop3-wait-for-messages): If the pop3 process dies, stop
3377         processing.
3378
3379         * nntp.el (nntp-kill-buffer): Kill the process before killing the
3380         buffer to avoid warnings.
3381
3382 2011-08-20  Simon Josefsson  <simon@josefsson.org>
3383
3384         * gnus-agent.el (gnus-agent-expire-done-message): Use %.f as format
3385         specified to reduce precision.
3386
3387 2011-08-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3388
3389         * nnimap.el (nnimap-transform-headers): Protect against (NIL ...)
3390         bodystructures (bug#9314).
3391
3392 2011-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
3393
3394         * gnus-art.el (gnus-insert-mime-button, gnus-mime-display-alternative):
3395         Make button keymap non-sticky after buttons.
3396
3397 2011-08-18  David Engster  <dengste@eml.cc>
3398
3399         * nnmairix.el (nnmairix-request-set-mark)
3400         (nnmairix-goto-original-article): Remove adding of article to registry,
3401         since `gnus-registry-add-group' isn't available anymore.
3402         (nnmairix-determine-original-group-from-registry):
3403         Use `gnus-registry-get-id-key' since `gnus-registry-fetch-groups' isn't
3404         available anymore.
3405
3406 2011-08-12  Simon Josefsson  <simon@josefsson.org>
3407
3408         * starttls.el (starttls-any-program-available): Define as obsolete
3409         function.
3410
3411 2011-08-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3412
3413         * gnus-util.el (gnus-y-or-n-p): Reinstate the message-clearing y-or-n-p
3414         versions which Gnus use when appropriate.
3415
3416         * gnus-group.el (gnus-group-clear-data): Add a y-or-n query, since it's
3417         a pretty destructive command.
3418
3419         * nnmail.el (nnmail-extra-headers): Clarify slightly (bug#9302).
3420
3421 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3422
3423         * message.el (message-fix-before-sending): Make a different warning
3424         about NUL characters (bug#9270).
3425
3426         * gnus-sum.el (gnus-auto-select-subject): Allow specifying a function
3427         from custom (bug#9260).
3428
3429         * gnus-spec.el (gnus-lrm-string): Use 8206 instead of ?\x200e to make
3430         things work in Emacs 22 and XEmacs, too.
3431
3432         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): LRM-ify the
3433         default From.
3434
3435         * gnus-spec.el (gnus-lrm-string-p): New macro.
3436         (gnus-lrm-string): New constant.
3437         (gnus-summary-line-format-spec): LRM-ify the from.
3438         (gnus-tilde-max-form): LRM-ify string chopping.
3439
3440         * gnus-ems.el (gnus-string-mark-left-to-right): New function.
3441
3442         * message.el (message-is-yours-p): Allow disabling canlock checking
3443         (bug#9295).
3444         (message-shoot-gnksa-feet): Add `canlock-verify'.
3445         (message-auto-save-directory): Use ~/ as the auto-save directory if the
3446         message directory isn't writable (bug#9304).
3447
3448         * auth-source.el (auth-source-netrc-saver): Make the .authinfo file
3449         non-world-readable.
3450
3451 2011-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3452
3453         * nndraft.el (nndraft-update-unread-articles): Don't send delayed
3454         articles.
3455
3456 2011-08-13  Andreas Schwab  <schwab@linux-m68k.org>
3457
3458         * gnus-score.el (gnus-all-score-files): Use copy-sequence instead of
3459         copy-list.
3460
3461 2011-08-12  Sam Steingold  <sds@gnu.org>
3462
3463         * gnus-score.el (gnus-score-find-alist): Keep the score files already
3464         in the reverse order to avoid modifying the cache with `nreverse'.
3465         (gnus-all-score-files): Do not modify the value returned by
3466         `gnus-score-find-alist' because it lives in a cache variable.
3467         (gnus-current-home-score-file): No need to `nreverse' the return value
3468         of `gnus-score-find-alist', it is already in the correct order.
3469
3470 2011-08-11  Andrew Cohen  <cohen@andy.bu.edu>
3471
3472         * nnimap.el (nnimap-transform-headers): BODYSTRUCTURE for messages of
3473         type MESSAGE and subtype RFC822 is slightly different from those of
3474         type TEXT.
3475
3476 2011-08-05  Andrew Cohen  <cohen@andy.bu.edu>
3477
3478         * gnus-sum.el (gnus-summary-refer-article): Warp to article.
3479         This allows article-referral to work from an nnir group.
3480
3481 2011-08-04  Andrew Cohen  <cohen@andy.bu.edu>
3482
3483         * gnus.el (registry-ignore): Add nnir groups to the ignore-list.
3484
3485 2011-08-04  Daiki Ueno  <ueno@unixuser.org>
3486
3487         * mml1991.el (mml1991-epg-find-usable-key)
3488         (mml1991-epg-find-usable-secret-key): New function.
3489         (mml1991-epg-sign): Check if signing key is usable.
3490         (mml1991-epg-encrypt): Check if encrypting key is usable (bug#8955).
3491
3492 2011-08-03  Andrew Cohen  <cohen@andy.bu.edu>
3493
3494         * nnir.el (nnir-read-server-parm): Add an argument to restrict to
3495         server-variables only.  This should fix a bug introduced with commit
3496         e1889675b7f4adf057833c5513c9374134c4e053.
3497         (nnir-run-query): 'nnir-search-engine should not be set from the global
3498         environment.
3499
3500 2011-08-02  Andrew Cohen  <cohen@andy.bu.edu>
3501
3502         * nnir.el (nnir-search-thread): Position point on referring article
3503         line.
3504         (nnir-warp-to-article): Clean up summary buffers.
3505
3506         * nnimap.el (nnimap-request-thread): Whitespace fix.
3507
3508 2011-08-02  Steve Purcell  <steve@sanityinc.com>  (tiny change)
3509
3510         * nnimap.el (nnimap-get-groups): Decode "&" correctly.
3511
3512 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3513
3514         * starttls.el (starttls-available-p): Rename from
3515         `starttls-any-program-available' and changed return convention.
3516
3517 2011-07-31  Lars Ingebrigtsen  <larsi@gnus.org>
3518
3519         * nnmaildir.el (nnmaildir-request-accept-article): Don't call
3520         `unix-sync' unless it's defined.
3521
3522 2011-07-31  Marcus Harnisch  <marcus.harnisch@gmx.net>  (tiny change)
3523
3524         * gnus-art.el (gnus-article-stop-animations): Use `elt' instead of
3525         `aref' for XEmacs compatibiltiy.
3526
3527 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3528
3529         * spam.el (spam-fetch-field-fast): Rewrite slightly for clarity.
3530
3531 2011-07-31  Dave Abrahams  <dave@boostpro.com>
3532
3533         * gnus-sum.el (gnus-summary-refer-thread): Since lambdas aren't
3534         closures, quote the form properly (bug#9194).
3535
3536 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3537
3538         * gnus-sum.el (gnus-summary-insert-new-articles): Clean up slightly.
3539         (gnus-summary-insert-new-articles): Protect against servers that are
3540         down.
3541
3542 2011-07-29  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
3543
3544         * mm-decode.el (mm-dissect-buffer): Add a default content-disposition
3545         in mm handle if none is specified.
3546
3547 2011-07-24  Andrew Cohen  <cohen@andy.bu.edu>
3548
3549         * nnimap.el (nnimap-make-thread-query): Quote message-ids for gmail.
3550
3551 2011-07-23  Andrew Cohen  <cohen@andy.bu.edu>
3552
3553         * nnir.el (nnir-search-thread): New function to make an nnir group
3554         based on a thread query.
3555
3556         * gnus-sum.el (gnus-refer-thread-use-nnir): New variable to control use
3557         of nnir in thread referral.
3558         (gnus-summary-refer-thread): Use it.
3559
3560         * nnimap.el (nnimap-request-thread): Use it.
3561
3562 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3563
3564         * shr.el (shr-tag-comment): Ignore HTML comments.
3565
3566 2011-07-20  Andrew Cohen  <cohen@andy.bu.edu>
3567
3568         * nnir.el (gnus-group-make-nnir-group): Allow optional search query
3569         argument.
3570         (gnus-group-make-nnir-group, nnir-request-group, nnir-run-query):
3571         Use `nnir-address' to handle server info rather than passing an arg.
3572
3573         * nnimap.el (nnimap-make-thread-query): New utility function to format
3574         an imap thread search query.
3575         (nnimap-request-thread): Use it.
3576
3577         * gnus-sum.el (gnus-handle-ephemeral-exit): Ensure we are setting the
3578         right select-method if we are not going back to the group buffer.
3579
3580 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3581
3582         * gnus-group.el (gnus-group-read-ephemeral-group): Make sure we don't
3583         enter invalid buffer configurations into the quit form (bug#9107).
3584         (gnus-group-tool-bar-gnome): Replace connect/disconnect with
3585         unplugged/plugged.
3586
3587         * gnus-sum.el (gnus-summary-refer-thread): When inserting new headers,
3588         keep track of which ones are unread (bug#9061).
3589
3590         * gnus.el (gnus-refer-article-method): Allow entering any sexp
3591         (bug#9055).
3592
3593         * gnus-art.el (gnus-article-show-images): Allow working if using w3m
3594         (bug#9041).
3595
3596         * gnus-html.el (mm-util): Require (bug#9073).
3597
3598         * gnus-sum.el (gnus-delete-duplicate-headers): New function.
3599         (gnus-summary-refer-thread): Use it to remove duplicates in the
3600         un-threaded view (bug#9053).
3601         (gnus-summary-insert-subject): Document USE-OLD-HEADER (bug#9070).
3602
3603 2011-07-07  Kan-Ru Chen  <kanru@kanru.info>
3604
3605         * nnir.el (nnir-read-server-parm): Use default value from global
3606         variable.  Without this the default search engine parameters aren't
3607         used at all.
3608
3609 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3610
3611         * message.el (message-unique-id): Don't use the undocumented return
3612         value from (random t) (bug#9118).
3613
3614 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3615
3616         * message.el (message-auto-save-directory): If the ~/Mail directory
3617         doesn't exist, use ~ as the auto-save directory (bug#4432).
3618
3619         * gnus-group.el (gnus-group-read-ephemeral-group): Start Gnus if it
3620         hasn't already been started.
3621
3622 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3623
3624         * gnus.el (debbugs-gnu): Rename from debbugs-emacs.
3625
3626         * message.el (message-reply): Work around mysterious bug where
3627         `message-mode' seems to overwrite the locally bound `subject' variable.
3628
3629 2011-07-14  Andrew Cohen  <cohen@andy.bu.edu>
3630
3631         * nnimap.el (nnimap-request-thread): Ensure search is performed in
3632         correct group.
3633
3634         * gnus-int.el (gnus-request-thread): Add group argument.
3635
3636         * gnus-sum.el (gnus-summary-refer-thread): Use it.
3637
3638 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3639
3640         * dgnushack.el (debbugs-gnu-summary-mode): Update compat names, too.
3641
3642         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): `debbugs-*'
3643         renamed to `debbugs-gnu-*'.
3644
3645 2011-07-08  Daiki Ueno  <ueno@unixuser.org>
3646
3647         * plstore.el: Revert the editing feature since it is not urgent.
3648         (plstore-mode, plstore-mode-toggle-display, plstore-mode-original)
3649         (plstore-mode-decoded): Remove.
3650
3651 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3652
3653         * gnus-msg.el (gnus-bug): Don't insert user variables.  It usually
3654         isn't very interesting any more, and it leaks potentially secret data.
3655         (gnus-debug): Remove.
3656
3657         * gnus-art.el (gnus-ignored-headers): Remove obsolete and non-working
3658         use of :custom-show.
3659
3660 2011-07-07  Daiki Ueno  <ueno@unixuser.org>
3661
3662         * plstore.el: Add documentation.
3663         (plstore-mode): New mode to edit plstore file.
3664         (plstore-mode-toggle-display, plstore-mode-original)
3665         (plstore-mode-decoded): New command.
3666         (plstore--encode, plstore--decode, plstore--write-contents-functions)
3667         (plstore--insert-buffer, plstore--make): New function.
3668         (plstore-open, plstore-save): Simplify by using them.
3669
3670 2011-07-06  Glenn Morris  <rgm@gnu.org>
3671
3672         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Silence compiler.
3673
3674 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3675
3676         * gnus.el (gnus-refer-article-method): Remove mention of nnspool, which
3677         no longer is much used.
3678         (gnus-summary-line-format): Link to "Marking Articles" instead of "Read
3679         Articles".
3680
3681 2011-04-03  Kan-Ru Chen  <kanru@kanru.info>
3682
3683         * nnir.el (nnir-notmuch-program, nnir-notmuch-additional-switches)
3684         (nnir-notmuch-remove-prefix, nnir-engines, nnir-run-notmuch): New nnir
3685         `notmuch' backend.
3686
3687 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3688
3689         * mm-decode.el (mm-text-html-renderer): Doc fix.
3690
3691         * gnus-msg.el (gnus-bug): Fix the MML tag.
3692
3693         * pop3.el (pop3-open-server): -ERR is a valid response to CAPA.
3694
3695 2011-07-05  Daiki Ueno  <ueno@unixuser.org>
3696
3697         * gnus-start.el (gnus-get-unread-articles): Don't connect to the
3698         secondary methods if started with `gnus-no-server'.
3699
3700 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
3701
3702         * message.el (message-return-action): Fix typo in docstring.
3703
3704 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3705
3706         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow fetching several
3707         bug reports at once.
3708
3709         * nnimap.el (nnimap-request-scan): Say that splitting has finished.
3710
3711 2011-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
3712
3713         * nndraft.el: Require gnus-group.
3714         (nndraft-request-list): Declare.
3715
3716         * nndraft.el (nndraft-update-unread-articles): Don't show group having
3717         no unread article unless it matches gnus-permanently-visible-groups.
3718
3719         * nndraft.el (nndraft-update-unread-articles): New function.
3720         (nndraft-request-associate-buffer): Use it to update the number of
3721         unread articles for the nndraft groups in the group buffer when saving
3722         or killing a draft message.
3723
3724 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3725
3726         * gnus-group.el (gnus-read-ephemeral-bug-group): Bind the coding
3727         systems to binary before writing and reading the mbox files.
3728
3729         * gnus.el (gnus-summary-line-format): Link to the info node for %U
3730         instead of trying to list them all (bug#8978).
3731
3732 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
3733
3734         * pop3.el (pop3-open-server): Use :end-of-capability.
3735
3736 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3737
3738         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Make sure that
3739         the id is always a number.
3740
3741         * dgnushack.el (debbugs-summary-mode): Shut up compiler about debbugs.
3742
3743         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Hook into
3744         debbugs mode, if possible.
3745
3746 2011-07-02  Daiki Ueno  <ueno@unixuser.org>
3747
3748         * auth-source.el (auth-source-token-passphrase-callback-function):
3749         Reindent.
3750         (epg-context-operation): Remove unnecessary autoload.
3751
3752 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3753
3754         * gnus.el (gnus-list-debbugs): New command.
3755
3756         * gnus-group.el (gnus-bug-group-download-format-alist): Get the
3757         mboxstat instead of the maintbox, since the stat seems to be fuller.
3758
3759         * gnus-msg.el (gnus-configure-posting-styles): Don't try to select dead
3760         summary buffers.
3761
3762         * message.el (message-get-reply-headers): Delete all duplicates,
3763         instead of the first.
3764         (message-get-reply-headers): Ensure that we have progress while
3765         deleting duplicates.
3766
3767         * gnus-msg.el (gnus-configure-posting-styles): Get the local
3768         gnus-posting-style value from the summary buffer to make it easier to
3769         make that a per-buffer conf.
3770
3771 2011-07-02  Andrew Cohen  <cohen@andy.bu.edu>
3772
3773         * nnir.el (nnir-run-imap): Allow halting a search when an article is
3774         found by setting `shortcut' in 'query.
3775         (nnir-request-article): Use `shortcut' setting when requesting article
3776         by Message-ID.
3777
3778 2011-07-02  Teodor Zlatanov  <tzz@lifelogs.com>
3779
3780         * gnus-msg.el (gnus-bug): Give the Version and Package headers to
3781         debbugs with the X-Debbugs-Package and X-Debbugs-Version headers.
3782         Bring the pseudo-headers back too.
3783
3784 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3785
3786         * auth-source.el (auth-source-token-passphrase-callback-function):
3787         Simplify and remove EPA dependency.
3788
3789 2011-07-01  Andrew Cohen  <cohen@andy.bu.edu>
3790
3791         * nnir.el (nnir-request-article): Fix error message text.
3792
3793 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3794
3795         * auth-source.el (plstore-delete): Autoload.
3796         (auth-source-plstore-search): Support delete operation.
3797         * plstore.el (plstore-delete): New function.
3798
3799 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3800
3801         * gnus-draft.el (gnus-draft-clear-marks): Revert last change;
3802         mark actually existing articles as unread rather than the ones that
3803         active asserts.
3804
3805 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
3806
3807         * nntp.el (nntp-record-command):
3808         * gnus-util.el (gnus-message-with-timestamp-1):
3809         Use format-time-string rather than decoding time stamps by hand.
3810         This is simpler and insulates the code from potential changes to
3811         current-time format.
3812
3813 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3814
3815         * gnus-draft.el (gnus-draft-clear-marks): Mark deleted articles as read.
3816
3817 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3818
3819         * plstore.el (plstore-select-keys, plstore-encrypt-to): New variable.
3820         (plstore-save): Support public key encryption.
3821         (plstore--init-from-buffer): New function.
3822         (plstore-open): Use it; fix error when opening a non-existent file.
3823         (plstore-revert): Use plstore--init-from-buffer.
3824
3825 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
3826
3827         * auth-source.el (auth-source-backend): Fix :initarg for data slot.
3828
3829 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3830
3831         * mml2015.el (mml2015-use): Replace string-match-p with string-match
3832         for old Emacsen.
3833
3834 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
3835
3836         * mml2015.el (mml2015-use): Don't try to load PGG on Emacs 24, when EPG
3837         is not fully working.
3838
3839 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3840
3841         * dgnushack.el: Autoload sha1 on XEmacs.
3842
3843         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Take an optional
3844         quit window configuration.
3845
3846         * auth-source.el (epg-context-set-passphrase-callback):
3847         Remove duplicate autoload.
3848
3849 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
3850
3851         * nnir.el (nnir-request-article): Allow requesting articles by
3852         Message-ID with nnimap.
3853
3854         * gnus-sum.el (gnus-refer-article-methods): Allow (nnir) entry to use
3855         current server.
3856
3857 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
3858
3859         * auth-source.el: Autoload EPA/EPG functions.
3860         (auth-source-netrc-use-gpg-tokens): Clarify that it should not be
3861         changed when EPA/EPG is not available.
3862         (auth-source-backend): Rename "arg" member to "data".
3863         (auth-source-backend-parse, auth-source-plstore-search)
3864         (auth-source-plstore-create): Use it.
3865
3866 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
3867
3868         * gnus-art.el (gnus-request-article-this-buffer): Use existing function
3869         `gnus-refer-article-methods'.
3870
3871 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
3872
3873         * auth-source.el: Require EPA and EPG.
3874         (auth-source-passphrase-alist): New variable.
3875         (auth-source-passphrase-callback-function)
3876         (auth-source-token-passphrase-callback-function): Callbacks for the
3877         netrc field encryption (GPG tokens).
3878         (auth-source-epa-extract-gpg-token, auth-source-epa-make-gpg-token):
3879         Symmetric encryption and decryption of the netrc GPG tokens.
3880         (auth-source-netrc-normalize): Use them, simplifying the closure.
3881
3882 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3883
3884         * dgnushack.el (dgnushack-compile): Don't compile plstore.el unless epg
3885         is available.
3886
3887 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3888
3889         * nnimap.el (nnimap-split-incoming-mail): If `nnimap-split-fancy' is
3890         non-nil, and `nnimap-split-methods' is nil, use the former.
3891
3892 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
3893
3894         * plstore.el (plstore-revert): New function.
3895         (plstore-open): Use it; hide the buffer from user.
3896
3897 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
3898
3899         * auth-source.el (auth-source-backend): New member "arg".
3900         (auth-source-backend-parse): Handle new backend 'plstore.
3901         * plstore.el: New file.
3902
3903 2011-06-30  Glenn Morris  <rgm@gnu.org>
3904
3905         * mm-util.el (mm-charset-synonym-alist): Move definition before use.
3906
3907 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3908
3909         * nnimap.el (nnimap-process-expiry-targets): Say what target we're
3910         expiring articles to.
3911
3912         * mm-util.el (mm-charset-to-coding-system): Recognize all ANSI.x3.4
3913         variations as ASCII (bug#5458).
3914
3915 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3916
3917         * nnmh.el (nnmh-request-list-1): Work on MS Windows.
3918
3919 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3920
3921         * message.el (message-point-in-header-p): Tweak the function to default
3922         to saying that we're not in the headers if there is no separator at
3923         all.  This makes it possible to use the Message version of `M-q' in
3924         buffers with no headers (bug#7987).
3925         (message-point-in-header-p): Fix last checkin to work with an empty
3926         mail-header-separator, too.
3927
3928         * auth-source.el (auth-source-netrc-saver): If the user says "don't ask
3929         again, save the choice via customize.
3930
3931 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3932
3933         * message.el (message-send-mail-function): Add `sendmail-query-once'.
3934
3935         * nnimap.el (nnimap-finish-retrieve-group-infos): If the server has
3936         ended the connection, bail out before waiting infinitely on a new
3937         connection.
3938
3939 2011-06-28  Teodor Zlatanov  <tzz@lifelogs.com>
3940
3941         * gnus-msg.el (gnus-bug): Add Package and Version pseudo-headers to bug
3942         reports.
3943
3944         * gnus.el (gnus-bug-package): Use "gnus."
3945         (gnus-maintainer): Direct bug reports to submit@debbugs.gnu.org.
3946
3947 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3948
3949         * dgnushack.el: Make the timer warning go away on XEmacs.
3950
3951         * gnus-art.el (gnus-article-stop-animations): New function to stop any
3952         animations going on at article exit time.
3953
3954         * gnus-registry.el (gnus-registry-user-format-function-M): Reinstate,
3955         since removing it breaks people upgrading.
3956
3957         * shr.el (shr-put-image): Use the new interface for animating images.
3958         (shr-put-image): Animate for 60 seconds.
3959
3960         * dgnushack.el: Bind `gnutls-available-p' to `ignore' on XEmacs to
3961         avoid compiler warnings.
3962
3963         * auth-source.el (with-auth-source-epa-overrides): Fix compilation
3964         error with `find-file-hooks' on Emacs 22.
3965         (with-auth-source-epa-overrides): Ugly hack to Wrap the
3966         `find-file-hook' things in `symbol-value' to avoid compilation warnings
3967         on all architectures.
3968
3969         * spam.el (spam-stat): Require in a normal fashion without binding
3970         `spam-stat-install-hooks' to avoid compilation warnings.
3971
3972         * spam-stat.el (spam-stat-install-hooks): Remove.
3973         (spam-stat-install-hooks): Don't run automatically.
3974
3975 2011-06-26  Timo Juhani Lindfors  <timo.lindfors@iki.fi>  (tiny change)
3976
3977         * gnus-msg.el (gnus-summary-reply-to-list-with-original): New command
3978         and keystroke.
3979
3980 2011-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
3981
3982         * auth-source.el (auth-source-netrc-cache): Move forward.
3983
3984 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3985
3986         * proto-stream.el (proto-stream-open-starttls): Use
3987         `gnutls-available-p' to see whether we have built-in support.
3988
3989         * auth-source.el (auth-source-netrc-create): Don't query the bits that
3990         we already know.
3991         (auth-source-forget-all-cached): Clear auth-source-netrc-cache, too.
3992         (auth-source-netrc-create): Don't prompt for the stuff we already know.
3993
3994 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3995
3996         * auth-source.el (auth-source-netrc-create): Don't print all tokens in
3997         %S format, since that looks odd.
3998         (auth-sources): Prefer the ~/.authinfo file over the ~/.authinfo.gpg
3999         file, especially when saving.
4000
4001 2011-06-21  Andrew Cohen  <cohen@andy.bu.edu>
4002
4003         * nnimap.el (nnimap-find-article-by-message-id): return nil when no
4004         article found.
4005
4006 2011-06-18  Teodor Zlatanov  <tzz@lifelogs.com>
4007
4008         * auth-source.el (auth-source-netrc-use-gpg-tokens): Replace
4009         `auth-source-save-secrets' with a more sensitive alist that can be
4010         configured per file.  Experimental, so defaults to 'never.
4011         (auth-source-netrc-create): Use it.  Still experimental code.
4012         (with-auth-source-epa-overrides): Use `find-file-hooks' if
4013         `find-file-hook' is unbound (XEmacs fix).  Fix backquoting bug.
4014
4015 2011-06-16  Teodor Zlatanov  <tzz@lifelogs.com>
4016
4017         * auth-source.el (auth-source-save-secrets): New variable to control if
4018         secret tokens should be saved encrypted.
4019         (auth-source-netrc-parse, auth-source-netrc-search): Pass the file name
4020         to `auth-source-netrc-normalize'.
4021         (with-auth-source-epa-overrides): Add convenience macro.  Don't depend
4022         on the EPA variables being defined.
4023         (auth-source-epa-make-gpg-token): Convert text to a "gpg:" token.
4024         (auth-source-netrc-normalize): Convert "gpg:" tokens back to text in
4025         the lexical-let closure.
4026         (auth-source-netrc-create): Create "gpg:" tokens according to
4027         `auth-source-save-secrets'.
4028
4029 2011-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4030
4031         * gnus-group.el (gnus-group-update-group): Add new argument
4032         `info-unchanged' that stops updating dribble buffer.
4033
4034         * gnus-start.el (gnus-dribble-enter): Add new argument `regexp' that
4035         deletes lines matching to it in dribble buffer.
4036
4037         * gnus-agent.el (gnus-agent-fetch-group-1):
4038         * gnus-group.el (gnus-group-update-group-line, gnus-group-make-group):
4039         * gnus-srvr.el (gnus-server-update-server, gnus-server-set-info):
4040         * gnus-start.el (gnus-group-change-level):
4041         * gnus-sum.el (gnus-summary-move-article): Delete old dribble entry.
4042
4043         * gnus-sum.el (gnus-summary-update-info): Don't update dribble buffer
4044         if newsgroup info is not changed.
4045
4046         * gnus-group.el (gnus-group-get-new-news-this-group):
4047         * gnus-sum.el (gnus-summary-read-group-1, gnus-summary-exit-no-update):
4048         Don't update dribble buffer.
4049
4050 2011-06-01  Teodor Zlatanov  <tzz@lifelogs.com>
4051
4052         * gnus-registry.el (gnus-registry-remove-ignored): New function to
4053         remove entries with groups we ignore.
4054
4055 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4056
4057         * shr.el (shr-rescale-image): Add an :ascent of 100 to images so that
4058         the underline comes at the bottom.
4059
4060 2011-05-31  Teodor Zlatanov  <tzz@lifelogs.com>
4061
4062         * gnus-registry.el (gnus-registry-article-marks-to-chars): Rename from
4063         `gnus-registry-user-format-function-M' and declare the latter obsolete.
4064         (gnus-registry-article-marks-to-names): Rename from
4065         `gnus-registry-user-format-function-M2'.
4066
4067 2011-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
4068
4069         * gnus-sum.el (gnus-summary-exit): Make sure to kill article buffer in
4070         ephemeral group.
4071
4072 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4073
4074         * shr.el (shr-browse-image): Copy the URL if called interactively.
4075
4076 2011-05-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4077
4078         * gnus-group.el (gnus-group-mark-article-read): It's possible that we
4079         want to have `gnus-newsgroup-unselected' kept sorted.  If this isn't
4080         done, then unselected articles may be marked as read.
4081
4082         * pop3.el (pop3-open-server): Erase the buffer after the greeting,
4083         since not doing this seems to lead to a race condition in pop3-logon.
4084
4085         * nnvirtual.el (nnvirtual-request-article): Bind `gnus-command-method'
4086         so that the call chain it correct when we call "upwards".
4087
4088         * gnus-sum.el (gnus-select-newsgroup): Auto-expiry doesn't make sense
4089         in read-only groups.
4090
4091         * gnus-group.el (gnus-group-mark-article-read): Ditto.
4092
4093         * message.el (message-cite-reply-position): Doc string fix.
4094
4095         * nnimap.el (nnimap-transform-headers): Simplify regexp to hopefully
4096         avoid regexp overflow.
4097         (nnimap-transform-split-mail): Ditto.
4098
4099         * pop3.el (pop3-retr): Error out if the server closes the connection.
4100
4101 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4102
4103         * mml1991.el (mml1991-mailcrypt-encrypt): Remove use of ill-designed
4104         mm-with-unibyte-current-buffer.  The buffer should not contain any
4105         multibyte chars anyway at this stage.
4106
4107 2011-05-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4108
4109         * shr.el (shr-urlify): Use shr-add-font to make underlines be less ugly
4110         at the end of lines.
4111
4112 2011-05-29  Julien Danjou  <julien@danjou.info>
4113
4114         * smiley.el (gnus-smiley-file-types): Add gif as supported file type.
4115
4116 2011-05-27  Glenn Morris  <rgm@gnu.org>
4117
4118         * gnus-group.el (gnus-bug-group-download-format-alist):
4119         Use the "maintainer" version of debian reports as well.
4120
4121 2011-05-26  Glenn Morris  <rgm@gnu.org>
4122
4123         * gnus-group.el (gnus-bug-group-download-format-alist):
4124         Use the "maintainer" version of debbugs.gnu.org reports.
4125
4126 2011-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4127
4128         * gnus-art.el (gnus-mime-delete-part): Fix mm-handle-filename usage.
4129
4130 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4131
4132         * gnus-cus.el (gnus-agent-customize-category):
4133         * gnus-delay.el (gnus-delay-send-queue):
4134         * gnus.el (gnus-other-frame):
4135         Don't quote lambda expressions with `quote'.
4136
4137 2011-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
4138
4139         * gnus-sum.el (gnus-summary-hide-thread): Fix bug where moving to hide
4140         the thread moves us backwards and so we loop forever.
4141
4142 2011-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4143
4144         * mm-bodies.el (mm-decode-content-transfer-encoding): Allow leading
4145         whitespace in base64 data lines.
4146
4147 2011-05-18  Teodor Zlatanov  <tzz@lifelogs.com>
4148
4149         * gnus-registry.el (gnus-registry-user-format-function-M):
4150         Use `mapconcat'.
4151         (gnus-registry-user-format-function-M2): Use to see the full text of
4152         the marks.  Make "," the mark text separator.
4153
4154         * nntp.el (nntp-send-authinfo): Use the "force" token for NNTP
4155         authentication with auth-source.
4156
4157 2011-05-17  Glenn Morris  <rgm@gnu.org>
4158
4159         * gnus-group.el (gnus-import-other-newsrc-file):
4160         Use insert-file-contents.
4161
4162 2011-05-16  Teodor Zlatanov  <tzz@lifelogs.com>
4163
4164         * gnus-sum.el (gnus-summary-hide-all-threads): Add update message every
4165         1000 iterations.
4166
4167 2011-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4168
4169         * nntp.el (nntp-open-connection): Check if process-type is available.
4170
4171 2011-05-16  Julien Danjou  <julien@danjou.info>
4172
4173         * shr.el (shr-tag-del): Add support for del tag.
4174
4175 2011-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4176
4177         * gnus-html.el (gnus-html-put-image): Register a displayer.
4178
4179         * shr.el (shr-image-displayer): Don't remove text props from alt text.
4180
4181 2011-05-13  Teodor Zlatanov  <tzz@lifelogs.com>
4182
4183         * registry.el (prune-factor): New initialization parameter defaulting
4184         to 0.1.
4185         (registry-prune-hard): Use it.
4186
4187         * gnus-registry.el (gnus-registry-fixup-registry): Set prune-factor to
4188         0.1 expicitly.
4189
4190 2011-05-13  Glenn Morris  <rgm@gnu.org>
4191
4192         * message.el (message-send-mail-with-sendmail): Assume sendmail-program
4193         is bound, since this function requires sendmail.
4194
4195 2011-05-11  Teodor Zlatanov  <tzz@lifelogs.com>
4196
4197         * registry.el (registry-usage-test): Disable pruning test.
4198
4199 2011-05-11  David Engster  <dengste@eml.cc>
4200
4201         * lpath.el: Bind shr-put-image and process-type for Emacs22 and XEmacs.
4202         Bind set-network-process-option for XEmacs.
4203
4204 2011-05-10  Teodor Zlatanov  <tzz@lifelogs.com>
4205
4206         * registry.el (registry-prune-hard-candidates)
4207         (registry-prune-soft-candidates): Helper methods for registry pruning.
4208         (registry-prune): Use them.  Make the sort function optional.
4209
4210 2011-05-10  Jim Meyering  <meyering@redhat.com>
4211
4212         * shr.el (shr-colorize-region): Fix typo "on on -> on".
4213
4214 2011-05-10  Julien Danjou  <julien@danjou.info>
4215
4216         * shr.el (shr-put-color-1): Do not bug out when old-props is a face
4217         symbol and not a list.
4218
4219 2011-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4220
4221         * gnus-art.el (gnus-article-mode): Move binding of
4222         shr-put-image-function here from gnus-article-prepare-display.
4223
4224         * shr.el (shr-put-image-function): New variable.
4225         (shr-image-fetched, shr-image-displayer, shr-tag-img): Funcall it.
4226         (shr-put-image): Return scaled image.
4227
4228         * gnus-art.el (gnus-shr-put-image): New function.
4229         (gnus-article-prepare-display): Bind shr-put-image-function to it.
4230
4231         * gnus-html.el (gnus-html-wash-images): Register scaled images, not
4232         original ones, as deletable.
4233
4234 2011-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4235
4236         * nntp.el (nntp-open-connection): Set TCP keepalive option.
4237
4238 2011-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
4239
4240         * registry.el (registry-full): Add convenience method.  Fix logic.
4241         (registry-insert): Use it.  Fix logic here too.
4242
4243         * gnus-registry.el (gnus-registry-insert): Add wrapper that calls
4244         `registry-prune' if `registry-full' returns t.
4245         (gnus-registry-handle-action)
4246         (gnus-registry-get-or-make-entry, gnus-registry-set-id-key)
4247         (gnus-registry-usage-test): Use it.
4248
4249 2011-05-07  Julien Danjou  <julien@danjou.info>
4250
4251         * shr.el (shr-link): Make shr-link inherit from link by default.
4252
4253 2011-05-06  Teodor Zlatanov  <tzz@lifelogs.com>
4254
4255         * shr.el (shr-urlify, shr-link): Fix shr-link face.
4256
4257 2011-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
4258
4259         * shr.el (shr-urlify, shr-link): Still broken but at least doesn't
4260         error out because the face is not a list.
4261
4262 2011-05-05  Glenn Morris  <rgm@gnu.org>
4263
4264         * proto-stream.el (gnutls-negotiate): Fix declarations.
4265
4266         * gnus-start.el (gnus-propagate-marks): Declare.
4267
4268 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
4269
4270         * registry.el (registry-reindex): Fix percentage message.
4271
4272         * proto-stream.el (network-stream-open-starttls): Adjust to call
4273         `gnutls-negotiate' with :process and :hostname arguments.
4274
4275 2011-05-03  Teodor Zlatanov  <tzz@lifelogs.com>
4276
4277         * shr.el: Add shr-link face for links.
4278         (shr-urlify): Use it.
4279
4280         * registry.el (registry-insert): Make error message more helpful.
4281
4282 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4283
4284         * gnus-html.el (gnus-html-schedule-image-fetching):
4285         Use url-queue-retrieve, if it exists.
4286
4287         * shr.el (shr-tag-img): Ditto.
4288
4289         * gnus.el: Autoload more gnus-agent functions.
4290
4291         * gnus-art.el (gnus-request-article-this-buffer): Store articles in the
4292         agent if we haven't already (bug#8502).
4293
4294         * gnus-async.el (gnus-async-article-callback): Put prefetched articles
4295         into the Agent, too.
4296
4297         * gnus-agent.el (gnus-agent-store-article): New function.
4298
4299         * nnheader.el (nnheader-insert-buffer-substring): Rename from nntp-
4300         and moved from that file for reuse.
4301
4302         * pop3.el (pop3-open-server): Error messages are "-ERR".
4303
4304 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4305
4306         * pop3.el (pop3-open-server): Upgrade opportunistically to STARTTLS.
4307         (open-tls-stream): Remove superfluous tls/starttls autoloads.
4308
4309 2011-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4310
4311         * gnus.el: No Gnus v0.17 is released.
4312
4313 2011-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4314
4315         * gnus-sum.el (gnus-summary-next-article): Don't bug out if the summary
4316         buffer has moved to a different frame.
4317
4318 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4319
4320         * nnimap.el (nnimap-request-article): Use nntp-insert-buffer-substring
4321         to get the conversion from unibyte to multibyte buffers to work on
4322         Emacs 22.
4323
4324         * nntp.el (nntp-request-article): Slight clean-up.
4325
4326 2011-04-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4327
4328         * shr.el (shr-strike-through): New face.
4329         (shr-tag-s): Use it to provide <s> support.
4330         (shr-tag-s): Remove duplicate definition.
4331
4332 2011-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
4333
4334         * gnus-registry.el (gnus-registry-ignore-group-p): Don't call
4335         `gnus-parameter-registry-ignore' if the *Group* buffer doesn't exist.
4336
4337 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
4338
4339         * proto-stream.el (proto-stream-open-starttls): Give host parameter to
4340         `gnutls-negotiate'.
4341         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
4342
4343 2011-04-23  Glenn Morris  <rgm@gnu.org>
4344
4345         * gnus-sum.el (gnus-extra-headers): Bump :version.
4346
4347 2011-04-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4348
4349         * shr.el (shr-tag-sup): New function.
4350         (shr-tag-sub): Ditto.
4351
4352 2011-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
4353
4354         * gnus-registry.el (gnus-registry-ignore-group-p): Test specifically
4355         for the case where `gnus-registry-ignored-groups' is a list of lists,
4356         and don't call `gnus-parameter-registry-ignore' otherwise.
4357
4358 2011-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
4359
4360         * nnimap.el (nnimap-user): New backend variable.
4361         (nnimap-open-connection-1): Use it.
4362         (nnimap-credentials): Accept user parameter so it's explicit what user
4363         name is desired.
4364
4365         * gnus-sum.el (gnus-extra-headers): Add Keywords, Cc, and Gcc to
4366         default.
4367
4368         * gnus.el (gnus-registry-ignored-groups): Provide default in gnus.el,
4369         not gnus-registry.el.
4370
4371         * gnus-registry.el: Mention in comments how to modify
4372         `gnus-extra-headers' for proper recipient tracking and that it may
4373         already have To and Cc recently, which it does as of this commit.
4374         (gnus-registry-ignored-groups): Remove defcustom.
4375         Explain why in comments.
4376         (gnus-registry-action): Fix data-header reference to use the extra
4377         headers.  Explain in package commentary how to add To and Cc headers to
4378         the gnus-extra-headers.
4379         (gnus-registry-ignored-groups): Adjust defaults to match the parameter.
4380         (gnus-registry-ignore-group-p): Adjust to take either a group/topic
4381         parameter list or a string list in `gnus-registry-ignored-groups'.
4382         Fix logic error.
4383
4384 2011-04-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4385
4386         * shr.el (shr-expand-url): Protect against null urls.
4387
4388 2011-04-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4389
4390         * shr.el (shr-base): New binding.
4391         (shr-tag-base): Keep track of <base>.
4392         (shr-expand-url): New function used throughout.
4393
4394 2011-04-20  Teodor Zlatanov  <tzz@lifelogs.com>
4395
4396         * gnus-registry.el
4397         (gnus-registry--split-fancy-with-parent-internal): Fix loop bugs.
4398         (gnus-registry-ignored-groups): New variable.
4399         (gnus-registry-ignore-group-p): Use it.
4400         (gnus-registry-handle-action): Use `gnus-registry-ignore-group-p' and
4401         set the destination group to nil (same as delete) if it's ignored.
4402
4403 2011-04-20  David Engster  <dengste@eml.cc>
4404
4405         * tests/gnustest-nntp.el: New file for simple NNTP testing.
4406
4407         * Makefile.in (test-nntp): New rule.
4408         (check): Add it.
4409         (test-registry): Change '$(EMACS_COMP)' to '$(EMACS) $(FLAGS)'.
4410
4411 2011-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4412
4413         * gnus-registry.el (gnus-registry-action)
4414         (gnus-registry-fetch-header-fast):
4415         Don't use mail-header that looks an internal function of mailheader.el.
4416
4417 2011-04-19  Glenn Morris  <rgm@gnu.org>
4418
4419         * time-date.el (time-to-days): Remove unused local variables.
4420
4421 2011-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4422
4423         * gnus-registry.el: Eliminate cl functions.
4424         (gnus-registry-sort-addresses): New function that replaces mapcan.
4425         (gnus-registry-action, gnus-registry-spool-action)
4426         (gnus-registry-split-fancy-with-parent)
4427         (gnus-registry-fetch-recipients-fast): Use it.
4428         (gnus-registry-import-eld): Replace delete* with dolist + delq.
4429
4430         * registry.el (initialize-instance, registry-lookup)
4431         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
4432         (registry-lookup-secondary-value, registry-search, registry-delete)
4433         (registry-insert, registry-reindex, registry-size, registry-prune):
4434         Use eval-and-compile.
4435
4436 2011-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
4437
4438         * registry.el (registry-reindex): New method to recreate the secondary
4439         registry indices.
4440
4441         * gnus-registry.el (gnus-registry-fixup-registry): Use it if the
4442         tracked field changes.
4443         (gnus-registry-unfollowed-addresses, gnus-registry-track-extra)
4444         (gnus-registry-action, gnus-registry-spool-action)
4445         (gnus-registry-handle-action)
4446         (gnus-registry--split-fancy-with-parent-internal)
4447         (gnus-registry-split-fancy-with-parent)
4448         (gnus-registry-register-message-ids): Add recipient tracking on spool,
4449         move, and delete actions, and for fancy splitting with parent.
4450         (gnus-registry-extract-addresses)
4451         (gnus-registry-fetch-recipients-fast)
4452         (gnus-registry-fetch-header-fast): Convenience functions.
4453         (gnus-registry-misc-test): ERT test of
4454         `gnus-registry-extract-addresses'.
4455
4456 2011-04-15  Teodor Zlatanov  <tzz@lifelogs.com>
4457
4458         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
4459         Track by subject first, then sender.
4460
4461 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4462
4463         * message.el (message-bogus-system-names): Replace ^...$ => \`...\'.
4464
4465         * gnus.el (gnus-splash-svg-color-symbols): Don't use insert-file from
4466         Lisp.
4467
4468         * gnus-draft.el (gnus-draft-setup): New arg `dont-pop'.
4469         (gnus-draft-send): Use it to avoid popping
4470         up frames from gnus-group-send-queue.
4471
4472 2011-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
4473
4474         * gnus-registry.el: Updated gnus-registry docs.
4475
4476 2011-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
4477
4478         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
4479         Fix logic bug.
4480         (gnus-registry-post-process-groups): Fix logging of no results and
4481         quote sender and subject.
4482
4483 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4484
4485         * proto-stream.el (proto-stream-open-starttls): Only do opportunistic
4486         STARTTLS upgrades if we have built-in gnutls support.  Upgrades via
4487         gnutls-cli are too slow to be done opportunistically.
4488
4489         * gnus-start.el (gnus-get-unread-articles): Slight cleanup.
4490         (gnus-read-active-for-groups): Don't try to finish getting stuff where
4491         we had no early-data returned.
4492         (gnus-get-unread-articles): Add a sanity check so that we don't issue
4493         two async commands to the same server at the same time.
4494
4495 2011-04-12  Stig Sandbeck Mathisen  <ssm@fnord.no>  (tiny change)
4496
4497         * gnus-sum.el (gnus-summary-select-article-buffer): Doc fix.
4498
4499 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4500
4501         * gnus-registry.el (gnus-registry-remake-db): Put the warning on a
4502         "warning" level.
4503
4504         * mm-url.el (mm-url-package-name): Remove to ease third-party reuse.
4505         (mm-url-insert-file-contents): Don't set the package names.
4506
4507 2011-04-11  Teodor Zlatanov  <tzz@lifelogs.com>
4508
4509         * gnus-registry.el (gnus-registry-action): Remove properties and
4510         simplify subject in `gnus-registry-handle-action'.
4511         (gnus-registry-spool-action): Get subject and sender from message if
4512         they are not passed in.
4513         (gnus-registry-handle-action): Remove properties and simplify subject
4514         consistently.
4515
4516 2011-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4517
4518         * registry.el: Require CL before using defmacro*.
4519
4520 2011-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4521
4522         * gnus-art.el (article-treat-date): Assume that
4523         gnus-article-date-headers may be a group parameter.
4524
4525 2011-04-07  Teodor Zlatanov  <tzz@lifelogs.com>
4526
4527         * gnus-registry.el (gnus-registry-handle-action): More debugging.
4528
4529         * gnus-start.el (gnus-gnus-to-newsrc-format): Add a way to run
4530         interactively so the newsrc file can contain foreign groups too.
4531         Useful for debugging but not much for users.
4532
4533 2011-04-07  David Engster  <dengste@eml.cc>
4534
4535         * registry.el (registry-usage-test): Only do
4536         `registry-lookup-breaks-before-lexbind' testing for Emacs24 with
4537         lexical binding.
4538
4539 2011-04-07  David Engster  <dengste@eml.cc>
4540
4541         * Makefile.in (check, test-registry): New rules for test-suite.
4542
4543 2011-04-06  David Engster  <dengste@eml.cc>
4544
4545         * registry.el, gnus-registry.el: Use `ignore-errors' instead of third
4546         argument NOERROR for `require', since XEmacs 21.4 does not support it.
4547
4548 2011-04-06  David Engster  <dengste@eml.cc>
4549
4550         * registry.el (initialize-instance): Change :after to :AFTER to be
4551         compatible with old EIEIO version in XEmacs.
4552
4553 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
4554
4555         * gnus-registry.el (gnus-registry-post-process-groups)
4556         (gnus-registry--split-fancy-with-parent-internal): Fix splitting bugs
4557         and provide better messaging.
4558
4559 2011-04-06  David Engster  <dengste@eml.cc>
4560
4561         * Makefile.in (fail-on-warning): New rule to compile with warnings as
4562         errors.
4563
4564         * dgnushack.el (dgnushack-compile-error-on-warn): New function to call
4565         dgnushack-compile with error-on-warn enabled, and to signal an error if
4566         clean compilation failed.
4567         (dgnushack-compile): New argument 'error-on-warn'.  If non-nil, compile
4568         with `byte-compile-error-on-warn'.  Return nil if errors occured.
4569
4570 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
4571
4572         * gnus-registry.el: Don't use ERT if it's not available.  Load it
4573         unconditionally anyway, discarding errors.
4574         (gnus-registry-delete-entries): New convenience function.
4575         (gnus-registry-import-eld): Import from old .eld registry.
4576
4577         * registry.el: Don't use ERT if it's not available.  Load it
4578         unconditionally anyway, discarding errors.
4579
4580         * proto-stream.el (gnutls-negotiate): Revert inadvertent commit of the
4581         version from the Claudio Bley GnuTLS patch (extra optional parameters
4582         and host name).
4583
4584 2011-04-05  Teodor Zlatanov  <tzz@lifelogs.com>
4585
4586         * gnus-registry.el (gnus-registry-fixup-registry): New function to
4587         fixup the parameters that can be customized by the user between
4588         save/read cycles.
4589         (gnus-registry-read): Use it.
4590         (gnus-registry-make-db): Use it.
4591         (gnus-registry-spool-action, gnus-registry-handle-action):
4592         Fix messaging.
4593         (gnus-registry--split-fancy-with-parent-internal): Fix loop.
4594         Map references to actual group names with sender and subject tracking.
4595         (gnus-registry-post-process-groups): Use `cond' for better messaging.
4596         (gnus-registry-usage-test): Add subject lookup test.
4597
4598         * registry.el (registry-db, initialize-instance): Set up constructor
4599         instead of :initform arguments for the sake of older Emacsen.
4600         (registry-lookup-breaks-before-lexbind): New method to demonstrate
4601         pre-lexbind merge bug.
4602         (registry-usage-test): Use it.
4603         (initialize-instance, registry-db): Move the non-function initforms
4604         back to the class definition.
4605
4606 2011-04-03  Teodor Zlatanov  <tzz@lifelogs.com>
4607
4608         * registry.el: New library to manage gnus-registry-style data.
4609
4610         * gnus-registry.el: Use it (major rewrite).
4611
4612         * nnregistry.el: Use it.
4613
4614         * spam.el: Use it.
4615
4616 2011-04-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4617
4618         * gnus-sum.el (gnus-update-marks): Reinstate the code to not alter
4619         marks on non-selected articles.
4620
4621 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
4622
4623         * nnimap.el (nnimap-open-connection-1): Pass explicit :end-of-command
4624         parameter to open-protocol-stream.
4625
4626 2011-04-01  Julien Danjou  <julien@danjou.info>
4627
4628         * mm-view.el (mm-display-inline-fontify): Do not fontify with
4629         fundamental-mode.
4630
4631 2011-04-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4632
4633         * gnus-start.el (gnus-get-unread-articles): Don't try to contact denied
4634         servers.
4635
4636 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4637
4638         * gnus-sum.el (gnus-update-marks): Revert intersection change, which
4639         made marks not propagate, again.
4640
4641 2011-03-30  Chong Yidong  <cyd@stupidchicken.com>
4642
4643         * proto-stream.el (open-protocol-stream): Bring back `network' type.
4644         Make this the default type.
4645         (proto-stream-open-plain): Rename from proto-stream-open-default.
4646         (open-protocol-stream, proto-stream-open-starttls)
4647         (proto-stream-open-tls, proto-stream-open-shell): Replace `default'
4648         with `plain'.
4649
4650         * nnimap.el (nnimap-stream, nnimap-open-connection-1): Accept `network'
4651         value.
4652
4653         * nntp.el (nntp-open-connection-function): Document the fact that some
4654         values are not functions but are instead handled specially.
4655         Recognize nntp-open-plain-stream value.
4656         (nntp-open-connection): Recognize that value.
4657
4658 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4659
4660         * dgnushack.el: Only do the defcustom compilation thing on XEmacs,
4661         where it seems to be needed.
4662
4663 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4664
4665         * gssapi.el (open-gssapi-stream): Remove the last mentions of the IMAP
4666         stuff.
4667
4668         * gnus-score.el (gnus-score-string): Fix calling convention of
4669         `gnus-simplify-buffer-fuzzy' after last patches.
4670
4671         * gnus-sum.el (gnus-update-marks): Don't send any marks updates to the
4672         server for articles we didn't get any headers for.  This is a sanity
4673         check.
4674
4675 2011-03-29  Michael Welsh Duggan  <md5i@md5i.com>
4676
4677         * nnimap.el (nnimap-open-connection-1): Is the login responds with a
4678         new CAPABILITY, use it.
4679
4680 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4681
4682         * gnus-agent.el (gnus-agent-fetch-headers): Don't message if we're not
4683         downloading anything.
4684
4685         * gnus.el (gnus-splash-svg-color-symbols): Remove superfluous `and'.
4686
4687 2011-03-29  Adam Sjøgren  <asjo@koldfront.dk>
4688
4689         * gnus.el (gnus-group-startup-message): Prefer svg file and replace
4690         colors.
4691         (gnus-splash-svg-color-symbols): New function.
4692
4693 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4694
4695         * gnus-sum.el (gnus-simplify-buffer-fuzzy): Take the regexp explicitly
4696         instead of using the global gnus-simplify-subject-fuzzy-regexp.
4697         (gnus-simplify-subject-fuzzy): Use the local
4698         gnus-simplify-subject-fuzzy-regex instead of the global one.
4699         This makes using this variable in group parameters work.
4700
4701 2011-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
4702
4703         * gnus-registry.el (gnus-registry-unfollowed-groups):
4704         Add "archive:sent" to the unfollowed group regex (for the recent Gnus
4705         archive:sent-YYYY-MM-DD groups).
4706         (gnus-registry-split-fancy-with-parent): Bail out early in sender
4707         tracking if there are more than `gnus-registry-max-track-groups'
4708         matches.
4709
4710 2011-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4711
4712         * message.el (message--yank-original-internal): New function to do the
4713         insertion cleanly inside eval in `message-yank-original'.
4714         (message-yank-original): Use it.
4715
4716 2011-03-29  Julien Danjou  <julien@danjou.info>
4717
4718         * mm-view.el (mm-display-inline-fontify): Use `set-normal-mode' with
4719         local variables disabled rather than `normal-mode'.
4720
4721 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
4722
4723         * imap.el (imap-shell-open, imap-process-connection-type):
4724         Use imap-process-connection-type for 'shell' streams as well as
4725         Kerberos, SSL, other subprocesses.
4726
4727 2011-03-26  Chong Yidong  <cyd@stupidchicken.com>
4728
4729         * proto-stream.el: Changes preparatory to merging open-protocol-stream
4730         with open-network-stream.
4731         (proto-stream-always-use-starttls): Option removed.
4732         (open-protocol-stream): Return a process object by default.  Provide a
4733         new parameter :return-list specifying a list-type return value, which
4734         now has the form (PROP . PLIST) instead of a fixed-length list.  Change
4735         :type `network' to `try-starttls', and `network-only' to `default'.
4736         Make `default' the default, for compatibility with open-network-stream.
4737         Handle the no-parameter case exactly as open-network-stream, with no
4738         additional stream processing.  Search plists using plist-get.
4739         Explicitly add :end-of-commend parameter if it is missing.
4740         (proto-stream-open-default): Rename from
4741         proto-stream-open-network-only.  Return 'default as the type.
4742         (proto-stream-open-starttls): Rename from proto-stream-open-network.
4743         Use plist-get.  Don't return `tls' as the type if STARTTLS negotiation
4744         failed.  Always return a list with a (possibly dead) process as the
4745         first element, for compatibility with open-network-stream.
4746         (proto-stream-open-tls): Use plist-get.  Always return a list.
4747         (proto-stream-open-shell): Return `default' as connection type.
4748         (proto-stream-capability-open): Use plist-get.
4749         (proto-stream-eoc): Function deleted.
4750
4751         * nnimap.el (nnimap-stream, nnimap-open-connection)
4752         (nnimap-open-connection-1): Handle renaming of :type parameter for
4753         open-protocol-stream.
4754         (nnimap-open-connection-1): Pass a :return-list parameter
4755         open-protocol-stream to obtain a list return value.  Parse this list
4756         using plist-get.
4757
4758         * nntp.el (nntp-open-connection): Handle renaming of :type parameter
4759         for open-protocol-stream.  Accept open-protocol-stream return value
4760         that is a subprocess object instead of a list.  Handle the case of a
4761         dead returned process.
4762
4763 2011-03-25  Teodor Zlatanov  <tzz@lifelogs.com>
4764
4765         * mm-util.el (mm-handle-filename): Move to mm-decode.el (bug#8330).
4766
4767         * mm-decode.el (mm-handle-filename): Move from mm-util.el (bug#8330).
4768
4769 2011-03-21  Julien Danjou  <julien@danjou.info>
4770
4771         * mm-view.el (mm-display-inline-fontify): Make mode optional, and call
4772         normal-mode if not set.  Set temp buffer unmodified to avoid kill-buffer
4773         query.
4774         (mm-inline-text): Render normal text with fontification whenever
4775         possible.
4776
4777         * gnus-sum.el (gnus-summary-save-parts-1):
4778         * gnus-art.el (gnus-article-browse-html-save-cid-content)
4779         (gnus-article-browse-html-parts, gnus-mime-delete-part)
4780         (gnus-mime-copy-part, gnus-mime-inline-part, gnus-insert-mime-button):
4781         Use `mm-handle-filename'.
4782
4783         * mm-util.el (mm-handle-filename): New function, return the filename of
4784         an handle.
4785
4786 2011-03-18  Julien Danjou  <julien@danjou.info>
4787
4788         * gnus-util.el (gnus-buffer-live-p): Simplify gnus-buffer-live-p.
4789         (gnus-buffer-live-p): Check that buffer is not nil.
4790
4791 2011-03-17  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4792
4793         * gnus.el: No Gnus v0.15 is released.
4794
4795 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4796
4797         * time-date.el (format-seconds): Use assoc instead of assoc-string to
4798         avoid warning on XEmacs.
4799
4800         * dgnushack.el: Bind help-echo-owns-message to avoid a compiler warning
4801         on XEmacs.
4802
4803         * gnus-art.el: Require mouse, which the build bot seems to say is
4804         needed.
4805
4806         * dgnushack.el: Define url-retrieve-synchronously unless not defined.
4807
4808         * gravatar.el (gravatar-retrieve-synchronously): Use `url-retrieve' on
4809         XEmacs, since it doesn't have url-retrieve-synchronously.
4810
4811         * time-date.el (format-seconds): Use assoc instead of assoc-string,
4812         since assoc-string doesn't exist in XEmacs.
4813
4814 2011-03-17  Antoine Levitt  <antoine.levitt@gmail.com>
4815
4816         * gnus-group.el (gnus-group-list-ticked): New function.
4817         (gnus-group-make-menu-bar): Provide a menu entry for it.
4818         (gnus-group-list-map): Provide a binding for it.
4819
4820 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4821
4822         * shr.el (shr-visit-file): New command.
4823
4824         * nnimap.el (nnimap-fetch-inbox): Rewrite slightly last patch.
4825
4826 2011-03-17  Bjørn Mork  <bjorn@mork.no>
4827
4828         * nnimap.el (nnimap-fetch-inbox): Don't download bodies on ver4-capable
4829         servers.
4830
4831 2011-03-16  Julien Danjou  <julien@danjou.info>
4832
4833         * mm-uu.el (mm-uu-dissect-text-parts): Only dissect handle that are
4834         inline.
4835
4836         * gnus-art.el (article-hide-list-identifiers):
4837         Use gnus-group-get-list-identifiers.
4838
4839         * gnus-sum.el (gnus-group-get-list-identifiers): New function.
4840         (gnus-summary-remove-list-identifiers):
4841         Use gnus-group-get-list-identifiers to get regexp.
4842         (gnus-select-newsgroup, gnus-summary-insert-subject)
4843         (gnus-summary-insert-articles):
4844         Call gnus-summary-remove-list-identifiers unconditionally.
4845
4846 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4847
4848         * gnus-sum.el (gnus-articles-to-read): Revert back to old behavior if
4849         we're selecting a group with unread articles.
4850
4851         * nnimap.el (nnimap-open-connection-1): Allow `network-only', too.
4852
4853         * gssapi.el: New file separated out from imap.el to provide a general
4854         Kerberos 5 connection facility for Emacs.
4855
4856         * message.el (message-elide-ellipsis): Document the format spec
4857         ellipsis.
4858
4859 2011-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
4860
4861         * message.el (message-elide-region): Allow the ellipsis to say how many
4862         lines were removed.
4863
4864 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4865
4866         * gnus-win.el (gnus-configure-frame): Protect against trying to restore
4867         window configurations containing buffers that are now dead.
4868
4869         * nnimap.el (nnimap-parse-flags): Remove all MODSEQ entries before
4870         parsing to avoid integer overflows.
4871         (nnimap-parse-flags): Simplify the last change.
4872         (nnimap-parse-flags): Store HIGHESTMODSEQ as a string, since it may be
4873         too large for 32-bit Emacsen.
4874
4875 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4876
4877         * auth-source.el (auth-source-netrc-create):
4878         * message.el (message-yank-original): Fix use of `case'.
4879
4880 2011-03-15  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
4881
4882         * gnus-art.el (gnus-article-treat-body-boundary): Fix boundary width on
4883         XEmacs, which was one character too wide.
4884
4885 2011-03-09  Antoine Levitt  <antoine.levitt@gmail.com>
4886
4887         * gnus-sum.el (gnus-articles-to-read): Use gnus-large-newsgroup as
4888         default number of articles to display.
4889         (gnus-articles-to-read): Use pretty names for prompt.
4890
4891 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4892
4893         * gnus-int.el (gnus-open-server): Ditto.
4894
4895         * gnus-start.el (gnus-activate-group): Give a backtrace if
4896         debug-on-quit is set and the user hits `C-g'.
4897         (gnus-read-active-file): Ditto.
4898
4899         * gnus-group.el (gnus-group-read-ephemeral-group): Ditto.
4900
4901 2011-03-15  Teodor Zlatanov  <tzz@lifelogs.com>
4902
4903         * message.el (message-yank-original): Use cond instead of CL case.
4904
4905 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4906
4907         * auth-source.el (auth-source-netrc-create): Use usual format for the
4908         default in prompts.
4909
4910 2011-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4911
4912         * lpath.el: Fbind read-char-choice for XEmacs.
4913
4914 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
4915
4916         * auth-source.el (auth-source-netrc-create): Show the default in the
4917         prompt when prompting for token creation.
4918
4919 2011-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
4920
4921         * auth-source.el (auth-source-format-prompt): Always convert the value
4922         to a string to avoid evaluating non-string arguments.
4923         (auth-source-netrc-create): Offer default properly, not as initial
4924         content in `read-string'.
4925         (auth-source-netrc-saver): Use a cache keyed by file name and MD5 hash
4926         of line to determine if we've been run before.  If so, don't run again,
4927         but print a trivial message to indicate the cache was hit instead.
4928
4929 2011-03-11  Teodor Zlatanov  <tzz@lifelogs.com>
4930
4931         * gnus-sync.el (gnus-sync-install-hooks, gnus-sync-unload-hook):
4932         Don't install `gnus-sync-read' to any hooks by default.  It's buggy.
4933         The user will have to run `gnus-sync-read' manually and wait for Cloudy
4934         Gnus.
4935
4936 2011-03-11  Julien Danjou  <julien@danjou.info>
4937
4938         * mm-uu.el (mm-uu-type-alist): Add support for diff starting with "===
4939         modified file".
4940
4941 2011-03-09  Teodor Zlatanov  <tzz@lifelogs.com>
4942
4943         * auth-source.el (auth-source-read-char-choice): New function to read a
4944         character choice using `dropdown-list', `read-char-choice', or
4945         `read-char'.  It appends "[a/b/c] " to the prompt if the choices were
4946         '(?a ?b ?c).  The `dropdown-list' support is disabled for now.  Use
4947         `eval-when-compile' to load `dropdown-list'.  Remove `dropdown-list'.
4948         (auth-source-netrc-saver): Use it.
4949         (auth-source-pick-first-password): New convenience function.
4950
4951 2011-03-08  Teodor Zlatanov  <tzz@lifelogs.com>
4952
4953         * nnimap.el (nnimap-credentials): Keep the :save-function as the third
4954         parameter in the credentials.
4955         (nnimap-open-connection-1): Use it after a successful login.
4956         (nnimap-credentials): Add IMAP-specific user and password prompt.
4957
4958         * auth-source.el (auth-source-search): Add :require parameter, taking a
4959         list.  Document it and the :save-function return token.  Pass :require
4960         down.  Change the CREATED message from a warning to a debug statement.
4961         (auth-source-search-backends): Pass :require down.
4962         (auth-source-netrc-search): Pass :require down.
4963         (auth-source-netrc-parse): Use :require, if it's given, as a filter.
4964         Change save prompt to indicate all modifications saved here are
4965         deletions.
4966         (auth-source-netrc-create): Take user login name as default in user
4967         prompt.  Move all the save functionality to a lexically bound function
4968         under the :save-function token in the returned list.  Set up clearer
4969         default prompts for user, host, port, and secret.
4970         (auth-source-netrc-saver): New function, intended to be wrapped for
4971         :save-function.
4972
4973 2011-03-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4974
4975         * shr.el (shr-table-horizontal-line): Change the defaults for the table
4976         lines to be spaces instead.
4977
4978 2011-03-07  Julien Danjou  <julien@danjou.info>
4979
4980         * sieve-manage.el (sieve-sasl-auth): Create auth-info if not found.
4981         (sieve-sasl-auth): Check that auth-source-search did return something,
4982         or just return an empty string.
4983
4984 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
4985
4986         * gnus.el (gnus-interactive): Use read-directory-name.
4987
4988         * gnus-uu.el (gnus-uu-decode-uu-and-save)
4989         (gnus-uu-decode-unshar-and-save, gnus-uu-decode-save)
4990         (gnus-uu-decode-binhex, gnus-uu-decode-yenc)
4991         (gnus-uu-decode-save-view, gnus-uu-decode-postscript-and-save):
4992         Likewise.
4993
4994         * gnus-group.el (gnus-group-make-directory-group): Likewise.
4995
4996 2011-03-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4997
4998         * gnus-start.el (gnus-group-change-level): Allow putting foreign groups
4999         onto the list of killed groups, too.  This makes killed nnimap groups,
5000         for instance, more reliably not reappear.
5001
5002         * nnimap.el (nnimap-request-thread): Don't bug out when we can't find
5003         the parent.
5004
5005         * gnus-sum.el (gnus-update-read-articles): Fix typo.
5006
5007         * gnus.el (gnus-valid-select-methods): Mark nnimap as a backend that
5008         really have server-side marks.
5009
5010         * gnus-sum.el (gnus-propagate-marks): Change default back to nil again,
5011         since most backends do not usefully have server-side marks.
5012         (gnus-update-read-articles): Propagate marks to all backends that
5013         really have server-side marks.
5014
5015 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
5016
5017         * message.el (message-cite-reply-position, message-cite-style):
5018         New variables.
5019         (message-yank-original): Use the new citation styles.
5020
5021 2011-03-04  Daiki Ueno  <ueno@unixuser.org>
5022
5023         * message.el (message-options): Revert 22da67af (workaround for XEmacs
5024         buffer-local issue); don't mark it buffer-local when running under
5025         XEmacs.
5026
5027 2011-03-03  Tassilo Horn  <tassilo@member.fsf.org>
5028
5029         * nnimap.el (nnimap-parse-flags): Add a workaround for FETCH lines with
5030         numbers too big to be `read'.
5031
5032 2011-03-02  Teodor Zlatanov  <tzz@lifelogs.com>
5033
5034         * password-cache.el (password-in-cache-p): Add autoload.
5035
5036         * message.el (message-options): Make buffer-local two ways to attempt
5037         to fix a XEmacs bug.
5038
5039 2011-03-02  Julien Danjou  <julien@danjou.info>
5040
5041         * gnus-art.el (gnus-with-article-buffer): Fix buffer live check.
5042
5043 2011-03-01  Julien Danjou  <julien@danjou.info>
5044
5045         * gnus-art.el (list-identifier): Add list-identifier as a parameter
5046         group.
5047         (article-hide-list-identifiers): Use list-identifier group parameter.
5048
5049 2011-02-28  Julien Danjou  <julien@danjou.info>
5050
5051         * sieve.el (sieve-buffer-script-name): New local variable to store
5052         sieve script name.
5053         (sieve-edit-script): Store sieve script name.
5054         (sieve-upload): Use sieve script name when uploading.
5055         (sieve-upload): Use substitute-command-keys.
5056         (sieve-edit-script): Use substitute-command-keys.
5057         (sieve-refresh-scriptlist): Use substitute-command-keys.
5058         (sieve-manage-mode-map): Define keymap properly.
5059         (sieve-manage-mode): Do not set mode name manually, change mode-name to
5060         (sieve-refresh-scriptlist): Use substitute-command-keys."Sieve-manage".
5061         Remove commented code about cvs.
5062         (sieve-manage-quit): New function.
5063         (sieve-manage-mode-map): Bind 'q' to sieve-manage-quit.
5064
5065 2011-02-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5066
5067         * gnus-group.el (gnus-import-other-newsrc-file): New function.
5068
5069 2011-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
5070
5071         * auth-source.el (auth-source-search): Cache empty result sets.
5072
5073         * password-cache.el (password-in-cache-p): Convenience function to
5074         check if a key is in the cache, even if the value is nil.
5075
5076         * auth-source.el (auth-source-save-behavior): New variable to replace
5077         `auth-source-never-create'.
5078         (auth-source-netrc-create): Use it.
5079         (auth-source-never-save): Remove.
5080
5081 2011-02-25  Lars Ingebrigtsen  <larsi@gnus.org>
5082
5083         * nnimap.el (nnimap-stream): Doc fix.
5084         (nnimap-open-connection-1): Reverse the order of the ports to that the
5085         prompted-for port is first.
5086
5087         * gnus-start.el (gnus-get-unread-articles): Don't clobber the async
5088         retrieval by the no-group selection.
5089
5090         * gnus-demon.el (gnus-demon-init): run-with-timer should be called with
5091         numerical parameters.
5092
5093 2011-02-25  Julien Danjou  <julien@danjou.info>
5094
5095         * gnus-gravatar.el: Use gnus-with-article-buffer.
5096
5097         * gnus-art.el (gnus-with-article-buffer): Check that the
5098         gnus-article-buffer is alive.
5099
5100 2011-02-24  Teodor Zlatanov  <tzz@lifelogs.com>
5101
5102         * auth-source.el (auth-source-creation-prompts): New variable to manage
5103         creation-time prompts.
5104         (auth-source-search): Document it.
5105         (auth-source-format-prompt): Add utility function.
5106         (auth-source-netrc-create): Don't default the user name to
5107         user-login-name.  Use `auth-source-creation-prompts' and some default
5108         prompts for user, host, port, and password (the default generic prompt
5109         remains ugly).
5110         (auth-source-never-save): Add customizable option to never save info.
5111         (auth-source-netrc-create): Use it and improve save prompts.  Fix help
5112         mode excursion.
5113
5114 2011-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5115
5116         * auth-source.el (auth-source-netrc-create): Use `read-char' with no
5117         argument that XEmacs doesn't support.
5118
5119         * dgnushack.el (dgnushack-compile): Exclude color.el from being
5120         compiled for Emacsen having no `libxml-parse-html-region' support.
5121
5122         * gnus-xmas.el (gnus-xmas-define): Remove gnus-x-color-values.
5123
5124         * lpath.el: Bind buffer-save-without-query for XEmacs.
5125
5126 2011-02-23  Julien Danjou  <julien@danjou.info>
5127
5128         * gnus-art.el (article-make-date-line): Ignore errors if time is
5129         invalid and not convertible.
5130         (article-make-date-line): Only add lapsed time if time is not nil.
5131
5132 2011-02-23  Teodor Zlatanov  <tzz@lifelogs.com>
5133
5134         * auth-source.el (auth-source-netrc-create): Use `read-char' instead of
5135         `read-char-choice' for backwards compatibility.
5136         (auth-source-netrc-element-or-first): New function to DTRT for
5137         parameter extraction.
5138         (auth-source-netrc-create): Use it and fix multiple parameter print
5139         bug.  Use the default passed from above (given-default) or the
5140         built-in (user-login-name for :user).
5141
5142 2011-02-23  Lars Ingebrigtsen  <larsi@gnus.org>
5143
5144         * gnus-start.el (gnus-dribble-read-file):
5145         Set buffer-save-without-query, since we always want to save the dribble
5146         file, probably.
5147
5148         * nnmail.el (nnmail-article-group): Allow a final "" split to work on
5149         nnimap.
5150
5151         * gnus-sum.el (gnus-user-date-format-alist): Rename back again from
5152         -summary- since it's a user-visible variable.
5153
5154         * nnimap.el (nnimap-retrieve-group-data-early): Don't do QRESYNC the
5155         first time you use the new Gnus.
5156
5157 2011-02-22  Teodor Zlatanov  <tzz@lifelogs.com>
5158
5159         * auth-source.el: Don't load netrc.el.
5160         (auth-sources): Search ~/.netrc as well by default.
5161         (auth-source-debug): Add 'trivia option for extra output.
5162         (auth-source-do-trivia): Use it.
5163         (auth-source-search): Simplify logic to use
5164         `auth-source-search-backends'.  Use `auth-source-do-trivia' where
5165         appropriate.  Don't keep a running count at this level.  Layer :create
5166         and :delete options appropriately on the first and second passes.
5167         Don't track the backend with the search results.
5168         (auth-source-search-backends): New function to search a list of
5169         backends for a processed spec.
5170         (auth-source-netrc-parse): Cache all netrc files, making
5171         auth-source-netrc-cache an alist keyed by the file name and using the
5172         file mtime as the caching criterion.  Keep the obfuscated data secret
5173         with a lexical bind.
5174         (auth-source-netrc-search): Don't calculate the length of the results
5175         unnecessarily.
5176         (auth-source-search-backends): Fix bug.
5177         (auth-source-netrc-create): Rework prompts.
5178
5179 2011-02-22  Andrew Cohen  <cohen@andy.bu.edu>
5180
5181         * nnir.el (nnir-imap-search-arguments,nnir-imap-default-search-key):
5182         Lower case names of search constraints.
5183         (nnir-run-query): Cache and reuse search constraints for all imap
5184         servers.
5185
5186 2011-02-22  Lars Ingebrigtsen  <larsi@gnus.org>
5187
5188         * gnus-msg.el (gnus-inews-add-send-actions): Restore the winconf name
5189         after exit.
5190         (gnus-setup-message): Define missing variable from last checkin.
5191
5192         * gnus-sum.el (gnus-summary-show-article): When called with t as the
5193         value, show the raw article.
5194
5195 2011-02-22  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5196
5197         * gnus.el: No Gnus v0.13 is released.
5198
5199 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5200
5201         * nnimap.el (nnimap-open-connection-1): Revert last change, since
5202         auth-source now accepts numbers.
5203
5204         * auth-source.el (auth-source-netrc-parse): Accept a number as the port
5205         spec, too.
5206         (auth-source-ensure-strings): New function.
5207
5208         * gnus-art.el (gnus-article-update-date-headers): Doc fix.
5209         (gnus-article-setup-buffer): Always restart the date timer so that user
5210         changes to the frequency is respected.
5211
5212         * nnimap.el (nnimap-open-connection-1): auth-source expects strings as
5213         port numbers, so make sure it gets that if nnimap-server-port is
5214         explicit.
5215
5216 2011-02-21  Simon Josefsson  <simon@josefsson.org>
5217
5218         * nnimap.el (nnimap-inbox): Doc fix.
5219
5220 2011-02-21  Chong Yidong  <cyd@stupidchicken.com>
5221
5222         * color.el (color-name-to-rgb): Rename from color-rgb->normalize.
5223         Autoload.  Add optional arg FRAME, and pass it to color-values.
5224         (color-complement): Caller changed.  Doc fix.
5225         (color-gradient): Rewrite for better clarity and efficiency.
5226
5227 2011-02-20  Chong Yidong  <cyd@stupidchicken.com>
5228
5229         * shr-color.el (shr-color->hexadecimal): Use renamed function names
5230         color-rgb-to-hex, color-name-to-rgb, color-srgb-to-lab, and
5231         color-lab-to-srgb.
5232
5233 2011-02-20  Drew Adams  <drew.adams@oracle.com>
5234
5235         * color.el: First part of merge from hexrgb.el.
5236         (color-rgb-to-hex): Rename from color-rgb->hex.
5237         (color-rgb-to-hsv): Rename from color-rgb->hsv.  Force hue and
5238         saturation to zero if the value is too small.
5239         (color-rgb-to-hsl): Rename from color-rgb->hsl.
5240         (color-srgb-to-xyz): Rename from color-srgb->xyz.  Doc fix.
5241         (color-xyz-to-srgb): Rename from color-xyz->srgb.  Doc fix.
5242         (color-xyz-to-lab): Rename from color-xyz->lab.  Doc fix.
5243         (color-lab-to-xyz): Rename from color-lab->xyz.  Doc fix.
5244         (color-lab-to-srgb): Rename from color-lab->srgb.  Doc fix.
5245         (color-cie-de2000): Doc fix.
5246
5247 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5248
5249         * nntp.el (nntp-finish-retrieve-group-infos): Add a kludge to use the
5250         given method as in the group name if we're using an extended method.
5251         (nntp-finish-retrieve-group-infos): Wait for the end of the LIST ACTIVE
5252         command, if we're using that, instead of waiting for the beginning.
5253
5254         * gnus-start.el (gnus-get-unread-articles): Extend the methods so that
5255         we're sure to get unique server names, and we don't output two async
5256         commands in the same buffer.  This fixes an NNTP hang for some users.
5257
5258 2011-02-21  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5259
5260         * gnus.el: No Gnus v0.11 is released.
5261
5262 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
5263
5264         * gnus-sum.el (gnus-summary-next-article): Add a kludge to reselect the
5265         summary buffer before reading going to the next buffer.  This avoids
5266         putting the point in the group buffer if you `C-g' the command.
5267
5268         * auth-source.el (auth-source-netrc-parse): Add an in-memory netrc
5269         cache (for now) to make ~/.authinfo.gpg files usable.
5270
5271         * nnfolder.el (copyright-update): Define for the compiler.
5272
5273         * auth-source.el (auth-source-search): Fix unbound variable.
5274
5275 2011-02-19  Glenn Morris  <rgm@gnu.org>
5276
5277         * gnus.el (gnus-meta): Doc fix.
5278
5279 2011-02-19  Chong Yidong  <cyd@stupidchicken.com>
5280
5281         * nnfolder.el (nnfolder-save-buffer): Don't let-bind copyright-update,
5282         in case it's not yet loaded.
5283
5284 2011-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
5285
5286         * nnimap.el (nnimap-wait-for-response): Ensure that we get the entire
5287         line we're waiting for.
5288
5289 2011-02-19  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
5290
5291         * gnus-art.el (gnus-article-next-page-1): Because customized mode-line
5292         face with line-width greater than zero will cause RET in gnus summary
5293         buffer to scroll down article page-wise because auto vscroll happens,
5294         it should be temporally disabled when doing a scroll-up.
5295
5296 2011-02-19  Lars Ingebrigtsen  <larsi@gnus.org>
5297
5298         * nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK"
5299         outputs from the server.
5300
5301 2011-02-18  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
5302
5303         * gnus-art.el (gnus-article-prepare): Run gnus-article-prepare-hook
5304         later so that bbdb can hook in easier.
5305
5306 2011-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
5307
5308         * auth-source.el (auth-source-search): Don't try to create credentials
5309         if the caller doesn't want that.
5310         (auth-source-search): If we don't find a match, don't bug out on
5311         non-bound variables.
5312         (auth-source-search): Only ask a single backend to create the
5313         credentials.
5314
5315         * nnimap.el (nnimap-log-command): Add a newline to the inhibited
5316         logging.
5317         (nnimap-credentials): Protect against auth-source-search returning nil.
5318         (nnimap-request-list): Protect against not being able to open the
5319         server.
5320
5321 2011-02-17  Lars Ingebrigtsen  <larsi@gnus.org>
5322
5323         * auth-source.el (auth-source-search): Do a two-phase search, one with
5324         no :create to get the responses from all backends.
5325
5326         * nnimap.el (nnimap-open-connection-1): Delete duplicate server names
5327         when getting credentials.
5328
5329         * gnus-util.el (gnus-delete-duplicates): New function.
5330
5331 2011-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
5332
5333         * nnimap.el (nnimap-credentials): Instead of picking the first port as
5334         a creation default, pass the whole port list down.  It will be
5335         completed.
5336
5337         * auth-source.el (auth-source-search): Updated docs to talk about
5338         multiple creation choices.
5339         (auth-source-netrc-create): Accept a list as a value (from the search
5340         parameters) and do completion on that list.  Keep a separate netrc line
5341         with the password obscured for showing the user.
5342
5343         * nnimap.el (nnimap-open-connection-1): Make the `nnimap-address' the
5344         first choice to `auth-source-search' so it will be used for entry
5345         creation instead of the server's Gnus-specific name.
5346         (nnimap-credentials): Rely on the auth-source library to select which
5347         port is actually wanted in the new netrc entry, so don't override
5348         `auth-source-creation-defaults'.
5349
5350         * auth-source.el (auth-source-netrc-parse): Use :port instead of
5351         :protocol and accept a missing user, host, or port as a wildcard match.
5352         (auth-source-debug): Default to off.
5353
5354         (auth-source-netrc-search, auth-source-netrc-create)
5355         (auth-source-secrets-search, auth-source-secrets-create)
5356         (auth-source-user-or-password, auth-source-backend, auth-sources)
5357         (auth-source-backend-parse-parameters, auth-source-search): Use :port
5358         instead of :protocol.
5359
5360         * nnimap.el (nnimap-credentials): Pass a port default to
5361         `auth-source-search' in case an entry needs to be created.
5362         (nnimap-open-connection-1): Use :port instead of :protocol.
5363
5364 2011-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5365
5366         * auth-source.el: Bind load-path when loading EIEIO from
5367         "gnus-fallback-lib/eieio"; don't pass more than two args, that XEmacs
5368         21.4 doesn't support, to `require'.
5369         (auth-source-secrets-search): Use mm-delete-duplicates instead of
5370         delete-dups that is not available in XEmacs 21.4.
5371
5372 2011-02-16  Raphael Kubo da Costa  <kubito@gmail.com>  (tiny change)
5373
5374         * auth-source.el: Correctly load EIEIO from "gnus-fallback-lib/eieio"
5375         as EIEIO must also be loaded when auth-source.el is being
5376         byte-compiled.
5377
5378 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
5379
5380         * gnus-fallback-lib/eieio/eieio.el: Copy from Emacs.
5381
5382         * gnus-fallback-lib/eieio/eieio-speedbar.el: Copy from Emacs.
5383
5384         * gnus-fallback-lib/eieio/eieio-opt.el: Copy from Emacs.
5385
5386         * gnus-fallback-lib/eieio/eieio-datadebug.el: Copy from Emacs.
5387
5388         * gnus-fallback-lib/eieio/eieio-custom.el: Copy from Emacs.
5389
5390         * gnus-fallback-lib/eieio/eieio-comp.el: Copy from Emacs.
5391
5392         * gnus-fallback-lib/eieio/eieio-base.el: Copy from Emacs.
5393
5394         * auth-source.el: Load EIEIO from "gnus-fallback-lib/eieio" if
5395         necessary.
5396
5397 2011-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
5398
5399         * gnus-sum.el (gnus-propagate-marks): Change default to t again, since
5400         nil means that nnimap doesn't get updated.
5401
5402 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
5403
5404         * auth-source.el (auth-source-netrc-create): Return a synthetic search
5405         result when the user doesn't want to write to the file.
5406         (auth-source-netrc-search): Expect a synthetic result and proceed
5407         accordingly.
5408         (auth-source-cache-expiry): New variable to override
5409         `password-cache-expiry'.
5410         (auth-source-remember): Use it.
5411
5412         * nnimap.el (nnimap-credentials): Remove the `inhibit-create'
5413         parameter.  Create entry if necessary by using :create t.
5414         (nnimap-open-connection-1): Don't pass `inhibit-create'.
5415
5416 2011-02-15  Teodor Zlatanov  <tzz@lifelogs.com>
5417
5418         * auth-source.el (auth-source-debug): Enable by default and don't
5419         mention the obsolete `auth-source-hide-passwords'.
5420         (auth-source-do-warn): New function to debug unconditionally.
5421         (auth-source-do-debug): Use it.
5422         (auth-source-backend-parse): Use it for invalid `auth-sources' entries
5423         and for Secrets API entries when the secrets.el library is not
5424         available.
5425
5426 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
5427
5428         * gnus-sum.el (gnus-propagate-marks): Default to nil.
5429         (gnus-summary-exit): Kill the correct article buffer on exit from a
5430         `C-d' group.
5431
5432         * gnus-start.el (gnus-use-backend-marks): Removed, since it duplicates
5433         gnus-propagate-marks.
5434
5435         * gnus-sum.el (gnus-summary-exit-no-update): Restore the group conf
5436         before killing the buffers so that a non-full window conf gets handled
5437         correctly.
5438         (gnus-summary-exit): Ditto.
5439         (gnus-summary-read-group-1): Ditto.
5440
5441         * nntp.el (nntp-retrieve-group-data-early): Reinstate the two-part
5442         async code again so that we can debug it properly.
5443
5444         * message.el (message-reply): Take an optional switch-buffer parameter
5445         so that Gnus window confs are respected better.
5446
5447 2011-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
5448
5449         * auth-source.el (auth-source-backend-parse-parameters): Don't rely on
5450         `plist-get' to accept non-list parameters (XEmacs issue).
5451         Fix docstring.
5452         (auth-source-secrets-search): Use `delete-dups', `append mapcar', and
5453         `butlast' instead of `remove-duplicates', `mapcan', and `subseq'.
5454         (auth-sources, auth-source-backend-parse, auth-source-secrets-search):
5455         Login collection is "Login" and not "login".
5456
5457 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
5458
5459         * gnus-art.el (article-update-date-lapsed): Don't bug out when updating
5460         multiple headers.
5461
5462         * nnimap.el (nnimap-inhibit-logging): New variable.
5463         (nnimap-log-command): Don't log login commands.
5464
5465         * auth-source.el (auth-source-netrc-search): The asserts seem to want
5466         to have more parameters.
5467
5468         * nnimap.el (nnimap-send-command): Mark the command time for each
5469         command, so that we don't get NOOPs stepping on our toes.
5470
5471         * gnus-art.el (article-date-ut): Get the date from the Date header on
5472         `t'.
5473
5474 2011-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5475
5476         * auth-source.el (auth-source-search): Use copy-sequence instead of
5477         the cl.el copy-list.
5478
5479 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
5480
5481         * imap.el: Bring it back (revert
5482         84d800cd31de3064f0ed39617d725709a2f8f42f).
5483
5484 2011-02-13  Adam Sjøgren  <asjo@koldfront.dk>
5485
5486         * gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
5487         Improve prompt.
5488
5489 2011-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
5490
5491         * gnus-art.el (gnus-article-mode-line-format): Remove the article
5492         washing status from the default format.  It isn't very informative.
5493
5494 2011-02-13  Tassilo Horn  <tassilo@member.fsf.org>  (tiny change)
5495
5496         * nnimap.el (nnimap-request-accept-article, nnimap-process-quirk):
5497         Fix Gcc processing on imap.
5498
5499 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
5500
5501         * imap.el: Remove file.  All the functionality is in nnimap.el.
5502
5503 2011-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5504
5505         * message.el (message-bury): Don't pop up a new window when selected
5506         window is dedicated.
5507
5508 2011-02-10  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
5509
5510         * gnus-sum.el (gnus-summary-save-parts): Use read-directory-name.
5511
5512 2011-02-10  Teodor Zlatanov  <tzz@lifelogs.com>
5513
5514         * sieve-manage.el: Autoload `auth-source-search'.
5515         (sieve-sasl-auth): Use it.
5516
5517 2011-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
5518
5519         * nnimap.el: Autoload `auth-source-forget+'.
5520         (nnimap-open-connection-1): Use it if the connection fails.
5521
5522         * auth-source.el: Require `password-cache'.
5523         (auth-source-hide-passwords, auth-source-cache): Remove and mark
5524         obsolete.
5525         (auth-source-magic): Marker for `password-cache' keys.
5526         (auth-source-do-cache): Update docstring.
5527         (auth-source-search): Use and check cache.
5528         (auth-source-forget-all-cached, auth-source-remember)
5529         (auth-source-recall, auth-source-forget, auth-source-forget+)
5530         (auth-source-specmatchp): Caching support functions.
5531         (auth-source-forget-user-or-password, auth-source-forget-all-cached):
5532         Remove and obsolete.
5533         (auth-source-user-or-password): Remove caching to further discourage
5534         using it.  Always hide passwords.
5535
5536         * password-cache.el (password-cache-remove): Accept secrets that are
5537         not strings.
5538
5539 2011-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
5540
5541         * nntp.el (nntp-retrieve-group-data-early-disabled): Disable the async
5542         code for now, since it doesn't work for all users.
5543
5544 2011-02-09  Julien Danjou  <julien@danjou.info>
5545
5546         * message.el (message-options): Make message-options really buffer
5547         local.
5548
5549 2011-02-08  Teodor Zlatanov  <tzz@lifelogs.com>
5550
5551         * mail-source.el: Autoload `auth-source-search'.
5552         (mail-source-keyword-map): Note order matters.
5553         (mail-source-set-1): Get all the mail-source source values and
5554         defaults and search auth-source on those if needed.  This can all
5555         probably be simplified.
5556
5557         * nnimap.el: Autoload `auth-source-search'.
5558         (nnimap-credentials): Use it.
5559         (nnimap-open-connection-1): Ask for the virtual server and physical
5560         address in one shot.
5561
5562         * nntp.el: Autoload `auth-source-search'.
5563         (nntp-send-authinfo): Use it.  Note TODO.
5564
5565 2011-02-08  Julien Danjou  <julien@danjou.info>
5566
5567         * shr.el (shr-tag-body): Add support for text attribute in body
5568         markups.
5569
5570         * message.el (message-options): Make message-options a local variable.
5571
5572 2011-02-07  Teodor Zlatanov  <tzz@lifelogs.com>
5573
5574         * auth-source.el (auth-source-secrets-search)
5575         (auth-source-user-or-password): Use `append' instead of `nconc'.
5576         (auth-source-user-or-password): Build return list better and protect
5577         against nil :secret.
5578
5579 2011-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
5580
5581         * nnimap.el (nnimap-update-info): Refactor slightly.
5582         (nnimap-update-info): Tell Gnus whether there are any \Recent messages.
5583         (nnimap-update-info): Clean up slightly.
5584         (nnimap-quirk): Add quirk for Gmail IMAP which bugs out on NUL
5585         characters.
5586         (nnimap-process-quirk): Rename function to avoid collision.
5587         (nnimap-update-info): Fix macrology bug-out.
5588         (nnimap-update-info): Simplify split history test.
5589
5590 2011-02-06  Michael Albinus  <michael.albinus@gmx.de>
5591
5592         * auth-source.el (top): Require 'eieio unconditionally.
5593         Autoload `secrets-get-attributes' instead of `secrets-get-attribute'.
5594         (auth-source-secrets-search): Limit search when `max' is greater than
5595         number of results.
5596
5597 2011-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
5598
5599         * nntp.el (nntp-finish-retrieve-group-infos): Protect against the first
5600         part not returning any data.
5601
5602         * proto-stream.el (open-protocol-stream): Document the return value.
5603
5604 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
5605
5606         * auth-source.el (auth-source-secrets-search): Add examples.
5607
5608 2011-02-06  Julien Danjou  <julien@danjou.info>
5609
5610         * message.el (message-setup-1): Handle message-generate-headers-first
5611         set to t.
5612
5613 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
5614
5615         * auth-source.el (auth-sources): Allow for simpler defaults for Secrets
5616         API with a string "secrets:collection-name" and with 'default.
5617         (auth-source-backend-parse): Parse "secrets:collection-name" and
5618         'default.  Recurse on parses instead of repeating code.  Use the
5619         Secrets API is the source is not nil and 'ignore otherwise.  Emit a
5620         message when ignoring a source.
5621         (auth-source-search): List ignored search keys at the top level.
5622         (auth-source-netrc-create): Use `case' instead of `cond'.
5623         (auth-source-secrets-search): Created with TODOs.
5624         (auth-source-secrets-create): Created with TODOs.
5625         (auth-source-retrieve, auth-source-create, auth-source-delete)
5626         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
5627         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
5628         (auth-source-user-or-password-sftp)
5629         (auth-source-user-or-password-smtp): Remove.
5630         (auth-source-user-or-password): Deprecated and modified to be a wrapper
5631         around `auth-source-search'.  Not tested thoroughly.
5632
5633 2011-02-04  Teodor Zlatanov  <tzz@lifelogs.com>
5634
5635         * auth-source.el: Bring in assoc and eioeio libraries.
5636         (secrets-enabled): New variable to track the status of the Secrets API.
5637         (auth-source-backend): New EIOEIO class to represent a backend.
5638         (auth-source-creation-defaults): New variable to set prompt defaults
5639         during token creation (see the `auth-source-search' docstring for
5640         details).
5641         (auth-sources): Simplify to allow a simple string as a netrc backend
5642         spec.
5643         (auth-source-backend-parse): Parse a backend from an `auth-sources' spec.
5644         (auth-source-backend-parse-parameters): Fill in the backend parameters.
5645         (auth-source-search): Main auth-source API entry point.
5646         (auth-source-delete): Wrapper around `auth-source-search' for deletion.
5647         (auth-source-search-collection): Helper function for searching.
5648         (auth-source-netrc-parse, auth-source-netrc-normalize)
5649         (auth-source-netrc-search, auth-source-netrc-create): Netrc backend.
5650         Supports search, create, and delete.
5651         (auth-source-secrets-search, auth-source-secrets-create): Secrets API
5652         backend stubs.
5653         (auth-source-user-or-password): Call `auth-source-search' but it's not
5654         ready yet.
5655
5656 2011-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
5657
5658         * message.el (message-setup-1): Remove the read-only stuff, since it
5659         doesn't work under XEmacs, for some reason.
5660
5661         * gnus-sum.el (gnus-user-date): Rename back from
5662         gnus-summary-user-date since user code refers to it.
5663
5664         * shr.el (shr-render-td): Store the actual background color used.
5665
5666         * message.el (message-setup-1): Don't bind the constant
5667         -forbidden-properties.
5668         (message-setup-1): Revert previous change, since it needs to bind the
5669         props to insert them.
5670         (message-resend): Allow removing the read-only separator line.
5671
5672 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5673
5674         * nnimap.el (nnimap-request-accept-article): Give an error message if
5675         the APPEND wasn't successful.
5676
5677 2011-02-03  Adam Sjøgren  <asjo@koldfront.dk>
5678
5679         * gnus-start.el (gnus-get-unread-articles): Fix the call to methods
5680         that have no groups.
5681
5682 2011-02-03  Julien Danjou  <julien@danjou.info>
5683
5684         * gnus-draft.el: Remove progn around gnus-draft-setup.
5685
5686 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5687
5688         * gnus-start.el (gnus-read-active-for-groups): This function is never
5689         called with a nil `infos', so clean that up.
5690         (gnus-get-unread-articles): Request active files from primary/secondary
5691         methods that have no groups (yet).
5692
5693 2011-02-03  Julien Danjou  <julien@danjou.info>
5694
5695         * message.el (message-setup-1): Always generate References first.
5696         (message-mail): Return the return value of message-setup, not always t.
5697         (message-setup-1): Insert mail-header-separator with read-only and
5698         intangible properties set.
5699
5700         * gnus.el (gnus-summary-line-format): Add missing semi-colon for
5701         user-date in docstring.
5702
5703         * gnus-art.el (gnus-article-jump-to-part): Remove useless sit-for.
5704
5705         * gnus.el (gnus-summary-line-format): Mention &user-date format in
5706         docstring.
5707
5708         * gnus.el (gnus-user-date-format-alist): Change default value.
5709         Use defcustom, with type and group. Move from gnus-util.el.
5710         Rename to gnus-summary-user-date-format-alist.
5711
5712 2011-02-03  Glenn Morris  <rgm@gnu.org>
5713
5714         * nnimap.el (gnus-fetch-headers): Declare.
5715
5716         * nnheader.el (gnus-range-add, gnus-remove-from-range): Autoload.
5717
5718 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
5719
5720         * message.el (message-forward-make-body-digest-plain)
5721         (message-followup, message-reply): Clean up things noted by Stefan.
5722
5723         * gnus-art.el (gnus-article-setup-buffer): Stop the date timer if
5724         gnus-article-update-date-headers is nil.
5725         (gnus-article-date-headers): Rip out the old -treat-date-* stuff, since
5726         it didn't really work with defcustom.
5727         (article-update-date-lapsed): Make sure the window start doesn't move,
5728         either.
5729
5730 2011-02-01  Julien Danjou  <julien@danjou.info>
5731
5732         * mm-uu.el (mm-uu-type-alist): Add support for git format-patch diff
5733         format.
5734
5735         * mm-decode.el (mm-inline-media-tests): Do not check for diff-mode it's
5736         standard in Emacs nowadays.
5737
5738         * color.el (color-gradient): Add a color-gradient function.
5739
5740 2011-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5741
5742         * message.el (message-expand-name): Don't trust the return value of
5743         bbdb-complete-name.
5744         (message-check-news-header-syntax): Remove unused var `start'.
5745         (message-idna-to-ascii-rhs-1): Remove unused vars `rhs' and `address'.
5746         (message-inhibit-body-encoding): Move to before first use.
5747         (mail-abbrev-mode-regexp, Expires, User-Agent, Lines, Distribution)
5748         (To, References, In-Reply-To, Newsgroups, Subject, Path, From)
5749         (Organization, Message-ID, Date, mh-previous-window-config):
5750         Defvar the vars using dynamic scoping.
5751
5752 2011-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
5753
5754         * shr.el (shr-render-td): Only do colors at the final rendering.
5755         Should be slightly faster.
5756         (shr-insert-table): Fix up TD background colors when doing the
5757         vertical padding.
5758
5759         * gnus-art.el (article-date-ut): Protect against articles with no Date
5760         header.
5761         (article-update-date-lapsed): Don't use current-column to find the
5762         horizontal position.  It's fragile in the presence of \003 characters.
5763
5764         * gnus-start.el (gnus-read-active-file-1): Remove dead parameter infos.
5765
5766 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
5767
5768         * gnus-art.el (article-transform-date): Rewrite to still work when
5769         there are several rfc2822 parts.
5770         (article-transform-date): Fix infinite recursion.
5771         (article-date-ut): Replace infinitely many Date headers with a single
5772         one when called interactively.
5773
5774         * nnimap.el (nnimap-wait-for-response): Wait for results in a more
5775         secure manner.
5776
5777         * gnus-art.el (article-update-date-lapsed): Try to avoid having point
5778         move around by not using save-window-excursion.  It seems to work...
5779
5780 2011-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5781
5782         * gnus-art.el (article-make-date-line): Work for user-defined format.
5783
5784 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
5785
5786         * nntp.el (nntp-retrieve-group-data-early)
5787         (nntp-finish-retrieve-group-infos): Implement the asynchronous data
5788         fetching functions.
5789
5790         * gnus-start.el (gnus-read-active-for-groups): Read the active files
5791         thoroughly for all backends that have no known groups.  This should
5792         allow new nnml methods to retrieve mail.
5793
5794         * gnus-group.el (gnus-group-jump-to-group): Allow jumping to groups
5795         that Gnus doesn't know exists again.
5796
5797         * gnus-art.el (gnus-article-date-lapsed-new-header): Remove.
5798         (gnus-treat-date-ut): Ditto.
5799         (gnus-article-update-date-header): Rename.
5800         (gnus-treat-date-local): Remove.
5801         (gnus-treat-date-english): Remove.
5802         (gnus-treat-date-lapsed): Remove.
5803         (gnus-treat-date-combined-lapsed): Remove.
5804         (gnus-treat-date-original): Remove.
5805         (gnus-treat-date-iso8601): Remove.
5806         (gnus-treat-date-user-defined): Remove.
5807         (gnus-article-date-headers): New variable to control all the date
5808         header options.
5809         (article-date-ut): Rewrite to allow using the new way to format date
5810         headers(s).
5811
5812 2011-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
5813
5814         * nnmail.el (nnmail-article-group): Check for a direct fancy split
5815         method.
5816         (nnmail-article-group): A better test for fanciness.
5817
5818         * nnimap.el (nnimap-request-head): Protect against not finding the
5819         article by Message-ID.
5820
5821 2011-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
5822
5823         * gnus-art.el (article-update-date-lapsed): Try a better way to really
5824         keep point at the "same place".
5825
5826 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
5827
5828         * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active
5829         data if the group is inactive.
5830
5831 2011-01-28  Julien Danjou  <julien@danjou.info>
5832
5833         * gnus-win.el: Remove dead function gnus-window-configuration-element.
5834         (gnus-all-windows-visible-p): Remove old compatibility code.
5835         (gnus-window-top-edge): Add docstring.
5836
5837         * gnus-group.el (gnus-group-jump-to-group): Set must match to t.
5838
5839 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
5840
5841         * gnus-int.el (gnus-request-marks): Call *-request-marks instead of the
5842         older request-update-info.
5843
5844         * gnus-art.el (article-make-date-line): Limit the length a bit more.
5845
5846 2011-01-28  Daiki Ueno  <ueno@unixuser.org>
5847
5848         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt):
5849         Give mml2015-signers higher precedence over mml2015-sign-with-sender.
5850
5851 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
5852
5853         * gnus-group.el (gnus-group-refresh-group): Refresh even non-visible
5854         groups.  This makes the nndraft:queue group pop up if it's not already
5855         there.
5856
5857         * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no
5858         messages" logic, which was reversed.
5859
5860         * gnus-art.el (article-update-date-lapsed): Ensure that point stays at
5861         the "same place" even if point is on the line being replaced.
5862         (article-update-date-lapsed): Allow updating both the combined lapsed
5863         and the lapsed headers.
5864         (article-update-date-lapsed): Skip past all the X-Sent/Date headers.
5865         (article-make-date-line): Limit the number of segments dynamically to
5866         avoid too-long lines.
5867
5868 2011-01-27  Julien Danjou  <julien@danjou.info>
5869
5870         * mml2015.el (mml2015-epg-sign): Add and use mml2015-sign-with-sender.
5871         (mml2015-epg-encrypt): Use mml2015-sign-with-sender.
5872
5873 2011-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5874
5875         * shr.el (shr-expand-newlines, shr-previous-newline-padding-width):
5876         Use plist-get instead of the cl function getf.
5877
5878 2011-01-27  Glenn Morris  <rgm@gnu.org>
5879
5880         * gnus-util.el (float-time): Get rid of compiler warning, again.
5881
5882 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
5883
5884         * shr.el (shr-put-color): Special-case background colors: Do put them
5885         at the blank parts at the front of the lines.
5886
5887         * gnus-draft.el (gnus-draft-clear-marks): New function to be run as an
5888         exit hook to nix out all data on readedness on group exit.
5889
5890         * gnus-util.el (float-time): If float-time is bound, always use it on
5891         all Emacsen.  It's unclear why the subrp check was there.
5892         (time-date): Require to make some autoload issues on XEmacs go away.
5893
5894         * shr.el (shr-put-color): Don't do the box padding in tables, since
5895         they're already padded.
5896
5897 2011-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
5898
5899         * gnus-art.el (gnus-article-next-page): When the last line of the
5900         article is displayed, scroll down once more instead of going to the
5901         next article at once.
5902         (article-lapsed-string): Refactor out and allow specifying how many
5903         segments you want.
5904         (gnus-article-setup-buffer): Start updating the lapsed header directly.
5905         (gnus-article-update-lapsed-header): New variable.
5906
5907         * shr.el: Revert change that made headings use different-sized faces.
5908         The Emacs display engine isn't advanced enough that, for instance,
5909         tables can comfortably use differently-sized faces.
5910
5911 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
5912
5913         * nnimap.el (nnimap-open-connection-1): Store the actual stream type
5914         used.
5915         (nnimap-login): Prefer plain LOGIN if it's enabled (since it requires
5916         fewer round trips than CRAM-MD5, and it's less likely to be buggy), and
5917         we're using an encrypted connection.
5918
5919         * proto-stream.el: Alter the interface functions to also return the
5920         actual stream type used: network or tls.
5921
5922 2011-01-25  Julien Danjou  <julien@danjou.info>
5923
5924         * mm-view.el (mm-display-shell-script-inline): Fix typo in docstring.
5925         (mm-display-javascript-inline): New function.
5926
5927         * mm-decode.el (mm-inline-media-tests): Add application/javascript
5928         viewing function.
5929
5930 2011-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5931
5932         * shr.el (shr-expand-newlines): Fix variable name.
5933
5934 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
5935
5936         * shr.el (shr-expand-newlines): Make nested boxes work.
5937
5938 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
5939
5940         * shr.el (shr-expand-newlines): Proof of concept implementation of boxy
5941         backgrounds.
5942         (shr-expand-newlines): Switch to using overlays to enable kill'n'yank
5943         in a more sensible manner.
5944
5945 2011-01-24  Teodor Zlatanov  <tzz@lifelogs.com>
5946
5947         * mml-smime.el (mml-smime-use): Make it a defcustom and default to 'epg
5948         if EPG is loaded.
5949
5950 2011-01-24  Julien Danjou  <julien@danjou.info>
5951
5952         * shr.el: Use defface to create shr-tag-h[1-6] faces to fontify h[1-6]
5953         tags.
5954
5955 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
5956
5957         * gnus-art.el (gnus-article-read-summary-keys): Don't call disabled
5958         commands.
5959
5960         * gnus-gravatar.el (gnus-gravatar-insert): Don't move point around
5961         in the article buffer.
5962         (gnus-gravatar-insert): Use blank space from the current buffer to
5963         avoid breaking text properties.  This makes X-Sent updating work again.
5964
5965         * gravatar.el (gravatar-retrieve): Be silent when retrieving.
5966
5967 2011-01-23  Lars Ingebrigtsen  <larsi@gnus.org>
5968
5969         * gnus-html.el (gnus-html-image-fetched): Kill the buffer anyway, and
5970         fix the bug in url-http.el instead.
5971
5972         * shr.el (shr-image-fetched): Ditto.
5973
5974         * shr.el (shr-image-fetched): Avoid having point move in the article
5975         buffer.
5976
5977         * gnus-html.el (gnus-html-image-fetched): Don't kill the temporary
5978         buffer after being called.  It's apparently being killed by url.el, and
5979         killing it made point move to end-of-buffer in a random buffer.
5980
5981         * shr.el (shr-image-fetched): Ditto.
5982
5983 2011-01-23  Julien Danjou  <julien@danjou.info>
5984
5985         * mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org.
5986
5987         * mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to
5988         text/x-org.
5989
5990 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
5991
5992         * gnus-sum.el (gnus-summary-move-article): Protect against backends
5993         (i.e., nnimap) returning nil as the article number.
5994
5995 2011-01-22  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
5996
5997         * flow-fill.el (fill-flowed): Make `delete-space' option correspond to
5998         "DelSp" parameter in RFC3676.
5999
6000 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
6001
6002         * message.el (message-check-recipients): Display the encoded version of
6003         the bogus address if they differ.
6004
6005         * gnus-draft.el (gnus-group-send-queue): Really refresh the queue group
6006         after sending.
6007
6008         * gnus-agent.el (gnus-agent-send-mail): Ditto.
6009
6010         * gnus-group.el (gnus-group-refresh-group): New convenience function.
6011
6012         * gnus-draft.el (gnus-group-send-queue): Update the queue group in the
6013         group buffer after sending the queue.
6014
6015         * gnus-agent.el (gnus-agent-send-mail): Ditto.
6016
6017 2011-01-22  Julien Danjou  <julien@danjou.info>
6018
6019         * mailcap.el (mailcap-mime-extensions): Rename text/org to text/x-org.
6020
6021 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
6022
6023         * mm-decode.el (mm-preferred-alternative-precedence): Don't bug out on
6024         nested related parts.
6025
6026         * nnfolder.el (nnfolder-request-expire-articles): Return the list of
6027         unexpired articles.  This fixes the regression that led expiry marks to
6028         disappear from nnfolder groups.
6029
6030 2011-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6031
6032         * gnus-art.el (gnus-button-alist, gnus-button-handle-info-keystrokes):
6033         Don't confuse the "ret" of "retrograde" with RET.
6034
6035 2011-01-21  Julien Danjou  <julien@danjou.info>
6036
6037         * gnus-art.el (gnus-mime-display-single): Use mm-display-inline rather
6038         than mm-insert-inline.
6039
6040 2011-01-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6041
6042         * gnus-art.el (gnus-article-remove-images, gnus-article-show-images):
6043         Widen article buffer.
6044
6045 2011-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6046
6047         * mm-util.el (mm-find-buffer-file-coding-system): Don't forget to kill
6048         the temp buffer.
6049         * message.el (message-mailer-swallows-blank-line): Use with-temp-buffer.
6050
6051 2011-01-20  Julien Danjou  <julien@danjou.info>
6052
6053         * mm-decode.el (mm-inline-media-tests): Add text/x-sh.
6054
6055         * gnus-art.el (gnus-mime-inline-part): Use mm-display-inline rather
6056         than mm-insert-inline to insert inline part: this respect
6057         mm-inline-media-tests displayers.
6058
6059         * mm-view.el (mm-display-shell-script-inline): New function.
6060
6061         * mm-decode.el (mm-inline-media-tests): Add x-shellscript and x-sh.
6062
6063         * mm-uu.el (mm-uu-type-alist): Add org block.
6064         (mm-uu-org-src-code-block-extract): New function.
6065
6066         * mm-view.el (mm-display-org-inline): New function.
6067
6068         * mm-decode.el (mm-automatic-display): Add text/org.
6069
6070         * mailcap.el (mailcap-mime-extensions): Add .org.
6071
6072 2011-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6073
6074         * gnus-art.el (gnus-article-highlight): Remove argument passed to
6075         gnus-article-add-buttons.
6076
6077 2011-01-19  Tom Rauchenwald  <sehnsucht.nach.unendlichkeit@quantentunnel.de>  (tiny change)
6078
6079         * spam.el (spam-spamassassin-register-with-sa-learn): Insert a full
6080         From header with a date and "nobody" as the sender.
6081
6082 2011-01-19  Julien Danjou  <julien@danjou.info>
6083
6084         * gnus-art.el (gnus-article-add-buttons): Simplify condition.
6085         (gnus-button-push): Remove gnus-button-entry function, it fails heavily
6086         if you have the same regexp several times.
6087         (gnus-button-push): Fix matching when regexp is symbol.
6088
6089 2011-01-15  Glenn Morris  <rgm@gnu.org>
6090
6091         * message.el (message-mail): A compose-mail function should
6092         accept headers as strings.
6093
6094 2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
6095
6096         * message.el (message-tool-bar-gnome): Tweak tool-bar items.
6097         Add :vert-only tags.
6098         (message-mail): New arg RETURN-ACTION.
6099         (message-return-action): New var.
6100         (message-bury): Use it.
6101         (message-mode): Make it buffer-local.
6102         (message-send-and-exit): Always call message-bury.
6103
6104         * gnus-msg.el (gnus-msg-mail): New arg RETURN-ACTION.  Pass it to
6105         message-mail.
6106
6107 2011-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6108
6109         * nnimap.el (nnimap-convert-partial-article): Protect against
6110         zero-length body parts.
6111
6112         * mm-decode.el (mm-preferred-alternative-precedence):
6113         Discourage showing empty parts.
6114
6115         * gnus-int.el (gnus-request-accept-article): Don't try to update marks
6116         and stuff if the backend didn't return the article number.  This fixes
6117         an Exchange-related nnimap bug.
6118
6119         * gnus-sum.el (gnus-summary-next-article): Remove hack to reselect
6120         group window, because it does the wrong thing when a separate frame
6121         displays the group buffer.
6122
6123         * proto-stream.el (open-protocol-stream): Protect against the low-level
6124         transport functions returning nil.
6125
6126 2011-01-07  Daiki Ueno  <ueno@unixuser.org>
6127
6128         * mml2015.el (epg-sub-key-fingerprint): Autoload.
6129         (mml2015-epg-find-usable-secret-key): New function.
6130         (mml2015-epg-sign): Use mml2015-epg-find-usable-secret-key instead of
6131         mml2015-epg-find-usable-key (Bug#7797).
6132         (mml2015-epg-encrypt): Ditto.
6133
6134 2011-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6135
6136         * dgnushack.el (rot13-string): Fix the way to get the argument.
6137
6138 2011-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6139
6140         * flow-fill.el (fill-flowed-encode): Do encoding citation-aware.
6141
6142 2011-01-03  Glenn Morris  <rgm@gnu.org>
6143
6144         * sieve-manage.el (sieve-manage-open): Correctly set sieve-manage-port.
6145
6146         * sieve.el (sieve-open-server): Give a more explicit error if
6147         sieve-manage-open returns nil.  (Bug#7720)
6148
6149 2011-01-02  Karl Fogel  <kfogel@red-bean.com>
6150
6151         * gnus-msg.el (gnus-message-replyencrypt): Default to `t'.
6152
6153 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6154
6155         * nnimap.el (nnimap-login): Prefer AUTH=CRAM-MD5, if it's available.
6156         This avoids sending passwords in plain text over non-encrypted
6157         channels.
6158
6159         * shr.el (shr-rescale-image): Display all GIF images as animated images.
6160
6161         * nnimap.el (nnimap-login): Refactored out into own function, and
6162         implement CRAM-MD5.
6163         (nnimap-wait-for-line): Refactored out.
6164
6165         * mm-view.el (mml-smime): Require.
6166
6167 2010-12-20  David Engster  <deng@eml.cc>
6168
6169         * mm-view.el (mm-view-pkcs7-decrypt): If mml-smime-use is set to 'epg,
6170         use EPG to decrypt S/MIME messages instead of openssl.
6171
6172 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6173
6174         * nnimap.el (nnimap-request-group): Avoid double SELECT on `M-g'.
6175
6176         * gnus-group.el (gnus-group-kill-group): Don't try to update the group
6177         status is the group clearly is unreachable.
6178
6179         * auth-source.el (auth-source-create): Add the optional second
6180         parameter to `local-variable-p' to be compatible with XEmacs.
6181
6182 2011-01-02  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
6183
6184         * nnml.el (nnml-request-article): Allow requesting by Message-ID to
6185         work when using a compressed nnml folder.
6186
6187 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6188
6189         * gnus-sum.el (gnus-select-newsgroup): Don't propagate marks to
6190         backends after sanitising on entry, because this never makes sense:
6191         If the articles have gone missing, then the data no longer exists on
6192         the backend, and if they haven't, then Gnus is wrong, and shouldn't
6193         overwrite anything anyway.
6194
6195         * shr.el (shr-insert-document): Bind shr-width dynamically to
6196         window-width if it's nil.
6197
6198 2010-12-30  Tassilo Horn  <tassilo@member.fsf.org>
6199
6200         * shr.el (shr-width, shr-insert-document): Allow nil as shr-width value
6201         with the meaning of using the full emacs window width for rendering.
6202
6203 2010-12-27  Daiki Ueno  <ueno@unixuser.org>
6204
6205         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Take care the
6206         case when sender is not given.
6207
6208 2010-12-23  Julien Danjou  <julien@danjou.info>
6209
6210         * gnus-gravatar.el (gnus-gravatar-transform-address): Set
6211         `mail-extr-ignore-realname-equals-mailbox-name' to nil when extracting
6212         the addresses, otherwise we might misplaced the gravatar.
6213
6214 2010-12-21  Daiki Ueno  <ueno@unixuser.org>
6215
6216         * mml1991.el (pgg-sign-region, pgg-encrypt-region):
6217         * gnus-art.el (pgg-snarf-keys-region): Autoload since PGG is now
6218         obsolete in Emacs.
6219
6220 2010-12-20  Julien Danjou  <julien@danjou.info>
6221
6222         * gnus-util.el (gnus-rescale-image): Revert last change.
6223
6224 2010-12-17  Chong Yidong  <cyd@stupidchicken.com>
6225
6226         * binhex.el: Improve commentary (Bug#7482).
6227
6228 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6229
6230         * gnus-group.el (gnus-group-delete-articles): New command.
6231
6232 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
6233
6234         * nnir.el (nnir-mode): Make sure 'gnus-registry-install is bound.
6235
6236 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6237
6238         * gnus-sum.el (gnus-get-newsgroup-headers): Revert the last change
6239         here, since it's up to the backends to do CRLF removal if their
6240         protocol has it.
6241
6242         * nnimap.el (nnimap-retrieve-headers): Remove CRLF from the headers.
6243
6244 2010-12-17  Julien Danjou  <julien@danjou.info>
6245
6246         * gnus-util.el (gnus-rescale-image): Allow to resize images even if
6247         they are from file.  Can also scale up.
6248
6249 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
6250
6251         * gnus-sum.el (gnus-summary-refer-thread): Simplify code.
6252         Restore gnus-use-agent.
6253         (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
6254
6255         * nnir.el (nnir-get-active): Ignore nnir-ignored-newsgroups if null.
6256
6257 2010-12-17  Julien Danjou  <julien@danjou.info>
6258
6259         * gravatar.el (gravatar-retrieve-synchronously): New function.
6260         (gravatar-get-data): Make more robust.
6261
6262 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6263
6264         * lpath.el: Bind epa-file-encrypt-to for Emacs 22 and XEmacs.
6265
6266 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6267
6268         * nnimap.el (nnimap-wait-for-response): Fix the end-point calculation
6269         to really consider the last line.
6270
6271 2010-12-16  Daiki Ueno  <ueno@unixuser.org>
6272
6273         * auth-source.el (auth-source-gpg-encrypt-to): New variable to set the
6274         list of recipient keys, or use symmetric encryption if not a list.
6275         (auth-source-create): Use it to make `epa-file-encrypt-to' local for an
6276         EPA override, replacing the call to `netrc-store-data'.
6277
6278 2010-12-16  Dan Davison  <dandavison7@gmail.com>  (tiny change)
6279
6280         * gnus-srvr.el: Avoid passing nil regexp argument to
6281         delete-matching-lines.
6282
6283 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6284
6285         * gnus-html.el (gnus-html-schedule-image-fetching): Make sure the HTML
6286         fetching stops when Gnus exits.
6287
6288         * nnfolder.el (nnfolder-save-all-buffers): Refactor out into its own
6289         function.
6290         (nnfolder-request-expire-articles): Save all the buffers after doing
6291         expiry.
6292
6293         * nnmail.el (nnmail-expiry-target-group): Revert the "all articles are
6294         the last article", since that led to serious performance regressions
6295         when expiring nnml groups.
6296
6297 2010-12-16  Andrew Cohen  <cohen@andy.bu.edu>
6298
6299         * nnir.el: Improve customizations.
6300
6301 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6302
6303         * gnus-start.el (gnus-subscribe-newsgroup): Notify the backend.
6304
6305         * gnus-group.el (gnus-group-kill-group): Notify the backend that the
6306         group has been killed.
6307         (gnus-group-yank-group): Ditto.
6308
6309         * gnus-srvr.el (gnus-browse-unsubscribe-group): Ditto.
6310
6311         * nnimap.el (nnimap-request-update-group-status): New function.
6312
6313         * gnus-int.el (gnus-request-update-group-status): New interface
6314         function.
6315
6316         * gnus-sum.el (gnus-summary-push-marks-to-backend): Fix the logic for
6317         copying read-ness to the backends.
6318
6319         * nnimap.el (nnimap-quirk): New function.
6320         (nnimap-retrieve-group-data-early): Use it.
6321         (nnimap-quirks): New alist.
6322
6323 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6324
6325         * shr.el (shr-insert): Set shr-start after deleting trailing space;
6326         don't delete it within indentation.
6327
6328 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6329
6330         * nnimap.el (nnimap-wait-for-response): Always look (at least) at the
6331         previous line.
6332
6333 2010-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6334
6335         * nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the
6336         QRESYNC command by deleting a superfluous space which broke Cyrus
6337         servers.  This change will break other servers that are buggy the other
6338         way around.
6339
6340 2010-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
6341
6342         * spam.el: Reindent and fix long lines.
6343         (spam-copy-or-move-routine): Exclude invalid move destinations.
6344
6345 2010-12-14  Andrew Cohen  <cohen@andy.bu.edu>
6346
6347         * nnir.el (nnir-mode): Don't install registry hooks if user hasn't
6348         installed the registry.
6349
6350 2010-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6351
6352         * dgnushack.el (rot13-string): New macro for XEmacs.  netrc.el uses it.
6353
6354 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
6355
6356         * nnir.el (nnir-run-gmane): Better check for gmane groups: error out if
6357         groupname doesn't contain "gmane".
6358
6359 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6360
6361         * netrc.el (netrc-point-at-eol): Remove the unused netrc-point-at-old
6362         and netrc-bound-and-true-p bindings.
6363         (netrc-parse): Cache the netrc contents.
6364
6365         * gnus-start.el (gnus-matches-options-n): Fix typo in last change.
6366         (gnus-1): Don't create the nndrafts group twice.
6367         (gnus-setup-news): There's no need to read the active file here, since
6368         that's done again later on a per-backend basis.
6369         (gnus-start-draft-setup): Make sure that the new group is started out
6370         empty.
6371
6372         * gnus-agent.el (gnus-agentize): Don't create the queue group
6373         automatically on startup.  It'll be created later, if needed.
6374
6375         * gnus-start.el (gnus-auto-subscribed-groups): Add nnimap to the list
6376         of automatically subscribed groups.
6377         (gnus-auto-subscribed-categories): New variable.
6378         (gnus-matches-options-n): Use it.
6379         (gnus-default-subscribed-newsgroups): Remove unused variable.
6380         (gnus-start-draft-setup): Message a bit less.
6381
6382 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
6383
6384         * nnir.el (nnir-run-imap): Return article list in order of increasing
6385         UID.
6386
6387 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6388
6389         * gnus-sum.el (gnus-summary-enter-digest-group):
6390         Mention gnus-auto-select-on-ephemeral-exit.
6391
6392         * proto-stream.el (proto-stream-open-network-only): Fix the calling
6393         convention of the network-only option.
6394
6395 2010-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6396
6397         * proto-stream.el (proto-stream-open-network-only): New function to
6398         have a way to specify non-STARTTLS upgrade connections.
6399
6400 2010-12-10  Julien Danjou  <julien@danjou.info>
6401
6402         * gnus-gravatar.el (gnus-gravatar-transform-address): Fix error when
6403         email address is nil.
6404
6405         * message.el (message-bogus-recipient-p): Set address to "" if nil.
6406
6407 2010-12-10  Andrew Cohen  <cohen@andy.bu.edu>
6408
6409         * nnir.el (nnir-request-expire-articles): Ignore expiry except for
6410         deletion.
6411         (nnir-run-imap): Only need to parse list once.
6412
6413 2010-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6414
6415         * shr.el (shr-tag-script): Ignore <script>.
6416         (shr-tag-label): Add <label> support.
6417
6418 2010-12-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6419
6420         * mm-util.el (mm-ucs-to-char): Use eval-and-compile.
6421
6422         * shr.el (shr-image-displayer): Work for images lined side by side.
6423
6424 2010-12-08  Robert Pluim  <rpluim@gmail.com>
6425
6426         * gnus-demon.el (gnus-demon-init): Call run-with-timer with an integer
6427         parameter, since XEmacs doesn't accept t as a parameter.
6428
6429 2010-12-08  Andrew Cohen  <cohen@andy.bu.edu>
6430
6431         * nnir.el (nnir-retrieve-headers): Use rassq when comparing article
6432         ids.
6433         (nnir-run-gmane): Simplify groupspec formatting.
6434         (nnir-request-expire-articles): New function.
6435
6436 2010-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6437
6438         * nnimap.el (nnimap-parse-flags): Tweak VANISHED regexp to avoid regexp
6439         overflow, possibly.
6440
6441         * shr.el (shr-tag-table-1): Use bg/gfcolor specs on tables.
6442         (shr-render-td): Handle td style="" better.
6443         (shr-tag-table): Use the color from the style sheet.
6444         (shr-render-td): Make sure we copy over all the overlays, too.
6445
6446 2010-12-07  Andrew Cohen  <cohen@andy.bu.edu>
6447
6448         * nnir.el (nnir-run-gmane): Restore sub-optimal test for gmane server.
6449         (nnir-request-article): Improve article retrieval.
6450
6451 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6452
6453         * mm-util.el (mm-extra-numeric-entities): New variable.
6454
6455         * mm-url.el (mm-url-decode-entities):
6456         * mm-decode.el (mm-shr): Use it to decode extra numeric entities.
6457
6458         * lpath.el: Fbind completion-at-point for Emacs 22 and XEmacs.
6459
6460 2010-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6461
6462         * message.el: Use completion-at-point.
6463         (message-completion-function): New fun, extracted from message-tab.
6464         (message-mode): Use it for completion-at-point-functions.
6465         (message-tab): Use it and completion-at-point.
6466
6467 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6468
6469         * shr.el (shr-find-fill-point): Don't break a line after a kinsoku-bol
6470         character if a non-breakable character follows.
6471
6472 2010-12-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6473
6474         * proto-stream.el (proto-stream-open-tls): Return nil if we don't get
6475         any stream.
6476
6477         * shr.el (shr-tag-font): Colorize the region.
6478         (shr-tag-body): Ditto.
6479         (shr-tag-font): Actually let the styles be inherited instead of
6480         overwriting them.
6481         (shr-tag-font): Get the background color right.
6482         (shr-tag-style): Ignore all <style> tags for the moment.
6483
6484         * gnus-int.el (gnus-request-thread): Rework to take a header instead of
6485         a Message-ID to avoid having nnimap depend on gnus-sum.
6486
6487         * shr.el (shr-descend): Only colorize something if we have a node that
6488         sets colors.
6489
6490 2010-12-06  Julien Danjou  <julien@danjou.info>
6491
6492         * shr.el (shr-render-td): Render td content with shr-descend, so style
6493         will be applied to <td> too.
6494         (shr-colorize-region): Colorize region even if we only have a background.
6495         (shr-tag-body): Fix color and background color inheritance.
6496         Do not recolorize after shr-generic.
6497         (shr-tag-font): Let shr-generic colorize via inheritance.
6498
6499 2010-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6500
6501         * shr.el (shr-find-fill-point): Don't regard apostrophe as kinsoku-bol.
6502
6503 2010-12-06  Andrew Cohen  <cohen@andy.bu.edu>
6504
6505         * nnir.el (nnir-request-move-article): Remove obsolete code.
6506
6507 2010-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6508
6509         * gnus-util.el (gnus-macroexpand-all): Use eval-and-compile.
6510
6511 2010-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6512
6513         * gnus-sum.el (gnus-summary-respool-article): The completion function
6514         expects a list instead of an alist.
6515
6516         * nntp.el (nntp-snarf-error-message): nnheader-report takes a format
6517         string as the parameter.
6518
6519         * gnus.el (gnus-valid-select-methods): Allow nnimap to respool.
6520
6521         * shr.el (shr-stylesheet): New dynamic variable for cascading the
6522         styles.
6523         (shr-colorize-region): New function.
6524         (shr-insert-background-overlay): Remove.
6525         (shr-render-td): Background setting should be taken care of on a higher
6526         level.
6527         (shr-tag-body): Use post-hoc colorizations.
6528         (shr-tag-body): Set up a style sheet based on bgcolor/fgcolor.
6529         (shr-put-color-1): Don't overwrite old colors.
6530         (shr-colorize-region): When the background color isn't explicit, use
6531         a fixed background.
6532
6533         * gnus-util.el (gnus-output-to-mail): Require nnmail before using
6534         nnmail variables.
6535
6536 2010-12-05  Bjørn Mork  <bjorn@mork.no>
6537
6538         * nnimap.el (nnimap-process-expiry-targets): Avoid downloading articles
6539         unless necessary.
6540
6541 2010-12-05  Andrew Cohen  <cohen@andy.bu.edu>
6542
6543         * nnir.el (nnir-run-gmane): Use more careful test for gmane nntp
6544         server.
6545
6546 2010-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6547
6548         * gnus-html.el (gnus-html-put-image): Use widget instead of local maps
6549         so that TAB works.
6550
6551         * gnus-sum.el (gnus-summary-show-article): Reverse the meanings of `C-u
6552         C-u g' and `C-u g' so that `C-u g' does what it traditionally did.
6553
6554         * shr.el (shr-urlify): Show the URL before the title to avoid
6555         misleading URLs.
6556
6557 2010-12-04  Adam Sjøgren  <asjo@koldfront.dk>
6558
6559         * shr.el (shr-urlify): Display the title in <a> tags.
6560
6561 2010-12-04  Andrew Cohen  <cohen@andy.bu.edu>
6562
6563         * nnir.el (nnir-categorize): Replace mapcar with mapc.
6564
6565 2010-12-03  Andrew Cohen  <cohen@andy.bu.edu>
6566
6567         * nnir.el: Rearrange code to allow macros to be autoloaded by
6568         gnus-sum.el.
6569         (nnir-retrieve-headers-override-function): Make this variable
6570         customizable.
6571         (nnir-retrieve-headers): Remove obsolete subject-mangling code.
6572
6573         * gnus-sum.el (nnir-article-group,nnir-article-rsv): Autoload macros
6574         from nnir.el.
6575
6576 2010-12-03  Julien Danjou  <julien@danjou.info>
6577
6578         * gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
6579
6580 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6581
6582         * gnus-util.el (gnus-macroexpand-all): Don't modify argument;
6583         allow optional argument `environment'.
6584
6585 2010-12-03  Glenn Morris  <rgm@gnu.org>
6586
6587         * mm-extern.el (message-goto-body): Update declaration.
6588
6589 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6590
6591         * gnus-util.el (gnus-macroexpand-all): New function.
6592
6593         * gnus-sum.el (gnus-summary-line-format-alist): Use gnus-macroexpand-all
6594         instead of macroexpand-all that is unavailable in XEmacs.
6595
6596 2010-12-02  Andrew Cohen  <cohen@andy.bu.edu>
6597
6598         * nnir.el (nnir-summary-line-format): New variable.
6599         (nnir-mode): Use it.
6600         (nnir-artlist-*,nnir-aritem-*): Reimplement as macros.
6601         (nnir-article-ids): Reimplement as defsubst.
6602         (nnir-retrieve-headers): Don't mangle the subject header.
6603         (nnir-run-imap): Use 100 as RSV score.
6604         (nnir-run-find-grep): Fix for full server searching.
6605         (nnir-run-gmane): Better restriction to gmane groups.
6606
6607         * gnus-sum.el (gnus-summary-line-format-alist): Add specs for nnir
6608         summary buffers.
6609
6610 2010-12-02  Julien Danjou  <julien@danjou.info>
6611
6612         * gnus-win.el (gnus-configure-frame): Remove old compatibility code.
6613
6614         * gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
6615
6616         * gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting
6617         support.
6618
6619 2010-12-01  Andrew Cohen  <cohen@andy.bu.edu>
6620
6621         * nnir.el: Update to handle the registry better.
6622         (autoload): Silence byte-compiler.
6623         (nnir-open-server): Add a hook for nnir groups.
6624         (nnir-request-move-article): Don't mangle the header.  Better to use
6625         formatting variables (which will be added in the future).
6626         (nnir-registry-action): Update the registry using the original article
6627         group name.
6628         (nnir-mode): Install nnir-specific hooks for updating the registry.
6629
6630         * gnus-sum.el
6631         (gnus-article-original-subject,gnus-newsgroup-original-name):
6632         Remove obsolete variables.
6633         (gnus-summary-move-article): Remove use of obsolete variables.
6634         (gnus-summary-local-variables): Make move and delete hooks local to
6635         summary buffers.
6636
6637 2010-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6638
6639         * rtree.el: New file.
6640
6641 2010-12-01  Julien Danjou  <julien@danjou.info>
6642
6643         * message.el (message-user-organization): Do not use
6644         gnus-local-organization.
6645
6646         * gnus.el: Remove gnus-local-organization.
6647
6648         * gnus-msg.el: Remove nastygram thing.
6649
6650 2010-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
6651
6652         * nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark
6653         funcall.
6654
6655 2010-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6656
6657         * gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of
6658         names.
6659
6660         * shr.el (shr-find-fill-point): Don't break line between kinsoku-bol
6661         characters.
6662
6663         * gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding
6664         to t of inhibit-read-only since it is inside gnus-with-article-headers.
6665         Suggested by Štěpán Němec <stepnem@gmail.com>.
6666         (gnus-gravatar-transform-address): Use mail-extract-address-components
6667         that supports non-ASCII names rather than mail-header-parse-addresses.
6668
6669 2010-11-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6670
6671         * proto-stream.el (open-protocol-stream): All starttls connections are
6672         handled by the network handler.
6673
6674 2010-11-30  Julien Danjou  <julien@danjou.info>
6675
6676         * nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
6677         (nnimap-open-connection-1): Fix PREAUTH.
6678
6679         * gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
6680
6681 2010-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6682
6683         * shr.el (shr-char-breakable-p, shr-char-nospace-p)
6684         (shr-char-kinsoku-bol-p, shr-char-kinsoku-eol-p): New macros.
6685         (shr-insert): Use them.
6686         (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
6687
6688 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
6689
6690         * nnir.el (nnir-request-move-article): Bail out if original group
6691         doesn't support article moves.
6692         (nnir-get-active): Improve active list retrieval.
6693
6694 2010-11-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6695
6696         * shr.el (shr-find-fill-point): Don't break before apostrophes.
6697
6698 2010-11-29  Binjo  <binjo.cn@gmail.com>  (tiny change)
6699
6700         * nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't
6701         seem to accept strings-with-numbers as port numbers.
6702
6703 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
6704
6705         * gnus-sum.el (gnus-summary-delete-article): If delete fails don't
6706         change the registry.
6707
6708 2010-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6709
6710         * nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of
6711         delete-dups that is not available in XEmacs 21.4.
6712
6713         * mm-util.el (mm-delete-duplicates): Add comment.
6714
6715 2010-11-28  Andrew Cohen  <cohen@andy.bu.edu>
6716
6717         * nnir.el (nnir-ignored-newsgroups): New variable.
6718         (nnir-get-active): Use it.
6719
6720 2010-11-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6721
6722         * proto-stream.el (proto-stream-open-network): Add some comments.
6723
6724         * nntp.el (nntp-open-connection): Provide a :success condition.
6725
6726         * nnimap.el (nnimap-open-connection-1): Ditto.
6727
6728         * proto-stream.el (proto-stream-open-network): See what the response to
6729         the STARTTLS command is.
6730
6731         * nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for
6732         backwards compatibility).
6733         (nnimap-open-connection-1): Really respect nnimap-server-port.
6734
6735         * proto-stream.el (proto-stream-open-network): When doing opportunistic
6736         TLS upgrades we don't really care about the identity of the peer.
6737         (proto-stream-open-network): Force starttls.el to use gnutls-cli, since
6738         that what we've checked for.
6739         (proto-stream-always-use-starttls): Only default to t if
6740         open-gnutls-stream exists.
6741         (proto-stream-open-network): If STARTTLS failed, then just open a
6742         normal connection.
6743         (proto-stream-open-network): Wait until the greeting before doing
6744         STARTTLS.
6745
6746         * nntp.el (nntp-open-connection): Report what the connection error is.
6747
6748         * proto-stream.el (open-protocol-stream): Rename from
6749         open-proto-stream.
6750
6751 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6752
6753         * nnimap.el (nnimap-stream): Change default to `undecided'.
6754         (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl
6755         first, and then network.
6756         (nnimap-open-connection-1): Respect nnimap-server-port.
6757         (nnimap-open-connection): Be more backwards-compatible.
6758
6759         * proto-stream.el (proto-stream-always-use-starttls): New variable.
6760         (proto-stream-open-starttls): De-duplicate the starttls code.
6761         (proto-stream-open-starttls): Folded back into the main function.
6762         (proto-stream-open-network): Fix typo in the gnutls path.
6763         (proto-stream-command): Refactor out.
6764
6765         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
6766
6767         * proto-stream.el (proto-stream-open-starttls): Actually implement the
6768         starttls.el STARTTLS.
6769
6770         * color.el (color-lab->srgb): Fix function call name.
6771
6772         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
6773         if we're using tls.el.
6774         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
6775         built in, then don't try to establish a STARTTLS connection.
6776
6777         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
6778         servers.
6779
6780         * proto-stream.el (open-proto-stream): Use network, not stream.
6781         (open-proto-stream): Add a way to specify what the end of a command is.
6782
6783         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
6784         connections types.
6785         (nntp-open-network-stream): Remove.
6786         (nntp-open-ssl-stream): Remove.
6787         (nntp-open-tls-stream): Remove.
6788         (nntp-ssl-program): Remove.
6789
6790         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
6791
6792 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
6793
6794         * nnir.el: Fix typos.
6795         (nnir-retrieve-headers-override-function): Rename variable to reflect
6796         new semantics.
6797         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
6798         macros.
6799         (nnir-request-article, nnir-request-move-article): Use them.
6800         (nnir-categorize): New function.
6801         (nnir-run-query): Use it.
6802         (nnir-retrieve-headers): Rewrite to batch header retrieval.
6803         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
6804         sorted.
6805         (nnir-group-full-name): Use gnus-group-full-name instead.
6806         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
6807         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
6808
6809 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6810
6811         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
6812
6813         * proto-stream.el: New library to provide protocol-specific
6814         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
6815         protocols.
6816         (open-proto-stream): Complete the documentation.
6817         (proto-stream-open-network): Fix some typos.
6818
6819         * nnimap.el (nnimap-open-connection): Use it.
6820
6821 2010-11-27  Yuri Karaban  <tech@askold.net>  (tiny change)
6822
6823         * pop3.el (pop3-open-server): Read server greeting before starting TLS
6824         negotiation.
6825
6826 2010-11-26  Julien Danjou  <julien@danjou.info>
6827
6828         * color.el: Rename various rgb functions to srgb.
6829
6830 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6831
6832         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
6833         names.
6834
6835 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
6836
6837         * shr.el (shr-insert): Revert last change.
6838         (shr-find-fill-point): Never leave point being at bol;
6839         relax the kinsoku limitation when rendering tables.
6840
6841 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6842
6843         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
6844         results from -accept-article.
6845
6846         * shr-color.el: Require cl when compiling.
6847
6848         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
6849         checkin.
6850
6851         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
6852
6853         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
6854
6855         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
6856         'add and 'delete to set backend marks.
6857
6858         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
6859
6860         * nnheader.el (nnheader-update-marks-actions): Refactor out.
6861
6862         * nntp.el (nntp-request-set-mark): Use it.
6863
6864         * nnfolder.el (nnfolder-request-set-mark): Ditto.
6865
6866         * nnml.el (nnml-request-set-mark): Ditto.
6867
6868         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
6869         introduces regressions in article selection.
6870         (nnimap-find-uid-response): New function.
6871         (nnimap-request-accept-article): Use the UID returned, if any.
6872         (nnimap-request-move-article): Use the UID returned, if any.
6873         (nnimap-get-groups): Reimplement to work with folded lines.
6874         (nnimap-find-uid-response): The UID is the last element in the list.
6875         (nnimap-request-set-mark): Extend syntax with 'set.
6876
6877         * nnml.el (nnml-request-set-mark): Ditto.
6878
6879         * nnfolder.el (nnfolder-request-set-mark): Ditto.
6880
6881         * nntp.el (nntp-request-set-mark): Ditto.
6882
6883 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6884
6885         * message.el (message-called-interactively-p): A temporary macro.
6886         (message-goto-body): Use it temporarily.
6887
6888 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6889
6890         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
6891         (nnimap-last-response-string): Unfold quoted lines, if they exist.
6892         (nnimap-last-response-string): Fix last unfolding fix.
6893
6894 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6895
6896         * shr.el (shr-insert): Fix the way to fold lines.
6897
6898 2010-11-25  Julien Danjou  <julien@danjou.info>
6899
6900         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex.
6901
6902         * color.el: Rename from color-lab.el
6903         (color-rgb->hex): Add.
6904         (color-complement): Add.
6905         (color-complement-hex): Add.
6906
6907         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
6908
6909 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6910
6911         * shr-color.el (shr-color-visible): Don't bug out if the color names
6912         don't exist.
6913
6914 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6915
6916         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
6917         assuming that article displaying or another mml-preview may be
6918         interrupted for an error or for the like.
6919
6920         * shr.el (shr-get-background): Fix argument name.
6921
6922 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6923
6924         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
6925
6926         * gnus-sum.el (gnus-summary-include-articles): New function.
6927
6928         * message.el (message-goto-body): called-interactively-p needs a
6929         parameter, so use `any'.
6930
6931         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
6932         clear marks before moving, since they're synced from the Gnus side
6933         first.
6934
6935         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
6936         (gnus-summary-move-article): Copy over all marks before moving, so that
6937         IMAP doesn't think a new article has arrived.
6938
6939 2010-11-24  Julien Danjou  <julien@danjou.info>
6940
6941         * shr.el (shr-insert-background-overlay): Fix typo.
6942         (shr-render-td): Copy the background before rendering.
6943
6944         * shr-color.el (shr-color-visible): Fix docstring.
6945
6946         * shr.el (shr-tag-table): Add bgcolor support.
6947         (shr-render-td): Add bgcolor support.
6948         (shr-get-background): Add.
6949         (shr-insert-foreground-overlay): Use shr-get-background.
6950
6951         * message.el (message-goto-body): Use called-interactively-p.
6952         (message-in-body-p): message-goto-body returns point.
6953
6954 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6955
6956         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
6957         Fixes something or other in Emacs 23, and is backwards compatible.
6958
6959         * message.el (message-goto-body): Remove the <#secure special-casing,
6960         which is too special.
6961
6962         * shr.el (shr-parse-style): Drop !important from styles.
6963
6964 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
6965
6966         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
6967         this function to return incorrect results when calling it with an
6968         explicit article argument different from
6969         (gnus-summary-article-number).
6970
6971 2010-11-24  Julien Danjou  <julien@danjou.info>
6972
6973         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
6974         (shr-tag-body): Add background support.
6975         (shr-descend): Add background support.
6976         (shr-tag-title): Add.
6977
6978         * shr-color.el (shr-color-visible): Really return original background
6979         if fixed.
6980
6981 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6982
6983         * shr.el (shr-color-check): Protect against non-existent color names.
6984
6985 2010-11-24  Julien Danjou  <julien@danjou.info>
6986
6987         * color-lab.el: Require 'cl when compiling.
6988
6989         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
6990
6991         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
6992         matched part.
6993
6994         * color-lab.el: Fix all expt calls to use float type.
6995
6996 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6997
6998         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
6999         expression to shr-color-check as is.
7000
7001         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
7002
7003         * color-lab.el: Add coding cookie.
7004         (float-pi): Use eval-and-compile.
7005
7006         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
7007         compiled for Emacsen having no `libxml-parse-html-region' support.
7008
7009 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7010
7011         * shr.el (shr-insert-color-overlay): Split stuff like
7012         "#444444 !important" to find the real color.
7013         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
7014         parse <font color="red"> entries.
7015
7016 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
7017
7018         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
7019         point when parsing headers.
7020
7021         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
7022         is positioned properly when parsing headers.
7023
7024 2010-11-23  Julien Danjou  <julien@danjou.info>
7025
7026         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
7027
7028         * shr-color.el (shr-color->hexadecimal): Add support for color names.
7029
7030         * shr.el (shr-parse-style): Replace \n with space in style parsing.
7031
7032         * shr-color.el (shr-color-hsl-to-rgb-fractions):
7033         Use shr-color-hue-to-rgb.
7034         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
7035
7036 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7037
7038         * shr.el (shr-color->hexadecimal): Autoload.
7039         (shr-descend): Add color to all tags.
7040
7041 2010-11-22  Julien Danjou  <julien@danjou.info>
7042
7043         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
7044         shr-color->hexadecimal.
7045
7046         * shr-color.el (shr-color->hexadecimal): Add converting functions for
7047         RGB() or HSL() color representation.
7048
7049         * shr.el (shr-tag-font): Add.
7050         (shr-tag-color-check): New function to get better colors.
7051         (shr-tag-insert-color-overlay): Factorize code between tag-font and
7052         tag-span.
7053
7054         * shr-color.el: New file.
7055
7056         * color-lab.el: New file.
7057
7058         * gnus-art.el (gnus-url-mailto): Do not downcase args.
7059
7060 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
7061
7062         * nnir.el: Fix typo in comments.
7063         (nnir-run-imap): Simplify code.  No need to reverse artlist.
7064         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
7065
7066 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7067
7068         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
7069
7070         * nnimap.el (nnimap-get-capabilities): Refactor out.
7071         (nnimap-open-connection): Re-request capabilities after STARTTLS.
7072
7073 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
7074
7075         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
7076         appearing when `mm-uu-hide-markers' is nil.
7077
7078 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7079
7080         * nnimap.el (nnimap-unselect-group): Make into its own function.
7081         (nnimap-request-rename-group): Unselect group before renaming.
7082         This had gotten lost somewhere.
7083         (nnimap-request-accept-article): Keep track of examined groups, and
7084         unselect the group before APPENDing to read-only groups.
7085         (nnimap-request-move-article): Clear flags before moving so that they
7086         can be re-set later.
7087
7088 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7089
7090         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
7091         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
7092
7093 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7094
7095         * gnus-art.el (gnus-mime-display-single):
7096         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images):
7097         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
7098         parameter.
7099
7100 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7101
7102         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
7103         (shr-table-vertical-line): New variable.
7104         (shr-insert-table): Use it.
7105
7106 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7107
7108         * gnus-html.el (gnus-html-wash-images): Don't display images if
7109         gnus-inhibit-images is non-nil; register displayer for cid images.
7110         (gnus-html-display-image): Work for cid image.
7111         (gnus-html-insert-image): Allow arguments.
7112         (gnus-html-put-image): Inhibit read-only.
7113         (gnus-html-prefetch-images): Don't prefetch images if
7114         gnus-inhibit-images is non-nil.
7115
7116 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7117
7118         * shr.el (shr-put-image): Break lines when inserting big pictures.
7119
7120 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7121
7122         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
7123         sender, thanks Katsumi Yamaoka.
7124
7125 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
7126
7127         * nnir.el (nnir-run-imap): Reverse the article list for each group
7128         rather than the whole list.
7129
7130 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7131
7132         * shr.el (shr-image-displayer): Protect function against non-existent
7133         image source.
7134
7135         * gnus-art.el (gnus-inhibit-images): New user option.
7136         (gnus-mime-display-single): Don't display image if it is non-nil.
7137
7138         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
7139         gnus-inhibit-images.
7140
7141         * shr.el (shr-image-displayer): New function.
7142         (shr-tag-img): Use it.
7143
7144 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7145
7146         * mml2015.el (mml2015-epg-sign): Use From header.
7147
7148 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7149
7150         * gnus-html.el (gnus-html-wash-images): Register a displayer.
7151
7152         * gnus-util.el (gnus-find-text-property-region): Return markers.
7153
7154         * shr.el (shr-tag-img): Put a displayer in the text property.
7155
7156         * gnus-util.el (gnus-find-text-property-region): New utility function.
7157
7158         * gnus-html.el (gnus-html-display-image): Make the alt optional.
7159         (gnus-html-show-images): Remove.
7160
7161         * gnus-art.el (gnus-article-show-images): New, more general function.
7162
7163         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
7164         image url text properties.
7165
7166         * shr.el: Ditto.
7167
7168         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
7169         gnus-agent-auto-agentize-methods is set.  Which it isn't.
7170
7171 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
7172
7173         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
7174         work for two or more articles.
7175
7176 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7177
7178         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
7179         divide an image that's in an html article to two or more when washing
7180         non-ASCII characters in alt text of it.
7181
7182 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7183
7184         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
7185         smime-decrypt-region using function argument.
7186         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
7187
7188         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
7189
7190         * smime.el (smime-decrypt-region): Catch it.
7191
7192 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7193
7194         * smime.el (smime-mode-map): Move initialization into declaration.
7195         (gnus-run-mode-hooks): Don't autoload.
7196         (smime-mode): Use define-derived-mode.
7197
7198 2010-11-11  Glenn Morris  <rgm@gnu.org>
7199
7200         * smime.el (from): Restrict declaration to XEmacs.
7201
7202         * nnir.el (gnus-group-topic-name): Autoload.
7203
7204 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7205
7206         * shr.el (shr-insert): Don't break long line if it is because of
7207         kinsoku-bol characters in the line end.
7208
7209 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
7210
7211         * nnir.el (nnir-request-move-article): Fix to provide original group
7212         and subject.
7213         (nnir-warp-to-article): Don't fail on articles whose headers haven't
7214         been retrieved.
7215
7216         * gnus-sum.el (gnus-summary-move-article): Use original group and
7217         subject for virtual articles such as those in an nnir summary buffer.
7218
7219 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7220
7221         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
7222         least 21.5).
7223
7224         * smime.el (from): Declare it again for XEmacs.
7225
7226 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7227
7228         * message.el (message-resend): Don't disable encoding unless it's
7229         already encoded.
7230
7231         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
7232         low-numbered articles.
7233
7234 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7235
7236         * rfc2047.el (rfc2047-syntax-table): Simplify.
7237
7238         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
7239
7240         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
7241         set-char-table-range for XEmacs.
7242
7243 2010-11-10  Glenn Morris  <rgm@gnu.org>
7244
7245         * time-date.el (time-to-seconds): Always an alias on Emacs,
7246         never a real function.
7247         (with-no-warnings): Remove compat stub, now unused.
7248         (time-less-p): Doc fix.
7249         (time-to-number-of-days): Simplify.
7250
7251         * smime.el (from): Remove unused declaration.
7252
7253         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
7254         (gnus-float-time): On Emacs, always an alias.
7255
7256         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
7257         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
7258
7259 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7260
7261         * dgnushack.el: Don't use ignore-errors in the top level form since it
7262         is unavailable in XEmacs even if cl is loaded.
7263
7264         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
7265
7266 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7267
7268         * shr.el (browse-url-mailto): Autoload.
7269
7270         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
7271
7272         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
7273         regexp doesn't need quoting.
7274
7275 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
7276
7277         * message.el (message-subject-trailing-was-ask-regexp)
7278         (message-subject-trailing-was-regexp): Match was: in addition to was.
7279
7280 2010-11-09  Glenn Morris  <rgm@gnu.org>
7281
7282         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
7283         (nnbabyl-check-mbox): Use point-at-bol.
7284
7285 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7286
7287         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
7288
7289         * message.el (message-mailto): New function.
7290         (message-mailto): Should accept other parameters.
7291         (message-mailto): Remove since it duplicates browse-url-mailto
7292         functionality.
7293
7294 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7295
7296         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
7297         methods.
7298         (gnus-read-active-file): Ditto.
7299
7300         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
7301         ": " from the prompt.
7302         (gnus-group-make-group): Ditto.
7303
7304 2010-11-07  Glenn Morris  <rgm@gnu.org>
7305
7306         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
7307         (gnus-bookmark-kill-line): Use point-at-eol.
7308
7309 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7310
7311         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
7312         asterisks in From header.
7313
7314 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7315
7316         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
7317         string to avoid making the From headers syntactically invalid.
7318
7319         * message.el (message-send-mail): Don't insert courtesy messages if the
7320         message already has List-Post and List-ID messages.
7321
7322 2010-11-06  Glenn Morris  <rgm@gnu.org>
7323
7324         * gnus-art.el (gnus-treat-article): Give dynamic local variables
7325         `condition', `type', `length' a prefix.
7326         (gnus-treat-predicate): Update for above name changes.
7327
7328 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
7329
7330         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
7331         binding.  Handled by `gnus-summary-refer-thread' instead.
7332         (nnir-warp-to-article): New backend function.
7333
7334         * nnimap.el (nnimap-request-thread): Force dependency updating.
7335
7336         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
7337         (gnus-summary-refer-thread): Rework to improve thread-referral.
7338
7339         * gnus-int.el (gnus-warp-to-article): New function.
7340
7341         * gnus-sum.el (gnus-summary-article-map): Bind it.
7342
7343 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
7344
7345         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
7346         gnus-summary-refer-thread.
7347
7348         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
7349         headers.
7350         (gnus-summary-limit-include-thread): Prevent articles in thread from
7351         being cut in gnus-cut-threads.
7352         (gnus-summary-refer-thread): Limit retrieved headers to those in
7353         thread.
7354
7355 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7356
7357         * message.el (message-send-mail): Use the value of
7358         message-courtesy-message from the message buffer.
7359
7360         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
7361
7362         * shr.el (shr-browse-url): Implement mailto: URLs.
7363
7364         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
7365         "raw".
7366
7367         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
7368         if it's already selected.
7369
7370         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
7371
7372 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7373
7374         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
7375         to measure the length and truncate alt text.
7376
7377 2010-11-03  Glenn Morris  <rgm@gnu.org>
7378
7379         * nndiary.el (nndiary-generate-nov-databases-1)
7380         (nndiary-generate-active-info): Rename dynamic variable `files' to
7381         something less generic.
7382
7383 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
7384
7385         * nnir.el (nnir-request-move-article): Call the underlying backend to
7386         move articles from nnir.
7387
7388 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7389
7390         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
7391
7392 2010-11-02  Julien Danjou  <julien@danjou.info>
7393
7394         * nnir.el: Remove wais support.
7395
7396 2010-11-02  Glenn Morris  <rgm@gnu.org>
7397
7398         * gnus-html.el: Reorder requirements to quieten compiler.
7399
7400 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
7401
7402         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
7403         properly for XEmacs as well.
7404         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
7405         (gnus-article-natural-long-line-p): Use window-width rather than
7406         frame-width.
7407
7408 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
7409
7410         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
7411         (nnir-read-parms): Don't modify query.
7412         (nnir-run-query): Add ability to search topic on current line.
7413         (nnir-get-active): Clean up.
7414
7415 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7416
7417         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
7418         degenerate articles.
7419
7420         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
7421         (gnus-print-buffer): Just print the buffer as is, without any copying
7422         to a buffer and then re-highlighting.
7423
7424         * nnimap.el (nnimap-request-group): Store the new updated info.
7425         (nnimap-request-group): Select the group when we don't know whether it
7426         exists or not.
7427
7428         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
7429         groups.
7430
7431         * gnus-group.el (gnus-group-find-new-groups): Display all the new
7432         groups.
7433
7434         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
7435         groups.
7436
7437         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
7438         long-lines case by only filling the long lines.
7439
7440         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
7441         (bug #7311).
7442
7443 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7444
7445         * shr.el: No need to declare `declare-function' since shr.el is for
7446         only Emacsen that provide `libxml-parse-html-region'.
7447
7448         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
7449         effective only in a file it is referred to.
7450
7451 2010-11-01  Glenn Morris  <rgm@gnu.org>
7452
7453         * mm-util.el (gnus-completing-read): Autoload.
7454         (mm-read-coding-system): Simplify Emacs definition.
7455
7456         * nnmail.el (gnus-activate-group):
7457         * nnimap.el (gnutls-negotiate):
7458         * nntp.el (netrc-parse): Fix declarations.
7459
7460 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7461
7462         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
7463         string-match-p in Emacs >=23.
7464
7465         * gnus-msg.el (gnus-configure-posting-styles):
7466         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
7467
7468 2010-11-01  Glenn Morris  <rgm@gnu.org>
7469
7470         * nnir.el (declare-function): Add compat stub.
7471         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
7472         (nnir-run-gmane): Require 'mm-url.
7473
7474         * mm-util.el (mm-string-to-multibyte): Simplify.
7475
7476         * shr.el (declare-function): Add compat stub.
7477         (url-cache-create-filename): Declare.
7478         (mm-disable-multibyte, widget-convert-button): Autoload.
7479
7480         * smime.el (ldap-search): Declare.
7481         (smime-cert-by-ldap-1): Require ldap on Emacs.
7482
7483         * nnimap.el: Require nnmail, and gnus-sum when compiling.
7484         (nnimap-keepalive): Use gnus-float-time.
7485
7486         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
7487         (mail-source-delete-crash-box): Use gnus-float-time.
7488
7489         * gnus-dired.el (gnus-completing-read): Autoload.
7490
7491         * mm-view.el (gnus-rescale-image): Autoload.
7492
7493         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
7494
7495         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
7496
7497         * sieve-manage.el: Require 'cl when compiling.
7498
7499         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
7500         (gnus-iswitchb-completing-read): Require iswitchb.
7501         (gnus-select-frame-set-input-focus): Silence compiler.
7502
7503 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7504
7505         * message.el (message-subject-trailing-was-query): Change default to t,
7506         since I think that's what most people want.
7507
7508         * nnimap.el (nnimap-request-accept-article): Erase buffer before
7509         appending for easier debugging.
7510         (nnimap-wait-for-connection): Take a regexp.
7511         (nnimap-request-accept-article): Wait for the continuation line before
7512         sending anything unless we're streaming.
7513
7514         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
7515         leave the header washing to take place.
7516
7517 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
7518
7519         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
7520         regular expression match and replace in posting styles.
7521
7522 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
7523
7524         * nnir.el (gnus-group-make-nnir-group,nnir-run-query): Allow searching
7525         an entire server.
7526         (nnir-get-active): New function.
7527         (nnir-run-imap): Use it.
7528         (nnir-run-gmane): Who knew, gmane search returns an article score!
7529
7530         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
7531         server on the current line with nnir.
7532
7533 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7534
7535         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
7536         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
7537         left edge.
7538         (gnus-article-foldable-buffer): Skip past the prefix when determining
7539         raggedness.
7540
7541         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
7542         the raw article, and change `C-u g' to show the article without doing
7543         treatments.
7544
7545         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
7546         on to `gnus-treat-article'.
7547         (gnus-inhibit-article-treatments): New variable.
7548
7549         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
7550
7551         * gnus-art.el (gnus-treatment-function-alist): Have
7552         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
7553         (gnus-treat-fill-long-lines): Change default to fill all text/plain
7554         sections.
7555
7556         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
7557         parameter.
7558         (gnus-article-fill-cited-long-lines): New function.
7559         (gnus-article-fill-cited-article): Allow filling only long sections.
7560
7561         * shr.el (shr-find-fill-point): Don't break lines between punctuation
7562         and non-punctuation (like after the apostrophe in "'We").
7563
7564         * gnus-sum.el (gnus-summary-select-article): Make sure
7565         gnus-original-article-buffer is alive.
7566
7567         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
7568         reflect the order they're in in the digest.
7569
7570         * gnus.el (gnus-group-startup-message): Move point to the start of the
7571         buffer.
7572
7573         * nnimap.el (nnimap-capability): New function.
7574         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
7575         is set.
7576
7577 2010-10-31  David Engster  <dengste@eml.cc>
7578
7579         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
7580         conform with changes to gnus-completing-read.
7581
7582 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7583
7584         * shr.el (shr-tag-img): Output "*" instead of "[img]".
7585
7586 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
7587
7588         * nnir.el: Move defvar, defcustom around to keep file organized
7589         and keep byte-compiler quiet.
7590         (nnir-read-parms): Accept search-engine as arg.
7591         (nnir-run-query): Pass search-engine as arg.
7592         (nnir-search-engine): Remove.
7593
7594 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7595
7596         * shr.el (shr-generic): The text nodes should be text, not :text.
7597
7598         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
7599         later in the file.
7600
7601 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
7602
7603         * nnir.el: General clean up.  Allow searching with multiple engines.
7604         Allow separate extra-parameters for each engine.
7605         Batch queries when possible.
7606         (nnir-imap-default-search-key,nnir-method-default-engines):
7607         Add customize interface.
7608         (nnir-run-gmane): New engine.
7609         (nnir-engines): Use it.  Qualify all prompts with engine name.
7610         (nnir-search-engine): Remove global variable.
7611         (nnir-run-hyrex): Restore for now.
7612         (nnir-extra-parms,nnir-search-history): New variables.
7613         (gnus-group-make-nnir-group): Use them.
7614         (nnir-group-server): Remove in favor of gnus-group-server.
7615         (nnir-request-group): Avoid searching twice.
7616         (nnir-sort-groups-by-server): New function.
7617
7618 2010-10-30  Julien Danjou  <julien@danjou.info>
7619
7620         * gnus-group.el: Remove gnus-group-fetch-control.
7621
7622         * gnus-start.el (gnus-find-new-newsgroups):
7623         Remove gnus-check-first-time-used.
7624
7625         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
7626
7627 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
7628
7629         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
7630         set on groups that don't have \* permanentflags.
7631
7632 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7633
7634         * shr.el (shr-tag-span): Drop colorization of regions since we don't
7635         control the background color.
7636         (shr-tag-img): Ignore very small web bug type images.
7637         (shr-put-image): Add help-echo alt texts to the images.
7638         (shr-tag-video): Show the video poster image.
7639
7640 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7641
7642         * shr.el (shr-table-depth): New variable.
7643         (shr-tag-table-1): Only insert the images after the top-level table.
7644
7645         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
7646
7647         * gnus-util.el (gnus-list-memq-of-list): New function.
7648
7649         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
7650         selected.
7651         (nnimap-unsplittable-articles): New slot.
7652         (nnimap-new-articles): Use it.
7653
7654 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
7655
7656         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
7657         move to the previous line on `M-g'.
7658
7659 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7660
7661         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
7662         *-request-group, which seems unnecessary.
7663
7664         * nnimap.el (nnimap-quote-specials): Function copied over from
7665         imap.el.
7666         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
7667         they support that.  Suggested by Tom Regner.
7668
7669 2010-10-29  Julien Danjou  <julien@danjou.info>
7670
7671         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
7672         defalias.
7673         (gnus-summary-delete-marked-with): Remove obsolete defalias.
7674
7675         * gnus.el: Remove `gnus-nntp-service' variable.
7676         (gnus-secondary-servers): Make obsolete.
7677         (gnus-nntp-server): Make obsolete.
7678
7679         * gnus-start.el (gnus-1): Remove x-splash calls.
7680
7681         * gnus-ems.el (gnus-x-splash): Remove.
7682
7683         * gnus.el (gnus-group-startup-message): Simplify/update code.
7684
7685         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
7686         definition.
7687
7688         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
7689         capability before doing anything.
7690         (gnus-group-insert-group-line): Remove useless
7691         gnus-group-remove-excess-properties.
7692
7693 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7694
7695         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
7696
7697 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7698
7699         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
7700         config after reselecting.
7701
7702 2010-10-28  Julien Danjou  <julien@danjou.info>
7703
7704         * shr.el (shr-put-image): Use point even if only inserting text.
7705         (shr-put-image): Save excursion when inserting alt text on non-graphic
7706         display, so the behavior is the same when we are on a graphic display.
7707
7708         * nnir.el (nnir-run-swish-e): Remove hyrex support.
7709
7710 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7711
7712         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
7713         (gnus-mime-copy-part): Check coding system, not charset.
7714         (gnus-mime-view-part-externally): Never remove part.
7715         (gnus-mime-view-part-internally): Don't remove part here.
7716         (gnus-article-part-wrapper): Make sure MIME tag is visible.
7717         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
7718         multipart/alternative.
7719
7720         * mm-decode.el (mm-display-part): Take optional arg `force'.
7721
7722 2010-10-26  Julien Danjou  <julien@danjou.info>
7723
7724         * gnus-group.el (gnus-group-default-list-level): Add this function to
7725         compute the default list level.
7726         (gnus-group-default-list-level): Add possibility to use a function.
7727
7728 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7729
7730         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
7731
7732         * gnus-group.el (gnus-group-completing-read)
7733         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
7734         gnus-replace-in-string.
7735
7736 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7737
7738         * shr.el (shr-tag-div): Add.
7739
7740         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
7741
7742 2010-10-25  Julien Danjou  <julien@danjou.info>
7743
7744         * gnus-util.el: Remove `gnus-with-local-quit'.
7745
7746         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
7747
7748 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7749
7750         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
7751         the original article buffer.
7752
7753 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7754
7755         * nnimap.el (nnimap-request-head): New function.
7756         (nnimap-request-move-article): Try to be slightly faster by not
7757         requesting the entire message when moving.
7758         (nnimap-transform-headers): Don't bug out on bodiless articles.
7759         (nnimap-send-command): Have no outstanding messages if the IMAP server
7760         doesn't support streaming.
7761         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
7762
7763 2010-10-24  Julien Danjou  <julien@danjou.info>
7764
7765         * message.el (message-default-headers): Fix type.
7766
7767 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7768
7769         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
7770         prefetching images.
7771
7772         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
7773         backend for unknown groups.  This is mainly useful for nnimap groups.
7774
7775         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
7776         group isn't covered by the agent.
7777
7778 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
7779
7780         * nnir.el (nnir-method-default-engines): New variable.
7781         (nnir-run-query): Use it.
7782         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
7783         (gnus-summary-nnir-goto-thread): Change group if needed.
7784
7785         * gnus-group.el (gnus-group-group-map): Add key binding for
7786         gnus-group-make-nnir-group.
7787
7788 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7789
7790         * shr.el (shr-tag-object): Add.
7791
7792         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
7793         original article buffer live.
7794         (gnus-summary-select-article-buffer):
7795         Mention gnus-widen-article-buffer.
7796
7797 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7798
7799         * shr.el (shr-tag-strong): Add.
7800
7801 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7802
7803         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
7804         group names.  They mess up the group buffer badly.
7805
7806         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
7807
7808         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
7809         instead of the summary one.
7810
7811 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7812
7813         * mml.el (mml-preview): Work properly when editing article.
7814
7815         * gnus-start.el (gnus-read-active-file-1): Don't add method to
7816         gnus-have-read-active-file if it's already been in.
7817
7818 2010-10-22  Tom Tromey  <tromey@redhat.com>
7819
7820         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
7821         gnus-group-completing-read.
7822
7823 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7824
7825         * message.el (message-mode-map): Don't bind M-; to comment region, to
7826         allow the global comment-dwim to work.
7827
7828 2010-10-21  Julien Danjou  <julien@danjou.info>
7829
7830         * message.el (message-setup-1): Allow message-default-headers to be a
7831         function.
7832
7833 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7834
7835         * shr.el (shr-tag-table): Simplify.
7836
7837 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7838
7839         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
7840         to avoid trying to snarf invalid stuff.
7841
7842         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
7843
7844         * gnus.el (gnus-message-archive-group): Quote value.
7845         (gnus-message-archive-group): Mark as changed.
7846
7847         * shr.el (shr-add-font): Don't put the font properties on the newline
7848         or the indentation.
7849
7850         * message.el (message-fix-before-sending): Change options when sending
7851         non-printable characters.
7852
7853         * gnus.el (gnus-message-archive-method): Change the default to
7854         monthly outgoing groups.
7855
7856         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
7857         that have gotten new numbers.
7858
7859         * nnimap.el (nnimap-request-replace-article): New function.
7860
7861 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7862
7863         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
7864         (nnrss-request-article): Don't use special html washing code.
7865
7866 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7867
7868         * shr.el (shr-tag-table): Remove useless nconc.
7869
7870 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7871
7872         * gnus-art.el (article-wash-html): Simplify and remove the charset
7873         stuff.  Use the normal html rendering code instead of the special html
7874         washing code.
7875
7876         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
7877         `gnus-w3m' symbols.
7878         (mm-text-html-washer-alist): Remove.
7879
7880         * mm-decode.el (mm-inline-text-html-renderer): Remove.
7881         (mm-inline-media-tests): Remove use.
7882         (mm-text-html-renderer): Change default to the `shr' symbol.
7883
7884         * mm-view.el (mm-inline-text-html): Remove use.
7885
7886         * gnus-art.el (gnus-blocked-images): New function.  Allow the
7887         `gnus-blocked-images' to be a function.
7888         (gnus-article-wash-function): Remove.
7889
7890 2010-10-20  Julien Danjou  <julien@danjou.info>
7891
7892         * spam.el (spam-list-of-processors): Mark as obsolete.
7893
7894         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
7895         (nnimap-insert-partial-structure): Fix boundary detection.
7896
7897 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
7898
7899         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
7900         run file-truename on remote files.  This can be expensive and even
7901         prevent one from editing drafts if some unrelated buffer has a stale
7902         connection.
7903
7904 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7905
7906         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
7907         kinsoku-eol regardless of shr-kinsoku-shorten.
7908         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
7909         (shr-tag-table): Support caption, thead, and tfoot.
7910
7911 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7912
7913         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
7914         lines.
7915         (shr-save-contents): New command and keystroke.
7916
7917         * nndoc.el (nndoc-type-alist): Add git support.
7918         (nndoc-git-type-p): New function.
7919         (nndoc-transform-git-article): Ditto.
7920         (nndoc-transform-git-headers): Ditto.
7921         (nndoc-transform-git-headers): Generate Subject headers.
7922
7923         * shr.el (shr-parse-style): New function.
7924         (shr-tag-span): Ditto.
7925
7926         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
7927         to `G G' to avoid collisions.
7928
7929 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7930
7931         * shr.el: Load kinsoku if necessary.
7932         (shr-kinsoku-shorten): New internal variable.
7933         (shr-find-fill-point): Make kinsoku shorten text line if
7934         shr-kinsoku-shorten is bound to non-nil.
7935         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
7936         shr-indentation too when testing if table is wider than frame width.
7937         (shr-insert-table): Use `string-width' instead of `length' to measure
7938         text width.
7939         (shr-insert-table-ruler): Make sure indentation is done at bol.
7940
7941 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7942
7943         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
7944         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
7945         undecoded network data.
7946
7947 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7948
7949         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
7950         name in the mode line spec so that the mode line menu works
7951         (bug #2431).
7952
7953         * message.el (message-get-reply-headers): If we're fed `to-address',
7954         then always use that.
7955
7956         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
7957         aren't so wide as to need to switch off the edit menu.
7958
7959         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
7960         binding.  Suggested by Leo <sdl.web@gmail.com> (bug #6613).
7961
7962         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
7963         `M-g'.
7964         (nnimap-update-info): Update flags/read marks even if \* isn't part of
7965         the permanent marks.
7966
7967 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
7968
7969         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
7970         Splitting according to references/in-reply-to obeys the ignore-groups
7971         variable, while splitting by sender and subject do not.
7972
7973 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7974
7975         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
7976         alist, so that we can look for non-Unicode chars.
7977         (article-translate-strings): Allow both character and string maps.
7978
7979 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7980
7981         * shr.el (shr-insert): Don't insert space behind a wide character
7982         categorized as kinsoku-bol, or between characters both categorized as
7983         nospace.
7984
7985 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
7986
7987         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
7988         headers to gnus-newsgroup-headers.
7989
7990 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7991
7992         * shr.el (shr-tag-img): Don't align images -- since we're not
7993         rescaling, this often leads to ugly displays.
7994
7995 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
7996
7997         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
7998         duplicates.
7999
8000 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
8001
8002         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
8003         call.
8004
8005 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8006
8007         * gnus.el: Autoload gnus-html-show-images.
8008
8009         * nnimap.el: Use nnheader-message throughout.
8010
8011         * shr.el (shr-tag-img): Ignore images with no data.
8012
8013 2010-10-15  Julien Danjou  <julien@danjou.info>
8014
8015         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
8016         a possibility to disable format=flow encoding when using hard newlines.
8017
8018 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8019
8020         * shr.el (shr-insert): Remove space inserted before or after a
8021         breakable character or at the beginning or the end of a line.
8022         (shr-find-fill-point): Do kinsoku; find the second best point or give
8023         it up if there's no breakable point.
8024
8025 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8026
8027         * nnimap.el (nnimap-open-connection): Message when opening connection
8028         for debugging purposes.
8029
8030         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
8031         on every setup buffer call to allow this to change from article to
8032         article.
8033
8034         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
8035         buffers where we have a wide table.
8036
8037 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
8038
8039         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
8040         uses *-request-thread.
8041
8042 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8043
8044         * nnimap.el (nnimap-open-connection): Remove %s from openssl
8045         incantation, which is no longer valid.
8046
8047 2010-10-14  Julien Danjou  <julien@danjou.info>
8048
8049         * shr.el: Fix defcustom type (char -> character).
8050
8051 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8052
8053         * nnimap.el (nnimap-open-connection): tls-program should be a list of
8054         programs.
8055
8056 2010-10-14  Julien Danjou  <julien@danjou.info>
8057
8058         * shr.el (shr-tag-a): Use url-link as widget type.
8059
8060         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
8061         `gnus-group-get-icon'.
8062
8063 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8064
8065         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
8066         This should make server editing work better.
8067
8068         * shr.el (shr-find-fill-point): Don't inloop on indented text.
8069
8070         * tls.el (tls-program): Remove spurious %s from openssl.
8071
8072         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
8073         (nnimap-parse-flags): Fix regexp.
8074
8075         * shr.el (shr-find-fill-point): Use a filling algorithm that should
8076         probably work for CJVK text, too.
8077
8078         * nnimap.el (nnimap-extend-tls-programs): Remove.
8079         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
8080
8081         * tls.el (tls-starttls-switches): Remove starttls hack.
8082         (open-tls-stream): Ditto.
8083         (tls-find-starttls-argument): Ditto.
8084
8085 2010-10-13  Julien Danjou  <julien@danjou.info>
8086
8087         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
8088         responses.
8089
8090 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8091
8092         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
8093
8094         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
8095         anything in Emacs.
8096
8097         * shr.el (shr-current-column): Remove buggy and unnecessary function.
8098
8099 2010-10-13  Julien Danjou  <julien@danjou.info>
8100
8101         * shr.el (shr-width): Make shr-width a defcustom with default to
8102         fill-column.
8103         (shr-tag-img): Use shr-width rather than fill-column.
8104
8105 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8106
8107         * dgnushack.el (byte-optimize-apply):
8108         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
8109
8110         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
8111         position when (X-)Faces exist.
8112         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
8113         avatars when called interactively.
8114
8115 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8116
8117         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
8118         gnus-article-x-face-too-ugly is bound.
8119
8120 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8121
8122         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
8123
8124         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
8125         mailbox that doesn't exist.
8126
8127 2010-10-12  Julien Danjou  <julien@danjou.info>
8128
8129         * shr.el (shr-tag-img): Encode URL properly when retrieving.
8130         (shr-get-image-data): Encode URL properly when fetching from cache.
8131         (shr-tag-img): Use aligned-to spaces to align correctly images.
8132
8133         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
8134         before inserting the Gravatar.
8135
8136         * shr.el (shr-tag-img): Add align attribute support for <img>.
8137
8138 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8139
8140         * gnus-gravatar.el (gnus-art): Require.
8141
8142         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
8143         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
8144         Remove long obsoleted functions.
8145
8146 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8147
8148         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
8149
8150         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
8151
8152         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
8153         * gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
8154         * hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
8155         * mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
8156         * mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
8157         * nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
8158         * sieve-manage.el, smime.el, spam.el:
8159         Fix comment for declare-function.
8160
8161 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8162
8163         * nnimap.el (nnimap-request-rename-group): Select group read-only
8164         before renaming it.
8165
8166         * shr.el (shr-insert): Fix up the white space only regexp.
8167
8168         * nnimap.el (nnimap-transform-split-mail): Not all articles have
8169         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
8170
8171         * shr.el (shr-current-column): New function.
8172         (shr-find-fill-point): New function.
8173
8174 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
8175
8176         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
8177         numbers.
8178
8179 2010-10-11  Julien Danjou  <julien@danjou.info>
8180
8181         * shr.el (shr-hr-line): Add.
8182         (shr-tag-hr): Use shr-hr-line to specify which character to use to
8183         display hr lines.
8184         (shr-max-columns): Do not change state to nil if we just inserting
8185         spaces.
8186
8187 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8188
8189         * gnus-topic.el (gnus-topic-read-group): If after the last group,
8190         select the last group.
8191
8192 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
8193
8194         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
8195
8196 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
8197
8198         * dig.el (dig-mode-map): Declare and define in one step.
8199
8200 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8201
8202         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
8203         for Gnus.
8204         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
8205         (nnimap-update-qresync-info): Mark \Seen articles as read.
8206
8207         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
8208         non-variable, too.
8209
8210         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
8211         available.
8212         (nnimap-update-info): Rely more on the current active than the param
8213         active to avoid marking articles as read too much.
8214
8215         * auth-source.el (auth-source-create): Use (user-login-name) for the
8216         user name default.
8217
8218         * nnimap.el (nnimap-update-info): If the server doesn't return any
8219         useful info, just use the previous info.
8220         (nnimap-update-info): Prefer old info over start-article.
8221         (nnimap-update-qresync-info): Finish implementing QRESYNC.
8222
8223 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
8224
8225         * nnir.el (autoload): Clean up autoloads.
8226         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
8227         Use key rather than value.
8228         (nnir-imap-search-other): New variable.
8229         (nnir-read-parm): Use it.
8230         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
8231         (gnus-summary-nnir-goto-thread): Modify to work with imap.
8232
8233 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8234
8235         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
8236         the process, too.
8237
8238 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8239
8240         * spam.el (gnus-summary-mode-map): Bind to "$".
8241         Suggested by Russ Allbery.
8242
8243         * shr.el: Rework the way things are indented by <li> slightly.
8244
8245         * gnus.el (gnus-group-set-parameter): Fix typo.
8246
8247         * nnimap.el: Start implementing QRESYNC support.
8248
8249 2010-10-09  Julien Danjou  <julien@danjou.info>
8250
8251         * nnir.el (nnir-engines): Fix too many arguments.
8252
8253 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8254
8255         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
8256         group is the "last", so that the backends like nnfolder actually save
8257         their folders.
8258
8259         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
8260         try to use that for the tls stream.
8261         (nnimap-retrieve-group-data-early): Rework the marks code to heed
8262         UIDVALIDITY and find out which groups are read-only and not.
8263         (nnimap-get-flags): Use the same marks parsing code as the rest of
8264         nnimap.
8265
8266 2010-10-09  Julien Danjou  <julien@danjou.info>
8267
8268         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
8269
8270         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
8271         retrieving gravatars.
8272
8273         * shr.el (shr-table-corner): Add.
8274         (shr-table-line): Add.
8275         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
8276
8277 2010-10-08  Julien Danjou  <julien@danjou.info>
8278
8279         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
8280
8281 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
8282
8283         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
8284
8285         * gnus-sum.el (gnus-mark-article-as-unread)
8286         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
8287         (gnus-summary-set-bookmark): Use it.
8288
8289         * gnus-msg.el (gnus-setup-message): Use it.
8290
8291         * gnus-demon.el (gnus-demon-remove-handler): Use it.
8292
8293         * gnus.el (gnus-group-remove-parameter): Use it.
8294
8295         * gnus-group.el (gnus-group-make-web-group): Use it.
8296
8297         * gnus-demon.el (gnus-demon-remove-handler): Use it.
8298
8299         * nnregistry.el: Update docs to mention manual.
8300
8301         * gnus-registry.el: Update docs to mention nnregistry.el.
8302         (gnus-registry-initialize): Don't install nnregistry refer method
8303         automatically.
8304         (gnus-registry-install-nnregistry): Remove it.
8305
8306 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8307
8308         * shr.el (shr-insert): Don't insert double spaces.
8309
8310 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8311
8312         * gnus-gravatar.el (gnus-treat-from-gravatar)
8313         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
8314         called interactively.
8315
8316         * gnus-art.el (gnus-mime-view-part-externally)
8317         (gnus-mime-view-part-internally): Make predicate function passed to
8318         gnus-mime-view-part-as-type assume argument is a mime type, not a list
8319         of a mime type.
8320
8321         * shr.el (shr-table-widths): Don't use cl function `reduce'.
8322
8323 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8324
8325         * shr.el (require): Require cl when compiling.
8326         (shr-tag-hr): New function.
8327
8328         * nnimap.el (nnimap-update-info): Remove double setting of high.
8329         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
8330         This makes nnimap work properly on Courier again.
8331
8332         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
8333         the variable for backwards compatibility.
8334
8335         * mm-decode.el (mm-save-part): If given a non-directory result, expand
8336         the file name before using to avoid setting mm-default-directory to
8337         nil.
8338
8339         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
8340         bidning gnus-agent variables.
8341
8342         * shr.el (shr-render-td): Use a cache for the table rendering function
8343         to avoid getting an exponential rendering behavior in nested tables.
8344         (shr-insert): Rework the line-breaking algorithm.
8345         (shr-insert): Don't leave trailing spaces.
8346         (shr-insert-table): Also insert empty TDs.
8347         (shr-tag-blockquote): Ensure paragraphs after </ul>.
8348
8349 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8350
8351         * gnus-sum.el (gnus-number): Rename from `number'.
8352         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
8353         (gnus-summary-limit-children): Update uses correspondingly.
8354
8355 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8356
8357         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
8358         (gnus-gravatar-transform-address): Don't show avatars of people of
8359         which mail addresses match gnus-gravatar-too-ugly.
8360
8361 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8362
8363         * shr.el (shr-table-widths): Expand TD elements to fill available
8364         space.
8365
8366 2010-10-07  Julien Danjou  <julien@danjou.info>
8367
8368         * nnimap.el (nnimap-request-rename-group): Add this method.
8369
8370 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8371
8372         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
8373         name from XEmacs' function-arglist.
8374
8375         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
8376         gravatar under XEmacs.
8377
8378 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
8379
8380         * auth-source.el: Update docs with TODO items.
8381
8382         * gnus-sync.el: Update docs to explain state and plans.
8383
8384         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
8385         Hooks for mark updates.
8386         (gnus-request-set-mark, gnus-request-update-mark): Use them.
8387
8388         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
8389         hooks with arguments, which is needed for mark update hooks.
8390
8391 2010-10-06  Julien Danjou  <julien@danjou.info>
8392
8393         * gnus.el (gnus-expand-group-parameter): Only return and act on what
8394         was matched.
8395
8396         * sieve-manage.el: Update example in `Commentary'.
8397
8398         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
8399
8400         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
8401         not 2000.
8402         (sieve-manage-authenticate): Re-add function.
8403
8404 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8405
8406         * shr.el (shr-insert): Get 'space transition right.
8407         (shr-render-td): Only delete space at the end of the TD.
8408
8409         * nnimap.el (nnimap-open-connection): Prepare to support
8410         open-gnutls-stream.
8411
8412         * shr.el: Rearrange function order to be more logical.
8413
8414 2010-10-06  Julien Danjou  <julien@danjou.info>
8415
8416         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
8417         (nnrss-discover-feed): Remove 404 URL in docstring.
8418
8419         * nnir.el: Fix Swish-E URL.
8420         Fix Namazu URL.
8421
8422         * message.el (message-change-subject): Remove 404 URL in a comment.
8423
8424 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8425
8426         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
8427         called interactively.
8428
8429         * gnus-util.el (gnus-remove-if): Allow hash table.
8430         (gnus-remove-if-not): New function.
8431
8432         * gnus-art.el (gnus-mime-view-part-as-type):
8433         * gnus-score.el (gnus-summary-score-effect):
8434         * gnus-sum.el (gnus-read-move-group-name):
8435         Replace remove-if-not with gnus-remove-if-not.
8436
8437         * gnus-group.el (gnus-group-completing-read):
8438         Regard collection as a hash table if it is not a list.
8439
8440 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8441
8442         * shr.el (shr-render-td): Allow blank/missing <TD>s.
8443
8444         * shr.el: Document the table-rendering algorithm.
8445
8446 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8447
8448         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
8449         for Emacsen having no `libxml-parse-html-region' support.
8450
8451 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8452
8453         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
8454         invalid URLs.
8455
8456         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
8457         line-broken.
8458         (shr-tag-img): Ignore image fetching errors.
8459         (shr-overlays-in-region): Compute overlay positions correctly.
8460
8461         * mm-decode.el (mm-shr): Require shr.
8462
8463         * gnus-art.el (gnus-blocked-images): Move variable here.
8464
8465         * shr.el (shr-insert-table): Bind free variable.
8466
8467         * mm-decode.el (mm-shr): Bind shr-content-function.
8468
8469         * shr.el (shr-content-function): New variable.
8470
8471         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
8472         added for symmetry.
8473
8474         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
8475
8476         * gnus-group.el (gnus-group-make-group): Doc fix.
8477
8478         * nnimap.el (nnimap-request-newgroups): Return success.
8479
8480         * shr.el (shr-find-elements): New function.
8481         (shr-tag-table): Put all the images after the table.
8482         (shr-tag-table): Really inhibit images inside the table.
8483         (shr-collect-overlays): Copy over overlays from the TD elements to the
8484         main document.
8485
8486         * mm-decode.el (mm-shr): Bind shr-blocked-images to
8487         gnus-blocked-images.
8488
8489 2010-10-05  Julien Danjou  <julien@danjou.info>
8490
8491         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
8492
8493         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
8494         (gnus-html-maximum-image-size): Add this function.
8495         (gnus-html-put-image): Use gnus-html-maximum-image-size.
8496
8497         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
8498         server-value of the capability is nil.
8499
8500 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8501
8502         * shr.el (shr-tag-em): Add <EM> tag.
8503
8504 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
8505
8506         * sieve-manage.el (sieve-manage-default-stream): Make default stream
8507         customizable.
8508
8509         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
8510         handing broken links to browse-url.
8511
8512 2010-10-05  Julien Danjou  <julien@danjou.info>
8513
8514         * gnus-util.el (gnus-emacs-completing-read)
8515         (gnus-iswitchb-completing-read): Use autoload rather than require.
8516
8517 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8518
8519         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
8520         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
8521         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
8522         iswitchb-temp-buflist for XEmacs.
8523
8524         * gnus-util.el (gnus-completing-read-function): Exclude
8525         gnus-icompleting-read and gnus-ido-completing-read from candidates for
8526         XEmacs since iswitchb.el is very old and ido.el is unavailable in
8527         XEmacs.
8528
8529         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
8530         not to use `delete-dups' that is unavailable in XEmacs 21.4.
8531
8532         * gnus-html.el: Don't require help-fns under XEmacs.
8533         (gnus-html-schedule-image-fetching): Work for XEmacs.
8534
8535         * mm-decode.el (mm-shr): Decode contents by charset.
8536
8537 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8538
8539         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
8540         unknown.
8541
8542         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
8543         (shr-get-image-data): Ensure against the cache file missing.
8544
8545         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
8546         for data.
8547
8548         * spam-report.el (spam-report-url-ping-plain): Don't query about
8549         killing the process.
8550
8551         * shr.el (shr-render-td): Protect against too-wide text.
8552
8553 2010-10-04  Julien Danjou  <julien@danjou.info>
8554
8555         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
8556         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
8557
8558         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
8559         retrieved.
8560
8561 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8562
8563         * shr.el (browse-url): Require.
8564         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
8565         lines.
8566         (shr-show-alt-text, shr-browse-image): New commands.
8567         (shr-browse-url, shr-copy-url): New commands.
8568
8569         * gnus-sum.el (gnus-widen-article-window): New variable.
8570         (gnus-summary-select-article-buffer): Use it.
8571
8572         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
8573         without @ signs.
8574
8575 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
8576
8577         * nnir.el (nnir-run-imap): Remove spurious space in search string.
8578
8579 2010-10-04  Julien Danjou  <julien@danjou.info>
8580
8581         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
8582         for XEmacs.
8583
8584 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8585
8586         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
8587
8588         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
8589         (nnimap-close-server): Implement.
8590
8591         * dgnushack.el (iswitchb): Require to shut up the compiler.
8592
8593         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
8594         (shr-insert): Tweak line breaking.
8595         (shr-insert): Handle <pre> better.
8596         (shr-tag-li): Get <li> indentation right.
8597         (shr-tag-li): Get <li> indentation even righter.
8598         (shr-tag-blockquote): Ensure paragraph start.
8599         (shr-make-table): Tweak table generation.
8600         (shr-make-table): Fix typo.
8601
8602         * shr.el: Implement table rendering.
8603
8604 2010-10-04  Julien Danjou  <julien@danjou.info>
8605
8606         * gnus-html.el (gnus-html-put-image): Fix resize image code.
8607
8608 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8609
8610         * shr.el (shr-insert): Use string anchors instead of line anchors.
8611
8612 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8613
8614         * shr.el: Add headings.
8615         (shr-ensure-paragraph): Actually work.
8616         (shr-tag-li): Make <ul> prettier.
8617         (shr-insert): Get white space at the beginning/end of elements right.
8618         (shr-tag-p): Collapse subsequent <p>s.
8619         (shr-ensure-paragraph): Don't insert double line feeds after blank
8620         lines.
8621         (shr-insert): \t is also space.
8622         (shr-tag-s): Fix "s" tag name function.
8623         (shr-tag-s): Fix face prop name.
8624
8625 2010-10-03  Julien Danjou  <julien@danjou.info>
8626
8627         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
8628
8629         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
8630         gnus-window-inside-pixel-edges.
8631
8632         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
8633         gnus-ems.
8634
8635         * mm-view.el (mm-inline-image-emacs): Support image resizing.
8636
8637         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
8638         function.
8639
8640         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
8641         resize choice.
8642
8643 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8644
8645         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
8646         beginning of the buffer.
8647
8648         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
8649         article buffer again.
8650
8651         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
8652
8653         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
8654         when it's at the start of the buffer.
8655
8656         * shr.el (shr-tag-blockquote): Convert name.
8657         (shr-rescale-image): Use the right image-size variant.
8658
8659         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
8660         buffer isn't shown, then select the current article first instead of
8661         bugging out.
8662         (gnus-summary-select-article-buffer): Show both the article and summary
8663         buffers again.
8664
8665         * shr.el (shr-fontize-cont): Protect against regions with no text.
8666         Rename tag functions to shr-tag-* for enhanced security.
8667         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
8668
8669 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
8670
8671         * shr.el (shr-insert):
8672         * pop3.el (pop3-movemail):
8673         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
8674         loaded.
8675
8676 2010-10-03  Glenn Morris  <rgm@gnu.org>
8677
8678         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
8679
8680         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
8681
8682         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
8683
8684         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
8685
8686         * gnus-util.el (gnus-make-local-hook): Simplify.
8687
8688 2010-10-02  Julien Danjou  <julien@danjou.info>
8689
8690         * gnus-util.el (gnus-iswitchb-completing-read): New function.
8691         (gnus-ido-completing-read): New function.
8692         (gnus-emacs-completing-read): New function.
8693         (gnus-completing-read): Use gnus-completing-read-function.
8694         Add gnus-completing-read-function.
8695
8696 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8697
8698         * shr.el (shr-insert-document): Autoload.
8699         (shr-img): Be silent.
8700         (shr-insert): Add a newline after every picture before text.
8701         (shr-add-font): Use overlays for combining faces.
8702         (shr-insert): Pass upwards the text start point.
8703
8704         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
8705         possible.
8706         (mm-shr): New function.
8707
8708 2010-10-02  Julien Danjou  <julien@danjou.info>
8709
8710         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
8711         should go backward.
8712
8713 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
8714
8715         * shr.el (shr): Fix typo in provide call.
8716
8717 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8718
8719         * shr.el: New file.
8720
8721         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
8722
8723         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
8724         completing read.
8725
8726 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8727
8728         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
8729         we're being queried about.  Suggested by Dan Jacobson.
8730
8731         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
8732         Suggested by Jason Eisner.
8733
8734         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
8735         table, too.  Suggested by Stefan Wiens.
8736         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
8737         the table unnecessary.  Suggested by Stefan Wiens.
8738
8739         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
8740         longer needed, and probably doesn't work either, as pointed out by
8741         Stefan Wiens.
8742         (gnus-summary-exit): Remove call to the clearing function.
8743         (gnus-summary-exit-no-update): Ditto.
8744
8745         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
8746         instead of gnus-eval-in-buffer-window to avoid popping up frames.
8747         Reported by Stefan Monnier.
8748         (gnus-summary-save-in-rmail): Ditto.
8749
8750         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
8751         article buffer, instead of both the article buffer and the summary
8752         buffer.  Sort of suggested by Dan Jacobson.
8753
8754         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
8755
8756         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
8757         Suggested by Dan Jacobson.
8758
8759         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
8760         documentation clearer.
8761
8762         * message.el (message-shorten-references): Comment on the number "21".
8763         Suggested by Stefan Monnier.
8764
8765         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
8766         Suggested by Dan Jacobson.
8767
8768         * gnus.el (gnus-large-newsgroup):
8769         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
8770
8771         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
8772         externalize attachments.  Bug reported by Steve Wen.
8773
8774         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
8775         really message anything to the user.
8776
8777         * nnmail.el (nnmail-article-group): Allow using the fancy split method
8778         directly.
8779
8780         * nnimap.el (nnimap-request-group): Low higher than high to signal no
8781         messages in empty groups.
8782
8783 2010-10-01  Ted Zlatanov  <tzz@lifelogs.com>
8784
8785         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
8786         non-UIDNEXT group.
8787
8788 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8789
8790         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
8791         not the value from the collection.
8792
8793         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
8794         values.  This sometimes happens on some groups that have no info.
8795         (nnimap-request-newgroups): New function.
8796
8797 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
8798
8799         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
8800         check into `gnus-registry-initialize'.
8801         (gnus-registry-initialize): Ditto.
8802         Fix and extend header docs.
8803
8804 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8805
8806         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
8807         regexp backtrace overflows.
8808
8809         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
8810         for starttls that tls.el implements; i.e. openssl.
8811
8812         * tls.el (tls-starttls-switches): Give up on using starttls with
8813         gnutls-cli.
8814         (tls-program): Add --insecure to be consistent with the defaults from
8815         openssl s_client.  Now all three commands are insecure.
8816
8817 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8818
8819         * lpath.el: Bind completion-styles-alist for XEmacs.
8820
8821         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
8822         (gravatar-create-image): New function that's an alias to
8823         gnus-xmas-create-image, gnus-create-image, or create-image.
8824         (gravatar-data->image): Use it.
8825
8826 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
8827
8828         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
8829         install the nnregistry refer method.
8830         (gnus-registry-install-hooks): Use it.
8831         (gnus-registry-unfollowed-groups): Add nnmairix to the default
8832         unfollowed groups.
8833
8834 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
8835
8836         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
8837         expanding threads.
8838
8839 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8840
8841         * nnir.el: Use the server names without suffixes (bug #7009).
8842
8843         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
8844         unencrypted to STARTTLS, if possible.
8845
8846 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
8847
8848         * message.el (message-ignored-supersedes-headers): Strip Injection-*
8849         headers before superseding.
8850
8851 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8852
8853         * nnrss.el (nnrss-use-local): Add documentation.
8854
8855         * nnimap.el (nnimap-extend-tls-programs): New function.
8856         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
8857         (nnimap-wait-for-connection): Accept the greeting from the stupid
8858         output from openssl s_client -starttls, too.
8859
8860         * tls.el (tls-starttls-switches): New variable.
8861         (tls-find-starttls-argument): Use it.
8862         (open-tls-stream): Ditto.
8863
8864         * netrc.el (netrc-credentials): Return the value of the "default" entry.
8865         (netrc-machine): Ditto.
8866
8867         * nnimap.el (nnimap-find-article-by-message-id): Really return the
8868         article number.
8869         (nnimap-split-fancy): New variable.
8870         (nnimap-split-incoming-mail): Use it.
8871
8872         * nntp.el (nntp-server-list-active-group): Document.
8873
8874         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
8875         SELECT to get the message-id.
8876
8877         * mail-source.el (mail-sources): Remove webmail support.
8878         (defvar): Ditto.
8879         (mail-source-fetcher-alist): Ditto.
8880         (mail-source-fetch-webmail): Remove.
8881
8882         * webmail.el: Remove -- doesn't seem relevant any more.
8883
8884         * gnus.el: Fix up make-obsolete-variable declarations throughout.
8885
8886         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
8887         the \r.
8888
8889 2010-09-30  Julien Danjou  <julien@danjou.info>
8890
8891         * gnus-agent.el (gnus-agent-add-group): Fix call to
8892         gnus-completing-read.
8893
8894 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8895
8896         * nndoc.el (nndoc-retrieve-groups): New function.
8897
8898         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
8899         `default', use nnmail-split-methods.
8900         (nnimap-request-article): Downcase the NILs so that they are nil.
8901
8902         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
8903         symbol.
8904
8905         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
8906         code, since if the user has requested network, that's what they ought
8907         to get.
8908         (nnimap-request-set-mark): Erase the buffer before issuing commands.
8909         (nnimap-split-rule): Mark as obsolete.
8910
8911         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
8912         New variable.
8913
8914         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
8915         correct slot, too.
8916
8917 2010-09-29  Julien Danjou  <julien@danjou.info>
8918
8919         * gnus.el (gnus-local-domain): Declare variable obsolete.
8920
8921         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
8922         Fix history computing.
8923         (gnus-ido-completing-read): Require ido.
8924
8925 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8926
8927         * gnus-registry.el: Don't prompt on load, which makes it impossible to
8928         build Gnus.
8929
8930         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
8931         when interpreting the structures.
8932         (nnimap-request-accept-article): Add \r\n to the lines to make this
8933         work with Cyrus.
8934
8935         * nndraft.el (nndraft-request-expire-articles): Use the group name
8936         instead if "nndraft".  Fix found by Nils Ackermann.
8937
8938 2010-09-29  Ludovic Courtes  <ludo@gnu.org>
8939
8940         * nnregistry.el: Add.
8941
8942 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
8943
8944         * nnmail.el (group, group-art-list, group-art):
8945         Remove unneeded directives.
8946
8947 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
8948
8949         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
8950         (mm-mime-charset):
8951         * rfc2047.el (rfc2047-syntax-table):
8952         * utf7.el (utf7-utf-16-coding-system): Comment fix.
8953
8954         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
8955         rather than `insert-file-contents' and `eval-region'.
8956
8957         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
8958         construction.
8959
8960         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
8961
8962         * time-date.el: No need to require cl for Emacs 21.
8963
8964 2010-09-29  Julien Danjou  <julien@danjou.info>
8965
8966         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
8967         replacement of `gnus-gravatar-relief' to mimic
8968         `gnus-faces-properties-alist'.
8969         Add :version property.
8970
8971 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8972
8973         * mail-source.el (mail-source-report-new-mail):
8974         * message.el (message-default-mail-headers):
8975         * mm-decode.el (mm-valid-image-format-p): Comment fix.
8976
8977         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
8978
8979 2010-09-28  Julien Danjou  <julien@danjou.info>
8980
8981         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
8982         mail-address contains the same string as real-name.
8983
8984         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
8985         non-blank in header, otherwise it'll get stripped.
8986
8987         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
8988         real-name, and then for mail address rather than doing : or , search.
8989
8990 2010-09-27  Julien Danjou  <julien@danjou.info>
8991
8992         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
8993         right completing-read function.
8994         (gnus-use-ido): New variable
8995         (gnus-completing-read-with-default): Remove.
8996         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
8997         (gnus-agent-add-group):
8998         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
8999         * mm-view.el (mm-view-pkcs7-decrypt):
9000         * mm-util.el (mm-codepage-setup):
9001         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
9002         * mml-smime.el (mml-smime-openssl-sign-query):
9003         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
9004         (mml-insert-multipart):
9005         * gnus-msg.el (gnus-summary-yank-message):
9006         * gnus-int.el (gnus-start-news-server):
9007         * mm-decode.el (mm-interactively-view-part):
9008         * gnus-dired.el (gnus-dired-attach):
9009         * gnus.el (gnus-read-method):
9010         * gnus-bookmark.el (gnus-bookmark-jump):
9011         * gnus-art.el (gnus-mime-view-part-as-type)
9012         (gnus-mime-action-on-part, gnus-article-encrypt-body):
9013         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
9014         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
9015         * nnmairix.el (nnmairix-create-server-and-default-group)
9016         (nnmairix-update-groups, nnmairix-get-server)
9017         (nnmairix-backend-to-server, nnmairix-goto-original-article)
9018         (nnmairix-get-group-from-file-path):
9019         * nnrss.el (nnrss-find-rss-via-syndic8):
9020         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
9021         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
9022         (gnus-group-browse-foreign-server):
9023         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
9024         (gnus-summary-execute-command, gnus-summary-respool-article)
9025         (gnus-read-move-group-name):
9026         * gnus-score.el (gnus-summary-increase-score)
9027         (gnus-summary-score-effect):
9028         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
9029
9030 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9031
9032         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
9033         x-focus-frame.
9034
9035         * nnimap.el (auth-source-forget-user-or-password)
9036         (auth-source-user-or-password): Autoload.
9037
9038         * message.el (message-from-style, message-interactive)
9039         (message-cite-prefix-regexp, message-sendmail-envelope-from)
9040         (message-yank-prefix, message-indentation-spaces, message-signature)
9041         (message-signature-file): Add comment.
9042
9043 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9044
9045         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
9046         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
9047         new articles.
9048
9049         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
9050         parts.
9051         (nnimap-request-article): Work with the t setting, too.
9052
9053         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
9054         that you don't get flashes of other buffers.
9055         (gnus-summary-show-complete-article): Intern before setting.
9056
9057 2010-09-27  David Engster  <dengste@eml.cc>
9058
9059         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
9060         well as HEADERS.
9061         (nnmairix-retrieve-headers): Provide new argument for the above.
9062
9063 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9064
9065         * gnus-sum.el (gnus-summary-move-article): Don't alter
9066         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
9067         group.
9068
9069         * nnimap.el (nnimap-update-info): Don't destructively alter active.
9070
9071         * message.el (message-cite-prefix-regexp): Revert my last edit.
9072
9073         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
9074         variable instead of the Gnus variable.
9075
9076         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
9077
9078         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
9079
9080         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
9081         since some servers don't like it.
9082         (nnimap-open-connection): Forget credentials if the server says the
9083         password was wrong.
9084         (nnimap-parse-line): Protect against invalid data.
9085
9086         * gnus-sum.el (gnus-summary-move-article): Add comment.
9087         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
9088         nothing alters it while scanning for new messages.
9089
9090         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
9091         which may or may not help.
9092         (nnimap-open-connection): If we're doing a stream connection, and then
9093         discover we're on a STARTTLS-capable server, then open a STARTTLS
9094         connection instead.
9095
9096 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9097
9098         * nnimap.el (utf7): Require.
9099
9100         * message.el (message-cite-prefix-regexp): Remove "}" from citation
9101         prefix.
9102
9103 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
9104
9105         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
9106
9107 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9108
9109         * nnimap.el (nnimap-request-accept-article): Message the error on
9110         error.
9111
9112 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9113
9114         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
9115
9116 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9117
9118         * nndoc.el (nndoc-request-list): Return success always.
9119
9120         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
9121         `fetch-old' -- we only want to fetch the articles we've requested.
9122         The rest are in the agent, probably.
9123         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
9124         disappeared server" to something low.  It's not important.
9125
9126         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
9127         arrived before the FETCH data.
9128
9129         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
9130         target here, because we don't know the Gnus name of the group.
9131
9132         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
9133         for the correct group.
9134
9135         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
9136
9137         * gnus.el (gnus): Give a final warning after startup.
9138
9139         * gnus-util.el (gnus-action-message-log): New variable.
9140         (gnus-message): Use it.
9141         (gnus-final-warning): New function.
9142
9143         * nnimap.el (nnimap-open-connection): Record the greeting.
9144         (nnimap): Add greeting.
9145
9146 2010-09-26  Julien Danjou  <julien@danjou.info>
9147
9148         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
9149         arguments.
9150         (gnus-html-wash-images): Fix spec computing to include start/end.
9151
9152         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
9153
9154 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9155
9156         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
9157         deletion.
9158         (nnimap-retrieve-headers): Don't select the group, because that's
9159         already done by nnimap-possibly-change-group.
9160
9161         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
9162         (gnus-picon-transform-address): Use it.
9163
9164         * mail-source.el (mail-source-value): Revert previous patch.
9165
9166         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
9167         on failure.
9168         (nnimap-open-connection): Look up both virtual and physical server name
9169         credentials.
9170
9171         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
9172
9173 2009-02-07  Dave Love  <fx@gnu.org>
9174
9175         * tls.el (open-tls-stream): Don't query killing process.
9176
9177 2009-02-08  Dave Love  <fx@gnu.org>
9178
9179         * gnus-win.el (gnus-window-to-buffer-helper)
9180         (gnus-all-windows-visible-p): Function needn't be a symbol.
9181
9182         * mail-source.el (mail-source-value): Function needn't be a symbol.
9183
9184 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9185
9186         * message.el (message-cite-prefix-regexp): Remove } from the cite
9187         prefix.
9188
9189         * gnus-art.el (gnus-treatment-function-alist): Do picons before
9190         highlight again, so that the highlight is correct.
9191
9192         * gnus-picon.el (gnus-picon): Remove again.
9193         (gnus-picon-create-glyph): Set the background XPM color explicitly.
9194
9195         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
9196         doing the header highlightling, so that the background color of the
9197         picon is correct.
9198
9199         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
9200         (gnus-picon): Ditto.
9201         (gnus-picon): Reinstate.  The background color for picons is white.
9202         (gnus-picon-insert-glyph): Make the background white.
9203
9204         * nnml.el (nnml-open-nov): Don't return dead buffers.
9205
9206         * auth-source.el (auth-source-create): Query the user for whether to
9207         store the credentials.
9208
9209         * netrc.el (netrc-store-data): New function.
9210
9211         * auth-source.el (auth-source-user-or-password): Use the existing auth
9212         sources, if any, for creation.
9213
9214         * gnus.el (gnus-group-fast-parameter): Return the last matching
9215         parameter instead of the first matching parameter.
9216
9217 2010-09-26  Julien Danjou  <julien@danjou.info>
9218
9219         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
9220
9221 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9222
9223         * mml2015.el (mml2015-use): Remove gpg support.
9224
9225         * mml1991.el (mml1991-function-alist): Remove gpg function.
9226         (mml1991-gpg-sign): Remove.
9227
9228 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
9229
9230         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
9231         (gnus-browse-unsubscribe-current-group): Document it.
9232         (gnus-browse-unsubscribe-group): Use it.
9233
9234 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9235
9236         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
9237         address to the To list for easier response.
9238
9239         * gnus.el (gnus-play-startup-jingle): Remove.
9240         (gnus-splash): Don't play jingle.
9241         (gnus): Silence gnus-load message.
9242
9243         * gnus-art.el (gnus-treat-play-sounds): Remove.
9244
9245         * gnus.el (gnus-play-jingle): Remove audio support.
9246
9247         * gnus-cus.el (gnus-score-customize): Remove audio reference.
9248
9249         * earcon.el: Remove -- no users.
9250
9251         * gnus-audio.el: Remove -- no users of this package.
9252
9253         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
9254
9255         * gnus-start.el (gnus-setup-news): Remove nocem support.
9256
9257         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
9258
9259         * gnus.el (gnus-use-nocem): Remove.
9260
9261         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
9262         Remove.
9263
9264         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
9265         uses NoCeM any more.
9266
9267         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
9268         (gnus-button-ctan-handler): Ditto.
9269         (gnus-button-handle-ctan-bogus-regexp): Ditto.
9270         (gnus-button-ctan-directory-regexp): Ditto.
9271         (gnus-button-handle-ctan): Ditto.
9272         (gnus-button-tex-level): Ditto.
9273         (gnus-button-alist): Remove CTAN stuff.
9274
9275 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9276
9277         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
9278         nnimap-streaming test.
9279
9280         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
9281         servers twice.
9282
9283         * nnimap.el (nnimap-open-connection): Add more error reporting when
9284         nnimap fails early.
9285
9286         * nnheader.el (nnheader-get-report-string): New function.
9287         (nnheader-get-report): Use it.
9288
9289         * gnus-int.el (gnus-check-server): Say what the error was when opening
9290         failed.
9291
9292         * nnimap.el (nnimap-wait-for-response): Search further when we're not
9293         using streaming.
9294
9295 2010-09-25  Julien Danjou  <julien@danjou.info>
9296
9297         * gnus-html.el (gnus-html-rescale-image): Use our defalias
9298         gnus-window-inside-pixel-edges.
9299
9300 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9301
9302         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
9303
9304         * mm-decode.el (mm-save-part): Allow saving to other directories the
9305         normal Emacs way.
9306
9307         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
9308         Suggested by Jay Berkenbilt.
9309
9310         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
9311         there isn't a single byte.
9312
9313         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
9314         just do it.  It doesn't really seem to matter what the user responds
9315         here, I think, so it's just a confusing question.
9316
9317         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
9318         non-streaming case.
9319
9320         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
9321         (gnus-article-encrypt-body): Use it.
9322
9323         * gnus-sum.el (gnus-summary-show-complete-article): New command and
9324         keystroke.
9325
9326         * nnimap.el (nnimap-find-wanted-parts-1):
9327         Use gnus-fetch-partial-articles.
9328
9329         * gnus-art.el (gnus-fetch-partial-articles): New variable.
9330
9331         * nnimap.el (nnimap-insert-partial-structure): New function.
9332         (nnimap-get-partial-article): New function.
9333         (nnimap-request-article): Use it.
9334         (nnimap-wait-for-response): Return whether the wait was successful.
9335         (nnimap-finish-retrieve-group-infos): Don't do anything if the
9336         retrieval wasn't successful.
9337         (nnimap-retrieve-group-data-early): Allow throttling servers.
9338         (nnimap-streaming): New variable.
9339         (nnimap-fetch-partial-articles): Remove.
9340
9341         * mm-decode.el (mm-with-part): Protect against killed buffers.
9342
9343         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
9344         for prettier summary display.
9345
9346 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
9347
9348         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
9349
9350 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9351
9352         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
9353         apparently third-party libraries depend on it.
9354
9355         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
9356         before starting negotiation.
9357
9358         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
9359         privacy reasons.
9360         (gnus-treat-mail-gravatar): Ditto.
9361
9362         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
9363         buffer when inserting images.  Inserting text into the headers, for
9364         instance, can make them invalid.
9365
9366 2010-09-25  Julien Danjou  <julien@danjou.info>
9367
9368         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
9369         variables.
9370
9371         * nnheader.el: Remove useless variables news-reply-yank-from and
9372         news-reply-yank-message-id.
9373
9374         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
9375         variables.
9376
9377         * mml1991.el: Remove useless mml1991-verbose.
9378
9379         * gnus.el: Remove useless variable gnus-use-generic-from.
9380         Remove obsolete variable gnus-topic-indentation.
9381
9382         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
9383
9384         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
9385
9386         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
9387
9388         * gnus-group.el: Remove useless gnus-group-icon-cache.
9389         Remove useless gnus-ephemeral-group-server.
9390
9391         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
9392
9393         * mml2015.el: Remove useless mml2015-verbose.
9394
9395         * mml-smime.el: Remove useless mml-smime-verbose.
9396
9397         * gnus.el: Remove useless gnus-local-domain.
9398
9399         * gnus-gravatar.el (gnus-gravatar-transform-address):
9400         Use gnus-gravatar-size.
9401
9402         * gnus-art.el: Remove useless gnus-treat-translate.
9403
9404 2010-09-24  Julien Danjou  <julien@danjou.info>
9405
9406         * gnus-sum.el: Add support for Gravatars.
9407
9408         * gnus-art.el: Add support for Gravatars.
9409
9410         * gnus-gravatar.el: Add this file.
9411
9412         * gravatar.el: Add this file.
9413
9414 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9415
9416         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
9417
9418         * gnus-group.el (gnus-group-fetch-faq): Remove.
9419
9420         * gnus.el (gnus-group-faq-directory): Remove.
9421
9422         * gnus-group.el (gnus-group-fetch-charter): Remove.
9423
9424         * gnus.el (gnus-group-charter-alist): Remove.
9425
9426         * gnus-group.el (gnus-group-archive-directory): Remove.
9427         (gnus-group-recent-archive-directory): Ditto.
9428         (gnus-group-make-archive-group): Remove.
9429
9430         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
9431
9432         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
9433         use the same article number for all the cached articles.
9434
9435         * nnimap.el (nnimap-command): Register the last command time so
9436         that we can use it for idling NOOPs.
9437         (nnimap-open-connection): Start the keeplive timer.
9438         (nnimap-make-process-buffer): Store all the process buffers.
9439         (nnimap-keepalive): New function.
9440
9441         * starttls.el (starttls-open-stream): Add autoload cookie.
9442
9443 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
9444
9445         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
9446         handling.
9447
9448 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9449
9450         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
9451         its data structures.
9452
9453         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
9454         instead of the cl.el copy-list.
9455         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
9456         equalp.
9457
9458 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9459
9460         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
9461         and tool-bar-local-item-from-menu.
9462
9463         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
9464         mode-line-highlight face for Emacs.
9465
9466         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
9467         loading gnus-sum.elc; fix comment for canlock-verify.
9468         (gnus-article-jump-to-part): Use read-number.
9469         (gnus-insert-mime-button, gnus-insert-mime-security-button):
9470         Remove Emacs pre-21 compatible code for help-echo.
9471         (gnus-article-next-page-1): No need to adjust the number of lines.
9472         (gnus-article-describe-bindings): Always use help-buffer.
9473
9474         * gnus-audio.el (gnus-audio-inline-sound):
9475         * gnus-cus.el (gnus-custom-mode):
9476         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
9477
9478         * gnus-sum.el (gnus-remove-overlays): Doc fix.
9479
9480         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
9481         compatible code.
9482
9483 2010-09-24  Glenn Morris  <rgm@gnu.org>
9484
9485         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
9486         visiting the fcc file in rmail-mode.
9487
9488         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
9489
9490 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9491
9492         * nnir.el: Silence the byte compiler.
9493
9494         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
9495         alias to browse-url-url-encode-chars if any.
9496         (gnus-html-encode-url): Use it.
9497
9498 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9499
9500         * gnus-start.el (gnus-use-backend-marks): New variable.
9501         (gnus-get-unread-articles-in-group): Use it.
9502
9503         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
9504         makeover.
9505
9506 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
9507
9508         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
9509
9510 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9511
9512         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
9513         Remove.
9514         (gnus-setup-news-hook):
9515         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
9516
9517         * gnus-int.el (gnus-request-update-info): Protect against backends not
9518         having the function.
9519
9520         * nnimap.el (nnimap-stream): Mention starttls.
9521         (nnimap-open-connection): Add starttls support.
9522
9523 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
9524
9525         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
9526
9527 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9528
9529         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
9530         BODYSTRUCTUREs.
9531         (nnimap-transform-headers): Unfold quoted {42} headers.
9532
9533         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
9534         the info.
9535         (gnus-get-unread-articles): Only call updatep on backends that support
9536         it.
9537
9538         * nnweb.el (nnweb-request-update-info): NOOP.
9539
9540         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
9541
9542         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
9543         since it only deals with marks.
9544
9545         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
9546         gnus-request-marks, and make a new gnus-request-update-info.
9547
9548         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
9549         the active instead of the high number, which is usually too low.
9550
9551 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
9552
9553         * netrc.el (netrc-parse): Remove encrypt.el mentions.
9554         * encrypt.el: Remove.
9555
9556 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9557
9558         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
9559         server in symbolic form.
9560
9561         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
9562
9563 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9564
9565         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
9566         (nnimap-update-info): Fix up code slightly.
9567
9568         * gnus-int.el (gnus-open-server): Add tracing for performance
9569         debugging.
9570
9571         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
9572         (gnus-group-insert-group-line): Pass the real group name so that it
9573         gets the right data.
9574
9575         * gnus-start.el (gnus-get-unread-articles): Don't have
9576         `gnus-get-unread-articles-in-group' update info, since that can be
9577         really slow and doesn't seem to be needed?
9578
9579 2010-09-22  Dan Christensen  <jdc@uwo.ca>
9580
9581         * time-date.el (date-to-time): Try using parse-time-string first before
9582         using the slower timezone-make-date-arpa-standard.
9583
9584 2010-09-22  Julien Danjou  <julien@danjou.info>
9585
9586         * gnus-group.el (gnus-group-insert-group-line):
9587         Call gnus-group-highlight-line.
9588         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
9589         default hook list.
9590         (gnus-group-update-eval-form): Add new function.
9591         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
9592         (gnus-group-get-icon): Use gnus-group-update-eval-form.
9593
9594 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9595
9596         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
9597         immediate, then expire all articles.
9598         (nnimap-update-info): Fix off-by-one errors.
9599         (nnimap-flags-to-marks): Would return no marks lists for group with no
9600         flags.  Instead return the other data.
9601
9602 2010-09-22  Julien Danjou  <julien@danjou.info>
9603
9604         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
9605         Only return an icon.
9606         (gnus-group-insert-group-line): Compute icon to return.
9607
9608         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
9609         (gnus-html-image-fetched): Only cache if
9610         gnus-html-image-automatic-caching is set.
9611         (gnus-html-image-fetched): Check for errors.
9612
9613 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9614
9615         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
9616         once per method on `g'.  This ensures that backends like nnfolder don't
9617         open all their folders.
9618
9619         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
9620         (nnimap-request-list): Nix out group in the correct buffer.
9621         (nnimap-parse-flags): Implement by using `read' instead of
9622         hand-parsing.
9623         (nnimap-flags-to-marks): Pass on permanent-flags.
9624         (nnimap-make-process-buffer): Record the server name.
9625         (nnimap-parse-flags): Fix typo.
9626         (nnimap-request-scan): Run split on the server in general, not just a
9627         single group.
9628
9629         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
9630         parameter, and propagate this downwards.
9631
9632         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
9633         since EXAMINE changes it on the server.
9634
9635         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
9636         this command might take a while.
9637
9638 2010-09-22  Julien Danjou  <julien@danjou.info>
9639
9640         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
9641         harmful if you have 2 images side-by-side, they can't be properly
9642         update on text deletion.  Using text-property is safer here.
9643         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
9644         data.
9645
9646 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9647
9648         * nnimap.el (nnimap-expunge-inbox): Remove.
9649         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
9650         (nnimap-expunge): Flip default to t.
9651
9652         * gnus.el (gnus-method-to-server): Don't push things to the cache
9653         unless it's unique.
9654         (gnus-server-to-method): Ditto.
9655
9656 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
9657
9658         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
9659
9660 2010-09-22  Julien Danjou  <julien@danjou.info>
9661
9662         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
9663         get the start of data.
9664         (gnus-html-encode-url): Add this function to encode special chars in
9665         URL.
9666         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
9667         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
9668
9669         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
9670         default.
9671         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
9672
9673         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
9674         images alt-text.
9675         (gnus-html-put-image): Put alt-text as help-echo.
9676
9677 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9678
9679         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes):
9680         * mm-util.el (mm-decompress-buffer):
9681         * nnir.el (nnir-run-find-grep):
9682         * pop3.el (pop3-list): Use 3rd arg of split-string.
9683
9684         * time-date.el (format-seconds): Comment fix.
9685
9686         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
9687         and byte-optimize-form-code-walker.
9688         (dgnushack-make-auto-load): Don't advise make-autoload.
9689
9690         * lpath.el: Remove Emacs 21 stuff.
9691
9692 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9693
9694         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
9695         outside the active range.  Suggested by Dan Christensen.
9696
9697         * gnus-start.el (gnus-get-unread-articles): Get the extended method
9698         slightly later to avoid double-getting it.
9699
9700         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
9701         previous patch.
9702
9703         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
9704
9705 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
9706
9707         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
9708
9709 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9710
9711         * gnus-int.el (gnus-open-server): Give a better error message in the
9712         "go offline" case.
9713
9714         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
9715         marks for nnimap, which is seldom the right thing to do.
9716
9717         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
9718         (gnus-same-method-different-name): New function.
9719
9720         * nnimap.el (parse-time): Require.
9721
9722         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
9723         method in the presence of many similar methods.
9724
9725         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
9726
9727         * nnimap.el (nnimap-find-expired-articles): Don't refer to
9728         nnml-inhibit-expiry.
9729
9730         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
9731         find out whether methods are equal.
9732
9733         * nnimap.el (nnimap-find-expired-articles): New function.
9734         (nnimap-process-expiry-targets): New function.
9735         (nnimap-request-move-article): Request the article before looking at
9736         what the Message-ID is.  Fix found by Andrew Cohen.
9737         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
9738
9739         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
9740         for oldness in addition to being a predicate.
9741
9742         * nnimap.el (nnimap-request-group): When we have zero articles, return
9743         the right data to Gnus.
9744         (nnimap-request-expire-articles): Only delete articles immediately if
9745         the target is 'delete.
9746
9747         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
9748         method, this would bug out.
9749
9750         * gnus-group.el (gnus-group-expunge-group): Rename from
9751         gnus-group-nnimap-expunge, and implemented as a normal interface
9752         function.
9753
9754         * gnus-int.el (gnus-request-expunge-group): New function.
9755
9756         * nnimap.el (nnimap-request-create-group): Implement.
9757         (nnimap-request-expunge-group): New function.
9758
9759 2010-09-21  Julien Danjou  <julien@danjou.info>
9760
9761         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
9762         (gnus-html-cache-expired): Add new function.
9763         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
9764         wethever we should display image for fetch it.
9765         Compute alt-text earlier to pass it to the fetching function too.
9766         (gnus-html-schedule-image-fetching): Change function argument to only
9767         get one image at a time, not a list.
9768         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
9769         cache.
9770         (gnus-html-get-image-data): New function to retrieve image data from
9771         cache.
9772         (gnus-html-put-image): Change buffer argument to use image data rather
9773         than file, and place image above region rather than inserting a new
9774         one.  Do not take alt-text as argument, since it's useless now: we place
9775         the image above alt-text.
9776         (gnus-html-prune-cache): Remove.
9777         (gnus-html-show-images): Start to fetch image when we find one, do not
9778         push into a temporary list.
9779         (gnus-html-prefetch-images): Only fetch image if they have expired.
9780         (gnus-html-browse-image): Fix, use 'gnus-image-url.
9781         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
9782
9783 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9784
9785         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
9786
9787 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9788
9789         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
9790         spec inser "*" if the group isn't active instead of 0.
9791
9792         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
9793         opening the server.
9794         (nnimap-request-delete-group): Implement group deletion.
9795         (nnimap-transform-headers): Return the size of the entire message in
9796         the Bytes header, not just the size of the first part.
9797         (nnimap-request-move-article): When moving an article from nnimap,
9798         request the article first so the accepting form has an article to
9799         accept.  Reported by Dan Christensen.
9800         (nnimap-command): Make sure that the error message doesn't error out.
9801
9802 2010-09-20  David Edmondson  <dme@dme.org>
9803
9804         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
9805         we haven't requested anything.
9806
9807 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9808
9809         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
9810         "".  Fix found by Andrew Cohen.
9811
9812         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
9813         instead of -encode-string.
9814
9815 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9816
9817         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
9818
9819         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
9820         by mm-subst-char-in-string.
9821
9822 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9823
9824         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
9825         waiting for the connection string.
9826
9827         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
9828         arriving.
9829
9830         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
9831         bogus characters.  This allows selecting certain Gmail groups.
9832
9833         * nnimap.el (nnimap-find-wanted-parts-1): New function.
9834         (nnimap-fetch-partial-articles): New variable.
9835         (nnimap-open-connection): When looking for credentials, also use the
9836         nnimap-server-port.
9837         (nnimap-request-article): Return the group/article number, so that Gnus
9838         `^' works as expected.
9839         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
9840
9841         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
9842         comments.
9843         (gnus-methods-sloppily-equal): New function.
9844         (gnus): When using the development version of Gnus, load the gnus-load
9845         file.
9846
9847         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
9848         `gnus-open-server' on each method before trying to scan them etc.
9849         This ensures that all the backend parameters are set correctly.
9850
9851         * nnimap.el (nnimap-authenticator): New variable.
9852         (nnimap-open-connection): Allow anonymous login.
9853         (nnimap-transform-headers): The chars header is called Chars not Bytes.
9854         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
9855
9856         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
9857         patch, found by Knut Anders Hatlen.
9858
9859 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
9860
9861         * gnus-agent.el (gnus-agent-batch-confirmation)
9862         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
9863         to gnus-message.
9864         * gnus-art.el (gnus-article-describe-briefly): Likewise.
9865         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
9866         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
9867         * gnus-int.el (gnus-open-server): Likewise.
9868         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
9869         (gnus-score-check-syntax): Likewise.
9870         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
9871         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
9872         Likewise.
9873         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
9874
9875 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9876
9877         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
9878         calling conventions so that prefetch doesn't bug out.
9879
9880 2010-09-19  Julien Danjou  <julien@danjou.info>
9881
9882         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
9883         rather than `subst-char-in-region' in order to be able to replace ASCII
9884         char by UTF-8 ones.
9885
9886         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
9887         than curl.
9888         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
9889         the right URL and ALT text on images.
9890         (gnus-html-wash-tags): Fix tag case.
9891         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
9892         (gnus-article-html): Add -o display_ins_del=2 option.
9893         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
9894
9895 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9896
9897         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
9898         the extra mail headers, which sometimes seem to happen for unknown
9899         reasons.
9900
9901         * mail-parse.el (mail-header-encode-parameter): Define as
9902         rfc2045-encode-string instead of as rfc2231-encode-string, since some
9903         (or most, perhaps?) mail readers don't understand the latter, but do
9904         understand the former.
9905
9906         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
9907         to nil, so that no methods are automatically agentized.  I think this
9908         is probably what most users want.
9909
9910         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
9911         from url-retrieve, for instance about invalid URLs.
9912
9913         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
9914         groups that have no articles.
9915         (nnimap-request-article): Check that we really got an article when we
9916         requested one.
9917
9918         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
9919         doesn't exist.
9920
9921         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
9922         nntp buffer so the agent can save it.
9923         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
9924         that CRLF doesn't get translated to \n.
9925         (nnimap-open-connection): Don't make 'shell commands only send \n.
9926
9927 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9928
9929         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
9930         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
9931         Update var name.
9932         (nnml-generate-nov-file): Use dolist.
9933         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
9934         Use with-current-buffer.
9935
9936 2010-09-18  Julien Danjou  <julien@danjou.info>
9937
9938         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
9939         parallel.
9940
9941 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9942
9943         * nnimap.el (nnimap-update-info): When doing partial marks update, get
9944         the range update right.
9945         (nnimap-request-group): Don't make `M-g' bug out on group with no
9946         marks.
9947         (nnoo): Require, so that other packages can require nnimap.
9948         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
9949         command we're looking for.  This helps when the server sends more
9950         responses after we've gotten everything we expected.
9951         (nnimap): Add a `newlinep' field to keep track of end-of-line
9952         conventions.
9953         Don't send CRLF to things that don't want it.
9954         (nnimap-request-accept-article): Ditto.
9955
9956 2010-09-18  Julien Danjou  <julien@danjou.info>
9957
9958         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
9959         than curl to retrieve images.
9960
9961 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9962
9963         * nnimap.el (nnimap-update-info): Extend the info so that we can set
9964         the marks.
9965         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
9966         (nnimap-wait-for-connection): New function.
9967         (nnimap-open-connection): If we have PREAUTH, don't query for login
9968         credentials.
9969         (nnimap-update-info): Fix off-by-one error when concatenating ranges
9970         when doing a partial update.
9971
9972 2010-09-18  Julien Danjou  <julien@danjou.info>
9973
9974         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
9975         tags.
9976
9977 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9978
9979         * nnimap.el (nnimap-credentials): New function.
9980         (nnimap-open-connection): Use the new function to look for credentials
9981         also on the numeric equivalents of "imap" and "imaps".
9982
9983         * gnus-start.el (gnus-activate-group): Send the info to
9984         gnus-request-group.
9985
9986         * nnimap.el (nnimap-request-group): Have the "check" version of the
9987         function parse flags and update the info, so that a `M-g' get a total
9988         resync of all flags from the group.
9989
9990         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
9991         to allow backends to alter the info on group selection.  Also alter all
9992         the backend -request-group functions to take the parameter.
9993
9994         * nnimap.el (nnimap-store-info): New function.
9995         (nnimap-update-info): Store the info for later usage.
9996         (nnimap-request-group): Use the stored info for the dont-check case, so
9997         that we don't retrieve all marks when we enter a group.
9998
9999         * nnimap.el: Use deffoo instead of defun for interface functions.
10000
10001         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
10002         update the group info.  This makes the nndraft groups, for instance, go
10003         back to their old behavior.
10004
10005         * gnus-sum.el (gnus-select-newsgroup): Indent.
10006
10007         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
10008         in.
10009         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
10010         nothing.
10011
10012         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
10013         from methods that are denied.
10014
10015         * gnus-int.el (gnus-method-denied-p): New function.
10016
10017         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
10018         store the password instead of netrc.
10019         (nnimap-open-connection): Don't error out when we can't make a
10020         connections.
10021
10022         * auth-source.el (auth-source-create): In the password prompt, say what
10023         we're querying for.  Also prompt for user name if that hasn't been
10024         given.
10025
10026         * nnimap.el (nnimap-with-process-buffer): Remove.
10027
10028 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10029
10030         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
10031         method when we're reading from the agent.
10032
10033         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
10034
10035         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
10036         that's probably most useful for users.
10037
10038         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
10039         "failed" all the time.
10040
10041         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
10042         ...)) with (with-current-buffer ... ).
10043
10044         * nntp.el (nntp-open-server): Return whether the open was successful or
10045         not.
10046
10047         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
10048         select an unread unseen article first.
10049
10050         * nnimap.el (nnimap-open-connection): If the user doesn't have a
10051         /etc/services, supply some sensible port defaults.
10052
10053         * dgnushack.el: Define netrc-credentials.
10054
10055 2010-09-17  Julien Danjou  <julien@danjou.info>
10056
10057         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
10058
10059 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
10060
10061         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
10062         doesn't have any parameters.
10063
10064 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10065
10066         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
10067         only upcased checks.
10068
10069         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
10070
10071         * nnimap.el (nnimap-open-shell-stream): New function.
10072         (nnimap-open-connection): Use it.
10073         (nnimap-transform-headers): Get the number of lines in each message.
10074         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
10075         number of lines.
10076         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
10077         problem.
10078
10079         * utf7.el (utf7-encode): Autoload.
10080
10081         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
10082         to allow the mail splitting to not return a default group.  This is
10083         useful for nnimap, which will leave unmatched mail in the inbox.
10084
10085         * nnimap.el: Rewritten.
10086
10087         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
10088         nnimap usage.
10089
10090         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
10091         if the move is internal, so that nnimap can do fast internal moves.
10092
10093         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
10094         data.
10095         (gnus-read-active-for-groups): Support finishing the early retrieval of
10096         data.
10097
10098         * gnus-range.el (gnus-range-nconcat): New function.
10099
10100         * gnus-int.el (gnus-finish-retrieve-group-infos)
10101         (gnus-retrieve-group-data-early): New functions.
10102
10103 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10104
10105         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
10106         (nnrss-retrieve-groups):
10107         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
10108         (pop3-quit): Use with-current-buffer.
10109
10110 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10111
10112         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
10113         instead of nnheader-accept-process-output.
10114
10115         * dgnushack.el (dgnushack-compile): Add comment.
10116
10117         * lpath.el: No need to fbind propertize for XEmacs 21.4.
10118
10119         * gnus-html.el (gnus-html-schedule-image-fetching)
10120         (gnus-html-prefetch-images): Replace process-kill-without-query by
10121         gnus-set-process-query-on-exit-flag.
10122
10123 2010-09-16  Romain Francoise  <romain@orebokech.com>
10124
10125         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
10126
10127 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10128
10129         * gnus-registry.el (gnus-registry-install-shortcuts): The second
10130         parameter to unintern is mandatory-ish in Emacs 24.
10131
10132         * gnus-html.el (gnus-html-schedule-image-fetching)
10133         (gnus-html-prefetch-images): Check for curl before using it.
10134
10135         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
10136         depend on curl, which isn't essential.
10137
10138         * imap.el: Revert back to version
10139         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
10140         seem problematic.
10141
10142 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
10143
10144         * gnus-registry.el (gnus-registry-install-shortcuts):
10145         Explicitly pass `obarray' to `unintern' to avoid a warning.
10146
10147 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10148
10149         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
10150         change.
10151
10152         * nnrss.el (nnrss-request-list): Remove this function and related
10153         functions, including the moreover stuff.
10154
10155 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10156
10157         * nnrss.el (nnrss-retrieve-groups): New function.
10158
10159 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
10160
10161         * .dir-locals.el: Add no-byte-compile cookie.
10162
10163 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10164
10165         * time-date.el (format-seconds): Comment fix.
10166
10167         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
10168         for back end that doesn't support request-scan.
10169
10170 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10171
10172         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
10173         then do request scans from the backends.
10174
10175         * netrc.el (netrc-credentials): New conveniency function.
10176
10177         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
10178         avoid running a hook per line, since this takes a lot of time,
10179         profiling shows.
10180         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
10181         directly if gnus-visual-p is true.
10182
10183 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10184
10185         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
10186         groups; replace mapcar with dolist which is a bit faster; pass groups
10187         info to gnus-read-active-file-1.
10188         (gnus-read-active-file-1): Scan only specified groups if the new
10189         optional arg `infos' is given.
10190
10191 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10192
10193         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
10194
10195         * pop3.el (pop3-movemail): Remove.
10196         (pop3-streaming-movemail): Rename to pop3-movemail.
10197
10198         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
10199         don't restrict end-tag searches to the end of the line.
10200
10201 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10202
10203         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
10204         articles of every unchecked group to t, which means unknown since the
10205         server has never been opened.
10206
10207 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10208
10209         * gnus-html.el (gnus-html-show-alt-text): New command.
10210         (gnus-html-browse-image): Ditto.
10211         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
10212         to browse the image directly.
10213         (gnus-html-wash-tags): Search for images first, so that <a><img> works
10214         better.
10215
10216         * gnus-async.el (gnus-async-article-callback):
10217         Call `gnus-html-prefetch-images' unconditionally.
10218
10219         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
10220         before feeding URLs to curl.
10221
10222 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10223
10224         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
10225         internal images as deletable by `W D D'.
10226
10227         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
10228         (gnus-async-article-callback): Fix typo.
10229
10230 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10231
10232         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
10233         current line to work around bugs in the output from w3m.
10234
10235         * gnus-async.el (gnus-async-article-callback): Always prefetch images
10236         for groups that want that.
10237
10238         * nntp.el (nntp-wait-for-string): Supply a timeout for
10239         accept-process-output to ensure progress.
10240
10241         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
10242         level to get unread articles from, then use that for foreign groups,
10243         too.
10244
10245         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
10246         confuses the rest of the function.
10247
10248         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
10249         for the methods that support -retrieve-groups, too.
10250
10251         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
10252
10253 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10254
10255         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
10256         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
10257
10258         * pop3.el: Require cl when compiling.
10259         (pop3-number-of-responses): Search for "+OK", not "+OK ".
10260
10261 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10262
10263         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
10264         that aren't going to be activated.
10265         (gnus-get-unread-articles): Fix up the last commit.
10266
10267         * gnus-html.el (gnus-article-html): Allow calling without specifying
10268         the handle.  In that case, dissect the buffer first.
10269
10270         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
10271
10272         * nnimap.el (nnimap-open-connection): Revert the change that would look
10273         into authinfo for imaps instead of imap.
10274
10275         * gnus-start.el (gnus-activate-group): Take an optional parameter to
10276         say that you don't want to call gnus-request-group with don-check, but
10277         do check the reponse.  This is for virtual groups only.
10278         (gnus-get-unread-articles): Count the archive groups as secondary, so
10279         that they're activated the same way as before.
10280
10281         * imap.el (imap-message-map): Removed optional buffer parameter, since
10282         no callers use it.
10283         (imap-message-get): Ditto.
10284         (imap-message-put): Ditto.
10285         (imap-mailbox-map): Ditto.
10286         (imap-mailbox-put): Ditto.
10287         (imap-mailbox-get): Ditto.
10288         (imap-mailbox-get): Revert last change for this function.
10289
10290         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
10291         case-insensitively.
10292         (nnimap-debug): Remove.
10293
10294         * net/imap.el (imap-fetch-safe): Remove function, and alter all
10295         callers to use `imap-fetch' instead.  According to the comments, this
10296         should be safe, since all other IMAP clients use the 1:* syntax.
10297         (imap-enable-exchange-bug-workaround): Remove.
10298         (imap-debug): Remove -- doesn't seem very useful.
10299
10300         * mail-source.el (mail-source-fetch): Don't message if we're fetching
10301         mail from a file, and the file doesn't exist.
10302
10303         * imap.el (imap-log): New convenience function used throughout instead
10304         of repeating the same code all over the place.
10305
10306         * pop3.el (pop3-streaming-movemail): Return t for success.
10307
10308         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
10309         .authinfo if we're using ssl connection.
10310
10311         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
10312         already have if we're in a main Gnus `g' run.
10313
10314         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
10315
10316 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10317
10318         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
10319
10320         * nnmh.el (nnmh-request-list-1): Bind `file'.
10321
10322         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
10323         alias to set-process-query-on-exit-flag or process-kill-without-query.
10324         (pop3-open-server): Use it.
10325
10326 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10327
10328         * mail-source.el (mail-source-delete-crash-box): Always move the crash
10329         box to the Incoming file.  Fixes mistake in previous checkin.
10330
10331         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
10332         request loop (for debugging purposes) removed.
10333
10334         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
10335         culprit is more visible.
10336         (nnml-save-incremental-nov, nnml-open-incremental-nov)
10337         (nnml-add-incremental-nov): New functions to do "incremental" nov
10338         updates, where we just append to the end of the existing nov files
10339         without reading/writing them in full.
10340
10341         * mail-source.el (mail-source-delete-crash-box): Really only check the
10342         incoming files once in a while.
10343
10344         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
10345
10346         * mail-source.el (mail-source-delete-crash-box): Only check the
10347         incoming files for deletion once per day to save a lot of file
10348         accesses.
10349
10350         * pop3.el (pop3-logon): Fix up unbound variable typo.
10351
10352         * mail-source.el (pop3-streaming-movemail): Autoload.
10353
10354         * pop3.el (pop3-streaming-movemail):
10355         Respect pop3-leave-mail-on-server.
10356
10357         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
10358         retrieval.
10359
10360         * pop3.el (pop3-process-filter): Remove unused function.
10361         (pop3-streaming-movemail, pop3-send-streaming-command)
10362         (pop3-wait-for-messages, pop3-write-to-file)
10363         (pop3-number-of-responses): New functions for streaming pop3
10364         retrieval.
10365
10366         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
10367         come from no known methods.
10368         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
10369         list.
10370
10371         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
10372         message sizes.
10373         (pop3-movemail): Use erase-buffer instead of looping and deleting
10374         regions, which seems rather odd.
10375
10376         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
10377         file once per `g' run.
10378
10379         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
10380         directories.  This makes the draft queue directory work.
10381
10382         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
10383         data from the backends, so that we only request the list of groups from
10384         each method once.  This should speed things up considerably.
10385
10386         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
10387         detect that it's not implemented.
10388
10389         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
10390         we actually do recurse down into the tree, but don't stat all leaf
10391         nodes.
10392
10393         * gnus-html.el (gnus-html-show-images): If there are no images to show,
10394         then say so instead of bugging out.
10395
10396         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
10397         files exist before trying to read them.
10398
10399         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
10400         around <pre_int>.
10401
10402         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
10403
10404         * nnmh.el (nnmh-request-list-1): Optimize for speed.
10405
10406 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10407
10408         * mm-util.el (mm-image-load-path): Just return the image directories,
10409         not all directories in the path in addition to the image directories.
10410         (mm-image-load-path): Maintain a cache of the image directories so that
10411         the `g' command in Gnus doesn't have to stat dozens of directories each
10412         time.
10413
10414         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
10415         (gnus-html-wash-tags): Add a new `i' command to insert images.
10416         (gnus-html-insert-image): New command and keystroke.
10417         (gnus-html-redisplay-with-images): New command and keystroke.
10418         (gnus-html-show-images): Rename command.
10419         (gnus-html-wash-tags): Remove more white space before <pre_int> image
10420         spacers.
10421         (gnus-html-wash-tags): Decode entities at the end, so that entities
10422         inside the tags don't mess up the rest of the "parsing".
10423
10424         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
10425         so that nnimap methods aren't agentized by default.  There's apparently
10426         many problems related to agent/imap behavior.
10427
10428         * gnus-art.el (gnus-article-copy-string): New command and key binding.
10429
10430         * gnus-html.el: Doc fix.
10431
10432 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
10433
10434         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
10435         specifier-spec-list for Emacs 21.
10436
10437         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
10438         glyph-width and glyph-height instead of display-graphic-p and
10439         image-size; make avoidance of displaying small images work for XEmacs.
10440
10441         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
10442         for XEmacs.
10443
10444         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
10445         of symbol that holds plist data.
10446         (gnus-process-plist): Remove plist of process after getting it.
10447
10448 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10449
10450         * message.el (message-generate-hashcash): Change default to
10451         'opportunistic if hashcash is installed.
10452
10453         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
10454         (gnus-html-put-image): Only call image-size once, since it's somewhat
10455         time-consuming on remote X servers.
10456
10457 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10458
10459         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
10460         type on data, not a file name.
10461
10462         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
10463         window-pixel-edges for Emacs 21.
10464
10465         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
10466         decoded contents.
10467         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
10468
10469 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10470
10471         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
10472         group line format, since it isn't very interesting.
10473
10474         * gnus-agent.el (gnus-agent-short-article),
10475         (gnus-agent-long-article): Increase values for these two variables,
10476         since most people are likely to have more network connection and
10477         storage than before.
10478
10479         * gnus.el (gnus-refer-article-method): Change default to 'current.
10480         When referring an article, the common behavior is to refer it from the
10481         current select method, not the native select method.  The chances of
10482         the native select method having the message in question is rather slim
10483         these days.
10484
10485         * gnus-sum.el (gnus-auto-select-subject): Change default to
10486         `unseen-or-unread'.  I think it's likely that most people want to
10487         select an unseen article over a previously seen, but unread one.
10488
10489         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
10490         means that in the article buffer none of the minor mode elements will
10491         be shown, usually, and this is not desirable in most cases.
10492
10493         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
10494         that commands like `d' (and the like) go to the next line in the
10495         buffer, instead of the next unread article.  I think this is the
10496         behavior that is most natural for most users.
10497         (gnus-single-article-buffer): Change default to nil, so that people can
10498         have as many article buffers open as they have summary buffer.  I think
10499         this is the most natural way for the groups to behave.
10500
10501         * message.el (message-generate-new-buffers): Change default to
10502         `unsent', so that all new message buffers start their names with the
10503         string "*unsent", and it's easier to find the buffers if you move from
10504         them.
10505
10506 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10507
10508         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
10509         small.  They're probably tracking images.
10510         (gnus-html-wash-tags): Remove all <pre_int> place holders.
10511         (gnus-html-rescale-image): Yet another try at getting the image sizing
10512         right.
10513
10514         * nntp.el (nntp-request-set-mark): Refuse to do marks if
10515         nntp-marks-file-name is nil.
10516
10517 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10518
10519         * gnus-html.el (gnus-html-wash-tags)
10520         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
10521         Better logging.
10522
10523 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10524
10525         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
10526
10527         * gnus-html.el (gnus-html-wash-tags): Check the value of
10528         gnus-blocked-images in the summary buffer.
10529
10530 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10531
10532         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
10533
10534 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10535
10536         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
10537         like "a", it seems like.
10538         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
10539         since it needs to be picked from the correct buffer.
10540
10541         * nnwfm.el: Remove.
10542
10543         * nnlistserv.el: Remove.
10544
10545 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10546
10547         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
10548         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
10549
10550 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10551
10552         * nnkiboze.el: Remove.
10553
10554         * nndb.el: Remove.
10555
10556         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
10557         alt text.
10558         (gnus-html-rescale-image): Try to get the rescaling logic right for
10559         images that are just wide and not tall.
10560
10561         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
10562         overshadow variable bindings.
10563
10564 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
10565
10566         * gnus-html.el (gnus-html-wash-tags)
10567         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
10568         Add extra logging.
10569
10570 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10571
10572         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
10573         (gnus-max-image-proportion): New variable.
10574         (gnus-html-rescale-image): New function.
10575         (gnus-html-put-image): Rescale images.
10576
10577 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10578
10579         Fix up some byte-compiler warnings.
10580         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
10581         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
10582         (gnus-article-fill-cited-article, gnus-article-hide-citation)
10583         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
10584         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
10585         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
10586         (gnus-group-update-group): Use save-excursion and with-current-buffer.
10587
10588 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10589
10590         * gnus-html.el (gnus-article-html): Decode contents by charset.
10591
10592 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10593
10594         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
10595         (gnus-html-frame-width, gnus-blocked-images):
10596         * message.el (message-prune-recipient-rules): Add custom version.
10597         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
10598
10599         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
10600         functions.
10601
10602         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
10603         gnus-process-get.
10604
10605 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
10606
10607         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
10608         instead of lsub directly.
10609
10610 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10611
10612         * nnwarchive.el: Remove.
10613
10614         * gnus-soup.el: Remove.
10615
10616         * nnsoup.el: Remove.
10617
10618         * nnultimate.el: Remove.
10619
10620         * gnus-html.el (gnus-blocked-images): New variable.
10621
10622         * message.el (message-prune-recipients): New function.
10623         (message-prune-recipient-rules): New variable.
10624
10625         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
10626         guess whether a long line is natural text or not.
10627
10628         * gnus-html.el (gnus-html-schedule-image-fetching):
10629         Use gnus-process-plist and friends for compatibility.
10630
10631 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
10632
10633         * gnus-html.el: Require packages that define macros used in this file.
10634         (gnus-article-mouse-face): Declare to silence byte-compiler.
10635         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
10636         process-get.
10637         (gnus-html-put-image): Use plist-get to avoid getf.
10638         (gnus-html-prefetch-images): Use with-current-buffer.
10639
10640 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10641
10642         * gnus-ems.el: Provide compatibility functions for
10643         gnus-set-process-plist.
10644
10645         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
10646         header-line-format for XEmacs 21.4.
10647
10648         * gnus-sum.el (gnus-summary-stop-at-end-of-message):
10649         * gnus.el (gnus-valid-select-methods):
10650         * message.el (message-send-mail-partially-limit):
10651         * mm-decode.el (mm-text-html-renderer):
10652         * mml.el (mml-insert-mime-headers-always):
10653         * smiley.el (smiley-regexp-alist): Bump custom version.
10654
10655 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10656
10657         * gnus-html.el: require mm-url.
10658         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
10659         with the url to `url'.
10660         (gnus-html-wash-tags): Support cid: URLs/images.
10661
10662 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10663
10664         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
10665         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
10666         bindings, as they aren't useful at all.  `w' is moved to `W w'.
10667
10668         * gnus-move.el: Remove file, since it doesn't really work.
10669
10670         * gnus-html.el (gnus-article-html): Tell w3m that the input is
10671         UTF-8.  This seems to fix problems with some German web feeds.
10672
10673         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
10674         at the top so that the proper colors are applied.
10675
10676         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
10677         don't have dots in their names.
10678
10679         * gnus-art.el (gnus-article-view-part): Doc fix.
10680
10681         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
10682         XEmacs-compatible.
10683         (gnus-html-put-image): Don't do images on non-graphic displays.
10684
10685         * nnslashdot.el: Remove this unused backend.
10686
10687         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
10688         actions.
10689         (gnus-undo-register-1): Revert last change.
10690
10691         * gnus-group.el (gnus-group-completing-read): Protect against not
10692         having completion-styles bound.
10693
10694         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
10695         make broken recipients happier.
10696
10697         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
10698
10699         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
10700         point parameter.
10701
10702         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
10703
10704         * gnus-group.el (gnus-group-completing-read): Add 'substring to
10705         completion-styles for group selection.
10706
10707 2009-02-04  Andreas Schwab  <schwab@suse.de>
10708
10709         * gnus-score.el (gnus-score-string): Fix regex for matching extra
10710         headers and regexp-quote the match if necessary.
10711
10712 2009-03-24  Miles Bader  <miles@gnu.org>
10713
10714         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
10715         the blinking smiley.
10716
10717 2009-03-24  Simon Josefsson  <simon@josefsson.org>
10718
10719         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
10720         blink smiley.
10721
10722 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10723
10724         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
10725         where the dribbel file lives exists.
10726
10727         * message.el (message-send-mail-partially-limit): Change the default to
10728         nil, since most people don't want this.
10729
10730         * mm-url.el (mm-url-decode-entities): Also decode entities like
10731         &#x3212.
10732
10733 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
10734
10735         * gnus-sum.el (gnus-summary-idna-message):
10736         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
10737         Hyperlink urls in docstrings with URL `...'.
10738
10739 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
10740
10741         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
10742         functions.
10743
10744 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10745
10746         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
10747         say what the mouseover text should be.
10748
10749         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
10750         version of the mm-w3m-safe-url-regexp variable to only download images
10751         in the groups where we want that to happen.
10752
10753         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
10754
10755         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
10756         easier debugging.
10757         (gnus-article-beginning-of-window): Add kludge to allow spacing past
10758         big pictures in the article buffer.
10759
10760         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
10761         gnus-article-html.
10762         (mm-text-html-renderer): gnus-article-html needs curl in addition to
10763         w3m.
10764
10765         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
10766
10767 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10768
10769         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
10770         which doesn't exist.
10771
10772         * message.el (message-inhibit-ecomplete): New variable to allow some
10773         function to inhibit ecomplete address storage.
10774         (message-resend): Disable ecomplete message storage when resending
10775         messages.
10776
10777         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
10778
10779 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10780
10781         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
10782         Save excursion while copying, moving, and deleting articles in order to
10783         prevent the cursor from jumping to unforeseen place.
10784
10785 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10786
10787         * lpath.el: No need to bind bookmark-current-buffer,
10788         bookmark-yank-point and bookmark-make-record-function.
10789
10790 2010-08-17  Glenn Morris  <rgm@gnu.org>
10791
10792         * gnus-sync.el: Require gnus components whose functions are used.
10793
10794         * gnus-art.el (bookmark-make-record-function):
10795         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
10796         Declare for compiler.
10797
10798         * mm-url.el (mml-compute-boundary): Autoload.
10799
10800 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10801
10802         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
10803
10804 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
10805
10806         Typo fix "hoo4a" -> "hook".
10807
10808         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
10809
10810 2010-08-14  Glenn Morris  <rgm@gnu.org>
10811
10812         * gnus-sync.el (gnus-sync): Fix defgroup version.
10813
10814 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
10815
10816         Doc fixes and keep unknown groups (ammended for nunion bug fix).
10817
10818         * gnus-sync.el: Fix docs.
10819         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
10820         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
10821
10822 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
10823
10824         Optimizations for gnus-sync.el.
10825
10826         * gnus-sync.el: Add docs about gnus-sync-backend
10827         possibilities.
10828         (gnus-sync-save): Remove unnecessary message.
10829         (gnus-sync-read): Optimize and show what groups were skipped.
10830
10831 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
10832
10833         Minor bug fixes for gnus-sync.el.
10834
10835         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
10836         Don't read the sync on get-new-news.
10837
10838         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
10839         quiet.
10840
10841         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
10842         (fix typo).
10843
10844 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
10845
10846         Make saving and restoring of hidden threads work with overlays.
10847         Patch applied by Ted Zlatanov.
10848
10849         * gnus-sum.el (gnus-hidden-threads-configuration)
10850         (gnus-restore-hidden-threads-configuration): Update to deal with text
10851         properties, rather than searching for a magic character.
10852
10853 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
10854
10855         New gnus-sync.el library for synchronization of marks.
10856
10857         * gnus-sync.el: New library for synchronization of marks.
10858
10859         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
10860         renamed from `gnus-registry-grep-in-list'.
10861
10862         * gnus-registry.el (gnus-registry-follow-group-p):
10863         Use `gnus-grep-in-list'.
10864
10865         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
10866
10867 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10868
10869         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
10870         determining charset of text fails.
10871
10872 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10873
10874         * nnmail.el (nnmail-get-new-mail-1): Revert.
10875
10876         * nnml.el (nnml-active-number): Make sure names of newly created groups
10877         in nnml-group-alist are encoded.
10878
10879 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10880
10881         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
10882         containing non-ASCII characters in active file for nnml back end.
10883
10884 2010-07-24  David Engster  <dengste@eml.cc>
10885
10886         * mml-smime.el (mml-smime-epg-verify): Also accept the older
10887         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
10888
10889 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
10890
10891         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
10892         tag (Bug#6654).
10893
10894 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10895
10896         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
10897         the article buffer, not the summary buffer.
10898
10899 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10900
10901         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
10902         Emacs 23 as well.
10903
10904 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10905
10906         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
10907         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
10908
10909 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10910
10911         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
10912         Patch applied by Karl Fogel.
10913
10914         * gnus-sum.el (gnus-summary-bookmark-make-record):
10915         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
10916
10917 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10918
10919         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
10920         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
10921         C-w still not working correctly from Article buffers; Thierry's
10922         patch to fix that will be applied after this.
10923
10924         * gnus-art.el (bookmark-make-record-function): New local variable.
10925
10926         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
10927         article buffer.
10928         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
10929
10930 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
10931
10932         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
10933         on changes in bookmark.el.
10934
10935 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10936
10937         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
10938         `no-log' instead of message not to log prompt string.
10939
10940 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
10941
10942         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
10943         the *other* type of HTML form submission.
10944
10945 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
10946
10947         * auth-source.el (auth-source-pick): If choice does not contain a
10948         questioned keyword, set the check to t.
10949
10950 2010-06-12  Romain Francoise  <romain@orebokech.com>
10951
10952         * gnus-util.el (gnus-date-get-time): Move up before first use.
10953
10954 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10955
10956         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
10957         (gnus-article-edit-part): Bind it to make last part that is substituted
10958         or deleted visible.
10959         (gnus-mime-display-single): Buttonize part of which id equals to
10960         gnus-mime-buttonized-part-id.
10961
10962 2010-06-10  Dan Christensen  <jdc@uwo.ca>
10963
10964         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
10965         (gnus-dd-mmm): Use gnus-date-get-time.
10966         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
10967         simplify logic.
10968         (gnus-summary-limit-to-age): Use gnus-date-get-time.
10969         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
10970
10971 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
10972
10973         * auth-source.el (top): Autoload `secrets-list-collections',
10974         `secrets-create-item', `secrets-delete-item'.
10975         (auth-sources): Fix tag string.
10976         (auth-get-source, auth-source-retrieve, auth-source-create)
10977         (auth-source-delete): New defuns.
10978         (auth-source-pick): Rewrite in order to avoid 2 passes.
10979         (auth-source-forget-user-or-password): New parameter USERNAME.
10980         (auth-source-user-or-password): New parameters CREATE-MISSING and
10981         DELETE-EXISTING.  Retrieve password interactively, if needed.
10982
10983 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
10984
10985         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
10986         deleting unused directories when gnus-expert-user is t.
10987
10988 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10989
10990         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
10991         for each temp file when gnus-article-browse-delete-temp is ask.
10992
10993 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10994
10995         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el:
10996         Replace Lisp calls to delete-backward-char by calls to delete-char.
10997
10998 2010-05-20  Kevin Ryde  <user42@zip.com.au>
10999
11000         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
11001
11002 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
11003
11004         * password-cache.el (password-cache-remove): Fix docstring.
11005
11006 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11007
11008         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
11009         article unless decoding article to be saved.
11010
11011 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11012
11013         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt):
11014         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
11015         generated within the mm-with-unibyte-current-buffer macro.
11016
11017 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11018
11019         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
11020         to nil when we're in a mml-preview buffer and no group is selected.
11021
11022 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
11023
11024         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
11025         when catching the `C-g'.  Reported by "Leo".
11026
11027 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11028
11029         * message.el (message-forward-make-body-plain)
11030         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
11031         multibyte-string-p.
11032
11033         * lpath.el: Revert.
11034
11035 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11036
11037         * message.el (message-forward-make-body-mml): Assume original message
11038         is multibyte string; error on unibyte.
11039         (message-forward-make-body-plain): Ditto; don't add excessive newline
11040         in body end.
11041
11042         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
11043
11044 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
11045
11046         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
11047         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
11048
11049 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11050
11051         * mm-extern.el (mm-extern-url): Don't use
11052         mm-with-unibyte-current-buffer.
11053         (mm-extern-cache-contents): Use with-current-buffer instead of
11054         save-excursion + set-buffer.
11055
11056 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11057
11058         * mm-util.el (mm-emacs-mule): Remove.
11059
11060 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
11061
11062         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
11063         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
11064         change.
11065
11066 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11067
11068         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
11069         bind the default value of enable-multibyte-characters to nil.
11070
11071 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11072
11073         * message.el (message-forward-make-body-plain)
11074         (message-forward-make-body-mml):
11075         Don't use mm-with-unibyte-current-buffer.
11076
11077 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11078
11079         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
11080
11081 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
11082
11083         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
11084         (Bug#5592).
11085
11086 2010-05-07  Julien Danjou  <julien@danjou.info>
11087
11088         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
11089         it to mm-pipe-part.
11090
11091         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
11092         it is given.
11093
11094 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11095
11096         * binhex.el (binhex-decode-region-internal):
11097         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type):
11098         (dns-query):
11099         * nnweb.el (nnweb-gmane-search):
11100         * pgg-parse.el (pgg-parse-armor):
11101         * pgg.el (pgg-verify-region):
11102         * sha1.el (sha1-string-external):
11103         * uudecode.el (uudecode-decode-region-internal):
11104         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
11105         XEmacs.
11106
11107         * gnus-art.el (gnus-article-browse-html-parts):
11108         * gnus-group.el (gnus-read-ephemeral-gmane-group):
11109         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
11110         make-temp-file.
11111
11112         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
11113         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
11114         compiling.
11115
11116         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
11117         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
11118         XEmacs when compiling.
11119
11120         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
11121         gnus-pick-mode-off-hook for XEmacs when compiling.
11122         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
11123         gnus-binary-mode-off-hook for XEmacs when compiling.
11124
11125         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
11126         Return nil if char-charset is not available.
11127
11128         * imap.el (imap-disable-multibyte)
11129         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
11130         macros.
11131
11132         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
11133         instead of encode-coding-string.
11134
11135         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
11136         'xemacs) instead of mm-emacs-mule to switch function definitions.
11137         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
11138
11139         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
11140         bind temporary-file-directory for XEmacs;
11141         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
11142         timer-set-function for XEmacs 21.4 and SXEmacs;
11143         bind timer-list for XEmacs 21.4 and SXEmacs;
11144         fbind char-charset and find-charset-region for non-Mule XEmacs;
11145         fbind decode-coding-region, decode-coding-string, detect-coding-region,
11146         encode-coding-region and encode-coding-string for XEmacs having no
11147         file-coding feature.
11148
11149 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
11150
11151         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
11152
11153 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11154
11155         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
11156         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
11157
11158 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
11159
11160         * mm-util.el (mm-decompress-buffer): Use `delete-file';
11161         alias `jka-compr-delete-temp-file' no longer exists.
11162
11163 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11164
11165         Use define-minor-mode in Gnus where applicable.
11166         * mml.el (mml-mode): Use define-minor-mode.
11167         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
11168         (gnus-undo-mode): Use define-minor-mode.
11169         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
11170         (gnus-dead-summary-mode): Use define-minor-mode.
11171         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
11172         Initialize in declaration.
11173         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
11174         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
11175         (gnus-mailing-list-mode): Use define-minor-mode.
11176         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
11177         (gnus-draft-mode): Use define-minor-mode.
11178         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
11179         (gnus-dired-mode): Use define-minor-mode.
11180
11181 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
11182
11183         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
11184         handles on recursive mml-to-mime translation and check them for
11185         boundary delimiter collisions.  Reported by Greg Troxel.
11186
11187 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11188
11189         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
11190
11191 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11192
11193         * mm-util.el (mm-find-buffer-file-coding-system):
11194         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
11195
11196 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
11197
11198         * message.el (message-generate-headers): Record insertion of optional
11199         headers as well.  Otherwise the check to prevent repeated insertion of
11200         optional headers is a no-op.
11201
11202 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
11203
11204         * smime.el: Don't mention CVS.
11205
11206         * nnrss.el (nnrss-fetch): Don't mention CVS.
11207
11208         * nnir.el: Don't mention CVS.
11209
11210 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11211
11212         * gnus-sum.el (gnus-summary-bookmark-make-record):
11213         Add `location' field.
11214
11215 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11216
11217         * lpath.el: Fbind bookmark-default-handler,
11218         bookmark-get-bookmark-record, bookmark-make-record-default,
11219         bookmark-prop-get for Emacs <23 and XEmacs.
11220
11221 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
11222
11223         * gnus-sum.el: Add bookmark declarations to silence the compiler.
11224         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
11225         Use with-current-buffer to silence the byte-compiler.
11226         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
11227         bother to require `gnus'.
11228         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
11229
11230 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11231
11232         * gnus-sum.el (gnus-summary-bookmark-make-record)
11233         (gnus-summary-bookmark-jump): New functions.
11234         (gnus-summary-mode): Setup bookmark support.
11235
11236 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
11237
11238         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
11239         if set.
11240
11241 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
11242
11243         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
11244         gnus-article-browse-html-save-cid-image; make it work recursively for
11245         forwarded messages as well.
11246         (gnus-article-browse-html-parts): Work when prefix arg is given.
11247         (gnus-article-browse-html-article): Doc fix.
11248
11249 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
11250
11251         * message.el (message-default-mail-headers):
11252         (message-default-headers): Carry the value mail-default-headers over
11253         into message-default-mail-headers, rather than message-default-headers.
11254
11255 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
11256
11257         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
11258         charset.
11259
11260         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
11261         charset into the <meta> tag when the article is encoded to utf-8.
11262
11263 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11264
11265         * gnus-art.el (gnus-article-browse-delete-temp-files):
11266         Delete directories as well.
11267         (gnus-article-browse-html-parts): Work for images that do not specify
11268         file names; delete temp directory when quitting; insert header at the
11269         right place; use file: scheme for image files.
11270
11271 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
11272
11273         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
11274         (gnus-article-browse-html-parts): Use it to make temporary cid image
11275         files in addition to html file so that browser may display them.
11276
11277 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11278
11279         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
11280
11281 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
11282
11283         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
11284
11285 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
11286
11287         * auth-source.el (auth-sources): Change default to be simpler.
11288         Explain about Secret Service API sources.  Improve Customize options.
11289         (auth-source-pick): Change to accept any number of search parameters.
11290         Implement fallbacks iteratively, not recursively.  Add scoring on the
11291         second pass and sort by score.  Call Secret Service API when needed.
11292         (auth-source-user-or-password): Use it.  Call Secret Service API
11293         directly when needed to get the user name and the password.
11294
11295 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
11296
11297         * message.el (message-interactive): Doc fix.
11298         (message-qmail-inject-args): Reflow.
11299         (message-kill-to-signature): Fix typo in docstring.
11300
11301         * smiley.el (smiley-buffer): Fix typo in docstring.
11302
11303 2010-03-24  Glenn Morris  <rgm@gnu.org>
11304
11305         * mail-source.el (gnus-message): Declare.
11306         (mail-source-delete-old-incoming): Require gnus-util.
11307
11308 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
11309
11310         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
11311
11312         * message.el (ecomplete-setup): Autoload it for Emacs <23.
11313
11314         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
11315         password-cache's default if it is not bound.
11316         (mml-secure-passphrase-cache-expiry): Default to 16 that is
11317         password-cache-expiry's default if it is not bound.
11318
11319         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
11320         available in Emacs 21.
11321
11322         * lpath.el: Suppress compiler warnings for:
11323         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
11324         XEmacs;
11325         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
11326         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
11327         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
11328
11329 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
11330
11331         * auth-source.el (auth-sources): Fix up definition so extra parameters
11332         are always inline.
11333
11334 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
11335
11336         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
11337         wasn't updated after mismatch.  Clear cached mailbox info correctly
11338         when uidvalidity changes.
11339         (nnimap-group-prefixed-name): New function to avoid some code
11340         duplication.
11341         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
11342         (nnimap-request-group): Use it.
11343         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
11344         (nnimap-update-unseen): Significantly improved speed of Gnus startup
11345         with many imap folders.  This is done by caching the group status from
11346         the imap server persistently in a group parameter `imap-status'.  (This
11347         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
11348         but not persistently, so every Gnus startup was still very slow.)
11349
11350 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
11351
11352         * assistant.el (assistant-render-text): Run `widget-setup' and don't
11353         delete the extra newline.  Otherwise editing of :string and :number
11354         types don't work.
11355
11356 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
11357
11358         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
11359         secrets.el dependency.
11360         (auth-sources): Add optional user name.  Add secrets.el configuration
11361         choice (unused right now).
11362
11363 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
11364
11365         * gnus-sum.el (gnus-summary-make-menu-bar):
11366         Let `gnus-registry-install-shortcuts' fill in the functions.
11367
11368         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
11369         warnings.
11370         (gnus-registry-misc-menus): Variable to hold registry mark menus.
11371         (gnus-registry-install-shortcuts): Populate and use it in a
11372         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
11373
11374 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
11375
11376         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
11377         In-place substitutions for the group name encoding/decoding.
11378         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
11379         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
11380         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
11381         (nnimap-update-unseen, nnimap-request-list)
11382         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
11383         (nnimap-request-set-mark, nnimap-split-to-groups)
11384         (nnimap-split-articles, nnimap-request-newgroups)
11385         (nnimap-request-create-group, nnimap-request-accept-article)
11386         (nnimap-request-delete-group, nnimap-request-rename-group)
11387         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
11388         `encoded-mbx' for consistency.
11389         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
11390         variable `imap-current-mailbox'.
11391
11392         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
11393         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
11394
11395 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
11396
11397         * pop3.el (pop3-display-message-size-flag): Display message size byte
11398         counts during POP3 download.
11399         (pop3-movemail): Use it.
11400         (pop3-list): Implement listing of available messages.
11401
11402 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
11403
11404         * nnir.el (nnir-get-article-nov-override-function): New function to
11405         override the normal NOV retrieval.
11406         (nnir-retrieve-headers): Use it.
11407
11408 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
11409
11410         * auth-source.el (netrc-machine-user-or-password): Autoload.
11411
11412 2010-03-19  Glenn Morris  <rgm@gnu.org>
11413
11414         Stop message.el from loading about 40 libraries it doesn't always need.
11415         The general approach is to autoload rather than require, and to
11416         require in the specific functions rather than the file.  (Bug#5642)
11417
11418         * gmm-utils.el: Don't require wid-edit.
11419         (widget-create-child-value, widget-convert, widget-default-get):
11420         Autoload.
11421
11422         * gnus-util.el: Don't require time-date, netrc.
11423         (message-fetch-field, gnus-group-name-decode): Declare rather than
11424         autoloading.
11425         (gnus-fetch-field): Require message.
11426         (gnus-decode-newsgroups): Require gnus-group.
11427
11428         * ietf-drums.el: Don't require time-date.
11429
11430         * message.el: Don't require hashcash, canlock, ecomplete.
11431         Do require mail-utils.  Require nnheader only when compiling.
11432         (smtpmail-default-smtp-server): Remove declaration.
11433         (message-send-mail-function): Check smtpmail-default-smtp-server
11434         is bound rather than requiring smtpmail.
11435         (message-auto-save-directory, message-insert-signature):
11436         Use expand-file-name rather than nnheader-concat.
11437         (nnheader-insert-file-contents): Autoload.
11438         (hashcash-wait-async): Declare.
11439         (message-send-mail): Only call gnus-setup-posting-charset if
11440         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
11441         (message-send-mail-with-sendmail): Require sendmail.
11442         (canlock-password, canlock-password-for-verify): Declare.
11443         (message-canlock-password): Require canlock.
11444         (nnheader-get-report): Autoload.
11445         (gnus-setup-posting-charset): Declare.
11446         (message-send-news): Require gnus-msg.
11447         (message-make-references, message-make-in-reply-to): Use mail-header-id
11448         rather than the alias mail-header-message-id.
11449         (ecomplete-add-item, ecomplete-save): Declare.
11450         (message-put-addresses-in-ecomplete): Require ecomplete.
11451         (ecomplete-display-matches): Autoload.
11452
11453         * mm-decode.el: Don't require mailcap, gnus-util.
11454         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
11455         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
11456         Autoload.
11457         (mailcap-mime-extensions): Declare.
11458
11459         * mm-encode.el: Don't require mailcap.
11460         (mailcap-extension-to-mime): Autoload.
11461
11462         * mml-sec.el: Don't require password-cache.
11463
11464         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
11465         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
11466         (mml-minibuffer-read-type): Require mailcap.
11467         (mml-preview): Require gnus-msg.
11468
11469         * mml1991.el: Require password-cache.
11470         (password-cache-expiry): Remove declaration.
11471
11472         * mml2015.el: Require password-cache.
11473         (password-cache-expiry): Remove declaration.
11474
11475         * nneething.el (mailcap): Require mailcap.
11476
11477         * nnheader.el (declare-function): Add compatibility stub.
11478         (message-remove-header): Declare rather than autoload.
11479         (nnheader-replace-header): Require message.
11480
11481         * nnimap.el (declare-function): Add compatibility stub.
11482         (netrc-parse, netrc-machine-user-or-password): Declare.
11483         (nnimap-open-connection): Require netrc.
11484
11485         * nntp.el (declare-function): Add compatibility stub.
11486         (netrc-parse, netrc-machine, netrc-get): Declare.
11487         (nntp-send-authinfo): Require netrc.
11488
11489         * rfc2047.el: Don't require qp.
11490         (quoted-printable-encode-region, quoted-printable-decode-string):
11491         Autoload.
11492
11493         * sieve-mode.el: Don't require easymenu.
11494         (easy-menu-add-item): Autoload it.
11495
11496         * spam-stat.el (time-to-number-of-days): Autoload it.
11497
11498 2010-03-19  Glenn Morris  <rgm@gnu.org>
11499
11500         * password-cache.el (password-cache, password-cache-expiry): Autoload.
11501
11502 2010-03-18  Glenn Morris  <rgm@gnu.org>
11503
11504         * hashcash.el (declare-function): Remove duplicate definition.
11505
11506 2010-03-17  Kevin Ryde  <user42@zip.com.au>
11507
11508         * mml.el (mml-read-tag): Unquote values with `read' to reverse
11509         prin1 in mml-insert-tag (just stripping the quotes gave wrong
11510         value if any backslash escapes).
11511
11512 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11513
11514         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
11515         if it is available.  (bug#5647)
11516
11517         * lpath.el: Suppress compiler warning for coding-system-from-name for
11518         Emacs 21 and XEmacs.
11519
11520 2010-03-14  Juri Linkov  <juri@jurta.org>
11521
11522         * hmac-def.el:
11523         * hmac-md5.el:
11524         * netrc.el: Fix keywords.
11525
11526 2010-02-26  Glenn Morris  <rgm@gnu.org>
11527
11528         * message.el (message-send-mail-function): Change the default, so that
11529         it inherits from a customized send-mail-function.  (Bug#5643)
11530
11531 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
11532
11533         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
11534         shell-command-to-string signals an error (bug#5299).
11535
11536 2010-02-24  Glenn Morris  <rgm@gnu.org>
11537
11538         * message.el (message-smtpmail-send-it)
11539         (message-send-mail-with-mailclient): Doc fixes.
11540
11541 2010-02-16  Glenn Morris  <rgm@gnu.org>
11542
11543         * message.el (message-default-mail-headers): Change the default value
11544         to ease the transition from mail-mode to message-mode.  (Bug#5555)
11545
11546 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11547
11548         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
11549         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
11550
11551 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
11552
11553         * time-date.el (date-to-time): Doc fix (Bug#5408).
11554
11555 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
11556
11557         * message.el (message-mail): Just pass yank-action on to message-setup.
11558         (message-setup): Handle (FUN . ARGS) form of yank-action.
11559         (message-with-reply-buffer, message-widen-reply)
11560         (message-yank-original): Handle non-buffer values of
11561         message-reply-buffer (Bug#4080).
11562         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
11563
11564 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
11565
11566         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
11567         Fix typo in docstring.
11568
11569 2010-01-08  Jason Rumney  <jasonr@gnu.org>
11570
11571         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
11572         response.
11573
11574 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11575
11576         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
11577
11578         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
11579
11580         * message.el (message-check-news-header-syntax): Protect against a
11581         string that `rfc822-addresses' returns when parsing fails.
11582
11583 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11584
11585         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
11586         (gnus-previous-char-property-change): New functions.
11587
11588         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
11589
11590 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
11591
11592         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
11593         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
11594
11595 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
11596
11597         * message.el (message-exchange-point-and-mark): Rework last change to
11598         avoid using optional arg of exchange-point-and-mark, for backward
11599         compatibility.
11600
11601 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
11602
11603         * message.el (message-exchange-point-and-mark):
11604         Call exchange-point-and-mark with an argument rather than setting
11605         mark-active by hand (Bug#5175).
11606
11607 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11608
11609         * nntp.el (nntp-service-to-port): Work for service expressed with
11610         numeric string; replace [:digit:] with [0-9] for XEmacs.
11611
11612 2009-12-17  Glenn Morris  <rgm@gnu.org>
11613
11614         * gnus-group.el (gnus-bug-group-download-format-alist):
11615         Change emacs entry to debbugs.gnu.org.  Bump :version.
11616
11617 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
11618
11619         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
11620
11621 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
11622
11623         * message.el (message-info): Explain why we use `Info-goto-node'.
11624
11625 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11626
11627         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
11628
11629 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
11630
11631         * message.el (message-completion-in-region): New compatibility function.
11632         (message-expand-group): Use it.
11633
11634 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11635
11636         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
11637         with no unread article should be listed if the 2nd arg `predicate' is
11638         given.
11639
11640 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11641
11642         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
11643
11644 2009-11-29  Juri Linkov  <juri@jurta.org>
11645
11646         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
11647         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
11648         on `gnus-recenter'.  (Bug#4698, Bug#4981)
11649
11650 2009-11-26  Kevin Ryde  <user42@zip.com.au>
11651
11652         * sha1.el (sha1-string-external): default-directory "/" in case
11653         otherwise non-existent.  process-connection-type pipe for touch of
11654         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
11655
11656 2009-11-25  Kevin Ryde  <user42@zip.com.au>
11657
11658         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
11659         it's comms related and sgml-mode.el has "comm" on that basis too.
11660
11661 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11662
11663         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
11664         containing tspecial characters if they have been already quoted.
11665
11666 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
11667
11668         * dns-mode.el (auto-mode-alist): Purecopy string.
11669
11670 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11671
11672         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
11673
11674 2009-10-24  Glenn Morris  <rgm@gnu.org>
11675
11676         * gnus-art.el (help-xref-stack-item): Define for compiler.
11677
11678 2009-10-21  Kevin Ryde  <user42@zip.com.au>
11679
11680         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
11681
11682 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11683
11684         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
11685
11686 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11687
11688         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
11689         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
11690
11691 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11692
11693         * gnus.el (gnus-overlay-get): New alias to overlay-get.
11694         (gnus-overlays-in): New alias to overlays-in.
11695
11696         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
11697         gnus-overlay-get, and gnus-delete-overlay.
11698         (gnus-summary-show-thread): Make it work as well for systems in which
11699         next-single-char-property-change is not available.
11700         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
11701
11702         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
11703         (gnus-overlay-get): New alias to extent-property.
11704         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
11705
11706         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
11707         SXEmacs.
11708
11709         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
11710         SXEmacs.
11711
11712 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
11713
11714         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
11715
11716 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
11717
11718         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
11719         and XEmacs that don't have `remove-overlays'.
11720
11721 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11722
11723         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
11724         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
11725         selective display.  Use overlays instead.
11726
11727 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
11728
11729         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
11730
11731 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
11732
11733         * spam-stat.el (spam-stat-load): Fix typo in message.
11734
11735 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
11736
11737         * dig.el (dig-invoke): Fix typo in docstring.
11738         (query-dig): Reflow docstring.
11739
11740 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
11741
11742         * gnus-art.el (gnus-article-encrypt-body):
11743         * message.el (message-check-recipients):
11744         * mm-util.el (mm-codepage-setup):
11745         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
11746         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
11747
11748 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
11749
11750         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
11751         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
11752         keys from the menu if mm-{sign,encrypt}-option is 'guided.
11753         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
11754         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
11755
11756 2009-09-21  Kevin Ryde  <user42@zip.com.au>
11757
11758         * dig.el: Add "Keywords: comm", as per net-utils.el.
11759
11760 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11761
11762         * dig.el (dig-mode): Use define-derived-mode.
11763
11764 2009-09-19  Glenn Morris  <rgm@gnu.org>
11765
11766         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
11767
11768 2009-09-18  Glenn Morris  <rgm@gnu.org>
11769
11770         * gnus-diary.el (gnus-diary-check-message):
11771         * message.el (message-insert-formatted-citation-line):
11772         * nnbabyl.el (top-level):
11773         * nndiary.el (nndiary-schedule):
11774         Fix typos in condition-case handlers.
11775
11776 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11777
11778         * gnus-art.el (gnus-article-edit-part): Work for the buffer
11779         configuration that provides the sole article window in a frame;
11780         position point correctly after deleting a part.
11781
11782 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
11783
11784         * spam.el (spam-unregister-on-reregister): Add boolean variable.
11785         (spam-resolve-registrations-routine): Use it to unregister articles
11786         that change status.
11787
11788 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11789
11790         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
11791         with XEmacs.
11792         (parse-time-string-chars): Use it.
11793
11794 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
11795
11796         * imap.el (imap-interactive-login): Better messages.
11797         (imap-open): Fix bug with renamed buffer on reconnect.
11798         (imap-authenticate): Add buffer-local imap-last-authenticator variable
11799         for easier debugging and cleaner code.  On successful (guessed based on
11800         server capabilities) secondary authentication, set imap-state
11801         correctly.
11802         (imap-last-authenticator): Define imap-last-authenticator as a variable
11803         to avoid warnings.
11804
11805 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11806
11807         * nnrss.el (nnrss-request-article): Remove binding of
11808         default-enable-multibyte-characters that has gotten needless by
11809         the 2007-07-13 change in rfc2047-encode-message-header.
11810
11811         * mml.el (mml-insert-multipart): Error on the message header.
11812         (mml-insert-part): Error on the message header; position point at
11813         the end of a MIME tag.
11814
11815 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11816
11817         * time-date.el (autoload): Expand define-obsolete-function-alias into
11818         defalias and make-obsolete for old Emacsen that Gnus supports.
11819         (with-no-warnings): Define it for old Emacsen.
11820         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
11821         is available.
11822         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
11823         float-time is available; suppress compile warning for time-to-seconds.
11824
11825         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
11826         (gnus-float-time): Alias to float-time if it exists.
11827
11828         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
11829         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
11830         float-time is available; suppress compile warning for time-to-seconds.
11831
11832         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
11833         XEmacs.
11834
11835 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
11836
11837         * imap.el (imap-message-map): Docstring fix.
11838
11839 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11840
11841         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
11842         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
11843         Add the optional argument `encoding' that overrides the default.
11844
11845         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
11846         mm-encode-buffer.
11847
11848 2009-09-04  Glenn Morris  <rgm@gnu.org>
11849
11850         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
11851         mm-disable-multibyte, rather than default-enable-multibyte-characters.
11852         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
11853         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
11854         * mm-util.el (mm-with-unibyte-current-buffer)
11855         (mm-find-buffer-file-coding-system):
11856         * yenc.el (yenc-decode-region): Use default-value rather than
11857         default-enable-multibyte-characters.
11858
11859 2009-09-03  Glenn Morris  <rgm@gnu.org>
11860
11861         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
11862         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
11863         than default-enable-multibyte-characters.
11864
11865 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
11866
11867         * gnus-art.el (gnus-article-read-summary-keys):
11868         Fix gnus-buffer-configuration's value temporarily used.
11869
11870 2009-09-02  Glenn Morris  <rgm@gnu.org>
11871
11872         * gnus-util.el (gnus-float-time): New function.
11873         * gnus-delay.el (gnus-delay-article):
11874         * gnus-sum.el (gnus-thread-latest-date):
11875         * gnus-util.el (gnus-user-date): Use gnus-float-time.
11876         * nnspool.el (nnspool-request-newgroups):
11877         Use gnus-float-time rather than time-to-seconds.
11878         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
11879
11880         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
11881         (gnus-header-subject-face, gnus-header-newsgroups-face)
11882         (gnus-header-name-face, gnus-header-content-face):
11883         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
11884         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
11885         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
11886         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
11887         (gnus-cite-face-11):
11888         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
11889         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
11890         (gnus-server-closed-face, gnus-server-denied-face)
11891         (gnus-server-offline-face):
11892         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
11893         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
11894         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
11895         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
11896         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
11897         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
11898         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
11899         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
11900         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
11901         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
11902         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
11903         (gnus-summary-selected-face, gnus-summary-cancelled-face)
11904         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
11905         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
11906         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
11907         (gnus-summary-high-undownloaded-face)
11908         (gnus-summary-low-undownloaded-face)
11909         (gnus-summary-normal-undownloaded-face)
11910         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
11911         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
11912         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
11913         (gnus-splash-face):
11914         * message.el (message-header-to-face, message-header-cc-face)
11915         (message-header-subject-face, message-header-newsgroups-face)
11916         (message-header-other-face, message-header-name-face)
11917         (message-header-xheader-face, message-separator-face)
11918         (message-cited-text-face, message-mml-face):
11919         * sieve-mode.el (sieve-control-commands-face)
11920         (sieve-action-commands-face, sieve-test-commands-face)
11921         (sieve-tagged-arguments-face):
11922         * spam.el (spam-face):
11923         Mark face aliases with "-face" in the name as obsolete.
11924
11925 2009-09-01  Glenn Morris  <rgm@gnu.org>
11926
11927         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
11928         than goto-line.
11929
11930 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
11931
11932         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
11933         Don't move point if the command is invoked inside the message header.
11934
11935 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11936
11937         * imap.el (imap-send-command): Simplify.
11938         (imap-wait-for-tag): point-max -> buffer-size.
11939
11940 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
11941
11942         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
11943         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
11944         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
11945         * nnir.el (nnir-swish-e-index-file):
11946         * gnus-sum.el (gnus-summary-delete-marked-as-read)
11947         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
11948         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
11949         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
11950         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
11951         (gnus-treat-display-xface): Add Emacs version of obsolescence.
11952
11953 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11954
11955         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
11956         Don't save excursion.
11957
11958 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11959
11960         * nnheader.el (nnheader-find-file-noselect):
11961         * mm-util.el (mm-insert-file-contents):
11962         Use (default-value 'major-mode) instead of default-major-mode.
11963
11964 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
11965
11966         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
11967
11968 2009-08-26  Glenn Morris  <rgm@gnu.org>
11969
11970         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
11971         than placing in files.el.
11972
11973 2009-08-25  Glenn Morris  <rgm@gnu.org>
11974
11975         * nnir.el (top-level): Don't require cl at run-time.
11976         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
11977         Replace cl-function substitute with gnus-replace-in-string.
11978         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
11979         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
11980         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
11981         simplified expansions.
11982
11983 2009-08-25  Kevin Ryde  <user42@zip.com.au>
11984
11985         * dig.el (dig): Add autoload cookie.
11986
11987 2009-08-22  Glenn Morris  <rgm@gnu.org>
11988
11989         * gnus-art.el (gnus-button-patch): Use forward-line rather than
11990         goto-line.
11991
11992 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
11993
11994         * parse-time.el (parse-time-string-chars): Save match data.
11995
11996 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
11997
11998         * parse-time.el (parse-time-string-chars): Compute using character
11999         classes, to handle non-ascii characters (Bug#3190).
12000
12001 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12002
12003         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
12004
12005         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
12006         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
12007         (gnus-mm-display-part, gnus-mime-display-single)
12008         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
12009         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
12010
12011         * gnus-sum.el
12012         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
12013         (gnus-summary-move-article): Add expirable mark to articles copied or
12014         moved to group that has auto-expire turned on if the option is non-nil.
12015
12016 2009-07-24  Glenn Morris  <rgm@gnu.org>
12017
12018         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
12019         Fix typo.  (Bug#3903)
12020
12021 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12022
12023         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
12024         gnus-article-read-summary-keys rather than gnus-summary-edit-article
12025         that should not be used for draft articles.
12026         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
12027         that has no concern in minor mode keys.
12028         (gnus-article-summary-command, gnus-article-summary-command-nosave):
12029         Abolish.
12030
12031 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12032
12033         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
12034         article without making inquiry to a user for unknown encoding.
12035
12036         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
12037         (nnmaildir--scan): Assume i-node and device number that file-attributes
12038         returns might be cons-cell.
12039
12040         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
12041
12042         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
12043
12044 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
12045
12046         * auth-source.el: Remove docs now in auth.texi.  Don't use
12047         `gnus-message' for logging.  Add new variables `auth-source-debug' and
12048         `auth-source-hide-passwords' and use them.
12049
12050 2009-07-15  Glenn Morris  <rgm@gnu.org>
12051
12052         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
12053
12054 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12055
12056         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
12057         excessive whitespace from the default values of title and description.
12058
12059 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12060
12061         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
12062         mail-fetch-field to fetch Content-Description header in order to
12063         exclude newlines.
12064
12065 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
12066
12067         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
12068         format used by GnuPG 2.0.11.
12069
12070 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12071
12072         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
12073         to deleted part.
12074
12075 2009-05-30  David Engster  <dengste@eml.cc>
12076
12077         * nnmairix.el: Remove old documentation in the commentary block.
12078         (nnmairix-request-group): Do not update active file for nnml back ends.
12079         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
12080         end so that overview files are ignored.
12081         (nnmairix-update-groups): Make updating the groups more robust by using
12082         marks.
12083         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
12084         with dollar characters in message-id.
12085
12086 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
12087
12088         * spam.el: Use dns-query instead of query-dns.  Was renamed on
12089         2008-12-25 in dns.el.
12090
12091 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12092
12093         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
12094         could happen if the text is only composed of spaces and/or tabs.
12095
12096 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
12097
12098         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
12099         when sending a queued message to avoid extra mml tags.
12100
12101 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12102
12103         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
12104
12105 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12106
12107         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
12108         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
12109         rmail-toggle-header for XEmacs;
12110         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
12111
12112 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12113
12114         * gnus-dired.el: Remove autoload for gnus-setup-message.
12115         (gnus-dired-attach): Fake this-command value to prevent Gnus from
12116         displaying Gnus logo; always use compose-mail.
12117
12118 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12119
12120         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
12121
12122 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12123
12124         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
12125         (gnus-nocem-issuers): List currently active issuers; fix custom type.
12126         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
12127         available.
12128         (gnus-nocem-epg-verify): New function.
12129
12130 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
12131
12132         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
12133
12134 2009-02-15  Glenn Morris  <rgm@gnu.org>
12135
12136         * gnus-util.el (rmail-insert-rmail-file-header)
12137         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
12138         autoloads.
12139         (rmail-default-rmail-file): Remove unnecessary declaration.
12140         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
12141
12142 2009-02-14  Glenn Morris  <rgm@gnu.org>
12143
12144         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
12145         variable (only used in gnus-util, which declares it anyway).
12146         (rmail-output-to-rmail-file): Remove autoload of deleted function,
12147         which was only needed by gnus-art (changed to not use it any more).
12148         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
12149         only used in gnus-util, which autoloads it itself.
12150         (rmail-update-summary): Fix autoload.
12151
12152         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
12153         rather than rmail-output-to-rmail-file.
12154
12155 2009-02-07  Glenn Morris  <rgm@gnu.org>
12156
12157         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
12158         autoload of function that no longer exists.
12159         (rmail-toggle-header): Declare.
12160         (message-forward-rmail-make-body): Handle mbox Rmail.
12161
12162 2009-01-31  Glenn Morris  <rgm@gnu.org>
12163
12164         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
12165         2009-01-09 change.
12166
12167 2009-01-31  Dave Love  <fx@gnu.org>
12168
12169         * imap.el (imap-fetch-safe): Bind debug-on-error.
12170         (imap-debug): Add imap-fetch-safe.
12171
12172 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
12173
12174         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
12175         (auth-source-forget-all-cached): New convenience function.
12176         (auth-source-user-or-password): Accept list of modes or a single mode.
12177
12178         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
12179         auth-source modes.
12180
12181         * netrc.el (netrc-machine-user-or-password): Use list of
12182         auth-source modes.
12183
12184         * nnimap.el (nnimap-open-connection): Use list of
12185         auth-source modes.
12186
12187         * nntp.el (nntp-send-authinfo): Use list of
12188         auth-source modes.
12189
12190 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
12191
12192         * auth-source.el: Update docs to reflect epa-file-enable is to be used
12193         now.
12194
12195 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12196
12197         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
12198         coding system in XEmacs; add a workaround for XEmacs.
12199
12200         * lpath.el: Fbind coding-system-aliasee.
12201
12202 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12203
12204         * mm-util.el (mm-coding-system-priorities): Protect against nil value
12205         of current-language-environment.
12206
12207 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
12208
12209         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
12210         available at runtime.
12211
12212 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12213
12214         * gnus-art.el (article-date-ut): Fix end point of narrowing.
12215
12216 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
12217
12218         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
12219         the greatest positive fixnum value doesn't work under an XEmacs with
12220         bignum support; use the most-positive-fixnum constant instead,
12221         available since Emacs 21.1 with cl and XEmacs 21.1.
12222
12223 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12224
12225         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
12226         XEmacs gets not to work.
12227
12228 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12229
12230         * mm-util.el (mm-coding-system-priorities): Allow the value like
12231         "Japanese (UTF-8)" of current-language-environment.
12232
12233 2009-01-09  Glenn Morris  <rgm@gnu.org>
12234
12235         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
12236         with last-command-event.
12237
12238 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
12239
12240         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
12241         in the doc string.
12242
12243         * message.el (message-fix-before-sending): Amend comment.
12244
12245 2009-01-08  Dave Love  <fx@gnu.org>
12246
12247         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
12248
12249 2009-01-07  David Engster  <dengste@eml.cc>
12250
12251         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
12252         simplified server definitions by converting it via
12253         gnus-server-to-method.
12254
12255 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12256
12257         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
12258         parameter's operands.
12259
12260 2009-01-06  David Engster  <dengste@eml.cc>
12261
12262         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
12263         primary select method (for gnus-group-mark-article-as-read).
12264
12265 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
12266
12267         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
12268         `(gnus)Face', not `(gnus)X-Face'.
12269
12270 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
12271
12272         * mm-util.el (mm-ucs-to-char): New function.
12273
12274         * mm-url.el (mm-url-decode-entities): Use it.
12275
12276         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
12277         unicode-to-char.
12278
12279 2009-01-05  Dave Love  <fx@gnu.org>
12280
12281         * time-date.el: Require cl for `declare'.
12282
12283 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
12284
12285         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
12286         Dave Love.
12287
12288 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
12289
12290         * message.el (message-fix-before-sending): Add `eight-bit' to
12291         illegible-text check.
12292
12293 2009-01-03  Michael Olson  <mwolson@gnu.org>
12294
12295         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
12296         `headers' is nil.  This can occur if the IMAP server does not have
12297         permissions to read messages from a folder, but can write new messages
12298         to the folder.
12299         (nnimap-request-article-part): Do not insert `data' if it is nil.
12300
12301         * imap.el (imap-parse-fetch): Courier can insert spurious blank
12302         characters which will confuse `read', so skip past them.
12303
12304 2009-01-01  Dave Love  <fx@gnu.org>
12305
12306         * imap.el (imap-string-to-integer): Fix typo.
12307         (imap-fetch-safe): New function.
12308         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
12309
12310         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
12311
12312         * imap.el (imap-process-connection-type, imap-debug, imap-open):
12313         (imap-parse-greeting): Fix doc strings.
12314         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
12315         (imap-parse-flag-list): Make messages unique.
12316         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
12317
12318         * nnimap.el: Fix author email.
12319         (nnimap-split-rule): Add FIXME comment.
12320         (nnimap-debug): Fix doc string.
12321
12322 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
12323
12324         * dns.el (dns-set-servers): Check "Address".  Fix typo.
12325
12326 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
12327
12328         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
12329         nslookup if resolv.conf isn't available.
12330         (dns-query): Rename from query-dns.
12331         (dns-query-cached): Rename from query-dns-cached.
12332
12333 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12334
12335         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
12336         overlay-arrow-position and overlay-arrow-string buffer-local; no need
12337         to check if those variables exist (first appeared in Emacs 18.50).
12338
12339 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12340
12341         * mm-util.el (mm-line-number-at-pos): New function.
12342
12343         * spam-report.el (spam-report-process-queue): Use it.
12344
12345 2008-12-24  David Engster  <dengste@eml.cc>
12346
12347         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
12348         parameters that haven't existed as variables as buffer-local variables.
12349
12350 2008-12-23  Dave Love  <fx@gnu.org>
12351
12352         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
12353         cadar.
12354
12355         * sieve-manage.el (sieve-manage-starttls-p): Rename from
12356         imap-starttls-p.
12357         (sieve-manage-starttls-open): Rename from imap-starttls-open.
12358
12359 2008-12-22  Dave Love  <fx@gnu.org>
12360
12361         * imap.el: Fix author email.  Doc fixes.
12362         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
12363         reply.
12364
12365 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
12366
12367         * spam-report.el (spam-report-gmane-max-requests): New constant.
12368         (spam-report-gmane-wait): New variable.
12369         (spam-report-gmane-ham, spam-report-gmane-spam)
12370         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
12371         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
12372         the server.
12373
12374         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
12375         Add explanations.
12376
12377         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
12378         nnheader-accept-process-output and nnheader-read-timeout if available.
12379         (pop3-movemail): Use it.
12380
12381         * message.el (message-check-news-body-syntax): Fix signature check if
12382         there's an attachment.
12383
12384 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12385
12386         * mm-util.el: Add comments to the mm- emulating functions.
12387
12388 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
12389
12390         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
12391         Reported by Stephen Berman <stephen.berman@gmx.net>.
12392
12393 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12394
12395         * mm-util.el (mm-substring-no-properties): New function.
12396         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
12397         (mm-special-display-p): Enable those lambda forms to be byte compiled.
12398         (mm-string-to-multibyte): Doc fix.
12399
12400         * mml.el (mml-attach-file): Use mm-substring-no-properties.
12401
12402 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
12403
12404         * mml.el (mml-attach-file): Strip text properties from file name.
12405         (Bug#1574)
12406
12407 2008-12-16  Glenn Morris  <rgm@gnu.org>
12408
12409         * mm-util.el (mm-charset-override-alist): Declare for compiler.
12410
12411 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12412
12413         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
12414         knows since the charset specified might be a bogus alias that
12415         mm-charset-synonym-alist provides.
12416
12417 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
12418
12419         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
12420         "ISO_8859-1".
12421
12422         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
12423
12424 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12425
12426         * mm-util.el (mm-charset-eval-alist):
12427         Define it before mm-charset-to-coding-system.
12428         (mm-charset-to-coding-system): Add optional argument `silent';
12429         define it before mm-charset-override-alist.
12430         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
12431         default value if it can be used in Emacs currently running;
12432         silence mm-charset-to-coding-system.
12433
12434 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12435
12436         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
12437         `allow-override' which says whether to use `mm-charset-override-alist'.
12438         (rfc2047-decode-encoded-words): Use it.
12439
12440         * mm-util.el (mm-charset-override-alist): Fix custom type;
12441         add `(gb2312 . gbk)' to choices.
12442
12443 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12444
12445         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
12446         fast.
12447
12448         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
12449
12450         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
12451
12452 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
12453
12454         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
12455         on links.
12456
12457         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
12458
12459 2008-12-03  Lute Kamstra  <lute@gnu.org>
12460
12461         * sha1.el: Remove leading * from docstrings of defcustoms,
12462         deffaces, defconsts and defuns.
12463
12464 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12465
12466         * message.el (message-idna-to-ascii-rhs-1): Protect against local
12467         users' addresses that don't have domain parts.
12468         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
12469         rather than message-narrow-to-head since there will be the message
12470         header separator.
12471
12472 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12473
12474         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
12475         since the result is inserted in a unibyte buffer anyway.
12476         (nnimap-demule-use-string-to-multibyte): Remove.
12477         (nnimap-demule): Alias it to mm-string-to-multibyte.
12478
12479 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
12480
12481         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
12482         variable for debugging bug#464 and bug#1174.
12483         (nnimap-demule): Use it.
12484
12485 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
12486
12487         * gnus-score.el (gnus-score-find-trace): Handle default score in total
12488         score calculation correctly.
12489
12490 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12491
12492         * message.el (message-send-mail): Just set the buffer to unibyte
12493         rather than use mm-with-unibyte-current-buffer which does a lot more.
12494         (message-send-mail-partially): Don't bother with
12495         mm-with-unibyte-current-buffer since it's already been made unibyte by
12496         message-send-mail.
12497
12498 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
12499
12500         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
12501
12502 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
12503
12504         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
12505
12506 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12507
12508         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
12509         require itself and to remove `with-no-warnings'.
12510
12511 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
12512
12513         * starttls.el (starttls-any-program-available): Get the name of the
12514         available TLS layer program.
12515         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
12516         well as the host name in the "opening" message.
12517
12518         * auth-source.el (auth-source-cache, auth-source-do-cache)
12519         (auth-source-user-or-password): Cache passwords and logins by default,
12520         allow override with `auth-source-do-cache'.
12521         (auth-source-forget-user-or-password): Allow users to remove cache
12522         entries if needed.
12523
12524 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
12525
12526         * md4.el (md4-buffer): Fix typo in docstring.
12527         (md4, md4-64): Doc fixes.
12528         (md4-pack-int32): Reflow docstring.
12529
12530 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
12531
12532         * ietf-drums.el (ietf-drums-remove-comments): Localize second
12533         condition-case to only the forward-sexp call.
12534
12535 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
12536
12537         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
12538         quotes contained.  Make it more robust regardless by an extra
12539         condition-case wrapper.
12540
12541 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12542
12543         * lpath.el: No need to fbind codepage-setup for Emacs 23.
12544
12545 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12546
12547         * nnml.el (nnml-request-expire-articles): Check if the function set to
12548         `nnmail-expiry-target' returns the symbol `delete'.
12549
12550         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
12551
12552         * nnmail.el (nnmail-expiry-target): Fix custom type.
12553
12554 2008-10-02  Glenn Morris  <rgm@gnu.org>
12555
12556         * mm-util.el (mm-codepage-setup): Tweak codepage error.
12557         Silence compiler warning.
12558
12559 2008-10-01  Magnus Henoch  <mange@freemail.hu>
12560
12561         * tls.el (open-tls-stream): Show the actual command being
12562         executed, instead of the format string.
12563
12564 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12565
12566         * lpath.el: Fbind codepage-setup for Emacs 23.
12567
12568 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
12569
12570         * mml.el (mml-menu): Don't assume mml2015 is bound.
12571
12572 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12573
12574         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
12575         exists.
12576
12577 2008-09-27  Glenn Morris  <rgm@gnu.org>
12578
12579         * gnus-util.el (mail-header-remove-comments): Autoload it.
12580
12581 2008-09-27  Andreas Schwab  <schwab@suse.de>
12582
12583         * gnus-util.el (gnus-split-references): Strip comments.
12584         (gnus-parent-id): Likewise.
12585
12586 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
12587
12588         * message.el (message-confirm-send): Fix version.
12589
12590 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12591
12592         * message.el (message-idna-to-ascii-rhs-1): Use
12593         mail-extract-address-components rather than mail-header-parse-addresses
12594         that is an alias by default to ietf-drums-parse-addresses that does not
12595         support non-ASCII names in headers' contents.
12596
12597 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
12598
12599         * message.el (message-confirm-send): Fix variable documentation to
12600         avoid the "y/n" wording.
12601
12602 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
12603
12604         * message.el (message-set-auto-save-file-name): Save to a different
12605         filename so multiple messages (especially drafts) can be recovered.
12606
12607 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
12608
12609         * message.el (message-confirm-send): Add appropriate version.
12610
12611 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
12612
12613         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
12614         defvar.
12615
12616 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
12617
12618         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
12619         (mm-pkcs7-enveloped-magic): Ditto.
12620
12621 2008-09-17  Simon Josefsson  <simon@josefsson.org>
12622
12623         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
12624         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
12625
12626 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
12627
12628         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
12629         default, it's better.
12630
12631 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
12632
12633         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
12634         summary line gnus-number property and ignore them (with a warning
12635         message).
12636
12637 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12638
12639         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
12640         macro caddr in the interactive form since it won't be expanded.
12641
12642 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12643
12644         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
12645         `charset'; fix name of function called recursively.
12646         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
12647
12648 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12649
12650         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
12651         (gnus-mime-set-charset-parameters): New function.
12652         (gnus-mime-view-part-as-charset): Use it to correctly display part
12653         specifying wrong charset.
12654
12655 2008-09-08  David Engster  <dengste@eml.cc>
12656
12657         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
12658         in completing-read for back end server.
12659
12660 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
12661
12662         * message.el (message-confirm-send): New variable to confirm sending a
12663         message.
12664         (message-send): Use it.
12665
12666 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
12667
12668         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
12669
12670 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12671
12672         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
12673
12674 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
12675
12676         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
12677         prevent tracking too many groups.
12678         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
12679         Use it.
12680
12681 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
12682
12683         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
12684         moving point to the bottom of the window in order to avoid recentering.
12685
12686 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
12687
12688         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
12689
12690         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
12691         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
12692         (gnus-article-beginning-of-window): Fix calculation.
12693
12694 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12695
12696         * gnus-msg.el (gnus-summary-supersede-article)
12697         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
12698         value of gnus-newsgroup-charset to decode non-MIME encoded text in
12699         message header.
12700
12701 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
12702
12703         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
12704         pending output coming after the status change.
12705
12706 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
12707
12708         * message.el:
12709         * gnus-start.el:
12710         * gnus-registry.el: Remove VMS support.
12711
12712 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12713
12714         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
12715         macro.
12716         (rfc2104-hash): Use it.
12717
12718 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
12719
12720         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
12721         (gnus-summary-sort-by-most-recent-date): New commands.
12722         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
12723         and menu entries.
12724
12725 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12726
12727         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
12728         don't redisplay article for raw contents; remove plural articles stuff.
12729
12730         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
12731         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
12732         on gnus-summary-save-article; display results properly.
12733
12734 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12735
12736         * lpath.el: No need to fbind ns-focus-frame.
12737
12738 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12739
12740         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
12741
12742 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12743
12744         * gnus-art.el (gnus-summary-save-in-pipe):
12745         Consider gnus-save-all-headers.
12746
12747 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
12748
12749         * gnus-util.el (ns-focus-frame): Remove declaration.
12750         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
12751         like x.
12752
12753 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
12754
12755         * rfc2104.el (rfc2104-zero): Delete defconst.
12756         (rfc2104-hex-alist): Likewise.
12757         (rfc2104-hex-to-int): Delete func.
12758         (rfc2104-hexstring-to-bitstring): Likewise.
12759         (rfc2104-nybbles): New defconst.
12760         (rfc2104-hash): Rewrite for speed.
12761
12762 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12763
12764         * tls.el (open-tls-stream): Make it work with the 2nd argument
12765         BUFFER that is a string but does not exist as a buffer object, as
12766         mentioned in the doc-string.
12767
12768 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12769
12770         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
12771         SXEmacs.
12772
12773 2008-07-16  Glenn Morris  <rgm@gnu.org>
12774
12775         * gnus-util.el (ns-focus-frame): Declare for compiler.
12776
12777 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12778
12779         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
12780         set as a group parameter.
12781         (gnus-summary-save-in-pipe): Work when it is called independently.
12782         (gnus-summary-pipe-to-muttprint): Don't modify
12783         gnus-summary-pipe-output-default-command.
12784
12785 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
12786
12787         * message.el (message-send-mail-with-sendmail):
12788         Display the error message.
12789
12790 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12791
12792         * gnus-art.el (gnus-default-article-saver):
12793         Add gnus-summary-save-in-pipe to choices.
12794         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
12795         gnus-summary-pipe-output-default-command as the default command.
12796         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
12797         instead of gnus-last-shell-command.
12798
12799         * gnus-sum.el (gnus-summary-pipe-output-default-command):
12800         New user option.
12801         (gnus-summary-muttprint-program): Mention the value will be changed.
12802         (gnus-summary-save-article): Force showing of all headers.
12803         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
12804
12805 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
12806
12807         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
12808
12809 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
12810
12811         * nnimap.el (nnimap-id):
12812         * sieve-manage.el (sieve-manage-open): Doc fixes.
12813
12814 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
12815
12816         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
12817         if available.
12818
12819 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12820
12821         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
12822
12823         * nnkiboze.el (nnkiboze-generate-group):
12824         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
12825
12826         * nnmairix.el: Require CL.
12827
12828 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12829
12830         * dgnushack.el: Autoload get-display-table and put-display-table for
12831         XEmacs 21.5.
12832
12833         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
12834         21.4 and SXEmacs.
12835
12836 2008-06-15  David Engster  <dengste@eml.cc>
12837
12838         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
12839
12840 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
12841
12842         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
12843         New macros that expand to an `aset'/`aref' call under Emacs, and to a
12844         runtime choice under XEmacs.
12845
12846         * gnus-sum.el (gnus-summary-set-display-table):
12847         Use `gnus-put-display-table', `gnus-get-display-table',
12848         `gnus-set-display-table' for the display table, instead of `aset'.
12849
12850         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
12851         Use `gnus-put-display-table', `gnus-get-display-table',
12852         `gnus-set-display-table' for the display table.
12853
12854 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
12855
12856         * nnmairix.el: Add autoloads.
12857
12858 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
12859
12860         * nnmairix.el (nnmairix-delete-recreate-group)
12861         (nnmairix-update-and-clear-marks): Fix error messages.
12862
12863 2008-06-14  David Engster  <dengste@eml.cc>
12864
12865         * nnmairix.el: Upgrade to version 0.6.
12866         (nnmairix-group-toggle-propmarks-this-group)
12867         (nnmairix-group-toggle-readmarks-this-group)
12868         (nnmairix-group-delete-recreate-this-group)
12869         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
12870         (nnmairix-remove-tick-mark-original-article): New commands.
12871         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
12872         (nnmairix-propagate-marks-to-nnmairix-groups)
12873         (nnmairix-only-use-registry, nnmairix-allowfast-default)
12874         (nnmairix-marks-cache, nnmairix-version-output): New variables.
12875         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
12876         functions needed for marks propagation and manipulation of read marks.
12877         (nnmairix-update-groups): New function.
12878         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
12879         (nnmairix-determine-original-group-from-registry)
12880         (nnmairix-determine-original-group-from-path)
12881         (nnmairix-get-group-from-file-path, nnmairix-map-range)
12882         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
12883         New helper functions.
12884         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
12885         keystrokes for new commands.
12886         (nnmairix-delete-and-create-on-change): Doc string cleanup.
12887         (nnmairix-request-group): Check allow-fast group parameter.
12888         (nnmairix-request-create-group): Set allow-fast group parameter if
12889         nnmairix-allowfast-default is set.
12890         (nnmairix-close-group): Propagate marks upon closing if needed.
12891         (nnmairix-group-toggle-threads-this-group): Use new.
12892         nnmairix-group-toggle-parameter helper function.
12893         (nnmairix-search): Better check for empty search result.
12894         (nnmairix-goto-original-article): Use new helper functions for
12895         determining original article.
12896         (nnmairix-show-original-article): Make sure message-id is in brackets.
12897         (nnmairix-call-mairix-binary): Change variable name.
12898         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
12899         helper function.
12900         (nnmairix-widget-toggle-activate): Fix doc string.
12901
12902 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
12903
12904         * nnir.el: Require edmacro when compiling with XEmacs.
12905         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
12906         available in Emacs 21.
12907
12908 2008-06-11  Glenn Morris  <rgm@gnu.org>
12909
12910         * gnus-util.el (x-focus-frame):
12911         * gnus.el (image-size):
12912         * mm-decode.el (image-size): Declare.
12913
12914         * gnus-picon.el (declare-function): Add compat definition.
12915         (image-size): Declare.
12916
12917         * gnus-group.el (tool-bar-map):
12918         * gnus-sum.el (tool-bar-map): Define for compiler.
12919
12920         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
12921
12922         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
12923
12924         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
12925         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
12926         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
12927         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
12928         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
12929         * sieve-manage.el, spam-report.el, spam.el:
12930         Remove unnecessary eval-and-compile of autoloads.
12931
12932 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
12933
12934         * auth-source.el: Precise Tramp doc.
12935
12936 2008-06-07  Glenn Morris  <rgm@gnu.org>
12937
12938         * nnmairix.el: Remove unnecessary eval-when-compile.
12939
12940 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12941
12942         * lpath.el: Fbind propertize for XEmacs 21.4.
12943
12944 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
12945
12946         * nnir.el: Move here from ../contrib.
12947
12948 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12949
12950         * gnus-util.el (gnus-read-shell-command): New function.
12951         * mm-decode.el (mm-pipe-part):
12952         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
12953
12954 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
12955
12956         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
12957
12958 2008-06-03  Glenn Morris  <rgm@gnu.org>
12959
12960         * pop3.el (nnheader-accept-process-output): Autoload it.
12961
12962 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12963
12964         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
12965         are not 2-digit hexadecimal characters that follow `%'s.
12966
12967 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
12968
12969         * message.el (message-bogus-recipient-p): Fix type in doc string.
12970         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
12971         (message-bogus-addresses): Rename from message-bogus-address-regexp.
12972         Improve custom options.
12973         (message-bogus-recipient-p): Adjust accordingly.
12974
12975 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
12976
12977         * parse-time.el (parse-time-months, parse-time-weekdays): Add
12978         long-form month and day names.
12979
12980 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12981
12982         * dgnushack.el: Autoload debug, eudc-expand-inline and
12983         pgg-snarf-keys-region for XEmacs.
12984
12985         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
12986
12987         * nnmairix.el: Require edmacro when compiling with XEmacs.
12988
12989 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
12990
12991         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
12992         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
12993
12994 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
12995
12996         * auth-source.el: Add more docs.
12997
12998         * netrc.el (netrc-machine): Always match if the port is not given.
12999
13000 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13001
13002         * nnheader.el (nnheader-read-timeout): Change the default timeout from
13003         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
13004         retrieval faster in some cases, but might make CPU usage larger.
13005         If this has any bad side effects, we might revert this change.
13006
13007         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
13008         seems to make mail retrieval much, much faster.
13009         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
13010         unconditionally.
13011
13012         * gnus-draft.el (gnus-group-send-queue):
13013         Bind message-send-mail-partially-limit to nil to avoid being prompted.
13014
13015 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
13016
13017         * mml.el (mml-attach-buffer): Prompt for `disposition'.
13018
13019         * message.el (message-bogus-address-regexp): Fix and improve custom
13020         type.
13021         (message-setup-hook): Add message-check-recipients as custom option.
13022
13023 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
13024
13025         * message.el (message-cite-function): Remove bogus autoload which crept
13026         in during merge from v5-10.
13027
13028 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
13029
13030         * nnimap.el (nnimap-open-connection): Fix login/password bug.
13031
13032         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
13033
13034         * auth-source.el: Preliminary Tramp docs.
13035         (auth-sources): Change the default auth-sources to use
13036         EPA .gpg files.
13037
13038 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
13039
13040         * nntp.el: Autoload `auth-source-user-or-password'.
13041         (nntp-send-authinfo): Use it.
13042
13043         * nnimap.el: Autoload `auth-source-user-or-password'.
13044         (nnimap-open-connection): Use it.
13045
13046         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
13047         for the gnus-message function.
13048         (auth-source-user-or-password): Use it.
13049
13050 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13051
13052         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
13053         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
13054         (rfc2104-hash): Use it.
13055
13056 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
13057
13058         * gnus-art.el (gnus-article-toggle-truncate-lines):
13059         Don't use `iff' in docstring.
13060
13061 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
13062
13063         * gnus-registry.el: Adjusted copyright dates and added a keyword.
13064
13065         * gnus-util.el (gnus-extract-address-component-name)
13066         (gnus-extract-address-component-email): Convenience functions around
13067         `gnus-extract-address-components'.
13068
13069         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
13070         Use `gnus-extract-address-component-email' to fix bug of comparing full
13071         sender name to `user-mail-address'.
13072
13073 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
13074
13075         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
13076         catch/throw to optimize.
13077         (gnus-registry-find-keywords): Just use member to find a keyword.
13078
13079 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13080
13081         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
13082         is current before calling gnus-server-prepare.
13083         (gnus-server-setup-buffer, gnus-server-update-server)
13084         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
13085
13086 2008-05-04  Juri Linkov  <juri@jurta.org>
13087
13088         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
13089         (mailcap-file-default-commands): Use mailcap-replace-in-string
13090         instead of replace-regexp-in-string, and mailcap-delete-duplicates
13091         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
13092
13093 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
13094
13095         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
13096
13097 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
13098
13099         * gnus.el: Bump version to 0.11.
13100
13101 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
13102
13103         * gnus.el: No Gnus v0.10 is released.
13104
13105 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13106
13107         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
13108         hooks.
13109         (gnus-update-read-articles): Speed up non-marks-using users.
13110         (gnus-use-marks): Define gnus-use-marks.
13111         (gnus-propagate-marks): Rename variable to something more sensible.
13112
13113 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
13114
13115         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
13116         (gmm-image-load-path-for-library): Fix typos in docstrings.
13117         (gmm-message): Reflow docstring.
13118
13119 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
13120
13121         * mail-source.el (mail-source-set-1, mail-source-bind):
13122         Move auth-source code out of the macro to clean it up and fix bugs.
13123
13124 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
13125
13126         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
13127         by sender if it's equal to user-mail-address, it's likely to be
13128         useless.
13129
13130         * mail-source.el (mail-source-bind): Don't use user or password if they
13131         are not bound.  Unintern them if they are nil.  Don't use server unless
13132         it's bound, and default it to empty string otherwise.
13133
13134 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
13135
13136         * mail-source.el: Load auth-source.el.
13137         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
13138         get user name or password, if auth-sources is set up.
13139
13140         * gnus-registry.el (gnus-registry-split-strategy): New variable for
13141         strategy of splitting with parent.
13142         (gnus-registry-split-fancy-with-parent)
13143         (gnus-registry-post-process-groups): Use it and fix prior
13144         bug (returning a list as the split result).
13145
13146         * auth-source.el (auth-sources): Remove server parameter.
13147         (auth-source-pick, auth-source-user-or-password)
13148         (auth-source-user-or-password-imap)
13149         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13150         (auth-source-user-or-password-sftp)
13151         (auth-source-user-or-password-smtp): Remove server parameter.
13152
13153 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
13154
13155         * smime.el (smime-sign-region, smime-encrypt-region)
13156         (smime-decrypt-region):
13157         Remove redundant calls to `generate-new-buffer-name'.
13158
13159 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
13160
13161         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
13162         Don't use QP for message/rfc822.
13163         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
13164
13165 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13166
13167         * sieve-manage.el (sieve-string-bytes): Remove.
13168         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
13169         correct byte-length only if the process's coding-system is the same as
13170         the one used internally by Emacs to represent strings.
13171
13172 2008-04-22  Juri Linkov  <juri@jurta.org>
13173
13174         * mailcap.el (mailcap-file-default-commands): New function.
13175
13176 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
13177
13178         * message.el (message-signature-separator, message-cite-function):
13179         Change custom version.
13180
13181 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
13182
13183         * tls.el (tls-program): Add -ign_eof argument to call the openssl
13184         commands.
13185         (tls-checktrust): Ditto.
13186
13187 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
13188
13189         * mm-decode.el (mm-display-external): Make temp file read-only.
13190
13191 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
13192
13193         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
13194         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
13195         `C-c C-f d'.
13196
13197 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
13198
13199         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
13200
13201 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
13202
13203         * gnus.el: Bump version to 0.9.
13204
13205 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
13206
13207         * gnus.el: No Gnus v0.8 is released.
13208
13209 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13210
13211         * mail-source.el (mail-source-value):
13212         Prefer fboundp to functionp so it works with macros as well.
13213
13214 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13215
13216         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13217         Fix last change in case the element is not even a symbol.
13218
13219 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13220
13221         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13222         Prefer fboundp to functionp so it works with macros as well.
13223
13224 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
13225
13226         * auth-source.el: Add docs.
13227         (auth-sources): Modify format to support server.
13228         (auth-source-pick, auth-source-user-or-password)
13229         (auth-source-user-or-password-imap)
13230         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13231         (auth-source-user-or-password-sftp)
13232         (auth-source-user-or-password-smtp): Add server parameter.
13233
13234 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
13235
13236         * gnus-registry.el: Initialize the registry when gnus-registry-install
13237         is t.
13238
13239 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13240
13241         * compface.el (uncompface): Make buffer unibyte.
13242
13243 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13244
13245         * mail-source.el (mail-source-value):
13246         Prefer fboundp to functionp so it works with macros as well.
13247
13248 2008-04-05  Glenn Morris  <rgm@gnu.org>
13249
13250         * gnus-ems.el (mm-disable-multibyte): Autoload it.
13251
13252 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13253
13254         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
13255         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
13256
13257         * nnheader.el (nnheader-init-server-buffer): Change buffer's
13258         multibyteness after rather than before erasing it.
13259
13260         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
13261         mm-with-multibyte.
13262         (gnus-request-article-this-buffer): Make sure the proper decoding is
13263         used if gnus-original-article-buffer happens to be unibyte.
13264
13265         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
13266         default-enable-multibyte-characters.
13267
13268         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
13269         default-enable-multibyte-characters.
13270
13271         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
13272
13273         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
13274
13275 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13276
13277         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13278         Fix last change in case the element is not even a symbol.
13279
13280 2008-04-02  Simon Josefsson  <simon@josefsson.org>
13281
13282         * imap.el (imap-enable-exchange-bug-workaround): New variable.
13283         (imap-message-copyuid-1): Use it.
13284         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
13285         J. Williams in
13286         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
13287
13288         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
13289         imap-enable-exchange-bug-workaround.
13290         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
13291
13292 2008-04-01  Simon Josefsson  <simon@josefsson.org>
13293
13294         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
13295         a 100 byte status-checks into a 2-3MB transfer for each group.
13296         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
13297         to enable bug workaround or not.
13298         (nnimap-find-minmax-uid): Only enable workaround conditionally.
13299
13300 2008-03-31  Glenn Morris  <rgm@gnu.org>
13301
13302         * message.el (mml2015-use): Declare for compiler.
13303         (message-info): Require mml2015 when appropriate.
13304
13305 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13306
13307         * Makefile.in (EMACS_COMP): Quote directory name that might contain
13308         whitespace.
13309
13310 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13311
13312         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
13313         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
13314         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
13315         (nntp-service-to-port): New function.
13316         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
13317         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
13318         (nntp-open-netcat-stream): New function.
13319         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
13320
13321 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
13322
13323         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
13324
13325 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13326
13327         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
13328
13329 2008-03-28  Magnus Henoch  <mange@freemail.hu>
13330
13331         * dns.el (dns-write): Use set-buffer-multibyte.
13332
13333 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
13334
13335         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
13336
13337 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
13338
13339         * message.el (message-signature-separator): Change default.
13340         Improve custom type.
13341         (message-cite-function): Change default to
13342         message-cite-original-without-signature.
13343
13344         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
13345         toggle.
13346
13347         * message.el (message-check-news-body-syntax): Fix signature check.
13348         (message-setup-1): Mark buffer as unmodified _after_ running
13349         message-setup-hook and handling message-alternative-emails.
13350         (message-shorten-references): Be more strict when building list of
13351         valid references to comply with GNKSA.
13352
13353         * gnus-group.el (gnus-read-ephemeral-bug-group)
13354         (gnus-read-ephemeral-debian-bug-group)
13355         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
13356
13357         * message.el (message-info): Don't use booleanp which isn't supported
13358         in Emacs 21 and XEmacs.
13359
13360 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
13361
13362         * gnus-group.el (gnus-gmane-group-download-format): Rename from
13363         gnus-group-gmane-group-download-format.
13364         (gnus-group-read-ephemeral-gmane-group): Rename from
13365         gnus-group-read-ephemeral-gmane-group.
13366         (gnus-read-ephemeral-gmane-group-url): Rename from
13367         gnus-group-read-ephemeral-gmane-group-url.
13368         (gnus-bug-group-download-format-alist): New variable.
13369         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
13370         (gnus-read-ephemeral-emacs-bug-group): New commands.
13371
13372 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
13373
13374         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
13375         (gnus-visible-headers): Improve custom type.
13376
13377 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
13378
13379         * mml.el (mml-menu): Add workarounds for XEmacs.
13380
13381         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
13382         X-Boundary header.
13383
13384         * message.el (message-simplify-recipients): Fix previous commit.
13385
13386 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13387
13388         * mm-util.el (mm-set-buffer-multibyte): New function.
13389         * mm-decode.el (mm-copy-to-buffer): Use it.
13390
13391         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
13392         Prefer fboundp to functionp so it works with macros as well.
13393
13394 2008-03-19  Glenn Morris  <rgm@gnu.org>
13395
13396         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
13397         Accidentally removed in the sync process with Emacs.
13398
13399 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
13400
13401         * message.el (message-alter-recipients-discard-bogus-full-name):
13402         New function.
13403         (message-alter-recipients-function): New variable.
13404         (message-get-reply-headers): Use it.
13405         (message-replace-header): New helper function.
13406         (message-recipients-without-full-name): New variable.
13407         (message-simplify-recipients): New command.
13408
13409         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
13410
13411         * message.el (message-info): Handle EasyPG manual.
13412
13413         * mml.el (mml-menu): Add entry for EasyPG.
13414
13415 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
13416
13417         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
13418         parameter.
13419
13420         * message.el (message-disassociate-draft): Specify drafts group name
13421         fully.
13422
13423 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
13424
13425         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
13426         Eliminate unnecessary duplicates from the match list.
13427
13428 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13429
13430         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
13431
13432         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
13433
13434         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
13435         args of `how-many' of which the XEmacs version doesn't take; declare
13436         Info-index-next as function.
13437
13438 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
13439
13440         * gnus-score.el (gnus-score-headers): Fix handling of
13441         gnus-inhibit-slow-scoring.
13442
13443         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
13444         string.
13445         (gnus-button-url-regexp): Improve handling of parenthesis.
13446         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
13447         (gnus-button-handle-info-keystrokes): Handle index entries.
13448
13449 2008-03-15  Glenn Morris  <rgm@gnu.org>
13450
13451         * parse-time.el (parse-time-string): Simplify.
13452
13453 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13454
13455         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
13456         Incoming* files.
13457
13458 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
13459
13460         * auth-source.el (auth-sources): Rename from auth-source-choices.
13461         (auth-source-pick): Use it.
13462
13463 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13464
13465         * binhex.el (binhex-decode-region-internal):
13466         * uudecode.el (uudecode-decode-region-internal):
13467         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
13468         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
13469         setting default-enable-multibyte-characters.
13470
13471 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
13472
13473         * auth-source.el (auth-source-protocols)
13474         (auth-source-protocols-customize, auth-source-choices): Add and
13475         modified variable customizations and defaults.
13476         (auth-source-pick, auth-source-user-or-password)
13477         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
13478         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
13479         (auth-source-user-or-password-sftp)
13480         (auth-source-user-or-password-smtp): Use new variables and provide an
13481         interface to netrc.el.
13482
13483 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13484
13485         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
13486         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
13487         Make sure the nntp port to specify is a string.
13488
13489 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13490
13491         * nntp.el: Use with-current-buffer.
13492         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
13493         dubious mm-with-unibyte-current-buffer.
13494         (nntp-with-open-group-function): New function extracted from
13495         nntp-with-open-group macro.
13496         (nntp-with-open-group): Use the function, so it's easier to debug.
13497         Add indentation and debugging info.
13498         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
13499         Recommend the use of the netcat alternatives.
13500
13501         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
13502         Avoid mm-string-as-multibyte as well.
13503
13504         * nnweb.el (nnweb-insert-html):
13505         Remove use of nnheader-string-as-multibyte.
13506
13507         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
13508         (nnheader-string-as-multibyte): Remove.
13509
13510         * mm-view.el: Use inhibit-read-only.
13511         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
13512         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
13513         or unibyte-string.
13514
13515         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
13516         (mm-uu-yenc-extract): Use with-current-buffer.
13517
13518         * gnus-soup.el (gnus-soup-send-packet): Don't use
13519         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
13520
13521         * nnmh.el: Use with-current-buffer.
13522         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
13523         mm-string-as-multibyte on the output of mm-encode-coding-string.
13524
13525         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
13526         (nnimap-request-move-article): Use with-current-buffer.
13527
13528         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
13529         inserting the handle-buffer's text, so the implicit multibyte->unibyte
13530         conversion uses string-make-unibyte rather than string-as-unibyte.
13531
13532         * gnus-msg.el: Use with-current-buffer.
13533
13534         * message.el (message-ignored-resent-headers): Add "Delivered-To".
13535
13536 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
13537
13538         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
13539         string for caching if it is 'PIN.
13540
13541 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13542
13543         * lpath.el: Consider the case without Emacs/W3.
13544
13545 2008-03-08  Glenn Morris  <rgm@gnu.org>
13546
13547         * time-date.el (date-to-time, time-subtract, time-add)
13548         (safe-date-to-time): Doc fixes.
13549
13550 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
13551
13552         * mail-source.el (mail-source-delete-old-incoming-confirm):
13553         Change default to nil.
13554         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
13555
13556 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13557
13558         * lpath.el: Rearrange.
13559
13560         * gnus-art.el (gnus-narrow-to-page): Position point properly.
13561         (gnus-article-goto-prev-page): Work for articles having ^L's.
13562
13563         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
13564
13565         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
13566
13567 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
13568
13569         * gnus-bookmark.el: Adjust for renames in bookmark.el.
13570         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
13571         (gnus-bookmark-jump): Adjust some variable names.
13572
13573 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
13574
13575         * auth-source.el: New package.
13576         (auth-source-choices): Add customization entry point variable.
13577
13578         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
13579         bug.
13580
13581 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
13582
13583         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
13584         (gnus-registry-initialize, gnus-registry-install-p): Use it.
13585         (gnus-registry-install-shortcuts): Rename from
13586         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
13587         the `gnus-registry-mark-map' keymap dynamically from
13588         `gnus-registry-marks'.  The generated functions update the summary line
13589         when a registry mark is added or deleted, and will call
13590         `gnus-registry-install-p' (see the comments in the code).
13591         (gnus-registry-user-format-function-M): Use concat intelligently.
13592
13593         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
13594         the registry mark functions.
13595
13596 2008-03-05  Glenn Morris  <rgm@gnu.org>
13597
13598         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
13599         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
13600         gnus-art.
13601         (top-level): No need to load own source when compiling.
13602
13603 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
13604
13605         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
13606         Suggested by <chris.anderton@zetnet.co.uk>.
13607
13608 2008-03-04  Glenn Morris  <rgm@gnu.org>
13609
13610         * gnus-sum.el (top-level): No need to require gnus when compiling,
13611         since unconditionally required near start of file.
13612         (gnus-summary-display-while-building): Move definition before use.
13613
13614 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
13615
13616         * gnus-registry.el (gnus-registry-user-format-function-M):
13617         Add formatting function.
13618
13619 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
13620
13621         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
13622         with plists.
13623         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
13624         Use new format.
13625
13626 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13627
13628         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
13629         `where-is-internal' that returns a range of key sequences.
13630
13631 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13632
13633         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
13634
13635         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
13636         (gnus-summary-jump-to-group): Consider windows on other displayed
13637         frames as well.  Similar changes might be needed elsewhere, but that's
13638         the one I've bumped into during my use.
13639
13640         * nndoc.el (nndoc-oe-dbx-type-p):
13641         * gnus-msg.el (gnus-debug):
13642         * gnus-group.el (gnus-update-group-mark-positions):
13643         Use mm-string-to-multibyte.
13644
13645 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
13646
13647         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
13648         doesn't handle NotDashEscaped.
13649
13650         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
13651         (mml-dnd-attach-options): Fix typo in custom choice.
13652
13653         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
13654         Change nndoc-article-type to mbox.
13655         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
13656
13657         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
13658         to nil, instead of html2text.
13659
13660         * imap.el (imap-debug): Add `imap-ping-server'.
13661
13662         * gnus-bookmark.el: Add FIXMEs.
13663
13664         * message.el (message-form-letter-separator)
13665         (message-send-form-letter-delay): New variables.
13666         (message-send-form-letter): Use them.  New command to send form
13667         letters.  Requested by Uwe Siart.
13668         (message-send-mail-function): Doc fix.  Add "Other" custom option.
13669
13670 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
13671
13672         * Update copyright years.
13673
13674 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
13675
13676         Sync from EMACS_22_BASE.
13677
13678         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
13679
13680 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
13681
13682         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
13683         empty author.
13684
13685 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
13686
13687         * gnus-registry.el (gnus-registry-marks): Add variable for
13688         customization of marks and their appearance.
13689         (gnus-registry-read-mark): Use it.
13690         (gnus-registry-do-marks): Add utility function to loop through
13691         `gnus-registry-marks'.
13692         (gnus-registry-install-shortcuts-and-menus): Add function to install
13693         shortcuts and menus.
13694         (gnus-registry-initialize): Use it.
13695         (gnus-registry-default-mark): Clarify documentation.
13696
13697 2008-02-29  Glenn Morris  <rgm@gnu.org>
13698
13699         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
13700         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
13701         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
13702         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
13703         Change defcustom :version from 23.0 to 23.1.
13704
13705 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
13706
13707         * gnus-registry.el (gnus-registry-follow-group-p)
13708         (gnus-registry-post-process-groups): Add functions to aid registry
13709         splitting and improve logging.  Clarify behavior in function
13710         documentation.
13711         (gnus-registry-split-fancy-with-parent): Use them.
13712
13713 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13714
13715         * gnus-art.el: Use with-current-buffer.
13716
13717 2008-02-27  David Engster  <dengste@eml.cc>
13718
13719         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
13720         Express real group name in the response.
13721
13722 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13723
13724         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
13725         (nnmairix-last-server, nnmairix-current-server): Defvar them.
13726         (nnmairix-goto-original-article): Defvar gnus-registry-install and
13727         autoload gnus-registry-fetch-group when compiling.
13728         (nnmairix-request-group-with-article-number-correction):
13729         Remove unreferenced argument passed to nnmairix-call-backend.
13730
13731 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
13732
13733         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
13734         (mm-uu-extract): Improve face for low color ttys.
13735         Reported by Sascha Wilde.
13736
13737 2008-02-27  Glenn Morris  <rgm@gnu.org>
13738
13739         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
13740         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
13741         variables to defconsts.  Convert comments to doc-strings.
13742         (nnmairix-last-server, nnmairix-current-server): Convert from free
13743         variables to defvars.  Convert comments to doc-strings.
13744         (gnus-registry-fetch-group): Autoload.
13745         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
13746         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
13747         (nnmairix-widget-build-editable-fields): Use car cddr rather than
13748         caddr.
13749         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
13750         nnmairix-request-group-with-article-number-correction call.
13751         (nnmairix-fast, nnmairix-group): New, less general names, for free
13752         variables passed from nnmairix-request-group to
13753         nnmairix-request-group-with-article-number-correction.  Declare.
13754         (nnmairix-request-group-with-article-number-correction):
13755         Use nnmairix-fast, nnmairix-group rather than fast, group.
13756
13757 2008-02-26  David Engster  <dengste@eml.cc>
13758
13759         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
13760         version 0.5.
13761
13762 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
13763
13764         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
13765         instead of making an extra function call.  Don't add the current group
13766         to articles only when they have the group.  Use
13767         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
13768         Reported by David <de_bb@arcor.de>.
13769
13770 2008-02-24  Miles Bader  <miles@gnu.org>
13771
13772         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
13773         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
13774         (mm-find-mime-charset-region):
13775         * mm-bodies.el (mm-encode-body):
13776         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
13777
13778 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13779
13780         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
13781         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
13782
13783 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
13784
13785         * mail-source.el (mail-source-delete-incoming): Change default.
13786         Supplement doc string.
13787
13788         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
13789
13790 2008-02-14  Glenn Morris  <rgm@gnu.org>
13791
13792         * time-date.el (format-seconds): New function.
13793
13794 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
13795
13796         * nnmail.el (nnmail-message-id-cache-file): Derive from
13797         `gnus-home-directory'.
13798
13799 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
13800
13801         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
13802         Document negative prefix.
13803
13804         * gnus-group.el (gnus-group-read-group): Document negative prefix.
13805
13806 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13807
13808         * message.el (message-unsent-separator): Add the Exim bounce
13809         separator.
13810
13811 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
13812
13813         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
13814         list.
13815         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
13816         recipient/signer list.
13817
13818 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13819
13820         * Makefile.in (datarootdir): Define.
13821         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
13822         name that might contain whitespace.
13823
13824 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
13825
13826         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
13827         fbound (Emacs 23 unicode), signal an error.
13828
13829 2008-02-08  Glenn Morris  <rgm@gnu.org>
13830
13831         * gnus-art.el (pgg-display-output-buffer): Declare as function.
13832
13833 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
13834
13835         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
13836         ports to the calls to `netrc-machine-user-or-password' in addition to
13837         "imap" and "imaps".
13838
13839 2008-02-01  Zhang Wei  <id.brep@gmail.com>
13840
13841         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
13842
13843         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
13844
13845 2008-02-01  Kenichi Handa  <handa@m17n.org>
13846
13847         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
13848         rfc2104-hexstring-to-bitstring and changed to return a byte list.
13849         (rfc2104-hash): Convert the result of concat to unibyte string.
13850
13851 2008-02-01  Dave Love  <fx@gnu.org>
13852
13853         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
13854         coding-system-for-read.
13855         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
13856
13857 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
13858
13859         * gnus.el (gnus-group-startup-message): Add `find-image' call before
13860         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
13861         <hanche@math.ntnu.no>.
13862
13863 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13864
13865         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
13866
13867         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
13868
13869 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
13870
13871         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
13872         * message.el (message-beginning-of-line): Use featurep instead of bound
13873         tests in order to resolve conditionals at compile time.
13874
13875 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
13876
13877         * mail-source.el (mail-sources): Add `group' choice.
13878
13879         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
13880         parameter `in-group' to control into which group the articles go.
13881         Add treatment of `group' mail-source.
13882
13883 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13884
13885         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
13886
13887         * mm-decode.el (mm-dissect-buffer): Decode description.
13888
13889         * mml.el (mml-to-mime): Encode message header first.
13890
13891 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13892
13893         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
13894         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
13895
13896         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
13897         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
13898
13899 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
13900
13901         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
13902
13903 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13904
13905         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
13906         prefix keys.
13907         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
13908         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
13909         gnus-xmas.el.
13910
13911         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
13912         (gnus-xmas-article-describe-bindings): New function.
13913         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
13914         gnus-xmas-article-describe-bindings.
13915
13916         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
13917
13918 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
13919
13920         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
13921         Add new variables for article mark management.
13922         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
13923         list of extra data entries which, when present, will indicate that the
13924         article ID should not be trimmed from the registry.
13925         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
13926         functions.
13927         (gnus-registry-read-mark): New function to read a mark name from the
13928         user.
13929         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
13930         (gnus-registry-set-article-mark-internal): New functions to add and
13931         remove marks.
13932         (gnus-registry-get-article-marks): New function to show the marks for
13933         an article, or retrieve them for further use.
13934
13935 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13936
13937         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
13938         keys when no argument is given.
13939
13940 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
13941
13942         * imap.el (imap-ping-server): New variable.
13943         (imap-opened): On add extra ping if imap-ping-server is non-nil.
13944         (imap-ping-server): Minor doc string fixes.
13945
13946 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
13947
13948         * imap.el (imap-ping-server): New function.
13949         (imap-opened): Call imap-ping-server.
13950
13951 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
13952
13953         * gnus-sum.el (gnus-article-sort-by-random)
13954         (gnus-thread-sort-by-random): Fix doc strings.
13955         Reported by jidanni@jidanni.org.
13956
13957 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
13958
13959         * gnus-art.el (gnus-article-describe-bindings): New function.
13960         (gnus-article-read-summary-keys): Use it.
13961         (gnus-article-mode-map): Bind `C-h b' to it.
13962
13963 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13964
13965         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
13966         XEmacs.
13967         (gnus-article-describe-key, gnus-article-describe-key-briefly):
13968         Protect against non-character events.
13969
13970         * lpath.el: Fbind map-keymap for Emacs 21.
13971
13972 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
13973
13974         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
13975         New command.
13976         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
13977         instead of END.  Change name of the temp file.
13978         (gnus-group-gmane-group-download-format): Add doc string.  Make it
13979         customizable.
13980
13981 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13982
13983         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
13984         bind `S W' to gnus-article-wide-reply-with-original; set default
13985         binding to gnus-article-read-summary-send-keys.
13986         (gnus-article-read-summary-keys): Fix the order of keys; display
13987         continuation keys correctly in the echo area; describe bindings
13988         correctly when keys end with `C-h'.
13989         (gnus-article-read-summary-send-keys): New function.
13990         (gnus-article-describe-key, gnus-article-describe-key-briefly):
13991         Work for gnus-article-read-summary-send-keys; display continuation keys
13992         correctly in the echo area.
13993         (gnus-article-reply-with-original): Ignore prefix argument.
13994         (gnus-article-wide-reply-with-original): New function.
13995
13996         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
13997         Emacs 21.
13998
13999 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14000
14001         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
14002         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
14003
14004 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
14005
14006         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
14007         (gnus-group-read-ephemeral-gmane-group): New command.
14008
14009 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
14010
14011         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
14012
14013 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
14014
14015         * message.el (message-send-mail-function): Increase custom version.
14016
14017         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
14018         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
14019
14020 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
14021
14022         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
14023         for the cases where imap-authenticate is called with a nil buffer
14024         parameter.
14025
14026 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14027
14028         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
14029         html parts correctly; support forwarded messages.
14030         (gnus-article-browse-html-article): Remove work buffers.
14031
14032         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
14033         compiling.
14034         (netrc-bound-and-true-p): New macro.
14035         (netrc-parse): Use it instead of bound-and-true-p that is not available
14036         in XEmacs 21.4.
14037
14038 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
14039
14040         * gnus-registry.el (gnus-registry-mark-article)
14041         (gnus-registry-article-marks): Add functionality to mark articles
14042         through the Gnus registry.
14043
14044         * encrypt.el: Clarify documentation for the new pgg method.
14045         (encrypt-file-alist): Add PGG option.
14046         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
14047         functionality.  Abstract password key and messaging to external
14048         functions.
14049         (encrypt-password-key, encrypt-get-passphrase-if-needed)
14050         (encrypt-message-method-and-cipher): Add new convenience external
14051         functions.
14052         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
14053         (encrypt-pgg-process-buffer): Add PGG functionality glue.
14054
14055         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
14056         (netrc-parse): Use encrypt-file-alist to determine if
14057         encrypt-find-model or encrypt-insert-file-contents should be used.
14058
14059         * encrypt.el: Clarify documentation.  Load password-cache or
14060         password, whichever one is found first, instead of autoloading.
14061
14062 2007-12-19  Glenn Morris  <rgm@gnu.org>
14063
14064         * mml.el (message-options-set, message-narrow-to-head)
14065         (message-in-body-p, message-mail-p, message-encode-message-body):
14066         Autoload.
14067         (message-remove-header, message-narrow-to-headers-or-head)
14068         (message-subscribed-p, message-make-mail-followup-to)
14069         (message-position-on-field, message-news-p)
14070         (message-options-set-recipient, message-generate-headers)
14071         (message-sort-headers): Declare as functions.
14072
14073 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
14074
14075         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
14076         convention in doc string.
14077
14078 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14079
14080         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
14081         title to html parts.
14082         (gnus-article-browse-html-article): Pass message header to it.
14083
14084         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
14085
14086 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
14087
14088         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
14089         or password compatible with XEmacs.
14090
14091 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
14092
14093         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
14094         format document.
14095         (gnus-mime-delete-part): Don't write description line if empty.
14096         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
14097
14098 2007-12-14  Johan Bockgård  <bojohan@gnu.org>
14099
14100         * gnus-sum.el (gnus-summary-mark-unread-as-read)
14101         (gnus-summary-mark-read-and-unread-as-read)
14102         (gnus-summary-mark-current-read-and-unread-as-read)
14103         (gnus-summary-mark-unread-as-ticked): Doc fix.
14104         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
14105
14106 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
14107
14108         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
14109         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
14110
14111 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
14112
14113         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
14114         yes-or-no-p.
14115
14116 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14117
14118         * mm-decode.el (mm-add-meta-html-tag): New function.
14119         (mm-save-part-to-file, mm-pipe-part): Use it.
14120
14121         * gnus-art.el (gnus-article-browse-delete-temp-files):
14122         Use gnus-y-or-n-p instead of y-or-n-p.
14123         (gnus-article-browse-html-parts): Work with message/external-body; use
14124         mm-add-meta-html-tag.
14125
14126 2007-12-11  Glenn Morris  <rgm@gnu.org>
14127
14128         * gnus-cache.el: Require gnus-sum not just when compiling.
14129
14130         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
14131
14132         * gnus-int.el (gnus-server-opened, gnus-status-message):
14133         Move definitions before use.
14134
14135         * mm-decode.el: Require gnus-util.
14136         (mm-remove-part): Only call delete-annotation on XEmacs.
14137
14138         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
14139
14140         * nnmail.el: Require gnus-int.
14141
14142         * spam.el: Move `require's before `eval-when-compile's.
14143
14144         * gnus-ems.el (gnus-alive-p):
14145         * gnus-fun.el (message-goto-eoh):
14146         * gnus-util.el (gnus-group-name-decode):
14147         * mail-source.el (gnus-compress-sequence):
14148         * message.el (Info-goto-node, format-spec):
14149         * mm-bodies.el (message-options-get):
14150         * mm-decode.el (mm-view-pkcs7):
14151         * mm-util.el (gmm-write-region):
14152         * mml-smime.el (mml-compute-boundary)
14153         (gnus-completing-read-with-default):
14154         * mml.el (widget-button-press, gnus-make-hashtable):
14155         * mml1991.el (mm-decode-content-transfer-encoding)
14156         (mm-encode-content-transfer-encoding)
14157         (message-options-get, message-options-set):
14158         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
14159         * nnfolder.el (gnus-request-group):
14160         * nnheader.el (ietf-drums-unfold-fws):
14161         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
14162         * smime.el (gnus-run-mode-hooks):
14163         * spam-stat.el (gnus-message): Autoload.
14164
14165         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
14166         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
14167         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
14168         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
14169         Add declare-function compatibility definition.
14170
14171         * gnus-cache.el (nnvirtual-find-group-art):
14172         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
14173         (gnus-add-image, gnus-add-wash-type):
14174         * gnus-group.el (nnkiboze-score-file):
14175         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
14176         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
14177         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
14178         (message-tokenize-header, gnus-get-buffer-create)
14179         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
14180         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
14181         * gnus.el (gnus-group-decoded-name):
14182         * mail-source.el (imap-capability):
14183         * mm-bodies.el (message-options-set):
14184         * mm-decode.el (gnus-configure-windows):
14185         * mm-extern.el (message-goto-body):
14186         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
14187         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
14188         (epg-sub-key-validity, message-options-set):
14189         * mml.el (widget-event-point, gnus-configure-windows):
14190         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
14191         * mml2015.el (epg-check-configuration, epg-configuration)
14192         (message-options-set):
14193         * nndb.el (nndb-request-article):
14194         * nnfolder.el (gnus-request-create-group):
14195         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
14196         * nnmaildir.el (gnus-group-mark-article-read):
14197         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
14198         * rfc1843.el (message-fetch-field):
14199         * spam.el (gnus-extract-address-components):
14200         Declare as functions.
14201
14202 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14203
14204         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
14205
14206         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
14207
14208         * lpath.el: Fbind run-mode-hooks for Emacs 21;
14209         bind show-trailing-whitespace for XEmacs.
14210
14211 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
14212
14213         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
14214         new no-op macro for backward compatibility.
14215
14216         * imap.el (imap-string-to-integer): New function.
14217
14218 2007-12-09  Glenn Morris  <rgm@gnu.org>
14219
14220         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
14221
14222         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
14223         * message.el, mm-view.el, sieve-manage.el, smime.el:
14224         Add declare-function compatibility definition.
14225
14226         * gnus-art.el (w3-region, w3m-region, Info-menu):
14227         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
14228         * gnus-sum.el (gnus-get-predicate):
14229         * gnus-util.el (mm-append-to-file, w32-focus-frame):
14230         * message.el (mail-abbrev-in-expansion-header-p):
14231         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
14232         (w3m-detect-meta-charset, w3m-region):
14233         * sieve-manage.el (password-read, password-cache-add)
14234         (password-cache-remove):
14235         * smime.el (password-read-and-add): Declare as functions.
14236
14237 2007-12-08  David Kastrup  <dak@gnu.org>
14238
14239         * gnus-sum.el (gnus-summary-simplify-subject-query):
14240         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
14241         `message'.
14242
14243 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14244
14245         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
14246         it to bind idna-program, installation-directory, defined-colors, and
14247         face-attribute for XEmacs of the version that compiles defcustom forms.
14248
14249 2007-12-07  Glenn Morris  <rgm@gnu.org>
14250
14251         * gnus-art.el (article-make-date-line): Revert previous change.
14252
14253 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
14254
14255         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
14256
14257 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
14258
14259         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
14260         Call gnus-add-to-range ranges only once with a prepared article-list.
14261
14262 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
14263
14264         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
14265         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
14266         group names with backslashes.
14267         Reported by Tassilo Horn <tassilo@member.fsf.org>.
14268
14269 2007-12-06  Deepak Goel  <deego3@gmail.com>
14270
14271         * gnus-art.el (article-make-date-line):
14272         * gnus-start.el (gnus-load):
14273         * pop3.el (pop3-read-response): Fix buggy call to `error'.
14274
14275 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14276
14277         * gnus-art.el (gnus-use-idna):
14278         * gnus-start.el (gnus-site-init-file):
14279         * message.el (message-use-idna):
14280         * mm-uu.el (mm-uu-hide-markers):
14281         * smiley.el (smiley-style): Revert changes that suppress warnings.
14282
14283 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14284
14285         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
14286         specify charset to html source.
14287         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
14288
14289 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14290
14291         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
14292         idna-program in order to suppress byte compile warning issued by XEmacs
14293         that came to byte compile the default value section of defcustom forms
14294         recently.
14295
14296         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
14297         value of installation-directory.
14298
14299         * message.el (message-use-idna): Don't directly refer to the value of
14300         idna-program.
14301
14302         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
14303
14304         * smiley.el (smiley-style): Don't directly call face-attribute.
14305
14306 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
14307
14308         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
14309
14310         * gnus-dired.el: Reduce Gnus dependencies.
14311         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
14312         Don't require.  Use autoloads instead.
14313         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
14314         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
14315         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
14316         (gnus-dired-mode): Adjust doc string.
14317         (gnus-dired-mail-mode): New variable.
14318         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
14319         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
14320         (gnus-dired-mail-buffers): New function.  Return mail or message
14321         composition buffers.
14322         (gnus-dired-attach): Use it.
14323         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
14324         NO-DECODE.
14325         (gnus-dired-print): Use `gnus-print-buffer' depending on
14326         `gnus-dired-mail-mode'.
14327
14328 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14329
14330         * rfc2047.el (rfc2047-encoded-word-regexp)
14331         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
14332         explaining what regexp patterns are for.
14333
14334 2007-12-04  Glenn Morris  <rgm@gnu.org>
14335
14336         * password.el: Move to password-cache.el.
14337
14338         * mml1991.el (password-read, password-cache-add, password-cache-remove):
14339         * mml2015.el (password-read, password-cache-add, password-cache-remove):
14340         * mml-smime.el (password-read, password-cache-add)
14341         (password-cache-remove):
14342         No need to autoload, since mml-sec requires password.
14343
14344         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
14345         * message.el (gnus-extract-address-components):
14346         * mml-smime.el (gnus-extract-address-components): Define for compiler.
14347
14348         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
14349         password.
14350
14351 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
14352
14353         * mailcap.el: Reduce dependencies.
14354         (mail-header-parse-content-type): Autoload.
14355         (mailcap-delete-duplicates): New alias.
14356         (mailcap-mime-info): Add optional argument NO-DECODE.
14357         (mailcap-mime-types): Use mailcap-delete-duplicates.
14358
14359         * message.el (message-ignored-supersedes-headers): Add "X-ID".
14360
14361 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
14362
14363         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
14364         (imap-parse-status): Upcase status-att for servers that sends them
14365         lower-case (e.g., MS Exchange 2007).
14366
14367 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14368
14369         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
14370         function.
14371
14372         * gnus-uu.el (gnus-uu-decode-yenc): New command.
14373         (gnus-uu-yenc-article): New function.
14374
14375         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
14376
14377         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
14378
14379 2007-12-02  Glenn Morris  <rgm@gnu.org>
14380
14381         * binhex.el (binhex): New custom group.
14382         (binhex-decoder-program, binhex-decoder-switches)
14383         (binhex-use-external): Move to the binhex custom group.
14384
14385         * uudecode.el (uudecode): New custom group.
14386         (uudecode-decoder-program, uudecode-decoder-switches)
14387         (uudecode-use-external): Move to the uudecode custom group.
14388
14389         * netrc.el (top-level): Don't load `encrypt' features.
14390         (netrc-parse): Don't use encrypt.
14391         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
14392
14393         * encrypt.el: Remove file.
14394
14395 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
14396
14397         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
14398         matches on patches.
14399
14400         * gnus-art.el (gnus-article-browse-html-article):
14401         Mention `mm-text-html-renderer' in the doc string.
14402
14403         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
14404         string.  Add comments.
14405
14406         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
14407         if rhs is ASCII.
14408
14409 2007-12-01  Glenn Morris  <rgm@gnu.org>
14410
14411         * mail-source.el (top-level): Require format-spec before
14412         eval-when-compile.
14413
14414 2007-11-30  Glenn Morris  <rgm@gnu.org>
14415
14416         * encrypt.el: Require password, rather than autoloading password-read.
14417
14418 2007-11-29  Glenn Morris  <rgm@gnu.org>
14419
14420         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
14421         (sasl-make-client, sasl-next-step, sasl-step-data)
14422         (sasl-step-set-data): Declare as functions.
14423
14424 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
14425
14426         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
14427
14428 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
14429
14430         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
14431         certs should be verified and what is to be done in the event of a
14432         verification failure.
14433
14434         * gnus.el (gnus-method-to-server): Add an optional parameter so the
14435         caller can indicate whether the cache should be disregarded for this
14436         call.  This way the result of the call is reproducible at all times and
14437         can be considered a canonical server name for the supplied method.
14438         (gnus-agent-method-p): Canonicalize server names by pushing their
14439         method through `gnus-method-to-server' using the no-cache argument.
14440
14441         * gnus-srvr.el (gnus-server-insert-server-line):
14442         Call `gnus-method-to-server' with `no-cache' argument.
14443
14444         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
14445         gnus-agent-possibly-synchronize-flags as this should be called when the
14446         server is actually being opened.
14447         (gnus-agent-possibly-synchronize-flags)
14448         (gnus-agent-possibly-synchronize-flags-server): Move check for the
14449         flags file of an agentized server to the latter function.
14450
14451         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
14452         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
14453         after a connection has been established successfully.
14454
14455 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14456
14457         * gnus-art.el (article-display-face): Force to display face if called
14458         interactively; check if gnus-article-x-face-too-ugly matches author.
14459         (article-display-x-face): Display face even if From header is missing
14460         as article-display-face does.
14461
14462 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
14463
14464         * hashcash.el (message-narrow-to-headers-or-head)
14465         (message-fetch-field, message-goto-eoh)
14466         (message-narrow-to-headers): Declare as functions.
14467
14468 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
14469
14470         * mail-source.el (mail-sources): Default to fetch from file for
14471         compatibility with default of nnmail-spool-file.
14472
14473 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14474
14475         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
14476         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
14477         to look for encoded word that should be encoded again.
14478         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
14479         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
14480         encoding pattern.
14481         (rfc2047-decode-region): Switch strict regexp and loose one according
14482         to rfc2047-allow-irregular-q-encoded-words.
14483
14484 2007-11-25  Romain Francoise  <romain@orebokech.com>
14485
14486         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
14487
14488 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
14489
14490         * tls.el (tls-program): Provide more custom choices from
14491         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
14492         (tls-process-connection-type, tls-success): Remove "*" in doc string.
14493
14494 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14495
14496         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
14497         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
14498
14499         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
14500         `nnmail-spool-file'.
14501
14502         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
14503         `nnmail-spool-file'.
14504
14505         * gnus-move.el (gnus-change-server): Ditto.
14506
14507         * gnus-kill.el (gnus-batch-score): Ditto.
14508
14509         * gnus-cache.el (gnus-jog-cache): Ditto.
14510
14511         * gnus-msg.el (gnus-summary-reply):
14512         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
14513
14514 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14515
14516         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
14517         version.  Minor improvement to doc strings.
14518         (tls-program): Add comment.
14519
14520 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
14521
14522         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
14523         (tls-checktrust): New variable.  Check if GNU TLS complained about a
14524         mismatch between the hostname provided in the certificate and the name
14525         of the host connnecting to.
14526         (open-tls-stream): Use them.  Check certificates against trusted root
14527         certificates.
14528
14529 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14530
14531         * gnus-cache.el (gnus-cache-generate-nov-databases):
14532         Use nnml-generate-nov-databases-directory instead of
14533         nnml-generate-nov-databases-1.
14534
14535 2007-11-24  Glenn Morris  <rgm@gnu.org>
14536
14537         * message.el (message-tool-bar-retro): Update for rename
14538         mail_send.xpm->mail-send.xpm.
14539
14540 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
14541
14542         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
14543         `smime-ldap-search' for Emacs 22 and up.
14544
14545 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
14546
14547         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
14548
14549         * message.el (message-send-mail-function): Fix error convention.
14550         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
14551         (message-widen-reply, message-send-mail, message-talkative-question)
14552         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
14553         (message-clone-locals, message-send-news): Use with-current-buffer.
14554         (message-insert-or-toggle-importance): Remove unused var `valid'.
14555         (message-make-references): Remove unused var `new-references'.
14556         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
14557
14558 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
14559
14560         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
14561         (spam-split-symbolic-return-positive): Reflow docstring.
14562         (spam-backends, spam-summary-exit-behavior)
14563         (spam-mark-ham-unread-before-move-from-spam-group)
14564         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
14565         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
14566         (spam-clear-cache, spam-backend-check, spam-install-backend)
14567         (spam-install-statistical-backend, spam-list-of-processors)
14568         (spam-group-processor-p, spam-split, spam-bogofilter-score)
14569         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
14570         (spam-check-crm114, spam-initialize, spam-unload-hook):
14571         Fix typos in docstrings.
14572
14573 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14574
14575         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
14576         been checked if they have never been read and those group levels are
14577         higher than the one that a user specified.
14578
14579 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14580
14581         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
14582         foreign groups unless a group level is specified by a user.
14583         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
14584
14585 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
14586
14587         * message.el (message-send-mail-function): Require sendmail.
14588
14589 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
14590
14591         * message.el (message-send-mail-function): Check for smtpmail too.
14592
14593         * utf7.el (utf7-encode, utf7-decode): Use coding system
14594         `utf-7'/`utf-7-imap' from utf-7.el' if available.
14595
14596         * message.el (message-send-mail-function): New function.
14597         (message-send-mail-function): Set default using
14598         message-send-mail-function.  Adjust doc string.
14599         (message-send-mail-with-mailclient): New function.
14600
14601 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
14602
14603         * smime.el (from):
14604         * rfc2047.el (message-posting-charset):
14605         * qp.el (mm-use-ultra-safe-encoding):
14606         * pop3.el (parse-time-months):
14607         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
14608         * nnml.el (files):
14609         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
14610         (jka-compr-compression-info-list, ange-ftp-path-format)
14611         (efs-path-regexp):
14612         * nndiary.el (files):
14613         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
14614         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
14615         (epg-digest-algorithm-alist, inhibit-redisplay)
14616         (password-cache-expiry):
14617         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
14618         (pgg-output-buffer, password-cache-expiry):
14619         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
14620         (efs-path-regexp):
14621         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
14622         (inhibit-redisplay):
14623         * mm-uu.el (file-name, start-point, end-point, entry)
14624         (gnus-newsgroup-name, gnus-newsgroup-charset):
14625         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
14626         (latin-unity-ucs-list):
14627         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
14628         (mm-uu-binhex-decode-function):
14629         * message.el (gnus-message-group-art, gnus-list-identifiers)
14630         (rmail-enable-mime-composing, gnus-local-organization)
14631         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
14632         (gnus-read-active-file, facemenu-add-face-function)
14633         (facemenu-remove-face-function, gnus-article-decoded-p)
14634         (tool-bar-mode):
14635         * mail-source.el (display-time-mail-function):
14636         * gnus-util.el (nnmail-pathname-coding-system)
14637         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
14638         (gnus-original-article-buffer, gnus-user-agent)
14639         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
14640         (xemacs-codename, sxemacs-codename, emacs-program-version):
14641         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
14642         * gnus-start.el (gnus-agent-covered-methods)
14643         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
14644         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
14645         (gnus-newsgroup-headers, gnus-group-list-mode)
14646         (gnus-group-mark-positions, gnus-newsgroup-data)
14647         (gnus-newsgroup-unreads, nnoo-state-alist)
14648         (gnus-current-select-method, mail-sources)
14649         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
14650         (nnmail-spool-file, gnus-cache-active-hashtb):
14651         * gnus-mh.el (mh-lib-progs):
14652         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
14653         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
14654         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
14655         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
14656         (gnus-group-buffer):
14657         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
14658         (font-lock-set-defaults):
14659         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
14660         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
14661         (gnus-summary-post-menu, total-parts, type, condition, length):
14662         * gnus-agent.el (gnus-agent-read-agentview):
14663         * flow-fill.el (show-trailing-whitespace):
14664         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
14665         eval-and-compile wrappers for byte compiler pacifiers.
14666
14667         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
14668         (mm-display-inline-fontify): Check for featurep 'xemacs not
14669         extent-list.
14670
14671         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
14672         itimer-list.
14673         (mm-create-image-xemacs): Only do something for XEmacs.
14674         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
14675
14676         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
14677
14678         * gnus-registry.el (gnus-adaptive-word-syntax-table):
14679         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
14680
14681 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
14682
14683         * nnimap.el (nnimap-split-download-body):
14684         * gnus-demon.el (gnus-demon):
14685         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
14686
14687 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14688
14689         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
14690         New macros.
14691         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
14692         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
14693         copy data from unibyte buffer to multibyte current buffer.
14694         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
14695         to copy data from unibyte current buffer to multibyte buffer.
14696         (nntp-make-process-buffer): Make process buffer unibyte.
14697
14698         * pop3.el (pop3-open-server): Fix typo in Lisp code.
14699
14700 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
14701
14702         * pop3.el (pop3-open-server): Accept and process data more robustly at
14703         connection start to avoid spurious "POP SSL connection failed" errors.
14704
14705 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14706
14707         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
14708         read group names.
14709
14710 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
14711
14712         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
14713
14714 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14715
14716         * nnmail.el (nnmail-parse-active): Make group names unibyte.
14717         (nnmail-save-active): Use a unibyte buffer when saving active file,
14718         which may contain non-ASCII group names.
14719
14720         * nnml.el (nnml-request-group): Decode group names in messages.
14721
14722 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
14723
14724         * message.el (message-citation-line-function)
14725         (message-insert-formatted-citation-line): Fix spelling of
14726         `message-insert-formated-citation-line'.
14727
14728 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
14729
14730         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
14731
14732 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14733
14734         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
14735         nnmail-pathname-coding-system.
14736
14737         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
14738         that a user enters; decode group names in messages.
14739
14740         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
14741
14742 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
14743
14744         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
14745
14746         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
14747
14748         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
14749         risky local variable.
14750
14751         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
14752
14753 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
14754
14755         * encrypt.el: Improve documentation to fix function name typo.
14756         Reported by Daiki Ueno <ueno@unixuser.org>.
14757
14758 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14759
14760         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
14761         even if the point is not in the last page of an article.
14762         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
14763         back to the previous page.
14764
14765 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
14766
14767         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
14768
14769 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14770
14771         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
14772
14773 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14774
14775         * message.el (message-check-news-body-syntax):
14776         Avoid mm-string-as-multibyte.
14777         (message-hide-headers): Don't assume (point-min)==1.
14778
14779 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
14780
14781         * message.el (message-remove-blank-cited-lines): Fix if remove is
14782         given.
14783         (message-bogus-address-regexp): New variable.
14784         (message-bogus-recipient-p): New function.
14785         (message-check-recipients): New command.
14786         (message-syntax-checks): Add `bogus-recipient'.
14787         (message-fix-before-sending): Add `bogus-recipient'.
14788
14789         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
14790         (gnus-treat-body-boundary): Don't test window-system.
14791
14792 2007-10-28  Leo Liu  <sdl.web@gmail.com>
14793
14794         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
14795
14796 2007-10-28  Miles Bader  <miles@gnu.org>
14797
14798         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
14799         at compile-time too.
14800
14801 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
14802
14803         * gnus-msg.el (gnus-message-setup-hook):
14804         Add `message-remove-blank-cited-lines' to options.
14805
14806 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
14807
14808         * message.el (message-remove-blank-cited-lines): New function.
14809         Suggested by Karl Plästerer.
14810
14811 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14812
14813         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
14814         mapc.
14815
14816         * imap.el (imap-open): Replace mapcar called for effect with mapc.
14817         (top-level): Use mapc to set functions to be traced for debugging.
14818
14819         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
14820         called for effect with while loop.
14821
14822         * message.el (message-talkative-question): Replace mapcar called for
14823         effect with mapc.
14824
14825         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
14826         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
14827         called for effect with dolist.
14828
14829         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
14830
14831         * nndiary.el: Use dolist instead of mapcar to add diary headers to
14832         gnus-extra-headers and nnmail-extra-headers.
14833
14834         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
14835         called for effect with dolist.
14836         (top-level): Use mapc to set functions to be traced for debugging.
14837
14838         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
14839         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
14840         dolist.
14841
14842         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
14843         Replace mapcar called for effect with mapc.
14844         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
14845         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
14846         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
14847         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
14848
14849         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
14850         remove-if that's a cl function.
14851
14852         * webmail.el (webmail-debug): Replace mapcar called for effect with
14853         dolist.
14854
14855         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
14856         with mapc.
14857
14858 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14859
14860         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
14861         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
14862         with while loop.
14863
14864         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
14865         functions from article-* functions.
14866         (gnus-multi-decode-header): Replace mapcar called for effect with
14867         dolist.
14868
14869         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
14870         (gnus-bookmark-show-details): Replace mapcar called for effect with
14871         while loop.
14872
14873         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
14874         called for effect with while loop.
14875
14876         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
14877         with dolist.
14878
14879         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
14880         Replace mapcar called for effect with dolist.
14881
14882         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
14883
14884         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
14885         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
14886         Replace mapcar called for effect with dolist.
14887         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
14888         mapc.
14889
14890         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
14891         Replace mapcar called for effect with dolist.
14892         (gnus-topic-list): Replace mapcar called for effect with mapc.
14893
14894         * gnus.el: Use mapc instead of mapcar to add autoloads.
14895
14896 2007-10-23  Richard Stallman  <rms@gnu.org>
14897
14898         * gnus-group.el (gnus-group-highlight): Mark as risky.
14899
14900 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14901
14902         * gnus.el (gnus-server-to-method): Return method found first in
14903         gnus-newsrc-alist.
14904
14905         * gnus-art.el (gnus-article-highlight-signature)
14906         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
14907         button overlay without the front stickiness.
14908
14909 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
14910
14911         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
14912         overview buffer needed a catch to receive its throw.
14913         (gnus-agent-flush-cache): Declare as interactive to make this function
14914         easier to use.
14915
14916 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
14917
14918         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
14919         `next-line'.
14920
14921 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14922
14923         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
14924         exclude address matching message-dont-reply-to-names.
14925
14926 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14927
14928         * gnus-util.el (gnus-string<): New function.
14929
14930         * gnus-sum.el (gnus-article-sort-by-author)
14931         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
14932
14933 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14934
14935         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
14936         the frame-focus tag is set in gnus-buffer-configuration.
14937
14938 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14939
14940         * gnus-art.el (gnus-article-add-button): Make a button overlay without
14941         the front stickiness.
14942
14943 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14944
14945         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
14946         url pattern; remove duplicate one.
14947         (gnus-article-extend-url-button): New function.
14948         (gnus-article-add-buttons): Use it.
14949         (gnus-button-push): Use concatenated url that it makes.
14950
14951 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
14952
14953         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
14954
14955 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
14956
14957         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
14958         Don't hardcode point-min==1.
14959
14960 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
14961
14962         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
14963         Fix comment about "iso8859-1".
14964
14965 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
14966
14967         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
14968         ones returned from the verify-function.
14969
14970         * mm-uu.el (mm-uu-pgp-signed-extract-1):
14971         Call mml2015-extract-cleartext-signature if extraction failed.
14972
14973 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
14974
14975         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
14976         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
14977         failed.
14978
14979 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
14980
14981         * Relicense "GPLv2 or later" files to "GPLv3 or later".
14982
14983 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
14984
14985         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
14986         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
14987         recommends to use EasyPG instead of PGG.
14988
14989         * pgg.el: Revert to revision 6.23.2.16.
14990
14991         * pgg-def.el: Revert to revision 6.6.2.14.
14992
14993         * pgg-gpg.el: Revert to revision 6.23.2.34.
14994
14995 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
14996
14997         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
14998         to mark a thread as expirable.  Add variable `hide' to handle hiding of
14999         thread for both the null and zero (kill/expire thread) universal prefix
15000         cases.
15001         (gnus-summary-expire-thread): Add new function to expire a thread,
15002         using gnus-summary-kill-thread.
15003         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
15004         shortcuts for gnus-summary-expire-thread.
15005         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
15006         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
15007
15008 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
15009
15010         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
15011         extras value, so an extras entry can be deleted.
15012         (gnus-registry-delete-extra-entry): Use it.
15013         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
15014         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
15015         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
15016         storage through the gnus-registry, and provide an appropriate API for
15017         it.
15018
15019 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15020
15021         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
15022         Suggested by Leo <sdl.web@gmail.com>.
15023
15024         * gnus.el: Do.
15025
15026 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15027
15028         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
15029         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
15030
15031         * gnus-agent.el (gnus-agent-fetch-headers): Do.
15032
15033         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
15034         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
15035
15036 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15037
15038         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
15039         newline.
15040         (nnmbox-request-accept-article): Don't change article in source buffer;
15041         narrow to header to use message-fetch-field rather than
15042         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
15043         (nnmbox-request-replace-article): Quote lines that'll be misidentified
15044         as delimiters; make sure article ends with newline.
15045         (nnmbox-delete-mail): Correct last position of article to be deleted;
15046         ignore X-Gnus-Newsgroup header in article body.
15047         (nnmbox-save-mail): Quote lines looking like delimiters at the right
15048         positions; make sure article ends with newline.
15049
15050         * message.el (message-display-abbrev): Don't infloop when a user
15051         inserts SPC in the beginning of header.
15052
15053         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
15054         coding-system-for-read and coding-system-for-write for XEmacs having no
15055         file-coding feature.
15056
15057         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
15058
15059 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
15060
15061         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
15062         list of groups not followed by default.  Fix type to be regexp.
15063         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
15064
15065 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
15066
15067         * hmac-def.el (define-hmac-function): Switch from old-style to
15068         new-style backquotes.
15069
15070         * md4.el (md4-make-step): Likewise.
15071
15072 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15073
15074         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
15075         raw-text coding system when saving .newsrc file, which may contain
15076         non-ASCII group names.
15077
15078 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15079
15080         * gnus-cus.el (gnus-score-extra): New widget.
15081         (gnus-score-extra-convert): New function.
15082         (gnus-score-customize): Use it for Extra.
15083
15084 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
15085
15086         * mml2015.el (mml2015-extract-cleartext-signature): New function.
15087         (mml2015-mailcrypt-clear-verify): Use it.
15088         (mml2015-gpg-clear-verify): Use it.
15089         (mml2015-pgg-clear-verify): Use it.
15090         (mml2015-epg-clear-verify): Replace the current part with the output
15091         from GnuPG; don't extract the plaintext by itself.
15092
15093         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
15094         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
15095         mml2015-clear-verify-function; don't touch the armor headers or
15096         dash-escaped text here.
15097
15098 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15099
15100         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
15101         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
15102         parts, or application/octet-stream as a last resort.
15103         (gnus-mime-view-part-as-type): Don't toggle display.
15104         (gnus-mime-view-part-as-charset): Don't turn off display before
15105         querying charset.
15106
15107         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
15108         stuff to undisplayer function in Emacs.
15109         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
15110
15111         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
15112         text/calendar parts.
15113
15114 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15115
15116         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
15117         decoding text/calendar parts.
15118
15119         * message.el (message-forward-make-body-mime): Always mark body as
15120         having no illegible text; remove signed-or-encrypted argument.
15121         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
15122
15123         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
15124         (mml-generate-mime-1): Don't encode body if it is specified to be in
15125         raw form; don't make buffer be unibyte when inserting multibyte string.
15126
15127 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
15128
15129         * sha1.el: Fix up comment style.
15130         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
15131         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
15132
15133         * hex-util.el: Fix up comment style.
15134         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
15135
15136         * gnus-salt.el: Use with-current-buffer.
15137         (gnus-pick-setup-message): Fix long-standing typo.
15138
15139 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15140
15141         * imap.el (imap-logout-timeout): New variable.
15142         (imap-logout, imap-logout-wait): New functions.
15143         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
15144
15145         * nnimap.el (nnimap-logout-timeout): New server variable.
15146         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
15147         nnimap-logout-timeout.
15148
15149         * gnus-art.el (gnus-article-summary-command-nosave)
15150         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
15151
15152 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15153
15154         * gnus.el (gnus-maximum-newsgroup): New variable.
15155
15156         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
15157         according to gnus-maximum-newsgroup.
15158
15159         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
15160         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
15161         Limit the range of articles according to gnus-maximum-newsgroup.
15162
15163 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
15164
15165         * gnus-art.el (gnus-sticky-article): Fix problems described in
15166         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
15167         Don't perform gnus-configure-windows here; reuse existing sticky
15168         article buffer.
15169
15170         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
15171         it doesn't exist in gnus-article-mode.
15172
15173 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15174
15175         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
15176         (gnus-agent-decoded-group-name): New function.
15177         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
15178         (gnus-agent-expire-group-1): Use it; decode group name in messages.
15179
15180 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
15181
15182         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
15183         Add binding for gnus-sticky-article.
15184         (gnus-summary-exit): Don't kill sticky article buffers.
15185
15186         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
15187         article buffer.
15188         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
15189         (gnus-kill-sticky-article-buffers): New commands.
15190
15191 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15192
15193         * nntp.el (nntp-xref-number-is-evil): New server variable.
15194         (nntp-find-group-and-number): If it is non-nil, don't trust article
15195         numbers in the Xref header.
15196
15197 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15198
15199         * gnus-agent.el (gnus-agent-read-group): New function.
15200         (gnus-agent-flush-group, gnus-agent-expire-group)
15201         (gnus-agent-regenerate-group): Use it.
15202         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
15203         nnmail-pathname-coding-system.
15204
15205 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15206
15207         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
15208
15209         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
15210         that are unread as unread, and also as selected so that information of
15211         marks having been changed by a user may be updated when exiting group.
15212
15213 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
15214
15215         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
15216
15217 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15218
15219         * gnus-art.el (gnus-mime-display-single): Pass part number that is
15220         calculated ignoring signature parts to gnus-treat-article.
15221
15222 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15223
15224         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
15225         a point here in order to keep the window start.
15226         (gnus-insert-mime-security-button): Make a button overlay without the
15227         front stickiness.
15228         (gnus-mime-display-security): Goto the end of a button.
15229
15230         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
15231
15232 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15233
15234         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
15235         group-name-at-point.
15236         (gnus-group-completing-read): New function that offers decoded
15237         non-ASCII group names for completion.
15238         (gnus-fetch-group, gnus-group-read-ephemeral-group)
15239         (gnus-group-jump-to-group, gnus-group-make-group-simple)
15240         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
15241         (gnus-group-fetch-control): Use it.
15242         (gnus-fetch-group): Use group-name-at-point for the initial value
15243         rather than the default value; use gnus-alive-p.
15244
15245         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
15246         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
15247         (gnus-summary-post-news): Use gnus-group-completing-read.
15248
15249         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
15250         (gnus-read-move-group-name): Decode group name for completion.
15251
15252 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
15253
15254         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
15255         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
15256         Yamaoka slightly modified the code).
15257
15258 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15259
15260         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
15261         (nnmail-split-incoming): Bind it.
15262
15263         * nnml.el (nnml-group-name-charset): New function.
15264         (nnml-decoded-group-name): Use it; don't decode group name if
15265         nnmail-group-names-not-encoded-p is non-nil.
15266         (nnml-encoded-group-name): New function.
15267         (nnml-group-pathname): Inline nnml-decoded-group-name.
15268         (nnml-request-expire-articles): Decode group name in message.
15269         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
15270         nnmail-pathname-coding-system.
15271         (nnml-save-mail, nnml-active-number): Work with decoded group names and
15272         not decoded ones according to nnmail-group-names-not-encoded-p.
15273         (nnml-generate-active-info): Use nnml-encoded-group-name.
15274
15275 2007-08-08  Glenn Morris  <rgm@gnu.org>
15276
15277         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
15278         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
15279         doc-strings and comments.
15280
15281 2007-07-25  Glenn Morris  <rgm@gnu.org>
15282
15283         * Relicense all FSF files to GPLv3 or later.
15284
15285 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15286
15287         * gnus-sum.el (gnus-summary-move-article):
15288         Make gnus-summary-respool-article work.
15289
15290 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
15291
15292         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
15293         string.
15294
15295 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
15296
15297         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
15298         that should be ignored when comparing distant RSS articles with local
15299         ones.
15300         (nnrss-make-hash-index): New function.  Create a hash index according
15301         to the ignored fields.
15302         (nnrss-check-group): Use it.
15303
15304 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15305
15306         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
15307
15308         * gnus-art.el (article-decode-group-name): Decode Xref header too.
15309
15310         * gnus-group.el (gnus-group-make-group): Encode group name here unless
15311         the new optional argument ENCODED is non-nil.
15312         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
15313         coding system for encoding group name.
15314         (gnus-group-make-rss-group): Pass un-encoded group name to
15315         gnus-group-make-group.
15316         (gnus-group-set-info): Tell gnus-group-make-group that group name is
15317         encoded.
15318
15319         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
15320         Encode group name to which articles are moved or copied.
15321         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
15322         coding system for encoding Newsgroup, Followup-To and Xref headers.
15323
15324         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
15325         marks; use nnheader-file-coding-system to write a file.
15326         (nnagent-retrieve-headers): Bind file-name-coding-system to
15327         nnmail-pathname-coding-system.
15328
15329         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
15330
15331         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
15332         (nnml-request-article, nnml-request-create-group)
15333         (nnml-request-rename-group, nnml-find-id)
15334         (nnml-possibly-change-directory, nnml-possibly-create-directory)
15335         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
15336         (nnml-save-marks): Use nnml-group-pathname instead of
15337         nnmail-group-pathname.
15338
15339         (nnml-request-create-group, nnml-request-expire-articles)
15340         (nnml-request-move-article, nnml-request-delete-group)
15341         (nnml-deletable-article-p, nnml-possibly-create-directory)
15342         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
15343         (nnml-open-marks): Bind file-name-coding-system to
15344         nnmail-pathname-coding-system.
15345
15346         (nnml-request-article): Pass server argument to nnml-find-group-number.
15347         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
15348         Pass server argument to nnml-possibly-create-directory.
15349         (nnml-request-accept-article): Pass server argument to
15350         nnml-active-number and nnml-save-mail.
15351         (nnml-find-group-number): Pass server argument to nnml-find-id.
15352         (nnml-request-update-info): Pass server argument to
15353         nnml-marks-changed-p.
15354
15355         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
15356         (nnml-save-mail, nnml-active-number): Add server argument.
15357
15358         (nnml-request-delete-group): Warn if group is missing.
15359         (nnml-get-nov-buffer): Decode group name.
15360         (nnml-generate-active-info): Encode group name.
15361         (nnml-open-marks): Decode group name in messages.
15362
15363 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15364
15365         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
15366         if it is not specified.
15367         (gnus-article-pipe-part, gnus-article-save-part)
15368         (gnus-article-interactively-view-part, gnus-article-copy-part)
15369         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
15370         (gnus-article-inline-part, gnus-article-save-part-and-strip)
15371         (gnus-article-replace-part, gnus-article-delete-part)
15372         (gnus-article-view-part-as-type): Pass raw prefix argument to
15373         gnus-article-part-wrapper.
15374
15375 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15376
15377         * gnus-agent.el (gnus-agent-save-active):
15378         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
15379
15380         * gnus-cache.el (gnus-cache-save-buffers)
15381         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
15382         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
15383         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
15384         (gnus-cache-braid-nov, gnus-cache-braid-heads)
15385         (gnus-cache-generate-active, gnus-cache-rename-group)
15386         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
15387         (gnus-cache-update-overview-total-fetched-for):
15388         Bind file-name-coding-system to nnmail-pathname-coding-system.
15389         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
15390         New variables.
15391         (gnus-cache-decoded-group-name): New function.
15392         (gnus-cache-file-name): Use it.
15393         (gnus-cache-generate-active): Use non-decoded group name for active.
15394
15395         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
15396         right place.
15397         (gnus-write-active-file): Don't break non-ASCII group names.
15398
15399         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
15400         nnmail-pathname-coding-system.
15401
15402         * lpath.el: Bind default-file-name-coding-system,
15403         file-name-coding-system and language-info-alist for XEmacs.
15404
15405         * gnus-uu.el (gnus-uu-decode-save): Typo.
15406
15407 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15408
15409         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
15410
15411 2007-07-14  David Kastrup  <dak@gnu.org>
15412
15413         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
15414         finishing actions if we did not edit the article.
15415
15416 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15417
15418         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
15419         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
15420         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
15421         (gnus-agent-flush-group, gnus-agent-flush-cache)
15422         (gnus-agent-fetch-headers, gnus-agent-load-alist)
15423         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
15424         (gnus-agent-retrieve-headers, gnus-agent-request-article)
15425         (gnus-agent-regenerate-group)
15426         (gnus-agent-update-files-total-fetched-for)
15427         (gnus-agent-update-view-total-fetched-for):
15428         Bind file-name-coding-system to nnmail-pathname-coding-system.
15429         (gnus-agent-group-pathname): Don't encode file names by
15430         nnmail-pathname-coding-system.
15431         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
15432         coding-system-for-write instead of buffer-file-coding-system to
15433         gnus-agent-file-coding-system.
15434
15435         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
15436         Decode group name.
15437
15438         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
15439
15440         * gnus-start.el (gnus-update-active-hashtb-from-killed)
15441         (gnus-read-newsrc-el-file): Make group names unibyte.
15442
15443         * nnmail.el (nnmail-group-pathname): Don't encode file names by
15444         nnmail-pathname-coding-system.
15445
15446         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
15447         (nnrss-request-delete-group): Bind file-name-coding-system to
15448         nnmail-pathname-coding-system.
15449         (nnrss-read-server-data, nnrss-read-group-data):
15450         Bind file-name-coding-system correctly.
15451         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
15452
15453         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
15454         (nntp-server-to-method-cache): New variable.
15455         (nntp-group-pathname): New function that decodes non-ASCII group names.
15456         (nntp-possibly-create-directory, nntp-marks-changed-p)
15457         (nntp-save-marks, nntp-open-marks): Use it.
15458         (nntp-possibly-create-directory, nntp-open-marks):
15459         Bind file-name-coding-system to nnmail-pathname-coding-system.
15460         (nntp-open-marks): Decode group names when bootstrapping marks.
15461
15462         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
15463         Newsgroups and Followup-To headers.
15464
15465 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15466
15467         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
15468         (gnus-server-closed-face, gnus-server-denied-face)
15469         (gnus-server-offline-face): Remove variable.
15470         (gnus-server-font-lock-keywords): Use faces that are not aliases.
15471
15472         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
15473         of modifying message-stack directly for XEmacs.
15474
15475         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
15476         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
15477         if the coding-system argument is nil for XEmacs.
15478
15479         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
15480         mm-charset-override-alist.
15481
15482         * rfc2047.el: Don't require base64; require rfc2045 for the function
15483         rfc2045-encode-string.
15484         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
15485         to quote the parameter value.
15486
15487 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15488
15489         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
15490         form in gnus-group-name-charset-method-alist.
15491
15492         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
15493         overrides the default layout edit-form.
15494
15495         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
15496
15497         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
15498
15499 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15500
15501         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
15502         as unfetched articles.
15503
15504 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
15505
15506         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
15507
15508 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15509
15510         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
15511         original back end that keeps marks in the local system.
15512
15513 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15514
15515         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
15516         arg of pop-to-buffer for XEmacs.
15517         (gnus-article-read-summary-keys): Ditto; don't restore window
15518         configuration if summary command ends up with neither article buffer
15519         nor summary buffer; describe bindings if summary keys end with C-h.
15520
15521 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15522
15523         * message.el (message-fix-before-sending): Skip raw message part to be
15524         forwarded while checking illegible text.
15525         (message-forward-make-body-mime, message-forward-make-body):
15526         Mark signed or encrypted raw message as having no illegible text.
15527
15528 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15529
15530         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
15531         (gnus-message-with-timestamp-1): New macro.
15532         (gnus-message-with-timestamp): New function.
15533         (gnus-message): Use them.
15534
15535         * nnheader.el (nnheader-message): Use them.
15536
15537 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
15538
15539         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
15540         .newsrc.eld file.
15541
15542 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15543
15544         * gnus-agent.el (gnus-agent-fetch-headers)
15545         (gnus-agent-retrieve-headers):
15546         Bind gnus-decode-encoded-address-function to identity.
15547
15548         * nntp.el (nntp-send-xover-command): Recognize an xover command is
15549         available also when the server returns simply a dot.
15550
15551         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
15552
15553 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15554
15555         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
15556
15557 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15558
15559         * gnus-ems.el (gnus-x-splash): Make it work.
15560
15561         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
15562         from being used.
15563
15564         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
15565
15566 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15567
15568         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
15569         4th and the 5th arguments.
15570
15571         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
15572         the front stickiness.
15573         (gnus-article-summary-command-nosave): Correct the order of the
15574         arguments passed to pop-to-buffer.
15575         (gnus-article-read-summary-keys): Ditto; make it work properly when the
15576         summary command ends up with the article buffer.
15577
15578         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
15579         the same faces.
15580
15581 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
15582
15583         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
15584
15585 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
15586
15587         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
15588         * gnus-sum.el (gnus-summary-highlight):
15589         * pgg.el (pgg-sign-region, pgg-sign):
15590         * mail-source.el (mail-source-delete-old-incoming-confirm):
15591         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
15592
15593 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15594
15595         * gnus-art.el (gnus-mime-view-part-externally)
15596         (gnus-mime-view-part-internally): Fix predicate function passed to
15597         completing-read.
15598
15599         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
15600
15601         * gnus.el (gnus-update-message-archive-method): Add :version.
15602
15603 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15604
15605         * gnus.el (gnus-update-message-archive-method): New variable.
15606
15607         * gnus-start.el (gnus-setup-news): Update saved "archive" method
15608         according to gnus-message-archive-method if
15609         gnus-update-message-archive-method is non-nil.
15610
15611 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15612
15613         * gnus-sum.el (gnus-summary-limit-to-address): New function.
15614         Suggested by Loic Dachary <loic@dachary.org>.
15615         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
15616
15617 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15618
15619         * message.el (message-pop-to-buffer): Add switch-function argument.
15620         (message-mail): Pass switch-function argument to it.
15621
15622 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
15623
15624         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
15625         Improve doc string.
15626
15627 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15628
15629         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
15630         (gnus-header-content):
15631         * gnus-cite.el (gnus-cite-10):
15632         * gnus-srvr.el (gnus-server-closed):
15633         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
15634         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
15635         (gnus-group-mail-3-empty, gnus-group-mail-low)
15636         (gnus-group-mail-low-empty, gnus-splash):
15637         * message.el (message-header-to, message-header-cc)
15638         (message-header-subject, message-header-other, message-header-name)
15639         (message-header-xheader, message-separator, message-cited-text)
15640         (message-mml): Lighten colors of faces used for dark background.
15641
15642 2007-05-24  Simon Josefsson  <simon@josefsson.org>
15643
15644         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
15645         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
15646
15647 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15648
15649         * message.el (message-narrow-to-headers-or-head):
15650         Ignore mail-header-separator in the body.
15651
15652 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15653
15654         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
15655         same as window size.
15656
15657 2007-05-22  Kevin Ryde  <user42@zip.com.au>
15658
15659         * message.el (message-font-lock-keywords): Use message-header-xheader
15660         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
15661         ahead of the anything pattern, to get it recognized.
15662
15663 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15664
15665         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
15666         spam.el loads uses it in the compiled defadvice form.
15667
15668 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
15669
15670         * gnus-sum.el (gnus-articles-to-read)
15671         (gnus-summary-insert-old-articles): Don't truncate group name for
15672         `read-string'.
15673
15674         * gnus-util.el (gnus-limit-string): Delete this function.
15675
15676         * gnus-sum.el (gnus-simplify-subject-fully):
15677         Use `truncate-string-to-width' instead.
15678
15679 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
15680
15681         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
15682         Tell if, on summary exit, the next group has to be selected.
15683         (gnus-summary-exit): Use it.
15684
15685 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
15686
15687         * gnus-art.el (gnus-article-mode): Fix comment about displaying
15688         non-break space.
15689
15690 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15691
15692         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
15693         Check if group is not a directory.
15694         (nnfolder-request-expire-articles): Don't delete articles if the target
15695         group is not available.
15696
15697         * nnml.el (nnml-request-create-group): Properly check if group is not a
15698         file.
15699         (nnml-request-expire-articles): Don't delete articles if the target
15700         group is not available.
15701
15702         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
15703         Don't quote characters that are within parentheses.
15704
15705 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15706
15707         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
15708         (gnus-handle-ephemeral-exit): Select article according to it.
15709
15710 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
15711
15712         * message.el (message-insert-formated-citation-line): Remove newline.
15713         (message-citation-line-format): Add final \n here so that the user can
15714         avoid a blank line.
15715
15716 2007-05-03  Dan Christensen  <jdc@uwo.ca>
15717
15718         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
15719         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
15720         Update lanl/arXiv support.
15721
15722 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
15723
15724         * gnus.el: Bump version number.
15725
15726 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15727
15728         * gnus.el (gnus-version-number): Bump version.
15729
15730 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15731
15732         * gnus.el: No Gnus v0.6 is released.
15733
15734 2007-04-27  Didier Verna  <didier@xemacs.org>
15735
15736         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
15737         * gmm-utils.el (gmm-regexp-concat): ... here.
15738         * message.el: Don't require 'gnus-util.
15739         (message-dont-reply-to-names): Handle name change above.
15740         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
15741
15742 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15743
15744         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
15745         since the initial value varies according to the system.
15746
15747 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15748
15749         * mm-util.el (mm-charset-synonym-alist): Defcustom.
15750
15751 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
15752
15753         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
15754
15755 2007-04-24  Didier Verna  <didier@xemacs.org>
15756
15757         Improve the type of gnus-ignored-from-addresses.
15758         * gnus-util.el (gnus-orify-regexp): New function.
15759         * message.el (gnus-util): Require it.
15760         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
15761         * gnus-sum.el (gnus-ignored-from-addresses): New function.
15762         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
15763
15764 2007-04-24  Didier Verna  <didier@xemacs.org>
15765
15766         * gnus-sum.el:
15767         * gnus-utils.el: Fix some trailing whitespaces.
15768
15769 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15770
15771         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
15772         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
15773         article's Message-ID; refer parent article in summary buffer.
15774
15775         * message.el (message-bounce): Call mime-to-mml.
15776
15777         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
15778         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
15779         optimize and/or forms properly.
15780
15781 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
15782
15783         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
15784         URL.
15785
15786 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15787
15788         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
15789
15790 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15791
15792         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
15793         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
15794         displayed of multipart/alternative part if it is invoked from summary
15795         buffer.
15796
15797         * mm-view.el (mm-inline-text-html-render-with-w3m)
15798         (mm-inline-text-html-render-with-w3m-standalone)
15799         (mm-inline-render-with-function): Use mail-parse-charset by default.
15800
15801 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
15802
15803         * parse-time.el (parse-time-string-chars): Check if CHAR
15804         is less than the length of parse-time-syntax.
15805
15806 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15807
15808         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
15809         from gnus-newsgroup-processable.
15810
15811 2007-04-16  Didier Verna  <didier@xemacs.org>
15812
15813         * gnus-msg.el (gnus-configure-posting-styles):
15814         Handle message-signature-directory properly with :file syntax.
15815         Reported by "Leo".
15816
15817 2007-04-11  Didier Verna  <didier@xemacs.org>
15818
15819         New user option: message-signature-directory.
15820         * gnus-msg.el (gnus-configure-posting-styles): Support it.
15821         * message.el (message-insert-signature): Ditto.
15822         * message.el (message-signature-file): Doc update.
15823         * message.el (message-signature-directory): New.
15824
15825 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15826
15827         * gnus-msg.el (gnus-inews-yank-articles):
15828         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
15829
15830 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15831
15832         * message.el (message-yank-original): Make sure cited text ends with
15833         newline; don't exchange point and mark.
15834
15835 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
15836
15837         * tls.el (open-tls-stream): Properly handle case where there
15838         is no associated buffer.
15839
15840 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
15841
15842         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
15843         message-yank-original, make sure (< mark TEXT point).
15844
15845 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
15846
15847         * message.el (message-fill-column): New variable.
15848         (message-mode): Use it.  Add comment on a possible new hook.
15849
15850         * nnmail.el (nnmail-spool-file): Mark as obsolete.
15851         (nnmail-get-new-mail): Reformat.
15852
15853         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
15854
15855         * gmm-utils.el: Fix Commentary.
15856         (gmm-tool-bar-from-list): Fix typo in doc string.
15857
15858 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
15859
15860         * message.el (message-yank-original): Don't switch point and mark
15861         unnecessarily to put point and mark as documented.
15862
15863 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15864
15865         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
15866         from the message heads.
15867
15868 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
15869
15870         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
15871         article buffer does not have a window.  This may not be the best
15872         solution but is certainly better than setting the start of the null,
15873         that is the current, window.
15874
15875 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
15876
15877         * gnus-draft.el (gnus-draft-setup-hook): New hook.
15878         (gnus-draft-setup): Run it.
15879
15880         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
15881         gnus-score-fast-scoring.  Allow regexp.
15882         (gnus-score-headers): Use it.
15883
15884         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
15885         XEmacs.
15886
15887         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
15888         string.
15889         (gnus-button-alist): Also catch `<f1> k ...'.
15890         (gnus-treat-display-x-face): Fix doc string.
15891
15892 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
15893
15894         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
15895         evaluation of gnus-extended-version to ensure correct generation of the
15896         User-Agent header when message-generate-headers-first is used.
15897
15898 2007-03-24  Simon Josefsson  <simon@josefsson.org>
15899
15900         * hashcash.el (hashcash-generate-payment-async): Don't crash if
15901         hashcash-path is nil.  Don't call callback with incorrect number of
15902         parameters if val is 0.
15903
15904 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
15905
15906         * message.el (message-required-news-headers):
15907         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
15908
15909 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
15910
15911         * tls.el (open-tls-stream): In handshake-waiting loop,
15912         don't wait more if there is output available to process.
15913
15914 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
15915
15916         * tls.el (tls-program): Doc fix.
15917
15918 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15919
15920         * message.el (message-generate-new-buffers): Change the meaning of the
15921         nil value; add `standard' to the choices; treat t as `unique'; improve
15922         doc string.
15923         (gnus-select-frame-set-input-focus): Autoload.
15924         (message-buffer-name): Search for the existing message buffer if
15925         message-generate-new-buffers is nil or `standard'; treat the value t of
15926         message-generate-new-buffers as `unique'.
15927         (message-pop-to-buffer): Raise the frame already displaying the message
15928         buffer; clear the echo area after querying.
15929         (message-setup): Pass the `continue' argument to compose-mail.
15930         (message-mail): Prefer `switch-function' if it is given; search for the
15931         existing message buffer if the `continue' argument is non-nil; pass
15932         continue and switch-function arguments to compose-mail by way of
15933         message-setup.
15934         (message-mail-other-window): Adjust argument of message-setup.
15935         (message-mail-other-frame): Ditto.
15936
15937 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15938
15939         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
15940         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
15941         to turn font-lock on when turning gnus-message-citation-mode on.
15942
15943 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
15944
15945         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
15946         (mml-smime-function-alist): New variable; add epg as the backend.
15947         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
15948         mml-smime- functions instead.
15949         * mm-view.el: Require smime.
15950
15951 2007-03-05  Didier Verna  <didier@xemacs.org>
15952
15953         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
15954         instead of just inheritance for posting styles.
15955         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
15956
15957 2007-02-24  Chris Moore  <dooglus@gmail.com>
15958
15959         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
15960         * pgg-pgp.el (pgg-pgp-encrypt-region):
15961         * pgg-gpg.el (pgg-gpg-encrypt-region):
15962         Check pgg-encrypt-for-me if no other recipients.
15963
15964 2007-02-24  John Paul Wallington  <jpw@pobox.com>
15965
15966         * tls.el (tls-certtool-program): Fix custom type.
15967
15968 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15969
15970         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
15971         and point-at-eol instead of line-(beginning|end)-position.
15972
15973         * assistant.el (assistant-parse-buffer): Ditto.
15974
15975         * netrc.el (netrc-parse-services): Ditto.
15976
15977 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
15978
15979         * mml2015.el (mml2015-epg-find-usable-key): New function.
15980         (mml2015-epg-sign): Use it.
15981         (mml2015-epg-encrypt): Use it.
15982
15983 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15984
15985         * message.el (message-make-in-reply-to): Quote name containing
15986         non-ASCII characters.  It will make the RFC2047 encoder cause an error
15987         if there are special characters.  Reported by NAKAJI Hiroyuki
15988         <nakaji@jp.freebsd.org>.
15989
15990 2007-02-27  Didier Verna  <didier@xemacs.org>
15991
15992         Include the group parameters as well as the topic ones in the
15993         inheritance filter process.
15994         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
15995         argument GROUP-PARAMS-LIST.
15996         * gnus-topic.el (gnus-group-topic-parameters): Use it.
15997
15998 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15999
16000         * nntp.el (nntp-never-echoes-commands)
16001         (nntp-open-connection-functions-never-echo-commands): New variables.
16002         (nntp-send-command): Use them.
16003
16004 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
16005
16006         * mml2015.el (mml2015-epg-verify): Simplify.
16007
16008 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16009
16010         * mml.el (mml-content-disposition-alist): New user option.
16011         (mml-content-disposition): New function.
16012         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
16013         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
16014
16015 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
16016
16017         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
16018         verification.
16019
16020 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16021
16022         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
16023         articles posted in the last 24 hours.
16024
16025 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
16026
16027         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
16028
16029 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
16030
16031         * nntp.el (nntp-send-command): Don't wait for echoes when
16032         nntp-open-ssl-stream is used.
16033
16034 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16035
16036         * gnus-cite.el (gnus-test-font-lock-add-keywords)
16037         (gnus-message-add-citation-keywords)
16038         (gnus-message-remove-citation-keywords): Remove.
16039         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
16040         directly, make the variables in font-lock-defaults buffer-local, add
16041         gnus-message-citation-keywords to them and then update the value of
16042         font-lock-keywords.
16043
16044 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16045
16046         * message.el (message-cite-original-1): Don't call
16047         gnus-article-highlight-citation.
16048
16049         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
16050         citations; fix line count.
16051
16052 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
16053
16054         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
16055         (gnus-message-add-citation-keywords)
16056         (gnus-message-remove-citation-keywords): Use it; fix the emulating
16057         versions of font-lock-add-keywords and font-lock-remove-keywords to
16058         work with XEmacs correctly.
16059
16060 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16061
16062         * gnus-cite.el (gnus-cite-face-list): Set the values of
16063         gnus-message-max-citation-depth and gnus-message-citation-keywords.
16064         (gnus-message-max-citation-depth): Use defvar rather than defconst.
16065         (gnus-message-cite-prefix-regexp): New variable.
16066         (gnus-message-search-citation-line): Use it; protect against long
16067         citation prefix; fill match data with nil rather than 0 for XEmacs; set
16068         the 0th match data for Emacs.
16069         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
16070         (gnus-message-add-citation-keywords): Append keywords rather than
16071         prepending; emulate font-lock-add-keywords if it is not available.
16072         (gnus-message-remove-citation-keywords):
16073         Emulate font-lock-remove-keywords if it is not available.
16074
16075         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
16076
16077         * message.el (message-cite-prefix-regexp): Set the value of
16078         gnus-message-cite-prefix-regexp.
16079
16080 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16081
16082         * nnweb.el (nnweb-google-parse-1): Update parser.
16083
16084 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
16085
16086         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
16087
16088 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16089
16090         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
16091         regexp.
16092
16093 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16094
16095         * uudecode.el (uudecode-string-to-multibyte): New function emulating
16096         string-to-multibyte.
16097         (uudecode-decode-region-internal): Use it.
16098
16099         * lpath.el: Fbind string-as-multibyte for XEmacs.
16100
16101 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
16102
16103         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
16104         Fix custom choice.
16105
16106         * gnus-art.el (gnus-signature-limit): Fix custom choice.
16107
16108 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
16109
16110         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
16111
16112         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
16113         `write-region' to respect `mm-inhibit-file-name-handlers'.
16114
16115 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
16116
16117         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
16118         Use gnus-home-directory instead of "~/" or "$HOME".
16119
16120 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
16121
16122         * encrypt.el (encrypt-insert-file-contents): Add better prompt
16123         to mention filename.
16124         Add comments at beginning regarding usage.
16125         (encrypt-write-file-contents): Change interactive so a string is
16126         acceptable.  If the file has no associated model, show an error instead
16127         of a nonsense prompt.
16128
16129 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
16130
16131         * spam.el (spam-bsfilter-ham-switch): Fix typo.
16132         Thanks to Yoshihiko Yamada for kind notification of this typo.
16133
16134 2007-01-12  Kenichi Handa  <handa@m17n.org>
16135
16136         * uudecode.el (uudecode-decode-region-internal): Make it work in a
16137         multibyte buffer.
16138
16139 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
16140
16141         * gnus-score.el (gnus-score-fast-scoring): New variable.
16142         (gnus-score-headers): Use it.
16143
16144         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
16145
16146         * message.el (message-cite-original-1):
16147         Call gnus-article-highlight-citation if requested.
16148         (message-make-from): Allow name and address as optional arguments.
16149
16150         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
16151
16152         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
16153         bugs to doc string.
16154         (gnus-button-alist): Add mid\\|message-id.
16155         (gnus-button-fetch-group): Extend for use in
16156         `browse-url-browser-function'.
16157         (gnus-button-url-regexp): Try to catch paired parentheses like in
16158         Wikipedia URLs.
16159
16160         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
16161         Suggested by Simon Krahnke <overlord@gmx.li>.
16162
16163 2007-01-13  Romain Francoise  <romain@orebokech.com>
16164
16165         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
16166         Update copyright.
16167
16168 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
16169
16170         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
16171
16172 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
16173
16174         * gnus-registry.el (gnus-registry-unfollowed-groups)
16175         (gnus-registry-split-fancy-with-parent): Fix documentation.
16176
16177 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16178
16179         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
16180         from nnweb groups.
16181
16182 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16183
16184         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
16185         Xref urls.  Erase buffer before requesting head.
16186
16187         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
16188
16189 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
16190
16191         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
16192         customizable.
16193
16194 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
16195
16196         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
16197         no signing key is found.
16198         (mml2015-epg-encrypt): Ask user whether to skip or abort if
16199         no encrypting and/or signing key is found.
16200
16201 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
16202
16203         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
16204
16205 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16206
16207         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
16208         headers read from disk with the ones newly found in the current search.
16209         This should no longer cause problems, because the article numbers in
16210         Gmane's `nov.php' output are ignored since the previous change.
16211
16212 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16213
16214         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
16215
16216 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16217
16218         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
16219         replace-regexp-in-string; bind url-version; fbind display-images-p and
16220         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
16221         find-face and set-itimer-function for Emacs; bind itimer-list for
16222         Emacs.
16223
16224         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
16225
16226 2007-01-01  Romain Francoise  <romain@orebokech.com>
16227
16228         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
16229
16230 2006-12-31  Steve Youngs  <steve@sxemacs.org>
16231
16232         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
16233         `define-minor-mode' macro definition expanded properly.
16234         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
16235         exclude it there.
16236
16237         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
16238         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
16239         `fboundp' test.
16240         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
16241         This is OK to autoload in (S)XEmacs now.
16242
16243 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16244
16245         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
16246         keystroke.
16247         (gnus-summary-limit-to-singletons): Fix typo.
16248
16249         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
16250         else fails.
16251
16252 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16253
16254         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
16255         docstring.
16256
16257         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
16258         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
16259         (gnus-summary-insert-dormant-articles): Fix typo in message.
16260
16261 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
16262
16263         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
16264         nil for XEmacs.
16265         (gnus-message-citation-mode): Don't autoload in XEmacs.
16266
16267         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
16268
16269 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
16270
16271         * nnimap.el (nnimap-expunge-search-string):
16272         Mention nnimap-search-uids-not-since-is-evil in docstring.
16273
16274 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
16275
16276         * spam.el: Revert to make-obsolete-variable because
16277         define-obsolete-variable-alias is not supported in Emacs 21.
16278
16279         * spam.el (spam-ifile-path, spam-ifile-database-path)
16280         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
16281         make-obsolete-variable.
16282         (spam-bsfilter-path, spam-bsfilter-program)
16283         (spam-spamassassin-path, spam-spamassassin-program)
16284         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
16285         Don't use "path" inappropriately.
16286         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
16287         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
16288         variable names.
16289
16290 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
16291
16292         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
16293         summary buffer.
16294
16295         * password.el (password-cache-remove): Use clear-string to burn
16296         password, if available.
16297
16298 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
16299
16300         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
16301
16302         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
16303
16304         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
16305         (gnus-message-highlight-citation): Move defcustom here from
16306         gnus-cite.el.
16307         (gnus-message-citation-mode): Autoload.
16308
16309         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
16310         checks to make it compile with XEmacs.
16311         (gnus-message-citation-mode): New minor mode.
16312         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
16313         (gnus-message-highlight-citation): New variables.
16314         (gnus-message-search-citation-line)
16315         (gnus-message-add-citation-keywords)
16316         (gnus-message-remove-citation-keywords)
16317         (turn-on-gnus-message-citation-mode)
16318         (turn-off-gnus-message-citation-mode): New functions.
16319
16320 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
16321
16322         * gnus-cite.el: Enable highlighting of different citation levels in
16323         message-mode.
16324
16325 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
16326
16327         * message.el (message-make-fqdn): Fix comment.
16328         (message-bogus-system-names): Add ".local".
16329
16330         * spam.el (spam-ifile-path, spam-ifile-program)
16331         (spam-ifile-database-path, spam-ifile-database)
16332         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
16333         Don't use "path" inappropriately.
16334         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
16335         strings.
16336         (spam-check-ifile, spam-ifile-register-with-ifile)
16337         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
16338         Use new variable names.
16339
16340         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
16341         (gnus-treat-display-smileys): Simplify using
16342         gnus-image-type-available-p.
16343
16344         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
16345         available.
16346
16347         * gnus-xmas.el (gnus-xmas-image-type-available-p):
16348         Use `display-images-p' if available.
16349
16350 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16351
16352         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
16353         one after turning on the buffer's multibyteness instead of decoding
16354         them directly in the unibyte buffer that causes unexpected conversion
16355         in Emacs 23 (unicode).
16356
16357 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16358
16359         * message.el (message-generate-hashcash): Fix custom type.
16360
16361 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
16362
16363         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
16364
16365 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
16366
16367         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
16368         disconnect icons.  Add help text.
16369
16370 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
16371
16372         * spam.el (spam-extra-header-to-number): CRM114 spam score is
16373         negated to be consistent with the others we handle.
16374
16375 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16376
16377         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
16378         version of gnus-summary-buffer to something, so that we can use two
16379         article buffers at the same time.
16380
16381 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
16382
16383         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
16384         trigger all the extra headers.
16385         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
16386         sorting.
16387
16388 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16389
16390         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
16391         solid groups.
16392
16393 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
16394
16395         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
16396
16397 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
16398
16399         * legacy-gnus-agent.el: Add Copyright notice.
16400
16401 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
16402
16403         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
16404
16405 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16406
16407         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
16408
16409         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
16410         to make it work reliably in CVS Emacs.
16411         (gnus-summary-limit-strange-charsets-predicate)
16412         (gnus-summary-limit-to-predicate): New functions.
16413
16414 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
16415
16416         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
16417         specifying array size.
16418         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
16419         array if it is too small.
16420         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
16421         (gnus-sort-threads-loop): New function.
16422
16423 2006-12-06  Chris Moore  <dooglus@gmail.com>
16424
16425         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
16426         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
16427
16428 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
16429
16430         * mm-url.el (mm-url-predefined-programs): Call curl with correct
16431         options.
16432
16433 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16434
16435         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
16436         DOS-ing the recipient.
16437
16438         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
16439         the headers when creating the mapping to avoid mismappings.
16440         (nnweb-gmane-create-mapping): Always nix out old mapping.
16441
16442 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16443
16444         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
16445         and mm-verify-option to never.
16446
16447 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16448
16449         * message.el (message-signed-or-encrypted-p): New function.
16450         (message-forward-make-body): Use it.
16451
16452         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
16453         Replace encode-coding-string with mm-encode-coding-string.
16454
16455 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16456
16457         * nneething.el (nneething-decode-file-name):
16458         Replace decode-coding-string with mm-decode-coding-string.
16459
16460         * gnus-int.el (gnus-open-server): Say failed server's name.
16461
16462 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16463
16464         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
16465         strings to a single string.  Quote `errors-file-name'.
16466         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
16467         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
16468         Adjust calls.  Use `shell-quote-argument'.
16469
16470 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
16471
16472         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
16473         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
16474
16475         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
16476         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
16477         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
16478         (gnus-group-make-directory-group, gnus-group-transpose-groups):
16479         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
16480         (gnus-subscribe-newsgroup, gnus-1):
16481         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
16482         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
16483         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
16484         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
16485
16486 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16487
16488         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
16489         keystroke.
16490         (gnus-summary-limit-to-bodies): Implement headersp.
16491
16492 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16493
16494         * dns.el (query-dns): Protect against "Process dns deleted" strings.
16495
16496 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16497
16498         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
16499
16500 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16501
16502         * message.el (message-generate-hashcash): Expand range of values to
16503         include `opportunistic'.
16504         (message-send-mail): Use it.
16505
16506 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16507
16508         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
16509         and comment it.
16510
16511         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
16512
16513 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
16514
16515         * gnus-util.el (gnus-extract-address-components): Improve comment.
16516
16517 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16518
16519         * gnus-util.el (gnus-extract-address-components): Work with address in
16520         which the name portion contains @.
16521
16522         * lpath.el: Fbind custom-autoload.
16523
16524 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
16525
16526         * gnus.el (gnus-start): Move custom group up.
16527         (gnus-select-method): Don't autoload, but make it available for
16528         `customize-variable'.
16529         (gnus-getenv-nntpserver): Don't autoload.
16530
16531 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
16532
16533         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
16534
16535 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
16536
16537         * message.el (message-sendmail-extra-arguments): New variable.
16538         (message-send-mail-with-sendmail): Use it.
16539
16540 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16541
16542         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
16543         mm-with-unibyte-current-buffer to make string unibyte.
16544
16545         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
16546         mm-string-as-multibyte.
16547
16548 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
16549
16550         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
16551         Reported by Werner Koch <wk@gnupg.org>.
16552
16553 2006-11-14  Daiki Ueno  <ueno@p360>
16554
16555         * mml2015.el: Autoload epa-select-keys when compiling.
16556
16557 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
16558
16559         * mml2015.el (mml2015-epg-sign): Save the signing keys in
16560         message-options.
16561         (mml2015-epg-encrypt): Save the recipient keys in message-options.
16562
16563 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
16564
16565         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
16566         EasyPG (< 0.0.6).
16567         (mml2015-always-trust): New user option.
16568         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
16569         prompt.
16570
16571 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16572
16573         * nntp.el (nntp-authinfo-force): New variable.
16574         (nntp-send-authinfo): Use it.
16575
16576 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
16577
16578         * message.el (message-strip-subject-encoded-words): Allow _not_ to
16579         decode encoded words.  Improve prompt.  Add comment about forwarding.
16580         (message-replacement-char): Move up.
16581
16582 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
16583
16584         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
16585         instead of gnus-intersection because arguments of gnus-sorted-nunion
16586         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
16587
16588 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
16589
16590         * message.el (message-strip-subject-encoded-words): Reformat prompt.
16591         (message-simplify-subject-functions):
16592         Enable message-strip-subject-encoded-words by default.
16593
16594 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
16595
16596         * message.el (message-strip-subject-encoded-words): New function.
16597         (message-simplify-subject-functions): New variable.
16598         (message-simplify-subject): Use it.  Fix typo in doc string.
16599         Support message-strip-subject-encoded-words.
16600
16601 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
16602
16603         * gnus-diary.el (gnus-diary-delay-format-function):
16604         * nndiary.el (nndiary-reminders):
16605         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
16606
16607 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
16608
16609         * gnus-art.el (article-hide-boring-headers): Fetch date from
16610         gnus-original-article-buffer to avoid problems with localized date
16611         strings.
16612
16613 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16614
16615         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
16616
16617 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
16618
16619         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
16620         New variables.
16621         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
16622         (mm-charset-synonym-alist): Move some entries to
16623         mm-codepage-iso-8859-list.
16624         (mm-charset-synonym-alist, mm-charset-override-alist):
16625         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
16626
16627 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16628
16629         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
16630
16631 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
16632
16633         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
16634         with Emacs 21 and XEmacs.
16635
16636 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
16637
16638         * spam.el (spam-parse-address): New function for better parsing,
16639         catching errors, etc.
16640         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
16641
16642 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
16643
16644         * mm-view.el: Add interactive arg to html2text autoload.
16645
16646 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16647
16648         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
16649
16650 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
16651
16652         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
16653         New variables.
16654         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
16655         (mm-charset-synonym-alist): Move some entries to
16656         mm-codepage-iso-8859-list.
16657
16658         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
16659
16660 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
16661
16662         * message.el (message-citation-line-format)
16663         (message-insert-formated-citation-line): Fix implementation of %E, %N
16664         and %n according to the doc string.
16665
16666 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
16667
16668         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
16669         Use car-safe to avoid bad parses.
16670
16671 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16672
16673         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
16674         names.
16675
16676         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
16677
16678 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16679
16680         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
16681         header.
16682
16683         * message.el (message-draft-headers): Add Date.
16684         (message-headers-to-generate): Fix typo in docstring.
16685
16686         * nndraft.el (nndraft-required-headers): New variable.
16687         (nndraft-generate-headers): Use it.
16688
16689         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
16690
16691 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
16692
16693         * gnus-registry.el (gnus-registry-wash-for-keywords)
16694         (gnus-registry-find-keywords): New functions to allow easy searching of
16695         articles that are in the registry.
16696
16697 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
16698
16699         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
16700         Use ietf-drums-parse-address instead of gnus-extract-address-components.
16701         Reported by Damien Elmes <damien@repose.cx>.
16702
16703 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
16704
16705         * gnus.el (gnus-mime): Remove unused custom group.
16706
16707 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16708
16709         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
16710         "blank line" when searching for end of armor headers.
16711
16712 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16713
16714         * gmm-utils.el (gmm-write-region): Fix variable name.
16715
16716 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
16717
16718         * gmm-utils.el (gmm-write-region): New function based on compatibility
16719         code from `mm-make-temp-file'.
16720
16721         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
16722
16723         * nnmaildir.el (nnmaildir--update-nov)
16724         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
16725         Use `gmm-write-region'.
16726
16727 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
16728
16729         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
16730         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
16731
16732         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
16733
16734         * message.el (message-replacement-char): New variable.
16735         (message-fix-before-sending): Use it.
16736         (message-simplify-subject): New function to remove duplicate code.
16737         (message-reply, message-followup): Use it.
16738
16739         * gnus-sum.el (gnus-summary-make-menu-bar):
16740         Clarify gnus-summary-limit-to-articles.
16741
16742 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
16743
16744         * gnus-util.el (gnus-with-local-quit): New macro.
16745
16746         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
16747
16748 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
16749
16750         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
16751         ignore non-string data.
16752
16753 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
16754
16755         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
16756         non-string data (needs to be done in the registry too).
16757
16758 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16759
16760         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
16761         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
16762         (gnus-registry-split-fancy-with-parent)
16763         (gnus-registry-fetch-simplified-message-subject-fast)
16764         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
16765         Remove text properties on ingress into the registry and when it's saved.
16766         (gnus-registry-clean-empty-function): Fix bug with cleaning the
16767         registry from entries with no groups.
16768
16769 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16770
16771         * gnus-util.el (gnus-string-remove-all-properties): Add utility
16772         function to remove string properties.
16773
16774 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
16775
16776         * gmm-utils.el (gmm): Adjust custom version.
16777
16778         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
16779         Adjust custom version.
16780
16781         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
16782
16783 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
16784
16785         * gnus-art.el (gnus-insert-prev-page-button)
16786         (gnus-insert-next-page-button): Simplify.  Reformat.
16787
16788 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
16789
16790         * gnus-art.el (gnus-insert-prev-page-button)
16791         (gnus-insert-next-page-button): Apply gnus-article-button-face.
16792
16793 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
16794
16795         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
16796
16797 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
16798
16799         * gnus-art.el (gnus-insert-mime-button)
16800         (gnus-insert-mime-security-button):
16801         Apply gnus-article-button-face to MIME and security buttons.
16802
16803 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
16804
16805         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
16806         readable.
16807
16808 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16809
16810         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
16811
16812 2006-09-20  Steve Youngs  <steve@sxemacs.org>
16813
16814         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
16815         `browse-url-of-file' instead of `browse-url'.
16816
16817 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16818
16819         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
16820         regexp.  Articles containing quotation were cut prematurely.
16821
16822 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16823
16824         * message.el (message-cite-original-1): Use nobody by default for the
16825         value of From header.
16826         (message-reply): Ditto.
16827
16828 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
16829
16830         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
16831         to the gnus-info.  This fixes a bug of inline-PGP message verification.
16832         Reported by Michael Piotrowski <mxp@dynalabs.de>.
16833
16834 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
16835
16836         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
16837         mails in the doc string.  Add some URLs in comment.
16838         (pop3-movemail): Warn about pop3-leave-mail-on-server.
16839
16840 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16841
16842         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
16843         backslashes handling and the way to find boundaries of quoted strings.
16844
16845 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
16846
16847         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
16848         mml1991-encrypt-to-self is set and mml1991-signers is not set.
16849         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
16850         mml2015-encrypt-to-self is set and mml2015-signers is not set.
16851
16852 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
16853
16854         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
16855         doc string.
16856         (gnus-button-regexp, gnus-button-last): Remove unused variables.
16857
16858 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16859
16860         * lpath.el: Fbind epg-check-configuration.
16861
16862 2006-09-06  Simon Josefsson  <jas@extundo.com>
16863
16864         * mml2015.el (mml2015-use): Doc fix, mention epg.
16865
16866 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
16867
16868         * mml2015.el (mml2015-use): Default to epg, if available.
16869
16870 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
16871
16872         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
16873         message-sender.
16874         (mml1991-epg-encrypt): Ditto.
16875         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
16876         message-sender.
16877         (mml2015-epg-encrypt): Ditto.
16878
16879 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
16880
16881         * message.el (message-send-mail-with-sendmail): Look for sendmail in
16882         several common directories.
16883
16884 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
16885
16886         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
16887         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
16888
16889 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16890
16891         * gnus-art.el (article-decode-encoded-words): Make it fast.
16892
16893 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16894
16895         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
16896
16897         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
16898         in quoted string into `\'.
16899
16900 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16901
16902         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
16903         Use standard-syntax-table.
16904
16905 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16906
16907         * gnus-art.el (gnus-decode-address-function): New variable.
16908         (article-decode-encoded-words): Use it to decode headers which are
16909         assumed to contain addresses.
16910         (gnus-mime-delete-part): Remove useless `or'.
16911
16912         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
16913         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
16914         (gnus-nov-parse-line): Use it to decode From header.
16915         (gnus-get-newsgroup-headers): Ditto.
16916         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
16917
16918         * mail-parse.el (mail-decode-encoded-address-region): New alias.
16919         (mail-decode-encoded-address-string): New alias.
16920
16921         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
16922         New function.
16923         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
16924         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
16925         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
16926         (rfc2047-decode-string): Ditto.
16927         (rfc2047-decode-address-region): New function.
16928         (rfc2047-decode-address-string): New function.
16929
16930 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
16931
16932         * message.el (message-caesar-buffer-body): Allow rotating headers.
16933
16934         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
16935
16936         * message.el (message-insert-formated-citation-line): Fix %f.
16937         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
16938
16939 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
16940
16941         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
16942         (gnus-bookmark-mouse-available-p): New macro.
16943         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
16944         (gnus-bookmark-bmenu-show-infos): Use it.
16945         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
16946         (gnus-bookmark-bmenu-hide-infos): Ditto.
16947         (gnus-bookmark-remove-properties): New function.
16948         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
16949         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
16950         (gnus-bookmark-write-file): Bind coding-system-for-write.
16951         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
16952         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
16953         group before selecting it.
16954         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
16955         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
16956         quit-window if it is not available; use gnus-mouse-2 and bind it to
16957         gnus-bookmark-bmenu-select-by-mouse.
16958         (gnus-bookmark-show-details): Remove unused variable `details-list'.
16959         (gnus-bookmark-bmenu-select-by-mouse): New function.
16960
16961 2006-08-13  Romain Francoise  <romain@orebokech.com>
16962
16963         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
16964         space.
16965
16966 2006-08-10  Romain Francoise  <romain@orebokech.com>
16967
16968         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
16969         (dns-mode-soa-auto-increment-serial): New user option.
16970         (dns-mode-soa-maybe-increment-serial): New function.
16971         (dns-mode): Add the latter to `write-contents-functions'.
16972
16973 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16974
16975         * compface.el (uncompface): Use binary rather than raw-text-unix.
16976
16977 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16978
16979         * compface.el (uncompface): Make sure the eol conversion doesn't take
16980         place when communicating with the external programs.
16981         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
16982
16983 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
16984
16985         * nnheader.el (nnheader-insert-head): Fix typo in comment.
16986
16987 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
16988
16989         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
16990         Make it more robust by parsing author and date independently.
16991
16992 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16993
16994         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
16995
16996 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
16997
16998         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
16999         first matching secret key.
17000         (mml2015-epg-encrypt): Ditto.
17001
17002         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
17003         first matching secret key.
17004         (mml1991-epg-encrypt): Ditto.
17005
17006         * mml2015.el (mml2015-encrypt-to-self): New user option.
17007         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
17008         mml2015-epg-encrypt-to-self is set.
17009
17010         * mml1991.el (mml1991-encrypt-to-self): New variable.
17011         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
17012         mml1991-epg-encrypt-to-self is set.
17013
17014         * mml2015.el (mml2015-signers): New user option.
17015         (mml2015-epg-sign): Reflect the value of mml2015-signers.
17016         (mml2015-epg-encrypt): Allow to select signing keys.
17017
17018         * mml1991.el (mml1991-signers): New variable.
17019         (mml1991-epg-sign): Reflect the value of mml1991-signers.
17020         (mml1991-epg-encrypt): Allow to select signing keys.
17021
17022 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17023
17024         * nnheader.el (nnheader-insert-head): Make it work even if the file
17025         uses CRLF for the line-break code.
17026
17027 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
17028
17029         * mml2015.el: Require mml-sec instead of password.
17030         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
17031         (mml2015-cache-passphrase): Inherit the default value from
17032         mml-secure-cache-passphrase.
17033         (mml2015-passphrase-cache-expiry): Inherit the default value from
17034         mml-secure-passphrase-cache-expiry.
17035
17036         * mml1991.el: Require mml-sec instead of password.
17037         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
17038         (mml1991-cache-passphrase): Inherit the default value from
17039         mml-secure-cache-passphrase.
17040         (mml1991-passphrase-cache-expiry): Inherit the default value from
17041         mml-secure-passphrase-cache-expiry.
17042
17043         * mml-sec.el: Require password.
17044         (mml-secure-verbose): New user option.
17045         (mml-secure-cache-passphrase): New user option.
17046         (mml-secure-passphrase-cache-expiry): New user option.
17047
17048 2006-07-24  David Smith  <davidsmith@acm.org>  (tiny change)
17049             Andreas Vögele  <andreas@altroot.de>   (tiny change)
17050
17051         * pgg-def.el (pgg-truncate-key-identifier):
17052         Truncate the key ID to 8 letters from the end.
17053
17054 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17055
17056         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
17057         workaround for the url package included with Emacs.
17058
17059         * nnweb.el (nnweb-google-create-mapping): Update regexp.
17060
17061 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17062
17063         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
17064         correctly.  This fixes a bug caused by the 2006-05-12 change.
17065
17066 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
17067
17068         * nnmail.el (nnmail-article-group): If splitting raises an error, give
17069         some information about the error when saying that the `bogus' mail
17070         group will be used.
17071
17072 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
17073
17074         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
17075         string.
17076
17077 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
17078
17079         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
17080
17081 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17082
17083         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
17084
17085 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
17086
17087         * mml1991.el (mml1991-function-alist): Add epg.
17088         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
17089         (mml1991-epg-encrypt): New functions.
17090
17091 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
17092
17093         * mml2015.el (mml2015-verbose): New variable.
17094         (mml2015-cache-passphrase): Ditto.
17095         (mml2015-passphrase-cache-expiry): Ditto.
17096         (mml2015-function-alist): Add epg.
17097         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
17098         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
17099         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
17100         New functions.
17101
17102 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17103
17104         * message.el (message-cite-original-1): Preserve region when removing
17105         quoted text due to X-No-Archive in order to avoid bogus attribution
17106         when citing multiple messages.
17107
17108 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17109
17110         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
17111         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
17112
17113 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
17114
17115         * gnus-diary.el (gnus-user-format-function-d)
17116         (gnus-user-format-function-D): Autoload.
17117
17118         * imap.el (Commentary): Fix typo.
17119
17120         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
17121         2006-04-22 contribution.
17122
17123 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17124
17125         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
17126         It didn't really fix the bogosity I'm seeing with solid web groups.
17127
17128 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17129
17130         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
17131         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
17132         created using server names.  If we use the feature without declaring
17133         it, Gnus does not properly manage server and group state.
17134
17135         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
17136         bound.
17137
17138 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17139
17140         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
17141         looking up the method using GROUP's prefix before inventing a new one.
17142         It is used on killed/unknown groups in various places where returning
17143         an all-new method isn't expected by the caller.
17144
17145         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
17146         and match semantics of gnus-group-real-prefix.
17147
17148 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
17149
17150         * nnmail.el (nnmail-broken-references-mailers): New variable.
17151         (nnmail-ignore-broken-references): New function generalizing
17152         nnmail-fix-eudora-headers.
17153         (nnmail-fix-eudora-headers): Now obsolete.
17154
17155         * gnus-art.el (gnus-button-handle-custom):
17156         Support `customize-apropos*'.
17157
17158 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17159
17160         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
17161
17162         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
17163         articles.
17164
17165 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
17166
17167         * message.el (message-cite-reply-above): New variable.
17168         (message-yank-original): Use it.
17169
17170 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17171
17172         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
17173
17174 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
17175
17176         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
17177         as read.
17178
17179         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
17180
17181 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
17182
17183         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
17184         (gnus-bookmark-default-file): Use gnus-directory.
17185         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
17186         Remove "*" in doc string.
17187         (gnus-bookmark-write-file): Simplify.
17188         (gnus-bookmark-maybe-sort-alist): Use `when'.
17189         (gnus-bookmark-get-bookmark): Fix typo in doc string.
17190         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
17191         Add FIXME about Emacs 21 and XEmacs compatibility.
17192         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
17193         compatibility.
17194         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
17195         compatibility.
17196         (gnus-bookmark-menu-heading): Fix version.
17197
17198 2006-06-19  Bastien Guerry  <bzg@altern.org>
17199
17200         * gnus-bookmark.el: New file.
17201
17202 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17203
17204         * message.el (message-syntax-checks): Doc fix.
17205
17206 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17207
17208         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
17209         unsubscribed groups as if they were killed ones.  It causes duplicate
17210         entries in gnus-newsrc-alist.
17211
17212 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17213
17214         * message.el (message-syntax-checks): Doc fix.
17215         (message-send-mail): Add check for continuation headers.
17216         (message-check-news-header-syntax): Fix regexp used to check for
17217         continuation headers.
17218
17219 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17220
17221         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
17222
17223 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
17224
17225         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
17226
17227 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
17228
17229         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
17230         default-truncate-lines.
17231
17232 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17233
17234         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
17235         to fill the utf-8 entry.
17236
17237         * lpath.el: Fbind unicode-precedence-list.
17238
17239 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17240
17241         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
17242
17243 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
17244
17245         * gnus-agent.el (directory-files-and-attributes): Move all the way
17246         forward (the third and final move).
17247         (gnus-agent-read-agentview): Trap reconstruction errors due to
17248         nonexistent directory.  Handle by returning nil.
17249
17250 2006-05-30  Didier Verna  <didier@xemacs.org>
17251
17252         * message.el (message-dont-reply-to-names): Update the custom type.
17253         * message.el (message-dont-reply-to-names): New defsubst: potentially
17254         convert a list of regexps into a single one.
17255         * message.el (message-get-reply-headers): Use it.
17256         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
17257
17258 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
17259
17260         * gnus-agent.el (directory-files-and-attributes): Move forward.
17261
17262 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
17263
17264         * gnus-ml.el (gnus-mailing-list-subscribe)
17265         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
17266         (gnus-mailing-list-message): Fix doc strings.
17267
17268 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17269
17270         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
17271         of doing it manually.
17272
17273 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
17274
17275         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
17276         comment.
17277
17278 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
17279
17280         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
17281         (gnus-agent-read-agentview): Fix handling of end-of-file error.
17282         (gnus-agent-read-local): All symbols allocated in my-obarray.
17283         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
17284         (gnus-agent-regenerate-group): Check numeric names to see if they are
17285         messages or groups.
17286         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
17287         better way of do this...)
17288
17289         * gnus-cache.el (gnus-agent-total-fetched-for):
17290         Ignore 'dummy.group' (there should be a better way of do this...)
17291
17292 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17293
17294         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
17295         (gnus-saved-headers): Ditto.
17296         (gnus-default-article-saver): Mention functions may have properties.
17297         (gnus-article-save): Override gnus-save-all-headers and
17298         gnus-saved-headers by :headers property which saver function may have.
17299         (gnus-summary-save-in-file): Add :headers property.
17300         (gnus-summary-write-to-file): Ditto.
17301
17302         * gnus-sum.el (gnus-summary-save-article): Bind
17303         gnus-prompt-before-saving to t when saving many articles in a file;
17304         always show all headers.
17305
17306         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
17307
17308 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
17309
17310         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
17311         marks.
17312
17313         * message.el (message-indent-citation): Add optional arguments to allow
17314         using it outside of message buffers.
17315
17316         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
17317         (gnus-article-treat-unfold-headers): Use it.
17318         (gnus-article-truncate-lines): New variable.
17319         (gnus-article-mode): Use it.
17320         (gnus-article-toggle-truncate-lines): New function.
17321
17322         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
17323         Add gnus-article-toggle-truncate-lines.
17324
17325         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
17326         coding system in XEmacs, use binary.
17327
17328 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17329
17330         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
17331         after-load-alist.
17332
17333         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
17334         this function should save decoded articles.
17335         (gnus-summary-write-to-file): Use property to specify this function
17336         should save decoded articles and specify gnus-summary-save-in-file
17337         should be used to save articles other than the first one when saving
17338         many articles.
17339         (gnus-summary-save-body-in-file): Use property to specify this
17340         function should save decoded articles.
17341         (gnus-summary-write-body-to-file): Use property to specify this
17342         function should save decoded articles and specify
17343         gnus-summary-save-body-in-file should be used to save articles other
17344         than the first one when saving many articles.
17345
17346         * gnus-sum.el (gnus-summary-save-article): Simplify.
17347
17348 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17349
17350         * gnus-art.el (gnus-default-article-saver):
17351         Add gnus-summary-write-body-to-file.
17352         (gnus-article-save-coding-system): Don't use coding system object
17353         in XEmacs.
17354         (gnus-read-save-file-name): Add optional `dir-var' argument which
17355         specifies directory in which files are saved; work even if optional
17356         `variable' argument is not specified.
17357         (gnus-summary-write-to-file): Read file name.
17358         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
17359         (gnus-summary-write-body-to-file): New function.
17360
17361         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
17362         (gnus-summary-local-variables): Add it.
17363         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
17364         (gnus-summary-save-article): Remove optional `decode' argument;
17365         determine whether to decode articles by the value of
17366         gnus-default-article-saver; when saving many files using
17367         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
17368         it first and use gnus-summary-save-in-file or
17369         gnus-summary-save-body-in-file thereafter unless
17370         gnus-prompt-before-saving is always; move point to article which
17371         will be saved.
17372         (gnus-summary-save-article-file): Revert.
17373         (gnus-summary-write-article-file): Revert.
17374         (gnus-summary-save-article-body-file): Revert.
17375         (gnus-summary-write-article-body-file): New function.
17376
17377 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17378
17379         * gnus-art.el (gnus-default-article-saver): Doc fix.
17380         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
17381         from gnus-summary-save-article-coding-system, and default to a
17382         certain coding system.
17383         (gnus-output-to-file): Add coding cookie and encode text according
17384         to gnus-article-save-coding-system; don't use mm-append-to-file.
17385
17386         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
17387         gnus-art.el and rename to gnus-article-save-coding-system.
17388         (gnus-summary-save-article): Require gnus-art; don't show all
17389         headers if it decodes articles; don't add coding cookie here;
17390         don't bind mm-text-coding-system-for-write.
17391         (gnus-summary-save-article-file): Save decoded articles.
17392         (gnus-summary-write-article-file): When saving many files, use
17393         gnus-summary-write-to-file first and gnus-summary-save-in-file
17394         thereafter unless gnus-prompt-before-saving is always.
17395         (gnus-summary-save-article-body-file): Save decoded articles.
17396
17397         * lpath.el: Fbind select-safe-coding-system for XEmacs.
17398
17399 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17400
17401         * nnrss.el (nnrss-check-group): Bind hash-index.
17402
17403 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
17404
17405         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
17406         its hash index.  Store this hash in `nnrss-group-data'.
17407         (nnrss-read-group-data): Update accordingly.
17408
17409 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17410
17411         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
17412         entry.
17413
17414         * gnus-sum.el (gnus-summary-make-menu-bar):
17415         Add gnus-article-browse-html-article.
17416
17417 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
17418
17419         * gnus-sum.el (gnus-summary-mime-map):
17420         Add gnus-article-browse-html-article.
17421
17422         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
17423
17424 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
17425
17426         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
17427         suitable coding systems in customize.
17428
17429 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
17430
17431         * mail-source.el (mail-sources): Fix custom type.
17432
17433 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
17434
17435         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
17436         (gnus-summary-expire-articles-now): Shorten prompt.
17437
17438         * gmm-utils.el (wid-edit): Require.
17439         (defun-gmm): Rename from `gmm-defun-compat'.
17440         (gmm-image-search-load-path): Use it.
17441         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
17442
17443 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17444
17445         * gnus-sum.el (gnus-summary-save-article-coding-system):
17446         New variable.
17447         (gnus-summary-save-article): Add optional `decode' argument.
17448         If it is set and gnus-summary-save-article-coding-system is non-nil,
17449         save decoded article.
17450         (gnus-summary-write-article-file): Save decoded article if
17451         gnus-summary-save-article-coding-system is non-nil.
17452
17453         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
17454         type.
17455
17456 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17457
17458         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
17459
17460 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17461
17462         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
17463         first to test gnus-single-article-buffer which may be buffer-local.
17464
17465         * gnus-sum.el (gnus-summary-setup-buffer):
17466         Make gnus-single-article-buffer buffer-local and nil in ephemeral
17467         group; make gnus-article-buffer, gnus-article-current, and
17468         gnus-original-article-buffer always buffer-local.
17469         (gnus-summary-exit): Kill article buffer belonging to ephemeral
17470         group.
17471         (gnus-handle-ephemeral-exit): Don't move to next summary line.
17472
17473 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
17474
17475         * nnml.el (nnml-request-compact-group): Compressed files might not
17476         have .gz extension.
17477
17478 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
17479
17480         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
17481         (mm-copy-to-buffer): Use with-current-buffer.
17482         (mm-display-part): Simplify.
17483         (mm-inlinable-p): Add optional arg `type'.
17484
17485 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
17486
17487         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
17488         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
17489         Try harder to show the attachment internally or externally using
17490         gnus-mime-view-part-as-type.
17491
17492 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
17493
17494         * message.el (message-from-style, message-signature-separator)
17495         (message-user-organization-file, message-send-mail-function)
17496         (message-citation-line-function, message-yank-prefix)
17497         (message-indent-citation-function, message-signature)
17498         (message-signature-file, message-signature-insert-empty-line):
17499         Remove autoloads.
17500
17501         * gnus-art.el (gnus-buttonized-mime-types):
17502         Remove "multipart/signed".  Revert 2006-04-26 change.
17503
17504 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17505
17506         * gnus.el (gnus-version-number): Bump version.
17507
17508 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
17509
17510         * gnus.el: No Gnus v0.5 is released.
17511
17512 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17513
17514         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
17515         fetching articles by message-id.
17516
17517 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17518
17519         * message.el (hashcash): Require hashcash as normal.
17520
17521         * ecomplete.el (ecomplete-highlight-match-line):
17522         Use point-at-eol.
17523         (ecomplete-highlight-match-line): Use `highlight', because that
17524         face exists in both Emacs and XEmacs.
17525
17526         * message.el (message-display-abbrev): Use point-at-bol.
17527
17528         * mail-source.el: Don't require timer/timer-funcs.
17529
17530         * gnus-async.el: Ditto.
17531
17532         * password.el: Ditto.
17533
17534         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
17535
17536         * mm-url.el: Ditto.
17537
17538         * gnus-xmas.el: Don't require timer-funcs.
17539
17540         * mm-util.el: Require timer/timer-funcs.
17541
17542 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17543
17544         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
17545         Close.
17546
17547 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17548
17549         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
17550         unibyte after clear-decrypt function runs.
17551
17552         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
17553         returns as a unibyte string.
17554
17555 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17556
17557         * lpath.el: Revert.
17558
17559         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
17560         (pgg-gpg-process-sentinel): Revert.
17561
17562         * pgg-pgp.el (pgg-pgp-process-region): Revert.
17563         (pgg-pgp-lookup-key): Revert.
17564
17565         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
17566         (pgg-pgp5-lookup-key): Revert.
17567
17568         * pgg.el (pgg-fetch-key): Revert.
17569
17570 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17571
17572         * lpath.el: Fbind string-as-multibyte for XEmacs.
17573
17574         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
17575         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
17576         (mml1991-pgg-encrypt): Ditto.
17577
17578         * pgg-gpg.el (pgg-string-to-multibyte): New function.
17579         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
17580         a multibyte buffer.
17581
17582         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
17583         (pgg-pgp-lookup-key): Ditto.
17584
17585         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
17586         (pgg-pgp5-lookup-key): Ditto.
17587
17588         * pgg.el (pgg-fetch-key): Ditto.
17589
17590 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
17591
17592         * message.el (message-user-organization-file): Check several
17593         locations of the organization file.
17594
17595         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
17596         Add gnus-article-view-part-as-type.
17597
17598         * gnus-art.el (gnus-article-view-part-as-type): New function.
17599
17600         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
17601         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
17602
17603         * mml.el: Simplify autoload.
17604         (mml-mode): defvar dnd-protocol-alist instead of using
17605         symbol-value.
17606         (mml-default-directory): New variable.
17607         (mml-minibuffer-read-file): Use it.
17608         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
17609
17610         * message.el (message-citation-line-format): New variable.
17611         (message-insert-formated-citation-line): New function.
17612         (message-citation-line-function):
17613         Add `message-insert-formated-citation-line' to custom type.
17614
17615         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
17616         to doc string.
17617
17618         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
17619         depending on mm-verify-option.
17620
17621 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17622
17623         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
17624         binding pgg-* variables; reimplement the section which prevents
17625         MIME header from being signed.
17626         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
17627         pgg-text-mode; remove a blank line at the top of body.
17628
17629         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
17630         lines at the top of body; use gnus-newsgroup-charset if there's no
17631         Charset header.
17632
17633 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17634
17635         * message.el (message-self-insert-commands): Doc fix.
17636
17637         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
17638         (mm-uu-pgp-encrypted-test): Ditto.
17639         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
17640         between header and body; return application/pgp-encrypted handle
17641         if decryption failed; decode decrypted body by charset.
17642
17643         * mm-decode.el (mm-automatic-display): Don't make application/pgp
17644         element match to application/pgp-*.
17645
17646 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17647
17648         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
17649         HTML.
17650
17651 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17652
17653         * mail-source.el (mail-source-call-script): Message the error
17654         string.
17655
17656 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17657
17658         * gnus-util.el (gnus-byte-compile): Use it.
17659
17660 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
17661
17662         * gnus-util.el (kill-empty-logs): New function.
17663
17664 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17665
17666         * message.el (message-mail-alias-type): Doc fix.
17667         (message-mail-alias-type-p): New function.
17668         (message-send): Use it.
17669         (message-mode): Ditto.
17670         (message-strip-forbidden-properties): Ditto.
17671
17672         * ecomplete.el (ecomplete-database-file-coding-system):
17673         New variable.
17674         (ecomplete-save): Use it.
17675         (ecomplete-setup): Use it.
17676
17677 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17678
17679         * message.el (message-self-insert-commands): New variable.
17680         (message-strip-forbidden-properties): Use it.
17681
17682 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17683
17684         * message.el (message-put-addresses-in-ecomplete): Use a regexp
17685         that doesn't make XEmacs choke.
17686
17687 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
17688
17689         * gnus-util.el (gnus-replace-in-string):
17690         Prefer replace-regexp-in-string over of replace-in-string.
17691
17692 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17693
17694         * gnus-util.el (gnus-select-frame-set-input-focus):
17695         Use select-frame-set-input-focus if it is available in XEmacs; use
17696         definition defined in Emacs 22 for old Emacsen.
17697
17698         * dgnushack.el: Autoload unmorse-region for XEmacs.
17699
17700         * lpath.el: Bind cursor-in-non-selected-windows and
17701         select-frame-set-input-focus for XEmacs.
17702
17703 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17704
17705         * mm-view.el (mm-inline-text): Use equal instead of equalp.
17706
17707 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
17708
17709         * gnus-registry.el (gnus-registry-cache-save): Remove text
17710         properties when saving via the temp buffer.
17711
17712 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
17713
17714         * message.el (message-generate-hashcash): Honor custom type.
17715
17716 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17717
17718         * message.el (message-generate-hashcash): Default to non-nil when
17719         hashcash is found.
17720
17721         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
17722         (gnus-refer-thread-limit): Increase default to 500.
17723
17724         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
17725
17726         * flow-fill.el (fill-flowed): Allow delete-space.
17727
17728 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
17729
17730         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
17731         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
17732         Remove autoloads.
17733
17734 2006-04-18  Simon Josefsson  <jas@extundo.com>
17735
17736         * message.el (message-generate-hashcash): Default to.
17737
17738 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
17739
17740         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
17741         concatenating segments rather than before concatenating them.
17742
17743 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
17744
17745         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
17746
17747 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17748
17749         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
17750
17751         * message.el (message-forward-make-body-plain):
17752         Allow message-forward-ignored-headers to be a list.
17753         (message-remove-ignored-headers): Factor out into function.
17754         (message-forward-make-body-mml): Use it.
17755
17756         * imap.el (imap-quote-specials): New function.
17757         (imap-login-auth): Quote specials.
17758
17759         * rfc2231.el (rfc2231-parse-string): Remove dead code.
17760         (rfc2231-parse-string): Allow concatanation of parameters that
17761         aren't contiguous.  The test case is
17762           (mail-header-parse-content-type "message/external-body;
17763             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
17764             access-type=LOCAL-FILE;
17765             name*1*=plugh%2fhello-sailor%2fbing.pdf")
17766
17767 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17768
17769         * nntp.el (nntp-accept-process-output): Return the value of
17770         `nnheader-accept-process-output'.
17771
17772 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17773
17774         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
17775         (gnus-button-alist): Recognize more diff formats.
17776         (gnus-button-patch): Strip directory.
17777
17778 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
17779
17780         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
17781         Emacs 22 when setting focus.
17782
17783 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17784
17785         * gnus-art.el (gnus-article-treat-types): Do treatment of
17786         text/x-verbatim parts.
17787         (gnus-button-patch): New command.
17788
17789         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
17790         addresses that contain invalid characters.
17791
17792 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17793
17794         * message.el (message-put-addresses-in-ecomplete):
17795         Use gnus-replace-in-string.
17796         (message-is-yours-p): Use the more correct
17797         mail-header-parse-address instead of
17798         mail-extract-address-components.
17799         (message-put-addresses-in-ecomplete): Fix typo.
17800
17801         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
17802         keystroke.
17803
17804         * gnus-art.el (gnus-treatment-function-alist): Change order of
17805         newsgroups/generic header folding to avoid double-folding.
17806
17807         * message.el (message-hidden-headers): Add X-Draft-From.
17808
17809         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
17810         New command.
17811         (gnus-summary-repeat-search-article-backward): New command.
17812
17813         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
17814         groups in the parent topic.
17815
17816 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
17817
17818         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
17819         (spam-extra-header-to-number): Return the CRM114 number as a
17820         number instead of a string.
17821
17822 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17823
17824         * gnus-art.el (gnus-face-properties-alist): Move here from
17825         gnus-fun.
17826
17827         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
17828
17829 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17830
17831         * message.el (message-strip-forbidden-properties): Only display on
17832         self-insert-command.
17833
17834         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
17835         reindent.
17836         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
17837
17838 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
17839
17840         * smiley.el (smiley-style): Fix typo.
17841
17842 2006-03-23  Kenichi Handa  <handa@m17n.org>
17843
17844         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
17845         instead of set-buffer-multibyte.
17846
17847 2006-03-23  Kenichi Handa  <handa@m17n.org>
17848
17849         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
17850         buffer and then decode the buffer text if necessary.
17851         (rfc2231-encode-string): Be sure to work on multibyte buffer at
17852         first, and after mm-encode-body, change the buffer to unibyte.
17853
17854 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17855
17856         * hashcash.el (hashcash-insert-payment-async-2):
17857         Use message-goto-eoh instead of doing it manually.
17858         (mail-add-payment): Use message-narrow-to-header instead of trying
17859         to do the same itself.
17860
17861         * message.el (message-hidden-headers): Add Face.
17862
17863         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
17864         reparenting code.
17865         (gnus-summary-reparent-children): Refactored out code.
17866         (gnus-summary-thread-map): New keystroke.
17867         (gnus-summary-reparent-children): Make into command.
17868
17869         * smiley.el (smiley-style): Default to `medium' if using a large
17870         font.
17871
17872         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
17873         does it itself.
17874
17875         * message.el (message-point-in-header-p): Simplify definition.
17876
17877 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17878
17879         * nnagent.el (nnagent-request-set-mark): Silence log file
17880         writing.
17881         (nnagent-request-set-mark): Use write-region instead of
17882         append-to-file.
17883
17884         * gnus-sum.el (gnus-read-header): Fudge article number if using a
17885         strange select method.
17886
17887         * ecomplete.el (ecomplete-display-matches): Get highlightling
17888         right.
17889         (ecomplete-display-matches): Use literals.
17890         (ecomplete-display-matches): Disable message logging.
17891
17892         * message.el (message-display-abbrev): Small optimization.
17893
17894         * ecomplete.el (ecomplete-display-matches): Allow automatic
17895         display.
17896
17897         * message.el (message-strip-forbidden-properties):
17898         Display abbrevs.
17899         (message-display-abbrev): Get automatic display right.
17900
17901         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
17902         keystrokes.
17903
17904 2006-04-13  Romain Francoise  <romain@orebokech.com>
17905
17906         TODO: Backport to v5-10!
17907
17908         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
17909         Move here (and rename) from gnus-registry.el.
17910
17911         * gnus-registry.el: Require gnus-util.
17912         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
17913
17914 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17915
17916         * gnus-group.el (gnus-group-catchup-current):
17917         Change if-then-else-if-then-else into cond.
17918         (gnus-group-catchup): Indent.
17919         (group-name-at-point): New function.
17920         (gnus-fetch-group): Provide default from thing at point.
17921
17922 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17923
17924         * message.el (message-display-abbrev): Fix regexp.
17925
17926         * ecomplete.el (ecomplete-highlight-match-line):
17927         Reimplement choosing.
17928         (ecomplete-highlight-match-line): Fix up code rewrite, remove
17929         dead variables.
17930
17931         * message.el (message-newline-and-indent): Remove debugging.
17932         (message-display-abbrev): Use new implementation.
17933
17934 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
17935
17936         * gnus-art.el (gnus-article-mode):
17937         Set cursor-in-non-selected-windows to nil.
17938
17939         * smiley.el: Revert previous change.
17940         (smiley-data-directory): defvar it before using it in the
17941         defcustom of `smiley-style'.
17942
17943 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17944
17945         * message.el (message-newline-and-indent): New function.
17946
17947         * ecomplete.el: Implement more bits.
17948
17949         * message.el (message-put-addresses-in-ecomplete): Clean up the
17950         string.
17951
17952         * ecomplete.el (ecomplete-add-item): Chop off decimals.
17953
17954         * gnus-sum.el (gnus-summary-save-parts):
17955         Bind gnus-summary-save-parts-counter and use it to make unique file
17956         names.
17957
17958         * gnus-art.el (gnus-ignored-headers): Add some more headers.
17959
17960         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
17961         parameter to say whether to actually parse the individual
17962         addresses.
17963
17964         * message.el (message-put-addresses-in-ecomplete): New function.
17965         (ecomplete): Require.
17966         (message-mail-alias-type): Add ecomplete as an option.
17967
17968 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
17969
17970         * flow-fill.el (fill-flowed): Remove trailing space from blank
17971         quoted lines.
17972
17973 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17974
17975         * smiley.el (smiley-style): Move definition later to avoid a
17976         compilation warning.
17977
17978 2006-04-12  Kenichi Handa  <handa@m17n.org>
17979
17980         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
17981         buffer and then decode the buffer text if necessary.
17982         (rfc2231-encode-string): Be sure to work on multibyte buffer at
17983         first, and after mm-encode-body, change the buffer to unibyte.
17984         Use mm-disable-multibyte instead of set-buffer-multibyte.
17985
17986 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17987
17988         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
17989         Content-Type header instead of Content-Disposition header.
17990         (gnus-mime-inline-part): Ditto.
17991         (gnus-mime-view-part-as-charset): Ignore charset that the part
17992         specifies.
17993
17994         * mm-decode.el (mm-display-part): Work with external parts and
17995         usual parts similarly.
17996
17997         * mm-extern.el (mm-inline-external-body): Use mm-display-part
17998         instead of gnus-display-mime.
17999
18000         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
18001         instead of with-temp-buffer.
18002
18003         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
18004         tag to summarized topics part in order to encode non-ASCII text.
18005
18006 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
18007
18008         * smiley.el (smiley-style): New variable.
18009         (smiley-directory): New function.
18010         (smiley-data-directory): Derive from `smiley-style' using
18011         `smiley-directory'.
18012         (smiley-regexp-alist): Add new entries.
18013
18014         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
18015         (gnus-article-browse-delete-temp): Add :version.
18016
18017 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
18018
18019         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
18020         the sieve region.
18021
18022 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18023
18024         * gnus.el (gnus-version-number): Bump version.
18025
18026 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
18027
18028         * gnus.el: No Gnus v0.4 is released.
18029
18030 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18031
18032         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
18033         layout.
18034
18035         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
18036         unknown charset.
18037
18038         * message.el (message-header-synonyms): Add Original-To to the
18039         default.
18040
18041         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
18042         optional parameter.
18043
18044 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
18045
18046         * gnus-fun.el (gnus): Require it for gnus-directory.
18047
18048 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18049
18050         * gnus-fun.el (gnus-face-properties-alist): Add :version.
18051
18052 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
18053
18054         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
18055
18056 2006-04-05  Simon Josefsson  <jas@extundo.com>
18057
18058         * password.el (password-reset): New function.
18059
18060 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
18061
18062         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
18063         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
18064
18065 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18066
18067         * nnweb.el (nnweb-google-create-mapping): Update regexp.
18068         Some whitespace was matched into the url, which broke browsing hits
18069         > 100 when mm-url-use-external was nil.
18070
18071 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
18072
18073         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
18074         Check gnus-extra-headers for 'Newsgroups.
18075
18076         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
18077         bound.
18078
18079 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
18080
18081         * pgg-gpg.el: Clean up process buffers every time gpg processes
18082         complete.
18083
18084 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
18085
18086         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
18087         doc string.
18088
18089 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
18090
18091         * pgg-gpg.el (pgg-gpg-process-filter)
18092         (pgg-gpg-wait-for-completion): Check if buffer is alive.
18093
18094         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
18095         lines, temporary fix.
18096
18097 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
18098
18099         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
18100
18101 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
18102
18103         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
18104         default-enable-multibyte-characters.  This reverts the change from
18105         revision 6.17 which is no longer necessary because the passphrase
18106         is sent separately now.  GnuPG messages are unreadable under
18107         multibyte locales with default-enable-multibyte-characters set to
18108         nil.
18109
18110 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
18111
18112         * message.el (message-tool-bar-gnome): Move "spell".
18113
18114 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
18115
18116         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
18117         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
18118         instead.
18119
18120 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
18121
18122         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
18123         Improve newsgroups handling for NNTP overviews which don't include
18124         Newsgroups.
18125
18126 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18127
18128         * message.el (message-resend): Bind message-generate-hashcash to nil.
18129
18130 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18131
18132         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
18133         when searching for already-paid recipients.
18134
18135 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
18136
18137         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
18138         passphrases when it is not needed.
18139         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
18140         passphrase stuff from gpg, should only be necessary when you use
18141         gpg with a smartcard.
18142
18143 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18144
18145         * mml.el (mml-insert-mime): Ignore cached contents of
18146         message/external-body part.
18147
18148         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
18149         (mm-insert-part): Ditto.
18150
18151 2006-03-23  Simon Josefsson  <jas@extundo.com>
18152
18153         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
18154         Reiner.
18155         (pgg-gpg-use-agent-p): Use it again.
18156
18157 2006-03-23  Simon Josefsson  <jas@extundo.com>
18158
18159         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
18160         older emacsen.
18161         (pgg-gpg-use-agent-p): Don't use it.
18162
18163 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
18164
18165         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
18166         if we can.
18167
18168 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
18169
18170         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
18171         (pgg-gpg-update-agent): New function.
18172         (pgg-gpg-use-agent-p): New function.
18173         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
18174         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
18175         (pgg-gpg-sign-region): Use it.
18176
18177 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18178
18179         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
18180         Reported by Ralf Wachinger <rwachinger@gmx.de>.
18181
18182 2006-03-21  Simon Josefsson  <jas@extundo.com>
18183
18184         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
18185         <wilde@sha-bang.de>.
18186         (pgg-gpg-use-agent): New variable.
18187         (pgg-gpg-process-region): Use it.
18188         (pgg-gpg-encrypt-region): Likewise.
18189         (pgg-gpg-encrypt-symmetric-region): Likewise.
18190         (pgg-gpg-decrypt-region): Likewise.
18191         (pgg-gpg-sign-region): Likewise.
18192         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
18193
18194 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
18195
18196         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
18197
18198         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
18199         Add comment on version.
18200
18201 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
18202
18203         * smiley.el: Add missing test smiley.
18204
18205 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18206
18207         * mm-decode.el (mm-with-part): New macro.
18208         (mm-get-part): Use it; work with message/external-body as well.
18209         (mm-save-part): Treat name and filename equally.
18210
18211         * mm-extern.el (mm-extern-cache-contents): New function.
18212         (mm-inline-external-body): Use it; force the part to be displayed;
18213         move undisplayer added to the cached handle to the parent.
18214
18215         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
18216         (gnus-mime-view-part-as-type): Work with message/external-body.
18217
18218         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
18219
18220 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
18221
18222         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
18223         images in image-load-path.  [Sync with image.el, revision 1.60, in
18224         Emacs.]
18225
18226 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
18227
18228         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
18229         path rather than symbol.  Always return list of directories.
18230         Guarantee that image directory comes first.  [Sync with image.el,
18231         revision 1.59, in Emacs.]
18232
18233         * message.el (message-make-tool-bar): Adjust to new API of
18234         `gmm-image-load-path-for-library'.
18235
18236         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18237
18238         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
18239
18240 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18241
18242         * gnus-art.el (gnus-article-only-boring-p):
18243         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
18244         intangible text.
18245         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
18246
18247 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
18248
18249         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
18250         Use `defun' instead of `gmm-defun-compat'.
18251
18252 2006-03-14  Simon Josefsson  <jas@extundo.com>
18253
18254         * message.el (message-unique-id): Don't use message-number-base36
18255         if (user-uid) is a float.
18256         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
18257
18258 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18259
18260         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
18261
18262         * gnus-art.el (gnus-mime-display-single): Make sure there is an
18263         empty line between a part and a message part.
18264
18265 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
18266
18267         * smiley.el: Add more test smileys.
18268         (smiley-data-directory, smiley-regexp-alist)
18269         (gnus-smiley-file-types): Fix doc strings.
18270         (smiley-update-cache): Clear smiley-cached-regexp-alist before
18271         adding new elements.
18272         (smiley-mouse-map): Unused code.  Make it a comment.
18273
18274 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18275
18276         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
18277         scan latest NoCeM messages instead of old ones.
18278         (gnus-nocem-check-article): Fix regexps so as to match to PGP
18279         delimiters that are recently used.
18280         (gnus-nocem-load-cache): Add autoload cookie.
18281
18282         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
18283
18284         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
18285         level which is larger than gnus-use-nocem is specified.
18286
18287         * gnus-group.el (gnus-group-get-new-news): Ditto.
18288
18289 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
18290
18291         * gnus-util.el (gnus-tool-bar-update): New function.
18292
18293         * gnus-group.el (gnus-group-update-tool-bar): New variable.
18294         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
18295
18296         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
18297
18298         * gnus-group.el (gnus-group-redraw-when-idle)
18299         (gnus-group-redraw-check): Remove.
18300         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
18301
18302 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18303
18304         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
18305         if optional last element is specified in splits (FIELD VALUE...).
18306
18307 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
18308
18309         * message.el (message-make-tool-bar): Rename gmm-image-load-path
18310         to gmm-image-load-path-for-library.  Call with no-error argument.
18311         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
18312
18313         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18314
18315         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
18316
18317         * gmm-utils.el (gmm-image-load-path): Remove alias.
18318
18319 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
18320
18321         * gmm-utils.el (gmm-image-load-path): Add alias.
18322
18323         * nnml.el (nnml-generate-nov-databases-directory): Rename from
18324         nnml-generate-nov-databases-1.
18325         (nnml-generate-nov-databases): Use it.
18326         (nnml-generate-nov-databases-directory): Document no-active
18327         argument.
18328
18329         * gmm-utils.el (gmm-image-load-path-for-library): Return single
18330         directory if path is t.  Add no-error.
18331
18332         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
18333         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
18334
18335         * gnus-art.el (gnus-article-browse-delete-temp-files):
18336         Simplify resetting gnus-article-browse-html-temp-list.
18337
18338         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
18339         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
18340         Add example to docstring.  Rename local variables.  Move error
18341         checks to default case in cond and simplify.
18342
18343 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18344
18345         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
18346         handle is multipart when calling it recursively.
18347         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
18348
18349 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
18350
18351         * nnimap.el (nnimap-request-update-info-internal): Optimize.
18352         Don't `gnus-uncompress-range' to avoid excessive memory usage.
18353
18354 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18355
18356         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
18357         is loaded.
18358
18359         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
18360         loaded.
18361
18362 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
18363
18364         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
18365         to "Emacs 23 (unicode)" in doc string.
18366
18367         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
18368         "Emacs 23 (unicode)" in comment.
18369
18370 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18371
18372         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
18373
18374         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
18375         characters 160 through 255 in Emacs 23.
18376
18377 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
18378
18379         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
18380         gnus-article-browse-html-temp.
18381         (gnus-article-browse-delete-temp): Make it customizable.
18382         Add `file'.  Adjust doc string.
18383         (gnus-article-browse-delete-temp-files): Add argument.
18384         Allow query for each file.  Adjust doc string.
18385         (gnus-article-browse-html-parts):
18386         Add `gnus-article-browse-delete-temp-files' to
18387         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
18388
18389 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
18390
18391         * gnus-art.el (gnus-article-browse-html-temp)
18392         (gnus-article-browse-delete-temp): New variables.
18393         (gnus-article-browse-delete-temp-files): New function.
18394         (gnus-article-browse-html-parts): Use it.
18395
18396 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
18397
18398         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
18399
18400         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
18401         string.
18402
18403         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
18404         gnus-summary-insert-new-articles when unplugged.
18405         Remove gnus-summary-search-article-forward.
18406
18407         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
18408         display-visual-class instead of display-color-cells.
18409
18410 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
18411
18412         * dgnushack.el: Autoload customize-group for XEmacs.
18413
18414         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
18415         message/* containing non-ASCII text properly.
18416
18417 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
18418
18419         * message.el: Require gmm-utils, remove autoloads.
18420         (message-tool-bar): Set default based on
18421         gmm-tool-bar-style.
18422         (message-tool-bar-gnome): Add gmm-customize-mode.
18423
18424         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
18425         gmm-tool-bar-style.
18426         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
18427
18428         * gnus-group.el (gnus-group-tool-bar): Set default based on
18429         gmm-tool-bar-style.
18430         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
18431
18432         * gmm-utils.el (gmm-image-directory): Rename variable from
18433         gmm-image-load-path.
18434         (gmm-image-load-path): Use gmm-image-directory.
18435         (gmm-customize-mode): New function.
18436         (gmm-tool-bar-style): New variable.
18437
18438         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
18439         gnus-group-redraw-line-number.
18440         (gnus-group-redraw-check): Simplify.
18441         (gnus-group-tool-bar-update): Remove redraw check.
18442         (gnus-group-make-tool-bar): Add redraw check.
18443
18444 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
18445
18446         * gnus-art.el (gnus-button): Add missing parentheses.
18447
18448 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18449
18450         * lpath.el: Fbind line-number-at-pos.
18451
18452 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18453
18454         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
18455
18456 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
18457
18458         * gnus-art.el (gnus-button): New face.
18459         (gnus-article-button-face): Use it.
18460
18461         * gnus-sum.el (gnus-summary-tool-bar-gnome):
18462         Add gnus-summary-next-page.  Re-order.
18463
18464         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
18465         next-node are now included.
18466         (gnus-group-redraw-line-number): New internal variable.
18467         (gnus-group-redraw-check): Helper function for updating the tool
18468         bar.
18469         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
18470
18471         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
18472
18473         * spam.el (spam-spamassassin-score-regexp): New internal variable.
18474         (spam-extra-header-to-number, spam-check-spamassassin-headers):
18475         Use it to match format of Spamassassin 3.0 and later.
18476         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
18477         (spam-check-bogofilter)
18478         (spam-bogofilter-register-with-bogofilter): Fix args of
18479         `gnus-error' calls.
18480
18481 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
18482
18483         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
18484         unnecessary interaction when sending queued mails.
18485         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
18486
18487 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
18488
18489         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
18490         first or last are nil.
18491
18492 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18493
18494         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
18495
18496 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18497
18498         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
18499
18500 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18501
18502         * dns.el (query-dns): Protect more against buggy tcp output.
18503
18504 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
18505
18506         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
18507         nov.php.
18508
18509 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18510
18511         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
18512         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
18513         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
18514         output on the server side.
18515         (nnweb-google-create-mapping): Update regexps and add some
18516         progress indication.
18517
18518 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
18519
18520         * gnus-group.el (gnus-group-tool-bar-gnome):
18521         Fix gnus-agent-toggle-plugged.  Re-order icons.
18522         (gnus-group-tool-bar-gnome):
18523         Add gnus-group-{prev,next}-unread-group.
18524         (gnus-group-tool-bar-gnome): Re-order icons.
18525
18526         * gnus-sum.el (gnus-summary-tool-bar-gnome):
18527         Move gnus-summary-insert-new-articles.
18528
18529         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
18530         Fix comments.
18531
18532         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
18533         also available in Emacs 21.3.
18534
18535         * message.el (message-fix-before-sending): Change "Emacs 22" to
18536         "Emacs 23 (unicode)" in comment.
18537
18538         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
18539         "Emacs 23 (unicode)" in comment.
18540
18541         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
18542         comment.
18543         (mm-coding-system-p): Add comment about no-MULE XEmacs.
18544
18545         * mm-view.el (mm-fill-flowed): Add :version.
18546
18547 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18548
18549         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
18550         and load-path.
18551
18552 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
18553
18554         * message.el: Autoload gmm-image-load-path.
18555         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
18556         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
18557         consitency.
18558
18559         * gmm-utils.el (gmm-image-load-path): Also search in
18560         "../etc/images".  Don't set gmm-image-load-path if we don't find
18561         the image.
18562
18563 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18564
18565         * gmm-utils.el (gmm-image-load-path): Don't make
18566         `gmm-image-load-path' include subdirectories which the second arg
18567         `image' might specify.
18568
18569         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
18570         subdirectory to icon file names.
18571
18572         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
18573
18574 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
18575
18576         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
18577         gmm-image-load-path calls.
18578
18579         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18580
18581         * message.el (message-make-tool-bar): Ditto.
18582
18583         * mml.el (mml-preview): Add comment concerning tool bar icons.
18584
18585         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
18586         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
18587
18588         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
18589         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
18590
18591         * message.el (message-tool-bar-gnome): Use new icon names.
18592         (message-make-tool-bar): Use `gmm-image-load-path'.
18593
18594         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
18595         New functions from MH-E.
18596         (gmm-image-load-path): New variable from MH-E.
18597         (gmm-image-load-path): New function from MH-E.  Add arguments
18598         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
18599         *-image-load-path-called-flag.
18600
18601 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
18602
18603         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
18604
18605 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
18606
18607         * nnimap.el (nnimap-request-move-article): Change folder back to
18608         source group before deleting.
18609
18610 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
18611
18612         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
18613
18614         * gnus-art.el (mm-url-insert-file-contents-external):
18615         Autoload mm-url.
18616
18617         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
18618
18619 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18620
18621         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
18622         coding system which mm-charset-to-coding-system returns for a
18623         given charset is valid.
18624
18625 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
18626
18627         * html2text.el (html2text-remove-tag-list):
18628         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
18629
18630 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
18631
18632         * gnus-cus.el: Revert 2005-10-17 change.
18633
18634 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18635
18636         * gnus-art.el (article-strip-banner):
18637         Call article-really-strip-banner only when the regexp match is made.
18638
18639 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18640
18641         * gnus-art.el (article-strip-banner):
18642         Use gnus-extract-address-components instead of
18643         mail-header-parse-addresses to make it work with non-ASCII text;
18644         remove mail-encode-encoded-word-string.
18645
18646         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
18647         values which are surrounded with \"...\"; make it never cause a
18648         Lisp error; give up parsing of parameters if it failed in
18649         extracting type.
18650
18651 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
18652
18653         * smime.el (smime-cert-by-ldap-1): Fix bug where
18654         `smime-ldap-search' returns results without userCertificates.
18655
18656 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18657
18658         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
18659
18660 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
18661
18662         * spam.el (spam-check-spamassassin-headers): Adapt format for
18663         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
18664         <ari@mbf.ocn.ne.jp>.
18665         (spam-list-of-processors): Add spam-use-gmane.
18666
18667 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18668
18669         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
18670         make-temp-file; make it work with XEmacs as well.
18671
18672         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
18673         mm-make-temp-file.
18674
18675         * mm-decode.el (mm-display-external): Use the 3rd arg of
18676         mm-make-temp-file.
18677         (mm-create-image-xemacs): Ditto.
18678
18679 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18680
18681         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
18682         with message-narrow-to-headers.
18683         (gnus-draft-setup): Narrow to header to run message-fetch-field.
18684         (gnus-draft-check-draft-articles): New function.
18685         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
18686
18687 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
18688
18689         * gnus-art.el (gnus-article-browse-html-parts):
18690         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
18691         Don't use suffix argument for mm-make-temp-file for Emacs 21
18692         compatibility.  Remove useless `format'.
18693
18694 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18695
18696         * nnweb.el (nnweb-google-wash-article): Update regexps.
18697         (nnweb-group-alist): Use defvoo instead of defvar.
18698
18699 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18700
18701         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
18702         re-loading nn* modules.
18703
18704 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
18705
18706         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
18707         for `tool-bar-mode' and don't check it's default-value.
18708
18709         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
18710
18711         * message.el (message-make-tool-bar): Ditto.
18712
18713         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
18714         `substring'.  Shorten tmp-file name.
18715
18716         * gnus.el: Remove bogus comment.
18717
18718 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
18719
18720         * gnus-art.el (gnus-article-browse-html-parts): New function.
18721         (gnus-article-browse-html-article): New function for viewing html
18722         articles with a browser.
18723
18724 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
18725
18726         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
18727         in elisp.
18728         (pgg-gpg-encrypt-symmetric-region): Ditto.
18729         (pgg-gpg-sign-region): Ditto.
18730
18731         * pgg-def.el (pgg-text-mode): New variable.
18732
18733         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
18734         (mml2015-pgg-encrypt): Ditto.
18735
18736         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
18737         (mml1991-pgg-encrypt): Ditto.
18738
18739 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18740
18741         * nnfolder.el (nnfolder-insert-newsgroup-line):
18742         Use message-make-date instead of current-time-string.
18743
18744         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
18745         to gnus-decoded which mm-uu might set.
18746
18747 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18748
18749         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
18750         don't decode quoted parameters; remove misimported Emacs code.
18751         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18752         (rfc2231-decode-encoded-string): Don't use split-string which
18753         behaves differently according to Emacs version; use
18754         mm-decode-coding-region to convert charset to coding-system.
18755         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18756         (rfc2231-encode-string): Remove misimported Emacs code.
18757
18758 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
18759
18760         * gnus-art.el (article-decode-charset): Don't use ignore-errors
18761         when calling mail-header-parse-content-type.
18762         (article-de-quoted-unreadable): Ditto.
18763         (article-de-base64-unreadable): Ditto.
18764         (article-wash-html): Ditto.
18765
18766         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
18767         calling mail-header-parse-content-type and
18768         mail-header-parse-content-disposition.
18769         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
18770         mail-header-parse-content-type.
18771
18772         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
18773         insert charset and format parameters; encode description after
18774         inserting it to buffer.
18775         (mml-insert-parameter): Fold lines properly even if a parameter is
18776         segmented into two or more lines; change the max column to 76.
18777
18778         * rfc1843.el (rfc1843-decode-article-body): Don't use
18779         ignore-errors when calling mail-header-parse-content-type.
18780
18781         * rfc2231.el (rfc2231-parse-string): Return at least type if
18782         possible; don't cause an error even if it fails in parsing of
18783         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18784         (rfc2231-encode-string): Don't break lines at the beginning, leave
18785         it to mml-insert-parameter.
18786
18787         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
18788         calling mail-header-parse-content-type.
18789
18790 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
18791
18792         * spam-report.el (spam-report-gmane-use-article-number):
18793         Improve doc string.
18794         (spam-report-gmane-internal): Check if a suitable header was found
18795         in the article.
18796
18797 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18798
18799         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
18800         (rfc2231-encode-string): Make param*=value always begin with LWSP.
18801
18802 2006-02-05  Romain Francoise  <romain@orebokech.com>
18803
18804         Update copyright notices of all files in the gnus directory.
18805
18806 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18807
18808         * nnweb.el (nnweb-request-group): Avoid growing overview files.
18809
18810 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18811
18812         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
18813         segmented lines of parameter value to cope with Thunderbird 1.5
18814         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
18815         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18816         (rfc2231-encode-string): Don't make lines exceeding 76 column.
18817
18818 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
18819
18820         * mml.el (mml-generate-mime-1): Correct the order of inline signed
18821         parts.
18822
18823 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18824
18825         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
18826         there's only one active file for all servers.
18827         (nnweb-request-scan): Make sure nnweb-articles is initialized on
18828         solid groups.  Gnus might have used a FAST request to select the group.
18829         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
18830         and nnweb-search redundantly in the active file.
18831         (nnweb-request-list): Don't list bogus groups.  There can only be one.
18832         (nnweb-request-create-group): Don't use ARGS.
18833         (nnweb-possibly-change-server, nnweb-request-group): Remove some
18834         initializations.  Let nnoo do the work.
18835
18836 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
18837
18838         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
18839         Say the part has been decoded.
18840
18841         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
18842
18843 2006-01-31  Kevin Ryde  <user42@zip.com.au>
18844
18845         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
18846         mailcap-viewer-test-cache when there's no 'test clause, since that
18847         will invert the meaning of a "nil" test previously determined by
18848         mailcap-mailcap-entry-passes-test.
18849
18850 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
18851
18852         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
18853         compiling.
18854
18855         * gnus-sum.el: Ditto.
18856
18857         * message.el: Don't bind tool-bar-map when compiling.
18858
18859 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
18860
18861         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
18862
18863 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
18864
18865         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
18866         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
18867         current Google Groups.
18868
18869 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
18870
18871         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
18872         and tool-bar-mode.
18873
18874         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
18875         and tool-bar-mode.
18876
18877         * message.el (message-tool-bar-update): Simplify.
18878         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
18879
18880         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
18881         gnus-summary-buffer.
18882         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
18883         gnus-summary-reply.
18884
18885         * gmm-utils.el (gmm): Add :version.
18886
18887 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18888
18889         * Makefile.in (clean): New rule.
18890         (distclean): Use it.
18891
18892 2006-01-26  Steve Youngs  <steve@sxemacs.org>
18893
18894         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
18895         Don't autoload.
18896
18897 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18898
18899         * gmm-utils.el (gmm-verbose): Add :group.
18900
18901 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
18902
18903         * message.el: Change some comments WRT tool-bars.
18904
18905         * gnus-sum.el (gnus-summary-tool-bar)
18906         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
18907         (gnus-summary-tool-bar-zap-list): New variables.
18908         (gnus-summary-make-tool-bar): Complete rewrite using
18909         `gmm-tool-bar-from-list'.
18910
18911         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
18912         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
18913         New variables.
18914         (gnus-group-make-tool-bar): Complete rewrite using
18915         `gmm-tool-bar-from-list'.
18916         (gnus-group-tool-bar-update): New function.
18917
18918         * message.el (message-mode-field-menu): Add "Show hidden Headers".
18919
18920 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18921
18922         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
18923         is dissected into a single part of which the type is the same as
18924         the given one; decode charset.
18925
18926 2006-01-21  Kevin Ryde  <user42@zip.com.au>
18927
18928         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
18929         into alists as symbol not string, since that's what
18930         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
18931         look for.
18932
18933 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
18934
18935         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
18936         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
18937
18938         * message.el (message-tool-bar-gnome): Use gmm-ignore.
18939
18940 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18941
18942         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
18943         (gnus-xmas-mime-security-button-menu): New function.
18944
18945         * gnus-art.el (gnus-mime-security-button-commands): New variable.
18946         (gnus-mime-security-button-menu): New definition.
18947         (gnus-mime-security-button-map): Use them.
18948         (gnus-mime-security-button-menu): New function.
18949         (gnus-insert-mime-security-button): Addition to help echo.
18950         (gnus-mime-security-run-function, gnus-mime-security-save-part)
18951         (gnus-mime-security-pipe-part): New functions.
18952
18953         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
18954         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
18955
18956         * mm-decode.el (mm-handle-set-disposition): Remove.
18957         (mm-handle-set-description): Remove.
18958
18959 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18960
18961         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
18962         (mm-w3m-standalone-supports-m17n-p): New function.
18963         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
18964         w3m usage.
18965
18966         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
18967         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
18968
18969 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
18970
18971         * message.el (message-tool-bar-zap-list):
18972         Use gmm-tool-bar-zap-list as custom type.
18973         (message-tool-bar-update): New function.
18974         (message-tool-bar, message-tool-bar-gnome)
18975         (message-tool-bar-retro): Add message-tool-bar-update.
18976         (message-tool-bar-gnome): Add flyspell-buffer.
18977
18978         * gnus-util.el (gnus-error): Describe `args'.
18979
18980         * gmm-utils.el (gmm-error): Describe `args'.
18981         (gmm-tool-bar-zap-list): New widget.
18982         (gmm-tool-bar-from-list): Improve description of `zap-list'.
18983
18984 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18985
18986         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
18987         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
18988         the number of recursive calls.
18989
18990         * mm-decode.el (mm-handle-set-disposition): New macro.
18991         (mm-handle-set-description): New macro.
18992
18993 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18994
18995         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
18996         encoding.
18997
18998 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
18999
19000         * message.el (message-tool-bar-zap-list, message-tool-bar)
19001         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
19002         (message-tool-bar-local-item-from-menu): Remove.
19003         (message-tool-bar-map): Replace by `message-make-tool-bar'.
19004         (message-make-tool-bar): New function.
19005         (message-mode): Use `message-make-tool-bar'.
19006
19007         * gmm-utils.el: New file.
19008         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
19009         (gmm-lazy): New widget copied from `nnmail.el'.
19010         (gmm-tool-bar-from-list): New function for creating customizable
19011         tool bars.
19012         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
19013         output.
19014         (gmm): Add :prefix to defgroup.
19015
19016 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
19017
19018         * gmm-utils.el (gmm-widget-p): New function.
19019
19020 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
19021
19022         * mml.el (mml-attach-file): Describe `description' in doc string.
19023         (mml-menu): Add Emacs MIME manual and PGG manual.
19024
19025 2006-01-20  Richard M. Stallman  <rms@gnu.org>
19026
19027         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
19028
19029 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
19030
19031         * nntp.el (nntp-end-of-line): Doc fix.
19032
19033 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
19034
19035         * imap.el (imap-open): Handle case where buffer is a buffer
19036         object.
19037
19038 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
19039
19040         * gnus-delay.el (gnus-delay): Don't autoload.
19041         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
19042         to be re-loaded when customizing the `gnus-delay' group.
19043
19044 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
19045
19046         * message.el (message-insert-citation-line): Use newlines.
19047
19048 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
19049
19050         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
19051         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
19052         these routines, so the passphrase can be managed externally and
19053         passed in to the system.
19054         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
19055         pgg-add-passphrase-to-cache function.
19056
19057         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
19058         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
19059         these routines, so the passphrase can be managed externally and
19060         passed in to the system.
19061         (pgg-pgp5-sign-region): Use new name of
19062         pgg-add-passphrase-to-cache function.
19063
19064 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
19065
19066         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
19067         part of the decoded armor to find the key-identifier.
19068         (pgg-gpg-lookup-key-owner): New function to return the
19069         human-readable identifier of a key owner.
19070         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
19071         itself.
19072         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
19073         the key value) if we have a key and can match it against a secret
19074         key.  Also, added a note pointing out fact that the prompt only
19075         indicates the first matching key.
19076
19077         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
19078         pgg-decrypt-region.
19079         (pgg-add-passphrase-to-cache): Rename from
19080         `pgg-add-passphrase-cache' to reduce confusion (all callers
19081         changed).
19082         (pgg-remove-passphrase-from-cache): Rename from
19083         `pgg-remove-passphrase-cache' to reduce confusion (all callers
19084         changed).
19085         (pgg-read-passphrase, pgg-add-passphrase-cache)
19086         (pgg-remove-passphrase-cache): Add informative docstrings.
19087         (pgg-decrypt): Convey provided passphrase in subordinate call to
19088         pgg-decrypt-region.
19089
19090 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
19091
19092         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
19093         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
19094         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
19095         'passphrase' argument, so the passphrase can be managed externally
19096         and then passed in to the system.
19097
19098         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
19099         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
19100         so the passphrase cache can be used reliably with identifiers
19101         besides a pgp packet's key id.
19102
19103         * pgg-gpg.el (pgg-gpg-encrypt-region)
19104         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
19105         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
19106         these routines, so the passphrase can be managed externally and
19107         passed in to the system.
19108
19109         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
19110         'notruncate' argument, so the passphrase cache can be used
19111         reliably with identifiers besides a pgp packet's key id.
19112
19113 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
19114
19115         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
19116         symmetric encryption.
19117         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
19118         encrypted session key.
19119         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
19120         message ask for the passphrase in a proper way.
19121
19122         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
19123         New user commands for symmetric encryption.
19124
19125 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19126
19127         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
19128
19129         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
19130
19131 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
19132
19133         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
19134
19135 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19136
19137         * mm-decode.el (mm-inlined-types): Add application/pgp.
19138         (mm-automatic-display): Ditto.
19139
19140         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
19141         part as text.
19142
19143 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19144
19145         * nnrss.el: Update copyright.
19146         (nnrss-opml-import): Query whether to subscribe to each entry.
19147
19148         * gnus-art.el:
19149         * gnus-sum.el:
19150         * gnus-xmas.el:
19151         * messagexmas.el:
19152         * mm-uu.el:
19153         * mm-view.el: Update copyright.
19154
19155 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
19156
19157         * message.el (message-info): New function.
19158         (message-mode-menu): Add it.
19159         Update copyright.
19160
19161         * ChangeLog: Fix and update copyright.
19162
19163 2006-01-13  Romain Francoise  <romain@orebokech.com>
19164
19165         * message.el (message-forward-subject-name-subject): Prefer the
19166         address to 'nowhere' if the sender has no name.
19167         Fix typo.  Update copyright year.
19168
19169 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19170
19171         * gnus-art.el (article-wash-html):
19172         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
19173         (gnus-article-wash-html-with-w3m-standalone): New function.
19174
19175         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
19176         mm-inline-text-html-render-with-w3m-standalone.
19177         (mm-text-html-washer-alist): Map w3m-standalone to
19178         gnus-article-wash-html-with-w3m-standalone.
19179         (mm-inline-text-html-render-with-w3m-standalone): New function.
19180
19181 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
19182
19183         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
19184         Improve LaTeX.
19185
19186 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19187
19188         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
19189         (nnrss-request-article): Render text/plain parts as HTML.
19190
19191         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
19192         the buffer.
19193
19194 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
19195
19196         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
19197         custom definition of `gnus-posting-styles'.
19198
19199         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
19200         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
19201
19202 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
19203
19204         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
19205         Use nntp for bug archive.
19206
19207 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
19208
19209         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
19210         parts.
19211         (nnrss-normalize-date): New function converts ISO 8601 date into
19212         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
19213         (nnrss-check-group): Use it.
19214
19215 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19216
19217         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
19218
19219         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
19220         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
19221         (nnrss-insert-w3): Ditto.
19222
19223 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19224
19225         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
19226         the articles to be forwarded including the case where neither a
19227         number of articles nor a region is specified.
19228
19229 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
19230
19231         * nnrss.el (nnrss-request-article): Fix last change; fill
19232         text/plain parts.
19233
19234 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19235
19236         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
19237         in text/plain part.
19238         (nnrss-check-group): Don't add excessive newline to dc:subject.
19239
19240 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
19241
19242         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
19243         article.
19244
19245 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
19246
19247         * nnml.el: Don't require gnus-bcklg.  Autoload it.
19248         (nnml-use-compressed-files, nnml-save-mail): Support other
19249         comression programs such as bzip2.
19250
19251 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19252
19253         * dns.el (query-dns): Make sure we check the buffer size before
19254         removing tcp headers.
19255
19256 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19257
19258         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
19259         remove MIME buttons associated with multipart/alternative parts.
19260         (gnus-mime-display-alternative): Tag buttons using `article-type'
19261         text property.
19262
19263         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
19264         associated with multipart/alternative parts.
19265
19266         * gnus-art.el (gnus-signature-separator): Fix custom type.
19267
19268         * mm-decode.el (mm-inlined-types): Fix custom type.
19269         (mm-keep-viewer-alive-types): Ditto.
19270         (mm-automatic-display): Ditto.
19271         (mm-attachment-override-types): Ditto.
19272         (mm-inline-override-types): Ditto.
19273         (mm-automatic-external-display): Ditto.
19274
19275 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
19276
19277         * spam-report.el (spam-report-user-mail-address)
19278         (spam-report-user-agent): New variables.
19279         (spam-report-url-ping-plain): Use spam-report-user-agent.
19280
19281 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
19282
19283         * gnus-art.el (gnus-button-handle-custom): Do not just use
19284         `customize-apropos' for any "M-x customize-*" button but the
19285         function called for.  Accept both the function name and its
19286         argument in order to achieve this.
19287         (gnus-button-alist): Remove support for "custom:" URL's.
19288         Pass function name to `gnus-button-handle-custom' in case of "M-x
19289         customize-*" buttons.
19290
19291 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19292
19293         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
19294         multipart/alternative and add xref to mm-discouraged-alternatives
19295         in doc string.
19296
19297         * mm-decode.el (mm-discouraged-alternatives): Add xref to
19298         gnus-buttonized-mime-types in doc string.
19299
19300 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
19301
19302         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
19303         Suggest image/.* in the doc string.
19304
19305 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
19306
19307         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
19308         message-marks (Debian bug #342521).
19309
19310 2005-12-12  Simon Josefsson  <jas@extundo.com>
19311
19312         * password.el (password-read-from-cache): Add.
19313         (password-read): Use it.
19314
19315 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19316
19317         * rfc2047.el (rfc2047-charset-to-coding-system):
19318         Recognize us-ascii as a MIME charset.
19319
19320         * mm-bodies.el (mm-decode-content-transfer-encoding):
19321         Protect against the case where the 2nd arg TYPE is nil.
19322
19323 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
19324
19325         * pop3.el (pop3-stream-type): Fix custom version.
19326
19327         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
19328
19329 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
19330
19331         * mm-decode.el (mm-display-external): Add missing cdr.
19332
19333 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
19334
19335         * mm-decode.el (mm-display-external): Use nametemplate (defined in
19336         RFC1524) if it is in mailcap or add a suffix according to
19337         mailcap-mime-extensions when generating a temp filename; postpone
19338         deleting a temp file for 2 seconds for some wrappers, shell
19339         scripts, and so on, which might exit right after having started a
19340         viewer command as a background job.
19341
19342 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
19343
19344         * nntp.el (nntp-marks-directory): Fix custom group.
19345
19346         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
19347         steps when < 10.
19348
19349         * gnus-start.el (gnus-no-server-1):
19350         Mention `gnus-level-default-subscribed' in doc string.
19351
19352 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
19353
19354         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
19355         parens.
19356
19357 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19358
19359         * gnus-xmas.el (gnus-use-toolbar): Revert.
19360         (gnus-xmas-setup-toolbar): Use global default-toolbar if
19361         gnus-use-toolbar is default.
19362
19363         * messagexmas.el (message-use-toolbar): Revert.
19364         (message-setup-toolbar): Use global default-toolbar if
19365         message-use-toolbar is default.
19366
19367 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19368
19369         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
19370         according to default-toolbar-visible-p.
19371
19372         * messagexmas.el (message-use-toolbar): Ditto.
19373
19374 2005-11-26  Dave Love  <fx@gnu.org>
19375
19376         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
19377         (tls-program, tls-success): Provide openssl alternative.
19378
19379         * starttls.el: Doc fixes.
19380         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
19381         SERVICE to PORT.
19382
19383         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
19384         port null or service name.
19385         (starttls-negotiate): Autoload.
19386
19387 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19388
19389         * message.el (message-kill-to-signature): Fix interactive spec.
19390
19391 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19392
19393         * pop3.el (pop3-open-server): Recognize a string as a service name.
19394
19395 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
19396
19397         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
19398
19399 2005-11-23  Dave Love  <fx@gnu.org>
19400
19401         Add pop3s, pop3/starttls.
19402
19403         * pop3.el (pop3-authentication-scheme): Clarify doc.
19404         (open-tls-stream, starttls-open-stream): Autoload.
19405         (pop3-stream-type): New.
19406         (pop3-open-server): Use it.
19407
19408         * mail-source.el (mail-sources): Fix some :types.  Add stream type
19409         for POP.
19410         (mail-source-keyword-map): Add :stream for POP.
19411         (mail-source-fetch-pop): Use pop3-stream-type.
19412
19413 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19414
19415         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
19416         of current-time-string.
19417
19418 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
19419
19420         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
19421         date header.
19422
19423 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
19424
19425         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
19426         it can seriously impact performance as it bypasses the agent's
19427         local caches.
19428
19429 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
19430
19431         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
19432         must be explicitly online rather than "not explicitly offline" for
19433         its flags to be synchronized.
19434
19435         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
19436         that gnus-uu-unmark-thread will function correctly.
19437
19438         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
19439         1024K is instead displayed as 1M.
19440
19441 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19442
19443         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
19444
19445 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
19446
19447         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
19448
19449 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
19450
19451         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
19452         error message to display actual error condition.
19453         (gnus-agent-save-local): Avoid saving symbols that are bound to
19454         nil as they simply result in a warning message in
19455         gnus-agent-read-local.
19456
19457 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19458
19459         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
19460         rather than make-variable-buffer-local for file-precious-flag.
19461
19462 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
19463
19464         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
19465         for duplicates which are removed.  The invalid sort check then
19466         triggers a rescan after the sort as sorting may have moved
19467         duplicate entries such that they can be cheaply detected.
19468
19469 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19470
19471         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
19472
19473 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
19474
19475         * gnus-agent.el (gnus-agent-article-alist-save-format):
19476         Change internal variable to a custom variable.  Change default value
19477         from compressed(2) to uncompressed(1).
19478         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
19479         support for uncompressed agentview files.  Taken together, reading
19480         the agentview file should now be 6-7 times faster.
19481
19482 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
19483
19484         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
19485         as a buffer-local variable.  This avoids creating truncated
19486         dribble files as a result of a hang up, eg.
19487
19488 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
19489
19490         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
19491         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
19492         XEmacs.
19493
19494 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
19495
19496         * gnus-start.el (gnus-start-draft-setup):
19497         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
19498
19499         * gnus.el (gnus-splash): Change custom group.
19500         (gnus-group-get-parameter, gnus-group-parameter-value):
19501         Describe allow-list argument.
19502
19503         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
19504         string.
19505
19506 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
19507
19508         * gnus-art.el (gnus-default-article-saver): Add user-defined
19509         `function' to custom type.
19510
19511 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
19512
19513         * imap.el (imap-open): Handle case where buffer is a buffer
19514         object.
19515
19516 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
19517
19518         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
19519         long lines.
19520         (gnus-cache-delete-group): Wrap doc strings.
19521
19522         * gnus-agent.el (gnus-agent-rename-group)
19523         (gnus-agent-delete-group): Wrap doc strings.
19524
19525 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19526
19527         * messagexmas.el (message-use-toolbar): Change the valid values
19528         into default, top, bottom, left, and right.
19529         (message-toolbar-thickness): New variable.
19530         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
19531         well.
19532         (message-setup-toolbar): Make it work.
19533
19534         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
19535         (gnus-use-toolbar): Change the valid values into default, top,
19536         bottom, left, and right.
19537         (gnus-toolbar-thickness): New variable.
19538         (gnus-xmas-setup-toolbar): New function.
19539         (gnus-xmas-setup-group-toolbar): Use it.
19540         (gnus-xmas-setup-summary-toolbar): Use it.
19541
19542 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19543
19544         * gnus-start.el (gnus-1): Add "native" to
19545         gnus-predefined-server-alist.
19546
19547         * gnus.el (gnus-method-to-server): Don't add "native" to the
19548         lists here, because that leads to problems when
19549         gnus-select-method is bound.
19550
19551 2005-11-09  Simon Josefsson  <jas@extundo.com>
19552
19553         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
19554         use (not sort-by-date) instead.
19555
19556 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
19557
19558         * gnus-delay.el (gnus-delay-group): Don't autoload.
19559         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
19560         to be re-loaded when customizing the `gnus-delay' group.
19561
19562 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
19563
19564         * message.el: Revert last changes.
19565         (message-insert-citation-line): Use newlines.
19566
19567 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
19568
19569         * message.el (message-courtesy-message)
19570         (message-mark-insert-begin, message-mark-insert-end)
19571         (message-elide-ellipsis, message-cancel-message)
19572         (message-add-header, message-change-subject)
19573         (message-cross-post-followup-to-header)
19574         (message-cross-post-insert-note, message-reduce-to-to-cc)
19575         (message-widen-reply, message-delete-not-region)
19576         (message-kill-to-signature, message-insert-signature)
19577         (message-insert-importance-high, message-insert-importance-low)
19578         (message-insert-or-toggle-importance)
19579         (message-insert-disposition-notification-to)
19580         (message-indent-citation, message-yank-original)
19581         (message-cite-original-without-signature, message-cite-original)
19582         (message-insert-citation-line, message-position-on-field)
19583         (message-fix-before-sending, message-send-mail-partially)
19584         (message-send-mail, message-send-mail-with-sendmail)
19585         (message-send-mail-with-qmail, message-send-news)
19586         (message-check-news-header-syntax, message-generate-headers)
19587         (message-insert-courtesy-copy, message-fill-address)
19588         (message-fill-header, message-shorten-references)
19589         (message-setup-1, message-cancel-news)
19590         (message-forward-make-body-plain, message-forward-make-body-mime)
19591         (message-forward-make-body-mml, message-encode-message-body)
19592         (message-forward-make-body-digest-plain)
19593         (message-forward-make-body-digest-mime)
19594         (message-use-alternative-email-as-from): Insert `hard-newline'
19595         instead of ordinary newlines.
19596
19597 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19598
19599         * message.el (message-generate-headers): Downcase the argument
19600         given to message-check-element.
19601
19602 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
19603
19604         * nntp.el (nntp-authinfo-rejected): New error condition.
19605         (nntp-wait-for): Use new error condition to signal authentication
19606         error.
19607         (nntp-retrieve-data): Rethrow new error condition to break out of
19608         recursive call to nntp-send-authinfo.
19609
19610 2005-11-08  Romain Francoise  <romain@orebokech.com>
19611
19612         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
19613         (gnus-summary-exit-map): Bind to `Z p'.
19614         (gnus-summary-make-menu-bar): Add menu item.
19615
19616 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
19617
19618         * gnus-art.el (gnus-article-treat-custom): Add `first'.
19619         (gnus-treat-*): Add `first' in all doc strings.
19620
19621         * gnus-group.el (gnus-group-compact-group): Fix typo.
19622
19623 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19624
19625         * gnus.el (gnus-parameters-case-fold-search): New variable.
19626         (gnus-parameters-get-parameter): Use it.
19627
19628         * gnus-score.el (gnus-home-score-file): Doc fix.
19629
19630 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
19631
19632         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
19633
19634 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
19635
19636         * mm-util.el (mm-special-display-p): New function.
19637
19638         * mml.el (mml-preview): Use it; doc fix.
19639
19640 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
19641
19642         * imap.el (imap-open): Handle case where buffer is a buffer object.
19643
19644 2005-10-29  Romain Francoise  <romain@orebokech.com>
19645
19646         * message.el (message-fix-before-sending): Fix comment.
19647
19648 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
19649
19650         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
19651
19652 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
19653
19654         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
19655         Used in gnus-score.el.
19656
19657 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
19658
19659         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
19660
19661 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
19662
19663         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
19664         whitespace removed in revision 7.8.  Use concatenated string to
19665         protect trailing whitespace.
19666
19667 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
19668
19669         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
19670         (nnimap-request-expire-articles): Use it to avoid sending 'UID
19671         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
19672         Courier IMAP ("some version from 2004").  Mostly based on similar
19673         code in the same function.
19674
19675 2005-10-26  Didier Verna  <didier@xemacs.org>
19676
19677         * gnus-group.el (gnus-group-compact-group): Invalidate original
19678         article buffer.
19679         * gnus-srvr.el (gnus-server-compact-server): Ditto.
19680         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
19681         NOV database and in article itself.
19682         Invalidate article backlog.
19683
19684 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
19685
19686         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
19687
19688 2005-10-26  Simon Josefsson  <jas@extundo.com>
19689
19690         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
19691         part of 2004-07-25 change.
19692
19693 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19694
19695         * message.el (message-display-completion-list): New function.
19696         (message-expand-group): Use it; make sure the Completions buffer
19697         is modifiable.
19698 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
19699
19700         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
19701         user-mail-name is an empty string.
19702
19703 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
19704
19705         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
19706         depending on gnus-score-decay-constant.
19707
19708         * encrypt.el (encrypt-insert-file-contents)
19709         (encrypt-write-file-contents): Don't use `gnus-message'.
19710
19711         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
19712         arguments.
19713         (mm-uu-type-alist): Add message-marks and insert-marks.
19714         Pass arguments to mm-uu-verbatim-marks-extract.
19715         (mm-uu-hide-markers): New variable.
19716         (mm-uu-extract): Use face similar to `gnus-cite-3'.
19717
19718         * gnus-fun.el (gnus-convert-image-to-x-face-command)
19719         (gnus-convert-image-to-face-command): Use "convert" by default to
19720         allow other input image formats.
19721         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
19722         accordingly.
19723
19724 2005-10-23  Simon Josefsson  <jas@extundo.com>
19725
19726         * imap.el (imap-gssapi-program): Align command line parameters
19727         with latest GNU SASL.
19728         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
19729
19730 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19731
19732         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
19733         HTML.
19734         (nnslashdot-request-article): Ditto.
19735
19736         * lpath.el (featurep): Add nobreak-char-display.
19737
19738 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
19739
19740         * mail-source.el (mail-source-fetch-pop): Require pop3.
19741         (mail-source-check-pop): Ditto.
19742
19743 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19744
19745         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
19746         errors.
19747
19748 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
19749
19750         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
19751         (gnus-treat-strip-leading-blank-lines): Improve doc string.
19752
19753         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
19754
19755         * mm-bodies.el (mm-decode-string):
19756         Call `mm-charset-to-coding-system' with allow-override argument.
19757
19758 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19759
19760         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
19761         (rfc2047-charset-to-coding-system): New function.
19762         (rfc2047-decode-encoded-words): New function.
19763         (rfc2047-decode-region): Use them.
19764         (rfc2047-decode-cte): Remove.
19765         (rfc2047-parse-and-decode): Remove.
19766         (rfc2047-decode): Remove.
19767
19768 2005-10-15  Kenichi Handa  <handa@m17n.org>
19769
19770         * rfc2047.el (rfc2047-decode-cte): New function.
19771         (rfc2047-decode-region): Change the way to decode successive
19772         encoded-words: decode B- or Q-encoding in each encoded-word,
19773         concatenate them, and decode it as charset.
19774
19775 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
19776
19777         * lpath.el: Fbind codepage-setup for XEmacs.
19778
19779 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
19780
19781         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
19782         widget-move-and-invoke.
19783         (gnus-custom-mode): Use gnus-custom-map.
19784
19785 2005-10-15  Bill Wohler  <wohler@newt.com>
19786
19787         * message.el (message-tool-bar-map): Rename image file from
19788         mail_send to mail/send.
19789
19790 2005-10-16  Masatake YAMATO  <jet@gyve.org>
19791
19792         * message.el (message-expand-group): Pass the common
19793         prefix substring of completion to `display-completion-list'.
19794
19795 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
19796
19797         * mml-sec.el (mml-secure-method): New internal variable.
19798         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
19799         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
19800         New functions using mml-secure-method.
19801
19802         * mml.el (mml-mode-map): Add key bindings for those functions.
19803         (mml-menu): Simplify security menu entries.  Suggested by Jesper
19804         Harder <harder@myrealbox.com>.
19805         (mml-attach-file, mml-attach-buffer, mml-attach-external):
19806         Goto end of message if point is the headers of the message.
19807
19808         * message.el (message-in-body-p): New function.
19809
19810         * assistant.el: Autoload gnus-util and netrc.
19811
19812         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
19813         Use `mm-charset-override-alist' only when decoding.
19814
19815         * mm-bodies.el (mm-decode-body):
19816         Call `mm-charset-to-coding-system' with allow-override argument.
19817
19818         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
19819         `filename' from Content-Disposition if Content-Type doesn't
19820         provide `name'.
19821         (gnus-mime-view-part-as-type): Set default instead of
19822         initial-input.
19823
19824 2005-10-09  Daniel Brockman  <daniel@brockman.se>
19825
19826         * format-spec.el (format-spec): Propagate text properties of % spec.
19827
19828 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
19829
19830         * gnus-art.el (gnus-treat-predicate): Add `first'.
19831
19832 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
19833
19834         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
19835         (mm-charset-override-alist): New variable.
19836         (mm-charset-to-coding-system): Use it.
19837         (mm-codepage-setup): New helper function.
19838         (mm-charset-eval-alist): New variable.
19839         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
19840         Warn about unknown charsets.
19841
19842         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
19843
19844 2005-10-04  David Hansen  <david.hansen@gmx.net>
19845
19846         * nnrss.el (nnrss-request-article): Add support for the comments tag.
19847         (nnrss-check-group): Ditto.
19848
19849 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
19850
19851         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
19852         Rename x-gnus-verbatim to x-verbatim.
19853         (mm-uu-type-alist): Fix regexp for verbatim-marks.
19854
19855         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
19856         x-verbatim.
19857
19858         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
19859
19860         * gnus-util.el (gnus-remove-duplicates): Remove.
19861
19862         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
19863         instead of gnus-remove-duplicates.
19864
19865         * message.el (message-remove-duplicates): Remove.
19866         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
19867         message-remove-duplicates.
19868
19869         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
19870         available, else use implementation from `delete-dups'.
19871
19872         * message.el (message-insert-expires): New function.
19873         (message-mode-map): Add key binding.
19874         (message-mode-field-menu): Add menu entry.
19875         (message-mode): Document it.
19876         (message-make-expires-date): Use `message-make-date'.
19877
19878 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
19879
19880         * message.el (message-make-expires-date): New function.
19881
19882 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19883
19884         * Makefile.in (list-installed-shadows): New entry.
19885         (install): Use it.
19886         (remove-installed-shadows): New entry.
19887
19888         * dgnushack.el (dgnushack-default-load-path): New variable.
19889         (dgnushack-find-lisp-shadows): New function.
19890         (dgnushack-remove-lisp-shadows): New function.
19891
19892 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
19893
19894         * Makefile.in (install-el-elc): New entry.
19895         (install): Use it so that .el files are necessarily installed.
19896
19897 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19898
19899         * time-date.el: Autoload parse-time-string, XEmacs needs it.
19900
19901 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
19902
19903         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
19904         function rather than the diff-mode.el package.
19905         (mm-display-external): Use with-current-buffer.
19906         (mm-viewer-completion-map, mm-viewer-completion-map):
19907         Move initialization inside declaration.
19908
19909 2005-09-29  Simon Josefsson  <jas@extundo.com>
19910
19911         * spam.el: Load hashcash when compiling, to avoid warnings.
19912         Don't autoload mail-check-payment.
19913         (spam-check-hashcash): Define unconditionally, since hashcash.el
19914         is part of Gnus now.  Ignore errors from payment checking.
19915
19916 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
19917
19918         * message.el (message-bold-region, message-unbold-region):
19919         Rename from `bold-region' and `unbold-region'.
19920
19921         * message.el: Remove useless autoloads.
19922
19923 2005-09-28  Simon Josefsson  <jas@extundo.com>
19924
19925         * message.el (message-use-idna): Default to t.
19926         (message-use-idna): Test whether encoding works too.  Doc fix.
19927
19928 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
19929
19930         * nntp.el (nntp-warn-about-losing-connection): Remove.
19931
19932 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
19933
19934         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
19935         customizable.  Change default value.
19936         (mm-uu-diff-groups-regexp): Change default value.
19937         (mm-uu-type-alist): Add doc string.
19938         (mm-uu-configure): Add doc string.  Make it interactive.
19939         (mm-uu-tex-groups-regexp): New variable.
19940         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
19941         (mm-uu-type-alist): Add LaTeX documents.
19942         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
19943         of "text/verbatim".
19944         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
19945
19946         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
19947         instead of "text/verbatim".
19948
19949         * message.el (message-mark-inserted-region)
19950         (message-mark-insert-file): Use slrn style marks when called with
19951         prefix argument.
19952
19953 2005-09-27  Simon Josefsson  <jas@extundo.com>
19954
19955         * message.el (message-idna-to-ascii-rhs-1): Reformat.
19956
19957 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
19958
19959         * message.el (message-remove-duplicates): New function.
19960         Implementation borrowed from `gnus-remove-duplicates'.
19961         (message-idna-to-ascii-rhs): Also encode idna addresses in
19962         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
19963         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
19964         only ask about the same idna domain once per header and also tell
19965         in what header to replace the idna domain.
19966
19967         * gnus-art.el (article-decode-idna-rhs): Also decode idna
19968         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
19969         (article-decode-idna-rhs): Fix regexp so that all idna-address in
19970         a header is decoded and not just the last one.
19971
19972 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19973
19974         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
19975         has been decoded.
19976
19977         * mm-decode.el (mm-automatic-display): Add text/verbatim.
19978         (mm-insert-part): Don't modify text if it has been decoded.
19979
19980         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
19981         decoded.
19982
19983         * mm-view.el (mm-inline-text): Don't strip text props unless
19984         decoding enriched or richtext parts.
19985
19986 2005-09-25  Romain Francoise  <romain@orebokech.com>
19987
19988         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
19989         * gnus-start.el (gnus-subscribe-interactively):
19990         * gnus-uu.el (gnus-uu-grab-articles):
19991         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
19992         space.
19993
19994 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
19995
19996         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
19997         * mm-view.el (mm-view-pkcs7-decrypt):
19998         * gnus-sum.el (gnus-summary-limit-to-extra)
19999         (gnus-summary-respool-article, gnus-read-move-group-name):
20000         * gnus-score.el (gnus-summary-increase-score):
20001         * gnus-util.el (gnus-completing-read-with-default):
20002         * gnus-art.el (gnus-read-save-file-name)
20003         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
20004         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
20005         * message.el (message-check-news-header-syntax):
20006         Follow convention for reading with the minibuffer.
20007
20008 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
20009
20010         * spam-report.el (spam-report-url-ping-plain):
20011         Use gnus-extended-version as User-Agent.
20012
20013         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
20014         default value is nil.
20015
20016         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
20017         (mm-uu-verbatim-marks-extract): New function.
20018         (mm-uu-extract): New face.
20019         (mm-uu-copy-to-buffer): Use it.
20020
20021         * spam-report.el (spam-report-gmane-ham): Rename from
20022         `spam-report-gmane-unspam'.
20023         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
20024         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
20025
20026         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
20027         Autoload.
20028         (spam-report-gmane-unregister-routine):
20029         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
20030
20031 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
20032
20033         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
20034         (spam-report-gmane-unregister-routine): Add support for gmane
20035         unregistration.
20036
20037         * spam-report.el (spam-report-gmane-unspam)
20038         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
20039         (spam-report-gmane): Change to take a single article and do unspam
20040         registration.
20041
20042 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
20043
20044         * mm-url.el (mm-url-decode-entities): Fix regexp.
20045
20046 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20047
20048         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
20049         default to nil, to be able to use Gnus at all.  If the default
20050         switches to something else, then the function should be fixed not
20051         be exceedingly slow.
20052
20053 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
20054
20055         * gnus-start.el (gnus-activate-group): If the server is nil, don't
20056         fail hard.
20057
20058         * spam-report.el: Add better Keywords line.
20059
20060         * spam.el: Add Maintainer and better Keywords line.
20061
20062 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
20063
20064         * gnus-art.el (gnus-article-replace-part)
20065         (gnus-mime-replace-part): New functions.
20066         (gnus-mime-action-alist, gnus-mime-button-commands)
20067         (gnus-mime-save-part-and-strip): Add file argument.
20068         (gnus-article-part-wrapper): Add interactive argument.
20069
20070         * gnus-sum.el (gnus-summary-mime-map):
20071         Add `gnus-article-replace-part'.
20072
20073 2005-09-19  Didier Verna  <didier@xemacs.org>
20074
20075         The nnml compaction feature:
20076         * nnml.el (nnml-request-compact-group): New function.
20077         * nnml.el (nnml-request-compact): New function.
20078         * gnus-int.el (gnus-request-compact-group): New function.
20079         * gnus-int.el (gnus-request-compact): New function.
20080         * gnus-group.el (gnus-group-compact-group): New function.
20081         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
20082         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
20083         * gnus-srvr.el (gnus-server-compact-server): New function.
20084         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
20085         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
20086
20087 2005-09-18  Deepak Goel  <deego@gnufans.org>
20088
20089         * sieve.el (sieve-help): Fix `message' call: first arg should be a
20090         format spec.
20091
20092 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20093
20094         * gnus.el (gnus-group-startup-message): Bind image-load-path.
20095
20096 2005-09-15  Romain Francoise  <romain@orebokech.com>
20097
20098         * message.el (message-fill-paragraph): Clarify docstring.
20099
20100 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20101
20102         * gnus-art.el (gnus-mime-display-part): Protect against broken
20103         MIME messages.
20104
20105 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20106
20107         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
20108         before parsing header.
20109
20110 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
20111
20112         * html2text.el (html2text-replace-list): Add new entities.
20113
20114 2005-09-11  Romain Francoise  <romain@orebokech.com>
20115
20116         * message.el (message-alternative-emails): Improve docstring.
20117         (message-setup-1): Call `message-use-alternative-email-as-from'
20118         after `message-setup-hook' to give it precedence over posting
20119         styles, etc.
20120         (message-use-alternative-email-as-from): Add docstring.
20121         Remove the original From header if present.
20122
20123         * nnml.el (nnml-compressed-files-size-threshold): New variable.
20124         (nnml-save-mail): Use it.
20125
20126         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
20127         articles.  Add new argument `silent'.
20128         (gnus-uu-mark-all): Report the total number of marked articles.
20129
20130 2005-09-10  Romain Francoise  <romain@orebokech.com>
20131
20132         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
20133         (gnus-uu-mark-series): Likewise.
20134
20135 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
20136
20137         * spam-report.el (spam-report-gmane): Fix generation of spam
20138         report URL.
20139
20140 2005-09-10  Simon Josefsson  <jas@extundo.com>
20141
20142         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
20143         t, based on discussion on the ding list with Robert Epprecht
20144         <epprecht@solnet.ch>.
20145
20146 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
20147
20148         * spam-report.el (spam-report-gmane): Make it work without
20149         X-Report-Spam header.  Gmane now only provides Archived-At.
20150         This is only used if `spam-report-gmane-use-article-number' is nil.
20151         (spam-report-gmane-spam-header): Remove.  Not used anymore.
20152
20153         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
20154         make `gnus-summary-sort-by-recipient' work with threading.
20155
20156         * nnweb.el (nnweb-google-wash-article): Print a message if article
20157         is not available.
20158
20159 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
20160
20161         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
20162         change.  Decode text/* parts content before displaying.
20163
20164 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
20165
20166         * mml-smime.el: Remove defvar of gnus-extract-address-components.
20167
20168 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20169
20170         * mm-view.el (mm-display-inline-fontify): Disable support modes.
20171
20172         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
20173         url-package-name, url-package-version,
20174         w3m-cid-retrieve-function-alist, w3m-current-buffer,
20175         w3m-display-inline-images, and w3m-minor-mode-map.
20176
20177 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
20178
20179         * message.el (message-tab-body-function): Fix mismatched custom type.
20180
20181         * gnus.el (gnus-group-change-level-function): Ditto.
20182
20183         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
20184
20185         * gnus-art.el (gnus-signature-limit)
20186         (gnus-article-mime-part-function): Ditto.
20187
20188 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20189
20190         * mml.el (mml-mode): Silence the byte compiler.
20191
20192         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
20193         using `(sit-for 0)' before moving the point to the specified part;
20194         skip unbuttonized parts.
20195         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
20196         return to the summary window if gnus-auto-select-part is non-nil.
20197
20198 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
20199
20200         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
20201         New variables.
20202         (mml-dnd-attach-file, mml-mode): Use them.
20203
20204         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
20205         Make fetching article by MID work again for Google Groups.
20206         Add FIXME concerning gnus-group-make-web-group.
20207
20208         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
20209         Don't depend on Gnus by using mail-extract-address-components if
20210         gnus-extract-address-components is not bound.
20211
20212 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20213
20214         * gnus-art.el (gnus-mime-display-security): Don't display the
20215         signature, but only the signed part.
20216
20217 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20218
20219         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
20220
20221         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
20222         list, not listp.
20223
20224 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
20225
20226         * mm-encode.el (mm-encode-content-transfer-encoding):
20227         Likewise when encoding.
20228
20229         * mm-bodies.el (mm-decode-content-transfer-encoding):
20230         De-canonicalize CRLF for all text content types, not just
20231         text/plain.
20232
20233 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20234
20235         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
20236         valid article; point arrow and cursor at the MIME button.
20237
20238 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20239
20240         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
20241         Suggested by Dan Christensen <jdc@uwo.ca>.
20242
20243         * mm-decode.el (mm-save-part): Enable change of prompt.
20244
20245 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
20246
20247         * gnus-msg.el (gnus-inews-add-send-actions):
20248         Make `message-post-method' lambda parameter ARG `&optional'.
20249
20250 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
20251
20252         * gnus-sum.el (gnus-summary-mime-map):
20253         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
20254         gnus-article-jump-to-part.
20255
20256         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
20257         (gnus-article-edit-part): Use it.
20258         (gnus-article-part-wrapper): Add no-handle argument.
20259         (gnus-article-save-part-and-strip, gnus-article-delete-part):
20260         New functions.
20261
20262 2005-08-29  Romain Francoise  <romain@orebokech.com>
20263
20264         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
20265         docstring.
20266         (gnus-face-from-file): Likewise.
20267
20268 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
20269
20270         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
20271         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
20272         non-nil.
20273         (gnus-auto-select-part): New variable.
20274         (gnus-article-jump-to-part): New function.
20275         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
20276         (gnus-mime-delete-part): Allow selecting specified part after
20277         deleting or stripping parts.
20278         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
20279         part if argument is bogus.
20280
20281 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
20282
20283         * gnus-art.el (w3m-minor-mode-map):
20284         * gnus-spec.el (gnus-newsrc-file-version):
20285         * gnus-util.el (nnmail-active-file-coding-system)
20286         (gnus-original-article-buffer, gnus-user-agent):
20287         * gnus.el (gnus-ham-process-destinations)
20288         (gnus-parameter-ham-marks-alist)
20289         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
20290         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
20291         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
20292         * mm-decode.el (gnus-current-window-configuration):
20293         * mm-extern.el (gnus-article-mime-handles):
20294         * mm-url.el (url-current-object, url-package-name)
20295         (url-package-version):
20296         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
20297         (smime-keys, w3m-cid-retrieve-function-alist)
20298         (w3m-current-buffer, w3m-display-inline-images)
20299         (w3m-minor-mode-map):
20300         * mml-smime.el (gnus-extract-address-components):
20301         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
20302         (gnus-newsrc-hashtb, message-default-charset)
20303         (message-deletable-headers, message-options)
20304         (message-posting-charset, message-required-mail-headers)
20305         (message-required-news-headers):
20306         * mml1991.el (mc-pgp-always-sign):
20307         * mml2015.el (mc-pgp-always-sign):
20308         * nnheader.el (nnmail-extra-headers):
20309         * rfc1843.el (gnus-decode-encoded-word-function)
20310         (gnus-decode-header-function, gnus-newsgroup-name):
20311         * spam-stat.el (gnus-original-article-buffer): Add defvars.
20312
20313 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
20314
20315         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
20316         the end of the date treatments.
20317
20318 2005-08-15  Simon Josefsson  <jas@extundo.com>
20319
20320         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
20321         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
20322         Capello and Romain Francoise.
20323         (pgg-fetch-key-function): Remove, not used?
20324         (pgg-insert-url-with-w3): Require url, to get
20325         url-insert-file-contents regardless of where it is defined.
20326
20327 2005-08-13  Romain Francoise  <romain@orebokech.com>
20328
20329         * message.el (message-cite-original-1): New function.
20330         (message-cite-original): Use it.
20331         (message-cite-original-without-signature): Ditto.
20332
20333 2005-08-08  Romain Francoise  <romain@orebokech.com>
20334
20335         * message.el (message-yank-empty-prefix): New variable.
20336         (message-indent-citation): Use it.
20337         (message-cite-original-without-signature): Respect X-No-Archive.
20338
20339 2005-08-08  Simon Josefsson  <jas@extundo.com>
20340
20341         * pgg.el: Autoload url-insert-file-contents instead of loading
20342         w3/url.
20343         (pgg-insert-url-with-w3): Don't load url here.
20344
20345 2005-08-07  Jesper Harder  <harder@phys.au.dk>
20346
20347         * message.el (message-kill-to-signature): Don't insert newline at
20348         bol.
20349         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
20350
20351 2005-08-06  Romain Francoise  <romain@orebokech.com>
20352
20353         * message.el (message-user-fqdn): Fix typo in docstring.
20354
20355 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
20356
20357         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
20358
20359         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
20360
20361 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20362
20363         * mm-bodies.el (mm-encode-body): Use coding system rather than
20364         charset to encode text.
20365
20366         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
20367         number of charsets if utf-8 is available (XEmacs).
20368
20369 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
20370
20371         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
20372         taken from `gnus-button-mid-or-mail-regexp'.
20373         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
20374         (gnus-button-alist): Improve regexp for domain part of the MIDs
20375         for news:localpart@domain buttons.
20376         (gnus-button-ctan-directory-regexp): Update.
20377
20378 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20379
20380         * sieve-manage.el (sieve-manage-interactive-login):
20381         Use make-local-variable rather than make-variable-buffer-local.
20382         (sieve-manage-open): Ditto.
20383         (sieve-manage-authenticate): Ditto.
20384
20385         * mml.el (mml-generate-mime-1): Make the content type default to
20386         text/plain if the filename is not specified.
20387
20388 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20389
20390         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
20391         instead of insert-buffer.
20392
20393         * message.el (message-yank-original): Ditto; set the mark at the
20394         end of the yanked message.
20395
20396 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
20397
20398         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
20399         lines to scroll rather than to stop it.
20400
20401         * mml.el (mml-generate-default-type): Add doc string.
20402         (mml-generate-mime-1): Use mm-default-file-encoding or make it
20403         default to application/octet-stream when determining the content
20404         type if it is not specified for the part or the mml contents; add
20405         a comment about mml-generate-default-type.
20406
20407 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
20408
20409         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
20410         make it default to application/octet-stream when determining the
20411         content type if it is not specified for the external contents.
20412
20413 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
20414
20415         * rfc2231.el (rfc2231-parse-string): Take care that not only a
20416         segmented parameter but also other parameters might be there.
20417
20418 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20419
20420         * mm-decode.el (mm-display-external): Delete temp file, directory
20421         and buffer immediately if the external process is exited.
20422
20423 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
20424
20425         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
20426         fewer lines than that of scroll-margin.
20427         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
20428
20429 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
20430
20431         * gnus-art.el (gnus-article-next-page): Revert.
20432         (gnus-article-beginning-of-window): New macro.
20433         (gnus-article-next-page-1): Use it.
20434         (gnus-article-prev-page): Ditto.
20435         (gnus-article-edit-part): Use insert-buffer-substring instead of
20436         insert-buffer.
20437         (gnus-article-edit-exit): Ditto.
20438
20439         * gnus-util.el (gnus-beginning-of-window): Remove.
20440         (gnus-end-of-window): Remove.
20441
20442         * lpath.el: Don't bind header-line-format and scroll-margin.
20443
20444 2005-07-25  Simon Josefsson  <jas@extundo.com>
20445
20446         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
20447         to have the url package without w3.  Reported by Daiki Ueno
20448         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
20449
20450 2005-07-20  Didier Verna  <didier@xemacs.org>
20451
20452         * gnus-diary.el: Remove the description comment (nndiary is now
20453         properly documented in the Gnus manual).
20454         Fix the spelling of "Back End".
20455         * nndiary.el: Ditto.
20456         Fix the copyright notice.
20457
20458 2005-07-18  Romain Francoise  <romain@orebokech.com>
20459
20460         * gnus-sum.el (gnus-summary-to-prefix)
20461         (gnus-summary-newsgroup-prefix): New variables.
20462         (gnus-summary-from-or-to-or-newsgroups): Use them.
20463
20464 2005-07-17  Romain Francoise  <romain@orebokech.com>
20465
20466         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
20467         space as it's generally not especially interesting to the user.
20468
20469 2005-07-16  Romain Francoise  <romain@orebokech.com>
20470
20471         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
20472         nil to avoid prompting and file modification if one of the
20473         messages at the top of the nnfolder file contains a copyright
20474         notice.
20475         Update copyright notice.
20476
20477         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
20478         instead of `current-time-string' as the latter creates a time
20479         string that is not RFC 2822 compliant (it lacks the zone).
20480         Update copyright notice.
20481
20482 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
20483
20484         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
20485         for text/rtf.  Display default in prompt.  Pass default for M-n.
20486
20487         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
20488
20489 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20490
20491         * gnus-msg.el (gnus-button-mailto):
20492         Remove save-selected-window-window hackery because it relies on
20493         save-selected-window internals.
20494
20495 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
20496
20497         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
20498         (gnus-article-next-page-1): Use gnus-beginning-of-window.
20499         (gnus-article-prev-page): Ditto.
20500
20501         * gnus-util.el (gnus-beginning-of-window): New function.
20502         (gnus-end-of-window): New function.
20503
20504         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
20505
20506 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
20507
20508         * gnus-score.el (gnus-score-edit-all-score):
20509         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
20510         gnus-message.
20511
20512 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20513
20514         * gnus-msg.el (gnus-button-mailto):
20515         Remove save-selected-window-window hackery because it relies on
20516         save-selected-window internals.
20517
20518 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20519
20520         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
20521         add-minor-mode.
20522         (gnus-binary-mode): Ditto.
20523
20524         * gnus-topic.el (gnus-topic-mode): Ditto.
20525
20526 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
20527
20528         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
20529         (gnus-article-prev-page): Take scroll-margin into consideration.
20530
20531 2005-07-04  Lute Kamstra  <lute@gnu.org>
20532
20533         Update FSF's address in GPL notices.
20534
20535 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
20536
20537         * gnus.el (gnus-exit):
20538         * gnus-group.el (gnus-group-icons):
20539         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
20540
20541         * gnus-nocem.el (gnus-nocem):
20542         * message.el (message-various, message-buffers, message-sending)
20543         (message-interface, message-forwarding, message-insertion)
20544         (message-headers, message-news, message-mail):
20545         * pgg-gpg.el (pgg-gpg):
20546         * pgg-parse.el (pgg-parse):
20547         * pgg-pgp.el (pgg-pgp):
20548         * pgg-pgp5.el (pgg-pgp5):
20549         * pop3.el (pop3): Finish `defgroup' description with period.
20550
20551 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20552
20553         * gnus-art.el (article-display-face): Improve the efficiency.
20554         (article-display-x-face): Ditto; remove gray x-face stuff.
20555
20556 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20557
20558         * gnus-art.el (article-display-face): Correct the position in
20559         which Faces are inserted.
20560
20561 2005-06-29  Didier Verna  <didier@xemacs.org>
20562
20563         * gnus-art.el (article-display-face): Display faces in correct
20564         order.
20565
20566 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
20567
20568         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
20569         (gnus-fill-real-hashtb): Use hash table instead of obarray.
20570         (gnus-nocem-check-article): Fetch the Type header.
20571         (gnus-nocem-message-wanted-p): Fix the way to examine types.
20572         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
20573         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
20574         make sure gnus-nocem-hashtb is initialized.
20575         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
20576         (gnus-nocem-unwanted-article-p): Ditto.
20577
20578         * pgg.el (pgg-verify): Return the verification result.
20579
20580 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20581
20582         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
20583         is ascii.
20584
20585 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
20586
20587         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
20588         `show-nonbreak-escape'.
20589
20590 2005-06-23  Lute Kamstra  <lute@gnu.org>
20591
20592         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
20593
20594         * dig.el (dig-mode):
20595         * smime.el (smime-mode): Use gnus-run-mode-hooks.
20596
20597 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
20598
20599         * nnimap.el (nnimap-split-download-body): Fix spellings.
20600
20601 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
20602
20603         * gnus-art.el (gnus-article-encrypt-body):
20604         * gnus-cus.el (gnus-score-customize):
20605         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
20606         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
20607
20608 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
20609
20610         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
20611         header by looking for magic "MII" at the beginning.
20612
20613 2005-06-16  Miles Bader  <miles@gnu.org>
20614
20615         * gnus-xmas.el (gnus-xmas-group-startup-message):
20616         Use renamed gnus-splash face.
20617
20618         * assistant.el (assistant-field): Remove "-face" suffix from face name.
20619         (assistant-field-face): New backward-compatibility alias for renamed
20620         face.
20621         (assistant-render-text): Use renamed assistant-field face.
20622
20623         * spam.el (spam): Remove "-face" suffix from face name.
20624         (spam-face): New backward-compatibility alias for renamed face.
20625         (spam-face, spam-initialize): Use renamed spam face.
20626
20627         * message.el (message-header-to, message-header-cc)
20628         (message-header-subject, message-header-newsgroups)
20629         (message-header-other, message-header-name)
20630         (message-header-xheader, message-separator, message-cited-text)
20631         (message-mml): Remove "-face" suffix from face names.
20632         (message-header-to-face, message-header-cc-face)
20633         (message-header-subject-face, message-header-newsgroups-face)
20634         (message-header-other-face, message-header-name-face)
20635         (message-header-xheader-face, message-separator-face)
20636         (message-cited-text-face, message-mml-face):
20637         New backward-compatibility aliases for renamed faces.
20638         (message-font-lock-keywords): Use renamed message faces.
20639
20640         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
20641         (sieve-test-commands, sieve-tagged-arguments):
20642         Remove "-face" suffix from face names.
20643         (sieve-control-commands-face, sieve-action-commands-face)
20644         (sieve-test-commands-face, sieve-tagged-arguments-face):
20645         New backward-compatibility aliases for renamed faces.
20646         (sieve-control-commands-face, sieve-action-commands-face)
20647         (sieve-test-commands-face, sieve-tagged-arguments-face):
20648         Use renamed sieve faces.
20649
20650         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
20651         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
20652         (gnus-group-news-3-empty, gnus-group-news-4)
20653         (gnus-group-news-4-empty, gnus-group-news-5)
20654         (gnus-group-news-5-empty, gnus-group-news-6)
20655         (gnus-group-news-6-empty, gnus-group-news-low)
20656         (gnus-group-news-low-empty, gnus-group-mail-1)
20657         (gnus-group-mail-1-empty, gnus-group-mail-2)
20658         (gnus-group-mail-2-empty, gnus-group-mail-3)
20659         (gnus-group-mail-3-empty, gnus-group-mail-low)
20660         (gnus-group-mail-low-empty, gnus-summary-selected)
20661         (gnus-summary-cancelled, gnus-summary-high-ticked)
20662         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
20663         (gnus-summary-high-ancient, gnus-summary-low-ancient)
20664         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
20665         (gnus-summary-low-undownloaded)
20666         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
20667         (gnus-summary-low-unread, gnus-summary-normal-unread)
20668         (gnus-summary-high-read, gnus-summary-low-read)
20669         (gnus-summary-normal-read, gnus-splash):
20670         Remove "-face" suffix from face names.
20671         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
20672         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
20673         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
20674         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
20675         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
20676         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
20677         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
20678         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
20679         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
20680         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
20681         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
20682         (gnus-summary-selected-face, gnus-summary-cancelled-face)
20683         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
20684         (gnus-summary-normal-ticked-face)
20685         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
20686         (gnus-summary-normal-ancient-face)
20687         (gnus-summary-high-undownloaded-face)
20688         (gnus-summary-low-undownloaded-face)
20689         (gnus-summary-normal-undownloaded-face)
20690         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
20691         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
20692         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
20693         (gnus-splash-face):
20694         New backward-compatibility aliases for renamed faces.
20695         (gnus-group-startup-message): Use renamed gnus faces.
20696
20697         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
20698         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
20699         (gnus-server-agent): Remove "-face" suffix from face names.
20700         (gnus-server-agent-face, gnus-server-opened-face)
20701         (gnus-server-closed-face, gnus-server-denied-face)
20702         (gnus-server-offline-face):
20703         New backward-compatibility aliases for renamed faces.
20704         (gnus-server-agent-face, gnus-server-opened-face)
20705         (gnus-server-closed-face, gnus-server-denied-face)
20706         (gnus-server-offline-face): Use renamed gnus faces.
20707
20708         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
20709         Remove "-face" suffix from face names.
20710         (gnus-picon-xbm-face, gnus-picon-face):
20711         New backward-compatibility aliases for renamed faces.
20712
20713         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
20714         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
20715         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
20716         (gnus-cite-11): Remove "-face" suffix from face names.
20717         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
20718         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
20719         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
20720         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
20721         New backward-compatibility aliases for renamed faces.
20722         (gnus-cite-attribution-face, gnus-cite-face-list)
20723         (gnus-article-boring-faces): Use renamed gnus faces.
20724
20725         * gnus-art.el (gnus-signature, gnus-header-from)
20726         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
20727         (gnus-header-content): Remove "-face" suffix from face names.
20728         (gnus-signature-face, gnus-header-from-face)
20729         (gnus-header-subject-face, gnus-header-newsgroups-face)
20730         (gnus-header-name-face, gnus-header-content-face):
20731         New backward-compatibility aliases for renamed faces.
20732         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
20733
20734         * gnus-sum.el (gnus-summary-selected-face)
20735         (gnus-summary-highlight): Use renamed gnus faces.
20736         * gnus-group.el (gnus-group-highlight): Likewise.
20737
20738 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
20739
20740         * gnus-sieve.el (gnus-sieve-article-add-rule):
20741         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
20742         * spam-stat.el (spam-stat-buffer-change-to-spam)
20743         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
20744
20745         * message.el (message-is-yours-p):
20746         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
20747
20748 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20749
20750         * mm-view.el (mm-inline-text): Withdraw the last change.
20751
20752 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
20753
20754         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
20755         executing enriched-decode.
20756
20757 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20758
20759         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
20760         charset of tar files.
20761
20762 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
20763
20764         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
20765
20766 2005-06-04  Lute Kamstra  <lute@gnu.org>
20767
20768         * nnfolder.el (nnfolder-read-folder): Make sure that undo
20769         information is never recorded.
20770
20771 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
20772
20773         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
20774
20775 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20776
20777         * pop3.el (pop3-apop): Run md5 in the binary mode.
20778
20779         * starttls.el (starttls-set-process-query-on-exit-flag):
20780         Use eval-and-compile.
20781
20782 2005-05-31  Simon Josefsson  <jas@extundo.com>
20783
20784         * smime.el (smime-replace-in-string): Define.
20785         (smime-cert-by-ldap-1): Use it.
20786
20787 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
20788
20789         * gnus-art.el (article-display-x-face): Replace
20790         process-kill-without-query by gnus-set-process-query-on-exit-flag.
20791
20792         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
20793         set-process-query-on-exit-flag or process-kill-without-query.
20794
20795         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
20796         loop instead of replace-regexp.
20797
20798         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
20799         instead of process-kill-without-query if it is available.
20800
20801         * lpath.el: Fbind ldap-search-entries.
20802
20803         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
20804         instead of find-file-hooks if it is available.
20805
20806         * mml1991.el: Bind pgg-default-user-id when compiling.
20807
20808         * mml2015.el: Bind pgg-default-user-id when compiling.
20809
20810         * nndraft.el (nndraft-request-associate-buffer):
20811         Use write-contents-functions instead of write-contents-hooks if it is
20812         available.
20813
20814         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
20815         instead of find-file-hooks if it is available.
20816
20817         * nntp.el (nntp-open-connection): Replace
20818         process-kill-without-query by gnus-set-process-query-on-exit-flag.
20819         (nntp-open-ssl-stream): Ditto.
20820         (nntp-open-tls-stream): Ditto.
20821
20822         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
20823         set-process-query-on-exit-flag or process-kill-without-query.
20824         (starttls-open-stream-gnutls): Use it instead of
20825         process-kill-without-query.
20826         (starttls-open-stream): Ditto.
20827
20828 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
20829
20830         * smime.el (smime-cert-by-ldap-1): Don't use
20831         replace-regexp-in-string.
20832
20833 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
20834
20835         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
20836
20837         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
20838         in PEM format.  Adjust to the XEmacs compatibility.
20839
20840 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
20841
20842         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
20843         by `string-to-number'.
20844         * gnus-agent.el (gnus-agent-regenerate-group)
20845         (gnus-agent-fetch-articles): Ditto.
20846         * gnus-art.el (gnus-button-fetch-group): Ditto.
20847         * gnus-cache.el (gnus-cache-generate-active)
20848         (gnus-cache-articles-in-group): Ditto.
20849         * gnus-group.el (gnus-group-set-current-level)
20850         (gnus-group-insert-group-line): Ditto.
20851         * gnus-score.el (gnus-score-set-expunge-below)
20852         (gnus-score-set-mark-below, gnus-summary-score-effect)
20853         (gnus-summary-score-entry): Ditto.
20854         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
20855         (gnus-soup-pack): Ditto.
20856         * gnus-spec.el (gnus-xmas-format): Ditto.
20857         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
20858         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
20859         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
20860         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
20861         * nndb.el (nndb-get-remote-expire-response): Ditto.
20862         * nndiary.el (nndiary-parse-schedule-value)
20863         (nndiary-string-to-number, nndiary-request-replace-article)
20864         (nndiary-request-article): Ditto.
20865         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
20866         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
20867         * nneething.el (nneething-make-head): Ditto.
20868         * nnfolder.el (nnfolder-request-article)
20869         (nnfolder-retrieve-headers): Ditto.
20870         * nnheader.el (nnheader-file-to-number): Ditto.
20871         * nnkiboze.el (nnkiboze-request-article): Ditto.
20872         * nnmail.el (nnmail-process-unix-mail-format)
20873         (nnmail-process-babyl-mail-format): Ditto.
20874         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
20875         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
20876         (nnmh-request-create-group, nnmh-request-list-1)
20877         (nnmh-request-group, nnmh-request-article): Ditto.
20878         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
20879         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
20880         * nnsoup.el (nnsoup-make-active): Ditto.
20881         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
20882         * nntp.el (nntp-find-group-and-number)
20883         (nntp-retrieve-headers-with-xover): Ditto.
20884         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
20885         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
20886         (pgg-format-key-identifier): Ditto.
20887         * pop3.el (pop3-last, pop3-stat): Ditto.
20888         * qp.el (quoted-printable-decode-region): Ditto.
20889
20890         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
20891         of concat.
20892
20893 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20894
20895         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
20896
20897         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
20898
20899         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
20900
20901         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
20902
20903         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
20904
20905         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
20906
20907         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
20908         (gnus-carpal-mode): Ditto.
20909
20910         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
20911         (gnus-browse-mode): Ditto.
20912
20913         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
20914
20915         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
20916
20917 2005-05-29  Richard M. Stallman  <rms@gnu.org>
20918
20919         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
20920
20921 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
20922
20923         * gnus-util.el (gnus-run-mode-hooks): New function.
20924
20925         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
20926
20927         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
20928         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
20929
20930 2005-05-27  Lute Kamstra  <lute@gnu.org>
20931
20932         * dns-mode.el (dns-mode): Specify customization group.
20933
20934 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
20935
20936         * gnus-agent.el (gnus-agent-make-mode-line-string):
20937         Use mode-line-highlight as mouse-face.
20938
20939 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
20940
20941         * canlock.el (canlock): Change the parent group to news.
20942
20943         * deuglify.el (gnus-outlook-deuglify): Add :group.
20944
20945         * dig.el (dig): Add :group.
20946
20947         * dns-mode.el (dns-mode): Add :group.
20948
20949         * encrypt.el (encrypt): Add :group.
20950
20951         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
20952         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
20953         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
20954         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
20955         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
20956
20957         * gnus-diary.el (gnus-diary): Add :group.
20958
20959         * gnus.el (gnus-group-news-1-face): Add :group.
20960         (gnus-group-news-1-empty-face): Ditto.
20961         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
20962         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
20963         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
20964         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
20965         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
20966         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
20967         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
20968         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
20969         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
20970         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
20971         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
20972         (gnus-summary-high-ticked-face): Ditto.
20973         (gnus-summary-low-ticked-face): Ditto.
20974         (gnus-summary-normal-ticked-face): Ditto.
20975         (gnus-summary-high-ancient-face): Ditto.
20976         (gnus-summary-low-ancient-face): Ditto.
20977         (gnus-summary-normal-ancient-face): Ditto.
20978         (gnus-summary-high-undownloaded-face): Ditto.
20979         (gnus-summary-low-undownloaded-face): Ditto.
20980         (gnus-summary-normal-undownloaded-face): Ditto.
20981         (gnus-summary-high-unread-face): Ditto.
20982         (gnus-summary-low-unread-face): Ditto.
20983         (gnus-summary-normal-unread-face): Ditto.
20984         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
20985         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
20986
20987         * hashcash.el (hashcash): New custom group.
20988         (hashcash-default-payment): Add :group.
20989         (hashcash-payment-alist): Ditto.
20990         (hashcash-default-accept-payment): Ditto.
20991         (hashcash-accept-resources): Ditto.
20992         (hashcash-path): Ditto.
20993         (hashcash-extra-generate-parameters): Ditto.
20994         (hashcash-double-spend-database): Ditto.
20995         (hashcash-in-news): Ditto.
20996
20997         * message.el (message-minibuffer-local-map): Add :group.
20998
20999         * netrc.el (netrc): Add :group.
21000
21001         * sieve-manage.el (sieve-manage-log): Add :group.
21002         (sieve-manage-default-user): Diito.
21003         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
21004         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
21005         (sieve-manage-authenticators): Ditto.
21006         (sieve-manage-authenticator-alist): Ditto.
21007         (sieve-manage-default-port): Ditto.
21008
21009         * sieve-mode.el (sieve-control-commands-face): Add :group.
21010         (sieve-action-commands-face): Ditto.
21011         (sieve-test-commands-face): Ditto.
21012         (sieve-tagged-arguments-face): Ditto.
21013
21014         * smime.el (smime): Add :group.
21015
21016         * spam-report.el (spam-report): Add :group.
21017
21018         * spam.el (spam, spam-face): Add :group.
21019
21020 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21021
21022         * nntp.el (nntp-next-result-arrived-p): Some news servers may
21023         return \n.\n.\n at the end of articles.  Protect against that.
21024         (nntp-with-open-group): Allow debugging.
21025
21026         * nnheader.el (mail-header-set-extra): Make into a function
21027         because I just could't understand how to quote the list properly.
21028
21029         * dns.el (query-dns-cached): New function.
21030
21031 2005-05-26  Lute Kamstra  <lute@gnu.org>
21032
21033         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
21034
21035 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
21036
21037         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
21038
21039         * gnus-art.el: Don't autoload mail-extract-address-components.
21040
21041         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
21042         eval-and-compile to evaluate it.
21043
21044         * hashcash.el: Don't autoload executable-find.
21045
21046         * nndb.el: Don't declare the nndb back end two or more times; don't
21047         autoload news-reply-mode, news-setup, cancel-timer and telnet.
21048
21049         * nntp.el: Autoload format-spec instead of format; use
21050         eval-and-compile to evaluate autoload forms.
21051
21052 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
21053
21054         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
21055
21056 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21057
21058         * gnus.el (gnus-version-number): Bump version.
21059
21060 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
21061
21062         * gnus.el: No Gnus v0.3 is released.
21063
21064 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21065
21066         * lpath.el (featurep): Bind show-nonbreak-escape.
21067
21068 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21069
21070         * gnus-art.el (gnus-article-edit-part): Disable undo.
21071
21072 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
21073
21074         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
21075         gnus-article-date-lapsed-new-header is t if date timer is active;
21076         skip headers in which the original date value is empty.
21077         (gnus-article-save-original-date): Redefine it as a macro.
21078         (gnus-display-mime): Use it.
21079
21080 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
21081
21082         * gnus-art.el (article-date-ut): Support converting date in
21083         forwarded parts as well.
21084         (gnus-article-save-original-date): New function.
21085         (gnus-display-mime): Use it.
21086
21087 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
21088
21089         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
21090         enclosure element of <item>.
21091
21092 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
21093
21094         * message.el (message-kill-buffer-query): Rename from
21095         `message-kill-buffer-query-if-modified'.  Add :version.
21096
21097 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21098
21099         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
21100         window layout.
21101
21102 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
21103
21104         * mml.el: Autoload dnd when compiling.
21105
21106 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
21107
21108         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
21109         x-dnd-*.
21110
21111 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
21112
21113         * qp.el (quoted-printable-encode-region): Save excursion.
21114
21115 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
21116
21117         * message.el (message-kill-buffer-query-if-modified): Add new variable
21118         so the user can kill a modified message buffer quickly.
21119         (message-kill-buffer): Use it.
21120
21121 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21122
21123         * lpath.el: Fbind display-time-event-handler; don't fbind
21124         string-to-multibyte.
21125
21126         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
21127
21128 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21129
21130         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
21131         contained in text because xml.el decodes entities) with LFs.
21132
21133 2005-04-11  Lute Kamstra  <lute@gnu.org>
21134
21135         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
21136         differently.
21137
21138 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21139
21140         * mm-util.el (mm-detect-coding-region): Typo.
21141
21142 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
21143
21144         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
21145
21146 2005-04-06  Deepak Goel  <deego@gnufans.org>
21147
21148         * spam-stat.el (spam-stat-score-buffer): Add a call to a
21149         user-function allow user modifications of the scores.
21150         (spam-stat-score-buffer-user): New function, to allow
21151         user-computed modifications to the score.
21152         (spam-stat-score-buffer-user-functions): List of additional
21153         scoring functions.
21154         (spam-stat-error-holder): Global temporary error holder.
21155         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
21156         variable.
21157
21158 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
21159
21160         * gnus-registry.el (gnus-registry-clean-empty-function)
21161         (gnus-registry-trim, gnus-registry-fetch-groups)
21162         (gnus-registry-delete-group): Groups that match
21163         `gnus-registry-ignored-groups' are removed from the registry
21164         entries, not just ignored for splitting.  This helps clean up the
21165         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
21166         to get all the groups a message ID is in.
21167
21168         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
21169         (spam-stat-split-fancy): Change "threshhold" to "threshold".
21170         (spam-stat-score-buffer-user-functions): Add :number custom type.
21171
21172 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21173
21174         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
21175         argument in XEmacs.
21176
21177         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
21178         (nnrss-request-group): Decode group name first.
21179         (nnrss-request-article): Make a text/plain article if mml-to-mime
21180         failed.
21181         (nnrss-get-encoding): Return a compatible encoding according to
21182         nnrss-compatible-encoding-alist.
21183         (nnrss-find-el): Use consp instead of listp.
21184         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
21185
21186 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21187
21188         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
21189         which Emacs 20 doesn't support.
21190         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
21191
21192 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
21193
21194         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
21195         silence the byte compiler inside the defun.
21196
21197         * gnus-demon.el (parse-time-string): Add autoload.
21198
21199         * gnus-delay.el (parse-time-string): Add autoload.
21200
21201         * gnus-art.el (parse-time-string): Add autoload.
21202
21203         * nnultimate.el (parse-time): Require for `parse-time-string'.
21204
21205 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
21206
21207         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
21208
21209         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
21210
21211         * smime.el (smime-ldap-host-list): Add :version.
21212
21213 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
21214
21215         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
21216         pass it to `gnus-browse-read-group'.
21217         (gnus-browse-read-group): Add NUMBER argument and pass it to
21218         `gnus-group-read-ephemeral-group'.
21219
21220         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
21221         argument and pass it to `gnus-group-read-group'.
21222
21223 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
21224
21225         * mm-util.el (mm-xemacs-find-mime-charset): Only call
21226         mm-xemacs-find-mime-charset-1 if we have the mule feature
21227         available at runtime.
21228
21229 2005-03-25  Werner Lemberg  <wl@gnu.org>
21230
21231         * nnmaildir.el: Replace `illegal' with `invalid'.
21232
21233 2005-03-23  Lute Kamstra  <lute@gnu.org>
21234
21235         * time-date.el: Add comment on time value formats.
21236         Don't require parse-time.
21237         (with-decoded-time-value): New macro.
21238         (encode-time-value): New function.
21239         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
21240         (days-to-time): Return a valid time value when arg is huge.
21241         (time-since): Use time-subtract.
21242         (time-to-number-of-days): Use time-to-seconds.
21243
21244 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
21245
21246         * gnus-start.el (gnus-display-time-event-handler):
21247         Check display-time-timer at runtime rather than only at load time
21248         in case display-time-mode is turned off in the mean time.
21249
21250 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
21251
21252         * nnimap.el (nnimap-open-connection): Print which authinfo file is
21253         used.
21254
21255         * nneething.el (nneething-map-file-directory): Derive from
21256         `gnus-directory'.
21257
21258         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
21259         the To/Cc button.
21260
21261 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
21262
21263         * nnmaildir.el (nnmaildir-request-accept-article):
21264         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
21265
21266 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
21267
21268         * gnus-async.el: Require timer-funcs at compile time when in
21269         XEmacs for `run-with-idle-timer'.
21270
21271 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
21272
21273         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
21274         autoloaded function.
21275
21276 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21277
21278         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
21279
21280 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
21281
21282         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
21283
21284 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21285
21286         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
21287         Add gnus-expert-user to default.
21288
21289 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
21290
21291         * nnimap.el (nnimap-open-server): Ditto.
21292
21293         * imap.el (imap-authenticate): Fix typo.
21294
21295 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
21296
21297         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
21298         buffer (since IMAP server might return FETCH response out of
21299         order, and the nntp buffer must be sorted).
21300
21301 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
21302
21303         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
21304         comparison on string.
21305
21306         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
21307         (gnus-agent-score): Rename category keywords to match gnus-cus.
21308         (gnus-agent-summary-fetch-series): Modify to protect against
21309         gnus-agent-summary-fetch-group clearing processable flags.
21310         (gnus-agent-synchronize-group-flags): Update live group buffer as
21311         synchronization may occur due to the user toggle the plugged
21312         status.
21313         (gnus-agent-fetch-group-1): Clear downloadable flag when article
21314         successfully downloaded.
21315         (gnus-agent-expire-group-1): Avoid using markers when the overview
21316         is in ascending order; greatly improves performance.
21317         (gnus-agent-regenerate-group):
21318         Use gnus-agent-synchronize-group-flags to reset read status in both
21319         gnus and server.
21320         (gnus-agent-update-files-total-fetched-for): Fix initial size.
21321
21322 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
21323
21324         * message.el: Don't autoload former message-utils variables.
21325         (message-strip-subject-trailing-was): Change doc string.
21326
21327         * nnweb.el: Fixes for `gnus-group-make-web-group'.
21328         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
21329         (nnweb-google-search): Add "hl=en" here.
21330         (nnweb-google-parse-1, nnweb-google-create-mapping):
21331         Don't hardcode URL.
21332
21333 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
21334
21335         * message.el (message-get-reply-headers, message-followup):
21336         Mention related variables `message-use-followup-to' and
21337         `message-use-mail-followup-to', in the information buffer.
21338
21339         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
21340         of broken groups(-beta).google.com.
21341
21342 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
21343
21344         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
21345         parameter to invoked gnus-request-move-article; remove the
21346         redundant gnus-sum-hint-move-is-internal variable; apply the marks
21347         all at once instead of once per article.
21348         (gnus-summary-remove-process-mark): Accept a list of articles as
21349         well as a single article for processing.
21350
21351         * gnus-int.el (gnus-request-move-article): Add move-is-internal
21352         parameter.
21353
21354         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
21355
21356         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
21357
21358         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
21359         parameter.
21360
21361         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
21362         parameter.
21363
21364         * nnimap.el (nnimap-request-move-article): Add move-is-internal
21365         parameter and remove the gnus-sum-hint-move-is-internal variable.
21366
21367         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
21368         parameter.
21369
21370         * nndraft.el (nndraft-request-move-article): Add move-is-internal
21371         parameter.
21372
21373         * nndiary.el (nndiary-request-move-article): Add move-is-internal
21374         parameter.
21375
21376         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
21377
21378         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
21379         parameter.
21380
21381         * nnagent.el (nnagent-request-move-article): Add move-is-internal
21382         parameter.
21383
21384 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21385
21386         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
21387         a more conservative way.
21388
21389 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
21390
21391         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
21392         buffer, so it moves the window's cursor.
21393
21394 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
21395
21396         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
21397         `mm-dissect-multipart' and receive the from field as an (optional)
21398         argument from `mm-dissect-multipart'.
21399         (mm-dissect-multipart): Receive the from field as an argument and
21400         pass it on when we call `mm-dissect-buffer' on MIME parts.
21401         Fixes verification/decryption of signed/encrypted MIME parts.
21402
21403 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
21404
21405         * gnus-sum.el (gnus-summary-move-article):
21406         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
21407         whatever it calls (right now, only nnimap-request-move article
21408         respects it).
21409
21410         * nnimap.el (nnimap-request-move-article):
21411         When gnus-sum-hint-move-is-internal is set, don't do the extra
21412         nnimap-request-article.
21413
21414 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
21415
21416         * nnheader.el (nnheader-find-file-noselect): Add doc string.
21417
21418         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
21419         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
21420
21421         * gnus-sum.el (gnus-summary-caesar-message):
21422         Apply `gnus-treat-article' after rotation.
21423
21424         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
21425         doc string.
21426
21427 2005-02-22  Simon Josefsson  <jas@extundo.com>
21428
21429         * encrypt.el (encrypt-password-cache-expiry): Remove (use
21430         `password-cache-expiry' instead).  Reported by Arne Jørgensen
21431         <arne@arnested.dk>.
21432         (encrypt): Add password-cache and password-cache-expiry as group
21433         members.
21434
21435 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
21436
21437         * smime.el (smime-ldap-host-list): Doc fix.
21438         (smime-ask-passphrase): Use `password-read-and-add' to read (and
21439         cache) password.
21440         (smime-sign-region): Use it.
21441         (smime-decrypt-region): Use it.
21442         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
21443         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
21444         fails.
21445         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
21446         certificate from DER to PEM format rather than calling openssl.
21447
21448         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
21449
21450         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
21451         for signing/encryption.
21452
21453         * mml.el (mml-parse-1): Use them.
21454
21455 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
21456
21457         * nnrss.el (nnrss-verbose): Remove.
21458         (nnrss-request-group): Use `nnheader-message' instead.
21459
21460 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
21461
21462         * nnrss.el (nnrss-verbose): New variable.
21463         (nnrss-request-group): Make it say nnrss is requesting a group.
21464
21465 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
21466
21467         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
21468         Handle news URL with given port correctly.
21469
21470 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21471
21472         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
21473         containing special characters.
21474
21475         * gnus-sum.el (gnus-summary-edit-article): Ditto.
21476
21477         * mml.el (mime-to-mml): Ditto.
21478
21479         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
21480         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
21481         (rfc2047-decode-region): Quote decoded words containing special
21482         characters when rfc2047-quote-decoded-words-containing-tspecials
21483         is non-nil.
21484
21485 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
21486
21487         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
21488
21489         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
21490
21491 2005-02-15  Simon Josefsson  <jas@extundo.com>
21492
21493         * nnimap.el (nnimap-debug): Doc fix.
21494
21495         * imap.el (imap-debug): Doc fix.
21496
21497 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
21498
21499         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
21500
21501 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
21502
21503         * gnus.el (spam-contents): Improve docs for spam-contents
21504         parameter in its variable incarnation.
21505
21506 2005-02-14  Simon Josefsson  <jas@extundo.com>
21507
21508         * smime-ldap.el: Use require instead of load-library for ldap.
21509         (smime-ldap-search): Indent.
21510         (smime-ldap-search-internal): Shorten line.
21511
21512         * smime.el (smime-cert-by-dns): Add doc-string.
21513         (smime-cert-by-ldap-1): Indent.
21514
21515         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
21516         mml-smime-get-dns-ldap.
21517         (mml-smime-encrypt-query): Use new function.  Default to ldap.
21518
21519 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
21520
21521         * smime.el: Require smime-ldap.
21522         (smime-ldap-host-list): New variable.
21523         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
21524
21525         * mml-smime.el (mml-smime-encrypt-query): New function.
21526         (mml-smime-encrypt-query): Use it.
21527
21528         * smime-ldap.el: New file.
21529
21530 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21531
21532         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
21533
21534 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
21535
21536         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
21537         argument in doc string.  Make query for type more clear.
21538
21539 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
21540
21541         * gnus.el (gnus-group-startup-message): Search for gnus images in
21542         etc/images/gnus.
21543         * mm-util.el (mm-image-load-path): Likewise.
21544         * smiley.el (smiley-data-directory): Search for smilies in
21545         etc/images/smilies.
21546
21547 2005-02-09  Kim F. Storm  <storm@cua.dk>
21548
21549         Change Emacs release version from 21.4 to 22.1 throughout.
21550         Change Emacs development version from 21.3.50 to 22.0.50.
21551
21552 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21553
21554         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
21555
21556         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
21557         non-Mule XEmacs as well.
21558         (mm-decompress-buffer): Signal an error intentionally if it does
21559         not decompress compressed data because auto-compression-mode is
21560         disabled.
21561
21562 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
21563
21564         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
21565         an ID in the registry even if it has no groups.
21566
21567 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
21568
21569         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
21570         merge it into mm-decompress-buffer.
21571         (gnus-mime-copy-part): Use the MIME part charset, the value which
21572         a user specified or gnus-newsgroup-charset for decoding, like
21573         gnus-mime-inline-part does; set buffer-file-coding-system to tell
21574         save-buffer what was used.  Suggested by Kevin Ryde
21575         <user42@zip.com.au>.
21576         (gnus-mime-inline-part): Allow the name parameter as well as the
21577         filename parameter; force decompressing of compressed data; always
21578         display contents being not decoded as unibyte.
21579
21580         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
21581         as well as the filename parameter.
21582
21583         * mm-util.el (mm-decompress-buffer):
21584         Merge gnus-mime-jka-compr-maybe-uncompress.
21585         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
21586         of compressed data.
21587
21588 2005-02-08  Simon Josefsson  <jas@extundo.com>
21589
21590         * imap.el (imap-log): Doc fix.
21591
21592 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
21593
21594         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
21595         the coding cookies; decompress compressed parts.
21596
21597         * mml.el (mml-generate-mime-1): Add the charset parameter according
21598         to the value which a user specified manually or the coding cookie.
21599
21600         * mm-util.el (mm-string-to-multibyte): New function.
21601         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
21602         (mm-coding-system-to-mime-charset): New function.
21603         (mm-decompress-buffer): New function.
21604         (mm-find-buffer-file-coding-system): New function.
21605
21606         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
21607         (mm-display-inline-fontify): Rewrite for decoding and decompressing
21608         parts.
21609
21610 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
21611
21612         * mm-view.el (mm-display-inline-fontify): Decode a part according
21613         to the charset parameter.
21614
21615 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
21616
21617         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
21618         prefix arg is neither nil nor a number, as info specifies.
21619
21620 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
21621
21622         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
21623         timestamps.
21624
21625 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
21626
21627         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
21628         groups error checking and notify user.
21629
21630 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
21631
21632         * message.el (message-send-mail-function): Check existence of
21633         sendmail-program first before using default value
21634         `message-send-mail-with-sendmail'.  Otherwise use more generic
21635         `smtpmail-send-it'.
21636
21637 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21638
21639         * nntp.el (nntp-request-update-info): Always return nil.
21640
21641 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21642
21643         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
21644
21645 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
21646
21647         * message.el (message-beginning-of-line): Change the behavior when
21648         invoked between BOL and : so that it first moves backward.
21649
21650 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21651
21652         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
21653         article buffer when editing of the article is discarded.
21654         (gnus-article-prepare): Revert.
21655
21656 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21657
21658         * gnus-art.el (gnus-article-prepare):
21659         Remove message-strip-forbidden-properties from the local hook.
21660
21661 2005-01-27  Simon Josefsson  <jas@extundo.com>
21662
21663         * password.el (password-cache-add): Only start one timer per key.
21664         Reported by Derek Atkins <warlord@MIT.EDU>.
21665
21666 2005-01-26  Steve Youngs  <steve@sxemacs.org>
21667
21668         * run-at-time.el: Remove.  It is no longer needed as
21669         timer-funcs.el in the xemacs-base package has a working version of
21670         `run-at-time'.
21671
21672         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
21673
21674         * password.el: Require timer-funcs instead of run-at-time in
21675         XEmacs.
21676         Remove `password-run-at-time' macro.
21677         (password-cache-add): Use `run-at-time' instead of
21678         `password-run-at-time'.
21679
21680         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
21681         Remove `nnheader-cancel-function-timers' alias,
21682         `cancel-function-timers' exists in XEmacs in timer-funcs.
21683
21684         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
21685         for `run-with-idle-timer'.
21686
21687         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
21688         for `run-at-time'.
21689
21690         * mm-url.el: Require timer-funcs at compile time when in XEmacs
21691         for `with-timeout'.
21692
21693         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
21694         the same as for XEmacs 21.4.
21695         No need to ignore `run-with-idle-timer', this function exists in
21696         XEmacs now in timer-funcs.el in the xemacs-base package.
21697         (dgnushack-compile): No need to delete
21698         run-at-time.el from the list of files to compile because it
21699         doesn't exist anymore.
21700
21701 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
21702
21703         * mml.el (mml-generate-mime-1): Convert string into unibyte when
21704         inserting " *mml*" buffer's contents into a unibyte temp buffer.
21705
21706 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
21707
21708         * mail-source.el (mail-source-fetch-imap): Search for ^From case
21709         sensitively.
21710
21711 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
21712
21713         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
21714
21715 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21716
21717         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
21718         which will be inserted according to the multibyteness of a buffer
21719         rather than the type of contents.  Suggested by ARISAWA Akihiro
21720         <ari@mbf.ocn.ne.jp>.
21721
21722         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
21723         of string which old xml.el may return rather than a string.
21724
21725 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21726
21727         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
21728
21729 2005-01-16  Simon Josefsson  <jas@extundo.com>
21730
21731         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
21732         idn/idna.el isn't available.
21733         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
21734         <michael@waxrat.com>.
21735
21736         * hashcash.el: Remove non-FSF copyright header.
21737
21738         * hashcash.el (hashcash-extra-generate-parameters): New variable.
21739         (hashcash-generate-payment): Use it.
21740         (hashcash-generate-payment-async): Use it.
21741
21742 2005-01-15  Simon Josefsson  <jas@extundo.com>
21743
21744         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
21745         Suggested by Raymond Scholz <ray-2005@zonix.de>.
21746
21747         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
21748         gnus-summary-idna-message.
21749         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
21750         (gnus-summary-idna-message): New function.
21751
21752 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
21753
21754         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
21755         gnus-novice-user.
21756
21757 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21758
21759         * nnrss.el (nnrss-request-delete-group): Delete entries in
21760         nnrss-group-alist as well.
21761         (nnrss-save-server-data): Insert newline.
21762
21763 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
21764
21765         * gnus.el (gnus-user-agent): Use list of symbols instead of
21766         symbols.  Display full version number for (S)XEmacs.
21767         Optionally display (S)XEmacs codename.
21768
21769         * gnus-util.el (gnus-emacs-version): Update for new
21770         `gnus-user-agent'.
21771
21772         * gnus-msg.el (gnus-extended-version): Make it possible to omit
21773         Gnus version.
21774
21775 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
21776
21777         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
21778         which is unreadable in some setups.
21779
21780 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21781
21782         * gnus-spec.el (gnus-update-format-specifications): Flush the
21783         group format spec cache if it doesn't support decoded group names.
21784
21785 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
21786
21787         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
21788         Allow to apply decay on score files matching a regexp.
21789
21790 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
21791
21792         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
21793         compatibility in %g and %c.
21794
21795 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
21796
21797         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
21798         name for only %g and %c.
21799         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
21800         of gnus-tmp-group to decoded group name.
21801         (gnus-group-make-rss-group): Exclude `/'s from group names.
21802
21803 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21804
21805         * nnrss.el (nnrss-get-encoding): Fix regexp.
21806
21807 2004-12-27  Simon Josefsson  <jas@extundo.com>
21808
21809         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
21810         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
21811         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
21812
21813 2004-12-17  Kim F. Storm  <storm@cua.dk>
21814
21815         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
21816
21817         * gnus-sum.el (gnus-summary-mode-map): Likewise.
21818
21819 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
21820
21821         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
21822
21823 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
21824
21825         * nnrss.el: Require rfc2047 and mml.
21826         (nnrss-file-coding-system): New variable.
21827         (nnrss-format-string): Redefine it as an inline function.
21828         (nnrss-decode-group-name): New function.
21829         (nnrss-string-as-multibyte): Remove.
21830         (nnrss-retrieve-headers): Decode group name; don't use
21831         nnrss-format-string.
21832         (nnrss-request-group): Decode group name.
21833         (nnrss-request-article): Decode group name; allow a Message-ID as
21834         well as an article number; don't use nnrss-format-string; encode a
21835         Message-ID string which may contain non-ASCII characters; use
21836         mml-to-mime to compose a MIME article.
21837         (nnrss-request-expire-articles): Decode group name.
21838         (nnrss-request-delete-group): Decode group name.
21839         (nnrss-fetch): Clarify error message.
21840         (nnrss-read-server-data): Use insert-file-contents instead of load;
21841         bind file-name-coding-system; use multibyte buffer.
21842         (nnrss-save-server-data): Bind coding-system-for-write to the
21843         value of nnrss-file-coding-system; bind file-name-coding-system;
21844         add coding cookie.
21845         (nnrss-read-group-data): Use insert-file-contents instead of load;
21846         bind file-name-coding-system; use multibyte buffer.
21847         (nnrss-save-group-data): Bind coding-system-for-write to the
21848         value of nnrss-file-coding-system; bind file-name-coding-system.
21849         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
21850         make it work with non-ASCII text.
21851         (nnrss-find-el): Make it work with old xml.el as well.
21852
21853 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
21854
21855         * nnrss.el (nnrss-get-encoding): New function.
21856         (nnrss-fetch): Use unibyte buffer initially; bind
21857         coding-system-for-read while performing mm-url-insert; remove ^Ms;
21858         decode contents according to the encoding attribute.
21859         (nnrss-save-group-data): Add coding cookie.
21860         (nnrss-mime-encode-string): New function.
21861         (nnrss-check-group): Use it to encode subject and author.
21862
21863 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
21864
21865         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
21866         imaginary variable.
21867
21868 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
21869
21870         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
21871         correctly even if there are wide characters.
21872
21873 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
21874
21875         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
21876         downcased symbol names; make a new cache instead of reusing
21877         bbdb-hashtable.
21878
21879 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
21880
21881         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
21882         concatenating segments rather than before concatenating them.
21883         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
21884
21885         * message.el (message-get-reply-headers): Bind `extra'.
21886
21887 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21888
21889         * message.el (message-extra-wide-headers): New variable.
21890         (message-get-reply-headers): Use it.
21891
21892 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21893
21894         * gnus-agent.el (gnus-agent-group-path): Decode group name.
21895         (gnus-agent-group-pathname): Ditto.
21896
21897         * gnus-cache.el (gnus-cache-file-name): Decode group name.
21898
21899         * gnus-group.el (gnus-group-make-group): Decode group name.
21900         (gnus-group-make-rss-group): Register the group data after opening
21901         the nnrss group.
21902
21903 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
21904
21905         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
21906         by expiry now get marked as read.
21907
21908 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21909
21910         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
21911
21912 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
21913
21914         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
21915         unify Latin characters in XEmacs.
21916         (mm-find-mime-charset-region): Use it.
21917
21918 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21919
21920         * gnus-util.el (gnus-delete-directory): New function.
21921
21922         * gnus-agent.el (gnus-agent-delete-group): Use it.
21923
21924         * gnus-cache.el (gnus-cache-delete-group): Use it.
21925
21926 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
21927
21928         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
21929         names.
21930
21931 2004-12-16  Simon Josefsson  <jas@extundo.com>
21932
21933         * hashcash.el (hashcash-payment-alist): Fix custom :type.
21934
21935 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
21936
21937         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
21938
21939         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
21940         (gnus-group-set-current-level): Decode group name.
21941
21942 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
21943
21944         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
21945         failed.
21946
21947 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
21948
21949         * gnus-group.el (gnus-group-delete-group): Decode group name.
21950         (gnus-group-make-rss-group): Encode group name.
21951         (gnus-group-catchup-current): Decode group name.
21952         (gnus-group-kill-group): Decode group name.
21953
21954 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
21955
21956         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
21957
21958 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21959
21960         * gnus-group.el (gnus-group-make-rss-group):
21961         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
21962
21963         * gnus-start.el (gnus-setup-news): Honor user's setting to
21964         gnus-message-archive-method.  Suggested by Lute Kamstra
21965         <lute@gnu.org>.
21966
21967 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
21968
21969         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
21970         global counterparts of the buffer-local variables.
21971
21972 2004-11-16  Romain Francoise  <romain@orebokech.com>
21973
21974         * gnus-sum.el (gnus-summary-exit): Don't clear the global
21975         counterparts of the buffer-local variables.
21976
21977 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
21978
21979         * message.el (message-forbidden-properties): Fix typo in doc
21980         string.
21981
21982 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
21983
21984         * gnus-util.el (gnus-replace-in-string): Add doc string.
21985
21986         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
21987         to avoid problems when splitting mails with many recipients.
21988
21989 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
21990
21991         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
21992         pop-to-buffer, covered by the subsequent gnus-configure-windows.
21993
21994 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
21995
21996         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
21997         if there is no hashtable in memory or file modification time is
21998         newer than cached timestamp.
21999
22000 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
22001
22002         * gnus-sum.el (gnus-summary-limit-to-recipient):
22003         Implement not-matching option.
22004
22005 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
22006
22007         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
22008         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
22009         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
22010         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
22011         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
22012         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
22013
22014 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22015
22016         * message.el (message-forward-make-body-mml): Remove headers
22017         according to message-forward-ignored-headers if a message is decoded.
22018
22019 2004-12-02  Romain Francoise  <romain@orebokech.com>
22020
22021         * message.el (message-forward-make-body-plain): Always remove
22022         headers according to message-forward-ignored-headers.
22023
22024 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
22025
22026         * spam.el (spam-summary-prepare-exit): Remove the
22027         gnus-summary-limit pop for now, it has problems with ham marks for
22028         me.
22029
22030 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
22031
22032         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
22033         correctly.
22034
22035 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
22036
22037         * format-spec.el (format-spec): Message the char.
22038
22039 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
22040
22041         * gnus-art.el (gnus-split-methods): Reformat comments.
22042
22043         * spam.el (spam-summary-prepare-exit): Remove article limits
22044         before exiting the summary buffer.
22045
22046 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22047
22048         * lpath.el: Remove bbdb-create-internal, bbdb-records,
22049         spam-BBDB-register-routine and spam-enter-ham-BBDB.
22050
22051         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
22052         order to silence the byte compiler.
22053
22054         * spam.el: Fix the way to silence the byte compiler, which
22055         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
22056         bbdb-search-simple, spam-BBDB-register-routine,
22057         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
22058         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
22059         spam-stat-buffer-is-spam, spam-stat-load,
22060         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
22061         spam-stat-save and spam-stat-split-fancy.
22062
22063 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22064
22065         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
22066         which may confuse users.
22067         (canlock-password-for-verify): Ditto.
22068
22069         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
22070
22071         * gnus-art.el (gnus-emphasis-alist): Ditto.
22072
22073         * gnus-registry.el (gnus-registry-max-entries): Ditto.
22074
22075         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
22076
22077         * gnus-start.el (gnus-save-killed-list): Ditto.
22078
22079         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
22080         (gnus-sum-thread-tree-root): Ditto.
22081         (gnus-sum-thread-tree-false-root): Ditto.
22082         (gnus-sum-thread-tree-single-indent): Ditto.
22083
22084         * message.el (message-courtesy-message): Ditto.
22085         (message-archive-note): Ditto.
22086         (message-subscribed-address-file): Ditto.
22087         (message-user-fqdn): Ditto.
22088
22089         * spam-report.el (spam-report-gmane-regex): Ditto.
22090
22091         * spam.el (spam-blackhole-good-server-regex): Ditto.
22092
22093 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
22094
22095         * mml.el (mml-preview): Widen the message buffer before copying
22096         the contents to the preview buffer; sort headers before previewing.
22097
22098         * message.el (message-hidden-headers): Fix the way to avoid a bug
22099         in the `repeat' widget in Emacs 21.3 or earlier.
22100
22101 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
22102
22103         * message.el (message-hidden-headers): Default to "^References:".
22104         Improve customization type.  Suggested by Reiner Steib
22105         <Reiner.Steib@gmx.de>.
22106
22107 2004-11-25  Romain Francoise  <romain@orebokech.com>
22108
22109         * message.el (message-strip-forbidden-properties): Remove check for
22110         obsolete `message-hidden' text property, hidden headers are not
22111         accessible in the buffer anymore.
22112
22113 2004-11-22  Romain Francoise  <romain@orebokech.com>
22114
22115         * message.el (message-header-format-alist): Add `From' in list
22116         so that it can be sorted.
22117         (message-fix-before-sending): Widen and sort headers before
22118         sending.
22119         (message-hide-headers): Use narrowing to hide headers by moving
22120         them to the top of the buffer and narrowing to the region
22121         underneath.
22122
22123 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22124
22125         * message.el (message-strip-forbidden-properties):
22126         Bind buffer-read-only (etc) to nil.
22127
22128 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
22129
22130         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
22131         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
22132
22133 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
22134
22135         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
22136
22137 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22138
22139         * dns.el (query-dns): Use sit-for to time instead of
22140         accept-process-output, since that doesn't seem to work on udp
22141         sockets.
22142
22143 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
22144
22145         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
22146
22147 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
22148
22149         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
22150         doc string.  Improve doc string.
22151
22152 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
22153
22154         * nntp.el (nntp-request-update-info): Return nil if
22155         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
22156         may not call gnus-activate-group which uselessly issues the GROUP
22157         commands for all nntp groups and wastes time.  Reported by Romain
22158         Francoise <romain@orebokech.com>.
22159
22160         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
22161
22162 2004-11-15  Simon Josefsson  <jas@extundo.com>
22163
22164         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
22165         headers separately.
22166         (gnus-button-openpgp): New function, inspired by Jochen Küpper
22167         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
22168
22169 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
22170
22171         * gnus-start.el (gnus-convert-old-newsrc):
22172         Assign legacy-gnus-agent to 5.10.7.
22173
22174 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22175
22176         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
22177         start of the lines.
22178
22179 2004-11-14  Magnus Henoch  <mange@freemail.hu>
22180
22181         * hashcash.el (hashcash-default-payment): Change default to 20.
22182         (hashcash-default-accept-payment): Change default to 20.
22183         (hashcash-process-alist): New variable.
22184         (hashcash-generate-payment-async): Add.
22185         (hashcash-already-paid-p): Add.
22186         (hashcash-insert-payment): Don't generate payments twice.
22187         (hashcash-insert-payment-async): Add.
22188         (hashcash-insert-payment-async-2): Add.
22189         (hashcash-cancel-async): Add.
22190         (hashcash-wait-async): Add.
22191         (hashcash-processes-running-p): Add.
22192         (hashcash-wait-or-cancel): Add.
22193         (mail-add-payment): New optional argument.  Conditionally start
22194         asynchronous calculation.
22195         (mail-add-payment-async): Add.
22196
22197         * message.el (message-send-mail): Wait for asynchronous hashcash
22198         results.  Don't clobber existing X-Hashcash headers.
22199         (message-setup-1): Call mail-add-payment-async when
22200         message-generate-hashcash is non-nil.
22201
22202 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
22203
22204         * message.el (message-use-alternative-email-as-from): Examine the
22205         From header as well; use message-make-from in order to include a
22206         user's full name.
22207
22208 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
22209
22210         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
22211         default; improve customization type.
22212         (gnus-emphasis-custom-with-format): New macro.
22213         (gnus-emphasis-custom-value-to-external): New function.
22214         (gnus-emphasis-custom-value-to-internal): New function.
22215
22216 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22217
22218         * dns.el (query-dns): Resolve reverse addresses.
22219
22220 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22221
22222         * gnus-group.el (gnus-group-get-new-news): Use it.
22223
22224         * gnus-start.el (gnus-check-reasonable-setup): New function.
22225
22226 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
22227
22228         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
22229         "Args out of range" error.  Reported by Arnaud Giersch
22230         <arnaud.giersch@free.fr>.
22231
22232 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
22233
22234         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
22235
22236 2004-11-04  Richard M. Stallman  <rms@gnu.org>
22237
22238         * spam.el (spam group): Add :version.
22239
22240         * pgg-def.el (pgg group): Add :version.
22241
22242 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
22243
22244         * gnus-art.el (gnus-article-edit-article): Don't associate the
22245         article buffer with a draft file.  This is a temporary measure
22246         against the 2004-08-22 change to gnus-article-edit-mode.
22247
22248 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22249
22250         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
22251         (html2text-format-tags): Remove unused variable `attr'.
22252
22253 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
22254
22255         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
22256
22257         * tls.el (tls-process-connection-type, tls-success)
22258         (tls-certtool-program): Add :version.
22259
22260         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
22261         (starttls-extra-arguments, starttls-process-connection-type)
22262         (starttls-connect, starttls-failure, starttls-success): Add :version.
22263
22264         * spam-stat.el (spam-stat): Add :version.
22265
22266         * sieve.el (sieve): Add :version.
22267
22268         * sha1.el (sha1): Add :version.
22269         (sha1-use-external): Remove redundant version.
22270
22271         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
22272         (nnmail-cache-ignore-groups, nnmail-spool-hook)
22273         (nnmail-split-fancy-match-partial-words)
22274         (nnmail-split-lowercase-expanded): Add :version.
22275
22276         * nndiary.el (nndiary): Add :version.
22277
22278         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
22279
22280         * mml-sec.el (mml-default-sign-method)
22281         (mml-default-encrypt-method, mml-signencrypt-style-alist):
22282         Add :version.
22283
22284         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
22285
22286         * mm-url.el (mm-url-use-external, mm-url-program)
22287         (mm-url-arguments): Add :version.
22288
22289         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
22290         (mm-attachment-file-modes, mm-decrypt-option)
22291         (mm-w3m-safe-url-regexp): Add :version.
22292
22293         * message.el (message-cite-prefix-regexp)
22294         (message-sendmail-envelope-from, message-minibuffer-local-map)
22295         (message-user-fqdn, message-completion-alist): Add :version.
22296
22297         * gnus-win.el (gnus-configure-windows-hook)
22298         (gnus-use-frames-on-any-display): Add :version.
22299
22300         * gnus-art.el (gnus-article-address-banner-alist)
22301         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
22302         (gnus-treat-from-picon, gnus-treat-mail-picon)
22303         (gnus-treat-x-pgp-sig): Add :version.
22304
22305         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
22306         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
22307         (gnus-summary-article-delete-hook)
22308         (gnus-summary-display-while-building): Add :version.
22309
22310         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
22311         (gnus-get-top-new-news-hook): Add :version.
22312
22313         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
22314         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
22315
22316         * gnus-registry.el (gnus-registry): Add :version.
22317
22318         * gnus-spec.el (gnus-use-correct-string-widths)
22319         (gnus-make-format-preserve-properties): Add :version.
22320
22321         * gnus.el (gnus-group-charter-alist)
22322         (gnus-group-fetch-control-use-browse-url)
22323         (gnus-install-group-spam-parameters): Add :version.
22324
22325         * gnus-diary.el (gnus-diary): Add :version.
22326
22327         * gnus-delay.el (gnus-delay): Add :version.
22328
22329         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
22330         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
22331         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
22332         Add :version.
22333
22334         * gnus-agent.el (gnus-agent-max-fetch-size)
22335         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
22336         (gnus-agent-prompt-send-queue): Add :version.
22337
22338         * deuglify.el (gnus-outlook-deuglify): Add :version.
22339
22340         * html2text.el: Beautify code.  Improve doc strings.
22341         Some checkdoc cleanup.
22342         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
22343
22344 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
22345
22346         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
22347
22348 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
22349
22350         * gnus-registry.el (gnus-registry-hashtb): Create the registry
22351         when package is loaded.
22352
22353         * spam.el (spam-summary-score-preferred-header): Add global preference
22354         for people who want to override the default SpamAssassin over
22355         Bogofilter preference (when both are set).
22356         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
22357         (spam-user-format-function-S):
22358         Check spam-summary-score-preferred-header.
22359         (spam-extra-header-to-number): Add X-Bogosity header parsing.
22360         (spam-user-format-function-S): Format the score correctly.
22361
22362 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
22363
22364         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
22365         signature file.  Suggested by Manoj Srivastava
22366         <srivasta@golden-gryphon.com>.
22367
22368         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
22369         iso-2022-jp even in the Japanese language environment.
22370         Suggested by Jason Rumney <jasonr@gnu.org>.
22371
22372 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
22373
22374         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
22375         use the same characters as the dummy marks; make it free from
22376         getting affected by the language environment.
22377         (gnus-summary-read-group-1): Update mark positions only when the
22378         format spec is updated.
22379
22380         * gnus-spec.el (gnus-update-format-specifications): Return a list
22381         of updated types.
22382
22383 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22384
22385         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
22386         of boundp to check if display-warning is available.
22387
22388 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
22389
22390         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
22391
22392 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22393
22394         * nnspool.el (nnspool-spool-directory): Use news-path if the
22395         news-directory variable is not bound.
22396
22397         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
22398         function instead of display-warning if it is not available.
22399
22400 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
22401
22402         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
22403         v5-10: Use `point-at-bol'.
22404
22405 2004-10-26  Simon Josefsson  <jas@extundo.com>
22406
22407         * hashcash.el: Fix URL in comment, reported by Cheng Gao
22408         <chenggao@gmail.com>.
22409
22410 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
22411
22412         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
22413         instead.
22414
22415 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
22416
22417         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
22418         to remove a server from the nnimap-server-buffer-alist.
22419         (nnimap-open-connection, nnimap-close-server): Use it.
22420
22421         * gnus-encrypt.el: Remove file in favor of encrypt.el.
22422
22423 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
22424
22425         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
22426         running the major-mode function.
22427
22428 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
22429
22430         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
22431         dummy marks in the right way.
22432
22433 2004-10-18  David Edmondson  <dme@dme.org>
22434
22435         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
22436         excessively.
22437
22438 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
22439
22440         * gnus-util.el (gnus-split-references): Accept a nil references
22441         string and go on blissfully.
22442
22443         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
22444         cases where the references string is non-nil but has no references.
22445
22446         * encrypt.el: Add autoload tags.
22447
22448         * spam.el (spam-resolve-registrations-routine): Remove article
22449         from unregistration list too.  Reported by David Hanak
22450         <dhanak@isis.vanderbilt.edu>
22451
22452 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
22453
22454         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
22455         nil.  Change custom type.
22456
22457 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
22458
22459         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
22460
22461         * gnus-sum.el (gnus-summary-move-article): Use it.
22462
22463 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
22464
22465         * encrypt.el: Add autoload cookies.
22466
22467         * spam.el (spam-backend-article-list-property)
22468         (spam-backend-get-article-todo-list)
22469         (spam-backend-put-article-todo-list)
22470         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
22471         Resolve registrations separately.
22472         (spam-register-routine): Format comments.
22473         (spam-unregister-routine, spam-register-routine): Always call with
22474         specific-articles, no default list.
22475         (spam-summary-prepare-exit): Use the spam-classifications function.
22476
22477         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
22478         gnus-encrypt.el.
22479
22480         * encrypt.el: Copied from gnus-encrypt.el.
22481
22482         * gnus-encrypt.el: Commented that it's obsolete.
22483
22484 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
22485
22486         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
22487         (gnus-score-save): Use it.
22488
22489         * message.el (message-bury): Use `window-dedicated-p'.
22490
22491 2004-10-15  Simon Josefsson  <jas@extundo.com>
22492
22493         * pop3.el (top-level): Don't require nnheader.
22494         (pop3-read-timeout): Add.
22495         (pop3-accept-process-output): Add.
22496         (pop3-read-response, pop3-retr): Use it.
22497
22498 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
22499
22500         * spam.el (spam-register-routine): Move comment.
22501         (spam-verify-bogofilter): Use 'unknown for the initial
22502         spam-bogofilter-valid state, not 'never.
22503
22504         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
22505         for netrc-machine.
22506
22507         * nnimap.el (nnimap-open-connection):
22508         Use netrc-machine-user-or-password.
22509
22510 2004-10-17  Richard M. Stallman  <rms@gnu.org>
22511
22512         * gnus-registry.el (gnus-registry-unload-hook):
22513         Set as a variable with add-hook.
22514
22515         * nnspool.el (nnspool-spool-directory): Use news-directory instead
22516         of news-path.
22517
22518         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
22519
22520         * spam.el: Delete duplicate `provide'.
22521         (spam-unload-hook): Set as a variable with add-hook.
22522
22523 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
22524
22525         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
22526         in the doc string.
22527
22528         * message.el (message-ignored-news-headers)
22529         (message-ignored-supersedes-headers)
22530         (message-ignored-resent-headers)
22531         (message-forward-ignored-headers): Improve custom type.
22532
22533 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22534
22535         * message.el (message-tokenize-header): Fix 2004-09-06 change
22536         which used point-min in the wrong place.
22537
22538 2004-10-12  Simon Josefsson  <jas@extundo.com>
22539
22540         * tls.el (tls-certtool-program): New variable.
22541         (tls-certificate-information): New function, based on
22542         ssl-certificate-information.
22543
22544 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
22545
22546         * compface.el: Move the version of ELisp-based uncompface program
22547         to the contrib directory because of the copyright problem.
22548
22549 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
22550
22551         * message.el (message-kill-buffer): Raise the current frame.
22552
22553 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
22554
22555         * gnus-sum.el: Mention that multibyte characters don't work as marks.
22556
22557         * gnus.el (message-y-or-n-p): Autoload.
22558
22559         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
22560         (pop3-password-required, pop3-authentication-scheme)
22561         (pop3-leave-mail-on-server): Make customizable.
22562         (pop3): New custom group.
22563         (pop3-retr): Remove `sleep-for' statements.
22564         Suggested by Dave Love <fx@gnu.org>.
22565
22566         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
22567         Windows/DOS.
22568
22569         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
22570         (imap-parse-body): Fix incorrect use of `assert'.
22571         Suggested by Dave Love <fx@gnu.org>.
22572
22573         * mml.el (mml-minibuffer-read-disposition): Require match.
22574         Suggested by Dave Love <fx@gnu.org>.
22575
22576 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
22577
22578         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
22579         doc string.
22580
22581 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
22582
22583         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
22584
22585 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
22586
22587         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
22588         instead of calling `mm-insert-inline', to decode text/* parts
22589         before displaying them.
22590
22591 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
22592
22593         * mm-uu.el (mm-uu-text-plain-type): New variable.
22594         (mm-uu-pgp-signed-extract-1): Use it.
22595         (mm-uu-pgp-encrypted-extract-1): Use it.
22596         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
22597         bind mm-uu-text-plain-type with that value.
22598         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
22599         mm-uu-dissect.
22600
22601 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22602
22603         * gnus-group.el (gnus-update-group-mark-positions):
22604         * gnus-sum.el (gnus-update-summary-mark-positions):
22605         * message.el (message-check-news-body-syntax):
22606         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
22607         of string-as-multibyte.
22608
22609 2004-10-05  Juri Linkov  <juri@jurta.org>
22610
22611         * gnus-group.el (gnus-update-group-mark-positions):
22612         * gnus-sum.el (gnus-update-summary-mark-positions):
22613         * message.el (message-check-news-body-syntax):
22614         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
22615         8-bit unibyte values to a multibyte string for search functions.
22616
22617 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22618
22619         * mm-uu.el (mm-uu-dissect): Allow optional arg.
22620         (mm-uu-dissect-text-parts): New function.
22621
22622         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
22623         dissect text parts.
22624
22625         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
22626         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
22627
22628         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
22629
22630         * gnus-topic.el (gnus-topic-hierarchical-parameters):
22631         Use gnus-current-topics instead of gnus-current-topic.
22632
22633 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
22634
22635         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
22636
22637 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
22638
22639         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
22640         where appropriate.
22641
22642         * nnml.el (nnml-generate-active-info): do.
22643
22644         * nndiary.el (nndiary-generate-active-info): do.
22645
22646         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
22647         (gnus-topic-move): do.
22648
22649         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
22650         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
22651
22652         * gnus-srvr.el (gnus-server-prepare)
22653         (gnus-server-open-all-servers): do.
22654
22655         * gnus-msg.el (gnus-summary-cancel-article)
22656         (gnus-summary-resend-message)
22657         (gnus-summary-mail-crosspost-complaint): do.
22658
22659         * gnus-move.el (gnus-change-server): do.
22660
22661         * gnus-group.el (gnus-group-unmark-all-groups)
22662         (gnus-group-set-current-level): do.
22663
22664 2004-10-04  Simon Josefsson  <jas@extundo.com>
22665
22666         * message.el (message-generate-hashcash): Doc fix.
22667
22668 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
22669
22670         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
22671         avoid infinite recursion via gnus-get-function.
22672
22673 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
22674
22675         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
22676
22677         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
22678
22679         * nnmail.el (nnmail-split-history): do.
22680
22681         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
22682         (nnml-request-delete-group): do.
22683
22684         * nnslashdot.el (nnslashdot-read-groups): do.
22685
22686         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
22687         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
22688
22689         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
22690         (nnspool-sift-nov-with-sed): Use last.
22691         (nnspool-retrieve-headers-with-nov): Use mapc.
22692         (nnspool-request-newgroups): Use dolist.
22693         (nnspool-request-group): Use last.
22694
22695         * nntp.el (nntp-read-server-type): Use dolist.
22696
22697         * nnvirtual.el (nnvirtual-create-mapping)
22698         (nnvirtual-update-read-and-marked): Use dolist.
22699         (nnvirtual-convert-headers): Simplify.
22700
22701 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
22702
22703         * gnus-agent.el (gnus-agent-synchronize-group-flags):
22704         Add support for sync'ing tick marks.
22705
22706 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
22707
22708         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
22709         there's no visible header.
22710
22711 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
22712
22713         * gnus-agent.el (gnus-agent-synchronize-group-flags):
22714         When necessary, pass full group name to gnus-request-set-marks.
22715
22716 2004-10-01  Simon Josefsson  <jas@extundo.com>
22717
22718         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
22719         acroread.
22720
22721 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22722
22723         * spam-report.el (spam-report-gmane): Fix interactive.
22724
22725         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
22726
22727         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
22728         when writing file.
22729         (gnus-agent-synchronize-flags): Don't default to being
22730         interactive.
22731
22732 2004-09-30  Simon Josefsson  <jas@extundo.com>
22733
22734         * message.el (message-generate-hashcash): Add.
22735         (message-send-mail): Use it, call mail-add-payment.
22736
22737 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
22738
22739         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
22740
22741 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
22742
22743         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
22744         gnus-requst-update-info with explicit code to sync the in-memory
22745         info read flags with the marks being sync'd to the backend.
22746
22747         * gnus-util.el (gnus-pp): Add optional stream to match pp API.
22748
22749 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
22750
22751         * spam.el (spam-verify-bogofilter): Add new function.
22752         (spam-check-bogofilter)
22753         (spam-bogofilter-register-with-bogofilter): Use it.
22754         (spam-verify-bogofilter): Add small fixes.
22755
22756 2004-09-28  Simon Josefsson  <jas@extundo.com>
22757
22758         * hashcash.el (hashcash-generate-payment): Revert.
22759
22760 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
22761
22762         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
22763         Use gnus-extract-references instead of gnus-split-references.
22764
22765         * gnus-util.el (gnus-extract-references): Add new function, analogous
22766         to gnus-split-references but extracts only the message-ID without
22767         anything extra.
22768
22769         * hashcash.el (hashcash-generate-payment)
22770         (hashcash-check-payment): Do the right thing if hashcash-path is
22771         nil (because the hashcash program could not be found).
22772
22773         * spam.el (spam-use-hashcash): Remove comment.
22774
22775 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
22776
22777         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
22778         (gnus-cache-enter-article, gnus-cache-remove-article)
22779         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
22780
22781         * gnus-async.el (gnus-async-prefetch-remove-group): do.
22782
22783         * gnus-art.el (article-hide-boring-headers)
22784         (article-translate-strings, article-display-face)
22785         (gnus-article-mime-match-handle-first)
22786         (gnus-article-highlight-headers)
22787         (gnus-article-add-buttons-to-head): do.
22788
22789 2004-09-27  Simon Josefsson  <jas@extundo.com>
22790
22791         * hashcash.el: New version, from
22792         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
22793         ../contrib/.
22794
22795 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22796
22797         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
22798
22799 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
22800
22801         * gnus-dup.el (gnus-dup-open): Use mapc.
22802         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
22803
22804         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
22805         Reported by Stefan Wiens <s.wi@gmx.net>.
22806
22807         * gnus.el (gnus-shutdown): Use dolist.
22808
22809         * gnus-undo.el (gnus-undo): Use mapc.
22810
22811         * nnrss.el (nnrss-generate-active): do.
22812
22813         * message.el (message-cite-original-without-signature)
22814         (message-cite-original): Use mapc.
22815         (message-do-actions, message-make-forward-subject): Use dolist.
22816
22817 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
22818
22819         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
22820         deletion to remove entire duplicate line.  Fixes merged article
22821         number bug.
22822
22823 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
22824
22825         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
22826         servers that are offline.  Avoids having gnus-agent-toggle-plugged
22827         first ask if you want to open a server and then, even when you
22828         responded with no, asking if you want to synchronize the server's
22829         flags.
22830         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
22831         multi-line expressions.
22832         (gnus-agent-synchronize-group-flags): New internal function.
22833         Updates marks in memory (in the info structure) AND in the
22834         backend.
22835
22836         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
22837
22838         * nnagent.el (nnagent-request-set-mark):
22839         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
22840         method, to ensure that synchronization updates marks in the
22841         backend and in the info (in memory) structure.
22842
22843 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
22844
22845         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
22846         convention fully; don't miss the root article of a thread; make
22847         the X-Draft-From header with correct article numbers.
22848
22849 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
22850
22851         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
22852         unless plugged.  Disable the agent so that an open failure causes
22853         an error.
22854
22855         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
22856         Revert 2004-09-21 change.  The backend must be opened while
22857         synchronizing flags even when the backend stores the flags
22858         locally.
22859
22860 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
22861
22862         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
22863         in `header' match.  Reported by Svend Tollak Munkejord.
22864
22865         * message.el (message-cite-original): Fix use of
22866         `message-cite-articles-with-x-no-archive'.
22867
22868 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
22869
22870         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
22871         (gnus-window-to-buffer): Ditto.
22872
22873         * mml.el (mml-preview-buffer): New variable.
22874         (mml-preview): Manage window layout with gnus-buffer-configuration.
22875
22876         * gnus-msg.el (gnus-setup-message): Put article numbers into the
22877         X-Draft-From header even if those articles aren't quoted.
22878
22879 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
22880
22881         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
22882         (gnus-request-set-mark, gnus-request-update-mark): Use new
22883         g-s-t-u-l-m to decide to use backend even when unplugged.
22884
22885 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
22886
22887         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
22888         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
22889
22890 2004-09-20  Simon Josefsson  <jas@extundo.com>
22891
22892         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
22893         "utf-16-le".
22894
22895 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
22896
22897         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
22898
22899 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
22900
22901         * uudecode.el (uudecode-use-external): Add :version.
22902
22903         * smime.el (smime-CA-file, smime-encrypt-cipher)
22904         (smime-dns-server): Add :version.
22905
22906         * smiley.el (gnus-smiley-file-types): Add :version.
22907
22908         * sha1.el (sha1-use-external): Add :version.
22909
22910         * pgg-def.el (pgg-query-keyserver): Add :version.
22911
22912         * nnmail.el (nnmail-fancy-expiry-targets)
22913         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
22914         Add :version.
22915
22916         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
22917         (nnimap-retrieve-groups-asynchronous): Add :version.
22918         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
22919
22920         * mml.el (mml-content-disposition-parameters)
22921         (mml-insert-mime-headers-always): Add :version.
22922
22923         * mm-util.el (mm-coding-system-priorities): Add :version.
22924
22925         * mm-decode.el (mm-inline-text-html-with-images)
22926         (mm-keep-viewer-alive-types, mm-external-terminal-program)
22927         (mm-verify-option): Add :version.
22928         (mm-text-html-renderer): Change :version.
22929
22930         * message.el (message-fcc-externalize-attachments)
22931         (message-required-headers, message-draft-headers)
22932         (message-subject-trailing-was-query)
22933         (message-subject-trailing-was-ask-regexp)
22934         (message-subject-trailing-was-regexp, message-mark-insert-begin)
22935         (message-mark-insert-end, message-archive-header)
22936         (message-archive-note, message-cross-post-default)
22937         (message-cross-post-note, message-followup-to-note)
22938         (message-cross-post-note-function, message-use-mail-followup-to)
22939         (message-subscribed-address-functions)
22940         (message-subscribed-address-file, message-subscribed-addresses)
22941         (message-subscribed-regexps, message-allow-no-recipients)
22942         (message-yank-cited-prefix, message-signature-insert-empty-line)
22943         (message-hidden-headers, message-hierarchical-addresses)
22944         (message-mail-user-agent, message-use-idna)
22945         (message-valid-fqdn-regexp)
22946         (message-strip-special-text-properties, message-header-synonyms)
22947         (message-beginning-of-line, message-tab-body-function): Add :version.
22948         (message-insert-canlock, message-wide-reply-confirm-recipients):
22949         Change :version.
22950
22951         * mail-source.el (mail-source-ignore-errors): Add :group, :type
22952         and :version.
22953         (mail-source-delete-old-incoming-confirm)
22954         (mail-source-movemail-program): Add :version.
22955
22956         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
22957         (gnus-agent-cache, gnus-agent): Change :version.
22958
22959         * gnus-util.el (gnus-use-byte-compile): Change :version.
22960
22961         * gnus-sum.el (gnus-summary-make-false-root-always)
22962         (gnus-summary-default-high-score)
22963         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
22964         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
22965         (gnus-read-all-available-headers, gnus-article-emulate-mime)
22966         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
22967         (gnus-sum-thread-tree-single-indent)
22968         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
22969         (gnus-sum-thread-tree-leaf-with-other)
22970         (gnus-sum-thread-tree-single-leaf): Add :version.
22971         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
22972         (gnus-article-loose-mime): Change :version.
22973
22974         * gnus-start.el (gnus-backup-startup-file)
22975         (gnus-save-startup-file-via-temp-buffer): Add :version.
22976
22977         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
22978         (gnus-server-offline-face): Add :version.
22979
22980         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
22981
22982         * gnus-msg.el (gnus-gcc-externalize-attachments)
22983         (gnus-debug-files, gnus-debug-exclude-variables)
22984         (gnus-discouraged-post-methods): Change :version.
22985         (gnus-confirm-mail-reply-to-news)
22986         (gnus-confirm-treat-mail-like-news): Add :version.
22987
22988         * gnus-int.el (gnus-server-unopen-status): Add :version.
22989
22990         * gnus-group.el (gnus-group-jump-to-group-prompt)
22991         (gnus-large-ephemeral-newsgroup)
22992         (gnus-fetch-old-ephemeral-headers): Add :version.
22993
22994         * gnus-fun.el (gnus-x-face-directory)
22995         (gnus-convert-pbm-to-x-face-command)
22996         (gnus-convert-image-to-x-face-command)
22997         (gnus-convert-image-to-face-command): Add :version.
22998
22999         * gnus-delay.el (gnus-delay-default-hour): Add :version.
23000
23001         * gnus-cite.el (gnus-cite-blank-line-after-header)
23002         (gnus-article-boring-faces): Add :version.
23003
23004         * gnus-art.el (gnus-buttonized-mime-types)
23005         (gnus-inhibit-mime-unbuttonizing)
23006         (gnus-treat-display-face)
23007         (gnus-treat-body-boundary): Change :version.
23008         (gnus-body-boundary-delimiter, gnus-picon-databases)
23009         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
23010         (gnus-treat-date-english, gnus-treat-fold-headers)
23011         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
23012         (gnus-treat-mail-picon, gnus-treat-wash-html)
23013         (gnus-article-encrypt-protocol)
23014         (gnus-use-idna, gnus-article-over-scroll)
23015         (gnus-mime-display-multipart-alternative-as-mixed)
23016         (gnus-mime-display-multipart-related-as-mixed)
23017         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
23018         (gnus-ctan-url, gnus-button-ctan-handler)
23019         (gnus-button-handle-ctan-bogus-regexp)
23020         (gnus-button-ctan-directory-regexp)
23021         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
23022         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
23023         (gnus-button-man-level, gnus-button-emacs-level)
23024         (gnus-button-message-level, gnus-button-browse-level): Add :version.
23025
23026         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
23027         (gnus-agent-go-online): Change :version.
23028         (gnus-agent-expire-unagentized-dirs)
23029         (gnus-agent-auto-agentize-methods): Add :version.
23030
23031         * flow-fill.el (fill-flowed-display-column)
23032         (fill-flowed-encode-column): Add :version.
23033
23034         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
23035         (gnus-outlook-deuglify-unwrap-max)
23036         (gnus-outlook-deuglify-cite-marks)
23037         (gnus-outlook-deuglify-unwrap-stop-chars)
23038         (gnus-outlook-deuglify-no-wrap-chars)
23039         (gnus-outlook-deuglify-attrib-cut-regexp)
23040         (gnus-outlook-deuglify-attrib-verb-regexp)
23041         (gnus-outlook-deuglify-attrib-end-regexp)
23042         (gnus-outlook-display-hook): Add :version.
23043
23044         * binhex.el (binhex-use-external): Add :version.
23045
23046 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
23047
23048         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
23049         and `invisible'.
23050
23051 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
23052
23053         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
23054         in gnus-registry-trim.
23055
23056 2004-09-13  Simon Josefsson  <jas@extundo.com>
23057
23058         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
23059
23060         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
23061
23062         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
23063         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
23064         <yamaoka@jpl.org>.
23065         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
23066         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
23067         <yamaoka@jpl.org>.
23068
23069         * sieve.el (sieve-manage-mode): Ditto.
23070
23071 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
23072
23073         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
23074
23075 2004-09-11  Simon Josefsson  <jas@extundo.com>
23076
23077         * dns-mode.el: Add.
23078
23079         * mm-view.el (mm-display-dns-inline): Add.
23080
23081         * mm-decode.el (mm-inline-media-tests): Add text/dns.
23082         (mm-automatic-display): Ditto.
23083
23084         * mailcap.el (mailcap-mime-data): Add text/dns.
23085         (mailcap-mime-extensions): Map .soa to text/dns.
23086
23087 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
23088
23089         * gnus-art.el (article-decode-mime-words, article-babel)
23090         (gnus-article-highlight-signature, gnus-article-add-buttons)
23091         (gnus-signature-toggle): Remove unnecessary bindings of
23092         `inhibit-read-only' inherited from v5.10 merge.
23093
23094 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
23095
23096         * nntp.el (nntp): New customization group.
23097         (nntp-authinfo-file): Add customization group.
23098
23099         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
23100
23101         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
23102
23103         * gnus.el (to-address, to-list, subscribed)
23104         (large-newsgroup-initial): Ditto.
23105
23106         * flow-fill.el (fill-flowed-display-column)
23107         (fill-flowed-encode-column): Ditto.
23108
23109 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
23110
23111         * message.el (message-tokenize-header, message-send-mail-with-qmail):
23112         Use point-min rather than 1.
23113         (message-send-mail): Use buffer-size rather than point-max.
23114
23115         * gnus-sum.el (gnus-summary-search-article-forward):
23116         Signal a specific `search-failed' rather than a generic `error'.
23117
23118         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
23119         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
23120         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
23121
23122 2004-09-10  Simon Josefsson  <jas@extundo.com>
23123
23124         * nndb.el (require): Remove tcp and duplicate cl.
23125
23126 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23127
23128         * gnus-agent.el (directory-files-and-attributes): Move forward.
23129
23130 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
23131
23132         * gnus-agent.el (directory-files-and-attributes):
23133         Optionally defined to support XEmacs.
23134
23135 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
23136
23137         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
23138         to avoid run-time CL dependencies.
23139         (gnus-agent-unfetch-articles): New function.
23140         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
23141         article numbers even when local .overview file is missing.
23142         (gnus-agent-read-article-number): New function.  Only accepts
23143         27-bit article numbers.
23144         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
23145         Use gnus-agent-read-article-number.
23146         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
23147         from backend while recognizing that article numbers in .overview
23148         must be valid.
23149         (gnus-agent-update-files-total-fetched-for):
23150         Use directory-files-and-attributes to improve performance.
23151         * gnus-int.el (gnus-request-move-article):
23152         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
23153         improve performance.
23154
23155         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
23156         some users confused by references to .newsrc when they only have a
23157         .newsrc.eld file.
23158         (gnus-convert-mark-converter-prompt)
23159         (gnus-convert-converter-needs-prompt): Fix use of property list.
23160         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
23161         New function.  Used internally to only display 'gnus converting
23162         files' message when actually necessary.
23163
23164         * gnus-sum.el (): Remove (require 'gnus-agent) as required
23165         methods now autoloaded.
23166
23167 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
23168
23169         * gnus-sum.el (gnus-summary-insert-subject): Remove list
23170         identifiers.
23171
23172 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
23173
23174         * gnus-picon.el: Fix indentation and closing parenthesis.
23175
23176 2004-09-01  Simon Josefsson  <jas@extundo.com>
23177
23178         * message.el (message-canlock-generate): Require sha1, not
23179         sha1-el.  (Can we get rid of this require altogether?  It is ugly
23180         to require within a function.  Sadly, if sha1.el isn't loaded, the
23181         let binding in m-c-g will hide the defcustom definition, which is
23182         bad.)
23183
23184         * canlock.el: Require sha1, not sha1-el.
23185
23186         * message.el: Don't autoload sha1 (there is a autoload cookie in
23187         sha1.el).
23188
23189         * sha1-el.el: Rename to sha1.el.
23190
23191 2004-08-30  Juanma Barranquero  <lektu@terra.es>
23192
23193         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
23194
23195 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
23196
23197         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
23198
23199 2004-08-30  Kim F. Storm  <storm@cua.dk>
23200
23201         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
23202
23203         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
23204         Add :group 'nnimap.
23205
23206 2004-08-30  Andreas Schwab  <schwab@suse.de>
23207
23208         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
23209         ?* and ?\;.
23210
23211         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
23212         and ?\' to symbol instead of whitespace.
23213
23214 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
23215
23216         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
23217
23218         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
23219         instead of re-search-forward.
23220
23221         * gnus-uu.el (gnus-uu-save-article): Ditto.
23222         (gnus-uu-post-encode-uuencode): Ditto.
23223
23224         * html2text.el (html2text-clean-list-items): Ditto.
23225         (html2text-clean-dtdd): Ditto.
23226         (html2text-format-tags): Ditto.
23227
23228         * message.el (message-send-mail-with-sendmail): Fix regexp.
23229         (message-fill-field-general): Use search-forward instead of
23230         re-search-forward.
23231         (unbold-region): Ditto.
23232
23233         * nnrss.el (nnrss-request-article): Ditto.
23234
23235         * nnslashdot.el (nnslashdot-request-article): Ditto.
23236
23237         * nnweb.el (nnweb-gmane-wash-article): Ditto.
23238
23239         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
23240         "Unrecognized menu descriptor" error in XEmacs.
23241
23242 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
23243
23244         * gnus-sum.el (gnus-read-header): Don't remove a header for the
23245         parent article of a sparse article in the thread hashtb.
23246
23247 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
23248
23249         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
23250         (nnmail-expand-newtext): Lowercase expanded entries if
23251         nnmail-split-lowercase-expanded is non-nil.
23252
23253 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23254
23255         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
23256
23257         * gnus-group.el (gnus-group-line-format-alist): Convert the value
23258         of gnus-tmp-news-method into string under XEmacs.  It will be
23259         passed to gnus-correct-length which takes only a string argument.
23260
23261 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
23262
23263         * gnus-util.el (gnus-bind-print-variables): New macro.
23264         (gnus-prin1): Use it.
23265         (gnus-prin1-to-string): Use it.
23266         (gnus-pp): New function.
23267         (gnus-pp-to-string): New function.
23268
23269         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
23270         Replace pp-to-string with gnus-pp-to-string.
23271         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
23272         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
23273         * gnus-msg.el (gnus-debug): Ditto.
23274         * gnus-score.el (gnus-score-save): Ditto.
23275         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
23276         gnus-pp-to-string.
23277         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
23278         with gnus-pp.
23279         * score-mode.el (gnus-score-pretty-print): Ditto.
23280         * webmail.el (webmail-debug): Ditto.
23281
23282 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23283
23284         * gnus-art.el (article-display-face, article-display-x-face):
23285         Use buffer-read-only.
23286
23287 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23288
23289         * gnus-art.el (article-hide-list-identifiers):
23290         Bind inhibit-read-only as t.
23291
23292 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
23293
23294         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
23295
23296 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
23297
23298         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
23299         (gnus-narrow-to-page): Don't assume point-min == 1.
23300         (gnus-article-edit-mode): Derive from message-mode.
23301
23302         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
23303         point-min == 1.
23304
23305         * imap.el (imap-parse-address-list, imap-parse-body-ext):
23306         Disable incorrect use of `assert'.
23307
23308         * message.el (message-mode): Set comment-start-skip.
23309
23310
23311 2004-08-22  Sam Steingold  <sds@gnu.org>
23312
23313         * pop3.el (pop3-leave-mail-on-server): New user variable.
23314         (pop3-movemail): Delete mail only when it is nil.
23315
23316 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
23317
23318         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
23319
23320         * mml.el (mml-preview): Use `pop-to-buffer'.
23321
23322         * message.el (message-goto-mail-followup-to): Insert after "To".
23323         (message-carefully-insert-headers): Add comment.
23324
23325         * gnus.el: Remove unused variable `gnus-article-check-size'.
23326
23327         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
23328
23329         * gnus-art.el (gnus-button-alist):
23330         Improve `gnus-button-handle-library' entry.
23331
23332 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
23333
23334         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
23335         Use downcase, since XEmacs capitalizes error messages differently.
23336
23337 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
23338
23339         * nntp.el: Add (require 'gnus) due to reference to
23340         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
23341
23342 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
23343
23344         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
23345         Bind `mm-fill-flowed'.
23346
23347         * mm-decode.el (mm-dissect-singlepart): Check it.
23348
23349 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
23350
23351         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
23352         'imap' for netrc parsing.
23353
23354 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
23355
23356         * mailcap.el (mailcap-mime-data): Mark as risky.
23357
23358 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23359
23360         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
23361         may be included in the encoded word.
23362         (rfc2047-encode): Don't append a space if the encoded word
23363         includes close parenthesis.
23364
23365 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23366
23367         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
23368         of text within parentheses.
23369
23370 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
23371
23372         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
23373         (gnus-encrypt-write-file-contents): Make the password key the file
23374         name PLUS the cipher, not just the cipher.  Also remove failed
23375         passwords from the cache.
23376
23377 2004-08-06  Simon Josefsson  <jas@extundo.com>
23378
23379         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
23380         Doc fix.
23381
23382 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
23383
23384         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
23385         LWSP.
23386
23387 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
23388
23389         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
23390         Try to append in-reply-to: data to the references: header.
23391
23392         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
23393         (netrc-parse): Use gnus-encrypt.el functions.
23394
23395         * gnus-encrypt.el: Add new file for encryption support; currently
23396         does only a few GPG ciphers and an internal XOR cipher.
23397
23398         * password.el: Add comments on using password-read-and-add.
23399         (password-read-and-add): Add function to read and add the
23400         password to the cache at once.
23401
23402 2004-07-28  Simon Josefsson  <jas@extundo.com>
23403
23404         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
23405         parameter (but don't use it, for now).
23406
23407         * imap.el (imap-ssl-open): Use imap-process-connection-type,
23408         instead of hard coding to nil.
23409
23410 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23411
23412         * mm-view.el (mm-inline-image-emacs): Open lines under an image
23413         as mm-inline-image-xemacs does.
23414
23415 2004-07-26  Simon Josefsson  <jas@extundo.com>
23416
23417         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
23418         Revert part of 2004-07-17 change below.
23419
23420 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
23421
23422         * rfc2047.el (rfc2047-encode-region): Don't infloop.
23423         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
23424
23425 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23426
23427         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
23428         quotes that actually start with ">" at the beginning of the
23429         lines.
23430
23431 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23432
23433         * rfc2047.el (rfc2047-encode-region): Fix last change.
23434         (rfc2047-encode-parameter): Remove useless concat.
23435
23436 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23437
23438         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
23439         encode special characters; fix some kind of misconfigured headers;
23440         signal a real error if debug-on-quit or debug-on-error is non-nil.
23441         (rfc2047-encode-max-chars): New variable.
23442         (rfc2047-encode-1): Use it.
23443         (rfc2047-encode-parameter): New function.
23444
23445         * mml.el (mml-insert-parameter): Remove an excessive space.
23446
23447 2004-07-17  Simon Josefsson  <jas@extundo.com>
23448
23449         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
23450         Kai Grossjohann <kai@emptydomain.de>.
23451         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
23452         (gnus-group-make-menu-bar): Ditto.
23453
23454         * gnus-util.el (gnus-group-server): Add.
23455
23456 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
23457
23458         * message.el (message-clone-locals): Clone sendmail and smtp
23459         variables.
23460
23461 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23462
23463         * rfc2047.el (rfc2047-encode-region): Fix last change.
23464
23465 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23466
23467         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
23468         characters as non-special.
23469
23470 2004-07-09  Simon Josefsson  <jas@extundo.com>
23471
23472         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
23473         Users will lose all flag changes made while unplugged with
23474         e.g. nntp unless flag synchronization happens, thus `nil' is not a
23475         good default.  See numerous reports on ding mailing list.
23476
23477 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
23478
23479         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
23480         add generate-head-function and generate-article-function to the
23481         rfc822-forward entry.
23482         (nndoc-rfc822-forward-generate-article): New function.
23483         (nndoc-rfc822-forward-generate-head): New function.
23484
23485         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
23486
23487 2004-07-06  Dan Christensen  <jdc@uwo.ca>
23488
23489         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
23490         respect display group parameter and gnus-summary-expunge-below.
23491         (gnus-articles-to-read): Remove unused reference to display group
23492         parameter.
23493
23494 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23495
23496         * nnheader.el (nnheader-uniquify-message-id): New experimental
23497         variable.
23498         (nnheader-nov-read-message-id): Use it.
23499
23500         * spam-report.el (spam-report-gmane): Add interactive.
23501
23502 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
23503
23504         * mm-encode.el (mm-content-transfer-encoding-defaults):
23505         Use qp-or-base64 for the application/* types.
23506
23507 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
23508
23509         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
23510
23511 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
23512
23513         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
23514         trim value.
23515
23516 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
23517
23518         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
23519         New macro and function.
23520         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
23521
23522 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23523
23524         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
23525         after-load-alist.
23526
23527 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23528
23529         * gnus-group.el (gnus-group-get-new-news-this-group):
23530         Don't update info that isn't there.
23531
23532 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
23533
23534         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
23535         entry.
23536
23537 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23538
23539         * mm-view.el (mm-inline-render-with-function): Use multibyte
23540         buffer; decode html source by charset.
23541
23542         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
23543
23544         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
23545         Mule-UCS is loaded under XEmacs.
23546         (mm-mime-mule-charset-alist): Avoid duplicated entries.
23547
23548 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
23549
23550         * nnheader.el (nnheader-max-head-length): Increase to 8192.
23551
23552 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23553
23554         * mm-util.el (mm-coding-system-p): Return a coding-system.
23555         (mm-mime-mule-charset-alist): Use shift_jis instead of
23556         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
23557         entries for the mime charsets iso-2022-jp-3 and shift_jis.
23558         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
23559         instead of japanese-shift-jis and iso-latin-1 respectively in
23560         order to share the default value with both Emacs and XEmacs-mule.
23561         (mm-mule-charset-to-mime-charset):
23562         Make mm-coding-system-priorities effective.
23563         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
23564         while predicating of candidates upon the priorities.
23565
23566 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
23567
23568         * gnus-sum.el (gnus-summary-make-menu-bar):
23569         Add gnus-uu-invert-processable.
23570
23571         * gnus.el: Autoload gnus-uu-invert-processable.
23572
23573 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
23574
23575         * mm-util.el (mm-with-multibyte-buffer): New macro.
23576
23577         * rfc2047.el (rfc2047-encode-string): Use it.
23578         (rfc2047-encode-region): Move point to the end of the region after
23579         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
23580
23581 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23582
23583         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
23584         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
23585
23586 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23587
23588         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
23589         (gnus-cite-parse): Ignore quoted envelope From_.
23590         Suggested by Karl Chen <quarl@nospam.quarl.org>.
23591
23592 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
23593
23594         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
23595         invalid addresses.
23596
23597 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
23598
23599         * spam.el: Change section markers, revise TODO list.
23600         (spam-backends): Make new master list of all installed backends.
23601         (spam-summary-exit-behavior): Add new variable to determine how
23602         messages moves are done at summary exit.
23603         (spam-move-spam-nonspam-groups-only)
23604         (spam-process-ham-in-nonham-groups)
23605         (spam-process-ham-in-spam-groups): Remove variables, the
23606         spam-summary-exit-behavior variable should be used to manage this
23607         behavior.
23608         (spam-old-ham-articles, spam-old-spam-articles): Remove.
23609         (spam-old-articles): Add variable, replacing spam-old-ham-articles
23610         and spam-old-spam-articles.
23611         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
23612         Add empty variables, placeholders for the backends they represent.
23613         (spam-set-difference): Move, unchanged.
23614         (spam-list-of-processors): Declare OBSOLETE, not used anymore
23615         unless the user has a processor variable.
23616         (spam-classifications, spam-classification-valid-p)
23617         (spam-backend-properties, spam-backend-property-valid-p)
23618         (spam-backend-function-type-valid-p)
23619         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
23620         (spam-report-articles-gmane, spam-report-articles-resend):
23621         Remove functions, they are not needed.
23622         (spam-install-backend-super, spam-backend-list)
23623         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
23624         (spam-backend-function, spam-backend-ham-registration-function)
23625         (spam-backend-spam-registration-function)
23626         (spam-backend-ham-unregistration-function)
23627         (spam-backend-spam-unregistration-function)
23628         (spam-backend-statistical-p, spam-backend-mover-p)
23629         (spam-install-backend-alias, spam-install-checkonly-backend)
23630         (spam-install-mover-backend, spam-install-nocheck-backend)
23631         (spam-install-backend, spam-install-statistical-backend)
23632         (spam-install-statistical-checkonly-backend): Add backend installation
23633         support.
23634         (spam-summary-prepare-exit): Rewrite to use the new backend code.
23635         (spam-group-processor-p): Use the new backend code and respect the
23636         summary exit behavior.
23637         (spam-mark-spam-as-expired-and-move-routine): Remove.
23638         (spam-summary-prepare): Change to use the new spam-old-articles
23639         variable.
23640         (spam-copy-or-move-routine, spam-copy-spam-routine)
23641         (spam-move-spam-routine, spam-copy-ham-routine)
23642         (spam-move-ham-routine): Add code to copy/move ham or spam.
23643         (spam-fetch-field-fast): Improve doc and code, plus allow the
23644         'number request.
23645         (spam-list-of-checks, spam-list-of-statistical-checks):
23646         Remove variables.
23647         (spam-split, spam-find-spam): Use the new backend code.
23648         (spam-registration-functions): Remove variable.
23649         (spam-unregister-routine): Add convenience wrapper.
23650         (spam-log-undo-registration, spam-register-routine)
23651         (spam-log-processing-to-registry)
23652         (spam-log-unregistration-needed-p): Rename "check" to "backend"
23653         where possible.
23654         (spam-check-gmane-xref, spam-check-regex-headers)
23655         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
23656         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
23657         (spam-check-bogofilter-headers, spam-check-spamoracle)
23658         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
23659         (spam-check-crm114-headers): Use the spam-split-group that
23660         spam-split prepares, no need to determine it every time.
23661
23662         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
23663         to the nnheader-parse-naked-head call.
23664
23665         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
23666
23667         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
23668         the nnheader-nov-read-message-id call.
23669
23670 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
23671
23672         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
23673         gnus-activate-group twice.  Suggested by Markus Peter
23674         <warp@spin.de>.
23675
23676 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
23677
23678         * gnus-art.el (gnus-article-time-format): Exchange the order of
23679         day and month in the default value; fix customization type.
23680         (article-date-ut): Use add-text-properties.
23681         (article-make-date-line): Use message-make-date instead of
23682         current-time-string.
23683
23684         * message.el (message-fetch-field): Don't use set-text-properties.
23685         (message-make-date): Simplify.
23686
23687         * messagexmas.el (message-xmas-make-date): New function.
23688         (message-xmas-redefine): Defalias message-make-date to it.
23689
23690 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23691
23692         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
23693         (rfc2047-encode-region): Treat text within parentheses as special;
23694         show the original text when error has occurred.
23695
23696         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
23697         already-computed method to gnus-activate-group.
23698
23699         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
23700         same select-methods identical Lisp objects.
23701
23702         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
23703         object when modifying the info.
23704
23705 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
23706
23707         * gnus-srvr.el (gnus-server-set-info): Remove the server from
23708         gnus-opened-servers since it has never been opened with the new
23709         configuration yet.
23710
23711 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23712
23713         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
23714         arg to nnheader-generate-fake-message-id.
23715
23716 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
23717
23718         * nnheader.el (nnheader-generate-fake-message-id): Accept a
23719         number and build a fake message ID localized to a group and
23720         article number (so it's repeatable from that point on).
23721         (nnheader-fake-message-id-p): Change regex to accomodate new fake
23722         ID format.
23723
23724         * gnus-sum.el (gnus-get-newsgroup-headers):
23725         Call nnheader-generate-fake-message-id with the article number.
23726
23727 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
23728
23729         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
23730         end-of-buffer.
23731
23732 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23733
23734         * message.el (message-ignored-supersedes-headers): Add Approved.
23735
23736 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
23737
23738         * rfc2047.el (rfc2047-encode-message-header): Remove useless
23739         goto-char.
23740         (rfc2047-encode): Fold the line before encoding.
23741
23742 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23743
23744         * rfc2047.el (rfc2047-encode-message-header): Disabled header
23745         folding -- not all headers can be folded, and this should be done
23746         by the message composition mode.  Probably.  I think.
23747
23748 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23749
23750         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
23751         fast.
23752
23753         * gnus-ems.el (gnus-remove-image): Don't use
23754         message-text-with-property; remove only the image found first.
23755
23756         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
23757         found first.
23758
23759 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
23760
23761         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
23762
23763 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
23764
23765         * message.el (message-text-with-property): Make it fast and accept
23766         optional arguments.
23767         (message-strip-forbidden-properties): Use it.
23768         (message-fix-before-sending): Follow the m-t-w-p change.
23769
23770         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
23771
23772 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
23773
23774         * gnus-art.el (article-hide-headers): Don't change the buffer
23775         mistakenly when performing mml-preview even if
23776         gnus-single-article-buffer is nil.
23777
23778 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
23779
23780         * message.el (message-expand-name-databases): New user option.
23781         (message-expand-name): Use it.
23782
23783 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
23784
23785         * spam.el (spam-report-articles-resend)
23786         (spam-report-resend-register-routine): Allow ham reporting.
23787         (spam-report-resend-register-ham-routine): Add wrapper.
23788         (spam-registration-functions): Add ham resending functions.
23789         (spam-list-of-processors): Add ham resend processor.
23790
23791         * gnus.el (ham-resend-to): Add new group parameter.
23792         (spam-process): Add ham resend option.
23793
23794         * spam-report.el (spam-report-resend): Allow reporting ham.
23795         (spam-report-resend-ham): Add wrapper.
23796
23797 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23798
23799         * message.el (message-cite-articles-with-x-no-archive):
23800         New variable.
23801         (message-cite-original): Use it.
23802
23803 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23804
23805         * message.el (message-cite-original): Respect X-No-Archive.
23806
23807 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
23808
23809         * gnus-art.el (article-hide-headers): Refer to the values for
23810         gnus-ignored-headers and gnus-visible-headers in the summary
23811         buffer since a user may have set them as group parameters.
23812
23813 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
23814
23815         * assistant.el (assistant-node-name): Add convenience function.
23816         (assistant-render-text, assistant-render-node): Add error handling,
23817         plus handle multiple next nodes.
23818         (assistant-find-next-node): Comment out for now.
23819         (assistant-find-next-nodes): Add function, returns list of next
23820         nodes.
23821
23822 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
23823
23824         * mail-source.el (mail-source-directory): Fix doc-string.
23825
23826 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
23827
23828         * assistant.el (assistant-render-text, assistant-eval): Add :set
23829         widget type, which is different because it takes and returns a
23830         list.  Much hilarity ensues.
23831
23832 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
23833
23834         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
23835
23836         * gnus-group.el (gnus-group-get-new-news-this-group):
23837         Add doc-string.
23838
23839         * gnus-start.el (gnus-activate-group): Add doc-string.
23840
23841 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23842
23843         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
23844
23845 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
23846
23847         * assistant.el (assistant-render-text): Try to add a :set
23848         widget, more to come.
23849
23850         * spam.el (spam-group-spam-contents-p): Handle empty groupname
23851         strings.
23852         (spam-report-articles-resend)
23853         (spam-register-routine): Do registration iff any articles warrant
23854         it.
23855         (spam-summary-prepare-exit): Change log message for nil group
23856         destinations.
23857
23858 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
23859
23860         * spam.el (spam-report-resend-register-routine):
23861         Allow spam-report-resend-to to be a group parameter or a global value.
23862
23863 2004-05-26  Simon Josefsson  <jas@extundo.com>
23864
23865         * starttls.el: Merge with my GNUTLS based starttls.el.
23866         (starttls-gnutls-program, starttls-use-gnutls)
23867         (starttls-extra-arguments, starttls-process-connection-type)
23868         (starttls-connect, starttls-failure, starttls-success):
23869         New variables.
23870         (starttls-program, starttls-extra-args): Doc fix.
23871         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
23872         New functions.
23873         (starttls-negotiate, starttls-open-stream):
23874         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
23875         function if it is set.
23876
23877 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
23878
23879         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
23880         structured fields.
23881
23882 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23883
23884         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
23885
23886 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
23887
23888         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
23889         Add variable.
23890         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
23891         assigning the spam-mark to new messages.
23892
23893 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
23894
23895         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
23896
23897 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23898
23899         * dgnushack.el: Autoload customize-set-variable for XEmacs.
23900
23901         * rfc2047.el (rfc2047-encodable-p): Don't move point.
23902         (rfc2047-decode): Treat the ascii coding-system as raw-text by
23903         default.
23904
23905 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
23906
23907         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
23908         correct data.
23909
23910 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
23911
23912         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
23913         (spam-group-processor-p): Fix function.
23914         (spam-group-processor-multiple-p)
23915         (spam-group-spam-processor-report-gmane-p)
23916         (spam-group-spam-processor-report-resend-p)
23917         (spam-group-spam-processor-bogofilter-p)
23918         (spam-group-spam-processor-blacklist-p)
23919         (spam-group-spam-processor-ifile-p)
23920         (spam-group-ham-processor-ifile-p)
23921         (spam-group-spam-processor-spamoracle-p)
23922         (spam-group-spam-processor-crm114-p)
23923         (spam-group-ham-processor-bogofilter-p)
23924         (spam-group-spam-processor-stat-p)
23925         (spam-group-ham-processor-stat-p)
23926         (spam-group-ham-processor-whitelist-p)
23927         (spam-group-ham-processor-BBDB-p)
23928         (spam-group-ham-processor-spamoracle-p)
23929         (spam-group-ham-processor-copy-p): Remove functions with some
23930         prejudice against unneeded code.
23931         (spam-report-articles-resend)
23932         (spam-report-resend-register-routine): Allow the group/topic
23933         spam-resend-to value to override spam-report-resend-to.
23934         (spam-summary-prepare-exit): Invoke spam-group-processor-p
23935         properly now.
23936
23937         * gnus.el (spam-resend-to): Add group/topic parameter.
23938         (spam-process): Move the OBSOLETE processors to the end of the
23939         choices.
23940
23941 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
23942
23943         * spam-report.el (spam-report-resend-to, spam-report-resend):
23944         Start with resend-to set to nil, and then ask the user if necessary.
23945         (spam-report-resend): spam-report-resend takes a list of articles, not
23946         separate article numbers.
23947
23948 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23949
23950         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
23951         addition to emacs-w3m.
23952
23953 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23954
23955         * assistant.el (assistant-authinfo-data): New function.
23956         (assistant-eval): Eval for entire assistant.
23957
23958         * netrc.el (netrc-services-file): New variable.
23959         (netrc-parse-services): New function.
23960         (netrc-find-service-name): New function.
23961         (netrc-find-service-number): New function.
23962         (netrc-port-equal): New function.
23963         (netrc-machine): Use it.
23964
23965         * nnimap.el (nnimap-open-connection): Use netrc.
23966
23967         * gnus-util.el (gnus-netrc-get): Remove aliases.
23968
23969         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
23970
23971         * assistant.el (wid-edit): Fix compilation.
23972
23973         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
23974
23975 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
23976
23977         * gnus-util.el (gnus-set-file-modes): New function.  (small
23978         patch).
23979
23980 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23981
23982         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
23983
23984         * assistant.el (assistant-render-node): Fix up rendering and
23985         read-only text.
23986         (assistant-render-node): Reset.
23987         (assistant-make-read-only): Not sticky.
23988
23989 2004-05-20  Danny Siu  <dsiu@adobe.com>
23990
23991         * gnus-sum.el (gnus-summary-recenter): Summary buffer was not auto
23992         centered even when gnus-auto-center-summary is t.
23993
23994 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23995
23996         * dns.el (dns-get-txt-answer): New function.
23997         (dns-read-txt): Ditto.
23998         (query-dns): Use it.
23999
24000 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
24001
24002         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
24003         active for foreign groups even if the group level is higher than
24004         the specified value.
24005
24006 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24007
24008         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
24009         non-active groups.
24010
24011         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
24012
24013 2004-05-20  Magnus Henoch  <mange@freemail.hu>
24014
24015         * dns.el (dns-read-type): Add support for SVR.  (small patch)
24016
24017 2004-05-20  Adam Sjøgren  <asjo@koldfront.dk>
24018
24019         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
24020         (spam-crm114-header, spam-crm114-spam-switch)
24021         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
24022         (spam-crm114-positive-spam-header)
24023         (spam-crm114-database-directory, spam-list-of-processors)
24024         (spam-group-spam-processor-crm114-p)
24025         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
24026         (spam-generic-score, spam-list-of-checks)
24027         (spam-list-of-statistical-checks, spam-registration-functions)
24028         (spam-check-crm114-headers, spam-crm114-score)
24029         (spam-check-crm114, spam-crm114-register-with-crm114)
24030         (spam-crm114-register-spam-routine)
24031         (spam-crm114-unregister-spam-routine)
24032         (spam-crm114-register-ham-routine)
24033         (spam-crm114-unregister-ham-routine): Add CRM114 support.
24034
24035 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
24036
24037         * gnus.el: Add spam-use-crm114.
24038
24039         * spam.el (spam-list-of-processors, spam-registration-functions):
24040         Add spam-use-resend.
24041         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
24042         (spam-report-articles-gmane): Add doc fix.
24043         (spam-report-articles-resend, spam-report-resend-register-routine):
24044         Add wrappers around spam-report-resend-to.
24045
24046         * spam-report.el (spam-report-resend-to, spam-report-resend):
24047         Add support for resending spam.
24048         (spam-report-gmane): Fix line length >80.
24049
24050         * gnus.el (spam-process): Add spam-use-resend.
24051
24052 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24053
24054         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
24055         number of processed spam messages.
24056         (spam-ham-copy-or-move-routine): Return the number of processed
24057         ham messages.
24058         (spam-summary-prepare-exit): Use the above values to decide
24059         whether status messages shouled be displayed.
24060
24061 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
24062
24063         * rfc2047.el (rfc2047-encode-function-alist): Rename from
24064         `rfc2047-encoding-function-alist' in order to avoid conflicting
24065         with the old version.
24066         (rfc2047-encode-region): Concatenate words containing non-ASCII
24067         characters in structured fields; don't encode space-delimited
24068         ASCII words even in unstructured fields; don't break words at
24069         char-category boundaries.
24070         (rfc2047-encode-1): New function.
24071         (rfc2047-encode): Use it; encode text so that it occupies the
24072         maximum width within 76-column; work correctly on Q encoding for
24073         iso-2022-* charsets.
24074         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
24075         sure not to break a line just after the header name.
24076         (rfc2047-b-encode-region): Remove.
24077         (rfc2047-b-encode-string): New function.
24078         (rfc2047-q-encode-region): Remove.
24079         (rfc2047-q-encode-string): New function.
24080
24081         * mm-util.el (mm-replace-in-string): New function.
24082
24083 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24084
24085         * gnus-msg.el (gnus-inews-make-draft-meta-information):
24086         Really get it right.
24087         (gnus-inews-make-draft): Really.
24088
24089 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
24090
24091         * nnmh.el (nnmh-request-list-1): Don't check the link count
24092         before descending.  (small patch)
24093
24094 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24095
24096         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
24097         stuff.
24098
24099         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
24100         Match on real group name.
24101
24102         * gnus-art.el (gnus-signature-limit): Doc fix.
24103
24104         * gnus-msg.el (gnus-inews-make-draft): Quote list.
24105
24106         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
24107
24108 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
24109
24110         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
24111         isn't a string.
24112
24113 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24114
24115         * gnus-draft.el (gnus-draft-send):
24116         Bind rfc2047-encode-encoded-words.
24117
24118         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
24119         (rfc2047-encodable-p): Say that =? needs encoding.
24120         (rfc2047-encode-encoded-words): New variable.
24121
24122         * gnus-group.el (gnus-group-select-group): Doc fix.
24123
24124         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
24125
24126         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
24127         to nil.
24128
24129         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
24130
24131         * nnheader.el (nnheader-get-lines-and-char): New function.
24132
24133 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
24134
24135         * gnus-msg.el (gnus-summary-followup-with-original):
24136         Document yanking of region when active.
24137
24138 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
24139
24140         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
24141         groups if the group level is higher than the specified value.
24142
24143 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24144
24145         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
24146         (gnus-group-jump-to-group): Add prefix argument using
24147         `gnus-group-jump-to-group-prompt'.  Query before jumping to
24148         non-active group.
24149
24150         * compface.el (uncompface): Be verbose when changing
24151         `uncompface-use-external'.
24152
24153         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
24154         handle manual section.
24155
24156 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24157
24158         * gnus-art.el (gnus-button-alist): Revert previous change.
24159
24160 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24161
24162         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
24163
24164 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24165
24166         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
24167         whether backend can accept message.
24168
24169         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
24170
24171 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
24172
24173         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
24174         Avoid creating directory when nntp-marks-is-evil is true.
24175         Reported by Reiner Steib.
24176
24177 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
24178
24179         * gnus-picon.el (gnus-picon-insert-glyph):
24180         Add optional `nostring' argument.
24181
24182 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
24183
24184         * gnus-picon.el (gnus-picon-style): New variable.
24185         (gnus-picon-transform-address): Support `gnus-picon-style'.
24186
24187 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24188
24189         * message.el (message-fill-field): Return point.
24190         (message-generate-headers): Go to end of field.
24191
24192         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
24193         stuff for non-living groups.
24194
24195 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
24196
24197         * gnus-art.el (gnus-article-followup-with-original)
24198         (gnus-article-reply-with-original): gnus-mark-active-p ->
24199         gnus-region-active-p.
24200
24201 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
24202
24203         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
24204         only when there is spam or ham to be processed.
24205
24206 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24207
24208         * mail-source.el (mail-source-delete-crash-box): Refactor.
24209         (mail-source-fetch): Use it.
24210         (mail-source-fetch-file): Ditto.
24211         (mail-source-fetch-directory): Run postscript in loop.
24212         (mail-source-fetch-pop): Delete.
24213         (mail-source-fetch-maildir): Ditto.
24214         (mail-source-fetch-imap): Ditto.
24215
24216         * imap.el (imap-authenticators): Comment out sasl.
24217
24218         * message.el (message-skip-to-next-address): New function.
24219         (message-fill-header-address): Refactor.
24220         (message-fill-address): Use it.
24221         (message-delete-address): Use it.
24222         (message-fill-header-general): Refactor.
24223         (message-fill-field-address): Rename.
24224         (message-narrow-to-field): Find the start of the header.
24225         (message-header-format-alist): Don't pre-fill.
24226         (message-fill-header): Remove.
24227         (message-insert-header): New function.
24228         (message-shorten-references): Use it.
24229
24230         * rfc2047.el (rfc2047-field-value): Strip props.
24231
24232         * mail-parse.el (mail-header-make-address): New alias.
24233
24234         * ietf-drums.el (ietf-drums-make-address): New function.
24235
24236         * imap.el: Add compiler directives.
24237
24238         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
24239
24240         * gnus-art.el (article-decode-idna-rhs): Don't use
24241         message-idna-inside-rhs-p.
24242
24243 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24244
24245         * message.el (message-idna-inside-rhs-p): Remove.
24246         (message-idna-to-ascii-rhs-1): Use proper address parsing.
24247
24248         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
24249         false positives.
24250
24251 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
24252
24253         * imap.el (imap-sasl-make-mechanisms): Use sasl.
24254
24255 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24256
24257         * nneething.el (nneething-file-name): Don't create spurious
24258         files.
24259
24260         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
24261         (gnus-inews-do-gcc): Remove sleep.
24262
24263         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
24264         part under point.
24265
24266         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
24267         (gnus-agent-regenerate-group): Using nil messages aren't valid.
24268
24269 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
24270
24271         * spam.el (spam-summary-prepare-exit): Fix (length).
24272
24273 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
24274
24275         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
24276         as expired without moving it" message when there are spam
24277         messages left.
24278
24279 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
24280
24281         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
24282         header is not nil.
24283
24284 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
24285
24286         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
24287         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
24288         (nntp-marks-changed-p): New arg SERVER.
24289         (nntp-request-update-info): Adjust caller.
24290
24291 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
24292
24293         * nntp.el (nntp-save-marks): Pass missing arg.
24294
24295 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
24296
24297         * nntp.el: Support marks.
24298         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
24299         (nntp-marks-modtime, nntp-marks-directory): New variables.
24300         (nntp-request-set-mark, nntp-request-update-info)
24301         (nntp-possibly-create-directory, nntp-marks-changed-p)
24302         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
24303         New functions.
24304
24305 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
24306
24307         * gnus-xmas.el (gnus-xmas-select-lowest-window)
24308         (gnus-xmas-redefine): Rename.
24309
24310         * gnus-score.el (gnus-score-insert-help):
24311         Use gnus-select-lowest-window.
24312
24313         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
24314         appt-select-lowest-window and rename to gnus-select-lowest-window.
24315
24316         * gnus.el: do.
24317
24318 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24319
24320         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
24321         encodings of MIME-encoded words, in order to improve
24322         interoperability with several broken MUAs.
24323
24324 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24325
24326         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
24327         tags, only when charsets are not specified in headers.
24328         (mm-inline-text-html-render-with-w3m): Ditto.
24329
24330         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
24331         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
24332
24333 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24334
24335         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
24336         instead of MIME-decoded from fields when checking
24337         `gnus-article-address-banner-alist'.
24338
24339 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
24340
24341         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
24342         description rather than subject.
24343
24344 2004-05-02  Steve Youngs  <steve@youngs.au.com>
24345
24346         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
24347
24348 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24349
24350         * gnus.el (gnus-version-number): Bump.
24351
24352 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
24353
24354         * gnus.el: No Gnus v0.2 is released.
24355
24356 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24357
24358         * gnus-agent.el (gnus-agent-read-agentview):
24359         Inline gnus-uncompress-range.
24360
24361 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24362
24363         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
24364         `exec-installed-p'.
24365
24366 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24367
24368         * gnus.el (spam-process, spam-autodetect-methods):
24369         Add bsfilter and bsfilter-headers.
24370
24371         * spam.el (spam-bsfilter): New customize group.
24372         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
24373         (spam-bsfilter-header, spam-bsfilter-probability-header)
24374         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
24375         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
24376         (spam-bsfilter-database-directory): New options.
24377         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
24378         (spam-list-of-statistical-checks, spam-registration-functions):
24379         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
24380         (spam-bsfilter-score): New command.
24381         (spam-check-bsfilter-headers, spam-check-bsfilter)
24382         (spam-bsfilter-register-with-bsfilter)
24383         (spam-bsfilter-register-spam-routine)
24384         (spam-bsfilter-unregister-spam-routine)
24385         (spam-bsfilter-register-ham-routine)
24386         (spam-bsfilter-unregister-ham-routine): New functions.
24387         (spam-generic-score): Support bsfilter; Accept an optional argument
24388         to recalcurate spam score even if scoring header has already been
24389         added.
24390         (spam-bogofilter-score, spam-spamassassin-score): Accept an
24391         optional argument to recalcurate spam score even if scoring header
24392         has already been added.
24393
24394 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
24395
24396         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
24397         strings!  Reported by David D. Smith <davidsmith@acm.org>.
24398         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
24399         link is missing.
24400
24401 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
24402
24403         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
24404         (html2text-get-attr): Rewrite.
24405
24406         * message.el (message-setup-1): Remove redundant put-text-property
24407         on mail-header-separator.
24408
24409 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
24410
24411         * gnus-registry.el (gnus-registry-cache-whitespace)
24412         (gnus-registry-action, gnus-registry-spool-action)
24413         (gnus-registry-split-fancy-with-parent): Change message levels
24414         from 5 to 3 or 7, as needed.
24415
24416         * spam.el (spam-summary-prepare-exit)
24417         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
24418         (spam-split, spam-find-spam, spam-log-undo-registration)
24419         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
24420         level from 5 to 6.
24421
24422 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24423
24424         * gnus-ems.el: Autoload appt-select-lowest-window (revert
24425         2004-03-04 change).
24426
24427 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
24428
24429         * sieve-manage.el (sieve-manage-open):
24430         * nnweb.el (nnweb-insert-html):
24431         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
24432         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
24433         * nnspool.el (nnspool-request-group):
24434         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
24435         * nnml.el (nnml-request-update-info):
24436         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
24437         (nnmh-request-create-group, nnmh-update-gnus-unreads):
24438         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
24439         (nnimap-request-set-mark):
24440         * nnfolder.el (nnfolder-request-update-info):
24441         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
24442         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
24443         * gnus-uu.el (gnus-uu-find-articles-matching):
24444         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
24445         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
24446         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
24447         * gnus-nocem.el (gnus-nocem-scan-groups):
24448         * gnus-int.el (gnus-start-news-server):
24449         * gnus-group.el (gnus-group-make-kiboze-group)
24450         (gnus-group-browse-foreign-server):
24451         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
24452         Use mapc when appropriate.
24453
24454 2004-04-22  Dan Christensen  <jdc@uwo.ca>
24455             Adam Sjøgren  <asjo@koldfront.dk>
24456             Wes Hardaker  <wes@hardakers.net>
24457             Michael Shields  <shields@msrl.com>
24458
24459         * spam.el (spam-necessary-extra-headers): Get the extra headers we
24460         may need for spam sorting and scoring.
24461         (spam-user-format-function-S): Add user format function suitable for
24462         general use.
24463         (spam-article-sort-by-spam-status): Add sorting function for summary
24464         sorting.
24465         (spam-extra-header-to-number): Add function to get a score from a
24466         header.
24467         (spam-summary-score): Add function to get a numeric score from the
24468         headers.
24469         (spam-generic-score): Fix function doc, was in wrong place.
24470         (spam-initialize): Take symbols when it's run, and install the
24471         extra headers that spam-necessary-extra-headers thinks we need.
24472
24473 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
24474
24475         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
24476         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
24477
24478 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
24479
24480         * gnus-sum.el (gnus-set-global-variables)
24481         (gnus-build-all-threads, gnus-get-newsgroup-headers)
24482         (gnus-article-get-xrefs, gnus-summary-best-group)
24483         (gnus-summary-next-article, gnus-summary-enter-digest-group)
24484         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
24485         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
24486         Use with-current-buffer.
24487
24488 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
24489
24490         * spam.el (spam-summary-prepare-exit): Simplify logic.
24491         (spam-fetch-article-header): Read the article header if it's not
24492         available.
24493         (spam-list-articles): Simplify logic.
24494         (spam-filelist-register-routine): Fix bug with unregister-list.
24495
24496         * gnus-registry.el: Fix comments at beginning.
24497
24498 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
24499
24500         * message.el (message-cater-to-broken-inn): Remove.
24501         (message-shorten-references): Make sure the total folded length of
24502         References is shorter than 998 characters to cater to a bug in INN
24503         2.3.  Also, don't pretend that references aren't folded -- this
24504         hasn't worked for a while.
24505
24506 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24507
24508         * gnus-agent.el (gnus-agentize):
24509         gnus-agent-send-mail-real-function no longer set to current value
24510         of message-send-mail-function but rather a lambda that calls
24511         message-send-mail-function.  The change makes the agent real-time
24512         responsive to user changes to message-send-mail-function.
24513
24514 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24515
24516         * legacy-gnus-agent.el
24517         (gnus-agent-convert-to-compressed-agentview): Fix typos with
24518         help from Florian Weimer <fw@deneb.enyo.de>
24519
24520 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24521
24522         * nnmail.el (nnmail-cache-insert): Revert last change.
24523
24524 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
24525
24526         * nnmail.el (nnmail-cache-insert): Always check whether
24527         nnmail-cache-ignore-groups matches a group name.
24528
24529 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
24530
24531         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
24532         (spam-find-spam, spam-log-processing-to-registry)
24533         (spam-log-registered-p, spam-log-unregistration-needed-p)
24534         (spam-log-undo-registration): Use gnus-message instead of
24535         gnus-error, none of these errors are fatal.
24536
24537         * gnus-registry.el (gnus-registry-clean-empty-function)
24538         (gnus-registry-clean-empty): Remove only empty entries without
24539         extra data.
24540
24541 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
24542
24543         * spam-stat.el (spam-stat-buffer-change-to-spam)
24544         (spam-stat-buffer-change-to-non-spam): Change (error) to
24545         (gnus-message 8) invocation.
24546
24547 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24548
24549         * nntp.el (nntp-via-netcat-command): New variable.
24550         (nntp-via-netcat-switches): New variable.
24551         (nntp-open-via-rlogin-and-netcat): New function.
24552         (nntp-open-connection-function): Doc fix.
24553         (nntp-telnet-command): Doc fix.
24554         (nntp-end-of-line): Doc fix.
24555         (nntp-via-rlogin-command): Doc fix.
24556         (nntp-via-user-name): Doc fix.
24557         (nntp-via-address): Doc fix.
24558
24559 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
24560
24561         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
24562         error in Emacs 21.1.
24563
24564 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
24565
24566         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
24567
24568 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24569
24570         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
24571         (gnus-agent-with-refreshed-group): New macro.
24572         (gnus-agent-rename-group): New function.
24573         (gnus-agent-delete-group): New function.
24574         (gnus-agent-save-group-info): Use gnus-command-method when
24575         `method' parameter is nil.  Don't write nil entries into the
24576         active file.
24577         (gnus-agent-get-group-info): New function.
24578         (gnus-agent-fetch-articles):
24579         Use gnus-agent-update-files-total-fetched-for to increment disk space
24580         used.
24581         (gnus-agent-fetch-headers, gnus-agent-save-alist):
24582         Use gnus-agent-update-view-total-fetched-for to increment disk space
24583         used.
24584         (gnus-agent-get-local): Add optional parameters to avoid calling
24585         gnus-group-real-name and gnus-find-method-for-group.
24586         (gnus-agent-set-local): Delete stored entry if either min, or max,
24587         are nil.
24588         (gnus-agent-fetch-session): Reworded error/quit messages.
24589         On quit, use gnus-agent-regenerate-group to record existance of any
24590         articles fetched to disk before the quit occurred.
24591         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
24592         gnus-agent-update-view-total-fetched-for, and
24593         gnus-agent-update-files-total-fetched-for to decrement disk space
24594         used.
24595         (gnus-agent-retrieve-headers):
24596         Use gnus-agent-update-view-total-fetched-for to increment disk space
24597         used.
24598         (gnus-agent-regenerate-group): Replace gnus-group-update-group
24599         with gnus-agent-update-files-total-fetched-for to decrement disk
24600         space and fresh group buffer.
24601         (gnus-agent-inhibit-update-total-fetched-for): New variable.
24602         (gnus-agent-need-update-total-fetched-for): New variable.
24603         (gnus-agent-update-files-total-fetched-for): New function.
24604         (gnus-agent-update-view-total-fetched-for): New function.
24605         (gnus-agent-total-fetched-for): New function.
24606
24607         * gnus-cache.el (gnus-cache-save-buffers):
24608         Use gnus-cache-update-overview-total-fetched-for to change disk space
24609         used by this group.
24610         (gnus-cache-possibly-enter-article):
24611         Use gnus-cache-update-file-total-fetched-for to increment disk space
24612         used by this group.
24613         (gnus-cache-possibly-remove-article):
24614         Use gnus-cache-update-file-total-fetched-for to decrement disk space
24615         used by this group.
24616         (gnus-cache-generate-nov-databases): Purge total fetched cache.
24617         (gnus-cache-rename-group): New function.
24618         (gnus-cache-delete-group): New function.
24619         (gnus-cache-inhibit-update-total-fetched-for): New variable.
24620         (gnus-cache-need-update-total-fetched-for): New variable.
24621         (gnus-cache-with-refreshed-group): New macro.
24622         (gnus-cache-update-file-total-fetched-for): New function.
24623         (gnus-cache-update-overview-total-fetched-for): New function.
24624         (gnus-cache-rename-group-total-fetched-for): New function.
24625         (gnus-cache-delete-group-total-fetched-for): New function.
24626         (gnus-cache-total-fetched-for): New function.
24627
24628         * gnus-group.el: Require gnus-sum and autoload functions to
24629         resolve warnings when gnus-group.el compiled alone.
24630         (gnus-group-line-format): Documented new %F.
24631         (size of Fetched data) group line format; identifies disk space
24632         used by agent and cache.
24633         (gnus-group-line-format-alist): Defined new F format.
24634         (gnus-total-fetched-for): New function.
24635         (gnus-group-delete-group): No longer update
24636         gnus-cache-active-altered as gnus-request-delete-group now keeps
24637         the cache in sync.
24638         (gnus-group-list-active): Let the agent store a server's active
24639         list if currently plugged.
24640
24641         * gnus-int.el (gnus-request-delete-group):
24642         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
24643         local disk in sync with the server.
24644         (gnus-request-rename-group):
24645         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
24646         local disk in sync with the server.
24647
24648         * gnus-start.el (gnus-get-unread-articles):
24649         Cosmetic simplification to logic.
24650
24651         * gnus-util.el (gnus-rename-file): New function.
24652
24653 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
24654
24655         * mm-util.el (mm-image-load-path): Handle nil in load-path.
24656
24657 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
24658
24659         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
24660         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
24661
24662 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
24663
24664         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
24665         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
24666
24667 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
24668
24669         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
24670
24671 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
24672
24673         * spam.el (spam-set-difference): Add function to replace
24674         gnus-set-difference in spam.el.
24675         (spam-summary-prepare-exit): Use spam-set-difference.
24676
24677 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
24678
24679         * gnus-registry.el (gnus-registry-cache-file): Update to use
24680         gnus-dribble-directory OR gnus-home-directory OR ~.
24681         (gnus-registry-split-fancy-with-parent): Fix doc.
24682
24683 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
24684
24685         * message.el (message-exchange-point-and-mark):
24686         Use message-mark-active-p.  Suggested by Jesper Harder
24687         <harder@ifa.au.dk>.
24688
24689 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24690
24691         * message.el (message-exchange-point-and-mark): Don't activate
24692         region if it was inactive.  Suggested by Hiroshi Fujishima
24693         <pooh@nature.tsukuba.ac.jp>.
24694
24695 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
24696
24697         * gnus-art.el (article-display-face): Display Faces in the same
24698         order as X-Faces.
24699
24700 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
24701
24702         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
24703
24704 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24705
24706         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
24707         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
24708         (gnus-article-mime-hierarchy): Remove.
24709         (gnus-article-mime-hierarchy-next): Remove.
24710         (gnus-article-mode): Revert 2004-03-19 change.
24711         (gnus-article-setup-buffer): Revert 2004-03-19 change.
24712         (gnus-insert-mime-button): Revert 2004-03-19 change.
24713         (gnus-mime-accumulate-hierarchy): Remove.
24714         (gnus-mime-enter-multipart): Remove.
24715         (gnus-mime-leave-multipart): Remove.
24716         (gnus-mime-display-part): Revert 2004-03-19 change.
24717         (gnus-mime-display-alternative): Revert 2004-03-19 change.
24718
24719         * mml.el (mml-preview): Revert 2004-03-19 change.
24720
24721 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
24722
24723         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
24724
24725 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
24726
24727         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
24728         t while entering a file name using the mm-with-multibyte macro.
24729         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
24730
24731         * mm-util.el (mm-with-multibyte): New macro.
24732
24733 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
24734
24735         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
24736         New user option.
24737         (gnus-mime-multipart-functions): Doc and customization fix.
24738         (gnus-article-mime-hierarchy): New variable.
24739         (gnus-article-mime-hierarchy-next): New variable.
24740         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
24741         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
24742         gnus-article-mime-hierarchy-next to nil.
24743         (gnus-insert-mime-button): Show hierarchy numbers.
24744         (gnus-mime-accumulate-hierarchy): New function.
24745         (gnus-mime-enter-multipart): New function.
24746         (gnus-mime-leave-multipart): New function.
24747         (gnus-mime-display-part): Recompute hierarchical MIME structure.
24748         (gnus-mime-display-alternative): Show hierarchy numbers.
24749
24750         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
24751         gnus-article-mime-hierarchy-next to nil.
24752
24753 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
24754
24755         * dns.el: Don't require gnus-xmas.
24756
24757 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
24758
24759         * mml.el (mml-generate-mime-1): Don't use format=flowed with
24760         inline PGP.
24761         (mml-menu): Disable mml-quote-region if mark is inactive.
24762
24763 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
24764
24765         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
24766         when the group's active is not available.
24767
24768 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24769
24770         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
24771         error.
24772
24773 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
24774
24775         * imap.el (imap-store-password): New variable.
24776         (imap-interactive-login): Use it.
24777         Suggested by Mark Plaksin <happy@mcplaksin.org>.
24778
24779 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24780
24781         * gnus-art.el (gnus-article-read-summary-keys): Restore new
24782         window-start and hscroll to summary window.
24783
24784 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24785
24786         * gnus-start.el (gnus-convert-old-newsrc): Only write the
24787         conversion message to newsrc-dribble when an actual conversion is
24788         performed.
24789
24790 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
24791
24792         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
24793
24794 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
24795
24796         * mm-decode.el (mm-complicated-handles): New function reviving
24797         former definition of mm-multiple-handles.
24798
24799         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
24800         (gnus-mime-delete-part): Use it.
24801
24802 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24803
24804         * gnus-agent.el (gnus-agent-read-local):
24805         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
24806         avoid the implicit assumption that they will always be equal.
24807         (gnus-agent-save-local): Bind buffer-file-coding-system, not
24808         coding-system-for-write, as the with-temp-file macro first prints
24809         to a buffer then saves the buffer.
24810
24811 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
24812
24813         * gnus-art.el (gnus-article-edit-part): New function.
24814         (gnus-mime-save-part-and-strip): Use it; do query instead of
24815         signaling an error; don't use mm-multiple-handles.
24816         (gnus-mime-delete-part): Ditto.
24817
24818 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24819
24820         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
24821         old file versions.
24822         (gnus-group-prepare-hook): Remove function that converted list
24823         form of gnus-agent-expire-days to group properties.
24824
24825         * gnus-int.el: Autoload gnus-agent-regenerate-group.
24826         (gnus-request-accept-article): Re-indented.
24827
24828         * gnus-start.el (gnus-convert-old-newsrc): Registered new
24829         converters to handle old agent file formats.  Add logic for a
24830         "backup before upgrading warning".
24831         (gnus-convert-mark-converter-prompt): Developers can mark
24832         functions as needing (default), or not needing,
24833         gnus-convert-old-newsrc's "backup before upgrading warning".
24834         (gnus-convert-converter-needs-prompt): Tests whether the user
24835         should be protected from potentially irreversable changes by the
24836         function.
24837
24838         * legacy-gnus-agent.el: New.  Provides converters that are only
24839         loaded when gnus-convert-old-newsrc needs to call them.
24840
24841 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
24842
24843         * mail-source.el (mail-source-touch-pop): Doc fix.
24844
24845         * message.el (message-smtpmail-send-it): Doc fix.
24846
24847 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
24848
24849         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
24850
24851         * nnmail.el (nnmail-split-fancy): do.
24852
24853         * gnus-kill.el (gnus-kill, gnus-execute): do.
24854
24855 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
24856
24857         * gnus-sum.el (gnus-widget-reversible-match)
24858         (gnus-widget-reversible-to-internal)
24859         (gnus-widget-reversible-to-external): New functions.
24860         (gnus-widget-reversible): New widget.
24861         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
24862
24863 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
24864
24865         * gnus-sum.el (gnus-thread-sort-functions)
24866         (gnus-article-sort-functions): Document `(not F)' items.
24867
24868 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
24869
24870         * spam.el (spam-use-gmane-xref): Add new backend.
24871         (spam-gmane-xref-spam-group): Add variable to control the name of the
24872         Gmane spam group.
24873         (spam-blackhole-servers, spam-blackhole-good-server-regex)
24874         (spam-regex-headers-spam, spam-regex-headers-ham)
24875         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
24876         (spam-list-of-checks): Add spam-use-gmane-xref to list of
24877         backends and checks.
24878         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
24879
24880         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
24881         an autodetect method.
24882
24883 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24884
24885         * gnus-int.el (gnus-request-accept-article): Inform the agent that
24886         articles are being added to a group.
24887         (gnus-request-replace-article): Inform the agent that articles
24888         need to be uncached as the cached contents are no longer valid.
24889
24890 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
24891
24892         * binhex.el: Don't autoload executable-find.
24893
24894         * canlock.el: Don't autoload mail-fetch-field.
24895
24896         * dgnushack.el: Autoload c-mode for XEmacs.
24897
24898         * gnus-ems.el: Don't autoload appt-select-lowest-window.
24899
24900         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
24901         rmail-dont-reply-to and rmail-output.
24902
24903         * gnus-score.el: Don't autoload ffap-string-at-point.
24904
24905         * gnus-setup.el: Don't autoload sc-cite-original.
24906
24907         * imap.el: Don't autoload base64-decode-string,
24908         base64-encode-string and md5.
24909
24910         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
24911         and rmail-msg-restore-non-pruned-header.
24912
24913         * mm-decode.el: Don't autoload executable-find.
24914
24915         * mm-url.el: Don't autoload executable-find.
24916
24917         * mm-view.el: Don't autoload diff-mode.
24918
24919         * nndb.el: Don't autoload news-reply-mode, news-setup,
24920         cancel-timer and telnet.
24921
24922         * password.el: Don't autoload run-at-time for Emacs.
24923
24924         * sha1-el.el: Don't autoload executable-find.
24925
24926         * sieve-mode.el: Don't autoload c-mode.
24927
24928         * uudecode.el: Don't autoload executable-find.
24929
24930 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24931
24932         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
24933         (gnus-agent-possibly-alter-active): Avoid null in numeric
24934         comparison.
24935         (gnus-agent-set-local): Refuse to save null in local object table.
24936         (gnus-agent-regenerate-group): The REREAD parameter can now be a
24937         list of articles that will be marked as unread.
24938
24939 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
24940
24941         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
24942
24943 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
24944
24945         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
24946         language tags.
24947
24948 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
24949
24950         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
24951         Don't bind "obarray".
24952
24953         * gnus-sum.el (gnus-thread-sort-functions):
24954         Add `gnus-thread-sort-by-most-recent-number' and
24955         `gnus-thread-sort-by-most-recent-date'.
24956         Reported by Kai Grossjohann <kai@emptydomain.de>.
24957
24958 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
24959
24960         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
24961
24962 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
24963
24964         * gnus-cus.el (gnus-agent-customize-category):
24965         Remove ignore-errors macro reference that required cl to be loaded at
24966         run-time.
24967
24968         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
24969         single-interval range of the form (min . max).  Previously the
24970         range had to look like ((min . max)).  Likewise, return
24971         (min . max) rather than ((min . max)).
24972         (gnus-range-map): Use gnus-range-normalize to accept
24973         single-interval range.
24974
24975         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
24976         the cache, but not the agent, now appear with their usual face.
24977
24978         * dgnushack.el (loaddir): New variable that is bound to the
24979         directory containing the dgnushack.el file. Use loaddir, rather
24980         than srcdir, to update load-path. Change lets dgnushack compile
24981         code in directories other than GNUS/lisp.
24982
24983 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
24984
24985         * lpath.el: Don't bind w3m-safe-url-regexp.
24986
24987         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
24988         w3m-safe-url-regexp variable buffer-local.
24989
24990         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
24991
24992 2004-02-27  Simon Josefsson  <jas@extundo.com>
24993
24994         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
24995         gnus-group-real-prefix.
24996         (gnus-summary-move-article): Use it, instead of
24997         gnus-group-real-prefix.
24998
24999 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
25000
25001         * lpath.el: Bind w3m-safe-url-regexp.
25002
25003         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
25004         w3m-safe-url-regexp variable buffer-local and set it as the value
25005         of mm-w3m-safe-url-regexp.
25006
25007         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
25008
25009         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
25010         parsing gnus-posting-styles when the message is not for replying.
25011
25012         * dgnushack.el: Autoload sgml-mode for XEmacs.
25013
25014         * nnrss.el (nnrss-opml-export):
25015         Use mm-set-buffer-file-coding-system instead of
25016         set-buffer-file-coding-system.
25017
25018 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
25019
25020         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
25021         of checkdoc.el).
25022         * nnrss.el: do.
25023         * gnus-mlspl.el: do.
25024         * gnus-ml.el: do.
25025         * gnus-srvr.el: do.
25026
25027         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
25028
25029 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
25030
25031         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
25032         Corrections to custom-manual links.
25033
25034         * gnus-art.el (gnus-article): Ditto.
25035
25036         * mm-decode.el (mime-display, mime-security): Ditto.
25037
25038 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
25039
25040         * flow-fill.el: Typo.
25041
25042 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
25043
25044         * spam-wash.el: New file.
25045
25046 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
25047
25048         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
25049
25050 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
25051
25052         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
25053         to be run with new-articles as LIST1, not LIST2.
25054         (spam-registration-functions): Add spam-use-ham-copy as a nil
25055         registration backend.
25056
25057 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
25058
25059         * spam-stat.el (spam-stat-washing-hook): New option.
25060         (spam-stat-buffer-words): Use it.
25061         (spam-stat-process-directory, spam-stat-test-directory):
25062         Use insert-file-contents-literally.
25063         (spam-stat-coding-system): New variable.
25064         (spam-stat-load, spam-stat-save): Use it.
25065
25066 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
25067
25068         * spam-report.el (spam-report-plug-agent):
25069         Quote spam-report-url-to-file and spam-report-url-ping-plain.
25070
25071 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
25072
25073         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
25074         Allow / in mailto URLs.
25075
25076 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
25077
25078         * spam-report.el (spam-report-process-queue): Fix interactive use.
25079         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
25080         (spam-report-unplug-agent): Doc fixes.
25081         (spam-report-url-ping-mm-url, spam-report-url-to-file)
25082         (spam-report-agentize, spam-report-deagentize): Autoload.
25083
25084 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
25085
25086         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
25087
25088         * message.el (message-setup-fill-variables): Add mml tags to
25089         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
25090         <ajk@iu.edu>.
25091         (message-mode): Don't modify paragraph-separate there.
25092
25093 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
25094
25095         * compface.el (uncompface-use-external): Default to undecided.
25096         (uncompface-use-external-threshold): New variable.
25097         (uncompface-float-time): New macro.
25098         (uncompface): Determine whether to use the external decoder if
25099         uncompface-use-external is undecided.
25100
25101 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25102
25103         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
25104         after images.
25105
25106         * gnus-art.el (gnus-mime-display-single): Remove dead code.
25107
25108 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
25109
25110         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
25111
25112         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
25113
25114         * gnus-sum.el (gnus-summary-limit-to-age)
25115         (gnus-summary-limit-children): do.
25116
25117         * gnus-int.el (gnus-request-scan): do.
25118
25119         * gnus-group.el (gnus-group-suspend): do.
25120
25121         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
25122
25123         * gnus-cite.el (gnus-cite-parse-attributions): do.
25124
25125         * gnus-agent.el (gnus-summary-set-agent-mark)
25126         (gnus-agent-regenerate-group): do.
25127
25128         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
25129
25130         * binhex.el (binhex-decode-region-internal): do.
25131
25132 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
25133
25134         * gnus-fun.el (gnus-face-properties-alist): New user option.
25135         (gnus-display-x-face-in-from): Use it.
25136
25137         * gnus-art.el (article-display-face): Ditto.
25138
25139         * compface.el (uncompface-use-external): Default to nil.
25140
25141 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
25142
25143         * nntp.el (nntp-erase-buffer): New function.
25144         (nntp-retrieve-data, nntp-send-command)
25145         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
25146         (nntp-possibly-change-group): Use it.
25147
25148         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
25149         Use with-current-buffer.
25150
25151 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
25152
25153         * compface.el: Merge the ELisp-based uncompface program.
25154         (compface): New customization group.
25155         (uncompface-use-external): New user option.
25156         (uncompface): Call uncompface-internal if uncompface-use-external
25157         is nil.
25158         (uncompface-internal): New function.  Note that there are also
25159         some other functions and variables added for this function.
25160
25161 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
25162
25163         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
25164         if necessary.
25165
25166 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
25167
25168         * spam-report.el (spam-report-unplug-agent)
25169         (spam-report-plug-agent, spam-report-deagentize)
25170         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
25171         Add support for the Agent in spam-report: when unplugged, report to a
25172         file; when plugged, submit all the requests.
25173
25174         * spam.el (spam-register-routine): Fix message about
25175         registration.
25176
25177 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
25178
25179         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
25180         dependencies.
25181         (rfc2047-encode): Use it.
25182
25183         * gnus-art.el (gnus-button-marker-list): Move before first
25184         reference.
25185
25186         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
25187         (imap-parse-body): Fix format string mismatch.
25188
25189         * gnus-score.el (gnus-summary-increase-score): do.
25190
25191         * nnrss.el (nnrss-close): New function.
25192
25193 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
25194
25195         * nnrss.el (nnrss-make-filename): New function.
25196         (nnrss-request-delete-group, nnrss-read-server-data)
25197         (nnrss-save-server-data, nnrss-read-group-data)
25198         (nnrss-save-group-data): Use it.
25199         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
25200         (nnrss-read-server-data, nnrss-read-group-data): Use load.
25201         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
25202
25203 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
25204
25205         * mml.el (mml-compute-boundary-1): Don't uncompress files.
25206
25207 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
25208
25209         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
25210         files.
25211
25212         * message.el (message-generate-headers-first): Don't quote nil
25213         and t in docstrings.
25214
25215         * imap.el (imap-id): do.
25216
25217         * gnus-agent.el (gnus-agent-consider-all-articles)
25218         (gnus-agent-queue-mail): do.
25219
25220 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
25221
25222         * spam-report.el (spam-report-process-queue): New function.
25223         Process requests from `spam-report-requests-file'.
25224         (spam-report-process-queue): Doc fix.
25225
25226 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
25227
25228         * spam.el (spam-register-routine)
25229         (spam-log-processing-to-registry, spam-log-registered-p)
25230         (spam-log-unregistration-needed-p, spam-log-undo-registration):
25231         Change "check" to "spam-check" for semi-clarity.
25232
25233 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
25234
25235         * pop3.el: Require nnheader.
25236
25237         * mml-smime.el: Require cl.  Autoload message-fetch-field.
25238
25239         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
25240
25241         * gnus-picon.el: Require cl.
25242
25243         * gnus-fun.el: Require gnus-ems and gnus-util.
25244
25245         * gnus.el (gnus-method-to-server): Move defsubst before first use.
25246
25247         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr.
25248
25249         * gnus-art.el (gnus-article-edit-mode): Define before first
25250         reference.
25251
25252 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
25253
25254         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
25255         (gnus-uu-post-encoded): Use point-at-bol.
25256
25257         * gnus-topic.el (gnus-group-active-topic-p): do.
25258
25259         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
25260
25261         * gnus-group.el (gnus-group-kill-region): do.
25262
25263         * gnus-art.el (article-date-ut): do.
25264
25265         * message.el (message-fetch-field): Remove redundant
25266         case-fold-search binding.
25267         (message-narrow-to-field): Simplify.
25268
25269 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
25270
25271         * spam.el (spam-directory): Derive from `gnus-directory'.
25272
25273         * spam-report.el (spam-report-url-to-file)
25274         (spam-report-requests-file): New function and variable for offline
25275         reporting.
25276         (spam-report-url-ping-function): Add `spam-report-url-to-file'
25277         and user defined function.
25278         (spam-report-url-ping-mm-url): Remove doubled slash.
25279
25280 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
25281
25282         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
25283
25284 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
25285
25286         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
25287         Fix format string mismatch.
25288
25289         * sieve.el (sieve-deactivate-all): do.
25290
25291         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
25292
25293         * nnlistserv.el (nnlistserv-kk-wash-article): do.
25294
25295         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
25296
25297         * mm-bodies.el (mm-7bit-chars): Don't include \r.
25298
25299 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
25300
25301         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
25302         the list of checks.
25303
25304 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
25305
25306         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
25307         padding.
25308
25309 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
25310
25311         * mm-view.el (mm-fill-flowed): New variable.
25312         (mm-inline-text): Use it.
25313
25314 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
25315
25316         * spam.el (spam-spamassassin-register-ham-routine)
25317         (spam-spamassassin-register-spam-routine): Fix function names.
25318
25319 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
25320
25321         * gnus.el (gnus-tmp-grouplens): Remove.
25322         (gnus-summary-line-format): Remove grouplens.
25323
25324         * gnus-group.el (gnus-group-line-format): Ditto.
25325
25326         * gnus-spec.el (gnus-format-specs): Ditto.
25327         (gnus-update-format-specifications): Flush the group format spec
25328         cache if there's the grouplens stuff.
25329         (gnus-parse-simple-format): Replace %l with the empty string.
25330
25331 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
25332
25333         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
25334         omission.
25335
25336 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
25337
25338         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
25339         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
25340
25341 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
25342
25343         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
25344         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
25345         New macros and functions.
25346         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
25347         Handle > NLINK_MAX messages.
25348         * nnmaildir.el (nnmaildir-request-set-mark):
25349         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
25350
25351 2004-01-25  Alex Schroeder  <alex@gnu.org>
25352
25353         * spam-stat.el (spam-stat-process-directory-age): New option.
25354         (spam-stat-process-directory): Use it.
25355
25356 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
25357
25358         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
25359         (spam-stat-save): Accept prefix argument.
25360
25361 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
25362
25363         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
25364         links" error.
25365
25366 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25367
25368         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
25369         the rest of the and/or forms.
25370
25371 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
25372
25373         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
25374         compatibility with old .newsrc.eld files.
25375
25376         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
25377
25378         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
25379
25380         * gnus-start.el (gnus-1): do.
25381
25382         * gnus-group.el (gnus-group-line-format-alist): do.
25383
25384         * gnus.el (gnus-use-grouplens, gnus-visual): do.
25385
25386         * gnus-gl.el: Remove.
25387
25388 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25389
25390         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
25391         marks consisting of a single range {for example, (3 . 5)} rather
25392         than a list of a single range { ((3 . 5)) }.
25393
25394 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
25395
25396         * spam-stat.el (spam-stat-store-gnus-article-buffer):
25397         Use with-current-buffer.
25398         (spam-stat-store-current-buffer): Use insert-buffer-substring to
25399         avoid consing a string.
25400
25401         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
25402         Remove obsolete entries for big5 and gb2312.
25403
25404 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25405
25406         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
25407         uncompressed list.
25408
25409 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
25410
25411         * spam-stat.el (spam-stat-strip-xref): New function.
25412         (spam-stat-process-directory): Use it.
25413
25414         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
25415         here -- it's done in message-fetch-field.
25416
25417 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
25418
25419         * gnus-agent.el (gnus-agent-queue-mail)
25420         (gnus-agent-prompt-send-queue): New variables.
25421         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
25422         * gnus-draft.el (gnus-group-send-queue): Pass the group name
25423         "nndraft:queue" along to gnus-draft-send.
25424         Use gnus-agent-prompt-send-queue.
25425         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
25426         is "nndraft:queue".  Suggested by Gaute Strokkenes
25427         <gs234@srcf.ucam.org>
25428
25429         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
25430         (agent-enable-undownloaded-faces): Add.
25431         (gnus-agent-cat-groups): Use eval-and-compile, not
25432         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
25433         method of gnus-agent-cat-groups even when the buffer has been
25434         evaled.
25435         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
25436         delete gnus-agent-save-active-1.
25437         (gnus-agent-save-groups): Delete.  Identical to
25438         gnus-agent-save-active.
25439         (gnus-agent-write-active): No longer adjust agent's copy of active
25440         file as agent's adjustments are now stored in their own
25441         file.  Remove optional parameter.
25442         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
25443         servers.  Add use of min/max range limits from server's local
25444         file.
25445         (gnus-agent-save-alist): Remove unused optional argument.
25446         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
25447         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
25448         (gnus-agent-set-local): A per-server file that keeps min/max range
25449         limits for articles known to the agent.  Provides a fast mechanism
25450         for altering many active ranges.
25451         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
25452         active file (local makes it unnecessary).
25453         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
25454
25455         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
25456         (agent-enable-undownloaded-faces): Add.
25457
25458         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
25459         disable it when sending to "nndraft:queue".
25460         (gnus-group-send-queue): Add safety check to avoid sending queue
25461         when unplugged.
25462
25463         * gnus-group.el (gnus-group-catchup): Use new
25464         gnus-sequence-of-unread-articles, not
25465         gnus-list-of-unread-articles, to avoid exhausting memory with huge
25466         numbers of articles.  Use gnus-range-map to avoid having to
25467         uncompress the unread list.
25468         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
25469         Fix invalid ange-ftp reference.
25470
25471         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
25472         (gnus-sorted-range-intersection): Intersection of two ranges
25473         without requiring that they first be uncompressed.
25474
25475         * gnus-start.el (gnus-activate-group): Unless blocked by the
25476         caller, possibly expand the active range to include both cached
25477         and agentized articles.
25478         (gnus-convert-old-newsrc): Rewrote in anticipation of having
25479         multiple version-dependent converters.
25480         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
25481         gnus-agent-save-active.
25482         (gnus-save-newsrc-file): Save dirty agent range limits.
25483
25484         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
25485         gnus-agent-possibly-alter-active.
25486         (gnus-adjust-marked-articles): Faster handling of simple lists.
25487
25488 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
25489
25490         * spam-stat.el (spam-stat-test-directory): New optional argument
25491         displays a list of files detected.  Suggested by Andrew Cohen
25492         <cohen@andy.bu.edu>.
25493         (spam-stat-buffer-words-with-scores): Don't narrow and change
25494         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
25495
25496 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
25497
25498         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
25499         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
25500         (spam-spamassassin-arguments)
25501         (spam-spamassassin-spam-flag-header)
25502         (spam-spamassassin-positive-spam-flag-header)
25503         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
25504         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
25505         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
25506         (spam-list-of-processors, spam-list-of-checks)
25507         (spam-list-of-statistical-checks, spam-registration-functions)
25508         (spam-check-spamassassin-headers, spam-check-spamassassin)
25509         (spam-spamassassin-score)
25510         (spam-spamassassin-register-with-sa-learn)
25511         (spam-spamassassin-register-spam-routine)
25512         (spam-spamassassin-register-ham-routine)
25513         (spam-assassin-register-spam-routine)
25514         (spam-assassin-register-ham-routine): Add SpamAssassin support.
25515         (spam-bogofilter-score): Fix to show article before scoring.
25516
25517 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
25518
25519         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
25520         default scoring function.
25521         (spam-generic-score): Call spam-spamassassin-score if
25522         spam-use-spamassassin or spam-use-spamassassin-headers is on;
25523         spam-bogofilter-score otherwise.
25524
25525         * gnus.el (spam-process, spam-autodetect-methods):
25526         Add spamassassin and spamassassin-headers.
25527
25528 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
25529
25530         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
25531         Suppress unnecessary messages.
25532
25533 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
25534
25535         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
25536         make-hash-table.
25537
25538 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
25539
25540         * canlock.el (base64-encode-string): Don't autoload it.
25541
25542 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
25543
25544         * run-at-time.el: Remove useless (require 'itimer),
25545         eval-and-compile and (featurep 'xemacs).
25546
25547 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
25548
25549         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
25550         GROUP is a virtual group.
25551
25552 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
25553
25554         * gnus.el: Autoload `message-y-or-n-p'.
25555
25556 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
25557
25558         * pgg-parse.el: Remove unnecessary (require 'custom).
25559
25560         * pgg-def.el: do.
25561
25562         * nnmail.el: do.
25563
25564         * gnus-undo.el: do.
25565
25566         * gnus-picon.el: do.
25567
25568         * gnus-util.el: do.
25569
25570 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
25571
25572         * gnus-sum.el (gnus-pick-line-number): Add autoload.
25573
25574 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
25575
25576         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
25577         handle, as well as a list.
25578
25579         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
25580         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
25581         (mm-w3m-cid-retrieve): Simplify.
25582
25583 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
25584
25585         * message.el (message-kill-to-signature): Allow prefix arg to
25586         specify number of lines to keep before signature.
25587
25588 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
25589
25590         * message.el (message-kill-to-signature): Change docstring.
25591
25592 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
25593
25594         * canlock.el: Always require sha1-el.
25595         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
25596
25597         * message.el: Autoload sha1 only when compiling.
25598
25599         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
25600         eudc-expand-inline for XEmacs.
25601
25602 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
25603
25604         * message.el (message-canlock-generate): Require sha1-el.
25605
25606 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
25607
25608         * message.el (message-expand-name): Silence the byte compiler.
25609
25610         * lpath.el: Add detect-coding-system.
25611
25612         * dgnushack.el (dgnushack-compile): Remove obsolete check for
25613         cus-edit.
25614
25615 2004-01-13  Simon Josefsson  <jas@extundo.com>
25616
25617         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
25618         Invoke gnus-score-mode.
25619         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
25620
25621         * gnus-range.el (gnus-compress-sequence): Doc fix.
25622         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
25623
25624 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
25625
25626         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
25627
25628 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
25629
25630         * spam.el (spam-get-article-as-string): Update to use
25631         gnus-request-article-this-buffer, much simpler.
25632         (spam-get-article-as-buffer): Remove.
25633
25634 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
25635
25636         * message.el (message-expand-name): Use EUDC if the user uses that.
25637
25638 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
25639
25640         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
25641         character for the encoding to avoid consing a string.
25642
25643         * rfc2047.el (rfc2047-decode-string): Don't cons a string
25644         unnecessarily.
25645
25646         * mm-util.el (mm-replace-chars-in-string): Remove.
25647
25648         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
25649         of mm-replace-chars-in-string.
25650
25651 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
25652
25653         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
25654
25655         * mm-util.el (mm-subst-char-in-string): Support inplace.
25656
25657         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
25658         a new string in every iteration.  Use shy groups.
25659
25660 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
25661
25662         * gnus-srvr.el (gnus-browse-unsubscribe-group):
25663         * gnus-soup.el (gnus-soup-group-brew):
25664         * gnus-msg.el (gnus-put-message):
25665         * gnus-move.el (gnus-group-move-group-to-server):
25666         * gnus-kill.el (gnus-batch-score):
25667         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
25668         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
25669         (gnus-group-update-group, gnus-group-read-group)
25670         (gnus-group-make-group, gnus-group-make-help-group)
25671         (gnus-group-make-archive-group, gnus-group-make-directory-group)
25672         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
25673         (gnus-group-sort-by-unread, gnus-group-catchup)
25674         (gnus-group-unsubscribe-group, gnus-group-kill-group)
25675         (gnus-group-yank-group, gnus-group-set-info)
25676         (gnus-group-list-groups):
25677         * gnus.el (gnus-generate-new-group-name):
25678         * gnus-delay.el (gnus-delay-send-queue):
25679         * nnvirtual.el (nnvirtual-catchup-group):
25680         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
25681         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
25682         (gnus-group-prepare-topics, gnus-topic-check-topology):
25683         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
25684         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
25685         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
25686         (gnus-group-make-articles-read):
25687         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
25688         (gnus-group-change-level, gnus-kill-newsgroup)
25689         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
25690         (gnus-get-unread-articles, gnus-make-articles-unread)
25691         (gnus-make-ascending-articles-unread): Use accessor
25692         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
25693         to get group information for improved readability.
25694
25695
25696 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25697
25698         * gnus-art.el (article-decode-mime-words, article-babel)
25699         (gnus-article-highlight-signature, gnus-article-add-buttons)
25700         (gnus-signature-toggle): Use gnus-with-article-buffer.
25701
25702         * gnus-art.el (gnus-article-highlight-headers)
25703         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
25704
25705         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
25706         (gnus-article-set-globals, gnus-request-article-this-buffer)
25707         (gnus-button-message-id, gnus-article-maybe-hide-headers)
25708         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
25709         (gnus-mime-display-alternative): Use with-current-buffer.
25710
25711 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
25712
25713         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
25714         also under 80 char limit, and call gnus-error if needed.
25715         (spam-fetch-article-header): Fix - it was a
25716         buffer-local variable (gnus-newsgroup-data).
25717         (spam-find-spam): Use spam-generate-fake-headers, forget about
25718         spam-insert-fake-headers.
25719         (spam-insert-fake-headers): Remove.
25720
25721 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25722
25723         * deuglify.el (gnus-article-outlook-unwrap-lines)
25724         (gnus-outlook-rearrange-article)
25725         (gnus-outlook-repair-attribution-outlook)
25726         (gnus-outlook-repair-attribution-block)
25727         (gnus-outlook-repair-attribution-other): Remove redundant
25728         save-excursion.
25729
25730 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
25731
25732         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
25733         (spam-fetch-field-subject-fast)
25734         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
25735         (spam-fetch-article-header): Add functions to deal with Gnus
25736         internals for fast retrieval of article header data.
25737         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
25738
25739 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
25740
25741         * pop3.el (pop3-md5): Remove.
25742         (pop3-apop): Replace pop3-md5 with md5.
25743
25744         * mm-bodies.el: base64 is always built-in.
25745
25746         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
25747         Use with-current-buffer.
25748
25749 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
25750
25751         * canlock.el (canlock-insert-header): Remove excessive grouping in
25752         regexp.
25753
25754         * gnus-sum.el (gnus-summary-read-document): Ditto.
25755
25756         * gnus-uu.el (gnus-uu-part-number): Ditto.
25757
25758         * html2text.el (html2text-remove-tags): Ditto.
25759         (html2text-format-tags): Ditto.
25760         (html2text-format-single-elements): Ditto.
25761
25762         * mml.el (mml-parse-1): Ditto.
25763
25764 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
25765
25766         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
25767
25768         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
25769
25770         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
25771
25772         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
25773
25774 2003-11-15  Simon Josefsson  <jas@extundo.com>
25775
25776         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
25777         (pgg-gpg-lookup-key): Use regexp match instead of
25778         split-string (split-string is different between emacs 21.2 and
25779         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
25780
25781 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
25782
25783         * gnus-art.el (gnus-mime-view-all-parts)
25784         (gnus-article-part-wrapper, gnus-article-view-part):
25785         Use with-current-buffer.
25786
25787 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
25788
25789         * spam.el (spam-disable-spam-split-during-ham-respool)
25790         (spam-spamoracle-database, spam-cache-lookups)
25791         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
25792         (spam-group-ham-mark-p, spam-group-spam-mark-p)
25793         (spam-group-ham-marks, spam-group-spam-marks)
25794         (spam-group-spam-contents-p, spam-group-ham-contents-p)
25795         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
25796         also add spam-use-blackholes to the statistical checks.
25797         (spam-fetch-field-fast): Add interface to fetching fields, may
25798         become a macro.
25799         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
25800         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
25801         (spam-insert-fake-headers): Fake an article when needed.
25802         (spam-find-spam): Fake article when possible.
25803         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
25804         (spam-check-bogofilter-headers): Use message-fetch-field instead
25805         of nnmail-fetch-field.
25806
25807 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
25808
25809         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
25810
25811 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
25812
25813         * spam.el (spam-split): Do not require spam-use-CHECK to be
25814         enabled if that check is passed to spam-split explicitly; also
25815         fix so 'spam doesn't get converted to spam-split-group when
25816         spam-split-symbolic-return is t.
25817         (spam-find-spam): Find registrations of the article and use those
25818         instead of re-running spam-split to find the spam/ham
25819         classification of the article.
25820         (spam-log-processing-to-registry, spam-log-registered-p)
25821         (spam-log-unregistration-needed-p, spam-log-undo-registration):
25822         Use gnus-error instead of gnus-message.
25823         (spam-log-registration-type): Add function to determine the
25824         classification of a message based on registry entries; will
25825         return nil if both 'spam and 'ham are found.
25826         (spam-check-BBDB): Expand all the BBDB macros here so we can have
25827         a reasonably fast local cache without the loading errors.
25828         (spam-cache-lookups): Set to t by default.
25829         (spam-find-spam): Don't try to guess spam-cache-lookups.
25830         (spam-enter-whitelist, spam-enter-blacklist): Clear the
25831         spam-caches entry.
25832         (spam-filelist-build-cache, spam-filelist-check-cache):
25833         Fix caching of whitelist/blacklist entries.
25834         (spam-check-whitelist, spam-check-blacklist):
25835         Invoke spam-from-listed-p with a type, not a cache variable.
25836         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
25837
25838 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
25839
25840         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
25841
25842         * nnmail.el (nnmail-split-fancy): do.
25843
25844         * mml.el (mml-parse): do.
25845
25846         * gnus-score.el (gnus-enter-score-words-into-hashtb)
25847         (gnus-score-adaptive): do.
25848
25849 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
25850
25851         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
25852         (gnus-mime-button-map): Don't set keymap parent.
25853         (gnus-button-ctan-directory-regexp): Use shy grouping.
25854         (gnus-prev-page-map): Don't set keymap parent.
25855         (gnus-prev-page-map): Remove duplicated one.
25856         (gnus-next-page-map): Don't set keymap parent.
25857         (gnus-mime-security-button-map): Ditto.
25858
25859         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
25860         version number.
25861
25862         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
25863
25864 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
25865
25866         * canlock.el (canlock-sha1-function): Remove.
25867         (canlock-sha1-function-for-verify): Remove.
25868         (canlock-openssl-program): Remove.
25869         (canlock-openssl-args): Remove.
25870         (canlock-ignore-errors): Remove.
25871         (canlock-sha1-with-openssl): Remove.
25872         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
25873         (canlock-verify): Don't use canlock-ignore-errors.
25874
25875         * sha1-el.el (sha1-string-external): Make it can return a string
25876         in binary form.
25877         (sha1-region-external): Ditto.
25878         (sha1-string-internal): Ditto.
25879         (sha1-region-internal): Ditto.
25880         (sha1-region): Ditto.
25881         (sha1-string): Ditto.
25882         (sha1): Ditto.
25883
25884 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25885
25886         * spam.el (spam-report-articles-gmane): New command.
25887
25888 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
25889
25890         * gnus.el: Don't make unnecessary *Group* buffer when loading.
25891
25892         * run-at-time.el (run-at-time-saved): Remove.
25893         (run-at-time): Doc fix.
25894
25895 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
25896
25897         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
25898         (gnus-summary-limit-map): Add it.
25899         (gnus-summary-make-menu-bar): do.
25900
25901 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
25902
25903         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
25904         Make attempt at some caching support (done for BBDB only now).
25905         (spam-find-spam): Set spam-cache-lookups if there are more than 2
25906         addresses to be checked.
25907         (spam-clear-cache-BBDB): Add function, to be invoked by
25908         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
25909         (spam-check-BBDB): Check and use the caches, if
25910         spam-cache-lookups is on, remove superfluous (provide).
25911
25912 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
25913
25914         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
25915
25916 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
25917
25918         * run-at-time.el (run-at-time-saved): Move to after the definition
25919         of `run-at-time'.
25920
25921         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
25922
25923 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
25924
25925         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
25926         mm-w3m-local-map-property.
25927
25928         * mm-view.el (mm-w3m-mode-map): Remove.
25929         (mm-w3m-local-map-property): Remove.
25930         (mm-inline-text-html-render-with-w3m): Don't use
25931         mm-w3m-local-map-property.
25932
25933 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25934
25935         * run-at-time.el: New file.
25936
25937         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
25938         under Emacs.
25939
25940         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
25941         of gnus-set-text-properties.
25942
25943         * gnus-uu.el (gnus-uu-save-article): Ditto.
25944
25945         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
25946
25947         * gnus-cite.el (gnus-cite-parse): Ditto.
25948
25949         * gnus-art.el (gnus-button-push): Use set-text-properties instead
25950         of gnus-.
25951
25952         * gnus-xmas.el (run-at-time): Require run-at-time.
25953
25954         * gnus.el: Change calls to nnheader-run-at-time and
25955         password-run-at-time throughout to use run-at-time directly.
25956
25957         * password.el: Remove definition of run-at-time.
25958
25959         * nnheaderxm.el: Remove definition of run-at-time.
25960
25961 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
25962
25963         * mml.el (mml-minibuffer-read-disposition): Show attachment type
25964         in prompt.
25965
25966 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
25967
25968         * messagexmas.el (message-xmas-redefine): Alias
25969         `message-make-caesar-translation-table' to
25970         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
25971         version.
25972
25973         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
25974         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
25975         `gnus-xmas-set-text-properties'.
25976         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
25977         `gnus-xmas-completing-read'.
25978         (gnus-xmas-completing-read): Removed.
25979         (gnus-xmas-open-network-stream): Removed.
25980
25981         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalize on
25982         XEmacs version.
25983
25984         * dns.el (dns-make-network-process): Use `open-network-stream'
25985         instead of `gnus-xmas-open-network-stream'.
25986
25987         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
25988
25989         * .cvsignore: Add auto-autoloads.el, custom-load.el.
25990
25991 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
25992
25993         * gnus-art.el (gnus-mime-display-alternative)
25994         (gnus-insert-mime-button, gnus-insert-mime-security-button)
25995         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
25996         Don't use gnus-local-map-property.
25997
25998         * gnus-util.el (gnus-local-map-property): Remove.
25999
26000         * mm-view.el (mm-view-pkcs7-decrypt):
26001         Replace gnus-completing-read-maybe-default with completing-read.
26002
26003         * gnus-util.el (gnus-completing-read): do.
26004         (gnus-completing-read-maybe-default): Remove.
26005
26006 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
26007
26008         * password.el: Only autoload `run-at-time' if not XEmacs.
26009         Only autoload the itimer functions if XEmacs.
26010
26011 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
26012
26013         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
26014         XEmacsen.
26015
26016         * dgnushack.el: Autoload executable-find for XEmacs.
26017
26018 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
26019
26020         * gnus-art.el (gnus-read-string): Remove.
26021         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
26022         read-string.
26023
26024 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
26025
26026         * netrc.el: Autoload password-read.
26027         (netrc): Add configuration group.
26028         (netrc-encoding-method, netrc-openssl-path):
26029         Add variables for encoding and decoding of files with symmetric
26030         ciphers.
26031         (netrc-encode): Add assistant function to encode a file with
26032         netrc-encoding-method.
26033         (netrc-parse): Add interactive parameter, added optional
26034         decoding if netrc-encoding-method is non-nil but otherwise
26035         behavior is standard.
26036         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
26037         Do s/encode/encrypt/ everywhere.
26038
26039         * spam.el: Remove executable-find autoload.
26040
26041 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
26042
26043         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
26044
26045         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
26046
26047 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
26048
26049         * gnus-art.el (gnus-treat-ansi-sequences)
26050         (article-treat-ansi-sequences): New variable and function.
26051         Suggested by Dan Jacobson <jidanni@jidanni.org>.
26052
26053         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
26054         Use it.
26055
26056 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
26057
26058         * mm-util.el (mm-quote-arg): Remove.
26059
26060         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
26061         shell-quote-argument.
26062
26063         * gnus-uu.el (gnus-uu-command): do.
26064
26065         * gnus-sum.el (gnus-summary-insert-pseudos): do.
26066
26067         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
26068         with make-char.
26069
26070         * mm-util.el (mm-make-char): Remove.
26071
26072         * mml.el (mml-mode): Replace gnus-add-minor-mode with
26073         add-minor-mode.
26074
26075         * gnus-undo.el (gnus-undo-mode): do.
26076
26077         * gnus-topic.el (gnus-topic-mode): do.
26078
26079         * gnus-sum.el (gnus-dead-summary-mode): do.
26080
26081         * gnus-start.el (gnus-slave-mode): do.
26082
26083         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
26084
26085         * gnus-ml.el (gnus-mailing-list-mode): do.
26086
26087         * gnus-gl.el (gnus-grouplens-mode): do.
26088
26089         * gnus-draft.el (gnus-draft-mode): do.
26090
26091         * gnus-dired.el (gnus-dired-mode): do.
26092
26093         * gnus-ems.el (gnus-add-minor-mode): Remove.
26094
26095         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
26096         Replace gnus-char-width with char-width.
26097
26098         * gnus-ems.el (gnus-char-width): Remove.
26099
26100         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
26101         Replace gnus-char-width with char-width.
26102
26103         * gnus-ems.el (gnus-char-width): Remove.
26104
26105         * spam-stat.el (with-syntax-table): Remove with-syntax-table
26106         definition.
26107         Remove Emacs 20 hash table compatibility code.
26108
26109         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
26110         20 compatibility code.
26111
26112         * spam.el (spam-point-at-eol): Replace with point-at-eol.
26113
26114         * smime.el (smime-point-at-eol): Replace with point-at-eol.
26115
26116         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
26117         Replace with point-at-{eol,bol}.
26118
26119         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
26120
26121         * imap.el (imap-point-at-eol): Replace with point-at-eol.
26122
26123         * flow-fill.el (fill-flowed-point-at-bol)
26124         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
26125
26126         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
26127         Replace with point-at-{eol,bol} throughout all files.
26128
26129 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
26130
26131         * ntlm.el (ntlm-string-as-unibyte): New macro.
26132         (ntlm-build-auth-response): Use it.
26133
26134         Remove Emacs 20 stuff:
26135         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
26136         (butlast, mapc, remove): Remove the compiler macros.
26137         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
26138         of delq and copy-sequence.
26139         * gnus-art.el (popup-menu): Remove the compiler macro.
26140         * nnmail.el (nnmail-split-fancy): Don't support customizing with
26141         Emacs 20.
26142
26143 2004-01-05  Simon Josefsson  <jas@extundo.com>
26144
26145         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
26146         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
26147         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
26148         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
26149         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
26150         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
26151         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
26152         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
26153         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
26154         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
26155         ntlm-string-permute, string-lshift into ntlm-string-lshift,
26156         string-xor into ntlm-string-xor.
26157         Suggested by Jesper Harder <harder@myrealbox.com>.
26158
26159         * ntlm.el: Don't include poem.
26160
26161         * md4.el (print-int32, print-string-hexa): Remove.
26162         Suggested by Jesper Harder <harder@myrealbox.com>.
26163
26164         * sasl-ntlm.el, ntlm.el, md4.el: New files.
26165
26166         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
26167         probably breaks emacs with DL patch, but do we care? Is anyone
26168         still using the DL stuff?)
26169
26170         * sieve-manage.el: Use the password package.
26171         (sieve-manage-read-passwd): Remove.
26172         (sieve-manage-interactive-login): Use password.  Re-add
26173         condition-case around loop.
26174
26175         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
26176         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
26177         Use the password package.
26178
26179 2003-02-19  Simon Josefsson  <jas@extundo.com>
26180
26181         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
26182         token.
26183
26184 2002-08-07  Simon Josefsson  <jas@extundo.com>
26185
26186         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
26187         (sieve-manage-authenticators):
26188         (sieve-manage-authenticator-alist): Add some SASL mechs.
26189         (sieve-sasl-auth): New function.
26190         (sieve-manage-cram-md5-auth):
26191         (sieve-manage-plain-auth): Rewrite using SASL library.
26192         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
26193         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
26194         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
26195         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
26196
26197 2004-01-05  Simon Josefsson  <jas@extundo.com>
26198
26199         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
26200         New files.
26201
26202 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26203
26204         * gnus-group.el (gnus-no-groups-message): Update.
26205
26206         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
26207
26208 2003-11-09  Simon Josefsson  <jas@extundo.com>
26209
26210         * imap.el: Support for ID IMAP extension (RFC 2971).
26211         (imap-local-variables): Add imap-id.
26212         (imap-id): New variable.
26213         (imap-id): New function.
26214         (imap-parse-response): Parse untagged ID response.
26215         * nnimap.el (nnimap-id): New variable.
26216         (nnimap-open-connection): Use it.
26217
26218 2003-12-28  Simon Josefsson  <jas@extundo.com>
26219
26220         * gnus-score.el (gnus-score-edit-all-score): New.
26221         * gnus-group.el (gnus-group-score-map): Bind it to W e.
26222
26223 2004-01-04  Simon Josefsson  <jas@extundo.com>
26224
26225         * password.el: Add.
26226
26227 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
26228
26229         * dns.el (dns-query-types): Fix typo.
26230         (dns-query-types): New function.
26231         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
26232         PTR and SOA replies, see RFC 1035.
26233
26234 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26235
26236         * gnus.el (gnus-logo-color-style): Change colors to `no'.
26237
26238         * Move to Changelog.2.
26239
26240 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26241
26242         * gnus.el (gnus-version-number): Bump version.
26243
26244 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
26245
26246         * gnus.el: No Gnus v0.1 is released.
26247
26248 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
26249
26250         * gnus.el: No Gnus v0.0 is released.
26251
26252 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26253
26254         * gnus.el (gnus-version-number): Bump.
26255         (gnus-version): No.
26256
26257 See ChangeLog.2 for earlier changes.
26258
26259   Copyright (C) 2004-2013 Free Software Foundation, Inc.
26260
26261   This file is part of GNU Emacs.
26262
26263   GNU Emacs is free software: you can redistribute it and/or modify
26264   it under the terms of the GNU General Public License as published by
26265   the Free Software Foundation, either version 3 of the License, or
26266   (at your option) any later version.
26267
26268   GNU Emacs is distributed in the hope that it will be useful,
26269   but WITHOUT ANY WARRANTY; without even the implied warranty of
26270   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26271   GNU General Public License for more details.
26272
26273   You should have received a copy of the GNU General Public License
26274   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
26275
26276 ;; Local Variables:
26277 ;; coding: utf-8
26278 ;; fill-column: 79
26279 ;; add-log-time-zone-rule: t
26280 ;; End: