Rewrite the Date header formatting functionality.
[gnus] / lisp / ChangeLog
1 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
2
3         * gnus-art.el (gnus-article-date-lapsed-new-header): Removed.
4         (gnus-treat-date-ut): Ditto.
5         (gnus-article-update-date-header): Renamed.
6         (gnus-treat-date-local): Removed.
7         (gnus-treat-date-english): Removed.
8         (gnus-treat-date-lapsed): Removed.
9         (gnus-treat-date-combined-lapsed): Removed.
10         (gnus-treat-date-original): Removed.
11         (gnus-treat-date-iso8601): Removed.
12         (gnus-treat-date-user-defined): Removed.
13         (gnus-article-date-headers): New variable to control all the date
14         header options.
15         (article-date-ut): Rewrite to allow using the new way to format date
16         headers(s).
17
18 2011-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
19
20         * nnmail.el (nnmail-article-group): Check for a direct fancy split
21         method.
22         (nnmail-article-group): A better test for fanciness.
23
24         * nnimap.el (nnimap-request-head): Protect against not finding the
25         article by Message-ID.
26
27 2011-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
28
29         * gnus-art.el (article-update-date-lapsed): Try a better way to really
30         keep point at the "same place".
31
32 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
33
34         * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active
35         data if the group is unactivated.
36
37 2011-01-28  Julien Danjou  <julien@danjou.info>
38
39         * gnus-win.el: Remove dead function gnus-window-configuration-element.
40         (gnus-all-windows-visible-p): Remove old compatibility code.
41         (gnus-window-top-edge): Add docstring.
42
43         * gnus-group.el (gnus-group-jump-to-group): Set must match to t.
44
45 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
46
47         * gnus-int.el (gnus-request-marks): Call *-request-marks instead of the
48         older request-update-info.
49
50         * gnus-art.el (article-make-date-line): Limit the length a bit more.
51
52 2011-01-28  Daiki Ueno  <ueno@unixuser.org>
53
54         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Give
55         mml2015-signers higher precedence over mml2015-sign-with-sender.
56
57 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
58
59         * gnus-group.el (gnus-group-refresh-group): Refresh even non-visible
60         groups.  This makes the nndraft:queue group pop up if it's not already
61         there.
62
63         * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no
64         messages" logic, which was reversed.
65
66         * gnus-art.el (article-update-date-lapsed): Ensure that point stays at
67         the "same place" even if point is on the line being replaced.
68         (article-update-date-lapsed): Allow updating both the combined lapsed
69         and the lapsed headers.
70         (article-update-date-lapsed): Skip past all the X-Sent/Date headers.
71         (article-make-date-line): Limit the number of segments dynamically to
72         avoid too-long lines.
73
74 2011-01-27  Julien Danjou  <julien@danjou.info>
75
76         * mml2015.el (mml2015-epg-sign): Add and use mml2015-sign-with-sender.
77         (mml2015-epg-encrypt): Use mml2015-sign-with-sender.
78
79 2011-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
80
81         * shr.el (shr-expand-newlines, shr-previous-newline-padding-width):
82         Use plist-get instead of the cl function getf.
83
84 2011-01-27  Glenn Morris  <rgm@gnu.org>
85
86         * gnus-util.el (float-time): Get rid of compiler warning, again.
87
88 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
89
90         * shr.el (shr-put-color): Special-case background colours: Do put them
91         at the blank parts at the front of the lines.
92
93         * gnus-draft.el (gnus-draft-clear-marks): New function to be run as an
94         exit hook to nix out all data on readedness on group exit.
95
96         * gnus-util.el (float-time): If float-time is bound, always use it on
97         all Emacsen.  It's unclear why the subrp check was there.
98         (time-date): Require to make some autoload issues on XEmacs go away.
99
100         * shr.el (shr-put-color): Don't do the box padding in tables, since
101         they're already padded.
102
103 2011-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
104
105         * gnus-art.el (gnus-article-next-page): When the last line of the
106         article is displayed, scroll down once more instead of going to the
107         next article at once.
108         (article-lapsed-string): Refactor out and allow specifying how many
109         segments you want.
110         (gnus-article-setup-buffer): Start updating the lapsed header directly.
111         (gnus-article-update-lapsed-header): New variable.
112
113         * shr.el: Revert change that made headings use different-sized faces.
114         The Emacs display engine isn't advanced enough that, for instance,
115         tables can comfortably use differntly-sized faces.
116
117 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
118
119         * nnimap.el (nnimap-open-connection-1): Store the actual stream type
120         used.
121         (nnimap-login): Prefer plain LOGIN if it's enabled (since it requires
122         fewer round trips than CRAM-MD5, and it's less likely to be buggy), and
123         we're using an encrypted connection.
124
125         * proto-stream.el: Alter the interface functions to also return the
126         actual stream type used: network or tls.
127
128 2011-01-25  Julien Danjou  <julien@danjou.info>
129
130         * mm-view.el (mm-display-shell-script-inline): Fix typo in docstring.
131         (mm-display-javascript-inline): New function.
132
133         * mm-decode.el (mm-inline-media-tests): Add application/javascript
134         viewing function.
135
136 2011-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
137
138         * shr.el (shr-expand-newlines): Fix variable name.
139
140 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
141
142         * shr.el (shr-expand-newlines): Make nested boxes work.
143
144 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
145
146         * shr.el (shr-expand-newlines): Proof of concept implemantation of boxy
147         backgrounds.
148         (shr-expand-newlines): Switch to using overlays to enable kill'n'yank
149         in a more sensible manner.
150
151 2011-01-24  Teodor Zlatanov  <tzz@lifelogs.com>
152
153         * mml-smime.el (mml-smime-use): Make it a defcustom and default to 'epg
154         if EPG is loaded.
155
156 2011-01-24  Julien Danjou  <julien@danjou.info>
157
158         * shr.el: Use defface to create shr-tag-h[1-6] faces to fontify h[1-6]
159         tags.
160
161 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
162
163         * gnus-art.el (gnus-article-read-summary-keys): Don't call disabled
164         commands.
165
166         * gnus-gravatar.el (gnus-gravatar-insert): Don't move point around
167         in the article buffer.
168         (gnus-gravatar-insert): Use blank space from the current buffer to
169         avoid breaking text properties.  This makes X-Sent updating work again.
170
171         * gravatar.el (gravatar-retrieve): Be silent when retrieving.
172
173 2011-01-23  Lars Ingebrigtsen  <larsi@gnus.org>
174
175         * gnus-html.el (gnus-html-image-fetched): Kill the buffer anyway, and
176         fix the bug in url-http.el instead.
177
178         * shr.el (shr-image-fetched): Ditto.
179
180         * shr.el (shr-image-fetched): Avoid having point move in the article
181         buffer.
182
183         * gnus-html.el (gnus-html-image-fetched): Don't kill the temporary
184         buffer after being called.  It's apparently being killed by url.el, and
185         killing it made point move to end-of-buffer in a random buffer.
186
187         * shr.el (shr-image-fetched): Ditto.
188
189 2011-01-23  Julien Danjou  <julien@danjou.info>
190
191         * mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org.
192
193         * mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to
194         text/x-org.
195
196 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
197
198         * gnus-sum.el (gnus-summary-move-article): Protect against backends
199         (i.e., nnimap) returning nil as the article number.
200
201 2011-01-22  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
202
203         * flow-fill.el (fill-flowed): Make `delete-space' option correspond to
204         "DelSp" parameter in RFC3676.
205
206 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
207
208         * message.el (message-check-recipients): Display the encoded version of
209         the bogus address if they differ.
210
211         * gnus-draft.el (gnus-group-send-queue): Really refresh the queue group
212         after sending.
213
214         * gnus-agent.el (gnus-agent-send-mail): Ditto.
215
216         * gnus-group.el (gnus-group-refresh-group): New convenience function.
217
218         * gnus-draft.el (gnus-group-send-queue): Update the queue group in the
219         group buffer after sending the queue.
220
221         * gnus-agent.el (gnus-agent-send-mail): Ditto.
222
223 2011-01-22  Julien Danjou  <julien@danjou.info>
224
225         * mailcap.el (mailcap-mime-extensions): Rename text/org to text/x-org.
226
227 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
228
229         * mm-decode.el (mm-preferred-alternative-precedence): Don't bug out on
230         nested related parts.
231
232         * nnfolder.el (nnfolder-request-expire-articles): Return the list of
233         unexpired articles.  This fixes the regression that led expiry marks to
234         disappear from nnfolder groups.
235
236 2011-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
237
238         * gnus-art.el (gnus-button-alist, gnus-button-handle-info-keystrokes):
239         Don't confuse the "ret" of "retrograde" with RET.
240
241 2011-01-21  Julien Danjou  <julien@danjou.info>
242
243         * gnus-art.el (gnus-mime-display-single): Use mm-display-inline rather
244         than mm-insert-inline.
245
246 2011-01-21  Katsumi Yamaoka  <yamaoka@jpl.org>
247
248         * gnus-art.el (gnus-article-remove-images, gnus-article-show-images):
249         Widen article buffer.
250
251 2011-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
252
253         * mm-util.el (mm-find-buffer-file-coding-system): Don't forget to kill
254         the temp buffer.
255         * message.el (message-mailer-swallows-blank-line): Use with-temp-buffer.
256
257 2011-01-20  Julien Danjou  <julien@danjou.info>
258
259         * mm-decode.el (mm-inline-media-tests): Add text/x-sh.
260
261         * gnus-art.el (gnus-mime-inline-part): Use mm-display-inline rather
262         than mm-insert-inline to insert inline part: this respect
263         mm-inline-media-tests displayers.
264
265         * mm-view.el (mm-display-shell-script-inline): New function.
266
267         * mm-decode.el (mm-inline-media-tests): Add x-shellscript and x-sh.
268
269         * mm-uu.el (mm-uu-type-alist): Add org block.
270         (mm-uu-org-src-code-block-extract): New function.
271
272         * mm-view.el (mm-display-org-inline): New function.
273
274         * mm-decode.el (mm-automatic-display): Add text/org.
275
276         * mailcap.el (mailcap-mime-extensions): Add .org.
277
278 2011-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
279
280         * gnus-art.el (gnus-article-highlight): Remove argument passed to
281         gnus-article-add-buttons.
282
283 2011-01-19  Tom Rauchenwald  <sehnsucht.nach.unendlichkeit@quantentunnel.de>  (tiny change)
284
285         * spam.el (spam-spamassassin-register-with-sa-learn): Insert a full
286         From header with a date and "nobody" as the sender.
287
288 2011-01-19  Julien Danjou  <julien@danjou.info>
289
290         * gnus-art.el (gnus-article-add-buttons): Simplify condition.
291         (gnus-button-push): Remove gnus-button-entry function, it fails heavily
292         if you have the same regexp several times.
293         (gnus-button-push): Fix matching when regexp is symbol.
294
295 2011-01-15  Glenn Morris  <rgm@gnu.org>
296
297         * message.el (message-mail): A compose-mail function should
298         accept headers as strings.
299
300 2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
301
302         * message.el (message-tool-bar-gnome): Tweak tool-bar items.
303         Add :vert-only tags.
304         (message-mail): New arg RETURN-ACTION.
305         (message-return-action): New var.
306         (message-bury): Use it.
307         (message-mode): Make it buffer-local.
308         (message-send-and-exit): Always call message-bury.
309
310         * gnus-msg.el (gnus-msg-mail): New arg RETURN-ACTION.  Pass it to
311         message-mail.
312
313 2011-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
314
315         * nnimap.el (nnimap-convert-partial-article): Protect against
316         zero-length body parts.
317
318         * mm-decode.el (mm-preferred-alternative-precedence):
319         Discourage showing empty parts.
320
321         * gnus-int.el (gnus-request-accept-article): Don't try to update marks
322         and stuff if the backend didn't return the article number.  This fixes
323         an Exchange-related nnimap bug.
324
325         * gnus-sum.el (gnus-summary-next-article): Remove hack to reselect
326         group window, because it does the wrong thing when a separate frame
327         displays the group buffer.
328
329         * proto-stream.el (open-protocol-stream): Protect against the low-level
330         transport functions returning nil.
331
332 2011-01-07  Daiki Ueno  <ueno@unixuser.org>
333
334         * mml2015.el (epg-sub-key-fingerprint): Autoload.
335         (mml2015-epg-find-usable-secret-key): New function.
336         (mml2015-epg-sign): Use mml2015-epg-find-usable-secret-key instead of
337         mml2015-epg-find-usable-key (Bug#7797).
338         (mml2015-epg-encrypt): Ditto.
339
340 2011-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
341
342         * dgnushack.el (rot13-string): Fix the way to get the argument.
343
344 2011-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
345
346         * flow-fill.el (fill-flowed-encode): Do encoding citation-aware.
347
348 2011-01-03  Glenn Morris  <rgm@gnu.org>
349
350         * sieve-manage.el (sieve-manage-open): Correctly set sieve-manage-port.
351
352         * sieve.el (sieve-open-server): Give a more explicit error if
353         sieve-manage-open returns nil.  (Bug#7720)
354
355 2011-01-02  Karl Fogel  <kfogel@red-bean.com>
356
357         * gnus-msg.el (gnus-message-replyencrypt): Default to `t'.
358
359 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
360
361         * nnimap.el (nnimap-login): Prefer AUTH=CRAM-MD5, if it's available.
362         This avoids sending passwords in plain text over non-encrypted
363         channels.
364
365         * shr.el (shr-rescale-image): Display all GIF images as animated images.
366
367         * nnimap.el (nnimap-login): Refactored out into own function, and
368         implement CRAM-MD5.
369         (nnimap-wait-for-line): Refactored out.
370
371         * mm-view.el (mml-smime): Require.
372
373 2010-12-20  David Engster  <deng@eml.cc>
374
375         * mm-view.el (mm-view-pkcs7-decrypt): If mml-smime-use is set to 'epg,
376         use EPG to decrypt S/MIME messages instead of openssl.
377
378 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
379
380         * nnimap.el (nnimap-request-group): Avoid double SELECT on `M-g'.
381
382         * gnus-group.el (gnus-group-kill-group): Don't try to update the group
383         status is the group clearly is unreachable.
384
385         * auth-source.el (auth-source-create): Add the optional second
386         parameter to `local-variable-p' to be compatible with XEmacs.
387
388 2011-01-02  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
389
390         * nnml.el (nnml-request-article): Allow requesting by Message-ID to
391         work when using a compressed nnml folder.
392
393 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
394
395         * gnus-sum.el (gnus-select-newsgroup): Don't propagate marks to
396         backends after sanitising on entry, because this never makes sense:
397         If the articles have gone missing, then the data no longer exists on
398         the backend, and if they haven't, then Gnus is wrong, and shouldn't
399         overwrite anything anyway.
400
401         * shr.el (shr-insert-document): Bind shr-width dynamically to
402         window-width if it's nil.
403
404 2010-12-30  Tassilo Horn  <tassilo@member.fsf.org>
405
406         * shr.el (shr-width, shr-insert-document): Allow nil as shr-width value
407         with the meaning of using the full emacs window width for rendering.
408
409 2010-12-27  Daiki Ueno  <ueno@unixuser.org>
410
411         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Take care the
412         case when sender is not given.
413
414 2010-12-23  Julien Danjou  <julien@danjou.info>
415
416         * gnus-gravatar.el (gnus-gravatar-transform-address): Set
417         `mail-extr-ignore-realname-equals-mailbox-name' to nil when extracting
418         the addresses, otherwise we might misplaced the gravatar.
419
420 2010-12-21  Daiki Ueno  <ueno@unixuser.org>
421
422         * mml1991.el (pgg-sign-region, pgg-encrypt-region):
423         * gnus-art.el (pgg-snarf-keys-region): Autoload since PGG is now
424         obsolete in Emacs.
425
426 2010-12-20  Julien Danjou  <julien@danjou.info>
427
428         * gnus-util.el (gnus-rescale-image): Revert last change.
429
430 2010-12-17  Chong Yidong  <cyd@stupidchicken.com>
431
432         * binhex.el: Improve commentary (Bug#7482).
433
434 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
435
436         * gnus-group.el (gnus-group-delete-articles): New command.
437
438 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
439
440         * nnir.el (nnir-mode): Make sure 'gnus-registry-install is bound.
441
442 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
443
444         * gnus-sum.el (gnus-get-newsgroup-headers): Revert the last change
445         here, since it's up to the backends to do CRLF removal if their
446         protocol has it.
447
448         * nnimap.el (nnimap-retrieve-headers): Remove CRLF from the headers.
449
450 2010-12-17  Julien Danjou  <julien@danjou.info>
451
452         * gnus-util.el (gnus-rescale-image): Allow to resize images even if
453         they are from file. Can also scale up.
454
455 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
456
457         * gnus-sum.el (gnus-summary-refer-thread): Simplify code. Restore
458         gnus-use-agent.
459         (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
460
461         * nnir.el (nnir-get-active): Ignore nnir-ignored-newsgroups if null.
462
463 2010-12-17  Julien Danjou  <julien@danjou.info>
464
465         * gravatar.el (gravatar-retrieve-synchronously): New function.
466         (gravatar-get-data): Make more robust.
467
468 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
469
470         * lpath.el: Bind epa-file-encrypt-to for Emacs 22 and XEmacs.
471
472 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
473
474         * nnimap.el (nnimap-wait-for-response): Fix the end-point calculation
475         to really consider the last line.
476
477 2010-12-16  Daiki Ueno  <ueno@unixuser.org>
478
479         * auth-source.el (auth-source-gpg-encrypt-to): New variable to set the
480         list of recipient keys, or use symmetric encryption if not a list.
481         (auth-source-create): Use it to make `epa-file-encrypt-to' local for an
482         EPA override, replacing the call to `netrc-store-data'.
483
484 2010-12-16  Dan Davison  <dandavison7@gmail.com>  (tiny change)
485
486         * gnus-srvr.el: Avoid passing nil regexp argument to
487         delete-matching-lines.
488
489 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
490
491         * gnus-html.el (gnus-html-schedule-image-fetching): Make sure the HTML
492         fetching stops when Gnus exits.
493
494         * nnfolder.el (nnfolder-save-all-buffers): Refactor out into its own
495         function.
496         (nnfolder-request-expire-articles): Save all the buffers after doing
497         expiry.
498
499         * nnmail.el (nnmail-expiry-target-group): Revert the "all articles are
500         the last article", since that led to serious performance regressions
501         when expiring nnml groups.
502
503 2010-12-16  Andrew Cohen  <cohen@andy.bu.edu>
504
505         * nnir.el: Improve customizations.
506
507 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
508
509         * gnus-start.el (gnus-subscribe-newsgroup): Notify the backend.
510
511         * gnus-group.el (gnus-group-kill-group): Notify the backend that the
512         group has been killed.
513         (gnus-group-yank-group): Ditto.
514
515         * gnus-srvr.el (gnus-browse-unsubscribe-group): Ditto.
516
517         * nnimap.el (nnimap-request-update-group-status): New function.
518
519         * gnus-int.el (gnus-request-update-group-status): New interface
520         function.
521
522         * gnus-sum.el (gnus-summary-push-marks-to-backend): Fix the logic for
523         copying read-ness to the backends.
524
525         * nnimap.el (nnimap-quirk): New function.
526         (nnimap-retrieve-group-data-early): Use it.
527         (nnimap-quirks): New alist.
528
529 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
530
531         * shr.el (shr-insert): Set shr-start after deleting trailing space;
532         don't delete it within indentation.
533
534 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
535
536         * nnimap.el (nnimap-wait-for-response): Always look (at least) at the
537         previous line.
538
539 2010-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
540
541         * nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the
542         QRESYNC command by deleting a superfluous space which broke Cyrus
543         servers.  This change will break other servers that are buggy the other
544         way around.
545
546 2010-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
547
548         * spam.el: Reindent and fix long lines.
549         (spam-copy-or-move-routine): Exclude invalid move destinations.
550
551 2010-12-14  Andrew Cohen  <cohen@andy.bu.edu>
552
553         * nnir.el (nnir-mode): Don't install registry hooks if user hasn't
554         installed the registry.
555
556 2010-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
557
558         * dgnushack.el (rot13-string): New macro for XEmacs.  netrc.el uses it.
559
560 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
561
562         * nnir.el (nnir-run-gmane): Better check for gmane groups: error out if
563         groupname doesn't contain "gmane".
564
565 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
566
567         * netrc.el (netrc-point-at-eol): Remove the unused netrc-point-at-old
568         and netrc-bound-and-true-p bindings.
569         (netrc-parse): Cache the netrc contents.
570
571         * gnus-start.el (gnus-matches-options-n): Fix typo in last change.
572         (gnus-1): Don't create the nndrafts group twice.
573         (gnus-setup-news): There's no need to read the active file here, since
574         that's done again later on a per-backend basis.
575         (gnus-start-draft-setup): Make sure that the new group is started out
576         empty.
577
578         * gnus-agent.el (gnus-agentize): Don't create the queue group
579         automatically on startup.  It'll be created later, if needed.
580
581         * gnus-start.el (gnus-auto-subscribed-groups): Add nnimap to the list
582         of automatically subscribed groups.
583         (gnus-auto-subscribed-categories): New variable.
584         (gnus-matches-options-n): Use it.
585         (gnus-default-subscribed-newsgroups): Remove unused variable.
586         (gnus-start-draft-setup): Message a bit less.
587
588 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
589
590         * nnir.el (nnir-run-imap): Return article list in order of increasing
591         UID.
592
593 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
594
595         * gnus-sum.el (gnus-summary-enter-digest-group):
596         Mention gnus-auto-select-on-ephemeral-exit.
597
598         * proto-stream.el (proto-stream-open-network-only): Fix the calling
599         convention of the network-only option.
600
601 2010-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
602
603         * proto-stream.el (proto-stream-open-network-only): New function to
604         have a way to specify non-STARTTLS upgrade connections.
605
606 2010-12-10  Julien Danjou  <julien@danjou.info>
607
608         * gnus-gravatar.el (gnus-gravatar-transform-address): Fix error when
609         email address is nil.
610
611         * message.el (message-bogus-recipient-p): Set address to "" if nil.
612
613 2010-12-10  Andrew Cohen  <cohen@andy.bu.edu>
614
615         * nnir.el (nnir-request-expire-articles): Ignore expiry except for
616         deletion.
617         (nnir-run-imap): Only need to parse list once.
618
619 2010-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
620
621         * shr.el (shr-tag-script): Ignore <script>.
622         (shr-tag-label): Add <label> support.
623
624 2010-12-09  Katsumi Yamaoka  <yamaoka@jpl.org>
625
626         * mm-util.el (mm-ucs-to-char): Use eval-and-compile.
627
628         * shr.el (shr-image-displayer): Work for images lined side by side.
629
630 2010-12-08  Robert Pluim  <rpluim@gmail.com>
631
632         * gnus-demon.el (gnus-demon-init): Call run-with-timer with an integer
633         parameter, since XEmacs doesn't accept t as a parameter.
634
635 2010-12-08  Andrew Cohen  <cohen@andy.bu.edu>
636
637         * nnir.el (nnir-retrieve-headers): Use rassq when comparing article
638         ids.
639         (nnir-run-gmane): Simplify groupspec formatting.
640         (nnir-request-expire-articles): New function.
641
642 2010-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
643
644         * nnimap.el (nnimap-parse-flags): Tweak VANISHED regexp to avoid regexp
645         overflow, possibly.
646
647         * shr.el (shr-tag-table-1): Use bg/gfcolor specs on tables.
648         (shr-render-td): Handle td style="" better.
649         (shr-tag-table): Use the color from the style sheet.
650         (shr-render-td): Make sure we copy over all the overlays, too.
651
652 2010-12-07  Andrew Cohen  <cohen@andy.bu.edu>
653
654         * nnir.el (nnir-run-gmane): Restore sub-optimal test for gmane server.
655         (nnir-request-article): Improve article retrieval.
656
657 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
658
659         * mm-util.el (mm-extra-numeric-entities): New variable.
660
661         * mm-url.el (mm-url-decode-entities):
662         * mm-decode.el (mm-shr): Use it to decode extra numeric entities.
663
664         * lpath.el: Fbind completion-at-point for Emacs 22 and XEmacs.
665
666 2010-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
667
668         * message.el: Use completion-at-point.
669         (message-completion-function): New fun, extracted from message-tab.
670         (message-mode): Use it for completion-at-point-functions.
671         (message-tab): Use it and completion-at-point.
672
673 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
674
675         * shr.el (shr-find-fill-point): Don't break a line after a kinsoku-bol
676         character if a non-breakable character follows.
677
678 2010-12-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
679
680         * proto-stream.el (proto-stream-open-tls): Return nil if we don't get
681         any stream.
682
683         * shr.el (shr-tag-font): Colorize the region.
684         (shr-tag-body): Ditto.
685         (shr-tag-font): Actually let the styles be inherited instead of
686         overwriting them.
687         (shr-tag-font): Get the background color right.
688         (shr-tag-style): Ignore all <style> tags for the moment.
689
690         * gnus-int.el (gnus-request-thread): Rework to take a header instead of
691         a Message-ID to avoid having nnimap depend on gnus-sum.
692
693         * shr.el (shr-descend): Only colorize something if we have a node that
694         sets colors.
695
696 2010-12-06  Julien Danjou  <julien@danjou.info>
697
698         * shr.el (shr-render-td): Render td content with shr-descend, so style
699         will be applied to <td> too.
700         (shr-colorize-region): Colorize region even if we only have a background.
701         (shr-tag-body): Fix color and background color inheritance.
702         Do not recolorize after shr-generic.
703         (shr-tag-font): Let shr-generic colorize via inheritance.
704
705 2010-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
706
707         * shr.el (shr-find-fill-point): Don't regard apostrophe as kinsoku-bol.
708
709 2010-12-06  Andrew Cohen  <cohen@andy.bu.edu>
710
711         * nnir.el (nnir-request-move-article): Remove obsolete code.
712
713 2010-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
714
715         * gnus-util.el (gnus-macroexpand-all): Use eval-and-compile.
716
717 2010-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
718
719         * gnus-sum.el (gnus-summary-respool-article): The completion function
720         expects a list instead of an alist.
721
722         * nntp.el (nntp-snarf-error-message): nnheader-report takes a format
723         string as the parameter.
724
725         * gnus.el (gnus-valid-select-methods): Allow nnimap to respool.
726
727         * shr.el (shr-stylesheet): New dynamic variable for cascading the
728         styles.
729         (shr-colorize-region): New function.
730         (shr-insert-background-overlay): Remove.
731         (shr-render-td): Background setting should be taken care of on a higher
732         level.
733         (shr-tag-body): Use post-hoc colorizations.
734         (shr-tag-body): Set up a style sheet based on bgcolor/fgcolor.
735         (shr-put-color-1): Don't overwrite old colors.
736         (shr-colorize-region): When the background color isn't explicit, use
737         a fixed background.
738
739         * gnus-util.el (gnus-output-to-mail): Require nnmail before using
740         nnmail variables.
741
742 2010-12-05  Bjørn Mork  <bjorn@mork.no>
743
744         * nnimap.el (nnimap-process-expiry-targets): Avoid downloading articles
745         unless necessary.
746
747 2010-12-05  Andrew Cohen  <cohen@andy.bu.edu>
748
749         * nnir.el (nnir-run-gmane): Use more careful test for gmane nntp
750         server.
751
752 2010-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
753
754         * gnus-html.el (gnus-html-put-image): Use widget instead of local maps
755         so that TAB works.
756
757         * gnus-sum.el (gnus-summary-show-article): Reverse the meanings of `C-u
758         C-u g' and `C-u g' so that `C-u g' does what it traditionally did.
759
760         * shr.el (shr-urlify): Show the URL before the title to avoid
761         misleading URLs.
762
763 2010-12-04  Adam Sjøgren  <asjo@koldfront.dk>
764
765         * shr.el (shr-urlify): Display the title in <a> tags.
766
767 2010-12-04  Andrew Cohen  <cohen@andy.bu.edu>
768
769         * nnir.el (nnir-categorize): Replace mapcar with mapc.
770
771 2010-12-03  Andrew Cohen  <cohen@andy.bu.edu>
772
773         * nnir.el: Rearrange code to allow macros to be autoloaded by
774         gnus-sum.el.
775         (nnir-retrieve-headers-override-function): Make this variable
776         customizable.
777         (nnir-retrieve-headers): Remove obsolete subject-mangling code.
778
779         * gnus-sum.el (nnir-article-group,nnir-article-rsv): Autoload macros
780         from nnir.el.
781
782 2010-12-03  Julien Danjou  <julien@danjou.info>
783
784         * gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
785
786 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
787
788         * gnus-util.el (gnus-macroexpand-all): Don't modify argument;
789         allow optional argument `environment'.
790
791 2010-12-03  Glenn Morris  <rgm@gnu.org>
792
793         * mm-extern.el (message-goto-body): Update declaration.
794
795 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
796
797         * gnus-util.el (gnus-macroexpand-all): New function.
798
799         * gnus-sum.el (gnus-summary-line-format-alist): Use gnus-macroexpand-all
800         instead of macroexpand-all that is unavailable in XEmacs.
801
802 2010-12-02  Andrew Cohen  <cohen@andy.bu.edu>
803
804         * nnir.el (nnir-summary-line-format): New variable.
805         (nnir-mode): Use it.
806         (nnir-artlist-*,nnir-aritem-*): Reimplement as macros.
807         (nnir-article-ids): Reimplement as defsubst.
808         (nnir-retrieve-headers): Don't mangle the subject header.
809         (nnir-run-imap): Use 100 as RSV score.
810         (nnir-run-find-grep): Fix for full server searching.
811         (nnir-run-gmane): Better restriction to gmane groups.
812
813         * gnus-sum.el (gnus-summary-line-format-alist): Add specs for nnir
814         summary buffers.
815
816 2010-12-02  Julien Danjou  <julien@danjou.info>
817
818         * gnus-win.el (gnus-configure-frame): Remove old compatibility code.
819
820         * gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
821
822         * gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting
823         support.
824
825 2010-12-01  Andrew Cohen  <cohen@andy.bu.edu>
826
827         * nnir.el: Update to handle the registry better.
828         (autoload): Silence byte-compiler.
829         (nnir-open-server): Add a hook for nnir groups.
830         (nnir-request-move-article): Don't mangle the header. Better to use
831         formating variables (which will be added in the future).
832         (nnir-registry-action): Update the registry using the original article
833         group name.
834         (nnir-mode): Install nnir-specific hooks for updating the registry.
835
836         * gnus-sum.el
837         (gnus-article-original-subject,gnus-newsgroup-original-name):
838         Remove obsolete variables.
839         (gnus-summary-move-article): Remove use of obsolete variables.
840         (gnus-summary-local-variables): Make move and delete hooks local to
841         summary buffers.
842
843 2010-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
844
845         * rtree.el: New file.
846
847 2010-12-01  Julien Danjou  <julien@danjou.info>
848
849         * message.el (message-user-organization): Do not use
850         gnus-local-organization.
851
852         * gnus.el: Remove gnus-local-organization.
853
854         * gnus-msg.el: Remove nastygram thing.
855
856 2010-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
857
858         * nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark
859         funcall.
860
861 2010-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
862
863         * gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of
864         names.
865
866         * shr.el (shr-find-fill-point): Don't break line between kinsoku-bol
867         characters.
868
869         * gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding
870         to t of inhibit-read-only since it is inside gnus-with-article-headers.
871         Suggested by Å tÄ›pán NÄ›mec <stepnem@gmail.com>.
872         (gnus-gravatar-transform-address): Use mail-extract-address-components
873         that supports non-ASCII names rather than mail-header-parse-addresses.
874
875 2010-11-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
876
877         * proto-stream.el (open-protocol-stream): All starttls connections are
878         handled by the network handler.
879
880 2010-11-30  Julien Danjou  <julien@danjou.info>
881
882         * nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
883         (nnimap-open-connection-1): Fix PREAUTH.
884
885         * gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
886
887 2010-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
888
889         * shr.el (shr-char-breakable-p, shr-char-nospace-p)
890         (shr-char-kinsoku-bol-p, shr-char-kinsoku-eol-p): New macros.
891         (shr-insert): Use them.
892         (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
893
894 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
895
896         * nnir.el (nnir-request-move-article): Bail out if original group
897         doesn't support article moves.
898         (nnir-get-active): Improve active list retrieval.
899
900 2010-11-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
901
902         * shr.el (shr-find-fill-point): Don't break before apostrophes.
903
904 2010-11-29  Binjo  <binjo.cn@gmail.com>  (tiny change)
905
906         * nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't
907         seem to accept strings-with-numbers as port numbers,
908
909 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
910
911         * gnus-sum.el (gnus-summary-delete-article): If delete fails don't
912         change the registry.
913
914 2010-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
915
916         * nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of
917         delete-dups that is not available in XEmacs 21.4.
918
919         * mm-util.el (mm-delete-duplicates): Add comment.
920
921 2010-11-28  Andrew Cohen  <cohen@andy.bu.edu>
922
923         * nnir.el (nnir-ignored-newsgroups): New variable.
924         (nnir-get-active): Use it.
925
926 2010-11-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
927
928         * proto-stream.el (proto-stream-open-network): Add some comments.
929
930         * nntp.el (nntp-open-connection): Provide a :success condition.
931
932         * nnimap.el (nnimap-open-connection-1): Ditto.
933
934         * proto-stream.el (proto-stream-open-network): See what the response to
935         the STARTTLS command is.
936
937         * nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for
938         backwards compatibility).
939         (nnimap-open-connection-1): Really respect nnimap-server-port.
940
941         * proto-stream.el (proto-stream-open-network): When doing opportunistic
942         TLS upgrades we don't really care about the identity of the peer.
943         (proto-stream-open-network): Force starttls.el to use gnutls-cli, since
944         that what we've checked for.
945         (proto-stream-always-use-starttls): Only default to t if
946         open-gnutls-stream exists.
947         (proto-stream-open-network): If STARTTLS failed, then just open a
948         normal connection.
949         (proto-stream-open-network): Wait until the greeting before doing
950         STARTTLS.
951
952         * nntp.el (nntp-open-connection): Report what the connection error is.
953
954         * proto-stream.el (open-protocol-stream): Rename from
955         open-proto-stream.
956
957 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
958
959         * nnimap.el (nnimap-stream): Change default to `undecided'.
960         (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl
961         first, and then network.
962         (nnimap-open-connection-1): Respect nnimap-server-port.
963         (nnimap-open-connection): Be more backwards-compatible.
964
965         * proto-stream.el (proto-stream-always-use-starttls): New variable.
966         (proto-stream-open-starttls): De-duplicate the starttls code.
967         (proto-stream-open-starttls): Folded back into the main function.
968         (proto-stream-open-network): Fix typo in the gnutls path.
969         (proto-stream-command): Refactor out.
970
971         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
972
973         * proto-stream.el (proto-stream-open-starttls): Actually implement the
974         starttls.el STARTTLS.
975
976         * color.el (color-lab->srgb): Fix function call name.
977
978         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
979         if we're using tls.el.
980         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
981         built in, then don't try to establish a STARTTLS connection.
982
983         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
984         servers.
985
986         * proto-stream.el (open-proto-stream): Use network, not stream.
987         (open-proto-stream): Add a way to specify what the end of a command is.
988
989         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
990         connections types.
991         (nntp-open-network-stream): Remove.
992         (nntp-open-ssl-stream): Remove.
993         (nntp-open-tls-stream): Remove.
994         (nntp-ssl-program): Remove.
995
996         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
997
998 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
999
1000         * nnir.el: Fix typos.
1001         (nnir-retrieve-headers-override-function): Rename variable to reflect
1002         new semantics.
1003         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
1004         macros.
1005         (nnir-request-article, nnir-request-move-article): Use them.
1006         (nnir-categorize): New function.
1007         (nnir-run-query): Use it.
1008         (nnir-retrieve-headers): Rewrite to batch header retrieval.
1009         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
1010         sorted.
1011         (nnir-group-full-name): Use gnus-group-full-name instead.
1012         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
1013         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
1014
1015 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1016
1017         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
1018
1019         * proto-stream.el: New library to provide protocol-specific
1020         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
1021         protocols.
1022         (open-proto-stream): Complete the documentation.
1023         (proto-stream-open-network): Fix some typos.
1024
1025         * nnimap.el (nnimap-open-connection): Use it.
1026
1027 2010-11-27  Yuri Karaban  <tech@askold.net>  (tiny change)
1028
1029         * pop3.el (pop3-open-server): Read server greeting before starting TLS
1030         negotiation.
1031
1032 2010-11-26  Julien Danjou  <julien@danjou.info>
1033
1034         * color.el: Rename various rgb functions to srgb.
1035
1036 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1037
1038         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
1039         names.
1040
1041 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
1042
1043         * shr.el (shr-insert): Revert last change.
1044         (shr-find-fill-point): Never leave point being at bol;
1045         relax the kinsoku limitation when rendering tables.
1046
1047 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1048
1049         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
1050         results from -accept-article.
1051
1052         * shr-color.el: Require cl when compiling.
1053
1054         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
1055         checkin.
1056
1057         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
1058
1059         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
1060
1061         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
1062         'add and 'delete to set backend marks.
1063
1064         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
1065
1066         * nnheader.el (nnheader-update-marks-actions): Refactor out.
1067
1068         * nntp.el (nntp-request-set-mark): Use it.
1069
1070         * nnfolder.el (nnfolder-request-set-mark): Ditto.
1071
1072         * nnml.el (nnml-request-set-mark): Ditto.
1073
1074         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
1075         introduces regressions in article selection.
1076         (nnimap-find-uid-response): New function.
1077         (nnimap-request-accept-article): Use the UID returned, if any.
1078         (nnimap-request-move-article): Use the UID returned, if any.
1079         (nnimap-get-groups): Reimplement to work with folded lines.
1080         (nnimap-find-uid-response): The UID is the last element in the list.
1081         (nnimap-request-set-mark): Extend syntax with 'set.
1082
1083         * nnml.el (nnml-request-set-mark): Ditto.
1084
1085         * nnfolder.el (nnfolder-request-set-mark): Ditto.
1086
1087         * nntp.el (nntp-request-set-mark): Ditto.
1088
1089 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1090
1091         * message.el (message-called-interactively-p): A temporary macro.
1092         (message-goto-body): Use it temporarily.
1093
1094 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1095
1096         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
1097         (nnimap-last-response-string): Unfold quoted lines, if they exist.
1098         (nnimap-last-response-string): Fix last unfolding fix.
1099
1100 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1101
1102         * shr.el (shr-insert): Fix the way to fold lines.
1103
1104 2010-11-25  Julien Danjou  <julien@danjou.info>
1105
1106         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex
1107
1108         * color.el: Rename from color-lab.el
1109         (color-rgb->hex): Add.
1110         (color-complement): Add.
1111         (color-complement-hex): Add.
1112
1113         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
1114
1115 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1116
1117         * shr-color.el (shr-color-visible): Don't bug out if the colour names
1118         don't exist.
1119
1120 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1121
1122         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
1123         assuming that article displaying or another mml-preview may be
1124         interrupted for an error or for the like.
1125
1126         * shr.el (shr-get-background): Fix argument name.
1127
1128 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1129
1130         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
1131
1132         * gnus-sum.el (gnus-summary-include-articles): New function.
1133
1134         * message.el (message-goto-body): called-interactively-p needs a
1135         parameter, so use `any'.
1136
1137         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
1138         clear marks before moving, since they're synced from the Gnus side
1139         first.
1140
1141         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
1142         (gnus-summary-move-article): Copy over all marks before moving, so that
1143         IMAP doesn't think a new article has arrived.
1144
1145 2010-11-24  Julien Danjou  <julien@danjou.info>
1146
1147         * shr.el (shr-insert-background-overlay): Fix typo.
1148         (shr-render-td): Copy the background before rendering.
1149
1150         * shr-color.el (shr-color-visible): Fix docstring.
1151
1152         * shr.el (shr-tag-table): Add bgcolor support.
1153         (shr-render-td): Add bgcolor support.
1154         (shr-get-background): Add.
1155         (shr-insert-foreground-overlay): Use shr-get-background.
1156
1157         * message.el (message-goto-body): Use called-interactively-p.
1158         (message-in-body-p): message-goto-body returns point.
1159
1160 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1161
1162         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
1163         Fixes something or other in Emacs 23, and is backwards compatible.
1164
1165         * message.el (message-goto-body): Remove the <#secure special-casing,
1166         which is too special.
1167
1168         * shr.el (shr-parse-style): Drop !important from styles.
1169
1170 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
1171
1172         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
1173         this function to return incorrect results when calling it with an
1174         explicit article argument different from
1175         (gnus-summary-article-number).
1176
1177 2010-11-24  Julien Danjou  <julien@danjou.info>
1178
1179         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
1180         (shr-tag-body): Add background support.
1181         (shr-descend): Add background support.
1182         (shr-tag-title): Add.
1183
1184         * shr-color.el (shr-color-visible): Really return original background
1185         if fixed.
1186
1187 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1188
1189         * shr.el (shr-color-check): Protect against non-existant colour names.
1190
1191 2010-11-24  Julien Danjou  <julien@danjou.info>
1192
1193         * color-lab.el: Require 'cl when compiling.
1194
1195         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
1196
1197         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
1198         matched part.
1199
1200         * color-lab.el: Fix all expt calls to use float type.
1201
1202 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
1203
1204         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
1205         expression to shr-color-check as is.
1206
1207         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
1208
1209         * color-lab.el: Add coding cookie.
1210         (float-pi): Use eval-and-compile.
1211
1212         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
1213         compiled for Emacsen having no `libxml-parse-html-region' support.
1214
1215 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1216
1217         * shr.el (shr-insert-color-overlay): Split stuff like
1218         "#444444 !important" to find the real colour.
1219         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
1220         parse <font color="red"> entries.
1221
1222 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
1223
1224         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
1225         point when parsing headers.
1226
1227         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
1228         is positioned properly when parsing headers.
1229
1230 2010-11-23  Julien Danjou  <julien@danjou.info>
1231
1232         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
1233
1234         * shr-color.el (shr-color->hexadecimal): Add support for color names.
1235
1236         * shr.el (shr-parse-style): Replace \n with space in style parsing.
1237
1238         * shr-color.el (shr-color-hsl-to-rgb-fractions):
1239         Use shr-color-hue-to-rgb.
1240         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
1241
1242 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1243
1244         * shr.el (shr-color->hexadecimal): Autoload.
1245         (shr-descend): Add color to all tags.
1246
1247 2010-11-22  Julien Danjou  <julien@danjou.info>
1248
1249         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
1250         shr-color->hexadecimal.
1251
1252         * shr-color.el (shr-color->hexadecimal): Add converting functions for
1253         RGB() or HSL() color representation.
1254
1255         * shr.el (shr-tag-font): Add.
1256         (shr-tag-color-check): New function to get better colors.
1257         (shr-tag-insert-color-overlay): Factorize code between tag-font and
1258         tag-span.
1259
1260         * shr-color.el: New file.
1261
1262         * color-lab.el: New file.
1263
1264         * gnus-art.el (gnus-url-mailto): Do not downcase args.
1265
1266 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
1267
1268         * nnir.el: Fix typo in comments.
1269         (nnir-run-imap): Simplify code. No need to reverse artlist.
1270         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
1271
1272 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1273
1274         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
1275
1276         * nnimap.el (nnimap-get-capabilities): Refactor out.
1277         (nnimap-open-connection): Re-request capabilities after STARTTLS.
1278
1279 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
1280
1281         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
1282         appearing when `mm-uu-hide-markers' is nil.
1283
1284 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1285
1286         * nnimap.el (nnimap-unselect-group): Make into its own function.
1287         (nnimap-request-rename-group): Unselect group before renaming.
1288         This had gotten lost somewhere.
1289         (nnimap-request-accept-article): Keep track of examined groups, and
1290         unselect the group before APPENDing to read-only groups.
1291         (nnimap-request-move-article): Clear flags before moving so that they
1292         can be re-set later.
1293
1294 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1295
1296         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
1297         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
1298
1299 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1300
1301         * gnus-art.el (gnus-mime-display-single)
1302         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images)
1303         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
1304         parameter.
1305
1306 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1307
1308         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
1309         (shr-table-vertical-line): New variable.
1310         (shr-insert-table): Use it.
1311
1312 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1313
1314         * gnus-html.el (gnus-html-wash-images): Don't display images if
1315         gnus-inhibit-images is non-nil; register displayer for cid images.
1316         (gnus-html-display-image): Work for cid image.
1317         (gnus-html-insert-image): Allow arguments.
1318         (gnus-html-put-image): Inhibit read-only.
1319         (gnus-html-prefetch-images): Don't prefetch images if
1320         gnus-inhibit-images is non-nil.
1321
1322 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1323
1324         * shr.el (shr-put-image): Break lines when inserting big pictures.
1325
1326 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
1327
1328         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
1329         sender, thanks Katsumi Yamaoka.
1330
1331 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
1332
1333         * nnir.el (nnir-run-imap): Reverse the article list for each group
1334         rather than the whole list.
1335
1336 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1337
1338         * shr.el (shr-image-displayer): Protect function against non-existent
1339         image source.
1340
1341         * gnus-art.el (gnus-inhibit-images): New user option.
1342         (gnus-mime-display-single): Don't display image if it is non-nil.
1343
1344         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
1345         gnus-inhibit-images.
1346
1347         * shr.el (shr-image-displayer): New function.
1348         (shr-tag-img): Use it.
1349
1350 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
1351
1352         * mml2015.el (mml2015-epg-sign): Use From header.
1353
1354 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1355
1356         * gnus-html.el (gnus-html-wash-images): Register a displayer.
1357
1358         * gnus-util.el (gnus-find-text-property-region): Return markers.
1359
1360         * shr.el (shr-tag-img): Put a displayer in the text property.
1361
1362         * gnus-util.el (gnus-find-text-property-region): New utility function.
1363
1364         * gnus-html.el (gnus-html-display-image): Make the alt optional.
1365         (gnus-html-show-images): Remove.
1366
1367         * gnus-art.el (gnus-article-show-images): New, more general function.
1368
1369         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
1370         image url text properties.
1371
1372         * shr.el: Ditto.
1373
1374         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
1375         gnus-agent-auto-agentize-methods is set.  Which it isn't.
1376
1377 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1378
1379         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
1380         work for two or more articles.
1381
1382 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1383
1384         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
1385         divide an image that's in an html article to two or more when washing
1386         non-ASCII characters in alt text of it.
1387
1388 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1389
1390         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
1391         smime-decrypt-region using function argument.
1392         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
1393
1394         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
1395
1396         * smime.el (smime-decrypt-region): Catch it.
1397
1398 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1399
1400         * smime.el (smime-mode-map): Move initialization into declaration.
1401         (gnus-run-mode-hooks): Don't autoload.
1402         (smime-mode): Use define-derived-mode.
1403
1404 2010-11-11  Glenn Morris  <rgm@gnu.org>
1405
1406         * smime.el (from): Restrict declaration to XEmacs.
1407
1408         * nnir.el (gnus-group-topic-name): Autoload.
1409
1410 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1411
1412         * shr.el (shr-insert): Don't break long line if it is because of
1413         kinsoku-bol characters in the line end.
1414
1415 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
1416
1417         * nnir.el (nnir-request-move-article): Fix to provide original group
1418         and subject.
1419         (nnir-warp-to-article): Don't fail on articles whose headers haven't
1420         been retrieved.
1421
1422         * gnus-sum.el (gnus-summary-move-article): Use original group and
1423         subject for virtual articles such as those in an nnir summary buffer.
1424
1425 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1426
1427         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
1428         least 21.5).
1429
1430         * smime.el (from): Declare it again for XEmacs.
1431
1432 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1433
1434         * message.el (message-resend): Don't disable encoding unless it's
1435         already encoded.
1436
1437         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
1438         low-numbered articles.
1439
1440 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1441
1442         * rfc2047.el (rfc2047-syntax-table): Simplify.
1443
1444         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
1445
1446         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
1447         set-char-table-range for XEmacs.
1448
1449 2010-11-10  Glenn Morris  <rgm@gnu.org>
1450
1451         * time-date.el (time-to-seconds): Always an alias on Emacs,
1452         never a real function.
1453         (with-no-warnings): Remove compat stub, now unused.
1454         (time-less-p): Doc fix.
1455         (time-to-number-of-days): Simplify.
1456
1457         * smime.el (from): Remove unused declaration.
1458
1459         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
1460         (gnus-float-time): On Emacs, always an alias.
1461
1462         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
1463         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
1464
1465 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1466
1467         * dgnushack.el: Don't use ignore-errors in the top level form since it
1468         is unavailable in XEmacs even if cl is loaded.
1469
1470         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
1471
1472 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1473
1474         * shr.el (browse-url-mailto): Autoload.
1475
1476         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
1477
1478         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
1479         regexp doesn't need quoting.
1480
1481 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
1482
1483         * message.el (message-subject-trailing-was-ask-regexp)
1484         (message-subject-trailing-was-regexp): Match was: in addition to was.
1485
1486 2010-11-09  Glenn Morris  <rgm@gnu.org>
1487
1488         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
1489         (nnbabyl-check-mbox): Use point-at-bol.
1490
1491 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1492
1493         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
1494
1495         * message.el (message-mailto): New function.
1496         (message-mailto): Should accept other parameters.
1497         (message-mailto): Remove since it duplicates browse-url-mailto
1498         functionality.
1499
1500 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1501
1502         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
1503         methods.
1504         (gnus-read-active-file): Ditto.
1505
1506         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
1507         ": " from the prompt.
1508         (gnus-group-make-group): Ditto.
1509
1510 2010-11-07  Glenn Morris  <rgm@gnu.org>
1511
1512         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
1513         (gnus-bookmark-kill-line): Use point-at-eol.
1514
1515 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1516
1517         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
1518         asterisks in From header.
1519
1520 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1521
1522         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
1523         string to avoid making the From headers syntactically invalid.
1524
1525         * message.el (message-send-mail): Don't insert courtesy messages if the
1526         message already has List-Post and List-ID messages.
1527
1528 2010-11-06  Glenn Morris  <rgm@gnu.org>
1529
1530         * gnus-art.el (gnus-treat-article): Give dynamic local variables
1531         `condition', `type', `length' a prefix.
1532         (gnus-treat-predicate): Update for above name changes.
1533
1534 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
1535
1536         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
1537         binding.  Handled by `gnus-summary-refer-thread' instead.
1538         (nnir-warp-to-article): New backend function.
1539
1540         * nnimap.el (nnimap-request-thread): Force dependency updating.
1541
1542         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
1543         (gnus-summary-refer-thread): Rework to improve thread-referral.
1544
1545         * gnus-int.el (gnus-warp-to-article): New function.
1546
1547         * gnus-sum.el (gnus-summary-article-map): Bind it.
1548
1549 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
1550
1551         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
1552         gnus-summary-refer-thread.
1553
1554         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
1555         headers.
1556         (gnus-summary-limit-include-thread): Prevent articles in thread from
1557         being cut in gnus-cut-threads.
1558         (gnus-summary-refer-thread): Limit retrieved headers to those in
1559         thread.
1560
1561 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1562
1563         * message.el (message-send-mail): Use the value of
1564         message-courtesy-message from the message buffer.
1565
1566         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
1567
1568         * shr.el (shr-browse-url): Implement mailto: URLs.
1569
1570         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
1571         "raw".
1572
1573         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
1574         if it's already selected.
1575
1576         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
1577
1578 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
1579
1580         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
1581         to measure the length and truncate alt text.
1582
1583 2010-11-03  Glenn Morris  <rgm@gnu.org>
1584
1585         * nndiary.el (nndiary-generate-nov-databases-1)
1586         (nndiary-generate-active-info): Rename dynamic variable `files' to
1587         something less generic.
1588
1589 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
1590
1591         * nnir.el (nnir-request-move-article): Call the underlying backend to
1592         move articles from nnir.
1593
1594 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1595
1596         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
1597
1598 2010-11-02  Julien Danjou  <julien@danjou.info>
1599
1600         * nnir.el: Remove wais support.
1601
1602 2010-11-02  Glenn Morris  <rgm@gnu.org>
1603
1604         * gnus-html.el: Reorder requirements to quieten compiler.
1605
1606 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1607
1608         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
1609         properly for XEmacs as well.
1610         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
1611         (gnus-article-natural-long-line-p): Use window-width rather than
1612         frame-width.
1613
1614 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
1615
1616         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
1617         (nnir-read-parms): Don't modify query.
1618         (nnir-run-query): Add ability to search topic on current line.
1619         (nnir-get-active): Clean up.
1620
1621 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1622
1623         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
1624         degenerate articles.
1625
1626         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
1627         (gnus-print-buffer): Just print the buffer as is, without any copying
1628         to a buffer and then re-highlighting.
1629
1630         * nnimap.el (nnimap-request-group): Store the new updated info.
1631         (nnimap-request-group): Select the group when we don't know whether it
1632         exists or not.
1633
1634         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
1635         groups.
1636
1637         * gnus-group.el (gnus-group-find-new-groups): Display all the new
1638         groups.
1639
1640         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
1641         groups.
1642
1643         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
1644         long-lines case by only filling the long lines.
1645
1646         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
1647         (bug #7311).
1648
1649 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1650
1651         * shr.el: No need to declare `declare-function' since shr.el is for
1652         only Emacsen that provide `libxml-parse-html-region'.
1653
1654         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
1655         effective only in a file it is referred to.
1656
1657 2010-11-01  Glenn Morris  <rgm@gnu.org>
1658
1659         * mm-util.el (gnus-completing-read): Autoload.
1660         (mm-read-coding-system): Simplify Emacs definition.
1661
1662         * nnmail.el (gnus-activate-group):
1663         * nnimap.el (gnutls-negotiate):
1664         * nntp.el (netrc-parse): Fix declarations.
1665
1666 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1667
1668         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
1669         string-match-p in Emacs >=23.
1670
1671         * gnus-msg.el (gnus-configure-posting-styles)
1672         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
1673
1674 2010-11-01  Glenn Morris  <rgm@gnu.org>
1675
1676         * nnir.el (declare-function): Add compat stub.
1677         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
1678         (nnir-run-gmane): Require 'mm-url.
1679
1680         * mm-util.el (mm-string-to-multibyte): Simplify.
1681
1682         * shr.el (declare-function): Add compat stub.
1683         (url-cache-create-filename): Declare.
1684         (mm-disable-multibyte, widget-convert-button): Autoload.
1685
1686         * smime.el (ldap-search): Declare.
1687         (smime-cert-by-ldap-1): Require ldap on Emacs.
1688
1689         * nnimap.el: Require nnmail, and gnus-sum when compiling.
1690         (nnimap-keepalive): Use gnus-float-time.
1691
1692         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
1693         (mail-source-delete-crash-box): Use gnus-float-time.
1694
1695         * gnus-dired.el (gnus-completing-read): Autoload.
1696
1697         * mm-view.el (gnus-rescale-image): Autoload.
1698
1699         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
1700
1701         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
1702
1703         * sieve-manage.el: Require 'cl when compiling.
1704
1705         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
1706         (gnus-iswitchb-completing-read): Require iswitchb.
1707         (gnus-select-frame-set-input-focus): Silence compiler.
1708
1709 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1710
1711         * message.el (message-subject-trailing-was-query): Change default to t,
1712         since I think that's what most people want.
1713
1714         * nnimap.el (nnimap-request-accept-article): Erase buffer before
1715         appending for easier debugging.
1716         (nnimap-wait-for-connection): Take a regexp.
1717         (nnimap-request-accept-article): Wait for the continuation line before
1718         sending anything unless we're streaming.
1719
1720         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
1721         leave the header washing to take place.
1722
1723 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
1724
1725         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
1726         regular expression match and replace in posting styles.
1727
1728 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
1729
1730         * nnir.el (gnus-group-make-nnir-group,nnir-run-query): Allow searching
1731         an entire server.
1732         (nnir-get-active): New function.
1733         (nnir-run-imap): Use it.
1734         (nnir-run-gmane): Who knew, gmane search returns an article score!
1735
1736         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
1737         server on the current line with nnir.
1738
1739 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1740
1741         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
1742         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
1743         left edge.
1744         (gnus-article-foldable-buffer): Skip past the prefix when determining
1745         raggedness.
1746
1747         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
1748         the raw article, and change `C-u g' to show the article without doing
1749         treatments.
1750
1751         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
1752         on to `gnus-treat-article'.
1753         (gnus-inhibit-article-treatments): New variable.
1754
1755         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
1756
1757         * gnus-art.el (gnus-treatment-function-alist): Have
1758         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
1759         (gnus-treat-fill-long-lines): Change default to fill all text/plain
1760         sections.
1761
1762         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
1763         parameter.
1764         (gnus-article-fill-cited-long-lines): New function.
1765         (gnus-article-fill-cited-article): Allow filling only long sections.
1766
1767         * shr.el (shr-find-fill-point): Don't break lines between punctuation
1768         and non-punctuation (like after the apostrophe in "'We").
1769
1770         * gnus-sum.el (gnus-summary-select-article): Make sure
1771         gnus-original-article-buffer is alive.
1772
1773         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
1774         reflect the order they're in in the digest.
1775
1776         * gnus.el (gnus-group-startup-message): Move point to the start of the
1777         buffer.
1778
1779         * nnimap.el (nnimap-capability): New function.
1780         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
1781         is set.
1782
1783 2010-10-31  David Engster  <dengste@eml.cc>
1784
1785         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
1786         conform with changes to gnus-completing-read.
1787
1788 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1789
1790         * shr.el (shr-tag-img): Output "*" instead of "[img]".
1791
1792 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
1793
1794         * nnir.el: Move defvar, defcustom around to keep file organized
1795         and keep byte-compiler quiet.
1796         (nnir-read-parms): Accept search-engine as arg.
1797         (nnir-run-query): Pass search-engine as arg.
1798         (nnir-search-engine): Remove.
1799
1800 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1801
1802         * shr.el (shr-generic): The text nodes should be text, not :text.
1803
1804         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
1805         later in the file.
1806
1807 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
1808
1809         * nnir.el: General clean up.  Allow searching with multiple engines.
1810         Allow separate extra-parameters for each engine.
1811         Batch queries when possible.
1812         (nnir-imap-default-search-key,nnir-method-default-engines):
1813         Add customize interface.
1814         (nnir-run-gmane): New engine.
1815         (nnir-engines): Use it.  Qualify all prompts with engine name.
1816         (nnir-search-engine): Remove global variable.
1817         (nnir-run-hyrex): Restore for now.
1818         (nnir-extra-parms,nnir-search-history): New variables.
1819         (gnus-group-make-nnir-group): Use them.
1820         (nnir-group-server): Remove in favor of gnus-group-server.
1821         (nnir-request-group): Avoid searching twice.
1822         (nnir-sort-groups-by-server): New function.
1823
1824 2010-10-30  Julien Danjou  <julien@danjou.info>
1825
1826         * gnus-group.el: Remove gnus-group-fetch-control.
1827
1828         * gnus-start.el (gnus-find-new-newsgroups):
1829         Remove gnus-check-first-time-used.
1830
1831         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
1832
1833 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
1834
1835         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
1836         set on groups that don't have \* permanentflags.
1837
1838 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1839
1840         * shr.el (shr-tag-span): Drop colorisation of regions since we don't
1841         control the background color.
1842         (shr-tag-img): Ignore very small web bug type images.
1843         (shr-put-image): Add help-echo alt texts to the images.
1844         (shr-tag-video): Show the video poster image.
1845
1846 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1847
1848         * shr.el (shr-table-depth): New variable.
1849         (shr-tag-table-1): Only insert the images after the top-level table.
1850
1851         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
1852
1853         * gnus-util.el (gnus-list-memq-of-list): New function.
1854
1855         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
1856         selected.
1857         (nnimap-unsplittable-articles): New slot.
1858         (nnimap-new-articles): Use it.
1859
1860 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
1861
1862         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
1863         move to the previous line on `M-g'.
1864
1865 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1866
1867         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
1868         *-request-group, which seems unnecessary.
1869
1870         * nnimap.el (nnimap-quote-specials): Function copied over from
1871         imap.el.
1872         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
1873         they support that.  Suggested by Tom Regner.
1874
1875 2010-10-29  Julien Danjou  <julien@danjou.info>
1876
1877         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
1878         defalias.
1879         (gnus-summary-delete-marked-with): Remove obsolete defalias.
1880
1881         * gnus.el: Remove `gnus-nntp-service' variable.
1882         (gnus-secondary-servers): Make obsolete.
1883         (gnus-nntp-server): Make obsolete.
1884
1885         * gnus-start.el (gnus-1): Remove x-splash calls.
1886
1887         * gnus-ems.el (gnus-x-splash): Remove.
1888
1889         * gnus.el (gnus-group-startup-message): Simplify/update code.
1890
1891         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
1892         definition.
1893
1894         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
1895         capability before doing anything.
1896         (gnus-group-insert-group-line): Remove useless
1897         gnus-group-remove-excess-properties.
1898
1899 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
1900
1901         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
1902
1903 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1904
1905         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
1906         config after reselecting.
1907
1908 2010-10-28  Julien Danjou  <julien@danjou.info>
1909
1910         * shr.el (shr-put-image): Use point even if only inserting text.
1911         (shr-put-image): Save excursion when inserting alt text on non-graphic
1912         display, so the behaviour is the same when we are on a graphic display.
1913
1914         * nnir.el (nnir-run-swish-e): Remove hyrex support.
1915
1916 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1917
1918         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
1919         (gnus-mime-copy-part): Check coding system, not charset.
1920         (gnus-mime-view-part-externally): Never remove part.
1921         (gnus-mime-view-part-internally): Don't remove part here.
1922         (gnus-article-part-wrapper): Make sure MIME tag is visible.
1923         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
1924         multipart/alternative.
1925
1926         * mm-decode.el (mm-display-part): Take optional arg `force'.
1927
1928 2010-10-26  Julien Danjou  <julien@danjou.info>
1929
1930         * gnus-group.el (gnus-group-default-list-level): Add this function to
1931         compute the default list level.
1932         (gnus-group-default-list-level): Add possibility to use a function.
1933
1934 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1935
1936         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
1937
1938         * gnus-group.el (gnus-group-completing-read)
1939         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
1940         gnus-replace-in-string.
1941
1942 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
1943
1944         * shr.el (shr-tag-div): Add.
1945
1946         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
1947
1948 2010-10-25  Julien Danjou  <julien@danjou.info>
1949
1950         * gnus-util.el: Remove `gnus-with-local-quit'.
1951
1952         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
1953
1954 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1955
1956         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
1957         the original article buffer.
1958
1959 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1960
1961         * nnimap.el (nnimap-request-head): New function.
1962         (nnimap-request-move-article): Try to be slighly faster by not
1963         requesting the entire message when moving.
1964         (nnimap-transform-headers): Don't bug out on bodiless articles.
1965         (nnimap-send-command): Have no outstanding messages if the IMAP server
1966         doesn't support streaming.
1967         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
1968
1969 2010-10-24  Julien Danjou  <julien@danjou.info>
1970
1971         * message.el (message-default-headers): Fix type.
1972
1973 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1974
1975         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
1976         prefetching images.
1977
1978         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
1979         backend for unknown groups.  This is mainly useful for nnimap groups.
1980
1981         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
1982         group isn't covered by the agent.
1983
1984 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
1985
1986         * nnir.el (nnir-method-default-engines): New variable.
1987         (nnir-run-query): Use it.
1988         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
1989         (gnus-summary-nnir-goto-thread): Change group if needed.
1990
1991         * gnus-group.el (gnus-group-group-map): Add key binding for
1992         gnus-group-make-nnir-group.
1993
1994 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1995
1996         * shr.el (shr-tag-object): Add.
1997
1998         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
1999         original article buffer live.
2000         (gnus-summary-select-article-buffer):
2001         Mention gnus-widen-article-buffer.
2002
2003 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2004
2005         * shr.el (shr-tag-strong): Add.
2006
2007 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2008
2009         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
2010         group names.  They mess up the group buffer badly.
2011
2012         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
2013
2014         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
2015         instead of the summary one.
2016
2017 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2018
2019         * mml.el (mml-preview): Work properly when editing article.
2020
2021         * gnus-start.el (gnus-read-active-file-1): Don't add method to
2022         gnus-have-read-active-file if it's already been in.
2023
2024 2010-10-22  Tom Tromey  <tromey@redhat.com>
2025
2026         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
2027         gnus-group-completing-read.
2028
2029 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2030
2031         * message.el (message-mode-map): Don't bind M-; to comment region, to
2032         allow the global comment-dwim to work.
2033
2034 2010-10-21  Julien Danjou  <julien@danjou.info>
2035
2036         * message.el (message-setup-1): Allow message-default-headers to be a
2037         function.
2038
2039 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2040
2041         * shr.el (shr-tag-table): Simplify.
2042
2043 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2044
2045         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
2046         to avoid trying to snarf invalid stuff.
2047
2048         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
2049
2050         * gnus.el (gnus-message-archive-group): Quote value.
2051         (gnus-message-archive-group): Mark as changed.
2052
2053         * shr.el (shr-add-font): Don't put the font properties on the newline
2054         or the indentation.
2055
2056         * message.el (message-fix-before-sending): Change options when sending
2057         non-printable characters.
2058
2059         * gnus.el (gnus-message-archive-method): Change the default to
2060         monthly outgoing groups.
2061
2062         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
2063         that have gotten new numbers.
2064
2065         * nnimap.el (nnimap-request-replace-article): New function.
2066
2067 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2068
2069         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
2070         (nnrss-request-article): Don't use special html washing code.
2071
2072 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
2073
2074         * shr.el (shr-tag-table): Remove useless nconc.
2075
2076 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2077
2078         * gnus-art.el (article-wash-html): Simplify and remove the charset
2079         stuff.  Use the normal html rendering code instead of the special html
2080         washing code.
2081
2082         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
2083         `gnus-w3m' symbols.
2084         (mm-text-html-washer-alist): Remove.
2085
2086         * mm-decode.el (mm-inline-text-html-renderer): Remove.
2087         (mm-inline-media-tests): Remove use.
2088         (mm-text-html-renderer): Change default to the `shr' symbol.
2089
2090         * mm-view.el (mm-inline-text-html): Remove use.
2091
2092         * gnus-art.el (gnus-blocked-images): New function.  Allow the
2093         `gnus-blocked-images' to be a function.
2094         (gnus-article-wash-function): Remove.
2095
2096 2010-10-20  Julien Danjou  <julien@danjou.info>
2097
2098         * spam.el (spam-list-of-processors): Mark as obsolete.
2099
2100         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
2101         (nnimap-insert-partial-structure): Fix boundary detection.
2102
2103 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
2104
2105         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
2106         run file-truename on remote files.  This can be expensive and even
2107         prevent one from editing drafts if some unrelated buffer has a stale
2108         connection.
2109
2110 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
2111
2112         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
2113         kinsoku-eol regardless of shr-kinsoku-shorten.
2114         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
2115         (shr-tag-table): Support caption, thead, and tfoot.
2116
2117 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2118
2119         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
2120         lines.
2121         (shr-save-contents): New command and keystroke.
2122
2123         * nndoc.el (nndoc-type-alist): Add git support.
2124         (nndoc-git-type-p): New function.
2125         (nndoc-transform-git-article): Ditto.
2126         (nndoc-transform-git-headers): Ditto.
2127         (nndoc-transform-git-headers): Generate Subject headers.
2128
2129         * shr.el (shr-parse-style): New function.
2130         (shr-tag-span): Ditto.
2131
2132         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
2133         to `G G' to avoid collisions.
2134
2135 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
2136
2137         * shr.el: Load kinsoku if necessary.
2138         (shr-kinsoku-shorten): New internal variable.
2139         (shr-find-fill-point): Make kinsoku shorten text line if
2140         shr-kinsoku-shorten is bound to non-nil.
2141         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
2142         shr-indentation too when testing if table is wider than frame width.
2143         (shr-insert-table): Use `string-width' instead of `length' to measure
2144         text width.
2145         (shr-insert-table-ruler): Make sure indentation is done at bol.
2146
2147 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2148
2149         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
2150         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
2151         undecoded network data.
2152
2153 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2154
2155         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
2156         name in the mode line spec so that the mode line menu works
2157         (bug #2431).
2158
2159         * message.el (message-get-reply-headers): If we're fed `to-address',
2160         then always use that.
2161
2162         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
2163         aren't so wide as to need to switch off the edit menu.
2164
2165         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
2166         binding.  Suggested by Leo <sdl.web@gmail.com> (bug #6613).
2167
2168         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
2169         `M-g'.
2170         (nnimap-update-info): Update flags/read marks even if \* isn't part of
2171         the permanent marks.
2172
2173 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
2174
2175         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
2176         Splitting according to references/in-reply-to obeys the ignore-groups
2177         variable, while splitting by sender and subject do not.
2178
2179 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2180
2181         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
2182         alist, so that we can look for non-Unicode chars.
2183         (article-translate-strings): Allow both character and string maps.
2184
2185 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2186
2187         * shr.el (shr-insert): Don't insert space behind a wide character
2188         categorized as kinsoku-bol, or between characters both categorized as
2189         nospace.
2190
2191 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
2192
2193         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
2194         headers to gnus-newsgroup-headers.
2195
2196 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2197
2198         * shr.el (shr-tag-img): Don't align images -- since we're not
2199         rescaling, this often leads to ugly displays.
2200
2201 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
2202
2203         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
2204         duplicates.
2205
2206 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
2207
2208         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
2209         call.
2210
2211 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2212
2213         * gnus.el: Autoload gnus-html-show-images.
2214
2215         * nnimap.el: Use nnheader-message throughout.
2216
2217         * shr.el (shr-tag-img): Ignore images with no data.
2218
2219 2010-10-15  Julien Danjou  <julien@danjou.info>
2220
2221         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
2222         a possibility to disable format=flow encoding when using hard newlines.
2223
2224 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2225
2226         * shr.el (shr-insert): Remove space inserted before or after a
2227         breakable character or at the beginning or the end of a line.
2228         (shr-find-fill-point): Do kinsoku; find the second best point or give
2229         it up if there's no breakable point.
2230
2231 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2232
2233         * nnimap.el (nnimap-open-connection): Message when opening connection
2234         for debugging purposes.
2235
2236         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
2237         on every setup buffer call to allow this to change from article to
2238         article.
2239
2240         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
2241         buffers where we have a wide table.
2242
2243 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
2244
2245         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
2246         uses *-request-thread.
2247
2248 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2249
2250         * nnimap.el (nnimap-open-connection): Remove %s from openssl
2251         incantation, which is no longer valid.
2252
2253 2010-10-14  Julien Danjou  <julien@danjou.info>
2254
2255         * shr.el: Fix defcustom type (char -> character).
2256
2257 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2258
2259         * nnimap.el (nnimap-open-connection): tls-program should be a list of
2260         programs.
2261
2262 2010-10-14  Julien Danjou  <julien@danjou.info>
2263
2264         * shr.el (shr-tag-a): Use url-link as widget type.
2265
2266         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
2267         `gnus-group-get-icon'.
2268
2269 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2270
2271         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
2272         This should make server editing work better.
2273
2274         * shr.el (shr-find-fill-point): Don't inloop on indented text.
2275
2276         * tls.el (tls-program): Remove spurious %s from openssl.
2277
2278         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
2279         (nnimap-parse-flags): Fix regexp.
2280
2281         * shr.el (shr-find-fill-point): Use a filling algorithm that should
2282         probably work for CJVK text, too.
2283
2284         * nnimap.el (nnimap-extend-tls-programs): Remove.
2285         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
2286
2287         * tls.el (tls-starttls-switches): Remove starttls hack.
2288         (open-tls-stream): Ditto.
2289         (tls-find-starttls-argument): Ditto.
2290
2291 2010-10-13  Julien Danjou  <julien@danjou.info>
2292
2293         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
2294         responses.
2295
2296 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2297
2298         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
2299
2300         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
2301         anything in Emacs.
2302
2303         * shr.el (shr-current-column): Remove buggy and unnecessary function.
2304
2305 2010-10-13  Julien Danjou  <julien@danjou.info>
2306
2307         * shr.el (shr-width): Make shr-width a defcustom with default to
2308         fill-column.
2309         (shr-tag-img): Use shr-width rather than fill-column.
2310
2311 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2312
2313         * dgnushack.el (byte-optimize-apply)
2314         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
2315
2316         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
2317         position when (X-)Faces exist.
2318         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
2319         avatars when called interactively.
2320
2321 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2322
2323         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
2324         gnus-article-x-face-too-ugly is bound.
2325
2326 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2327
2328         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
2329
2330         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
2331         mailbox that doesn't exist.
2332
2333 2010-10-12  Julien Danjou  <julien@danjou.info>
2334
2335         * shr.el (shr-tag-img): Encode URL properly when retrieving.
2336         (shr-get-image-data): Encode URL properly when fetching from cache.
2337         (shr-tag-img): Use aligned-to spaces to align correctly images.
2338
2339         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
2340         before inserting the Gravatar.
2341
2342         * shr.el (shr-tag-img): Add align attribute support for <img>.
2343
2344 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2345
2346         * gnus-gravatar.el (gnus-art): Require.
2347
2348         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
2349         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
2350         Remove long obsoleted functions.
2351
2352 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2353
2354         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
2355
2356         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
2357
2358         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
2359         * gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
2360         * hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
2361         * mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
2362         * mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
2363         * nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
2364         * sieve-manage.el, smime.el, spam.el:
2365         Fix comment for declare-function.
2366
2367 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2368
2369         * nnimap.el (nnimap-request-rename-group): Select group read-only
2370         before renaming it.
2371
2372         * shr.el (shr-insert): Fix up the white space only regexp.
2373
2374         * nnimap.el (nnimap-transform-split-mail): Not all articles have
2375         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
2376
2377         * shr.el (shr-current-column): New function.
2378         (shr-find-fill-point): New function.
2379
2380 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
2381
2382         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
2383         numbers.
2384
2385 2010-10-11  Julien Danjou  <julien@danjou.info>
2386
2387         * shr.el (shr-hr-line): Add.
2388         (shr-tag-hr): Use shr-hr-line to specify which character to use to
2389         display hr lines.
2390         (shr-max-columns): Do not change state to nil if we just inserting
2391         spaces.
2392
2393 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2394
2395         * gnus-topic.el (gnus-topic-read-group): If after the last group,
2396         select the last group.
2397
2398 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
2399
2400         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
2401
2402 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
2403
2404         * dig.el (dig-mode-map): Declare and define in one step.
2405
2406 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2407
2408         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
2409         for Gnus.
2410         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
2411         (nnimap-update-qresync-info): Mark \Seen articles as read.
2412
2413         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
2414         non-variable, too.
2415
2416         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
2417         available.
2418         (nnimap-update-info): Rely more on the current active than the param
2419         active to avoid marking articles as read too much.
2420
2421         * auth-source.el (auth-source-create): Use (user-login-name) for the
2422         user name default.
2423
2424         * nnimap.el (nnimap-update-info): If the server doesn't return any
2425         useful info, just use the previous info.
2426         (nnimap-update-info): Prefer old info over start-article.
2427         (nnimap-update-qresync-info): Finish implementing QRESYNC.
2428
2429 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
2430
2431         * nnir.el (autoload): Clean up autoloads.
2432         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
2433         Use key rather than value.
2434         (nnir-imap-search-other): New variable.
2435         (nnir-read-parm): Use it.
2436         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
2437         (gnus-summary-nnir-goto-thread): Modify to work with imap.
2438
2439 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2440
2441         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
2442         the process, too.
2443
2444 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2445
2446         * spam.el (gnus-summary-mode-map): Bind to "$".
2447         Suggested by Russ Allbery.
2448
2449         * shr.el: Rework the way things are indented by <li> slightly.
2450
2451         * gnus.el (gnus-group-set-parameter): Fix typo.
2452
2453         * nnimap.el: Start implementing QRESYNC support.
2454
2455 2010-10-09  Julien Danjou  <julien@danjou.info>
2456
2457         * nnir.el (nnir-engines): Fix too many arguments.
2458
2459 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2460
2461         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
2462         group is the "last", so that the backends like nnfolder actually save
2463         their folders.
2464
2465         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
2466         try to use that for the tls stream.
2467         (nnimap-retrieve-group-data-early): Rework the marks code to heed
2468         UIDVALIDITY and find out which groups are read-only and not.
2469         (nnimap-get-flags): Use the same marks parsing code as the rest of
2470         nnimap.
2471
2472 2010-10-09  Julien Danjou  <julien@danjou.info>
2473
2474         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
2475
2476         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
2477         retrieving gravatars.
2478
2479         * shr.el (shr-table-corner): Add.
2480         (shr-table-line): Add.
2481         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
2482
2483 2010-10-08  Julien Danjou  <julien@danjou.info>
2484
2485         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
2486
2487 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
2488
2489         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
2490
2491         * gnus-sum.el (gnus-mark-article-as-unread)
2492         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
2493         (gnus-summary-set-bookmark): Use it.
2494
2495         * gnus-msg.el (gnus-setup-message): Use it.
2496
2497         * gnus-demon.el (gnus-demon-remove-handler): Use it.
2498
2499         * gnus.el (gnus-group-remove-parameter): Use it.
2500
2501         * gnus-group.el (gnus-group-make-web-group): Use it.
2502
2503         * gnus-demon.el (gnus-demon-remove-handler): Use it.
2504
2505         * nnregistry.el: Update docs to mention manual.
2506
2507         * gnus-registry.el: Update docs to mention nnregistry.el.
2508         (gnus-registry-initialize): Don't install nnregistry refer method
2509         automatically.
2510         (gnus-registry-install-nnregistry): Remove it.
2511
2512 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2513
2514         * shr.el (shr-insert): Don't insert double spaces.
2515
2516 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2517
2518         * gnus-gravatar.el (gnus-treat-from-gravatar)
2519         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
2520         called interactively.
2521
2522         * gnus-art.el (gnus-mime-view-part-externally)
2523         (gnus-mime-view-part-internally): Make predicate function passed to
2524         gnus-mime-view-part-as-type assume argument is a mime type, not a list
2525         of a mime type.
2526
2527         * shr.el (shr-table-widths): Don't use cl function `reduce'.
2528
2529 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2530
2531         * shr.el (require): Require cl when compiling.
2532         (shr-tag-hr): New function.
2533
2534         * nnimap.el (nnimap-update-info): Remove double setting of high.
2535         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
2536         This makes nnimap work properly on Courier again.
2537
2538         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
2539         the variable for backwards compatability.
2540
2541         * mm-decode.el (mm-save-part): If given a non-directory result, expand
2542         the file name before using to avoid setting mm-default-directory to
2543         nil.
2544
2545         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
2546         bidning gnus-agent variables.
2547
2548         * shr.el (shr-render-td): Use a cache for the table rendering function
2549         to avoid getting an exponential rendering behaviour in nested tables.
2550         (shr-insert): Rework the line-breaking algorithm.
2551         (shr-insert): Don't leave trailing spaces.
2552         (shr-insert-table): Also insert empty TDs.
2553         (shr-tag-blockquote): Ensure paragraphs after </ul>.
2554
2555 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2556
2557         * gnus-sum.el (gnus-number): Rename from `number'.
2558         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
2559         (gnus-summary-limit-children): Update uses correspondingly.
2560
2561 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2562
2563         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
2564         (gnus-gravatar-transform-address): Don't show avatars of people of
2565         which mail addresses match gnus-gravatar-too-ugly.
2566
2567 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2568
2569         * shr.el (shr-table-widths): Expand TD elements to fill available
2570         space.
2571
2572 2010-10-07  Julien Danjou  <julien@danjou.info>
2573
2574         * nnimap.el (nnimap-request-rename-group): Add this method.
2575
2576 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2577
2578         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
2579         name from XEmacs' function-arglist.
2580
2581         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
2582         gravatar under XEmacs.
2583
2584 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
2585
2586         * auth-source.el: Update docs with TODO items.
2587
2588         * gnus-sync.el: Update docs to explain state and plans.
2589
2590         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
2591         Hooks for mark updates.
2592         (gnus-request-set-mark, gnus-request-update-mark): Use them.
2593
2594         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
2595         hooks with arguments, which is needed for mark update hooks.
2596
2597 2010-10-06  Julien Danjou  <julien@danjou.info>
2598
2599         * gnus.el (gnus-expand-group-parameter): Only return and act on what
2600         was matched.
2601
2602         * sieve-manage.el: Update example in `Commentary'.
2603
2604         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
2605
2606         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
2607         not 2000.
2608         (sieve-manage-authenticate): Re-add function.
2609
2610 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2611
2612         * shr.el (shr-insert): Get 'space transition right.
2613         (shr-render-td): Only delete space at the end of the TD.
2614
2615         * nnimap.el (nnimap-open-connection): Prepare to support
2616         open-gnutls-stream.
2617
2618         * shr.el: Rearrange function order to be more logical.
2619
2620 2010-10-06  Julien Danjou  <julien@danjou.info>
2621
2622         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
2623         (nnrss-discover-feed): Remove 404 URL in docstring.
2624
2625         * nnir.el: Fix Swish-E URL.
2626         Fix Namazu URL.
2627
2628         * message.el (message-change-subject): Remove 404 URL in a comment.
2629
2630 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2631
2632         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
2633         called interactively.
2634
2635         * gnus-util.el (gnus-remove-if): Allow hash table.
2636         (gnus-remove-if-not): New function.
2637
2638         * gnus-art.el (gnus-mime-view-part-as-type)
2639         * gnus-score.el (gnus-summary-score-effect)
2640         * gnus-sum.el (gnus-read-move-group-name):
2641         Replace remove-if-not with gnus-remove-if-not.
2642
2643         * gnus-group.el (gnus-group-completing-read):
2644         Regard collection as a hash table if it is not a list.
2645
2646 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2647
2648         * shr.el (shr-render-td): Allow blank/missing <TD>s.
2649
2650         * shr.el: Document the table-rendering algorithm.
2651
2652 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2653
2654         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
2655         for Emacsen having no `libxml-parse-html-region' support.
2656
2657 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2658
2659         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
2660         invalid URLs.
2661
2662         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
2663         line-broken.
2664         (shr-tag-img): Ignore image fetching errors.
2665         (shr-overlays-in-region): Compute overlay positions correctly.
2666
2667         * mm-decode.el (mm-shr): Require shr.
2668
2669         * gnus-art.el (gnus-blocked-images): Move variable here.
2670
2671         * shr.el (shr-insert-table): Bind free variable.
2672
2673         * mm-decode.el (mm-shr): Bind shr-content-function.
2674
2675         * shr.el (shr-content-function): New variable.
2676
2677         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
2678         added for symmetry.
2679
2680         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
2681
2682         * gnus-group.el (gnus-group-make-group): Doc fix.
2683
2684         * nnimap.el (nnimap-request-newgroups): Return success.
2685
2686         * shr.el (shr-find-elements): New function.
2687         (shr-tag-table): Put all the images after the table.
2688         (shr-tag-table): Really inhibit images inside the table.
2689         (shr-collect-overlays): Copy over overlays from the TD elements to the
2690         main document.
2691
2692         * mm-decode.el (mm-shr): Bind shr-blocked-images to
2693         gnus-blocked-images.
2694
2695 2010-10-05  Julien Danjou  <julien@danjou.info>
2696
2697         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
2698
2699         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
2700         (gnus-html-maximum-image-size): Add this function.
2701         (gnus-html-put-image): Use gnus-html-maximum-image-size.
2702
2703         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
2704         server-value of the capability is nil.
2705
2706 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2707
2708         * shr.el (shr-tag-em): Add <EM> tag.
2709
2710 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
2711
2712         * sieve-manage.el (sieve-manage-default-stream): Make default stream
2713         customizable.
2714
2715         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
2716         handing broken links to browse-url.
2717
2718 2010-10-05  Julien Danjou  <julien@danjou.info>
2719
2720         * gnus-util.el (gnus-emacs-completing-read)
2721         (gnus-iswitchb-completing-read): Use autoload rather than require.
2722
2723 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2724
2725         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
2726         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
2727         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
2728         iswitchb-temp-buflist for XEmacs.
2729
2730         * gnus-util.el (gnus-completing-read-function): Exclude
2731         gnus-icompleting-read and gnus-ido-completing-read from candidates for
2732         XEmacs since iswitchb.el is very old and ido.el is unavailable in
2733         XEmacs.
2734
2735         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
2736         not to use `delete-dups' that is unavailable in XEmacs 21.4.
2737
2738         * gnus-html.el: Don't require help-fns under XEmacs.
2739         (gnus-html-schedule-image-fetching): Work for XEmacs.
2740
2741         * mm-decode.el (mm-shr): Decode contents by charset.
2742
2743 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2744
2745         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
2746         unknown.
2747
2748         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
2749         (shr-get-image-data): Ensure against the cache file missing.
2750
2751         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
2752         for data.
2753
2754         * spam-report.el (spam-report-url-ping-plain): Don't query about
2755         killing the process.
2756
2757         * shr.el (shr-render-td): Protect against too-wide text.
2758
2759 2010-10-04  Julien Danjou  <julien@danjou.info>
2760
2761         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
2762         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
2763
2764         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
2765         retrieved.
2766
2767 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2768
2769         * shr.el (browse-url): Require.
2770         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
2771         lines.
2772         (shr-show-alt-text, shr-browse-image): New commands.
2773         (shr-browse-url, shr-copy-url): New commands.
2774
2775         * gnus-sum.el (gnus-widen-article-window): New variable.
2776         (gnus-summary-select-article-buffer): Use it.
2777
2778         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
2779         without @ signs.
2780
2781 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
2782
2783         * nnir.el (nnir-run-imap): Remove spurious space in search string.
2784
2785 2010-10-04  Julien Danjou  <julien@danjou.info>
2786
2787         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
2788         for XEmacs.
2789
2790 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2791
2792         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
2793
2794         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
2795         (nnimap-close-server): Implement.
2796
2797         * dgnushack.el (iswitchb): Require to shut up the compiler.
2798
2799         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
2800         (shr-insert): Tweak line breaking.
2801         (shr-insert): Handle <pre> better.
2802         (shr-tag-li): Get <li> indentation right.
2803         (shr-tag-li): Get <li> indentation even righter.
2804         (shr-tag-blockquote): Ensure paragraph start.
2805         (shr-make-table): Tweak table generation.
2806         (shr-make-table): Fix typo.
2807
2808         * shr.el: Implement table rendering.
2809
2810 2010-10-04  Julien Danjou  <julien@danjou.info>
2811
2812         * gnus-html.el (gnus-html-put-image): Fix resize image code.
2813
2814 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2815
2816         * shr.el (shr-insert): Use string anchors instead of line anchors.
2817
2818 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2819
2820         * shr.el: Add headings.
2821         (shr-ensure-paragraph): Actually work.
2822         (shr-tag-li): Make <ul> prettier.
2823         (shr-insert): Get white space at the beginning/end of elements right.
2824         (shr-tag-p): Collapse subsequent <p>s.
2825         (shr-ensure-paragraph): Don't insert double line feeds after blank
2826         lines.
2827         (shr-insert): \t is also space.
2828         (shr-tag-s): Fix "s" tag name function.
2829         (shr-tag-s): Fix face prop name.
2830
2831 2010-10-03  Julien Danjou  <julien@danjou.info>
2832
2833         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
2834
2835         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
2836         gnus-window-inside-pixel-edges.
2837
2838         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
2839         gnus-ems.
2840
2841         * mm-view.el (mm-inline-image-emacs): Support image resizing.
2842
2843         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
2844         function.
2845
2846         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
2847         resize choice.
2848
2849 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2850
2851         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
2852         beginning of the buffer.
2853
2854         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
2855         article buffer again.
2856
2857         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
2858
2859         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
2860         when it's at the start of the buffer.
2861
2862         * shr.el (shr-tag-blockquote): Convert name.
2863         (shr-rescale-image): Use the right image-size variant.
2864
2865         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
2866         buffer isn't shown, then select the current article first instead of
2867         bugging out.
2868         (gnus-summary-select-article-buffer): Show both the article and summary
2869         buffers again.
2870
2871         * shr.el (shr-fontize-cont): Protect against regions with no text.
2872         Rename tag functions to shr-tag-* for enhanced security.
2873         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
2874
2875 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
2876
2877         * shr.el (shr-insert):
2878         * pop3.el (pop3-movemail):
2879         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
2880         loaded.
2881
2882 2010-10-03  Glenn Morris  <rgm@gnu.org>
2883
2884         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
2885
2886         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
2887
2888         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
2889
2890         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
2891
2892         * gnus-util.el (gnus-make-local-hook): Simplify.
2893
2894 2010-10-02  Julien Danjou  <julien@danjou.info>
2895
2896         * gnus-util.el (gnus-iswitchb-completing-read): New function.
2897         (gnus-ido-completing-read): New function.
2898         (gnus-emacs-completing-read): New function.
2899         (gnus-completing-read): Use gnus-completing-read-function.
2900         Add gnus-completing-read-function.
2901
2902 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2903
2904         * shr.el (shr-insert-document): Autoload.
2905         (shr-img): Be silent.
2906         (shr-insert): Add a newline after every picture before text.
2907         (shr-add-font): Use overlays for combining faces.
2908         (shr-insert): Pass upwards the text start point.
2909
2910         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
2911         possible.
2912         (mm-shr): New function.
2913
2914 2010-10-02  Julien Danjou  <julien@danjou.info>
2915
2916         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
2917         should go backward.
2918
2919 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
2920
2921         * shr.el (shr): Fix typo in provide call.
2922
2923 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2924
2925         * shr.el: New file.
2926
2927         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
2928
2929         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
2930         completing read.
2931
2932 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2933
2934         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
2935         we're being queried about.  Suggested by Dan Jacobson.
2936
2937         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
2938         Suggested by Jason Eisner.
2939
2940         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
2941         table, too.  Suggested by Stefan Wiens.
2942         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
2943         the table unnecessary.  Suggested by Stefan Wiens.
2944
2945         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
2946         longer needed, and probably doesn't work either, as pointed out by
2947         Stefan Wiens.
2948         (gnus-summary-exit): Remove call to the clearing function.
2949         (gnus-summary-exit-no-update): Ditto.
2950
2951         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
2952         instead of gnus-eval-in-buffer-window to avoid popping up frames.
2953         Reported by Stefan Monnier.
2954         (gnus-summary-save-in-rmail): Ditto.
2955
2956         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
2957         article buffer, instead of both the article buffer and the summary
2958         buffer.  Sort of suggested by Dan Jacobson.
2959
2960         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
2961
2962         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
2963         Suggested by Dan Jacobson.
2964
2965         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
2966         documentation clearer.
2967
2968         * message.el (message-shorten-references): Comment on the number "21".
2969         Suggested by Stefan Monnier.
2970
2971         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
2972         Suggested by Dan Jacobson.
2973
2974         * gnus.el (gnus-large-newsgroup):
2975         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
2976
2977         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
2978         externalize attachments.  Bug reported by Steve Wen.
2979
2980         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
2981         really message anything to the user.
2982
2983         * nnmail.el (nnmail-article-group): Allow using the fancy split method
2984         directly.
2985
2986         * nnimap.el (nnimap-request-group): Low higher than high to signal no
2987         messages in empty groups.
2988
2989 2010-10-01  Ted Zlatanov  <tzz@lifelogs.com>
2990
2991         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
2992         non-UIDNEXT group.
2993
2994 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2995
2996         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
2997         not the value from the collection.
2998
2999         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
3000         values.  This sometimes happens on some groups that have no info.
3001         (nnimap-request-newgroups): New function.
3002
3003 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
3004
3005         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
3006         check into `gnus-registry-initialize'.
3007         (gnus-registry-initialize): Ditto.
3008         Fix and extend header docs.
3009
3010 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3011
3012         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
3013         regexp backtrace overflows.
3014
3015         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
3016         for starttls that tls.el implements; i.e. openssl.
3017
3018         * tls.el (tls-starttls-switches): Give up on using starttls with
3019         gnutls-cli.
3020         (tls-program): Add --insecure to be consistent with the defaults from
3021         openssl s_client.  Now all three commands are insecure.
3022
3023 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3024
3025         * lpath.el: Bind completion-styles-alist for XEmacs.
3026
3027         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
3028         (gravatar-create-image): New function that's an alias to
3029         gnus-xmas-create-image, gnus-create-image, or create-image.
3030         (gravatar-data->image): Use it.
3031
3032 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
3033
3034         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
3035         install the nnregistry refer method.
3036         (gnus-registry-install-hooks): Use it.
3037         (gnus-registry-unfollowed-groups): Add nnmairix to the default
3038         unfollowed groups.
3039
3040 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
3041
3042         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
3043         expanding threads.
3044
3045 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3046
3047         * nnir.el: Use the server names without suffixes (bug #7009).
3048
3049         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
3050         unencrypted to STARTTLS, if possible.
3051
3052 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
3053
3054         * message.el (message-ignored-supersedes-headers): Strip Injection-*
3055         headers before superseding.
3056
3057 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3058
3059         * nnrss.el (nnrss-use-local): Add documentation.
3060
3061         * nnimap.el (nnimap-extend-tls-programs): New function.
3062         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
3063         (nnimap-wait-for-connection): Accept the greeting from the stupid
3064         output from openssl s_client -starttls, too.
3065
3066         * tls.el (tls-starttls-switches): New variable.
3067         (tls-find-starttls-argument): Use it.
3068         (open-tls-stream): Ditto.
3069
3070         * netrc.el (netrc-credentials): Return the value of the "default" entry.
3071         (netrc-machine): Ditto.
3072
3073         * nnimap.el (nnimap-find-article-by-message-id): Really return the
3074         article number.
3075         (nnimap-split-fancy): New variable.
3076         (nnimap-split-incoming-mail): Use it.
3077
3078         * nntp.el (nntp-server-list-active-group): Document.
3079
3080         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
3081         SELECT to get the message-id.
3082
3083         * mail-source.el (mail-sources): Remove webmail support.
3084         (defvar): Ditto.
3085         (mail-source-fetcher-alist): Ditto.
3086         (mail-source-fetch-webmail): Remove.
3087
3088         * webmail.el: Remove -- doesn't seem relevant any more.
3089
3090         * gnus.el: Fix up make-obsolete-variable declarations throughout.
3091
3092         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
3093         the \r.
3094
3095 2010-09-30  Julien Danjou  <julien@danjou.info>
3096
3097         * gnus-agent.el (gnus-agent-add-group): Fix call to
3098         gnus-completing-read.
3099
3100 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3101
3102         * nndoc.el (nndoc-retrieve-groups): New function.
3103
3104         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
3105         `default', use nnmail-split-methods.
3106         (nnimap-request-article): Downcase the NILs so that they are nil.
3107
3108         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
3109         symbol.
3110
3111         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
3112         code, since if the user has requested network, that's what they ought
3113         to get.
3114         (nnimap-request-set-mark): Erase the buffer before issuing commands.
3115         (nnimap-split-rule): Mark as obsolete.
3116
3117         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
3118         New variable.
3119
3120         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
3121         correct slot, too.
3122
3123 2010-09-29  Julien Danjou  <julien@danjou.info>
3124
3125         * gnus.el (gnus-local-domain): Declare variable obsolete.
3126
3127         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
3128         Fix history computing.
3129         (gnus-ido-completing-read): Require ido.
3130
3131 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3132
3133         * gnus-registry.el: Don't prompt on load, which makes it impossible to
3134         build Gnus.
3135
3136         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
3137         when interpreting the structures.
3138         (nnimap-request-accept-article): Add \r\n to the lines to make this
3139         work with Cyrus.
3140
3141         * nndraft.el (nndraft-request-expire-articles): Use the group name
3142         instead if "nndraft".  Fix found by Nils Ackermann.
3143
3144 2010-09-29  Ludovic Courtes  <ludo@gnu.org>
3145
3146         * nnregistry.el: Add.
3147
3148 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3149
3150         * nnmail.el (group, group-art-list, group-art):
3151         Remove unneeded directives.
3152
3153 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
3154
3155         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
3156         (mm-mime-charset)
3157         * rfc2047.el (rfc2047-syntax-table)
3158         * utf7.el (utf7-utf-16-coding-system): Comment fix.
3159
3160         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
3161         rather than `insert-file-contents' and `eval-region'.
3162
3163         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
3164         construction.
3165
3166         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
3167
3168         * time-date.el: No need to require cl for Emacs 21.
3169
3170 2010-09-29  Julien Danjou  <julien@danjou.info>
3171
3172         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
3173         replacement of `gnus-gravatar-relief' to mimic
3174         `gnus-faces-properties-alist'.
3175         Add :version property.
3176
3177 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
3178
3179         * mail-source.el (mail-source-report-new-mail)
3180         * message.el (message-default-mail-headers)
3181         * mm-decode.el (mm-valid-image-format-p): Comment fix.
3182
3183         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
3184
3185 2010-09-28  Julien Danjou  <julien@danjou.info>
3186
3187         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
3188         mail-address contains the same string as real-name.
3189
3190         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
3191         non-blank in header, otherwise it'll get stripped.
3192
3193         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
3194         real-name, and then for mail address rather than doing : or , search.
3195
3196 2010-09-27  Julien Danjou  <julien@danjou.info>
3197
3198         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
3199         right completing-read function.
3200         (gnus-use-ido): New variable
3201         (gnus-completing-read-with-default): Remove.
3202         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
3203         (gnus-agent-add-group):
3204         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
3205         * mm-view.el (mm-view-pkcs7-decrypt):
3206         * mm-util.el (mm-codepage-setup):
3207         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
3208         * mml-smime.el (mml-smime-openssl-sign-query):
3209         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
3210         (mml-insert-multipart):
3211         * gnus-msg.el (gnus-summary-yank-message):
3212         * gnus-int.el (gnus-start-news-server):
3213         * mm-decode.el (mm-interactively-view-part):
3214         * gnus-dired.el (gnus-dired-attach):
3215         * gnus.el (gnus-read-method):
3216         * gnus-bookmark.el (gnus-bookmark-jump):
3217         * gnus-art.el (gnus-mime-view-part-as-type)
3218         (gnus-mime-action-on-part, gnus-article-encrypt-body):
3219         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
3220         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
3221         * nnmairix.el (nnmairix-create-server-and-default-group)
3222         (nnmairix-update-groups, nnmairix-get-server)
3223         (nnmairix-backend-to-server, nnmairix-goto-original-article)
3224         (nnmairix-get-group-from-file-path):
3225         * nnrss.el (nnrss-find-rss-via-syndic8):
3226         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
3227         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
3228         (gnus-group-browse-foreign-server):
3229         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
3230         (gnus-summary-execute-command, gnus-summary-respool-article)
3231         (gnus-read-move-group-name):
3232         * gnus-score.el (gnus-summary-increase-score)
3233         (gnus-summary-score-effect):
3234         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
3235
3236 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
3237
3238         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
3239         x-focus-frame.
3240
3241         * nnimap.el (auth-source-forget-user-or-password)
3242         (auth-source-user-or-password): Autoload.
3243
3244         * message.el (message-from-style, message-interactive)
3245         (message-cite-prefix-regexp, message-sendmail-envelope-from)
3246         (message-yank-prefix, message-indentation-spaces, message-signature)
3247         (message-signature-file): Add comment.
3248
3249 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3250
3251         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
3252         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
3253         new articles.
3254
3255         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
3256         parts.
3257         (nnimap-request-article): Work with the t setting, too.
3258
3259         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
3260         that you don't get flashes of other buffers.
3261         (gnus-summary-show-complete-article): Intern before setting.
3262
3263 2010-09-27  David Engster  <dengste@eml.cc>
3264
3265         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
3266         well as HEADERS.
3267         (nnmairix-retrieve-headers): Provide new argument for the above.
3268
3269 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3270
3271         * gnus-sum.el (gnus-summary-move-article): Don't alter
3272         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
3273         group.
3274
3275         * nnimap.el (nnimap-update-info): Don't destructively alter active.
3276
3277         * message.el (message-cite-prefix-regexp): Revert my last edit.
3278
3279         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
3280         variable instead of the Gnus variable.
3281
3282         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
3283
3284         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
3285
3286         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
3287         since some servers don't like it.
3288         (nnimap-open-connection): Forget credentials if the server says the
3289         password was wrong.
3290         (nnimap-parse-line): Protect against invalid data.
3291
3292         * gnus-sum.el (gnus-summary-move-article): Add comment.
3293         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
3294         nothing alters it while scanning for new messages.
3295
3296         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
3297         which may or may not help.
3298         (nnimap-open-connection): If we're doing a stream connection, and then
3299         discover we're on a STARTTLS-capable server, then open a STARTTLS
3300         connection instead.
3301
3302 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3303
3304         * nnimap.el (utf7): Require.
3305
3306         * message.el (message-cite-prefix-regexp): Remove "}" from citation
3307         prefix.
3308
3309 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
3310
3311         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
3312
3313 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3314
3315         * nnimap.el (nnimap-request-accept-article): Message the error on
3316         error.
3317
3318 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3319
3320         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
3321
3322 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3323
3324         * nndoc.el (nndoc-request-list): Return success always.
3325
3326         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
3327         `fetch-old' -- we only want to fetch the articles we've requested.
3328         The rest are in the agent, probably.
3329         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
3330         disappeared server" to something low.  It's not important.
3331
3332         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
3333         arrived before the FETCH data.
3334
3335         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
3336         target here, because we don't know the Gnus name of the group.
3337
3338         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
3339         for the correct group.
3340
3341         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
3342
3343         * gnus.el (gnus): Give a final warning after startup.
3344
3345         * gnus-util.el (gnus-action-message-log): New variable.
3346         (gnus-message): Use it.
3347         (gnus-final-warning): New function.
3348
3349         * nnimap.el (nnimap-open-connection): Record the greeting.
3350         (nnimap): Add greeting.
3351
3352 2010-09-26  Julien Danjou  <julien@danjou.info>
3353
3354         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
3355         arguments.
3356         (gnus-html-wash-images): Fix spec computing to include start/end.
3357
3358         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
3359
3360 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3361
3362         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
3363         deletion.
3364         (nnimap-retrieve-headers): Don't select the group, because that's
3365         already done by nnimap-possibly-change-group.
3366
3367         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
3368         (gnus-picon-transform-address): Use it.
3369
3370         * mail-source.el (mail-source-value): Revert previous patch.
3371
3372         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
3373         on failure.
3374         (nnimap-open-connection): Look up both virtual and physical server name
3375         credentials.
3376
3377         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
3378
3379 2009-02-07  Dave Love  <fx@gnu.org>
3380
3381         * tls.el (open-tls-stream): Don't query killing process.
3382
3383 2009-02-08  Dave Love  <fx@gnu.org>
3384
3385         * gnus-win.el (gnus-window-to-buffer-helper)
3386         (gnus-all-windows-visible-p): Function needn't be a symbol.
3387
3388         * mail-source.el (mail-source-value): Function needn't be a symbol.
3389
3390 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3391
3392         * message.el (message-cite-prefix-regexp): Remove } from the cite
3393         prefix.
3394
3395         * gnus-art.el (gnus-treatment-function-alist): Do picons before
3396         highlight again, so that the highlight is correct.
3397
3398         * gnus-picon.el (gnus-picon): Remove again.
3399         (gnus-picon-create-glyph): Set the background XPM colour explicitly.
3400
3401         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
3402         doing the header highlightling, so that the background colour of the
3403         picon is correct.
3404
3405         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
3406         (gnus-picon): Ditto.
3407         (gnus-picon): Reinstate.  The background colour for picons is white.
3408         (gnus-picon-insert-glyph): Make the background white.
3409
3410         * nnml.el (nnml-open-nov): Don't return dead buffers.
3411
3412         * auth-source.el (auth-source-create): Query the user for whether to
3413         store the credentials.
3414
3415         * netrc.el (netrc-store-data): New function.
3416
3417         * auth-source.el (auth-source-user-or-password): Use the existing auth
3418         sources, if any, for creation.
3419
3420         * gnus.el (gnus-group-fast-parameter): Return the last matching
3421         parameter instead of the first matching parameter.
3422
3423 2010-09-26  Julien Danjou  <julien@danjou.info>
3424
3425         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
3426
3427 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3428
3429         * mml2015.el (mml2015-use): Remove gpg support.
3430
3431         * mml1991.el (mml1991-function-alist): Remove gpg function.
3432         (mml1991-gpg-sign): Remove.
3433
3434 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
3435
3436         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
3437         (gnus-browse-unsubscribe-current-group): Document it.
3438         (gnus-browse-unsubscribe-group): Use it.
3439
3440 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3441
3442         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
3443         address to the To list for easier response.
3444
3445         * gnus.el (gnus-play-startup-jingle): Remove.
3446         (gnus-splash): Don't play jingle.
3447         (gnus): Silence gnus-load message.
3448
3449         * gnus-art.el (gnus-treat-play-sounds): Remove.
3450
3451         * gnus.el (gnus-play-jingle): Remove audio support.
3452
3453         * gnus-cus.el (gnus-score-customize): Remove audio reference.
3454
3455         * earcon.el: Remove -- no users.
3456
3457         * gnus-audio.el: Remove -- no users of this package.
3458
3459         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
3460
3461         * gnus-start.el (gnus-setup-news): Remove nocem support.
3462
3463         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
3464
3465         * gnus.el (gnus-use-nocem): Remove.
3466
3467         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
3468         Remove.
3469
3470         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
3471         uses NoCeM any more.
3472
3473         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
3474         (gnus-button-ctan-handler): Ditto.
3475         (gnus-button-handle-ctan-bogus-regexp): Ditto.
3476         (gnus-button-ctan-directory-regexp): Ditto.
3477         (gnus-button-handle-ctan): Ditto.
3478         (gnus-button-tex-level): Ditto.
3479         (gnus-button-alist): Remove CTAN stuff.
3480
3481 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3482
3483         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
3484         nnimap-streaming test.
3485
3486         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
3487         servers twice.
3488
3489         * nnimap.el (nnimap-open-connection): Add more error reporting when
3490         nnimap fails early.
3491
3492         * nnheader.el (nnheader-get-report-string): New function.
3493         (nnheader-get-report): Use it.
3494
3495         * gnus-int.el (gnus-check-server): Say what the error was when opening
3496         failed.
3497
3498         * nnimap.el (nnimap-wait-for-response): Search further when we're not
3499         using streaming.
3500
3501 2010-09-25  Julien Danjou  <julien@danjou.info>
3502
3503         * gnus-html.el (gnus-html-rescale-image): Use our defalias
3504         gnus-window-inside-pixel-edges.
3505
3506 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3507
3508         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
3509
3510         * mm-decode.el (mm-save-part): Allow saving to other directories the
3511         normal Emacs way.
3512
3513         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
3514         Suggested by Jay Berkenbilt.
3515
3516         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
3517         there isn't a single byte.
3518
3519         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
3520         just do it.  It doesn't really seem to matter what the user responds
3521         here, I think, so it's just a confusing question.
3522
3523         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
3524         non-streaming case.
3525
3526         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
3527         (gnus-article-encrypt-body): Use it.
3528
3529         * gnus-sum.el (gnus-summary-show-complete-article): New command and
3530         keystroke.
3531
3532         * nnimap.el (nnimap-find-wanted-parts-1):
3533         Use gnus-fetch-partial-articles.
3534
3535         * gnus-art.el (gnus-fetch-partial-articles): New variable.
3536
3537         * nnimap.el (nnimap-insert-partial-structure): New function.
3538         (nnimap-get-partial-article): New function.
3539         (nnimap-request-article): Use it.
3540         (nnimap-wait-for-response): Return whether the wait was successful.
3541         (nnimap-finish-retrieve-group-infos): Don't do anything if the
3542         retrieval wasn't successful.
3543         (nnimap-retrieve-group-data-early): Allow throttling servers.
3544         (nnimap-streaming): New variable.
3545         (nnimap-fetch-partial-articles): Remove.
3546
3547         * mm-decode.el (mm-with-part): Protect against killed buffers.
3548
3549         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
3550         for prettier summary display.
3551
3552 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
3553
3554         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
3555
3556 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3557
3558         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
3559         apparently third-party libraries depend on it.
3560
3561         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
3562         before starting negotiation.
3563
3564         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
3565         privacy reasons.
3566         (gnus-treat-mail-gravatar): Ditto.
3567
3568         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
3569         buffer when inserting images.  Inserting text into the headers, for
3570         instance, can make them invalid.
3571
3572 2010-09-25  Julien Danjou  <julien@danjou.info>
3573
3574         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
3575         variables.
3576
3577         * nnheader.el: Remove useless variables news-reply-yank-from and
3578         news-reply-yank-message-id.
3579
3580         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
3581         variables.
3582
3583         * mml1991.el: Remove useless mml1991-verbose.
3584
3585         * gnus.el: Remove useless variable gnus-use-generic-from.
3586         Remove obsolete variable gnus-topic-indentation.
3587
3588         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
3589
3590         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
3591
3592         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
3593
3594         * gnus-group.el: Remove useless gnus-group-icon-cache.
3595         Remove useless gnus-ephemeral-group-server.
3596
3597         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
3598
3599         * mml2015.el: Remove useless mml2015-verbose.
3600
3601         * mml-smime.el: Remove useless mml-smime-verbose.
3602
3603         * gnus.el: Remove useless gnus-local-domain.
3604
3605         * gnus-gravatar.el (gnus-gravatar-transform-address):
3606         Use gnus-gravatar-size.
3607
3608         * gnus-art.el: Remove useless gnus-treat-translate.
3609
3610 2010-09-24  Julien Danjou  <julien@danjou.info>
3611
3612         * gnus-sum.el: Add support for Gravatars.
3613
3614         * gnus-art.el: Add support for Gravatars.
3615
3616         * gnus-gravatar.el: Add this file.
3617
3618         * gravatar.el: Add this file.
3619
3620 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3621
3622         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
3623
3624         * gnus-group.el (gnus-group-fetch-faq): Remove.
3625
3626         * gnus.el (gnus-group-faq-directory): Remove.
3627
3628         * gnus-group.el (gnus-group-fetch-charter): Remove.
3629
3630         * gnus.el (gnus-group-charter-alist): Remove.
3631
3632         * gnus-group.el (gnus-group-archive-directory): Remove.
3633         (gnus-group-recent-archive-directory): Ditto.
3634         (gnus-group-make-archive-group): Remove.
3635
3636         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
3637
3638         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
3639         use the same article number for all the cached articles.
3640
3641         * nnimap.el (nnimap-command): Register the last command time so
3642         that we can use it for idling NOOPs.
3643         (nnimap-open-connection): Start the keeplive timer.
3644         (nnimap-make-process-buffer): Store all the process buffers.
3645         (nnimap-keepalive): New function.
3646
3647         * starttls.el (starttls-open-stream): Add autoload cookie.
3648
3649 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
3650
3651         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
3652         handling.
3653
3654 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3655
3656         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
3657         its data structures.
3658
3659         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
3660         instead of the cl.el copy-list.
3661         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
3662         equalp.
3663
3664 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
3665
3666         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
3667         and tool-bar-local-item-from-menu.
3668
3669         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
3670         mode-line-highlight face for Emacs.
3671
3672         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
3673         loading gnus-sum.elc; fix comment for canlock-verify.
3674         (gnus-article-jump-to-part): Use read-number.
3675         (gnus-insert-mime-button, gnus-insert-mime-security-button):
3676         Remove Emacs pre-21 compatible code for help-echo.
3677         (gnus-article-next-page-1): No need to adjust the number of lines.
3678         (gnus-article-describe-bindings): Always use help-buffer.
3679
3680         * gnus-audio.el (gnus-audio-inline-sound)
3681         * gnus-cus.el (gnus-custom-mode)
3682         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
3683
3684         * gnus-sum.el (gnus-remove-overlays): Doc fix.
3685
3686         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
3687         compatible code.
3688
3689 2010-09-24  Glenn Morris  <rgm@gnu.org>
3690
3691         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
3692         visiting the fcc file in rmail-mode.
3693
3694         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
3695
3696 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
3697
3698         * nnir.el: Silence the byte compiler.
3699
3700         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
3701         alias to browse-url-url-encode-chars if any.
3702         (gnus-html-encode-url): Use it.
3703
3704 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3705
3706         * gnus-start.el (gnus-use-backend-marks): New variable.
3707         (gnus-get-unread-articles-in-group): Use it.
3708
3709         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
3710         makeover.
3711
3712 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
3713
3714         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
3715
3716 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3717
3718         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
3719         Remove.
3720         (gnus-setup-news-hook):
3721         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
3722
3723         * gnus-int.el (gnus-request-update-info): Protect against backends not
3724         having the function.
3725
3726         * nnimap.el (nnimap-stream): Mention starttls.
3727         (nnimap-open-connection): Add starttls support.
3728
3729 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
3730
3731         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
3732
3733 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3734
3735         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
3736         BODYSTRUCTUREs.
3737         (nnimap-transform-headers): Unfold quoted {42} headers.
3738
3739         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
3740         the info.
3741         (gnus-get-unread-articles): Only call updatep on backends that support
3742         it.
3743
3744         * nnweb.el (nnweb-request-update-info): NOOP.
3745
3746         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
3747
3748         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
3749         since it only deals with marks.
3750
3751         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
3752         gnus-request-marks, and make a new gnus-request-update-info.
3753
3754         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
3755         the active instead of the high number, which is usually too low.
3756
3757 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
3758
3759         * netrc.el (netrc-parse): Remove encrypt.el mentions.
3760         * encrypt.el: Remove.
3761
3762 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3763
3764         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
3765         server in symbolic form.
3766
3767         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
3768
3769 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3770
3771         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
3772         (nnimap-update-info): Fix up code slightly.
3773
3774         * gnus-int.el (gnus-open-server): Add tracing for performance
3775         debugging.
3776
3777         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
3778         (gnus-group-insert-group-line): Pass the real group name so that it
3779         gets the right data.
3780
3781         * gnus-start.el (gnus-get-unread-articles): Don't have
3782         `gnus-get-unread-articles-in-group' update info, since that can be
3783         really slow and doesn't seem to be needed?
3784
3785 2010-09-22  Dan Christensen  <jdc@uwo.ca>
3786
3787         * time-date.el (date-to-time): Try using parse-time-string first before
3788         using the slower timezone-make-date-arpa-standard.
3789
3790 2010-09-22  Julien Danjou  <julien@danjou.info>
3791
3792         * gnus-group.el (gnus-group-insert-group-line):
3793         Call gnus-group-highlight-line.
3794         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
3795         default hook list.
3796         (gnus-group-update-eval-form): Add new function.
3797         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
3798         (gnus-group-get-icon): Use gnus-group-update-eval-form.
3799
3800 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3801
3802         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
3803         immediate, then expire all articles.
3804         (nnimap-update-info): Fix off-by-one errors.
3805         (nnimap-flags-to-marks): Would return no marks lists for group with no
3806         flags.  Instead return the other data.
3807
3808 2010-09-22  Julien Danjou  <julien@danjou.info>
3809
3810         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
3811         Only return an icon.
3812         (gnus-group-insert-group-line): Compute icon to return.
3813
3814         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
3815         (gnus-html-image-fetched): Only cache if
3816         gnus-html-image-automatic-caching is set.
3817         (gnus-html-image-fetched): Check for errors.
3818
3819 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3820
3821         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
3822         once per method on `g'.  This ensures that backends like nnfolder don't
3823         open all their folders.
3824
3825         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
3826         (nnimap-request-list): Nix out group in the correct buffer.
3827         (nnimap-parse-flags): Implement by using `read' instead of
3828         hand-parsing.
3829         (nnimap-flags-to-marks): Pass on permanent-flags.
3830         (nnimap-make-process-buffer): Record the server name.
3831         (nnimap-parse-flags): Fix typo.
3832         (nnimap-request-scan): Run split on the server in general, not just a
3833         single group.
3834
3835         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
3836         parameter, and propagate this downwards.
3837
3838         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
3839         since EXAMINE changes it on the server.
3840
3841         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
3842         this command might take a while.
3843
3844 2010-09-22  Julien Danjou  <julien@danjou.info>
3845
3846         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
3847         harmful if you have 2 images side-by-side, they can't be properly
3848         update on text deletion.  Using text-property is safer here.
3849         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
3850         data.
3851
3852 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3853
3854         * nnimap.el (nnimap-expunge-inbox): Remove.
3855         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
3856         (nnimap-expunge): Flip default to t.
3857
3858         * gnus.el (gnus-method-to-server): Don't push things to the cache
3859         unless it's unique.
3860         (gnus-server-to-method): Ditto.
3861
3862 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
3863
3864         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
3865
3866 2010-09-22  Julien Danjou  <julien@danjou.info>
3867
3868         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
3869         get the start of data.
3870         (gnus-html-encode-url): Add this function to encode special chars in
3871         URL.
3872         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
3873         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
3874
3875         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
3876         default.
3877         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
3878
3879         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
3880         images alt-text.
3881         (gnus-html-put-image): Put alt-text as help-echo.
3882
3883 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
3884
3885         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes)
3886         * mm-util.el (mm-decompress-buffer)
3887         * nnir.el (nnir-run-find-grep)
3888         * pop3.el (pop3-list): Use 3rd arg of split-string.
3889
3890         * time-date.el (format-seconds): Comment fix.
3891
3892         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
3893         and byte-optimize-form-code-walker.
3894         (dgnushack-make-auto-load): Don't advise make-autoload.
3895
3896         * lpath.el: Remove Emacs 21 stuff.
3897
3898 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3899
3900         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
3901         outside the active range.  Suggested by Dan Christensen.
3902
3903         * gnus-start.el (gnus-get-unread-articles): Get the extended method
3904         slightly later to avoid double-getting it.
3905
3906         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
3907         previous patch.
3908
3909         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
3910
3911 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
3912
3913         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
3914
3915 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3916
3917         * gnus-int.el (gnus-open-server): Give a better error message in the
3918         "go offline" case.
3919
3920         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
3921         marks for nnimap, which is seldom the right thing to do.
3922
3923         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
3924         (gnus-same-method-different-name): New function.
3925
3926         * nnimap.el (parse-time): Require.
3927
3928         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
3929         method in the presence of many similar methods.
3930
3931         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
3932
3933         * nnimap.el (nnimap-find-expired-articles): Don't refer to
3934         nnml-inhibit-expiry.
3935
3936         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
3937         find out whether methods are equal.
3938
3939         * nnimap.el (nnimap-find-expired-articles): New function.
3940         (nnimap-process-expiry-targets): New function.
3941         (nnimap-request-move-article): Request the article before looking at
3942         what the Message-ID is.  Fix found by Andrew Cohen.
3943         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
3944
3945         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
3946         for oldness in addition to being a predicate.
3947
3948         * nnimap.el (nnimap-request-group): When we have zero articles, return
3949         the right data to Gnus.
3950         (nnimap-request-expire-articles): Only delete articles immediately if
3951         the target is 'delete.
3952
3953         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
3954         method, this would bug out.
3955
3956         * gnus-group.el (gnus-group-expunge-group): Rename from
3957         gnus-group-nnimap-expunge, and implemented as a normal interface
3958         function.
3959
3960         * gnus-int.el (gnus-request-expunge-group): New function.
3961
3962         * nnimap.el (nnimap-request-create-group): Implement.
3963         (nnimap-request-expunge-group): New function.
3964
3965 2010-09-21  Julien Danjou  <julien@danjou.info>
3966
3967         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
3968         (gnus-html-cache-expired): Add new function.
3969         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
3970         wethever we should display image for fetch it.
3971         Compute alt-text earlier to pass it to the fetching function too.
3972         (gnus-html-schedule-image-fetching): Change function argument to only
3973         get one image at a time, not a list.
3974         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
3975         cache.
3976         (gnus-html-get-image-data): New function to retrieve image data from
3977         cache.
3978         (gnus-html-put-image): Change buffer argument to use image data rather
3979         than file, and place image above region rather than inserting a new
3980         one.  Do not take alt-text as argument, since it's useless now: we place
3981         the image above alt-text.
3982         (gnus-html-prune-cache): Remove.
3983         (gnus-html-show-images): Start to fetch image when we find one, do not
3984         push into a temporary list.
3985         (gnus-html-prefetch-images): Only fetch image if they have expired.
3986         (gnus-html-browse-image): Fix, use 'gnus-image-url.
3987         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
3988
3989 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3990
3991         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
3992
3993 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3994
3995         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
3996         spec inser "*" if the group isn't active instead of 0.
3997
3998         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
3999         opening the server.
4000         (nnimap-request-delete-group): Implement group deletion.
4001         (nnimap-transform-headers): Return the size of the entire message in
4002         the Bytes header, not just the size of the first part.
4003         (nnimap-request-move-article): When moving an article from nnimap,
4004         request the article first so the accepting form has an article to
4005         accept.  Reported by Dan Christensen.
4006         (nnimap-command): Make sure that the error message doesn't error out.
4007
4008 2010-09-20  David Edmondson  <dme@dme.org>  (tiny change)
4009
4010         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
4011         we haven't requested anything.
4012
4013 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4014
4015         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
4016         "".  Fix found by Andrew Cohen.
4017
4018         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
4019         instead of -encode-string.
4020
4021 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4022
4023         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
4024
4025         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
4026         by mm-subst-char-in-string.
4027
4028 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4029
4030         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
4031         waiting for the connection string.
4032
4033         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
4034         arriving.
4035
4036         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
4037         bogus characters.  This allows selecting certain Gmail groups.
4038
4039         * nnimap.el (nnimap-find-wanted-parts-1): New function.
4040         (nnimap-fetch-partial-articles): New variable.
4041         (nnimap-open-connection): When looking for credentials, also use the
4042         nnimap-server-port.
4043         (nnimap-request-article): Return the group/article number, so that Gnus
4044         `^' works as expected.
4045         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
4046
4047         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
4048         comments.
4049         (gnus-methods-sloppily-equal): New function.
4050         (gnus): When using the development version of Gnus, load the gnus-load
4051         file.
4052
4053         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
4054         `gnus-open-server' on each method before trying to scan them etc.
4055         This ensures that all the backend parameters are set correctly.
4056
4057         * nnimap.el (nnimap-authenticator): New variable.
4058         (nnimap-open-connection): Allow anonymous login.
4059         (nnimap-transform-headers): The chars header is called Chars not Bytes.
4060         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
4061
4062         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
4063         patch, found by Knut Anders Hatlen.
4064
4065 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
4066
4067         * gnus-agent.el (gnus-agent-batch-confirmation)
4068         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
4069         to gnus-message.
4070         * gnus-art.el (gnus-article-describe-briefly): Likewise.
4071         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
4072         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
4073         * gnus-int.el (gnus-open-server): Likewise.
4074         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
4075         (gnus-score-check-syntax): Likewise.
4076         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
4077         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
4078         Likewise.
4079         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
4080
4081 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4082
4083         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
4084         calling conventions so that prefetch doesn't bug out.
4085
4086 2010-09-19  Julien Danjou  <julien@danjou.info>
4087
4088         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
4089         rather than `subst-char-in-region' in order to be able to replace ASCII
4090         char by UTF-8 ones.
4091
4092         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
4093         than curl.
4094         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
4095         the right URL and ALT text on images.
4096         (gnus-html-wash-tags): Fix tag case.
4097         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
4098         (gnus-article-html): Add -o display_ins_del=2 option.
4099         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
4100
4101 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4102
4103         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
4104         the extra mail headers, which sometimes seem to happen for unknown
4105         reasons.
4106
4107         * mail-parse.el (mail-header-encode-parameter): Define as
4108         rfc2045-encode-string instead of as rfc2231-encode-string, since some
4109         (or most, perhaps?) mail readers don't understand the latter, but do
4110         understand the former.
4111
4112         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
4113         to nil, so that no methods are automatically agentized.  I think this
4114         is probably what most users want.
4115
4116         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
4117         from url-retrieve, for instance about invalid URLs.
4118
4119         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
4120         groups that have no articles.
4121         (nnimap-request-article): Check that we really got an article when we
4122         requested one.
4123
4124         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
4125         doesn't exist.
4126
4127         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
4128         nntp buffer so the agent can save it.
4129         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
4130         that CRLF doesn't get translated to \n.
4131         (nnimap-open-connection): Don't make 'shell commands only send \n.
4132
4133 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4134
4135         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
4136         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
4137         Update var name.
4138         (nnml-generate-nov-file): Use dolist.
4139         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
4140         Use with-current-buffer.
4141
4142 2010-09-18  Julien Danjou  <julien@danjou.info>
4143
4144         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
4145         parallel.
4146
4147 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4148
4149         * nnimap.el (nnimap-update-info): When doing partial marks update, get
4150         the range update right.
4151         (nnimap-request-group): Don't make `M-g' bug out on group with no
4152         marks.
4153         (nnoo): Require, so that other packages can require nnimap.
4154         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
4155         command we're looking for.  This helps when the server sends more
4156         responses after we've gotten everything we expected.
4157         (nnimap): Add a `newlinep' field to keep track of end-of-line
4158         conventions.
4159         Don't send CRLF to things that don't want it.
4160         (nnimap-request-accept-article): Ditto.
4161
4162 2010-09-18  Julien Danjou  <julien@danjou.info>
4163
4164         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
4165         than curl to retrieve images.
4166
4167 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4168
4169         * nnimap.el (nnimap-update-info): Extend the info so that we can set
4170         the marks.
4171         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
4172         (nnimap-wait-for-connection): New function.
4173         (nnimap-open-connection): If we have PREAUTH, don't query for login
4174         credentials.
4175         (nnimap-update-info): Fix off-by-one error when concatenating ranges
4176         when doing a partial update.
4177
4178 2010-09-18  Julien Danjou  <julien@danjou.info>
4179
4180         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
4181         tags.
4182
4183 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4184
4185         * nnimap.el (nnimap-credentials): New function.
4186         (nnimap-open-connection): Use the new function to look for credentials
4187         also on the numeric equivalents of "imap" and "imaps".
4188
4189         * gnus-start.el (gnus-activate-group): Send the info to
4190         gnus-request-group.
4191
4192         * nnimap.el (nnimap-request-group): Have the "check" version of the
4193         function parse flags and update the info, so that a `M-g' get a total
4194         resync of all flags from the group.
4195
4196         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
4197         to allow backends to alter the info on group selection.  Also alter all
4198         the backend -request-group functions to take the parameter.
4199
4200         * nnimap.el (nnimap-store-info): New function.
4201         (nnimap-update-info): Store the info for later usage.
4202         (nnimap-request-group): Use the stored info for the dont-check case, so
4203         that we don't retrieve all marks when we enter a group.
4204
4205         * nnimap.el: Use deffoo instead of defun for interface functions.
4206
4207         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
4208         update the group info.  This makes the nndraft groups, for instance, go
4209         back to their old behaviour.
4210
4211         * gnus-sum.el (gnus-select-newsgroup): Indent.
4212
4213         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
4214         in.
4215         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
4216         nothing.
4217
4218         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
4219         from methods that are denied.
4220
4221         * gnus-int.el (gnus-method-denied-p): New function.
4222
4223         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
4224         store the password instead of netrc.
4225         (nnimap-open-connection): Don't error out when we can't make a
4226         connections.
4227
4228         * auth-source.el (auth-source-create): In the password prompt, say what
4229         we're querying for.  Also prompt for user name if that hasn't been
4230         given.
4231
4232         * nnimap.el (nnimap-with-process-buffer): Remove.
4233
4234 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4235
4236         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
4237         method when we're reading from the agent.
4238
4239         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
4240
4241         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
4242         that's probably most useful for users.
4243
4244         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
4245         "failed" all the time.
4246
4247         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
4248         ...)) with (with-current-buffer ... ).
4249
4250         * nntp.el (nntp-open-server): Return whether the open was successful or
4251         not.
4252
4253         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
4254         select an unread unseen article first.
4255
4256         * nnimap.el (nnimap-open-connection): If the user doesn't have a
4257         /etc/services, supply some sensible port defaults.
4258
4259         * dgnushack.el: Define netrc-credentials.
4260
4261 2010-09-17  Julien Danjou  <julien@danjou.info>
4262
4263         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
4264
4265 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
4266
4267         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
4268         doesn't have any parameters.
4269
4270 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4271
4272         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
4273         only upcased checks.
4274
4275         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
4276
4277         * nnimap.el (nnimap-open-shell-stream): New function.
4278         (nnimap-open-connection): Use it.
4279         (nnimap-transform-headers): Get the number of lines in each message.
4280         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
4281         number of lines.
4282         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
4283         problem.
4284
4285         * utf7.el (utf7-encode): Autoload.
4286
4287         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
4288         to allow the mail splitting to not return a default group.  This is
4289         useful for nnimap, which will leave unmatched mail in the inbox.
4290
4291         * nnimap.el: Rewritten.
4292
4293         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
4294         nnimap usage.
4295
4296         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
4297         if the move is internal, so that nnimap can do fast internal moves.
4298
4299         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
4300         data.
4301         (gnus-read-active-for-groups): Support finishing the early retrieval of
4302         data.
4303
4304         * gnus-range.el (gnus-range-nconcat): New function.
4305
4306         * gnus-int.el (gnus-finish-retrieve-group-infos)
4307         (gnus-retrieve-group-data-early): New functions.
4308
4309 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4310
4311         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
4312         (nnrss-retrieve-groups):
4313         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
4314         (pop3-quit): Use with-current-buffer.
4315
4316 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4317
4318         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
4319         instead of nnheader-accept-process-output.
4320
4321         * dgnushack.el (dgnushack-compile): Add comment.
4322
4323         * lpath.el: No need to fbind propertize for XEmacs 21.4.
4324
4325         * gnus-html.el (gnus-html-schedule-image-fetching)
4326         (gnus-html-prefetch-images): Replace process-kill-without-query by
4327         gnus-set-process-query-on-exit-flag.
4328
4329 2010-09-16  Romain Francoise  <romain@orebokech.com>
4330
4331         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
4332
4333 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4334
4335         * gnus-registry.el (gnus-registry-install-shortcuts): The second
4336         parameter to unintern is mandatory-ish in Emacs 24.
4337
4338         * gnus-html.el (gnus-html-schedule-image-fetching)
4339         (gnus-html-prefetch-images): Check for curl before using it.
4340
4341         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
4342         depend on curl, which isn't essential.
4343
4344         * imap.el: Revert back to version
4345         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
4346         seem problematic.
4347
4348 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
4349
4350         * gnus-registry.el (gnus-registry-install-shortcuts):
4351         Explicitly pass `obarray' to `unintern' to avoid a warning.
4352
4353 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4354
4355         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
4356         change.
4357
4358         * nnrss.el (nnrss-request-list): Remove this function and related
4359         functions, including the moreover stuff.
4360
4361 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4362
4363         * nnrss.el (nnrss-retrieve-groups): New function.
4364
4365 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
4366
4367         * .dir-locals.el: Add no-byte-compile cookie.
4368
4369 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4370
4371         * time-date.el (format-seconds): Comment fix.
4372
4373         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
4374         for back end that doesn't support request-scan.
4375
4376 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4377
4378         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
4379         then do request scans from the backends.
4380
4381         * netrc.el (netrc-credentials): New conveniency function.
4382
4383         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
4384         avoid running a hook per line, since this takes a lot of time,
4385         profiling shows.
4386         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
4387         directly if gnus-visual-p is true.
4388
4389 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4390
4391         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
4392         groups; replace mapcar with dolist which is a bit faster; pass groups
4393         info to gnus-read-active-file-1.
4394         (gnus-read-active-file-1): Scan only specified groups if the new
4395         optional arg `infos' is given.
4396
4397 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4398
4399         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
4400
4401         * pop3.el (pop3-movemail): Remove.
4402         (pop3-streaming-movemail): Rename to pop3-movemail.
4403
4404         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
4405         don't restrict end-tag searches to the end of the line.
4406
4407 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4408
4409         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
4410         articles of every unchecked group to t, which means unknown since the
4411         server has never been opened.
4412
4413 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4414
4415         * gnus-html.el (gnus-html-show-alt-text): New command.
4416         (gnus-html-browse-image): Ditto.
4417         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
4418         to browse the image directly.
4419         (gnus-html-wash-tags): Search for images first, so that <a><img> works
4420         better.
4421
4422         * gnus-async.el (gnus-async-article-callback):
4423         Call `gnus-html-prefetch-images' unconditionally.
4424
4425         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
4426         before feeding URLs to curl.
4427
4428 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4429
4430         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
4431         internal images as deletable by `W D D'.
4432
4433         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
4434         (gnus-async-article-callback): Fix typo.
4435
4436 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4437
4438         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
4439         current line to work around bugs in the output from w3m.
4440
4441         * gnus-async.el (gnus-async-article-callback): Always prefetch images
4442         for groups that want that.
4443
4444         * nntp.el (nntp-wait-for-string): Supply a timeout for
4445         accept-process-output to ensure progress.
4446
4447         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
4448         level to get unread articles from, then use that for foreign groups,
4449         too.
4450
4451         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
4452         confuses the rest of the function.
4453
4454         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
4455         for the methods that support -retrieve-groups, too.
4456
4457         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
4458
4459 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4460
4461         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
4462         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
4463
4464         * pop3.el: Require cl when compiling.
4465         (pop3-number-of-responses): Search for "+OK", not "+OK ".
4466
4467 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4468
4469         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
4470         that aren't going to be activated.
4471         (gnus-get-unread-articles): Fix up the last commit.
4472
4473         * gnus-html.el (gnus-article-html): Allow calling without specifying
4474         the handle.  In that case, dissect the buffer first.
4475
4476         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
4477
4478         * nnimap.el (nnimap-open-connection): Revert the change that would look
4479         into authinfo for imaps instead of imap.
4480
4481         * gnus-start.el (gnus-activate-group): Take an optional parameter to
4482         say that you don't want to call gnus-request-group with don-check, but
4483         do check the reponse.  This is for virtual groups only.
4484         (gnus-get-unread-articles): Count the archive groups as secondary, so
4485         that they're activated the same way as before.
4486
4487         * imap.el (imap-message-map): Removed optional buffer parameter, since
4488         no callers use it.
4489         (imap-message-get): Ditto.
4490         (imap-message-put): Ditto.
4491         (imap-mailbox-map): Ditto.
4492         (imap-mailbox-put): Ditto.
4493         (imap-mailbox-get): Ditto.
4494         (imap-mailbox-get): Revert last change for this function.
4495
4496         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
4497         case-insensitively.
4498         (nnimap-debug): Remove.
4499
4500         * imap.el (imap-fetch-safe): Removed function, and altered all callers
4501         to use `imap-fetch' instead.  According to the comments, this should be
4502         safe, since all other IMAP clients use the 1:* syntax.
4503         (imap-enable-exchange-bug-workaround): Removed.
4504         (imap-debug): Removed -- doesn't seem very useful.
4505
4506         * mail-source.el (mail-source-fetch): Don't message if we're fetching
4507         mail from a file, and the file doesn't exist.
4508
4509         * imap.el (imap-log): New convenience function used throughout instead
4510         of repeating the same code all over the place.
4511
4512         * pop3.el (pop3-streaming-movemail): Return t for success.
4513
4514         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
4515         .authinfo if we're using ssl connection.
4516
4517         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
4518         already have if we're in a main Gnus `g' run.
4519
4520         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
4521
4522 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4523
4524         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
4525
4526         * nnmh.el (nnmh-request-list-1): Bind `file'.
4527
4528         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
4529         alias to set-process-query-on-exit-flag or process-kill-without-query.
4530         (pop3-open-server): Use it.
4531
4532 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4533
4534         * mail-source.el (mail-source-delete-crash-box): Always move the crash
4535         box to the Incoming file.  Fixes mistake in previous checkin.
4536
4537         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
4538         request loop (for debugging purposes) removed.
4539
4540         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
4541         culprit is more visible.
4542         (nnml-save-incremental-nov, nnml-open-incremental-nov)
4543         (nnml-add-incremental-nov): New functions to do "incremental" nov
4544         updates, where we just append to the end of the existing nov files
4545         without reading/writing them in full.
4546
4547         * mail-source.el (mail-source-delete-crash-box): Really only check the
4548         incoming files once in a while.
4549
4550         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
4551
4552         * mail-source.el (mail-source-delete-crash-box): Only check the
4553         incoming files for deletion once per day to save a lot of file
4554         accesses.
4555
4556         * pop3.el (pop3-logon): Fix up unbound variable typo.
4557
4558         * mail-source.el (pop3-streaming-movemail): Autoload.
4559
4560         * pop3.el (pop3-streaming-movemail):
4561         Respect pop3-leave-mail-on-server.
4562
4563         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
4564         retrieval.
4565
4566         * pop3.el (pop3-process-filter): Remove unused function.
4567         (pop3-streaming-movemail, pop3-send-streaming-command)
4568         (pop3-wait-for-messages, pop3-write-to-file)
4569         (pop3-number-of-responses): New functions for streaming pop3
4570         retrieval.
4571
4572         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
4573         come from no known methods.
4574         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
4575         list.
4576
4577         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
4578         message sizes.
4579         (pop3-movemail): Use erase-buffer instead of looping and deleting
4580         regions, which seems rather odd.
4581
4582         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
4583         file once per `g' run.
4584
4585         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
4586         directories.  This makes the draft queue directory work.
4587
4588         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
4589         data from the backends, so that we only request the list of groups from
4590         each method once.  This should speed things up considerably.
4591
4592         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
4593         detect that it's not implemented.
4594
4595         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
4596         we actually do recurse down into the tree, but don't stat all leaf
4597         nodes.
4598
4599         * gnus-html.el (gnus-html-show-images): If there are no images to show,
4600         then say so instead of bugging out.
4601
4602         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
4603         files exist before trying to read them.
4604
4605         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
4606         around <pre_int>.
4607
4608         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
4609
4610         * nnmh.el (nnmh-request-list-1): Optimize for speed.
4611
4612 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4613
4614         * mm-util.el (mm-image-load-path): Just return the image directories,
4615         not all directories in the path in addition to the image directories.
4616         (mm-image-load-path): Maintain a cache of the image directories so that
4617         the `g' command in Gnus doesn't have to stat dozens of directories each
4618         time.
4619
4620         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
4621         (gnus-html-wash-tags): Add a new `i' command to insert images.
4622         (gnus-html-insert-image): New command and keystroke.
4623         (gnus-html-redisplay-with-images): New command and keystroke.
4624         (gnus-html-show-images): Rename command.
4625         (gnus-html-wash-tags): Remove more white space before <pre_int> image
4626         spacers.
4627         (gnus-html-wash-tags): Decode entities at the end, so that entities
4628         inside the tags don't mess up the rest of the "parsing".
4629
4630         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
4631         so that nnimap methods aren't agentized by default.  There's apparently
4632         many problems related to agent/imap behaviour.
4633
4634         * gnus-art.el (gnus-article-copy-string): New command and key binding.
4635
4636         * gnus-html.el: Doc fix.
4637
4638 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
4639
4640         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
4641         specifier-spec-list for Emacs 21.
4642
4643         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
4644         glyph-width and glyph-height instead of display-graphic-p and
4645         image-size; make avoidance of displaying small images work for XEmacs.
4646
4647         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
4648         for XEmacs.
4649
4650         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
4651         of symbol that holds plist data.
4652         (gnus-process-plist): Remove plist of process after getting it.
4653
4654 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4655
4656         * message.el (message-generate-hashcash): Change default to
4657         'opportunistic if hashcash is installed.
4658
4659         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
4660         (gnus-html-put-image): Only call image-size once, since it's somewhat
4661         time-consuming on remote X servers.
4662
4663 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4664
4665         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
4666         type on data, not a file name.
4667
4668         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
4669         window-pixel-edges for Emacs 21.
4670
4671         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
4672         decoded contents.
4673         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
4674
4675 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4676
4677         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
4678         group line format, since it isn't very interesting.
4679
4680         * gnus-agent.el (gnus-agent-short-article),
4681         (gnus-agent-long-article): Increase values for these two variables,
4682         since most people are likely to have more network connection and
4683         storage than before.
4684
4685         * gnus.el (gnus-refer-article-method): Change default to 'current.
4686         When referring an article, the common behaviour is to refer it from the
4687         current select method, not the native select method.  The chances of
4688         the native select method having the message in question is rather slim
4689         these days.
4690
4691         * gnus-sum.el (gnus-auto-select-subject): Change default to
4692         `unseen-or-unread'.  I think it's likely that most people want to
4693         select an unseen article over a previously seen, but unread one.
4694
4695         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
4696         means that in the article buffer none of the minor mode elements will
4697         be shown, usually, and this is not desirable in most cases.
4698
4699         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
4700         that commands like `d' (and the like) go to the next line in the
4701         buffer, instead of the next unread article.  I think this is the
4702         behaviour that is most natural for most users.
4703         (gnus-single-article-buffer): Change default to nil, so that people can
4704         have as many article buffers open as they have summary buffer.  I think
4705         this is the most natural way for the groups to behave.
4706
4707         * message.el (message-generate-new-buffers): Change default to
4708         `unsent', so that all new message buffers start their names with the
4709         string "*unsent", and it's easier to find the buffers if you move from
4710         them.
4711
4712 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4713
4714         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
4715         small.  They're probably tracking images.
4716         (gnus-html-wash-tags): Remove all <pre_int> place holders.
4717         (gnus-html-rescale-image): Yet another try at getting the image sizing
4718         right.
4719
4720         * nntp.el (nntp-request-set-mark): Refuse to do marks if
4721         nntp-marks-file-name is nil.
4722
4723 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
4724
4725         * gnus-html.el (gnus-html-wash-tags)
4726         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
4727         Better logging.
4728
4729 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4730
4731         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
4732
4733         * gnus-html.el (gnus-html-wash-tags): Check the value of
4734         gnus-blocked-images in the summary buffer.
4735
4736 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
4737
4738         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
4739
4740 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4741
4742         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
4743         like "a", it seems like.
4744         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
4745         since it needs to be picked from the correct buffer.
4746
4747         * nnwfm.el: Remove.
4748
4749         * nnlistserv.el: Remove.
4750
4751 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
4752
4753         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
4754         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
4755
4756 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4757
4758         * nnkiboze.el: Remove.
4759
4760         * nndb.el: Remove.
4761
4762         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
4763         alt text.
4764         (gnus-html-rescale-image): Try to get the rescaling logic right for
4765         images that are just wide and not tall.
4766
4767         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
4768         overshadow variable bindings.
4769
4770 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
4771
4772         * gnus-html.el (gnus-html-wash-tags)
4773         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
4774         Add extra logging.
4775
4776 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4777
4778         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
4779         (gnus-max-image-proportion): New variable.
4780         (gnus-html-rescale-image): New function.
4781         (gnus-html-put-image): Rescale images.
4782
4783 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4784
4785         Fix up some byte-compiler warnings.
4786         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
4787         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
4788         (gnus-article-fill-cited-article, gnus-article-hide-citation)
4789         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
4790         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
4791         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
4792         (gnus-group-update-group): Use save-excursion and with-current-buffer.
4793
4794 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4795
4796         * gnus-html.el (gnus-article-html): Decode contents by charset.
4797
4798 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4799
4800         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
4801         (gnus-html-frame-width, gnus-blocked-images)
4802         * message.el (message-prune-recipient-rules): Add custom version.
4803         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
4804
4805         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
4806         functions.
4807
4808         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
4809         gnus-process-get.
4810
4811 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
4812
4813         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
4814         instead of lsub directly.
4815
4816 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4817
4818         * nnwarchive.el: Remove.
4819
4820         * gnus-soup.el: Remove.
4821
4822         * nnsoup.el: Remove.
4823
4824         * nnultimate.el: Remove.
4825
4826         * gnus-html.el (gnus-blocked-images): New variable.
4827
4828         * message.el (message-prune-recipients): New function.
4829         (message-prune-recipient-rules): New variable.
4830
4831         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
4832         guess whether a long line is natural text or not.
4833
4834         * gnus-html.el (gnus-html-schedule-image-fetching):
4835         Use gnus-process-plist and friends for compatibility.
4836
4837 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
4838
4839         * gnus-html.el: Require packages that define macros used in this file.
4840         (gnus-article-mouse-face): Declare to silence byte-compiler.
4841         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
4842         process-get.
4843         (gnus-html-put-image): Use plist-get to avoid getf.
4844         (gnus-html-prefetch-images): Use with-current-buffer.
4845
4846 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
4847
4848         * gnus-ems.el: Provide compatibility functions for
4849         gnus-set-process-plist.
4850
4851         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
4852         header-line-format for XEmacs 21.4.
4853
4854         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
4855         * gnus.el (gnus-valid-select-methods)
4856         * message.el (message-send-mail-partially-limit)
4857         * mm-decode.el (mm-text-html-renderer)
4858         * mml.el (mml-insert-mime-headers-always)
4859         * smiley.el (smiley-regexp-alist): Bump custom version.
4860
4861 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4862
4863         * gnus-html.el: require mm-url.
4864         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
4865         with the url to `url'.
4866         (gnus-html-wash-tags): Support cid: URLs/images.
4867
4868 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4869
4870         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
4871         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
4872         bindings, as they aren't useful at all.  `w' is moved to `W w'.
4873
4874         * gnus-move.el: Remove file, since it doesn't really work.
4875
4876         * gnus-html.el (gnus-article-html): Tell w3m that the input is
4877         UTF-8.  This seems to fix problems with some German web feeds.
4878
4879         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
4880         at the top so that the proper colours are applied.
4881
4882         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
4883         don't have dots in their names.
4884
4885         * gnus-art.el (gnus-article-view-part): Doc fix.
4886
4887         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
4888         XEmacs-compatible.
4889         (gnus-html-put-image): Don't do images on non-graphic displays.
4890
4891         * nnslashdot.el: Remove this unused backend.
4892
4893         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
4894         actions.
4895         (gnus-undo-register-1): Revert last change.
4896
4897         * gnus-group.el (gnus-group-completing-read): Protect against not
4898         having completion-styles bound.
4899
4900         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
4901         make broken recipients happier.
4902
4903         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
4904
4905         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
4906         point parameter.
4907
4908         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
4909
4910         * gnus-group.el (gnus-group-completing-read): Add 'substring to
4911         completion-styles for group selection.
4912
4913 2009-02-04  Andreas Schwab  <schwab@suse.de>
4914
4915         * gnus-score.el (gnus-score-string): Fix regex for matching extra
4916         headers and regexp-quote the match if necessary.
4917
4918 2009-03-24  Miles Bader  <miles@gnu.org>
4919
4920         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
4921         the blinking smiley.
4922
4923 2009-03-24  Simon Josefsson  <simon@josefsson.org>
4924
4925         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
4926         blink smiley.
4927
4928 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4929
4930         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
4931         where the dribbel file lives exists.
4932
4933         * message.el (message-send-mail-partially-limit): Change the default to
4934         nil, since most people don't want this.
4935
4936         * mm-url.el (mm-url-decode-entities): Also decode entities like
4937         &#x3212.
4938
4939 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
4940
4941         * gnus-sum.el (gnus-summary-idna-message):
4942         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
4943         Hyperlink urls in docstrings with URL `...'.
4944
4945 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
4946
4947         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
4948         functions.
4949
4950 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4951
4952         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
4953         say what the mouseover text should be.
4954
4955         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
4956         version of the mm-w3m-safe-url-regexp variable to only download images
4957         in the groups where we want that to happen.
4958
4959         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
4960
4961         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
4962         easier debugging.
4963         (gnus-article-beginning-of-window): Add kludge to allow spacing past
4964         big pictures in the article buffer.
4965
4966         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
4967         gnus-article-html.
4968         (mm-text-html-renderer): gnus-article-html needs curl in addition to
4969         w3m.
4970
4971         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
4972
4973 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4974
4975         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
4976         which doesn't exist.
4977
4978         * message.el (message-inhibit-ecomplete): New variable to allow some
4979         function to inhibit ecomplete address storage.
4980         (message-resend): Disable ecomplete message storage when resending
4981         messages.
4982
4983         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
4984
4985 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4986
4987         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
4988         Save excursion while copying, moving, and deleting articles in order to
4989         prevent the cursor from jumping to unforeseen place.
4990
4991 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4992
4993         * lpath.el: No need to bind bookmark-current-buffer,
4994         bookmark-yank-point and bookmark-make-record-function.
4995
4996 2010-08-17  Glenn Morris  <rgm@gnu.org>
4997
4998         * gnus-sync.el: Require gnus components whose functions are used.
4999
5000         * gnus-art.el (bookmark-make-record-function):
5001         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
5002         Declare for compiler.
5003
5004         * mm-url.el (mml-compute-boundary): Autoload.
5005
5006 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5007
5008         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
5009
5010 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
5011
5012         Typo fix "hoo4a" -> "hook".
5013
5014         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
5015
5016 2010-08-14  Glenn Morris  <rgm@gnu.org>
5017
5018         * gnus-sync.el (gnus-sync): Fix defgroup version.
5019
5020 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
5021
5022         Doc fixes and keep unknown groups (ammended for nunion bug fix).
5023
5024         * gnus-sync.el: Fix docs.
5025         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
5026         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
5027
5028 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
5029
5030         Optimizations for gnus-sync.el.
5031
5032         * gnus-sync.el: Add docs about gnus-sync-backend
5033         possibilities.
5034         (gnus-sync-save): Remove unnecessary message.
5035         (gnus-sync-read): Optimize and show what groups were skipped.
5036
5037 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
5038
5039         Minor bug fixes for gnus-sync.el.
5040
5041         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
5042         Don't read the sync on get-new-news.
5043
5044         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
5045         quiet.
5046
5047         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
5048         (fix typo).
5049
5050 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
5051
5052         Make saving and restoring of hidden threads work with overlays.
5053         Patch applied by Ted Zlatanov.
5054
5055         * gnus-sum.el (gnus-hidden-threads-configuration)
5056         (gnus-restore-hidden-threads-configuration): Update to deal with text
5057         properties, rather than searching for a magic character.
5058
5059 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
5060
5061         New gnus-sync.el library for synchronization of marks.
5062
5063         * gnus-sync.el: New library for synchronization of marks.
5064
5065         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
5066         renamed from `gnus-registry-grep-in-list'.
5067
5068         * gnus-registry.el (gnus-registry-follow-group-p):
5069         Use `gnus-grep-in-list'.
5070
5071         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
5072
5073 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5074
5075         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
5076         determining charset of text fails.
5077
5078 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5079
5080         * nnmail.el (nnmail-get-new-mail-1): Revert.
5081
5082         * nnml.el (nnml-active-number): Make sure names of newly created groups
5083         in nnml-group-alist are encoded.
5084
5085 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5086
5087         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
5088         containing non-ASCII characters in active file for nnml back end.
5089
5090 2010-07-24  David Engster  <dengste@eml.cc>
5091
5092         * mml-smime.el (mml-smime-epg-verify): Also accept the older
5093         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
5094
5095 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
5096
5097         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
5098         tag (Bug#6654).
5099
5100 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5101
5102         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
5103         the article buffer, not the summary buffer.
5104
5105 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5106
5107         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
5108         Emacs 23 as well.
5109
5110 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5111
5112         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
5113         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
5114
5115 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5116
5117         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
5118         Patch applied by Karl Fogel.
5119
5120         * gnus-sum.el (gnus-summary-bookmark-make-record):
5121         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
5122
5123 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5124
5125         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
5126         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
5127         C-w still not working correctly from Article buffers; Thierry's
5128         patch to fix that will be applied after this.
5129
5130         * gnus-art.el (bookmark-make-record-function): New local variable.
5131
5132         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
5133         article buffer.
5134         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
5135
5136 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
5137
5138         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
5139         on changes in bookmark.el.
5140
5141 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5142
5143         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
5144         `no-log' instead of message not to log prompt string.
5145
5146 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
5147
5148         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
5149         the *other* type of HTML form submission.
5150
5151 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
5152
5153         * auth-source.el (auth-source-pick): If choice does not contain a
5154         questioned keyword, set the check to t.
5155
5156 2010-06-12  Romain Francoise  <romain@orebokech.com>
5157
5158         * gnus-util.el (gnus-date-get-time): Move up before first use.
5159
5160 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5161
5162         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
5163         (gnus-article-edit-part): Bind it to make last part that is substituted
5164         or deleted visible.
5165         (gnus-mime-display-single): Buttonize part of which id equals to
5166         gnus-mime-buttonized-part-id.
5167
5168 2010-06-10  Dan Christensen  <jdc@uwo.ca>
5169
5170         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
5171         (gnus-dd-mmm): Use gnus-date-get-time.
5172         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
5173         simplify logic.
5174         (gnus-summary-limit-to-age): Use gnus-date-get-time.
5175         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
5176
5177 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
5178
5179         * auth-source.el (top): Autoload `secrets-list-collections',
5180         `secrets-create-item', `secrets-delete-item'.
5181         (auth-sources): Fix tag string.
5182         (auth-get-source, auth-source-retrieve, auth-source-create)
5183         (auth-source-delete): New defuns.
5184         (auth-source-pick): Rewrite in order to avoid 2 passes.
5185         (auth-source-forget-user-or-password): New parameter USERNAME.
5186         (auth-source-user-or-password): New parameters CREATE-MISSING and
5187         DELETE-EXISTING.  Retrieve password interactively, if needed.
5188
5189 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
5190
5191         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
5192         deleting unused directories when gnus-expert-user is t.
5193
5194 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5195
5196         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
5197         for each temp file when gnus-article-browse-delete-temp is ask.
5198
5199 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5200
5201         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
5202         Lisp calls to delete-backward-char by calls to delete-char.
5203
5204 2010-05-20  Kevin Ryde  <user42@zip.com.au>
5205
5206         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
5207
5208 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
5209
5210         * password-cache.el (password-cache-remove): Fix docstring.
5211
5212 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5213
5214         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
5215         article unless decoding article to be saved.
5216
5217 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5218
5219         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
5220         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
5221         generated within the mm-with-unibyte-current-buffer macro.
5222
5223 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5224
5225         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
5226         to nil when we're in a mml-preview buffer and no group is selected.
5227
5228 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
5229
5230         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
5231         when catching the `C-g'.  Reported by "Leo".
5232
5233 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5234
5235         * message.el (message-forward-make-body-plain)
5236         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
5237         multibyte-string-p.
5238
5239         * lpath.el: Revert.
5240
5241 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5242
5243         * message.el (message-forward-make-body-mml): Assume original message
5244         is multibyte string; error on unibyte.
5245         (message-forward-make-body-plain): Ditto; don't add excessive newline
5246         in body end.
5247
5248         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
5249
5250 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
5251
5252         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
5253         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
5254
5255 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5256
5257         * mm-extern.el (mm-extern-url): Don't use
5258         mm-with-unibyte-current-buffer.
5259         (mm-extern-cache-contents): Use with-current-buffer instead of
5260         save-excursion + set-buffer.
5261
5262 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5263
5264         * mm-util.el (mm-emacs-mule): Remove.
5265
5266 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
5267
5268         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
5269         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
5270         change.
5271
5272 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5273
5274         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
5275         bind the default value of enable-multibyte-characters to nil.
5276
5277 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5278
5279         * message.el (message-forward-make-body-plain)
5280         (message-forward-make-body-mml):
5281         Don't use mm-with-unibyte-current-buffer.
5282
5283 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5284
5285         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
5286
5287 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
5288
5289         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
5290         (Bug#5592).
5291
5292 2010-05-07  Julien Danjou  <julien@danjou.info>
5293
5294         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
5295         it to mm-pipe-part.
5296
5297         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
5298         it is given.
5299
5300 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5301
5302         * binhex.el (binhex-decode-region-internal)
5303         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
5304         (dns-query)
5305         * nnweb.el (nnweb-gmane-search)
5306         * pgg-parse.el (pgg-parse-armor)
5307         * pgg.el (pgg-verify-region)
5308         * sha1.el (sha1-string-external)
5309         * uudecode.el (uudecode-decode-region-internal)
5310         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
5311         XEmacs.
5312
5313         * gnus-art.el (gnus-article-browse-html-parts)
5314         * gnus-group.el (gnus-read-ephemeral-gmane-group)
5315         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
5316         make-temp-file.
5317
5318         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
5319         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
5320         compiling.
5321
5322         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
5323         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
5324         XEmacs when compiling.
5325
5326         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
5327         gnus-pick-mode-off-hook for XEmacs when compiling.
5328         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
5329         gnus-binary-mode-off-hook for XEmacs when compiling.
5330
5331         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
5332         Return nil if char-charset is not available.
5333
5334         * imap.el (imap-disable-multibyte)
5335         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
5336         macros.
5337
5338         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
5339         instead of encode-coding-string.
5340
5341         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
5342         'xemacs) instead of mm-emacs-mule to switch function definitions.
5343         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
5344
5345         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
5346         bind temporary-file-directory for XEmacs;
5347         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
5348         timer-set-function for XEmacs 21.4 and SXEmacs;
5349         bind timer-list for XEmacs 21.4 and SXEmacs;
5350         fbind char-charset and find-charset-region for non-Mule XEmacs;
5351         fbind decode-coding-region, decode-coding-string, detect-coding-region,
5352         encode-coding-region and encode-coding-string for XEmacs having no
5353         file-coding feature.
5354
5355 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
5356
5357         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
5358
5359 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5360
5361         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
5362         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
5363
5364 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
5365
5366         * mm-util.el (mm-decompress-buffer): Use `delete-file';
5367         alias `jka-compr-delete-temp-file' no longer exists.
5368
5369 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5370
5371         Use define-minor-mode in Gnus where applicable.
5372         * mml.el (mml-mode): Use define-minor-mode.
5373         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
5374         (gnus-undo-mode): Use define-minor-mode.
5375         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
5376         (gnus-dead-summary-mode): Use define-minor-mode.
5377         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
5378         Initialize in declaration.
5379         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
5380         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
5381         (gnus-mailing-list-mode): Use define-minor-mode.
5382         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
5383         (gnus-draft-mode): Use define-minor-mode.
5384         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
5385         (gnus-dired-mode): Use define-minor-mode.
5386
5387 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
5388
5389         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
5390         handles on recursive mml-to-mime translation and check them for
5391         boundary delimiter collisions.  Reported by Greg Troxel.
5392
5393 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5394
5395         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
5396
5397 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5398
5399         * mm-util.el (mm-find-buffer-file-coding-system):
5400         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
5401
5402 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
5403
5404         * message.el (message-generate-headers): Record insertion of optional
5405         headers as well.  Otherwise the check to prevent repeated insertion of
5406         optional headers is a no-op.
5407
5408 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
5409
5410         * smime.el: Don't mention CVS.
5411
5412         * nnrss.el (nnrss-fetch): Don't mention CVS.
5413
5414         * nnir.el: Don't mention CVS.
5415
5416 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5417
5418         * gnus-sum.el (gnus-summary-bookmark-make-record):
5419         Add `location' field.
5420
5421 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5422
5423         * lpath.el: Fbind bookmark-default-handler,
5424         bookmark-get-bookmark-record, bookmark-make-record-default,
5425         bookmark-prop-get for Emacs <23 and XEmacs.
5426
5427 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5428
5429         * gnus-sum.el: Add bookmark declarations to silence the compiler.
5430         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
5431         Use with-current-buffer to silence the byte-compiler.
5432         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
5433         bother to require `gnus'.
5434         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
5435
5436 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5437
5438         * gnus-sum.el (gnus-summary-bookmark-make-record)
5439         (gnus-summary-bookmark-jump): New functions.
5440         (gnus-summary-mode): Setup bookmark support.
5441
5442 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
5443
5444         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
5445         if set.
5446
5447 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5448
5449         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
5450         gnus-article-browse-html-save-cid-image; make it work recursively for
5451         forwarded messages as well.
5452         (gnus-article-browse-html-parts): Work when prefix arg is given.
5453         (gnus-article-browse-html-article): Doc fix.
5454
5455 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
5456
5457         * message.el (message-default-mail-headers):
5458         (message-default-headers): Carry the value mail-default-headers over
5459         into message-default-mail-headers, rather than message-default-headers.
5460
5461 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
5462
5463         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
5464         charset.
5465
5466         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
5467         charset into the <meta> tag when the article is encoded to utf-8.
5468
5469 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5470
5471         * gnus-art.el (gnus-article-browse-delete-temp-files):
5472         Delete directories as well.
5473         (gnus-article-browse-html-parts): Work for images that do not specify
5474         file names; delete temp directory when quitting; insert header at the
5475         right place; use file: scheme for image files.
5476
5477 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
5478
5479         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
5480         (gnus-article-browse-html-parts): Use it to make temporary cid image
5481         files in addition to html file so that browser may display them.
5482
5483 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5484
5485         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
5486
5487 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
5488
5489         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
5490
5491 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
5492
5493         * auth-source.el (auth-sources): Change default to be simpler.
5494         Explain about Secret Service API sources.  Improve Customize options.
5495         (auth-source-pick): Change to accept any number of search parameters.
5496         Implement fallbacks iteratively, not recursively.  Add scoring on the
5497         second pass and sort by score.  Call Secret Service API when needed.
5498         (auth-source-user-or-password): Use it.  Call Secret Service API
5499         directly when needed to get the user name and the password.
5500
5501 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
5502
5503         * message.el (message-interactive): Doc fix.
5504         (message-qmail-inject-args): Reflow.
5505         (message-kill-to-signature): Fix typo in docstring.
5506
5507         * smiley.el (smiley-buffer): Fix typo in docstring.
5508
5509 2010-03-24  Glenn Morris  <rgm@gnu.org>
5510
5511         * mail-source.el (gnus-message): Declare.
5512         (mail-source-delete-old-incoming): Require gnus-util.
5513
5514 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5515
5516         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
5517
5518         * message.el (ecomplete-setup): Autoload it for Emacs <23.
5519
5520         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
5521         password-cache's default if it is not bound.
5522         (mml-secure-passphrase-cache-expiry): Default to 16 that is
5523         password-cache-expiry's default if it is not bound.
5524
5525         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
5526         available in Emacs 21.
5527
5528         * lpath.el: Suppress compiler warnings for:
5529         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
5530         XEmacs;
5531         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
5532         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
5533         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
5534
5535 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
5536
5537         * auth-source.el (auth-sources): Fix up definition so extra parameters
5538         are always inline.
5539
5540 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
5541
5542         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
5543         wasn't updated after mismatch.  Clear cached mailbox info correctly
5544         when uidvalidity changes.
5545         (nnimap-group-prefixed-name): New function to avoid some code
5546         duplication.
5547         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
5548         (nnimap-request-group): Use it.
5549         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
5550         (nnimap-update-unseen): Significantly improved speed of Gnus startup
5551         with many imap folders.  This is done by caching the group status from
5552         the imap server persistently in a group parameter `imap-status'.  (This
5553         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
5554         but not persistently, so every Gnus startup was still very slow.)
5555
5556 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
5557
5558         * assistant.el (assistant-render-text): Run `widget-setup' and don't
5559         delete the extra newline.  Otherwise editing of :string and :number
5560         types don't work.
5561
5562 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
5563
5564         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
5565         secrets.el dependency.
5566         (auth-sources): Add optional user name.  Add secrets.el configuration
5567         choice (unused right now).
5568
5569 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
5570
5571         * gnus-sum.el (gnus-summary-make-menu-bar):
5572         Let `gnus-registry-install-shortcuts' fill in the functions.
5573
5574         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
5575         warnings.
5576         (gnus-registry-misc-menus): Variable to hold registry mark menus.
5577         (gnus-registry-install-shortcuts): Populate and use it in a
5578         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
5579
5580 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
5581
5582         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
5583         In-place substitutions for the group name encoding/decoding.
5584         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
5585         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
5586         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
5587         (nnimap-update-unseen, nnimap-request-list)
5588         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
5589         (nnimap-request-set-mark, nnimap-split-to-groups)
5590         (nnimap-split-articles, nnimap-request-newgroups)
5591         (nnimap-request-create-group, nnimap-request-accept-article)
5592         (nnimap-request-delete-group, nnimap-request-rename-group)
5593         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
5594         `encoded-mbx' for consistency.
5595         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
5596         variable `imap-current-mailbox'.
5597
5598         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
5599         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
5600
5601 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
5602
5603         * pop3.el (pop3-display-message-size-flag): Display message size byte
5604         counts during POP3 download.
5605         (pop3-movemail): Use it.
5606         (pop3-list): Implement listing of available messages.
5607
5608 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
5609
5610         * nnir.el (nnir-get-article-nov-override-function): New function to
5611         override the normal NOV retrieval.
5612         (nnir-retrieve-headers): Use it.
5613
5614 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
5615
5616         * auth-source.el (netrc-machine-user-or-password): Autoload.
5617
5618 2010-03-19  Glenn Morris  <rgm@gnu.org>
5619
5620         Stop message.el from loading about 40 libraries it doesn't always need.
5621         The general approach is to autoload rather than require, and to
5622         require in the specific functions rather than the file.  (Bug#5642)
5623
5624         * gmm-utils.el: Don't require wid-edit.
5625         (widget-create-child-value, widget-convert, widget-default-get):
5626         Autoload.
5627
5628         * gnus-util.el: Don't require time-date, netrc.
5629         (message-fetch-field, gnus-group-name-decode): Declare rather than
5630         autoloading.
5631         (gnus-fetch-field): Require message.
5632         (gnus-decode-newsgroups): Require gnus-group.
5633
5634         * ietf-drums.el: Don't require time-date.
5635
5636         * message.el: Don't require hashcash, canlock, ecomplete.
5637         Do require mail-utils.  Require nnheader only when compiling.
5638         (smtpmail-default-smtp-server): Remove declaration.
5639         (message-send-mail-function): Check smtpmail-default-smtp-server
5640         is bound rather than requiring smtpmail.
5641         (message-auto-save-directory, message-insert-signature):
5642         Use expand-file-name rather than nnheader-concat.
5643         (nnheader-insert-file-contents): Autoload.
5644         (hashcash-wait-async): Declare.
5645         (message-send-mail): Only call gnus-setup-posting-charset if
5646         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
5647         (message-send-mail-with-sendmail): Require sendmail.
5648         (canlock-password, canlock-password-for-verify): Declare.
5649         (message-canlock-password): Require canlock.
5650         (nnheader-get-report): Autoload.
5651         (gnus-setup-posting-charset): Declare.
5652         (message-send-news): Require gnus-msg.
5653         (message-make-references, message-make-in-reply-to): Use mail-header-id
5654         rather than the alias mail-header-message-id.
5655         (ecomplete-add-item, ecomplete-save): Declare.
5656         (message-put-addresses-in-ecomplete): Require ecomplete.
5657         (ecomplete-display-matches): Autoload.
5658
5659         * mm-decode.el: Don't require mailcap, gnus-util.
5660         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
5661         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
5662         Autoload.
5663         (mailcap-mime-extensions): Declare.
5664
5665         * mm-encode.el: Don't require mailcap.
5666         (mailcap-extension-to-mime): Autoload.
5667
5668         * mml-sec.el: Don't require password-cache.
5669
5670         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
5671         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
5672         (mml-minibuffer-read-type): Require mailcap.
5673         (mml-preview): Require gnus-msg.
5674
5675         * mml1991.el: Require password-cache.
5676         (password-cache-expiry): Remove declaration.
5677
5678         * mml2015.el: Require password-cache.
5679         (password-cache-expiry): Remove declaration.
5680
5681         * nneething.el (mailcap): Require mailcap.
5682
5683         * nnheader.el (declare-function): Add compatibility stub.
5684         (message-remove-header): Declare rather than autoload.
5685         (nnheader-replace-header): Require message.
5686
5687         * nnimap.el (declare-function): Add compatibility stub.
5688         (netrc-parse, netrc-machine-user-or-password): Declare.
5689         (nnimap-open-connection): Require netrc.
5690
5691         * nntp.el (declare-function): Add compatibility stub.
5692         (netrc-parse, netrc-machine, netrc-get): Declare.
5693         (nntp-send-authinfo): Require netrc.
5694
5695         * rfc2047.el: Don't require qp.
5696         (quoted-printable-encode-region, quoted-printable-decode-string):
5697         Autoload.
5698
5699         * sieve-mode.el: Don't require easymenu.
5700         (easy-menu-add-item): Autoload it.
5701
5702         * spam-stat.el (time-to-number-of-days): Autoload it.
5703
5704 2010-03-19  Glenn Morris  <rgm@gnu.org>
5705
5706         * password-cache.el (password-cache, password-cache-expiry): Autoload.
5707
5708 2010-03-18  Glenn Morris  <rgm@gnu.org>
5709
5710         * hashcash.el (declare-function): Remove duplicate definition.
5711
5712 2010-03-17  Kevin Ryde  <user42@zip.com.au>
5713
5714         * mml.el (mml-read-tag): Unquote values with `read' to reverse
5715         prin1 in mml-insert-tag (just stripping the quotes gave wrong
5716         value if any backslash escapes).
5717
5718 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5719
5720         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
5721         if it is available.  (bug#5647)
5722
5723         * lpath.el: Suppress compiler warning for coding-system-from-name for
5724         Emacs 21 and XEmacs.
5725
5726 2010-03-14  Juri Linkov  <juri@jurta.org>
5727
5728         * hmac-def.el:
5729         * hmac-md5.el:
5730         * netrc.el: Fix keywords.
5731
5732 2010-02-26  Glenn Morris  <rgm@gnu.org>
5733
5734         * message.el (message-send-mail-function): Change the default, so that
5735         it inherits from a customized send-mail-function.  (Bug#5643)
5736
5737 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
5738
5739         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
5740         shell-command-to-string signals an error (bug#5299).
5741
5742 2010-02-24  Glenn Morris  <rgm@gnu.org>
5743
5744         * message.el (message-smtpmail-send-it)
5745         (message-send-mail-with-mailclient): Doc fixes.
5746
5747 2010-02-16  Glenn Morris  <rgm@gnu.org>
5748
5749         * message.el (message-default-mail-headers): Change the default value
5750         to ease the transition from mail-mode to message-mode.  (Bug#5555)
5751
5752 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5753
5754         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
5755         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
5756
5757 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
5758
5759         * time-date.el (date-to-time): Doc fix (Bug#5408).
5760
5761 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
5762
5763         * message.el (message-mail): Just pass yank-action on to message-setup.
5764         (message-setup): Handle (FUN . ARGS) form of yank-action.
5765         (message-with-reply-buffer, message-widen-reply)
5766         (message-yank-original): Handle non-buffer values of
5767         message-reply-buffer (Bug#4080).
5768         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
5769
5770 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
5771
5772         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
5773         Fix typo in docstring.
5774
5775 2010-01-08  Jason Rumney  <jasonr@gnu.org>
5776
5777         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
5778         response.
5779
5780 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5781
5782         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
5783
5784         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
5785
5786         * message.el (message-check-news-header-syntax): Protect against a
5787         string that `rfc822-addresses' returns when parsing fails.
5788
5789 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5790
5791         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
5792         (gnus-previous-char-property-change): New functions.
5793
5794         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
5795
5796 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
5797
5798         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
5799         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
5800
5801 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
5802
5803         * message.el (message-exchange-point-and-mark): Rework last change to
5804         avoid using optional arg of exchange-point-and-mark, for backward
5805         compatibility.
5806
5807 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
5808
5809         * message.el (message-exchange-point-and-mark):
5810         Call exchange-point-and-mark with an argument rather than setting
5811         mark-active by hand (Bug#5175).
5812
5813 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5814
5815         * nntp.el (nntp-service-to-port): Work for service expressed with
5816         numeric string; replace [:digit:] with [0-9] for XEmacs.
5817
5818 2009-12-17  Glenn Morris  <rgm@gnu.org>
5819
5820         * gnus-group.el (gnus-bug-group-download-format-alist):
5821         Change emacs entry to debbugs.gnu.org.  Bump :version.
5822
5823 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
5824
5825         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
5826
5827 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
5828
5829         * message.el (message-info): Explain why we use `Info-goto-node'.
5830
5831 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5832
5833         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
5834
5835 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5836
5837         * message.el (message-completion-in-region): New compatibility function.
5838         (message-expand-group): Use it.
5839
5840 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5841
5842         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
5843         with no unread article should be listed if the 2nd arg `predicate' is
5844         given.
5845
5846 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5847
5848         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
5849
5850 2009-11-29  Juri Linkov  <juri@jurta.org>
5851
5852         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
5853         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
5854         on `gnus-recenter'.  (Bug#4698, Bug#4981)
5855
5856 2009-11-26  Kevin Ryde  <user42@zip.com.au>
5857
5858         * sha1.el (sha1-string-external): default-directory "/" in case
5859         otherwise non-existent.  process-connection-type pipe for touch of
5860         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
5861
5862 2009-11-25  Kevin Ryde  <user42@zip.com.au>
5863
5864         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
5865         it's comms related and sgml-mode.el has "comm" on that basis too.
5866
5867 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5868
5869         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
5870         containing tspecial characters if they have been already quoted.
5871
5872 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
5873
5874         * dns-mode.el (auto-mode-alist): Purecopy string.
5875
5876 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5877
5878         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
5879
5880 2009-10-24  Glenn Morris  <rgm@gnu.org>
5881
5882         * gnus-art.el (help-xref-stack-item): Define for compiler.
5883
5884 2009-10-21  Kevin Ryde  <user42@zip.com.au>
5885
5886         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
5887
5888 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5889
5890         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
5891
5892 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5893
5894         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
5895         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
5896
5897 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5898
5899         * gnus.el (gnus-overlay-get): New alias to overlay-get.
5900         (gnus-overlays-in): New alias to overlays-in.
5901
5902         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
5903         gnus-overlay-get, and gnus-delete-overlay.
5904         (gnus-summary-show-thread): Make it work as well for systems in which
5905         next-single-char-property-change is not available.
5906         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
5907
5908         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
5909         (gnus-overlay-get): New alias to extent-property.
5910         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
5911
5912         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
5913         SXEmacs.
5914
5915         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
5916         SXEmacs.
5917
5918 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
5919
5920         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
5921
5922 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
5923
5924         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
5925         and XEmacs that don't have `remove-overlays'.
5926
5927 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5928
5929         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
5930         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
5931         selective display.  Use overlays instead.
5932
5933 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
5934
5935         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
5936
5937 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
5938
5939         * spam-stat.el (spam-stat-load): Fix typo in message.
5940
5941 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
5942
5943         * dig.el (dig-invoke): Fix typo in docstring.
5944         (query-dig): Reflow docstring.
5945
5946 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
5947
5948         * gnus-art.el (gnus-article-encrypt-body):
5949         * message.el (message-check-recipients):
5950         * mm-util.el (mm-codepage-setup):
5951         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
5952         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
5953
5954 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
5955
5956         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
5957         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
5958         keys from the menu if mm-{sign,encrypt}-option is 'guided.
5959         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
5960         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
5961
5962 2009-09-21  Kevin Ryde  <user42@zip.com.au>
5963
5964         * dig.el: Add "Keywords: comm", as per net-utils.el.
5965
5966 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5967
5968         * dig.el (dig-mode): Use define-derived-mode.
5969
5970 2009-09-19  Glenn Morris  <rgm@gnu.org>
5971
5972         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
5973
5974 2009-09-18  Glenn Morris  <rgm@gnu.org>
5975
5976         * gnus-diary.el (gnus-diary-check-message):
5977         * message.el (message-insert-formatted-citation-line):
5978         * nnbabyl.el (top-level):
5979         * nndiary.el (nndiary-schedule):
5980         Fix typos in condition-case handlers.
5981
5982 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5983
5984         * gnus-art.el (gnus-article-edit-part): Work for the buffer
5985         configuration that provides the sole article window in a frame;
5986         position point correctly after deleting a part.
5987
5988 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
5989
5990         * spam.el (spam-unregister-on-reregister): Add boolean variable.
5991         (spam-resolve-registrations-routine): Use it to unregister articles
5992         that change status.
5993
5994 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5995
5996         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
5997         with XEmacs.
5998         (parse-time-string-chars): Use it.
5999
6000 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
6001
6002         * imap.el (imap-interactive-login): Better messages.
6003         (imap-open): Fix bug with renamed buffer on reconnect.
6004         (imap-authenticate): Add buffer-local imap-last-authenticator variable
6005         for easier debugging and cleaner code.  On successful (guessed based on
6006         server capabilities) secondary authentication, set imap-state
6007         correctly.
6008         (imap-last-authenticator): Define imap-last-authenticator as a variable
6009         to avoid warnings.
6010
6011 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6012
6013         * nnrss.el (nnrss-request-article): Remove binding of
6014         default-enable-multibyte-characters that has gotten needless by
6015         the 2007-07-13 change in rfc2047-encode-message-header.
6016
6017         * mml.el (mml-insert-multipart): Error on the message header.
6018         (mml-insert-part): Error on the message header; position point at
6019         the end of a MIME tag.
6020
6021 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6022
6023         * time-date.el (autoload): Expand define-obsolete-function-alias into
6024         defalias and make-obsolete for old Emacsen that Gnus supports.
6025         (with-no-warnings): Define it for old Emacsen.
6026         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
6027         is available.
6028         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
6029         float-time is available; suppress compile warning for time-to-seconds.
6030
6031         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
6032         (gnus-float-time): Alias to float-time if it exists.
6033
6034         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
6035         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
6036         float-time is available; suppress compile warning for time-to-seconds.
6037
6038         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
6039         XEmacs.
6040
6041 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
6042
6043         * imap.el (imap-message-map): Docstring fix.
6044
6045 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6046
6047         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
6048         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
6049         Add the optional argument `encoding' that overrides the default.
6050
6051         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
6052         mm-encode-buffer.
6053
6054 2009-09-04  Glenn Morris  <rgm@gnu.org>
6055
6056         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
6057         mm-disable-multibyte, rather than default-enable-multibyte-characters.
6058         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
6059         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
6060         * mm-util.el (mm-with-unibyte-current-buffer)
6061         (mm-find-buffer-file-coding-system):
6062         * yenc.el (yenc-decode-region): Use default-value rather than
6063         default-enable-multibyte-characters.
6064
6065 2009-09-03  Glenn Morris  <rgm@gnu.org>
6066
6067         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
6068         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
6069         than default-enable-multibyte-characters.
6070
6071 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
6072
6073         * gnus-art.el (gnus-article-read-summary-keys):
6074         Fix gnus-buffer-configuration's value temporarily used.
6075
6076 2009-09-02  Glenn Morris  <rgm@gnu.org>
6077
6078         * gnus-util.el (gnus-float-time): New function.
6079         * gnus-delay.el (gnus-delay-article):
6080         * gnus-sum.el (gnus-thread-latest-date):
6081         * gnus-util.el (gnus-user-date): Use gnus-float-time.
6082         * nnspool.el (nnspool-request-newgroups):
6083         Use gnus-float-time rather than time-to-seconds.
6084         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
6085
6086         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
6087         (gnus-header-subject-face, gnus-header-newsgroups-face)
6088         (gnus-header-name-face, gnus-header-content-face):
6089         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
6090         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
6091         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
6092         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
6093         (gnus-cite-face-11):
6094         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
6095         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
6096         (gnus-server-closed-face, gnus-server-denied-face)
6097         (gnus-server-offline-face):
6098         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
6099         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
6100         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
6101         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
6102         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
6103         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
6104         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
6105         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
6106         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
6107         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
6108         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
6109         (gnus-summary-selected-face, gnus-summary-cancelled-face)
6110         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
6111         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
6112         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
6113         (gnus-summary-high-undownloaded-face)
6114         (gnus-summary-low-undownloaded-face)
6115         (gnus-summary-normal-undownloaded-face)
6116         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
6117         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
6118         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
6119         (gnus-splash-face):
6120         * message.el (message-header-to-face, message-header-cc-face)
6121         (message-header-subject-face, message-header-newsgroups-face)
6122         (message-header-other-face, message-header-name-face)
6123         (message-header-xheader-face, message-separator-face)
6124         (message-cited-text-face, message-mml-face):
6125         * sieve-mode.el (sieve-control-commands-face)
6126         (sieve-action-commands-face, sieve-test-commands-face)
6127         (sieve-tagged-arguments-face):
6128         * spam.el (spam-face):
6129         Mark face aliases with "-face" in the name as obsolete.
6130
6131 2009-09-01  Glenn Morris  <rgm@gnu.org>
6132
6133         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
6134         than goto-line.
6135
6136 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
6137
6138         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
6139         Don't move point if the command is invoked inside the message header.
6140
6141 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6142
6143         * imap.el (imap-send-command): Simplify.
6144         (imap-wait-for-tag): point-max -> buffer-size.
6145
6146 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6147
6148         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
6149         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
6150         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
6151         * nnir.el (nnir-swish-e-index-file):
6152         * gnus-sum.el (gnus-summary-delete-marked-as-read)
6153         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
6154         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
6155         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
6156         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
6157         (gnus-treat-display-xface): Add Emacs version of obsolescence.
6158
6159 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6160
6161         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
6162         Don't save excursion.
6163
6164 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6165
6166         * nnheader.el (nnheader-find-file-noselect):
6167         * mm-util.el (mm-insert-file-contents):
6168         Use (default-value 'major-mode) instead of default-major-mode.
6169
6170 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6171
6172         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
6173
6174 2009-08-26  Glenn Morris  <rgm@gnu.org>
6175
6176         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
6177         than placing in files.el.
6178
6179 2009-08-25  Glenn Morris  <rgm@gnu.org>
6180
6181         * nnir.el (top-level): Don't require cl at run-time.
6182         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
6183         Replace cl-function substitute with gnus-replace-in-string.
6184         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
6185         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
6186         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
6187         simplified expansions.
6188
6189 2009-08-25  Kevin Ryde  <user42@zip.com.au>
6190
6191         * dig.el (dig): Add autoload cookie.
6192
6193 2009-08-22  Glenn Morris  <rgm@gnu.org>
6194
6195         * gnus-art.el (gnus-button-patch): Use forward-line rather than
6196         goto-line.
6197
6198 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
6199
6200         * parse-time.el (parse-time-string-chars): Save match data.
6201
6202 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
6203
6204         * parse-time.el (parse-time-string-chars): Compute using character
6205         classes, to handle non-ascii characters (Bug#3190).
6206
6207 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
6208
6209         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
6210
6211         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
6212         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
6213         (gnus-mm-display-part, gnus-mime-display-single)
6214         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
6215         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
6216
6217         * gnus-sum.el
6218         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
6219         (gnus-summary-move-article): Add expirable mark to articles copied or
6220         moved to group that has auto-expire turned on if the option is non-nil.
6221
6222 2009-07-24  Glenn Morris  <rgm@gnu.org>
6223
6224         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
6225         Fix typo.  (Bug#3903)
6226
6227 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
6228
6229         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
6230         gnus-article-read-summary-keys rather than gnus-summary-edit-article
6231         that should not be used for draft articles.
6232         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
6233         that has no concern in minor mode keys.
6234         (gnus-article-summary-command, gnus-article-summary-command-nosave):
6235         Abolish.
6236
6237 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6238
6239         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
6240         article without making inquiry to a user for unknown encoding.
6241
6242         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
6243         (nnmaildir--scan): Assume i-node and device number that file-attributes
6244         returns might be cons-cell.
6245
6246         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
6247
6248         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
6249
6250 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
6251
6252         * auth-source.el: Remove docs now in auth.texi.  Don't use
6253         `gnus-message' for logging.  Add new variables `auth-source-debug' and
6254         `auth-source-hide-passwords' and use them.
6255
6256 2009-07-15  Glenn Morris  <rgm@gnu.org>
6257
6258         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
6259
6260 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6261
6262         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
6263         excessive whitespace from the default values of title and description.
6264
6265 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6266
6267         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
6268         mail-fetch-field to fetch Content-Description header in order to
6269         exclude newlines.
6270
6271 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
6272
6273         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
6274         format used by GnuPG 2.0.11.
6275
6276 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6277
6278         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
6279         to deleted part.
6280
6281 2009-05-30  David Engster  <dengste@eml.cc>
6282
6283         * nnmairix.el: Remove old documentation in the commentary block.
6284         (nnmairix-request-group): Do not update active file for nnml back ends.
6285         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
6286         end so that overview files are ignored.
6287         (nnmairix-update-groups): Make updating the groups more robust by using
6288         marks.
6289         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
6290         with dollar characters in message-id.
6291
6292 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
6293
6294         * spam.el: Use dns-query instead of query-dns.  Was renamed on
6295         2008-12-25 in dns.el.
6296
6297 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6298
6299         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
6300         could happen if the text is only composed of spaces and/or tabs.
6301
6302 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
6303
6304         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
6305         when sending a queued message to avoid extra mml tags.
6306
6307 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
6308
6309         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
6310
6311 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6312
6313         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
6314         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
6315         rmail-toggle-header for XEmacs;
6316         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
6317
6318 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6319
6320         * gnus-dired.el: Remove autoload for gnus-setup-message.
6321         (gnus-dired-attach): Fake this-command value to prevent Gnus from
6322         displaying Gnus logo; always use compose-mail.
6323
6324 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
6325
6326         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
6327
6328 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6329
6330         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
6331         (gnus-nocem-issuers): List currently active issuers; fix custom type.
6332         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
6333         available.
6334         (gnus-nocem-epg-verify): New function.
6335
6336 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
6337
6338         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
6339
6340 2009-02-15  Glenn Morris  <rgm@gnu.org>
6341
6342         * gnus-util.el (rmail-insert-rmail-file-header)
6343         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
6344         autoloads.
6345         (rmail-default-rmail-file): Remove unnecessary declaration.
6346         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
6347
6348 2009-02-14  Glenn Morris  <rgm@gnu.org>
6349
6350         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
6351         variable (only used in gnus-util, which declares it anyway).
6352         (rmail-output-to-rmail-file): Remove autoload of deleted function,
6353         which was only needed by gnus-art (changed to not use it any more).
6354         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
6355         only used in gnus-util, which autoloads it itself.
6356         (rmail-update-summary): Fix autoload.
6357
6358         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
6359         rather than rmail-output-to-rmail-file.
6360
6361 2009-02-07  Glenn Morris  <rgm@gnu.org>
6362
6363         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
6364         autoload of function that no longer exists.
6365         (rmail-toggle-header): Declare.
6366         (message-forward-rmail-make-body): Handle mbox Rmail.
6367
6368 2009-01-31  Glenn Morris  <rgm@gnu.org>
6369
6370         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
6371         2009-01-09 change.
6372
6373 2009-01-31  Dave Love  <fx@gnu.org>
6374
6375         * imap.el (imap-fetch-safe): Bind debug-on-error.
6376         (imap-debug): Add imap-fetch-safe.
6377
6378 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
6379
6380         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
6381         (auth-source-forget-all-cached): New convenience function.
6382         (auth-source-user-or-password): Accept list of modes or a single mode.
6383
6384         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
6385         auth-source modes.
6386
6387         * netrc.el (netrc-machine-user-or-password): Use list of
6388         auth-source modes.
6389
6390         * nnimap.el (nnimap-open-connection): Use list of
6391         auth-source modes.
6392
6393         * nntp.el (nntp-send-authinfo): Use list of
6394         auth-source modes.
6395
6396 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
6397
6398         * auth-source.el: Update docs to reflect epa-file-enable is to be used
6399         now.
6400
6401 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6402
6403         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
6404         coding system in XEmacs; add a workaround for XEmacs.
6405
6406         * lpath.el: Fbind coding-system-aliasee.
6407
6408 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6409
6410         * mm-util.el (mm-coding-system-priorities): Protect against nil value
6411         of current-language-environment.
6412
6413 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
6414
6415         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
6416         available at runtime.
6417
6418 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6419
6420         * gnus-art.el (article-date-ut): Fix end point of narrowing.
6421
6422 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
6423
6424         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
6425         the greatest positive fixnum value doesn't work under an XEmacs with
6426         bignum support; use the most-positive-fixnum constant instead,
6427         available since Emacs 21.1 with cl and XEmacs 21.1.
6428
6429 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6430
6431         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
6432         XEmacs gets not to work.
6433
6434 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6435
6436         * mm-util.el (mm-coding-system-priorities): Allow the value like
6437         "Japanese (UTF-8)" of current-language-environment.
6438
6439 2009-01-09  Glenn Morris  <rgm@gnu.org>
6440
6441         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
6442         with last-command-event.
6443
6444 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
6445
6446         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
6447         in the doc string.
6448
6449         * message.el (message-fix-before-sending): Amend comment.
6450
6451 2009-01-08  Dave Love  <fx@gnu.org>
6452
6453         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
6454
6455 2009-01-07  David Engster  <dengste@eml.cc>
6456
6457         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
6458         simplified server definitions by converting it via
6459         gnus-server-to-method.
6460
6461 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6462
6463         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
6464         parameter's operands.
6465
6466 2009-01-06  David Engster  <dengste@eml.cc>
6467
6468         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
6469         primary select method (for gnus-group-mark-article-as-read).
6470
6471 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
6472
6473         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
6474         `(gnus)Face', not `(gnus)X-Face'.
6475
6476 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6477
6478         * mm-util.el (mm-ucs-to-char): New function.
6479
6480         * mm-url.el (mm-url-decode-entities): Use it.
6481
6482         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
6483         unicode-to-char.
6484
6485 2009-01-05  Dave Love  <fx@gnu.org>
6486
6487         * time-date.el: Require cl for `declare'.
6488
6489 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
6490
6491         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
6492         Dave Love.
6493
6494 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
6495
6496         * message.el (message-fix-before-sending): Add `eight-bit' to
6497         illegible-text check.
6498
6499 2009-01-03  Michael Olson  <mwolson@gnu.org>
6500
6501         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
6502         `headers' is nil.  This can occur if the IMAP server does not have
6503         permissions to read messages from a folder, but can write new messages
6504         to the folder.
6505         (nnimap-request-article-part): Do not insert `data' if it is nil.
6506
6507         * imap.el (imap-parse-fetch): Courier can insert spurious blank
6508         characters which will confuse `read', so skip past them.
6509
6510 2009-01-01  Dave Love  <fx@gnu.org>
6511
6512         * imap.el (imap-string-to-integer): Fix typo.
6513         (imap-fetch-safe): New function.
6514         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
6515
6516         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
6517
6518         * imap.el (imap-process-connection-type, imap-debug, imap-open):
6519         (imap-parse-greeting): Fix doc strings.
6520         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
6521         (imap-parse-flag-list): Make messages unique.
6522         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
6523
6524         * nnimap.el: Fix author email.
6525         (nnimap-split-rule): Add FIXME comment.
6526         (nnimap-debug): Fix doc string.
6527
6528 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6529
6530         * dns.el (dns-set-servers): Check "Address".  Fix typo.
6531
6532 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
6533
6534         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
6535         nslookup if resolv.conf isn't available.
6536         (dns-query): Rename from query-dns.
6537         (dns-query-cached): Rename from query-dns-cached.
6538
6539 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6540
6541         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
6542         overlay-arrow-position and overlay-arrow-string buffer-local; no need
6543         to check if those variables exist (first appeared in Emacs 18.50).
6544
6545 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6546
6547         * mm-util.el (mm-line-number-at-pos): New function.
6548
6549         * spam-report.el (spam-report-process-queue): Use it.
6550
6551 2008-12-24  David Engster  <dengste@eml.cc>
6552
6553         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
6554         parameters that haven't existed as variables as buffer-local variables.
6555
6556 2008-12-23  Dave Love  <fx@gnu.org>
6557
6558         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
6559         cadar.
6560
6561         * sieve-manage.el (sieve-manage-starttls-p): Rename from
6562         imap-starttls-p.
6563         (sieve-manage-starttls-open): Rename from imap-starttls-open.
6564
6565 2008-12-22  Dave Love  <fx@gnu.org>
6566
6567         * imap.el: Fix author email.  Doc fixes.
6568         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
6569         reply.
6570
6571 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
6572
6573         * spam-report.el (spam-report-gmane-max-requests): New constant.
6574         (spam-report-gmane-wait): New variable.
6575         (spam-report-gmane-ham, spam-report-gmane-spam)
6576         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
6577         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
6578         the server.
6579
6580         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
6581         Add explanations.
6582
6583         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
6584         nnheader-accept-process-output and nnheader-read-timeout if available.
6585         (pop3-movemail): Use it.
6586
6587         * message.el (message-check-news-body-syntax): Fix signature check if
6588         there's an attachment.
6589
6590 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6591
6592         * mm-util.el: Add comments to the mm- emulating functions.
6593
6594 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
6595
6596         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
6597         Reported by Stephen Berman <stephen.berman@gmx.net>.
6598
6599 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6600
6601         * mm-util.el (mm-substring-no-properties): New function.
6602         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
6603         (mm-special-display-p): Enable those lambda forms to be byte compiled.
6604         (mm-string-to-multibyte): Doc fix.
6605
6606         * mml.el (mml-attach-file): Use mm-substring-no-properties.
6607
6608 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
6609
6610         * mml.el (mml-attach-file): Strip text properties from file name.
6611         (Bug#1574)
6612
6613 2008-12-16  Glenn Morris  <rgm@gnu.org>
6614
6615         * mm-util.el (mm-charset-override-alist): Declare for compiler.
6616
6617 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6618
6619         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
6620         knows since the charset specified might be a bogus alias that
6621         mm-charset-synonym-alist provides.
6622
6623 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
6624
6625         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
6626         "ISO_8859-1".
6627
6628         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
6629
6630 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6631
6632         * mm-util.el (mm-charset-eval-alist):
6633         Define it before mm-charset-to-coding-system.
6634         (mm-charset-to-coding-system): Add optional argument `silent';
6635         define it before mm-charset-override-alist.
6636         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
6637         default value if it can be used in Emacs currently running;
6638         silence mm-charset-to-coding-system.
6639
6640 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6641
6642         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
6643         `allow-override' which says whether to use `mm-charset-override-alist'.
6644         (rfc2047-decode-encoded-words): Use it.
6645
6646         * mm-util.el (mm-charset-override-alist): Fix custom type;
6647         add `(gb2312 . gbk)' to choices.
6648
6649 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
6650
6651         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
6652         fast.
6653
6654         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
6655
6656         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
6657
6658 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
6659
6660         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
6661         on links.
6662
6663         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
6664
6665 2008-12-03  Lute Kamstra  <lute@gnu.org>
6666
6667         * sha1.el: Remove leading * from docstrings of defcustoms,
6668         deffaces, defconsts and defuns.
6669
6670 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6671
6672         * message.el (message-idna-to-ascii-rhs-1): Protect against local
6673         users' addresses that don't have domain parts.
6674         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
6675         rather than message-narrow-to-head since there will be the message
6676         header separator.
6677
6678 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6679
6680         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
6681         since the result is inserted in a unibyte buffer anyway.
6682         (nnimap-demule-use-string-to-multibyte): Remove.
6683         (nnimap-demule): Alias it to mm-string-to-multibyte.
6684
6685 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
6686
6687         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
6688         variable for debugging bug#464 and bug#1174.
6689         (nnimap-demule): Use it.
6690
6691 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
6692
6693         * gnus-score.el (gnus-score-find-trace): Handle default score in total
6694         score calculation correctly.
6695
6696 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6697
6698         * message.el (message-send-mail): Just set the buffer to unibyte
6699         rather than use mm-with-unibyte-current-buffer which does a lot more.
6700         (message-send-mail-partially): Don't bother with
6701         mm-with-unibyte-current-buffer since it's already been made unibyte by
6702         message-send-mail.
6703
6704 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
6705
6706         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
6707
6708 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
6709
6710         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
6711
6712 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
6713
6714         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
6715         require itself and to remove `with-no-warnings'.
6716
6717 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
6718
6719         * starttls.el (starttls-any-program-available): Get the name of the
6720         available TLS layer program.
6721         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
6722         well as the host name in the "opening" message.
6723
6724         * auth-source.el (auth-source-cache, auth-source-do-cache)
6725         (auth-source-user-or-password): Cache passwords and logins by default,
6726         allow override with `auth-source-do-cache'.
6727         (auth-source-forget-user-or-password): Allow users to remove cache
6728         entries if needed.
6729
6730 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
6731
6732         * md4.el (md4-buffer): Fix typo in docstring.
6733         (md4, md4-64): Doc fixes.
6734         (md4-pack-int32): Reflow docstring.
6735
6736 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
6737
6738         * ietf-drums.el (ietf-drums-remove-comments): Localize second
6739         condition-case to only the forward-sexp call.
6740
6741 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
6742
6743         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
6744         quotes contained.  Make it more robust regardless by an extra
6745         condition-case wrapper.
6746
6747 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6748
6749         * lpath.el: No need to fbind codepage-setup for Emacs 23.
6750
6751 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6752
6753         * nnml.el (nnml-request-expire-articles): Check if the function set to
6754         `nnmail-expiry-target' returns the symbol `delete'.
6755
6756         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
6757
6758         * nnmail.el (nnmail-expiry-target): Fix custom type.
6759
6760 2008-10-02  Glenn Morris  <rgm@gnu.org>
6761
6762         * mm-util.el (mm-codepage-setup): Tweak codepage error.
6763         Silence compiler warning.
6764
6765 2008-10-01  Magnus Henoch  <mange@freemail.hu>
6766
6767         * tls.el (open-tls-stream): Show the actual command being
6768         executed, instead of the format string.
6769
6770 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6771
6772         * lpath.el: Fbind codepage-setup for Emacs 23.
6773
6774 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
6775
6776         * mml.el (mml-menu): Don't assume mml2015 is bound.
6777
6778 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6779
6780         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
6781         exists.
6782
6783 2008-09-27  Glenn Morris  <rgm@gnu.org>
6784
6785         * gnus-util.el (mail-header-remove-comments): Autoload it.
6786
6787 2008-09-27  Andreas Schwab  <schwab@suse.de>
6788
6789         * gnus-util.el (gnus-split-references): Strip comments.
6790         (gnus-parent-id): Likewise.
6791
6792 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
6793
6794         * message.el (message-confirm-send): Fix version.
6795
6796 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6797
6798         * message.el (message-idna-to-ascii-rhs-1): Use
6799         mail-extract-address-components rather than mail-header-parse-addresses
6800         that is an alias by default to ietf-drums-parse-addresses that does not
6801         support non-ASCII names in headers' contents.
6802
6803 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
6804
6805         * message.el (message-confirm-send): Fix variable documentation to
6806         avoid the "y/n" wording.
6807
6808 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
6809
6810         * message.el (message-set-auto-save-file-name): Save to a different
6811         filename so multiple messages (especially drafts) can be recovered.
6812
6813 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
6814
6815         * message.el (message-confirm-send): Add appropriate version.
6816
6817 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
6818
6819         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
6820         defvar.
6821
6822 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
6823
6824         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
6825         (mm-pkcs7-enveloped-magic): Ditto.
6826
6827 2008-09-17  Simon Josefsson  <simon@josefsson.org>
6828
6829         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
6830         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
6831
6832 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
6833
6834         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
6835         default, it's better.
6836
6837 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
6838
6839         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
6840         summary line gnus-number property and ignore them (with a warning
6841         message).
6842
6843 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6844
6845         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
6846         macro caddr in the interactive form since it won't be expanded.
6847
6848 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6849
6850         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
6851         `charset'; fix name of function called recursively.
6852         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
6853
6854 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6855
6856         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
6857         (gnus-mime-set-charset-parameters): New function.
6858         (gnus-mime-view-part-as-charset): Use it to correctly display part
6859         specifying wrong charset.
6860
6861 2008-09-08  David Engster  <dengste@eml.cc>
6862
6863         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
6864         in completing-read for back end server.
6865
6866 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
6867
6868         * message.el (message-confirm-send): New variable to confirm sending a
6869         message.
6870         (message-send): Use it.
6871
6872 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
6873
6874         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
6875
6876 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6877
6878         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
6879
6880 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
6881
6882         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
6883         prevent tracking too many groups.
6884         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
6885         Use it.
6886
6887 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
6888
6889         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
6890         moving point to the bottom of the window in order to avoid recentering.
6891
6892 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6893
6894         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
6895
6896         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
6897         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
6898         (gnus-article-beginning-of-window): Fix calculation.
6899
6900 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
6901
6902         * gnus-msg.el (gnus-summary-supersede-article)
6903         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
6904         value of gnus-newsgroup-charset to decode non-MIME encoded text in
6905         message header.
6906
6907 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
6908
6909         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
6910         pending output coming after the status change.
6911
6912 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
6913
6914         * message.el:
6915         * gnus-start.el:
6916         * gnus-registry.el: Remove VMS support.
6917
6918 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6919
6920         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
6921         macro.
6922         (rfc2104-hash): Use it.
6923
6924 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
6925
6926         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
6927         (gnus-summary-sort-by-most-recent-date): New commands.
6928         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
6929         and menu entries.
6930
6931 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6932
6933         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
6934         don't redisplay article for raw contents; remove plural articles stuff.
6935
6936         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
6937         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
6938         on gnus-summary-save-article; display results properly.
6939
6940 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6941
6942         * lpath.el: No need to fbind ns-focus-frame.
6943
6944 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6945
6946         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
6947
6948 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6949
6950         * gnus-art.el (gnus-summary-save-in-pipe):
6951         Consider gnus-save-all-headers.
6952
6953 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
6954
6955         * gnus-util.el (ns-focus-frame): Remove declaration.
6956         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
6957         like x.
6958
6959 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
6960
6961         * rfc2104.el (rfc2104-zero): Delete defconst.
6962         (rfc2104-hex-alist): Likewise.
6963         (rfc2104-hex-to-int): Delete func.
6964         (rfc2104-hexstring-to-bitstring): Likewise.
6965         (rfc2104-nybbles): New defconst.
6966         (rfc2104-hash): Rewrite for speed.
6967
6968 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6969
6970         * tls.el (open-tls-stream): Make it work with the 2nd argument
6971         BUFFER that is a string but does not exist as a buffer object, as
6972         mentioned in the doc-string.
6973
6974 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6975
6976         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
6977         SXEmacs.
6978
6979 2008-07-16  Glenn Morris  <rgm@gnu.org>
6980
6981         * gnus-util.el (ns-focus-frame): Declare for compiler.
6982
6983 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6984
6985         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
6986         set as a group parameter.
6987         (gnus-summary-save-in-pipe): Work when it is called independently.
6988         (gnus-summary-pipe-to-muttprint): Don't modify
6989         gnus-summary-pipe-output-default-command.
6990
6991 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6992
6993         * message.el (message-send-mail-with-sendmail):
6994         Display the error message.
6995
6996 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
6997
6998         * gnus-art.el (gnus-default-article-saver):
6999         Add gnus-summary-save-in-pipe to choices.
7000         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
7001         gnus-summary-pipe-output-default-command as the default command.
7002         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
7003         instead of gnus-last-shell-command.
7004
7005         * gnus-sum.el (gnus-summary-pipe-output-default-command):
7006         New user option.
7007         (gnus-summary-muttprint-program): Mention the value will be changed.
7008         (gnus-summary-save-article): Force showing of all headers.
7009         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
7010
7011 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
7012
7013         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
7014
7015 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
7016
7017         * nnimap.el (nnimap-id):
7018         * sieve-manage.el (sieve-manage-open): Doc fixes.
7019
7020 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
7021
7022         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
7023         if available.
7024
7025 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7026
7027         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
7028
7029         * nnkiboze.el (nnkiboze-generate-group):
7030         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
7031
7032         * nnmairix.el: Require CL.
7033
7034 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7035
7036         * dgnushack.el: Autoload get-display-table and put-display-table for
7037         XEmacs 21.5.
7038
7039         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
7040         21.4 and SXEmacs.
7041
7042 2008-06-15  David Engster  <dengste@eml.cc>
7043
7044         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
7045
7046 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
7047
7048         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
7049         New macros that expand to an `aset'/`aref' call under Emacs, and to a
7050         runtime choice under XEmacs.
7051
7052         * gnus-sum.el (gnus-summary-set-display-table):
7053         Use `gnus-put-display-table', `gnus-get-display-table',
7054         `gnus-set-display-table' for the display table, instead of `aset'.
7055
7056         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
7057         Use `gnus-put-display-table', `gnus-get-display-table',
7058         `gnus-set-display-table' for the display table.
7059
7060 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
7061
7062         * nnmairix.el: Add autoloads.
7063
7064 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
7065
7066         * nnmairix.el (nnmairix-delete-recreate-group)
7067         (nnmairix-update-and-clear-marks): Fix error messages.
7068
7069 2008-06-14  David Engster  <dengste@eml.cc>
7070
7071         * nnmairix.el: Upgrade to version 0.6.
7072         (nnmairix-group-toggle-propmarks-this-group)
7073         (nnmairix-group-toggle-readmarks-this-group)
7074         (nnmairix-group-delete-recreate-this-group)
7075         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
7076         (nnmairix-remove-tick-mark-original-article): New commands.
7077         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
7078         (nnmairix-propagate-marks-to-nnmairix-groups)
7079         (nnmairix-only-use-registry, nnmairix-allowfast-default)
7080         (nnmairix-marks-cache, nnmairix-version-output): New variables.
7081         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
7082         functions needed for marks propagation and manipulation of read marks.
7083         (nnmairix-update-groups): New function.
7084         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
7085         (nnmairix-determine-original-group-from-registry)
7086         (nnmairix-determine-original-group-from-path)
7087         (nnmairix-get-group-from-file-path, nnmairix-map-range)
7088         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
7089         New helper functions.
7090         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
7091         keystrokes for new commands.
7092         (nnmairix-delete-and-create-on-change): Doc string cleanup.
7093         (nnmairix-request-group): Check allow-fast group parameter.
7094         (nnmairix-request-create-group): Set allow-fast group parameter if
7095         nnmairix-allowfast-default is set.
7096         (nnmairix-close-group): Propagate marks upon closing if needed.
7097         (nnmairix-group-toggle-threads-this-group): Use new.
7098         nnmairix-group-toggle-parameter helper function.
7099         (nnmairix-search): Better check for empty search result.
7100         (nnmairix-goto-original-article): Use new helper functions for
7101         determining original article.
7102         (nnmairix-show-original-article): Make sure message-id is in brackets.
7103         (nnmairix-call-mairix-binary): Change variable name.
7104         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
7105         helper function.
7106         (nnmairix-widget-toggle-activate): Fix doc string.
7107
7108 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7109
7110         * nnir.el: Require edmacro when compiling with XEmacs.
7111         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
7112         available in Emacs 21.
7113
7114 2008-06-11  Glenn Morris  <rgm@gnu.org>
7115
7116         * gnus-util.el (x-focus-frame):
7117         * gnus.el (image-size):
7118         * mm-decode.el (image-size): Declare.
7119
7120         * gnus-picon.el (declare-function): Add compat definition.
7121         (image-size): Declare.
7122
7123         * gnus-group.el (tool-bar-map):
7124         * gnus-sum.el (tool-bar-map): Define for compiler.
7125
7126         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
7127
7128         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
7129
7130         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
7131         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
7132         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
7133         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
7134         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
7135         * sieve-manage.el, spam-report.el, spam.el:
7136         Remove unnecessary eval-and-compile of autoloads.
7137
7138 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
7139
7140         * auth-source.el: Precise Tramp doc.
7141
7142 2008-06-07  Glenn Morris  <rgm@gnu.org>
7143
7144         * nnmairix.el: Remove unnecessary eval-when-compile.
7145
7146 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7147
7148         * lpath.el: Fbind propertize for XEmacs 21.4.
7149
7150 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
7151
7152         * nnir.el: Move here from ../contrib.
7153
7154 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7155
7156         * gnus-util.el (gnus-read-shell-command): New function.
7157         * mm-decode.el (mm-pipe-part):
7158         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
7159
7160 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7161
7162         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
7163
7164 2008-06-03  Glenn Morris  <rgm@gnu.org>
7165
7166         * pop3.el (nnheader-accept-process-output): Autoload it.
7167
7168 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7169
7170         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
7171         are not 2-digit hexadecimal characters that follow `%'s.
7172
7173 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7174
7175         * message.el (message-bogus-recipient-p): Fix type in doc string.
7176         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
7177         (message-bogus-addresses): Rename from message-bogus-address-regexp.
7178         Improve custom options.
7179         (message-bogus-recipient-p): Adjust accordingly.
7180
7181 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
7182
7183         * parse-time.el (parse-time-months, parse-time-weekdays): Add
7184         long-form month and day names.
7185
7186 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7187
7188         * dgnushack.el: Autoload debug, eudc-expand-inline and
7189         pgg-snarf-keys-region for XEmacs.
7190
7191         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
7192
7193         * nnmairix.el: Require edmacro when compiling with XEmacs.
7194
7195 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
7196
7197         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
7198         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
7199
7200 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
7201
7202         * auth-source.el: Add more docs.
7203
7204         * netrc.el (netrc-machine): Always match if the port is not given.
7205
7206 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7207
7208         * nnheader.el (nnheader-read-timeout): Change the default timeout from
7209         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
7210         retrieval faster in some cases, but might make CPU usage larger.
7211         If this has any bad side effects, we might revert this change.
7212
7213         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
7214         seems to make mail retrieval much, much faster.
7215         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
7216         unconditionally.
7217
7218         * gnus-draft.el (gnus-group-send-queue):
7219         Bind message-send-mail-partially-limit to nil to avoid being prompted.
7220
7221 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
7222
7223         * mml.el (mml-attach-buffer): Prompt for `disposition'.
7224
7225         * message.el (message-bogus-address-regexp): Fix and improve custom
7226         type.
7227         (message-setup-hook): Add message-check-recipients as custom option.
7228
7229 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
7230
7231         * message.el (message-cite-function): Remove bogus autoload which crept
7232         in during merge from v5-10.
7233
7234 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
7235
7236         * nnimap.el (nnimap-open-connection): Fix login/password bug.
7237
7238         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
7239
7240         * auth-source.el: Preliminary Tramp docs.
7241         (auth-sources): Change the default auth-sources to use
7242         EPA .gpg files.
7243
7244 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
7245
7246         * nntp.el: Autoload `auth-source-user-or-password'.
7247         (nntp-send-authinfo): Use it.
7248
7249         * nnimap.el: Autoload `auth-source-user-or-password'.
7250         (nnimap-open-connection): Use it.
7251
7252         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
7253         for the gnus-message function.
7254         (auth-source-user-or-password): Use it.
7255
7256 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7257
7258         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
7259         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
7260         (rfc2104-hash): Use it.
7261
7262 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
7263
7264         * gnus-art.el (gnus-article-toggle-truncate-lines):
7265         Don't use `iff' in docstring.
7266
7267 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
7268
7269         * gnus-registry.el: Adjusted copyright dates and added a keyword.
7270
7271         * gnus-util.el (gnus-extract-address-component-name)
7272         (gnus-extract-address-component-email): Convenience functions around
7273         `gnus-extract-address-components'.
7274
7275         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
7276         Use `gnus-extract-address-component-email' to fix bug of comparing full
7277         sender name to `user-mail-address'.
7278
7279 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
7280
7281         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
7282         catch/throw to optimize.
7283         (gnus-registry-find-keywords): Just use member to find a keyword.
7284
7285 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7286
7287         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
7288         is current before calling gnus-server-prepare.
7289         (gnus-server-setup-buffer, gnus-server-update-server)
7290         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
7291
7292 2008-05-04  Juri Linkov  <juri@jurta.org>
7293
7294         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
7295         (mailcap-file-default-commands): Use mailcap-replace-in-string
7296         instead of replace-regexp-in-string, and mailcap-delete-duplicates
7297         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
7298
7299 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
7300
7301         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
7302
7303 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7304
7305         * gnus.el: Bump version to 0.11.
7306
7307 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7308
7309         * gnus.el: No Gnus v0.10 is released.
7310
7311 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7312
7313         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
7314         hooks.
7315         (gnus-update-read-articles): Speed up non-marks-using users.
7316         (gnus-use-marks): Define gnus-use-marks.
7317         (gnus-propagate-marks): Rename variable to something more sensible.
7318
7319 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
7320
7321         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
7322         (gmm-image-load-path-for-library): Fix typos in docstrings.
7323         (gmm-message): Reflow docstring.
7324
7325 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
7326
7327         * mail-source.el (mail-source-set-1, mail-source-bind):
7328         Move auth-source code out of the macro to clean it up and fix bugs.
7329
7330 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
7331
7332         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
7333         by sender if it's equal to user-mail-address, it's likely to be
7334         useless.
7335
7336         * mail-source.el (mail-source-bind): Don't use user or password if they
7337         are not bound.  Unintern them if they are nil.  Don't use server unless
7338         it's bound, and default it to empty string otherwise.
7339
7340 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
7341
7342         * mail-source.el: Load auth-source.el.
7343         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
7344         get user name or password, if auth-sources is set up.
7345
7346         * gnus-registry.el (gnus-registry-split-strategy): New variable for
7347         strategy of splitting with parent.
7348         (gnus-registry-split-fancy-with-parent)
7349         (gnus-registry-post-process-groups): Use it and fix prior
7350         bug (returning a list as the split result).
7351
7352         * auth-source.el (auth-sources): Remove server parameter.
7353         (auth-source-pick, auth-source-user-or-password)
7354         (auth-source-user-or-password-imap)
7355         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
7356         (auth-source-user-or-password-sftp)
7357         (auth-source-user-or-password-smtp): Remove server parameter.
7358
7359 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
7360
7361         * smime.el (smime-sign-region, smime-encrypt-region)
7362         (smime-decrypt-region):
7363         Remove redundant calls to `generate-new-buffer-name'.
7364
7365 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
7366
7367         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
7368         Don't use QP for message/rfc822.
7369         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
7370
7371 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7372
7373         * sieve-manage.el (sieve-string-bytes): Remove.
7374         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
7375         correct byte-length only if the process's coding-system is the same as
7376         the one used internally by Emacs to represent strings.
7377
7378 2008-04-22  Juri Linkov  <juri@jurta.org>
7379
7380         * mailcap.el (mailcap-file-default-commands): New function.
7381
7382 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
7383
7384         * message.el (message-signature-separator, message-cite-function):
7385         Change custom version.
7386
7387 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
7388
7389         * tls.el (tls-program): Add -ign_eof argument to call the openssl
7390         commands.
7391         (tls-checktrust): Ditto.
7392
7393 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
7394
7395         * mm-decode.el (mm-display-external): Make temp file read-only.
7396
7397 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
7398
7399         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
7400         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
7401         `C-c C-f d'.
7402
7403 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
7404
7405         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
7406
7407 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
7408
7409         * gnus.el: Bump version to 0.9.
7410
7411 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
7412
7413         * gnus.el: No Gnus v0.8 is released.
7414
7415 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7416
7417         * mail-source.el (mail-source-value):
7418         Prefer fboundp to functionp so it works with macros as well.
7419
7420 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7421
7422         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
7423         Fix last change in case the element is not even a symbol.
7424
7425 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7426
7427         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
7428         Prefer fboundp to functionp so it works with macros as well.
7429
7430 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
7431
7432         * auth-source.el: Add docs.
7433         (auth-sources): Modify format to support server.
7434         (auth-source-pick, auth-source-user-or-password)
7435         (auth-source-user-or-password-imap)
7436         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
7437         (auth-source-user-or-password-sftp)
7438         (auth-source-user-or-password-smtp): Add server parameter.
7439
7440 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
7441
7442         * gnus-registry.el: Initialize the registry when gnus-registry-install
7443         is t.
7444
7445 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
7446
7447         * compface.el (uncompface): Make buffer unibyte.
7448
7449 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7450
7451         * mail-source.el (mail-source-value):
7452         Prefer fboundp to functionp so it works with macros as well.
7453
7454 2008-04-05  Glenn Morris  <rgm@gnu.org>
7455
7456         * gnus-ems.el (mm-disable-multibyte): Autoload it.
7457
7458 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7459
7460         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
7461         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
7462
7463         * nnheader.el (nnheader-init-server-buffer): Change buffer's
7464         multibyteness after rather than before erasing it.
7465
7466         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
7467         mm-with-multibyte.
7468         (gnus-request-article-this-buffer): Make sure the proper decoding is
7469         used if gnus-original-article-buffer happens to be unibyte.
7470
7471         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
7472         default-enable-multibyte-characters.
7473
7474         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
7475         default-enable-multibyte-characters.
7476
7477         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
7478
7479         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
7480
7481 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7482
7483         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
7484         Fix last change in case the element is not even a symbol.
7485
7486 2008-04-02  Simon Josefsson  <simon@josefsson.org>
7487
7488         * imap.el (imap-enable-exchange-bug-workaround): New variable.
7489         (imap-message-copyuid-1): Use it.
7490         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
7491         J. Williams in
7492         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
7493
7494         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
7495         imap-enable-exchange-bug-workaround.
7496         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
7497
7498 2008-04-01  Simon Josefsson  <simon@josefsson.org>
7499
7500         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
7501         a 100 byte status-checks into a 2-3MB transfer for each group.
7502         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
7503         to enable bug workaround or not.
7504         (nnimap-find-minmax-uid): Only enable workaround conditionally.
7505
7506 2008-03-31  Glenn Morris  <rgm@gnu.org>
7507
7508         * message.el (mml2015-use): Declare for compiler.
7509         (message-info): Require mml2015 when appropriate.
7510
7511 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7512
7513         * Makefile.in (EMACS_COMP): Quote directory name that might contain
7514         whitespace.
7515
7516 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
7517
7518         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
7519         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
7520         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
7521         (nntp-service-to-port): New function.
7522         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
7523         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
7524         (nntp-open-netcat-stream): New function.
7525         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
7526
7527 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
7528
7529         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
7530
7531 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7532
7533         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
7534
7535 2008-03-28  Magnus Henoch  <mange@freemail.hu>
7536
7537         * dns.el (dns-write): Use set-buffer-multibyte.
7538
7539 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
7540
7541         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
7542
7543 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
7544
7545         * message.el (message-signature-separator): Change default.
7546         Improve custom type.
7547         (message-cite-function): Change default to
7548         message-cite-original-without-signature.
7549
7550         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
7551         toggle.
7552
7553         * message.el (message-check-news-body-syntax): Fix signature check.
7554         (message-setup-1): Mark buffer as unmodified _after_ running
7555         message-setup-hook and handling message-alternative-emails.
7556         (message-shorten-references): Be more strict when building list of
7557         valid references to comply with GNKSA.
7558
7559         * gnus-group.el (gnus-read-ephemeral-bug-group)
7560         (gnus-read-ephemeral-debian-bug-group)
7561         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
7562
7563         * message.el (message-info): Don't use booleanp which isn't supported
7564         in Emacs 21 and XEmacs.
7565
7566 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
7567
7568         * gnus-group.el (gnus-gmane-group-download-format): Rename from
7569         gnus-group-gmane-group-download-format.
7570         (gnus-group-read-ephemeral-gmane-group): Rename from
7571         gnus-group-read-ephemeral-gmane-group.
7572         (gnus-read-ephemeral-gmane-group-url): Rename from
7573         gnus-group-read-ephemeral-gmane-group-url.
7574         (gnus-bug-group-download-format-alist): New variable.
7575         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
7576         (gnus-read-ephemeral-emacs-bug-group): New commands.
7577
7578 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
7579
7580         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
7581         (gnus-visible-headers): Improve custom type.
7582
7583 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
7584
7585         * mml.el (mml-menu): Add workarounds for XEmacs.
7586
7587         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
7588         X-Boundary header.
7589
7590         * message.el (message-simplify-recipients): Fix previous commit.
7591
7592 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7593
7594         * mm-util.el (mm-set-buffer-multibyte): New function.
7595         * mm-decode.el (mm-copy-to-buffer): Use it.
7596
7597         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
7598         Prefer fboundp to functionp so it works with macros as well.
7599
7600 2008-03-19  Glenn Morris  <rgm@gnu.org>
7601
7602         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
7603         Accidentally removed in the sync process with Emacs.
7604
7605 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
7606
7607         * message.el (message-alter-recipients-discard-bogus-full-name):
7608         New function.
7609         (message-alter-recipients-function): New variable.
7610         (message-get-reply-headers): Use it.
7611         (message-replace-header): New helper function.
7612         (message-recipients-without-full-name): New variable.
7613         (message-simplify-recipients): New command.
7614
7615         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
7616
7617         * message.el (message-info): Handle EasyPG manual.
7618
7619         * mml.el (mml-menu): Add entry for EasyPG.
7620
7621 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
7622
7623         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
7624         parameter.
7625
7626         * message.el (message-disassociate-draft): Specify drafts group name
7627         fully.
7628
7629 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
7630
7631         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
7632         Eliminate unnecessary duplicates from the match list.
7633
7634 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7635
7636         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
7637
7638         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
7639
7640         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
7641         args of `how-many' of which the XEmacs version doesn't take; declare
7642         Info-index-next as function.
7643
7644 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
7645
7646         * gnus-score.el (gnus-score-headers): Fix handling of
7647         gnus-inhibit-slow-scoring.
7648
7649         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
7650         string.
7651         (gnus-button-url-regexp): Improve handling of parenthesis.
7652         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
7653         (gnus-button-handle-info-keystrokes): Handle index entries.
7654
7655 2008-03-15  Glenn Morris  <rgm@gnu.org>
7656
7657         * parse-time.el (parse-time-string): Simplify.
7658
7659 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7660
7661         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
7662         Incoming* files.
7663
7664 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
7665
7666         * auth-source.el (auth-sources): Rename from auth-source-choices.
7667         (auth-source-pick): Use it.
7668
7669 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7670
7671         * binhex.el (binhex-decode-region-internal):
7672         * uudecode.el (uudecode-decode-region-internal):
7673         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
7674         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
7675         setting default-enable-multibyte-characters.
7676
7677 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
7678
7679         * auth-source.el (auth-source-protocols)
7680         (auth-source-protocols-customize, auth-source-choices): Add and
7681         modified variable customizations and defaults.
7682         (auth-source-pick, auth-source-user-or-password)
7683         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
7684         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
7685         (auth-source-user-or-password-sftp)
7686         (auth-source-user-or-password-smtp): Use new variables and provide an
7687         interface to netrc.el.
7688
7689 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7690
7691         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
7692         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
7693         Make sure the nntp port to specify is a string.
7694
7695 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7696
7697         * nntp.el: Use with-current-buffer.
7698         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
7699         dubious mm-with-unibyte-current-buffer.
7700         (nntp-with-open-group-function): New function extracted from
7701         nntp-with-open-group macro.
7702         (nntp-with-open-group): Use the function, so it's easier to debug.
7703         Add indentation and debugging info.
7704         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
7705         Recommend the use of the netcat alternatives.
7706
7707         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
7708         Avoid mm-string-as-multibyte as well.
7709
7710         * nnweb.el (nnweb-insert-html):
7711         Remove use of nnheader-string-as-multibyte.
7712
7713         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
7714         (nnheader-string-as-multibyte): Remove.
7715
7716         * mm-view.el: Use inhibit-read-only.
7717         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
7718         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
7719         or unibyte-string.
7720
7721         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
7722         (mm-uu-yenc-extract): Use with-current-buffer.
7723
7724         * gnus-soup.el (gnus-soup-send-packet): Don't use
7725         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
7726
7727         * nnmh.el: Use with-current-buffer.
7728         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
7729         mm-string-as-multibyte on the output of mm-encode-coding-string.
7730
7731         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
7732         (nnimap-request-move-article): Use with-current-buffer.
7733
7734         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
7735         inserting the handle-buffer's text, so the implicit multibyte->unibyte
7736         conversion uses string-make-unibyte rather than string-as-unibyte.
7737
7738         * gnus-msg.el: Use with-current-buffer.
7739
7740         * message.el (message-ignored-resent-headers): Add "Delivered-To".
7741
7742 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
7743
7744         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
7745         string for caching if it is 'PIN.
7746
7747 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7748
7749         * lpath.el: Consider the case without Emacs/W3.
7750
7751 2008-03-08  Glenn Morris  <rgm@gnu.org>
7752
7753         * time-date.el (date-to-time, time-subtract, time-add)
7754         (safe-date-to-time): Doc fixes.
7755
7756 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
7757
7758         * mail-source.el (mail-source-delete-old-incoming-confirm):
7759         Change default to nil.
7760         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
7761
7762 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7763
7764         * lpath.el: Rearrange.
7765
7766         * gnus-art.el (gnus-narrow-to-page): Position point properly.
7767         (gnus-article-goto-prev-page): Work for articles having ^L's.
7768
7769         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
7770
7771         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
7772
7773 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
7774
7775         * gnus-bookmark.el: Adjust for renames in bookmark.el.
7776         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
7777         (gnus-bookmark-jump): Adjust some variable names.
7778
7779 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
7780
7781         * auth-source.el: New package.
7782         (auth-source-choices): Add customization entry point variable.
7783
7784         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
7785         bug.
7786
7787 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
7788
7789         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
7790         (gnus-registry-initialize, gnus-registry-install-p): Use it.
7791         (gnus-registry-install-shortcuts): Rename from
7792         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
7793         the `gnus-registry-mark-map' keymap dynamically from
7794         `gnus-registry-marks'.  The generated functions update the summary line
7795         when a registry mark is added or deleted, and will call
7796         `gnus-registry-install-p' (see the comments in the code).
7797         (gnus-registry-user-format-function-M): Use concat intelligently.
7798
7799         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
7800         the registry mark functions.
7801
7802 2008-03-05  Glenn Morris  <rgm@gnu.org>
7803
7804         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
7805         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
7806         gnus-art.
7807         (top-level): No need to load own source when compiling.
7808
7809 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
7810
7811         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
7812         Suggested by <chris.anderton@zetnet.co.uk>.
7813
7814 2008-03-04  Glenn Morris  <rgm@gnu.org>
7815
7816         * gnus-sum.el (top-level): No need to require gnus when compiling,
7817         since unconditionally required near start of file.
7818         (gnus-summary-display-while-building): Move definition before use.
7819
7820 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
7821
7822         * gnus-registry.el (gnus-registry-user-format-function-M):
7823         Add formatting function.
7824
7825 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
7826
7827         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
7828         with plists.
7829         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
7830         Use new format.
7831
7832 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7833
7834         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
7835         `where-is-internal' that returns a range of key sequences.
7836
7837 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7838
7839         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
7840
7841         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
7842         (gnus-summary-jump-to-group): Consider windows on other displayed
7843         frames as well.  Similar changes might be needed elsewhere, but that's
7844         the one I've bumped into during my use.
7845
7846         * nndoc.el (nndoc-oe-dbx-type-p):
7847         * gnus-msg.el (gnus-debug):
7848         * gnus-group.el (gnus-update-group-mark-positions):
7849         Use mm-string-to-multibyte.
7850
7851 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
7852
7853         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
7854         doesn't handle NotDashEscaped.
7855
7856         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
7857         (mml-dnd-attach-options): Fix typo in custom choice.
7858
7859         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
7860         Change nndoc-article-type to mbox.
7861         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
7862
7863         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
7864         to nil, instead of html2text.
7865
7866         * imap.el (imap-debug): Add `imap-ping-server'.
7867
7868         * gnus-bookmark.el: Add FIXMEs.
7869
7870         * message.el (message-form-letter-separator)
7871         (message-send-form-letter-delay): New variables.
7872         (message-send-form-letter): Use them.  New command to send form
7873         letters.  Requested by Uwe Siart.
7874         (message-send-mail-function): Doc fix.  Add "Other" custom option.
7875
7876 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
7877
7878         * Update copyright years.
7879
7880 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
7881
7882         Sync from EMACS_22_BASE.
7883
7884         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
7885
7886 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
7887
7888         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
7889         empty author.
7890
7891 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
7892
7893         * gnus-registry.el (gnus-registry-marks): Add variable for
7894         customization of marks and their appearance.
7895         (gnus-registry-read-mark): Use it.
7896         (gnus-registry-do-marks): Add utility function to loop through
7897         `gnus-registry-marks'.
7898         (gnus-registry-install-shortcuts-and-menus): Add function to install
7899         shortcuts and menus.
7900         (gnus-registry-initialize): Use it.
7901         (gnus-registry-default-mark): Clarify documentation.
7902
7903 2008-02-29  Glenn Morris  <rgm@gnu.org>
7904
7905         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
7906         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
7907         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
7908         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
7909         Change defcustom :version from 23.0 to 23.1.
7910
7911 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
7912
7913         * gnus-registry.el (gnus-registry-follow-group-p)
7914         (gnus-registry-post-process-groups): Add functions to aid registry
7915         splitting and improve logging.  Clarify behavior in function
7916         documentation.
7917         (gnus-registry-split-fancy-with-parent): Use them.
7918
7919 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7920
7921         * gnus-art.el: Use with-current-buffer.
7922
7923 2008-02-27  David Engster  <dengste@eml.cc>
7924
7925         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
7926         Express real group name in the response.
7927
7928 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7929
7930         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
7931         (nnmairix-last-server, nnmairix-current-server): Defvar them.
7932         (nnmairix-goto-original-article): Defvar gnus-registry-install and
7933         autoload gnus-registry-fetch-group when compiling.
7934         (nnmairix-request-group-with-article-number-correction):
7935         Remove unreferenced argument passed to nnmairix-call-backend.
7936
7937 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
7938
7939         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
7940         (mm-uu-extract): Improve face for low color ttys.
7941         Reported by Sascha Wilde.
7942
7943 2008-02-27  Glenn Morris  <rgm@gnu.org>
7944
7945         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
7946         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
7947         variables to defconsts.  Convert comments to doc-strings.
7948         (nnmairix-last-server, nnmairix-current-server): Convert from free
7949         variables to defvars.  Convert comments to doc-strings.
7950         (gnus-registry-fetch-group): Autoload.
7951         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
7952         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
7953         (nnmairix-widget-build-editable-fields): Use car cddr rather than
7954         caddr.
7955         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
7956         nnmairix-request-group-with-article-number-correction call.
7957         (nnmairix-fast, nnmairix-group): New, less general names, for free
7958         variables passed from nnmairix-request-group to
7959         nnmairix-request-group-with-article-number-correction.  Declare.
7960         (nnmairix-request-group-with-article-number-correction):
7961         Use nnmairix-fast, nnmairix-group rather than fast, group.
7962
7963 2008-02-26  David Engster  <dengste@eml.cc>
7964
7965         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
7966         version 0.5.
7967
7968 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
7969
7970         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
7971         instead of making an extra function call.  Don't add the current group
7972         to articles only when they have the group.  Use
7973         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
7974         Reported by David <de_bb@arcor.de>.
7975
7976 2008-02-24  Miles Bader  <miles@gnu.org>
7977
7978         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
7979         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
7980         (mm-find-mime-charset-region):
7981         * mm-bodies.el (mm-encode-body):
7982         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
7983
7984 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7985
7986         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
7987         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
7988
7989 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
7990
7991         * mail-source.el (mail-source-delete-incoming): Change default.
7992         Supplement doc string.
7993
7994         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
7995
7996 2008-02-14  Glenn Morris  <rgm@gnu.org>
7997
7998         * time-date.el (format-seconds): New function.
7999
8000 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
8001
8002         * nnmail.el (nnmail-message-id-cache-file): Derive from
8003         `gnus-home-directory'.
8004
8005 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
8006
8007         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
8008         Document negative prefix.
8009
8010         * gnus-group.el (gnus-group-read-group): Document negative prefix.
8011
8012 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8013
8014         * message.el (message-unsent-separator): Add the Exim bounce
8015         separator.
8016
8017 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
8018
8019         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
8020         list.
8021         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
8022         recipient/signer list.
8023
8024 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8025
8026         * Makefile.in (datarootdir): Define.
8027         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
8028         name that might contain whitespace.
8029
8030 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
8031
8032         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
8033         fbound (Emacs 23 unicode), signal an error.
8034
8035 2008-02-08  Glenn Morris  <rgm@gnu.org>
8036
8037         * gnus-art.el (pgg-display-output-buffer): Declare as function.
8038
8039 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
8040
8041         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
8042         ports to the calls to `netrc-machine-user-or-password' in addition to
8043         "imap" and "imaps".
8044
8045 2008-02-01  Zhang Wei  <id.brep@gmail.com>
8046
8047         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
8048
8049         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
8050
8051 2008-02-01  Kenichi Handa  <handa@m17n.org>
8052
8053         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
8054         rfc2104-hexstring-to-bitstring and changed to return a byte list.
8055         (rfc2104-hash): Convert the result of concat to unibyte string.
8056
8057 2008-02-01  Dave Love  <fx@gnu.org>
8058
8059         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
8060         coding-system-for-read.
8061         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
8062
8063 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
8064
8065         * gnus.el (gnus-group-startup-message): Add `find-image' call before
8066         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
8067         <hanche@math.ntnu.no>.
8068
8069 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8070
8071         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
8072
8073         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
8074
8075 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
8076
8077         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
8078         * message.el (message-beginning-of-line): Use featurep instead of bound
8079         tests in order to resolve conditionals at compile time.
8080
8081 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
8082
8083         * mail-source.el (mail-sources): Add `group' choice.
8084
8085         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
8086         parameter `in-group' to control into which group the articles go.
8087         Add treatment of `group' mail-source.
8088
8089 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8090
8091         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
8092
8093         * mm-decode.el (mm-dissect-buffer): Decode description.
8094
8095         * mml.el (mml-to-mime): Encode message header first.
8096
8097 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8098
8099         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
8100         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
8101
8102         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
8103         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
8104
8105 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
8106
8107         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
8108
8109 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8110
8111         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
8112         prefix keys.
8113         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
8114         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
8115         gnus-xmas.el.
8116
8117         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
8118         (gnus-xmas-article-describe-bindings): New function.
8119         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
8120         gnus-xmas-article-describe-bindings.
8121
8122         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
8123
8124 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
8125
8126         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
8127         Add new variables for article mark management.
8128         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
8129         list of extra data entries which, when present, will indicate that the
8130         article ID should not be trimmed from the registry.
8131         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
8132         functions.
8133         (gnus-registry-read-mark): New function to read a mark name from the
8134         user.
8135         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
8136         (gnus-registry-set-article-mark-internal): New functions to add and
8137         remove marks.
8138         (gnus-registry-get-article-marks): New function to show the marks for
8139         an article, or retrieve them for further use.
8140
8141 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8142
8143         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
8144         keys when no argument is given.
8145
8146 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
8147
8148         * imap.el (imap-ping-server): New variable.
8149         (imap-opened): On add extra ping if imap-ping-server is non-nil.
8150         (imap-ping-server): Minor doc string fixes.
8151
8152 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
8153
8154         * imap.el (imap-ping-server): New function.
8155         (imap-opened): Call imap-ping-server.
8156
8157 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
8158
8159         * gnus-sum.el (gnus-article-sort-by-random)
8160         (gnus-thread-sort-by-random): Fix doc strings.
8161         Reported by jidanni@jidanni.org.
8162
8163 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8164
8165         * gnus-art.el (gnus-article-describe-bindings): New function.
8166         (gnus-article-read-summary-keys): Use it.
8167         (gnus-article-mode-map): Bind `C-h b' to it.
8168
8169 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8170
8171         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
8172         XEmacs.
8173         (gnus-article-describe-key, gnus-article-describe-key-briefly):
8174         Protect against non-character events.
8175
8176         * lpath.el: Fbind map-keymap for Emacs 21.
8177
8178 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
8179
8180         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
8181         New command.
8182         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
8183         instead of END.  Change name of the temp file.
8184         (gnus-group-gmane-group-download-format): Add doc string.  Make it
8185         customizable.
8186
8187 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8188
8189         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
8190         bind `S W' to gnus-article-wide-reply-with-original; set default
8191         binding to gnus-article-read-summary-send-keys.
8192         (gnus-article-read-summary-keys): Fix the order of keys; display
8193         continuation keys correctly in the echo area; describe bindings
8194         correctly when keys end with `C-h'.
8195         (gnus-article-read-summary-send-keys): New function.
8196         (gnus-article-describe-key, gnus-article-describe-key-briefly):
8197         Work for gnus-article-read-summary-send-keys; display continuation keys
8198         correctly in the echo area.
8199         (gnus-article-reply-with-original): Ignore prefix argument.
8200         (gnus-article-wide-reply-with-original): New function.
8201
8202         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
8203         Emacs 21.
8204
8205 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8206
8207         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
8208         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
8209
8210 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
8211
8212         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
8213         (gnus-group-read-ephemeral-gmane-group): New command.
8214
8215 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
8216
8217         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
8218
8219 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
8220
8221         * message.el (message-send-mail-function): Increase custom version.
8222
8223         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
8224         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
8225
8226 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
8227
8228         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
8229         for the cases where imap-authenticate is called with a nil buffer
8230         parameter.
8231
8232 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8233
8234         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
8235         html parts correctly; support forwarded messages.
8236         (gnus-article-browse-html-article): Remove work buffers.
8237
8238         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
8239         compiling.
8240         (netrc-bound-and-true-p): New macro.
8241         (netrc-parse): Use it instead of bound-and-true-p that is not available
8242         in XEmacs 21.4.
8243
8244 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
8245
8246         * gnus-registry.el (gnus-registry-mark-article)
8247         (gnus-registry-article-marks): Add functionality to mark articles
8248         through the Gnus registry.
8249
8250         * encrypt.el: Clarify documentation for the new pgg method.
8251         (encrypt-file-alist): Add PGG option.
8252         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
8253         functionality.  Abstract password key and messaging to external
8254         functions.
8255         (encrypt-password-key, encrypt-get-passphrase-if-needed)
8256         (encrypt-message-method-and-cipher): Add new convenience external
8257         functions.
8258         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
8259         (encrypt-pgg-process-buffer): Add PGG functionality glue.
8260
8261         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
8262         (netrc-parse): Use encrypt-file-alist to determine if
8263         encrypt-find-model or encrypt-insert-file-contents should be used.
8264
8265         * encrypt.el: Clarify documentation.  Load password-cache or
8266         password, whichever one is found first, instead of autoloading.
8267
8268 2007-12-19  Glenn Morris  <rgm@gnu.org>
8269
8270         * mml.el (message-options-set, message-narrow-to-head)
8271         (message-in-body-p, message-mail-p, message-encode-message-body):
8272         Autoload.
8273         (message-remove-header, message-narrow-to-headers-or-head)
8274         (message-subscribed-p, message-make-mail-followup-to)
8275         (message-position-on-field, message-news-p)
8276         (message-options-set-recipient, message-generate-headers)
8277         (message-sort-headers): Declare as functions.
8278
8279 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
8280
8281         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
8282         convention in doc string.
8283
8284 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8285
8286         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
8287         title to html parts.
8288         (gnus-article-browse-html-article): Pass message header to it.
8289
8290         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
8291
8292 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
8293
8294         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
8295         or password compatible with XEmacs.
8296
8297 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
8298
8299         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
8300         format document.
8301         (gnus-mime-delete-part): Don't write description line if empty.
8302         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
8303
8304 2007-12-14  Johan BockgÃ¥rd  <bojohan@gnu.org>
8305
8306         * gnus-sum.el (gnus-summary-mark-unread-as-read)
8307         (gnus-summary-mark-read-and-unread-as-read)
8308         (gnus-summary-mark-current-read-and-unread-as-read)
8309         (gnus-summary-mark-unread-as-ticked): Doc fix.
8310         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
8311
8312 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
8313
8314         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
8315         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
8316
8317 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
8318
8319         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
8320         yes-or-no-p.
8321
8322 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8323
8324         * mm-decode.el (mm-add-meta-html-tag): New function.
8325         (mm-save-part-to-file, mm-pipe-part): Use it.
8326
8327         * gnus-art.el (gnus-article-browse-delete-temp-files):
8328         Use gnus-y-or-n-p instead of y-or-n-p.
8329         (gnus-article-browse-html-parts): Work with message/external-body; use
8330         mm-add-meta-html-tag.
8331
8332 2007-12-11  Glenn Morris  <rgm@gnu.org>
8333
8334         * gnus-cache.el: Require gnus-sum not just when compiling.
8335
8336         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
8337
8338         * gnus-int.el (gnus-server-opened, gnus-status-message):
8339         Move definitions before use.
8340
8341         * mm-decode.el: Require gnus-util.
8342         (mm-remove-part): Only call delete-annotation on XEmacs.
8343
8344         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
8345
8346         * nnmail.el: Require gnus-int.
8347
8348         * spam.el: Move `require's before `eval-when-compile's.
8349
8350         * gnus-ems.el (gnus-alive-p):
8351         * gnus-fun.el (message-goto-eoh):
8352         * gnus-util.el (gnus-group-name-decode):
8353         * mail-source.el (gnus-compress-sequence):
8354         * message.el (Info-goto-node, format-spec):
8355         * mm-bodies.el (message-options-get):
8356         * mm-decode.el (mm-view-pkcs7):
8357         * mm-util.el (gmm-write-region):
8358         * mml-smime.el (mml-compute-boundary)
8359         (gnus-completing-read-with-default):
8360         * mml.el (widget-button-press, gnus-make-hashtable):
8361         * mml1991.el (mm-decode-content-transfer-encoding)
8362         (mm-encode-content-transfer-encoding)
8363         (message-options-get, message-options-set):
8364         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
8365         * nnfolder.el (gnus-request-group):
8366         * nnheader.el (ietf-drums-unfold-fws):
8367         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
8368         * smime.el (gnus-run-mode-hooks):
8369         * spam-stat.el (gnus-message): Autoload.
8370
8371         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
8372         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
8373         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
8374         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
8375         Add declare-function compatibility definition.
8376
8377         * gnus-cache.el (nnvirtual-find-group-art):
8378         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
8379         (gnus-add-image, gnus-add-wash-type):
8380         * gnus-group.el (nnkiboze-score-file):
8381         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
8382         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
8383         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
8384         (message-tokenize-header, gnus-get-buffer-create)
8385         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
8386         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
8387         * gnus.el (gnus-group-decoded-name):
8388         * mail-source.el (imap-capability):
8389         * mm-bodies.el (message-options-set):
8390         * mm-decode.el (gnus-configure-windows):
8391         * mm-extern.el (message-goto-body):
8392         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
8393         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
8394         (epg-sub-key-validity, message-options-set):
8395         * mml.el (widget-event-point, gnus-configure-windows):
8396         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
8397         * mml2015.el (epg-check-configuration, epg-configuration)
8398         (message-options-set):
8399         * nndb.el (nndb-request-article):
8400         * nnfolder.el (gnus-request-create-group):
8401         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
8402         * nnmaildir.el (gnus-group-mark-article-read):
8403         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
8404         * rfc1843.el (message-fetch-field):
8405         * spam.el (gnus-extract-address-components):
8406         Declare as functions.
8407
8408 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8409
8410         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
8411
8412         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
8413
8414         * lpath.el: Fbind run-mode-hooks for Emacs 21;
8415         bind show-trailing-whitespace for XEmacs.
8416
8417 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
8418
8419         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
8420         new no-op macro for backward compatibility.
8421
8422         * imap.el (imap-string-to-integer): New function.
8423
8424 2007-12-09  Glenn Morris  <rgm@gnu.org>
8425
8426         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
8427
8428         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
8429         * message.el, mm-view.el, sieve-manage.el, smime.el:
8430         Add declare-function compatibility definition.
8431
8432         * gnus-art.el (w3-region, w3m-region, Info-menu):
8433         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
8434         * gnus-sum.el (gnus-get-predicate):
8435         * gnus-util.el (mm-append-to-file, w32-focus-frame):
8436         * message.el (mail-abbrev-in-expansion-header-p):
8437         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
8438         (w3m-detect-meta-charset, w3m-region):
8439         * sieve-manage.el (password-read, password-cache-add)
8440         (password-cache-remove):
8441         * smime.el (password-read-and-add): Declare as functions.
8442
8443 2007-12-08  David Kastrup  <dak@gnu.org>
8444
8445         * gnus-sum.el (gnus-summary-simplify-subject-query):
8446         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
8447         `message'.
8448
8449 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8450
8451         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
8452         it to bind idna-program, installation-directory, defined-colors, and
8453         face-attribute for XEmacs of the version that compiles defcustom forms.
8454
8455 2007-12-07  Glenn Morris  <rgm@gnu.org>
8456
8457         * gnus-art.el (article-make-date-line): Revert previous change.
8458
8459 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
8460
8461         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
8462
8463 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
8464
8465         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
8466         Call gnus-add-to-range ranges only once with a prepared article-list.
8467
8468 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
8469
8470         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
8471         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
8472         group names with backslashes.
8473         Reported by Tassilo Horn <tassilo@member.fsf.org>.
8474
8475 2007-12-06  Deepak Goel  <deego3@gmail.com>
8476
8477         * gnus-art.el (article-make-date-line):
8478         * gnus-start.el (gnus-load):
8479         * pop3.el (pop3-read-response): Fix buggy call to `error'.
8480
8481 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8482
8483         * gnus-art.el (gnus-use-idna)
8484         * gnus-start.el (gnus-site-init-file)
8485         * message.el (message-use-idna)
8486         * mm-uu.el (mm-uu-hide-markers)
8487         * smiley.el (smiley-style): Revert changes that suppress warnings.
8488
8489 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8490
8491         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
8492         specify charset to html source.
8493         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
8494
8495 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8496
8497         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
8498         idna-program in order to suppress byte compile warning issued by XEmacs
8499         that came to byte compile the default value section of defcustom forms
8500         recently.
8501
8502         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
8503         value of installation-directory.
8504
8505         * message.el (message-use-idna): Don't directly refer to the value of
8506         idna-program.
8507
8508         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
8509
8510         * smiley.el (smiley-style): Don't directly call face-attribute.
8511
8512 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
8513
8514         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
8515
8516         * gnus-dired.el: Reduce Gnus dependencies.
8517         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
8518         Don't require.  Use autoloads instead.
8519         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
8520         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
8521         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
8522         (gnus-dired-mode): Adjust doc string.
8523         (gnus-dired-mail-mode): New variable.
8524         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
8525         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
8526         (gnus-dired-mail-buffers): New function.  Return mail or message
8527         composition buffers.
8528         (gnus-dired-attach): Use it.
8529         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
8530         NO-DECODE.
8531         (gnus-dired-print): Use `gnus-print-buffer' depending on
8532         `gnus-dired-mail-mode'.
8533
8534 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8535
8536         * rfc2047.el (rfc2047-encoded-word-regexp)
8537         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
8538         explaining what regexp patterns are for.
8539
8540 2007-12-04  Glenn Morris  <rgm@gnu.org>
8541
8542         * password.el: Move to password-cache.el.
8543
8544         * mml1991.el (password-read, password-cache-add, password-cache-remove):
8545         * mml2015.el (password-read, password-cache-add, password-cache-remove):
8546         * mml-smime.el (password-read, password-cache-add)
8547         (password-cache-remove):
8548         No need to autoload, since mml-sec requires password.
8549
8550         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
8551         * message.el (gnus-extract-address-components):
8552         * mml-smime.el (gnus-extract-address-components): Define for compiler.
8553
8554         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
8555         password.
8556
8557 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
8558
8559         * mailcap.el: Reduce dependencies.
8560         (mail-header-parse-content-type): Autoload.
8561         (mailcap-delete-duplicates): New alias.
8562         (mailcap-mime-info): Add optional argument NO-DECODE.
8563         (mailcap-mime-types): Use mailcap-delete-duplicates.
8564
8565         * message.el (message-ignored-supersedes-headers): Add "X-ID".
8566
8567 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
8568
8569         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
8570         (imap-parse-status): Upcase status-att for servers that sends them
8571         lower-case (e.g., MS Exchange 2007).
8572
8573 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8574
8575         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
8576         function.
8577
8578         * gnus-uu.el (gnus-uu-decode-yenc): New command.
8579         (gnus-uu-yenc-article): New function.
8580
8581         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
8582
8583         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
8584
8585 2007-12-02  Glenn Morris  <rgm@gnu.org>
8586
8587         * binhex.el (binhex): New custom group.
8588         (binhex-decoder-program, binhex-decoder-switches)
8589         (binhex-use-external): Move to the binhex custom group.
8590
8591         * uudecode.el (uudecode): New custom group.
8592         (uudecode-decoder-program, uudecode-decoder-switches)
8593         (uudecode-use-external): Move to the uudecode custom group.
8594
8595         * netrc.el (top-level): Don't load `encrypt' features.
8596         (netrc-parse): Don't use encrypt.
8597         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
8598
8599         * encrypt.el: Remove file.
8600
8601 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
8602
8603         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
8604         matches on patches.
8605
8606         * gnus-art.el (gnus-article-browse-html-article):
8607         Mention `mm-text-html-renderer' in the doc string.
8608
8609         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
8610         string.  Add comments.
8611
8612         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
8613         if rhs is ASCII.
8614
8615 2007-12-01  Glenn Morris  <rgm@gnu.org>
8616
8617         * mail-source.el (top-level): Require format-spec before
8618         eval-when-compile.
8619
8620 2007-11-30  Glenn Morris  <rgm@gnu.org>
8621
8622         * encrypt.el: Require password, rather than autoloading password-read.
8623
8624 2007-11-29  Glenn Morris  <rgm@gnu.org>
8625
8626         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
8627         (sasl-make-client, sasl-next-step, sasl-step-data)
8628         (sasl-step-set-data): Declare as functions.
8629
8630 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
8631
8632         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
8633
8634 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
8635
8636         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
8637         certs should be verified and what is to be done in the event of a
8638         verification failure.
8639
8640         * gnus.el (gnus-method-to-server): Add an optional parameter so the
8641         caller can indicate whether the cache should be disregarded for this
8642         call.  This way the result of the call is reproducible at all times and
8643         can be considered a canonical server name for the supplied method.
8644         (gnus-agent-method-p): Canonicalize server names by pushing their
8645         method through `gnus-method-to-server' using the no-cache argument.
8646
8647         * gnus-srvr.el (gnus-server-insert-server-line):
8648         Call `gnus-method-to-server' with `no-cache' argument.
8649
8650         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
8651         gnus-agent-possibly-synchronize-flags as this should be called when the
8652         server is actually being opened.
8653         (gnus-agent-possibly-synchronize-flags)
8654         (gnus-agent-possibly-synchronize-flags-server): Move check for the
8655         flags file of an agentized server to the latter function.
8656
8657         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
8658         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
8659         after a connection has been established successfully.
8660
8661 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8662
8663         * gnus-art.el (article-display-face): Force to display face if called
8664         interactively; check if gnus-article-x-face-too-ugly matches author.
8665         (article-display-x-face): Display face even if From header is missing
8666         as article-display-face does.
8667
8668 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
8669
8670         * hashcash.el (message-narrow-to-headers-or-head)
8671         (message-fetch-field, message-goto-eoh)
8672         (message-narrow-to-headers): Declare as functions.
8673
8674 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
8675
8676         * mail-source.el (mail-sources): Default to fetch from file for
8677         compatibility with default of nnmail-spool-file.
8678
8679 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
8680
8681         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
8682         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
8683         to look for encoded word that should be encoded again.
8684         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
8685         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
8686         encoding pattern.
8687         (rfc2047-decode-region): Switch strict regexp and loose one according
8688         to rfc2047-allow-irregular-q-encoded-words.
8689
8690 2007-11-25  Romain Francoise  <romain@orebokech.com>
8691
8692         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
8693
8694 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
8695
8696         * tls.el (tls-program): Provide more custom choices from
8697         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
8698         (tls-process-connection-type, tls-success): Remove "*" in doc string.
8699
8700 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
8701
8702         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
8703         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
8704
8705         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
8706         `nnmail-spool-file'.
8707
8708         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
8709         `nnmail-spool-file'.
8710
8711         * gnus-move.el (gnus-change-server): Ditto.
8712
8713         * gnus-kill.el (gnus-batch-score): Ditto.
8714
8715         * gnus-cache.el (gnus-jog-cache): Ditto.
8716
8717         * gnus-msg.el (gnus-summary-reply):
8718         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
8719
8720 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
8721
8722         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
8723         version.  Minor improvement to doc strings.
8724         (tls-program): Add comment.
8725
8726 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
8727
8728         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
8729         (tls-checktrust): New variable.  Check if GNU TLS complained about a
8730         mismatch between the hostname provided in the certificate and the name
8731         of the host connnecting to.
8732         (open-tls-stream): Use them.  Check certificates against trusted root
8733         certificates.
8734
8735 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
8736
8737         * gnus-cache.el (gnus-cache-generate-nov-databases):
8738         Use nnml-generate-nov-databases-directory instead of
8739         nnml-generate-nov-databases-1.
8740
8741 2007-11-24  Glenn Morris  <rgm@gnu.org>
8742
8743         * message.el (message-tool-bar-retro): Update for rename
8744         mail_send.xpm->mail-send.xpm.
8745
8746 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
8747
8748         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
8749         `smime-ldap-search' for Emacs 22 and up.
8750
8751 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
8752
8753         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
8754
8755         * message.el (message-send-mail-function): Fix error convention.
8756         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
8757         (message-widen-reply, message-send-mail, message-talkative-question)
8758         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
8759         (message-clone-locals, message-send-news): Use with-current-buffer.
8760         (message-insert-or-toggle-importance): Remove unused var `valid'.
8761         (message-make-references): Remove unused var `new-references'.
8762         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
8763
8764 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
8765
8766         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
8767         (spam-split-symbolic-return-positive): Reflow docstring.
8768         (spam-backends, spam-summary-exit-behavior)
8769         (spam-mark-ham-unread-before-move-from-spam-group)
8770         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
8771         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
8772         (spam-clear-cache, spam-backend-check, spam-install-backend)
8773         (spam-install-statistical-backend, spam-list-of-processors)
8774         (spam-group-processor-p, spam-split, spam-bogofilter-score)
8775         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
8776         (spam-check-crm114, spam-initialize, spam-unload-hook):
8777         Fix typos in docstrings.
8778
8779 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
8780
8781         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
8782         been checked if they have never been read and those group levels are
8783         higher than the one that a user specified.
8784
8785 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
8786
8787         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
8788         foreign groups unless a group level is specified by a user.
8789         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
8790
8791 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
8792
8793         * message.el (message-send-mail-function): Require sendmail.
8794
8795 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
8796
8797         * message.el (message-send-mail-function): Check for smtpmail too.
8798
8799         * utf7.el (utf7-encode, utf7-decode): Use coding system
8800         `utf-7'/`utf-7-imap' from utf-7.el' if available.
8801
8802         * message.el (message-send-mail-function): New function.
8803         (message-send-mail-function): Set default using
8804         message-send-mail-function.  Adjust doc string.
8805         (message-send-mail-with-mailclient): New function.
8806
8807 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
8808
8809         * smime.el (from):
8810         * rfc2047.el (message-posting-charset):
8811         * qp.el (mm-use-ultra-safe-encoding):
8812         * pop3.el (parse-time-months):
8813         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
8814         * nnml.el (files):
8815         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
8816         (jka-compr-compression-info-list, ange-ftp-path-format)
8817         (efs-path-regexp):
8818         * nndiary.el (files):
8819         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
8820         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
8821         (epg-digest-algorithm-alist, inhibit-redisplay)
8822         (password-cache-expiry):
8823         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
8824         (pgg-output-buffer, password-cache-expiry):
8825         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
8826         (efs-path-regexp):
8827         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
8828         (inhibit-redisplay):
8829         * mm-uu.el (file-name, start-point, end-point, entry)
8830         (gnus-newsgroup-name, gnus-newsgroup-charset):
8831         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
8832         (latin-unity-ucs-list):
8833         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
8834         (mm-uu-binhex-decode-function):
8835         * message.el (gnus-message-group-art, gnus-list-identifiers)
8836         (rmail-enable-mime-composing, gnus-local-organization)
8837         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
8838         (gnus-read-active-file, facemenu-add-face-function)
8839         (facemenu-remove-face-function, gnus-article-decoded-p)
8840         (tool-bar-mode):
8841         * mail-source.el (display-time-mail-function):
8842         * gnus-util.el (nnmail-pathname-coding-system)
8843         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
8844         (gnus-original-article-buffer, gnus-user-agent)
8845         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
8846         (xemacs-codename, sxemacs-codename, emacs-program-version):
8847         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
8848         * gnus-start.el (gnus-agent-covered-methods)
8849         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
8850         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
8851         (gnus-newsgroup-headers, gnus-group-list-mode)
8852         (gnus-group-mark-positions, gnus-newsgroup-data)
8853         (gnus-newsgroup-unreads, nnoo-state-alist)
8854         (gnus-current-select-method, mail-sources)
8855         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
8856         (nnmail-spool-file, gnus-cache-active-hashtb):
8857         * gnus-mh.el (mh-lib-progs):
8858         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
8859         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
8860         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
8861         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
8862         (gnus-group-buffer):
8863         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
8864         (font-lock-set-defaults):
8865         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
8866         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
8867         (gnus-summary-post-menu, total-parts, type, condition, length):
8868         * gnus-agent.el (gnus-agent-read-agentview):
8869         * flow-fill.el (show-trailing-whitespace):
8870         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
8871         eval-and-compile wrappers for byte compiler pacifiers.
8872
8873         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
8874         (mm-display-inline-fontify): Check for featurep 'xemacs not
8875         extent-list.
8876
8877         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
8878         itimer-list.
8879         (mm-create-image-xemacs): Only do something for XEmacs.
8880         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
8881
8882         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
8883
8884         * gnus-registry.el (gnus-adaptive-word-syntax-table):
8885         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
8886
8887 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
8888
8889         * nnimap.el (nnimap-split-download-body):
8890         * gnus-demon.el (gnus-demon):
8891         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
8892
8893 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8894
8895         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
8896         New macros.
8897         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
8898         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
8899         copy data from unibyte buffer to multibyte current buffer.
8900         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
8901         to copy data from unibyte current buffer to multibyte buffer.
8902         (nntp-make-process-buffer): Make process buffer unibyte.
8903
8904         * pop3.el (pop3-open-server): Fix typo in Lisp code.
8905
8906 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
8907
8908         * pop3.el (pop3-open-server): Accept and process data more robustly at
8909         connexion start to avoid spurious "POP SSL connexion failed" errors.
8910
8911 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8912
8913         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
8914         read group names.
8915
8916 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
8917
8918         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
8919
8920 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8921
8922         * nnmail.el (nnmail-parse-active): Make group names unibyte.
8923         (nnmail-save-active): Use a unibyte buffer when saving active file,
8924         which may contain non-ASCII group names.
8925
8926         * nnml.el (nnml-request-group): Decode group names in messages.
8927
8928 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
8929
8930         * message.el (message-citation-line-function)
8931         (message-insert-formatted-citation-line): Fix spelling of
8932         `message-insert-formated-citation-line'.
8933
8934 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
8935
8936         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
8937
8938 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8939
8940         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
8941         nnmail-pathname-coding-system.
8942
8943         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
8944         that a user enters; decode group names in messages.
8945
8946         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
8947
8948 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
8949
8950         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
8951
8952         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
8953
8954         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
8955         risky local variable.
8956
8957         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
8958
8959 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
8960
8961         * encrypt.el: Improve documentation to fix function name typo.
8962         Reported by Daiki Ueno <ueno@unixuser.org>.
8963
8964 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8965
8966         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
8967         even if the point is not in the last page of an article.
8968         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
8969         back to the previous page.
8970
8971 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
8972
8973         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
8974
8975 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
8976
8977         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
8978
8979 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
8980
8981         * message.el (message-check-news-body-syntax):
8982         Avoid mm-string-as-multibyte.
8983         (message-hide-headers): Don't assume (point-min)==1.
8984
8985 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
8986
8987         * message.el (message-remove-blank-cited-lines): Fix if remove is
8988         given.
8989         (message-bogus-address-regexp): New variable.
8990         (message-bogus-recipient-p): New function.
8991         (message-check-recipients): New command.
8992         (message-syntax-checks): Add `bogus-recipient'.
8993         (message-fix-before-sending): Add `bogus-recipient'.
8994
8995         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
8996         (gnus-treat-body-boundary): Don't test window-system.
8997
8998 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
8999
9000         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
9001
9002 2007-10-28  Miles Bader  <miles@gnu.org>
9003
9004         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
9005         at compile-time too.
9006
9007 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
9008
9009         * gnus-msg.el (gnus-message-setup-hook):
9010         Add `message-remove-blank-cited-lines' to options.
9011
9012 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9013
9014         * message.el (message-remove-blank-cited-lines): New function.
9015         Suggested by Karl Plästerer.
9016
9017 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9018
9019         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
9020         mapc.
9021
9022         * imap.el (imap-open): Replace mapcar called for effect with mapc.
9023         (top-level): Use mapc to set functions to be traced for debugging.
9024
9025         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
9026         called for effect with while loop.
9027
9028         * message.el (message-talkative-question): Replace mapcar called for
9029         effect with mapc.
9030
9031         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
9032         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
9033         called for effect with dolist.
9034
9035         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
9036
9037         * nndiary.el: Use dolist instead of mapcar to add diary headers to
9038         gnus-extra-headers and nnmail-extra-headers.
9039
9040         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
9041         called for effect with dolist.
9042         (top-level): Use mapc to set functions to be traced for debugging.
9043
9044         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
9045         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
9046         dolist.
9047
9048         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
9049         Replace mapcar called for effect with mapc.
9050         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
9051         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
9052         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
9053         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
9054
9055         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
9056         remove-if that's a cl function.
9057
9058         * webmail.el (webmail-debug): Replace mapcar called for effect with
9059         dolist.
9060
9061         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
9062         with mapc.
9063
9064 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9065
9066         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
9067         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
9068         with while loop.
9069
9070         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
9071         functions from article-* functions.
9072         (gnus-multi-decode-header): Replace mapcar called for effect with
9073         dolist.
9074
9075         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
9076         (gnus-bookmark-show-details): Replace mapcar called for effect with
9077         while loop.
9078
9079         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
9080         called for effect with while loop.
9081
9082         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
9083         with dolist.
9084
9085         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
9086         Replace mapcar called for effect with dolist.
9087
9088         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
9089
9090         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
9091         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
9092         Replace mapcar called for effect with dolist.
9093         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
9094         mapc.
9095
9096         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
9097         Replace mapcar called for effect with dolist.
9098         (gnus-topic-list): Replace mapcar called for effect with mapc.
9099
9100         * gnus.el: Use mapc instead of mapcar to add autoloads.
9101
9102 2007-10-23  Richard Stallman  <rms@gnu.org>
9103
9104         * gnus-group.el (gnus-group-highlight): Mark as risky.
9105
9106 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9107
9108         * gnus.el (gnus-server-to-method): Return method found first in
9109         gnus-newsrc-alist.
9110
9111         * gnus-art.el (gnus-article-highlight-signature)
9112         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
9113         button overlay without the front stickiness.
9114
9115 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
9116
9117         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
9118         overview buffer needed a catch to receive its throw.
9119         (gnus-agent-flush-cache): Declare as interactive to make this function
9120         easier to use.
9121
9122 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
9123
9124         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
9125         `next-line'.
9126
9127 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9128
9129         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
9130         exclude address matching message-dont-reply-to-names.
9131
9132 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9133
9134         * gnus-util.el (gnus-string<): New function.
9135
9136         * gnus-sum.el (gnus-article-sort-by-author)
9137         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
9138
9139 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9140
9141         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
9142         the frame-focus tag is set in gnus-buffer-configuration.
9143
9144 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9145
9146         * gnus-art.el (gnus-article-add-button): Make a button overlay without
9147         the front stickiness.
9148
9149 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9150
9151         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
9152         url pattern; remove duplicate one.
9153         (gnus-article-extend-url-button): New function.
9154         (gnus-article-add-buttons): Use it.
9155         (gnus-button-push): Use concatenated url that it makes.
9156
9157 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
9158
9159         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
9160
9161 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9162
9163         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
9164         Don't hardcode point-min==1.
9165
9166 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
9167
9168         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
9169         Fix comment about "iso8859-1".
9170
9171 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
9172
9173         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
9174         ones returned from the verify-function.
9175
9176         * mm-uu.el (mm-uu-pgp-signed-extract-1):
9177         Call mml2015-extract-cleartext-signature if extraction failed.
9178
9179 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
9180
9181         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
9182         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
9183         failed.
9184
9185 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
9186
9187         * Relicense "GPLv2 or later" files to "GPLv3 or later".
9188
9189 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
9190
9191         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
9192         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
9193         recommends to use EasyPG instead of PGG.
9194
9195         * pgg.el: Revert to revision 6.23.2.16.
9196
9197         * pgg-def.el: Revert to revision 6.6.2.14.
9198
9199         * pgg-gpg.el: Revert to revision 6.23.2.34.
9200
9201 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
9202
9203         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
9204         to mark a thread as expirable.  Add variable `hide' to handle hiding of
9205         thread for both the null and zero (kill/expire thread) universal prefix
9206         cases.
9207         (gnus-summary-expire-thread): Add new function to expire a thread,
9208         using gnus-summary-kill-thread.
9209         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
9210         shortcuts for gnus-summary-expire-thread.
9211         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
9212         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
9213
9214 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
9215
9216         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
9217         extras value, so an extras entry can be deleted.
9218         (gnus-registry-delete-extra-entry): Use it.
9219         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
9220         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
9221         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
9222         storage through the gnus-registry, and provide an appropriate API for
9223         it.
9224
9225 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9226
9227         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
9228         Suggested by Leo <sdl.web@gmail.com>.
9229
9230         * gnus.el: Do.
9231
9232 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9233
9234         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
9235         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
9236
9237         * gnus-agent.el (gnus-agent-fetch-headers): Do.
9238
9239         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
9240         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
9241
9242 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9243
9244         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
9245         newline.
9246         (nnmbox-request-accept-article): Don't change article in source buffer;
9247         narrow to header to use message-fetch-field rather than
9248         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
9249         (nnmbox-request-replace-article): Quote lines that'll be misidentified
9250         as delimiters; make sure article ends with newline.
9251         (nnmbox-delete-mail): Correct last position of article to be deleted;
9252         ignore X-Gnus-Newsgroup header in article body.
9253         (nnmbox-save-mail): Quote lines looking like delimiters at the right
9254         positions; make sure article ends with newline.
9255
9256         * message.el (message-display-abbrev): Don't infloop when a user
9257         inserts SPC in the beginning of header.
9258
9259         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
9260         coding-system-for-read and coding-system-for-write for XEmacs having no
9261         file-coding feature.
9262
9263         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
9264
9265 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
9266
9267         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
9268         list of groups not followed by default.  Fix type to be regexp.
9269         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
9270
9271 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
9272
9273         * hmac-def.el (define-hmac-function): Switch from old-style to
9274         new-style backquotes.
9275
9276         * md4.el (md4-make-step): Likewise.
9277
9278 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
9279
9280         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
9281         raw-text coding system when saving .newsrc file, which may contain
9282         non-ASCII group names.
9283
9284 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9285
9286         * gnus-cus.el (gnus-score-extra): New widget.
9287         (gnus-score-extra-convert): New function.
9288         (gnus-score-customize): Use it for Extra.
9289
9290 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
9291
9292         * mml2015.el (mml2015-extract-cleartext-signature): New function.
9293         (mml2015-mailcrypt-clear-verify): Use it.
9294         (mml2015-gpg-clear-verify): Use it.
9295         (mml2015-pgg-clear-verify): Use it.
9296         (mml2015-epg-clear-verify): Replace the current part with the output
9297         from GnuPG; don't extract the plaintext by itself.
9298
9299         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
9300         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
9301         mml2015-clear-verify-function; don't touch the armor headers or
9302         dash-escaped text here.
9303
9304 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9305
9306         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
9307         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
9308         parts, or application/octet-stream as a last resort.
9309         (gnus-mime-view-part-as-type): Don't toggle display.
9310         (gnus-mime-view-part-as-charset): Don't turn off display before
9311         querying charset.
9312
9313         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
9314         stuff to undisplayer function in Emacs.
9315         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
9316
9317         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
9318         text/calendar parts.
9319
9320 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9321
9322         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
9323         decoding text/calendar parts.
9324
9325         * message.el (message-forward-make-body-mime): Always mark body as
9326         having no illegible text; remove signed-or-encrypted argument.
9327         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
9328
9329         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
9330         (mml-generate-mime-1): Don't encode body if it is specified to be in
9331         raw form; don't make buffer be unibyte when inserting multibyte string.
9332
9333 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
9334
9335         * sha1.el: Fix up comment style.
9336         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
9337         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
9338
9339         * hex-util.el: Fix up comment style.
9340         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
9341
9342         * gnus-salt.el: Use with-current-buffer.
9343         (gnus-pick-setup-message): Fix long-standing typo.
9344
9345 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9346
9347         * imap.el (imap-logout-timeout): New variable.
9348         (imap-logout, imap-logout-wait): New functions.
9349         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
9350
9351         * nnimap.el (nnimap-logout-timeout): New server variable.
9352         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
9353         nnimap-logout-timeout.
9354
9355         * gnus-art.el (gnus-article-summary-command-nosave)
9356         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
9357
9358 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9359
9360         * gnus.el (gnus-maximum-newsgroup): New variable.
9361
9362         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
9363         according to gnus-maximum-newsgroup.
9364
9365         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
9366         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
9367         Limit the range of articles according to gnus-maximum-newsgroup.
9368
9369 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
9370
9371         * gnus-art.el (gnus-sticky-article): Fix problems described in
9372         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
9373         Don't perform gnus-configure-windows here; reuse existing sticky
9374         article buffer.
9375
9376         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
9377         it doesn't exist in gnus-article-mode.
9378
9379 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9380
9381         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
9382         (gnus-agent-decoded-group-name): New function.
9383         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
9384         (gnus-agent-expire-group-1): Use it; decode group name in messages.
9385
9386 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
9387
9388         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
9389         Add binding for gnus-sticky-article.
9390         (gnus-summary-exit): Don't kill sticky article buffers.
9391
9392         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
9393         article buffer.
9394         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
9395         (gnus-kill-sticky-article-buffers): New commands.
9396
9397 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9398
9399         * nntp.el (nntp-xref-number-is-evil): New server variable.
9400         (nntp-find-group-and-number): If it is non-nil, don't trust article
9401         numbers in the Xref header.
9402
9403 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9404
9405         * gnus-agent.el (gnus-agent-read-group): New function.
9406         (gnus-agent-flush-group, gnus-agent-expire-group)
9407         (gnus-agent-regenerate-group): Use it.
9408         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
9409         nnmail-pathname-coding-system.
9410
9411 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
9412
9413         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
9414
9415         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
9416         that are unread as unread, and also as selected so that information of
9417         marks having been changed by a user may be updated when exiting group.
9418
9419 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
9420
9421         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
9422
9423 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
9424
9425         * gnus-art.el (gnus-mime-display-single): Pass part number that is
9426         calculated ignoring signature parts to gnus-treat-article.
9427
9428 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9429
9430         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
9431         a point here in order to keep the window start.
9432         (gnus-insert-mime-security-button): Make a button overlay without the
9433         front stickiness.
9434         (gnus-mime-display-security): Goto the end of a button.
9435
9436         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
9437
9438 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9439
9440         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
9441         group-name-at-point.
9442         (gnus-group-completing-read): New function that offers decoded
9443         non-ASCII group names for completion.
9444         (gnus-fetch-group, gnus-group-read-ephemeral-group)
9445         (gnus-group-jump-to-group, gnus-group-make-group-simple)
9446         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
9447         (gnus-group-fetch-control): Use it.
9448         (gnus-fetch-group): Use group-name-at-point for the initial value
9449         rather than the default value; use gnus-alive-p.
9450
9451         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
9452         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
9453         (gnus-summary-post-news): Use gnus-group-completing-read.
9454
9455         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
9456         (gnus-read-move-group-name): Decode group name for completion.
9457
9458 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
9459
9460         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
9461         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
9462         Yamaoka slightly modified the code).
9463
9464 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9465
9466         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
9467         (nnmail-split-incoming): Bind it.
9468
9469         * nnml.el (nnml-group-name-charset): New function.
9470         (nnml-decoded-group-name): Use it; don't decode group name if
9471         nnmail-group-names-not-encoded-p is non-nil.
9472         (nnml-encoded-group-name): New function.
9473         (nnml-group-pathname): Inline nnml-decoded-group-name.
9474         (nnml-request-expire-articles): Decode group name in message.
9475         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
9476         nnmail-pathname-coding-system.
9477         (nnml-save-mail, nnml-active-number): Work with decoded group names and
9478         not decoded ones according to nnmail-group-names-not-encoded-p.
9479         (nnml-generate-active-info): Use nnml-encoded-group-name.
9480
9481 2007-08-08  Glenn Morris  <rgm@gnu.org>
9482
9483         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
9484         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
9485         doc-strings and comments.
9486
9487 2007-07-25  Glenn Morris  <rgm@gnu.org>
9488
9489         * Relicense all FSF files to GPLv3 or later.
9490
9491 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9492
9493         * gnus-sum.el (gnus-summary-move-article):
9494         Make gnus-summary-respool-article work.
9495
9496 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
9497
9498         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
9499         string.
9500
9501 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
9502
9503         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
9504         that should be ignored when comparing distant RSS articles with local
9505         ones.
9506         (nnrss-make-hash-index): New function.  Create a hash index according
9507         to the ignored fields.
9508         (nnrss-check-group): Use it.
9509
9510 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9511
9512         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
9513
9514         * gnus-art.el (article-decode-group-name): Decode Xref header too.
9515
9516         * gnus-group.el (gnus-group-make-group): Encode group name here unless
9517         the new optional argument ENCODED is non-nil.
9518         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
9519         coding system for encoding group name.
9520         (gnus-group-make-rss-group): Pass un-encoded group name to
9521         gnus-group-make-group.
9522         (gnus-group-set-info): Tell gnus-group-make-group that group name is
9523         encoded.
9524
9525         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
9526         Encode group name to which articles are moved or copied.
9527         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
9528         coding system for encoding Newsgroup, Followup-To and Xref headers.
9529
9530         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
9531         marks; use nnheader-file-coding-system to write a file.
9532         (nnagent-retrieve-headers): Bind file-name-coding-system to
9533         nnmail-pathname-coding-system.
9534
9535         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
9536
9537         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
9538         (nnml-request-article, nnml-request-create-group)
9539         (nnml-request-rename-group, nnml-find-id)
9540         (nnml-possibly-change-directory, nnml-possibly-create-directory)
9541         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
9542         (nnml-save-marks): Use nnml-group-pathname instead of
9543         nnmail-group-pathname.
9544
9545         (nnml-request-create-group, nnml-request-expire-articles)
9546         (nnml-request-move-article, nnml-request-delete-group)
9547         (nnml-deletable-article-p, nnml-possibly-create-directory)
9548         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
9549         (nnml-open-marks): Bind file-name-coding-system to
9550         nnmail-pathname-coding-system.
9551
9552         (nnml-request-article): Pass server argument to nnml-find-group-number.
9553         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
9554         Pass server argument to nnml-possibly-create-directory.
9555         (nnml-request-accept-article): Pass server argument to
9556         nnml-active-number and nnml-save-mail.
9557         (nnml-find-group-number): Pass server argument to nnml-find-id.
9558         (nnml-request-update-info): Pass server argument to
9559         nnml-marks-changed-p.
9560
9561         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
9562         (nnml-save-mail, nnml-active-number): Add server argument.
9563
9564         (nnml-request-delete-group): Warn if group is missing.
9565         (nnml-get-nov-buffer): Decode group name.
9566         (nnml-generate-active-info): Encode group name.
9567         (nnml-open-marks): Decode group name in messages.
9568
9569 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9570
9571         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
9572         if it is not specified.
9573         (gnus-article-pipe-part, gnus-article-save-part)
9574         (gnus-article-interactively-view-part, gnus-article-copy-part)
9575         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
9576         (gnus-article-inline-part, gnus-article-save-part-and-strip)
9577         (gnus-article-replace-part, gnus-article-delete-part)
9578         (gnus-article-view-part-as-type): Pass raw prefix argument to
9579         gnus-article-part-wrapper.
9580
9581 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9582
9583         * gnus-agent.el (gnus-agent-save-active):
9584         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
9585
9586         * gnus-cache.el (gnus-cache-save-buffers)
9587         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
9588         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
9589         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
9590         (gnus-cache-braid-nov, gnus-cache-braid-heads)
9591         (gnus-cache-generate-active, gnus-cache-rename-group)
9592         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
9593         (gnus-cache-update-overview-total-fetched-for):
9594         Bind file-name-coding-system to nnmail-pathname-coding-system.
9595         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
9596         New variables.
9597         (gnus-cache-decoded-group-name): New function.
9598         (gnus-cache-file-name): Use it.
9599         (gnus-cache-generate-active): Use non-decoded group name for active.
9600
9601         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
9602         right place.
9603         (gnus-write-active-file): Don't break non-ASCII group names.
9604
9605         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
9606         nnmail-pathname-coding-system.
9607
9608         * lpath.el: Bind default-file-name-coding-system,
9609         file-name-coding-system and language-info-alist for XEmacs.
9610
9611         * gnus-uu.el (gnus-uu-decode-save): Typo.
9612
9613 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9614
9615         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
9616
9617 2007-07-14  David Kastrup  <dak@gnu.org>
9618
9619         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
9620         finishing actions if we did not edit the article.
9621
9622 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9623
9624         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
9625         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
9626         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
9627         (gnus-agent-flush-group, gnus-agent-flush-cache)
9628         (gnus-agent-fetch-headers, gnus-agent-load-alist)
9629         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
9630         (gnus-agent-retrieve-headers, gnus-agent-request-article)
9631         (gnus-agent-regenerate-group)
9632         (gnus-agent-update-files-total-fetched-for)
9633         (gnus-agent-update-view-total-fetched-for):
9634         Bind file-name-coding-system to nnmail-pathname-coding-system.
9635         (gnus-agent-group-pathname): Don't encode file names by
9636         nnmail-pathname-coding-system.
9637         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
9638         coding-system-for-write instead of buffer-file-coding-system to
9639         gnus-agent-file-coding-system.
9640
9641         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
9642         Decode group name.
9643
9644         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
9645
9646         * gnus-start.el (gnus-update-active-hashtb-from-killed)
9647         (gnus-read-newsrc-el-file): Make group names unibyte.
9648
9649         * nnmail.el (nnmail-group-pathname): Don't encode file names by
9650         nnmail-pathname-coding-system.
9651
9652         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
9653         (nnrss-request-delete-group): Bind file-name-coding-system to
9654         nnmail-pathname-coding-system.
9655         (nnrss-read-server-data, nnrss-read-group-data):
9656         Bind file-name-coding-system correctly.
9657         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
9658
9659         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
9660         (nntp-server-to-method-cache): New variable.
9661         (nntp-group-pathname): New function that decodes non-ASCII group names.
9662         (nntp-possibly-create-directory, nntp-marks-changed-p)
9663         (nntp-save-marks, nntp-open-marks): Use it.
9664         (nntp-possibly-create-directory, nntp-open-marks):
9665         Bind file-name-coding-system to nnmail-pathname-coding-system.
9666         (nntp-open-marks): Decode group names when bootstrapping marks.
9667
9668         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
9669         Newsgroups and Folowup-To headers.
9670
9671 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9672
9673         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
9674         (gnus-server-closed-face, gnus-server-denied-face)
9675         (gnus-server-offline-face): Remove variable.
9676         (gnus-server-font-lock-keywords): Use faces that are not aliases.
9677
9678         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
9679         of modifying message-stack directly for XEmacs.
9680
9681         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
9682         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
9683         if the coding-system argument is nil for XEmacs.
9684
9685         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
9686         mm-charset-override-alist.
9687
9688         * rfc2047.el: Don't require base64; require rfc2045 for the function
9689         rfc2045-encode-string.
9690         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
9691         to quote the parameter value.
9692
9693 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
9694
9695         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
9696         form in gnus-group-name-charset-method-alist.
9697
9698         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
9699         overrides the default layout edit-form.
9700
9701         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
9702
9703         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
9704
9705 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9706
9707         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
9708         as unfetched articles.
9709
9710 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
9711
9712         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
9713
9714 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9715
9716         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
9717         original back end that keeps marks in the local system.
9718
9719 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9720
9721         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
9722         arg of pop-to-buffer for XEmacs.
9723         (gnus-article-read-summary-keys): Ditto; don't restore window
9724         configuration if summary command ends up with neither article buffer
9725         nor summary buffer; describe bindings if summary keys end with C-h.
9726
9727 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9728
9729         * message.el (message-fix-before-sending): Skip raw message part to be
9730         forwarded while checking illegible text.
9731         (message-forward-make-body-mime, message-forward-make-body):
9732         Mark signed or encrypted raw message as having no illegible text.
9733
9734 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9735
9736         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
9737         (gnus-message-with-timestamp-1): New macro.
9738         (gnus-message-with-timestamp): New function.
9739         (gnus-message): Use them.
9740
9741         * nnheader.el (nnheader-message): Use them.
9742
9743 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
9744
9745         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
9746         .newsrc.eld file.
9747
9748 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9749
9750         * gnus-agent.el (gnus-agent-fetch-headers)
9751         (gnus-agent-retrieve-headers):
9752         Bind gnus-decode-encoded-address-function to identity.
9753
9754         * nntp.el (nntp-send-xover-command): Recognize an xover command is
9755         available also when the server returns simply a dot.
9756
9757         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
9758
9759 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
9760
9761         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
9762
9763 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9764
9765         * gnus-ems.el (gnus-x-splash): Make it work.
9766
9767         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
9768         from being used.
9769
9770         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
9771
9772 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9773
9774         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
9775         4th and the 5th arguments.
9776
9777         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
9778         the front stickiness.
9779         (gnus-article-summary-command-nosave): Correct the order of the
9780         arguments passed to pop-to-buffer.
9781         (gnus-article-read-summary-keys): Ditto; make it work properly when the
9782         summary command ends up with the article buffer.
9783
9784         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
9785         the same faces.
9786
9787 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
9788
9789         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
9790
9791 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
9792
9793         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
9794         * gnus-sum.el (gnus-summary-highlight):
9795         * pgg.el (pgg-sign-region, pgg-sign):
9796         * mail-source.el (mail-source-delete-old-incoming-confirm):
9797         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
9798
9799 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9800
9801         * gnus-art.el (gnus-mime-view-part-externally)
9802         (gnus-mime-view-part-internally): Fix predicate function passed to
9803         completing-read.
9804
9805         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
9806
9807         * gnus.el (gnus-update-message-archive-method): Add :version.
9808
9809 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9810
9811         * gnus.el (gnus-update-message-archive-method): New variable.
9812
9813         * gnus-start.el (gnus-setup-news): Update saved "archive" method
9814         according to gnus-message-archive-method if
9815         gnus-update-message-archive-method is non-nil.
9816
9817 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9818
9819         * gnus-sum.el (gnus-summary-limit-to-address): New function.
9820         Suggested by Loic Dachary <loic@dachary.org>.
9821         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
9822
9823 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9824
9825         * message.el (message-pop-to-buffer): Add switch-function argument.
9826         (message-mail): Pass switch-function argument to it.
9827
9828 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
9829
9830         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
9831         Improve doc string.
9832
9833 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9834
9835         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
9836         (gnus-header-content)
9837         * gnus-cite.el (gnus-cite-10)
9838         * gnus-srvr.el (gnus-server-closed)
9839         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
9840         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
9841         (gnus-group-mail-3-empty, gnus-group-mail-low)
9842         (gnus-group-mail-low-empty, gnus-splash)
9843         * message.el (message-header-to, message-header-cc)
9844         (message-header-subject, message-header-other, message-header-name)
9845         (message-header-xheader, message-separator, message-cited-text)
9846         (message-mml): Lighten colors of faces used for dark background.
9847
9848 2007-05-24  Simon Josefsson  <simon@josefsson.org>
9849
9850         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
9851         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
9852
9853 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9854
9855         * message.el (message-narrow-to-headers-or-head):
9856         Ignore mail-header-separator in the body.
9857
9858 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9859
9860         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
9861         same as window size.
9862
9863 2007-05-22  Kevin Ryde  <user42@zip.com.au>
9864
9865         * message.el (message-font-lock-keywords): Use message-header-xheader
9866         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
9867         ahead of the anything pattern, to get it recognised.
9868
9869 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9870
9871         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
9872         spam.el loads uses it in the compiled defadvice form.
9873
9874 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
9875
9876         * gnus-sum.el (gnus-articles-to-read)
9877         (gnus-summary-insert-old-articles): Don't truncate group name for
9878         `read-string'.
9879
9880         * gnus-util.el (gnus-limit-string): Delete this function.
9881
9882         * gnus-sum.el (gnus-simplify-subject-fully):
9883         Use `truncate-string-to-width' instead.
9884
9885 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
9886
9887         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
9888         Tell if, on summary exit, the next group has to be selected.
9889         (gnus-summary-exit): Use it.
9890
9891 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
9892
9893         * gnus-art.el (gnus-article-mode): Fix comment about displaying
9894         non-break space.
9895
9896 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9897
9898         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
9899         Check if group is not a directory.
9900         (nnfolder-request-expire-articles): Don't delete articles if the target
9901         group is not available.
9902
9903         * nnml.el (nnml-request-create-group): Properly check if group is not a
9904         file.
9905         (nnml-request-expire-articles): Don't delete articles if the target
9906         group is not available.
9907
9908         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
9909         Don't quote characters that are within parentheses.
9910
9911 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9912
9913         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
9914         (gnus-handle-ephemeral-exit): Select article according to it.
9915
9916 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
9917
9918         * message.el (message-insert-formated-citation-line): Remove newline.
9919         (message-citation-line-format): Add final \n here so that the user can
9920         avoid a blank line.
9921
9922 2007-05-03  Dan Christensen  <jdc@uwo.ca>
9923
9924         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
9925         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
9926         Update lanl/arXiv support.
9927
9928 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
9929
9930         * gnus.el: Bump version number.
9931
9932 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9933
9934         * gnus.el (gnus-version-number): Bump version.
9935
9936 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
9937
9938         * gnus.el: No Gnus v0.6 is released.
9939
9940 2007-04-27  Didier Verna  <didier@xemacs.org>
9941
9942         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
9943         * gmm-utils.el (gmm-regexp-concat): ... here.
9944         * message.el: Don't require 'gnus-util.
9945         (message-dont-reply-to-names): Handle name change above.
9946         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
9947
9948 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9949
9950         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
9951         since the initial value varies according to the system.
9952
9953 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9954
9955         * mm-util.el (mm-charset-synonym-alist): Defcustom.
9956
9957 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
9958
9959         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
9960
9961 2007-04-24  Didier Verna  <didier@xemacs.org>
9962
9963         Improve the type of gnus-ignored-from-addresses.
9964         * gnus-util.el (gnus-orify-regexp): New function.
9965         * message.el (gnus-util): Require it.
9966         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
9967         * gnus-sum.el (gnus-ignored-from-addresses): New function.
9968         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
9969
9970 2007-04-24  Didier Verna  <didier@xemacs.org>
9971
9972         * gnus-sum.el:
9973         * gnus-utils.el: Fix some trailing whitespaces.
9974
9975 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9976
9977         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
9978         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
9979         article's Message-ID; refer parent article in summary buffer.
9980
9981         * message.el (message-bounce): Call mime-to-mml.
9982
9983         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
9984         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
9985         optimize and/or forms properly.
9986
9987 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
9988
9989         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
9990         URL.
9991
9992 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9993
9994         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
9995
9996 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9997
9998         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
9999         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
10000         displayed of multipart/alternative part if it is invoked from summary
10001         buffer.
10002
10003         * mm-view.el (mm-inline-text-html-render-with-w3m)
10004         (mm-inline-text-html-render-with-w3m-standalone)
10005         (mm-inline-render-with-function): Use mail-parse-charset by default.
10006
10007 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
10008
10009         * parse-time.el (parse-time-string-chars): Check if CHAR
10010         is less than the length of parse-time-syntax.
10011
10012 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10013
10014         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
10015         from gnus-newsgroup-processable.
10016
10017 2007-04-16  Didier Verna  <didier@xemacs.org>
10018
10019         * gnus-msg.el (gnus-configure-posting-styles):
10020         Handle message-signature-directory properly with :file syntax.
10021         Reported by "Leo".
10022
10023 2007-04-11  Didier Verna  <didier@xemacs.org>
10024
10025         New user option: message-signature-directory.
10026         * gnus-msg.el (gnus-configure-posting-styles): Support it.
10027         * message.el (message-insert-signature): Ditto.
10028         * message.el (message-signature-file): Doc update.
10029         * message.el (message-signature-directory): New.
10030
10031 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10032
10033         * gnus-msg.el (gnus-inews-yank-articles):
10034         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
10035
10036 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10037
10038         * message.el (message-yank-original): Make sure cited text ends with
10039         newline; don't exchange point and mark.
10040
10041 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
10042
10043         * tls.el (open-tls-stream): Properly handle case where there
10044         is no associated buffer.
10045
10046 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
10047
10048         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
10049         message-yank-original, make sure (< mark TEXT point).
10050
10051 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
10052
10053         * message.el (message-fill-column): New variable.
10054         (message-mode): Use it.  Add comment on a possible new hook.
10055
10056         * nnmail.el (nnmail-spool-file): Mark as obsolete.
10057         (nnmail-get-new-mail): Reformat.
10058
10059         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
10060
10061         * gmm-utils.el: Fix Commentary.
10062         (gmm-tool-bar-from-list): Fix typo in doc string.
10063
10064 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
10065
10066         * message.el (message-yank-original): Don't switch point and mark
10067         unnecessarily to put point and mark as documented.
10068
10069 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10070
10071         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
10072         from the message heads.
10073
10074 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
10075
10076         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
10077         article buffer does not have a window.  This may not be the best
10078         solution but is certainly better than setting the start of the null,
10079         that is the current, window.
10080
10081 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
10082
10083         * gnus-draft.el (gnus-draft-setup-hook): New hook.
10084         (gnus-draft-setup): Run it.
10085
10086         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
10087         gnus-score-fast-scoring.  Allow regexp.
10088         (gnus-score-headers): Use it.
10089
10090         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
10091         XEmacs.
10092
10093         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
10094         string.
10095         (gnus-button-alist): Also catch `<f1> k ...'.
10096         (gnus-treat-display-x-face): Fix doc string.
10097
10098 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10099
10100         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
10101         evaluation of gnus-extended-version to ensure correct generation of the
10102         User-Agent header when message-generate-headers-first is used.
10103
10104 2007-03-24  Simon Josefsson  <simon@josefsson.org>
10105
10106         * hashcash.el (hashcash-generate-payment-async): Don't crash if
10107         hashcash-path is nil.  Don't call callback with incorrect number of
10108         parameters if val is 0.
10109
10110 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10111
10112         * message.el (message-required-news-headers):
10113         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
10114
10115 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
10116
10117         * tls.el (open-tls-stream): In handshake-waiting loop,
10118         don't wait more if there is output available to process.
10119
10120 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
10121
10122         * tls.el (tls-program): Doc fix.
10123
10124 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10125
10126         * message.el (message-generate-new-buffers): Change the meaning of the
10127         nil value; add `standard' to the choices; treat t as `unique'; improve
10128         doc string.
10129         (gnus-select-frame-set-input-focus): Autoload.
10130         (message-buffer-name): Search for the existing message buffer if
10131         message-generate-new-buffers is nil or `standard'; treat the value t of
10132         message-generate-new-buffers as `unique'.
10133         (message-pop-to-buffer): Raise the frame already displaying the message
10134         buffer; clear the echo area after querying.
10135         (message-setup): Pass the `continue' argument to compose-mail.
10136         (message-mail): Prefer `switch-function' if it is given; search for the
10137         existing message buffer if the `continue' argument is non-nil; pass
10138         continue and switch-function arguments to compose-mail by way of
10139         message-setup.
10140         (message-mail-other-window): Adjust argument of message-setup.
10141         (message-mail-other-frame): Ditto.
10142
10143 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10144
10145         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
10146         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
10147         to turn font-lock on when turning gnus-message-citation-mode on.
10148
10149 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
10150
10151         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
10152         (mml-smime-function-alist): New variable; add epg as the backend.
10153         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
10154         mml-smime- functions instead.
10155         * mm-view.el: Require smime.
10156
10157 2007-03-05  Didier Verna  <didier@xemacs.org>
10158
10159         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
10160         instead of just inheritance for posting styles.
10161         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
10162
10163 2007-02-24  Chris Moore  <dooglus@gmail.com>
10164
10165         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
10166         * pgg-pgp.el (pgg-pgp-encrypt-region):
10167         * pgg-gpg.el (pgg-gpg-encrypt-region):
10168         Check pgg-encrypt-for-me if no other recipients.
10169
10170 2007-02-24  John Paul Wallington  <jpw@pobox.com>
10171
10172         * tls.el (tls-certtool-program): Fix custom type.
10173
10174 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10175
10176         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
10177         and point-at-eol instead of line-(beginning|end)-position.
10178
10179         * assistant.el (assistant-parse-buffer): Ditto.
10180
10181         * netrc.el (netrc-parse-services): Ditto.
10182
10183 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
10184
10185         * mml2015.el (mml2015-epg-find-usable-key): New function.
10186         (mml2015-epg-sign): Use it.
10187         (mml2015-epg-encrypt): Use it.
10188
10189 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10190
10191         * message.el (message-make-in-reply-to): Quote name containing
10192         non-ASCII characters.  It will make the RFC2047 encoder cause an error
10193         if there are special characters.  Reported by NAKAJI Hiroyuki
10194         <nakaji@jp.freebsd.org>.
10195
10196 2007-02-27  Didier Verna  <didier@xemacs.org>
10197
10198         Include the group parameters as well as the topic ones in the
10199         inheritance filter process.
10200         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
10201         argument GROUP-PARAMS-LIST.
10202         * gnus-topic.el (gnus-group-topic-parameters): Use it.
10203
10204 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10205
10206         * nntp.el (nntp-never-echoes-commands)
10207         (nntp-open-connection-functions-never-echo-commands): New variables.
10208         (nntp-send-command): Use them.
10209
10210 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
10211
10212         * mml2015.el (mml2015-epg-verify): Simplify.
10213
10214 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10215
10216         * mml.el (mml-content-disposition-alist): New user option.
10217         (mml-content-disposition): New function.
10218         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
10219         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
10220
10221 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
10222
10223         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
10224         verification.
10225
10226 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10227
10228         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
10229         articles posted in the last 24 hours.
10230
10231 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
10232
10233         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
10234
10235 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
10236
10237         * nntp.el (nntp-send-command): Don't wait for echoes when
10238         nntp-open-ssl-stream is used.
10239
10240 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10241
10242         * gnus-cite.el (gnus-test-font-lock-add-keywords)
10243         (gnus-message-add-citation-keywords)
10244         (gnus-message-remove-citation-keywords): Remove.
10245         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
10246         directly, make the variables in font-lock-defaults buffer-local, add
10247         gnus-message-citation-keywords to them and then update the value of
10248         font-lock-keywords.
10249
10250 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10251
10252         * message.el (message-cite-original-1): Don't call
10253         gnus-article-highlight-citation.
10254
10255         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
10256         citations; fix line count.
10257
10258 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
10259
10260         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
10261         (gnus-message-add-citation-keywords)
10262         (gnus-message-remove-citation-keywords): Use it; fix the emulating
10263         versions of font-lock-add-keywords and font-lock-remove-keywords to
10264         work with XEmacs correctly.
10265
10266 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10267
10268         * gnus-cite.el (gnus-cite-face-list): Set the values of
10269         gnus-message-max-citation-depth and gnus-message-citation-keywords.
10270         (gnus-message-max-citation-depth): Use defvar rather than defconst.
10271         (gnus-message-cite-prefix-regexp): New variable.
10272         (gnus-message-search-citation-line): Use it; protect against long
10273         citation prefix; fill match data with nil rather than 0 for XEmacs; set
10274         the 0th match data for Emacs.
10275         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
10276         (gnus-message-add-citation-keywords): Append keywords rather than
10277         prepending; emulate font-lock-add-keywords if it is not available.
10278         (gnus-message-remove-citation-keywords):
10279         Emulate font-lock-remove-keywords if it is not available.
10280
10281         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
10282
10283         * message.el (message-cite-prefix-regexp): Set the value of
10284         gnus-message-cite-prefix-regexp.
10285
10286 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10287
10288         * nnweb.el (nnweb-google-parse-1): Update parser.
10289
10290 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
10291
10292         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
10293
10294 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10295
10296         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
10297         regexp.
10298
10299 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10300
10301         * uudecode.el (uudecode-string-to-multibyte): New function emulating
10302         string-to-multibyte.
10303         (uudecode-decode-region-internal): Use it.
10304
10305         * lpath.el: Fbind string-as-multibyte for XEmacs.
10306
10307 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
10308
10309         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
10310         Fix custom choice.
10311
10312         * gnus-art.el (gnus-signature-limit): Fix custom choice.
10313
10314 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
10315
10316         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
10317
10318         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
10319         `write-region' to respect `mm-inhibit-file-name-handlers'.
10320
10321 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
10322
10323         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
10324         Use gnus-home-directory instead of "~/" or "$HOME".
10325
10326 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
10327
10328         * encrypt.el (encrypt-insert-file-contents): Add better prompt
10329         to mention filename.
10330         Add comments at beginning regarding usage.
10331         (encrypt-write-file-contents): Change interactive so a string is
10332         acceptable.  If the file has no associated model, show an error instead
10333         of a nonsense prompt.
10334
10335 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10336
10337         * spam.el (spam-bsfilter-ham-switch): Fix typo.
10338         Thanks to Yoshihiko Yamada for kind notification of this typo.
10339
10340 2007-01-12  Kenichi Handa  <handa@m17n.org>
10341
10342         * uudecode.el (uudecode-decode-region-internal): Make it work in a
10343         multibyte buffer.
10344
10345 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
10346
10347         * gnus-score.el (gnus-score-fast-scoring): New variable.
10348         (gnus-score-headers): Use it.
10349
10350         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
10351
10352         * message.el (message-cite-original-1):
10353         Call gnus-article-highlight-citation if requested.
10354         (message-make-from): Allow name and address as optional arguments.
10355
10356         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
10357
10358         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
10359         bugs to doc string.
10360         (gnus-button-alist): Add mid\\|message-id.
10361         (gnus-button-fetch-group): Extend for use in
10362         `browse-url-browser-function'.
10363         (gnus-button-url-regexp): Try to catch paired parentheses like in
10364         Wikipedia URLs.
10365
10366         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
10367         Suggested by Simon Krahnke <overlord@gmx.li>.
10368
10369 2007-01-13  Romain Francoise  <romain@orebokech.com>
10370
10371         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
10372         Update copyright.
10373
10374 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
10375
10376         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
10377
10378 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
10379
10380         * gnus-registry.el (gnus-registry-unfollowed-groups)
10381         (gnus-registry-split-fancy-with-parent): Fix documentation.
10382
10383 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10384
10385         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
10386         from nnweb groups.
10387
10388 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10389
10390         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
10391         Xref urls.  Erase buffer before requesting head.
10392
10393         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
10394
10395 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
10396
10397         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
10398         customizable.
10399
10400 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
10401
10402         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
10403         no signing key is found.
10404         (mml2015-epg-encrypt): Ask user whether to skip or abort if
10405         no encrypting and/or signing key is found.
10406
10407 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
10408
10409         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
10410
10411 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10412
10413         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
10414         headers read from disk with the ones newly found in the current search.
10415         This should no longer cause problems, because the article numbers in
10416         Gmane's `nov.php' output are ignored since the previous change.
10417
10418 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10419
10420         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
10421
10422 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10423
10424         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
10425         replace-regexp-in-string; bind url-version; fbind display-images-p and
10426         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
10427         find-face and set-itimer-function for Emacs; bind itimer-list for
10428         Emacs.
10429
10430         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
10431
10432 2007-01-01  Romain Francoise  <romain@orebokech.com>
10433
10434         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
10435
10436 2006-12-31  Steve Youngs  <steve@sxemacs.org>
10437
10438         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
10439         `define-minor-mode' macro definition expanded properly.
10440         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
10441         exclude it there.
10442
10443         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
10444         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
10445         `fboundp' test.
10446         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
10447         This is OK to autoload in (S)XEmacs now.
10448
10449 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10450
10451         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
10452         keystroke.
10453         (gnus-summary-limit-to-singletons): Fix typo.
10454
10455         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
10456         else fails.
10457
10458 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10459
10460         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
10461         docstring.
10462
10463         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
10464         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
10465         (gnus-summary-insert-dormant-articles): Fix typo in message.
10466
10467 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
10468
10469         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
10470         nil for XEmacs.
10471         (gnus-message-citation-mode): Don't autoload in XEmacs.
10472
10473         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
10474
10475 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
10476
10477         * nnimap.el (nnimap-expunge-search-string):
10478         Mention nnimap-search-uids-not-since-is-evil in docstring.
10479
10480 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
10481
10482         * spam.el: Revert to make-obsolete-variable because
10483         define-obsolete-variable-alias is not supported in Emacs 21.
10484
10485         * spam.el (spam-ifile-path, spam-ifile-database-path)
10486         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
10487         make-obsolete-variable.
10488         (spam-bsfilter-path, spam-bsfilter-program)
10489         (spam-spamassassin-path, spam-spamassassin-program)
10490         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
10491         Don't use "path" inappropriately.
10492         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
10493         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
10494         variable names.
10495
10496 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
10497
10498         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
10499         summary buffer.
10500
10501         * password.el (password-cache-remove): Use clear-string to burn
10502         password, if available.
10503
10504 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
10505
10506         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
10507
10508         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
10509
10510         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
10511         (gnus-message-highlight-citation): Move defcustom here from
10512         gnus-cite.el.
10513         (gnus-message-citation-mode): Autoload.
10514
10515         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
10516         checks to make it compile with XEmacs.
10517         (gnus-message-citation-mode): New minor mode.
10518         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
10519         (gnus-message-highlight-citation): New variables.
10520         (gnus-message-search-citation-line)
10521         (gnus-message-add-citation-keywords)
10522         (gnus-message-remove-citation-keywords)
10523         (turn-on-gnus-message-citation-mode)
10524         (turn-off-gnus-message-citation-mode): New functions.
10525
10526 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
10527
10528         * gnus-cite.el: Enable highlighting of different citation levels in
10529         message-mode.
10530
10531 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
10532
10533         * message.el (message-make-fqdn): Fix comment.
10534         (message-bogus-system-names): Add ".local".
10535
10536         * spam.el (spam-ifile-path, spam-ifile-program)
10537         (spam-ifile-database-path, spam-ifile-database)
10538         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
10539         Don't use "path" inappropriately.
10540         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
10541         strings.
10542         (spam-check-ifile, spam-ifile-register-with-ifile)
10543         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
10544         Use new variable names.
10545
10546         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
10547         (gnus-treat-display-smileys): Simplify using
10548         gnus-image-type-available-p.
10549
10550         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
10551         available.
10552
10553         * gnus-xmas.el (gnus-xmas-image-type-available-p):
10554         Use `display-images-p' if available.
10555
10556 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
10557
10558         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
10559         one after turning on the buffer's multibyteness instead of decoding
10560         them directly in the unibyte buffer that causes unexpected conversion
10561         in Emacs 23 (unicode).
10562
10563 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10564
10565         * message.el (message-generate-hashcash): Fix custom type.
10566
10567 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
10568
10569         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
10570
10571 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
10572
10573         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
10574         disconnect icons.  Add help text.
10575
10576 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
10577
10578         * spam.el (spam-extra-header-to-number): CRM114 spam score is
10579         negated to be consistent with the others we handle.
10580
10581 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10582
10583         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
10584         version of gnus-summary-buffer to something, so that we can use two
10585         article buffers at the same time.
10586
10587 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
10588
10589         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
10590         trigger all the extra headers.
10591         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
10592         sorting.
10593
10594 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10595
10596         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
10597         solid groups.
10598
10599 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
10600
10601         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
10602
10603 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
10604
10605         * legacy-gnus-agent.el: Add Copyright notice.
10606
10607 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
10608
10609         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
10610
10611 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10612
10613         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
10614
10615         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
10616         to make it work reliably in CVS Emacs.
10617         (gnus-summary-limit-strange-charsets-predicate)
10618         (gnus-summary-limit-to-predicate): New functions.
10619
10620 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
10621
10622         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
10623         specifying array size.
10624         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
10625         array if it is too small.
10626         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
10627         (gnus-sort-threads-loop): New function.
10628
10629 2006-12-06  Chris Moore  <dooglus@gmail.com>
10630
10631         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
10632         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
10633
10634 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
10635
10636         * mm-url.el (mm-url-predefined-programs): Call curl with correct
10637         options.
10638
10639 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10640
10641         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
10642         DOS-ing the recipient.
10643
10644         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
10645         the headers when creating the mapping to avoid mismappings.
10646         (nnweb-gmane-create-mapping): Always nix out old mapping.
10647
10648 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10649
10650         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
10651         and mm-verify-option to never.
10652
10653 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10654
10655         * message.el (message-signed-or-encrypted-p): New function.
10656         (message-forward-make-body): Use it.
10657
10658         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
10659         Replace encode-coding-string with mm-encode-coding-string.
10660
10661 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10662
10663         * nneething.el (nneething-decode-file-name):
10664         Replace decode-coding-string with mm-decode-coding-string.
10665
10666         * gnus-int.el (gnus-open-server): Say failed server's name.
10667
10668 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10669
10670         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
10671         strings to a single string.  Quote `errors-file-name'.
10672         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
10673         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
10674         Adjust calls.  Use `shell-quote-argument'.
10675
10676 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
10677
10678         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
10679         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
10680
10681         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
10682         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
10683         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
10684         (gnus-group-make-directory-group, gnus-group-transpose-groups):
10685         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
10686         (gnus-subscribe-newsgroup, gnus-1):
10687         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
10688         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
10689         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
10690         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
10691
10692 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10693
10694         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
10695         keystroke.
10696         (gnus-summary-limit-to-bodies): Implement headersp.
10697
10698 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10699
10700         * dns.el (query-dns): Protect against "Process dns deleted" strings.
10701
10702 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
10703
10704         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
10705
10706 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10707
10708         * message.el (message-generate-hashcash): Expand range of values to
10709         include `opportunistic'.
10710         (message-send-mail): Use it.
10711
10712 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10713
10714         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
10715         and comment it.
10716
10717         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
10718
10719 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
10720
10721         * gnus-util.el (gnus-extract-address-components): Improve comment.
10722
10723 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10724
10725         * gnus-util.el (gnus-extract-address-components): Work with address in
10726         which the name portion contains @.
10727
10728         * lpath.el: Fbind custom-autoload.
10729
10730 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
10731
10732         * gnus.el (gnus-start): Move custom group up.
10733         (gnus-select-method): Don't autoload, but make it available for
10734         `customize-variable'.
10735         (gnus-getenv-nntpserver): Don't autoload.
10736
10737 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
10738
10739         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
10740
10741 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
10742
10743         * message.el (message-sendmail-extra-arguments): New variable.
10744         (message-send-mail-with-sendmail): Use it.
10745
10746 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10747
10748         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
10749         mm-with-unibyte-current-buffer to make string unibyte.
10750
10751         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
10752         mm-string-as-multibyte.
10753
10754 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
10755
10756         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
10757         Reported by Werner Koch <wk@gnupg.org>.
10758
10759 2006-11-14  Daiki Ueno  <ueno@p360>
10760
10761         * mml2015.el: Autoload epa-select-keys when compiling.
10762
10763 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
10764
10765         * mml2015.el (mml2015-epg-sign): Save the signing keys in
10766         message-options.
10767         (mml2015-epg-encrypt): Save the recipient keys in message-options.
10768
10769 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
10770
10771         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
10772         EasyPG (< 0.0.6).
10773         (mml2015-always-trust): New user option.
10774         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
10775         prompt.
10776
10777 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10778
10779         * nntp.el (nntp-authinfo-force): New variable.
10780         (nntp-send-authinfo): Use it.
10781
10782 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
10783
10784         * message.el (message-strip-subject-encoded-words): Allow _not_ to
10785         decode encoded words.  Improve prompt.  Add comment about forwarding.
10786         (message-replacement-char): Move up.
10787
10788 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
10789
10790         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
10791         instead of gnus-intersection because arguments of gnus-sorted-nunion
10792         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
10793
10794 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
10795
10796         * message.el (message-strip-subject-encoded-words): Reformat prompt.
10797         (message-simplify-subject-functions):
10798         Enable message-strip-subject-encoded-words by default.
10799
10800 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
10801
10802         * message.el (message-strip-subject-encoded-words): New function.
10803         (message-simplify-subject-functions): New variable.
10804         (message-simplify-subject): Use it.  Fix typo in doc string.
10805         Support message-strip-subject-encoded-words.
10806
10807 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
10808
10809         * gnus-diary.el (gnus-diary-delay-format-function):
10810         * nndiary.el (nndiary-reminders):
10811         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
10812
10813 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
10814
10815         * gnus-art.el (article-hide-boring-headers): Fetch date from
10816         gnus-original-article-buffer to avoid problems with localized date
10817         strings.
10818
10819 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10820
10821         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
10822
10823 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
10824
10825         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
10826         New variables.
10827         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
10828         (mm-charset-synonym-alist): Move some entries to
10829         mm-codepage-iso-8859-list.
10830         (mm-charset-synonym-alist, mm-charset-override-alist):
10831         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
10832
10833 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10834
10835         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
10836
10837 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
10838
10839         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
10840         with Emacs 21 and XEmacs.
10841
10842 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
10843
10844         * spam.el (spam-parse-address): New function for better parsing,
10845         catching errors, etc.
10846         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
10847
10848 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
10849
10850         * mm-view.el: Add interactive arg to html2text autoload.
10851
10852 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10853
10854         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
10855
10856 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
10857
10858         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
10859         New variables.
10860         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
10861         (mm-charset-synonym-alist): Move some entries to
10862         mm-codepage-iso-8859-list.
10863
10864         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
10865
10866 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
10867
10868         * message.el (message-citation-line-format)
10869         (message-insert-formated-citation-line): Fix implementation of %E, %N
10870         and %n according to the doc string.
10871
10872 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
10873
10874         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
10875         Use car-safe to avoid bad parses.
10876
10877 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10878
10879         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
10880         names.
10881
10882         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
10883
10884 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10885
10886         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
10887         header.
10888
10889         * message.el (message-draft-headers): Add Date.
10890         (message-headers-to-generate): Fix typo in docstring.
10891
10892         * nndraft.el (nndraft-required-headers): New variable.
10893         (nndraft-generate-headers): Use it.
10894
10895         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
10896
10897 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
10898
10899         * gnus-registry.el (gnus-registry-wash-for-keywords)
10900         (gnus-registry-find-keywords): New functions to allow easy searching of
10901         articles that are in the registry.
10902
10903 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
10904
10905         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
10906         Use ietf-drums-parse-address instead of gnus-extract-address-components.
10907         Reported by Damien Elmes <damien@repose.cx>.
10908
10909 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
10910
10911         * gnus.el (gnus-mime): Remove unused custom group.
10912
10913 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10914
10915         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
10916         "blank line" when searching for end of armor headers.
10917
10918 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
10919
10920         * gmm-utils.el (gmm-write-region): Fix variable name.
10921
10922 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
10923
10924         * gmm-utils.el (gmm-write-region): New function based on compatibility
10925         code from `mm-make-temp-file'.
10926
10927         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
10928
10929         * nnmaildir.el (nnmaildir--update-nov)
10930         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
10931         Use `gmm-write-region'.
10932
10933 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
10934
10935         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
10936         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
10937
10938         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
10939
10940         * message.el (message-replacement-char): New variable.
10941         (message-fix-before-sending): Use it.
10942         (message-simplify-subject): New function to remove duplicate code.
10943         (message-reply, message-followup): Use it.
10944
10945         * gnus-sum.el (gnus-summary-make-menu-bar):
10946         Clarify gnus-summary-limit-to-articles.
10947
10948 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
10949
10950         * gnus-util.el (gnus-with-local-quit): New macro.
10951
10952         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
10953
10954 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
10955
10956         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
10957         ignore non-string data.
10958
10959 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
10960
10961         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
10962         non-string data (needs to be done in the registry too).
10963
10964 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
10965
10966         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
10967         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
10968         (gnus-registry-split-fancy-with-parent)
10969         (gnus-registry-fetch-simplified-message-subject-fast)
10970         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
10971         Remove text properties on ingress into the registry and when it's saved.
10972         (gnus-registry-clean-empty-function): Fix bug with cleaning the
10973         registry from entries with no groups.
10974
10975 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
10976
10977         * gnus-util.el (gnus-string-remove-all-properties): Add utility
10978         function to remove string properties.
10979
10980 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
10981
10982         * gmm-utils.el (gmm): Adjust custom version.
10983
10984         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
10985         Adjust custom version.
10986
10987         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
10988
10989 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
10990
10991         * gnus-art.el (gnus-insert-prev-page-button)
10992         (gnus-insert-next-page-button): Simplify.  Reformat.
10993
10994 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
10995
10996         * gnus-art.el (gnus-insert-prev-page-button)
10997         (gnus-insert-next-page-button): Apply gnus-article-button-face.
10998
10999 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
11000
11001         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
11002
11003 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
11004
11005         * gnus-art.el (gnus-insert-mime-button)
11006         (gnus-insert-mime-security-button):
11007         Apply gnus-article-button-face to MIME and security buttons.
11008
11009 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
11010
11011         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
11012         readable.
11013
11014 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11015
11016         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
11017
11018 2006-09-20  Steve Youngs  <steve@sxemacs.org>
11019
11020         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
11021         `browse-url-of-file' instead of `browse-url'.
11022
11023 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11024
11025         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
11026         regexp.  Articles containing quotation were cut prematurely.
11027
11028 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11029
11030         * message.el (message-cite-original-1): Use nobody by default for the
11031         value of From header.
11032         (message-reply): Ditto.
11033
11034 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
11035
11036         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
11037         to the gnus-info.  This fixes a bug of inline-PGP message verification.
11038         Reported by Michael Piotrowski <mxp@dynalabs.de>.
11039
11040 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
11041
11042         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
11043         mails in the doc string.  Add some URLs in comment.
11044         (pop3-movemail): Warn about pop3-leave-mail-on-server.
11045
11046 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11047
11048         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
11049         backslashes handling and the way to find boundaries of quoted strings.
11050
11051 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
11052
11053         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
11054         mml1991-encrypt-to-self is set and mml1991-signers is not set.
11055         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
11056         mml2015-encrypt-to-self is set and mml2015-signers is not set.
11057
11058 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
11059
11060         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
11061         doc string.
11062         (gnus-button-regexp, gnus-button-last): Remove unused variables.
11063
11064 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11065
11066         * lpath.el: Fbind epg-check-configuration.
11067
11068 2006-09-06  Simon Josefsson  <jas@extundo.com>
11069
11070         * mml2015.el (mml2015-use): Doc fix, mention epg.
11071
11072 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
11073
11074         * mml2015.el (mml2015-use): Default to epg, if available.
11075
11076 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
11077
11078         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
11079         message-sender.
11080         (mml1991-epg-encrypt): Ditto.
11081         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
11082         message-sender.
11083         (mml2015-epg-encrypt): Ditto.
11084
11085 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
11086
11087         * message.el (message-send-mail-with-sendmail): Look for sendmail in
11088         several common directories.
11089
11090 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
11091
11092         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
11093         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
11094
11095 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
11096
11097         * gnus-art.el (article-decode-encoded-words): Make it fast.
11098
11099 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
11100
11101         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
11102
11103         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
11104         in quoted string into `\'.
11105
11106 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11107
11108         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
11109         Use standard-syntax-table.
11110
11111 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11112
11113         * gnus-art.el (gnus-decode-address-function): New variable.
11114         (article-decode-encoded-words): Use it to decode headers which are
11115         assumed to contain addresses.
11116         (gnus-mime-delete-part): Remove useless `or'.
11117
11118         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
11119         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
11120         (gnus-nov-parse-line): Use it to decode From header.
11121         (gnus-get-newsgroup-headers): Ditto.
11122         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
11123
11124         * mail-parse.el (mail-decode-encoded-address-region): New alias.
11125         (mail-decode-encoded-address-string): New alias.
11126
11127         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
11128         New function.
11129         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
11130         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
11131         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
11132         (rfc2047-decode-string): Ditto.
11133         (rfc2047-decode-address-region): New function.
11134         (rfc2047-decode-address-string): New function.
11135
11136 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
11137
11138         * message.el (message-caesar-buffer-body): Allow rotating headers.
11139
11140         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
11141
11142         * message.el (message-insert-formated-citation-line): Fix %f.
11143         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
11144
11145 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11146
11147         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
11148         (gnus-bookmark-mouse-available-p): New macro.
11149         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
11150         (gnus-bookmark-bmenu-show-infos): Use it.
11151         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
11152         (gnus-bookmark-bmenu-hide-infos): Ditto.
11153         (gnus-bookmark-remove-properties): New function.
11154         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
11155         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
11156         (gnus-bookmark-write-file): Bind coding-system-for-write.
11157         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
11158         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
11159         group before selecting it.
11160         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
11161         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
11162         quit-window if it is not available; use gnus-mouse-2 and bind it to
11163         gnus-bookmark-bmenu-select-by-mouse.
11164         (gnus-bookmark-show-details): Remove unused variable `details-list'.
11165         (gnus-bookmark-bmenu-select-by-mouse): New function.
11166
11167 2006-08-13  Romain Francoise  <romain@orebokech.com>
11168
11169         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
11170         space.
11171
11172 2006-08-10  Romain Francoise  <romain@orebokech.com>
11173
11174         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
11175         (dns-mode-soa-auto-increment-serial): New user option.
11176         (dns-mode-soa-maybe-increment-serial): New function.
11177         (dns-mode): Add the latter to `write-contents-functions'.
11178
11179 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11180
11181         * compface.el (uncompface): Use binary rather than raw-text-unix.
11182
11183 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11184
11185         * compface.el (uncompface): Make sure the eol conversion doesn't take
11186         place when communicating with the external programs.
11187         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
11188
11189 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
11190
11191         * nnheader.el (nnheader-insert-head): Fix typo in comment.
11192
11193 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11194
11195         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
11196         Make it more robust by parsing author and date independently.
11197
11198 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11199
11200         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
11201
11202 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
11203
11204         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
11205         first matching secret key.
11206         (mml2015-epg-encrypt): Ditto.
11207
11208         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
11209         first matching secret key.
11210         (mml1991-epg-encrypt): Ditto.
11211
11212         * mml2015.el (mml2015-encrypt-to-self): New user option.
11213         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
11214         mml2015-epg-encrypt-to-self is set.
11215
11216         * mml1991.el (mml1991-encrypt-to-self): New variable.
11217         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
11218         mml1991-epg-encrypt-to-self is set.
11219
11220         * mml2015.el (mml2015-signers): New user option.
11221         (mml2015-epg-sign): Reflect the value of mml2015-signers.
11222         (mml2015-epg-encrypt): Allow to select signing keys.
11223
11224         * mml1991.el (mml1991-signers): New variable.
11225         (mml1991-epg-sign): Reflect the value of mml1991-signers.
11226         (mml1991-epg-encrypt): Allow to select signing keys.
11227
11228 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11229
11230         * nnheader.el (nnheader-insert-head): Make it work even if the file
11231         uses CRLF for the line-break code.
11232
11233 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
11234
11235         * mml2015.el: Require mml-sec instead of password.
11236         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
11237         (mml2015-cache-passphrase): Inherit the default value from
11238         mml-secure-cache-passphrase.
11239         (mml2015-passphrase-cache-expiry): Inherit the default value from
11240         mml-secure-passphrase-cache-expiry.
11241
11242         * mml1991.el: Require mml-sec instead of password.
11243         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
11244         (mml1991-cache-passphrase): Inherit the default value from
11245         mml-secure-cache-passphrase.
11246         (mml1991-passphrase-cache-expiry): Inherit the default value from
11247         mml-secure-passphrase-cache-expiry.
11248
11249         * mml-sec.el: Require password.
11250         (mml-secure-verbose): New user option.
11251         (mml-secure-cache-passphrase): New user option.
11252         (mml-secure-passphrase-cache-expiry): New user option.
11253
11254 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
11255
11256         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
11257         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
11258         andreas@altroot.de (Andreas Vögele).
11259
11260         FIXME: Use `tiny change'?
11261
11262 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11263
11264         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
11265         workaround for the url package included with Emacs.
11266
11267         * nnweb.el (nnweb-google-create-mapping): Update regexp.
11268
11269 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11270
11271         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
11272         correctly.  This fixes a bug caused by the 2006-05-12 change.
11273
11274 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
11275
11276         * nnmail.el (nnmail-article-group): If splitting raises an error, give
11277         some information about the error when saying that the `bogus' mail
11278         group will be used.
11279
11280 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
11281
11282         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
11283         string.
11284
11285 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
11286
11287         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
11288
11289 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11290
11291         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
11292
11293 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
11294
11295         * mml1991.el (mml1991-function-alist): Add epg.
11296         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
11297         (mml1991-epg-encrypt): New functions.
11298
11299 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
11300
11301         * mml2015.el (mml2015-verbose): New variable.
11302         (mml2015-cache-passphrase): Ditto.
11303         (mml2015-passphrase-cache-expiry): Ditto.
11304         (mml2015-function-alist): Add epg.
11305         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
11306         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
11307         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
11308         New functions.
11309
11310 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11311
11312         * message.el (message-cite-original-1): Preserve region when removing
11313         quoted text due to X-No-Archive in order to avoid bogus attribution
11314         when citing multiple messages.
11315
11316 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11317
11318         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
11319         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
11320
11321 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
11322
11323         * gnus-diary.el (gnus-user-format-function-d)
11324         (gnus-user-format-function-D): Autoload.
11325
11326         * imap.el (Commentary): Fix typo.
11327
11328         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
11329         2006-04-22 contribution.
11330
11331 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11332
11333         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
11334         It didn't really fix the bogosity I'm seeing with solid web groups.
11335
11336 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11337
11338         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
11339         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
11340         created using server names.  If we use the feature without declaring
11341         it, Gnus does not properly manage server and group state.
11342
11343         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
11344         bound.
11345
11346 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11347
11348         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
11349         looking up the method using GROUP's prefix before inventing a new one.
11350         It is used on killed/unknown groups in various places where returning
11351         an all-new method isn't expected by the caller.
11352
11353         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
11354         and match semantics of gnus-group-real-prefix.
11355
11356 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
11357
11358         * nnmail.el (nnmail-broken-references-mailers): New variable.
11359         (nnmail-ignore-broken-references): New function generalizing
11360         nnmail-fix-eudora-headers.
11361         (nnmail-fix-eudora-headers): Now obsolete.
11362
11363         * gnus-art.el (gnus-button-handle-custom):
11364         Support `customize-apropos*'.
11365
11366 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11367
11368         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
11369
11370         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
11371         articles.
11372
11373 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
11374
11375         * message.el (message-cite-reply-above): New variable.
11376         (message-yank-original): Use it.
11377
11378 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11379
11380         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
11381
11382 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
11383
11384         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
11385         as read.
11386
11387         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
11388
11389 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
11390
11391         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
11392         (gnus-bookmark-default-file): Use gnus-directory.
11393         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
11394         Remove "*" in doc string.
11395         (gnus-bookmark-write-file): Simplify.
11396         (gnus-bookmark-maybe-sort-alist): Use `when'.
11397         (gnus-bookmark-get-bookmark): Fix typo in doc string.
11398         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
11399         Add FIXME about Emacs 21 and XEmacs compatibility.
11400         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
11401         compatibility.
11402         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
11403         compatibility.
11404         (gnus-bookmark-menu-heading): Fix version.
11405
11406 2006-06-19  Bastien Guerry  <bzg@altern.org>
11407
11408         * gnus-bookmark.el: New file.
11409
11410 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11411
11412         * message.el (message-syntax-checks): Doc fix.
11413
11414 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11415
11416         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
11417         unsubscribed groups as if they were killed ones.  It causes duplicate
11418         entries in gnus-newsrc-alist.
11419
11420 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11421
11422         * message.el (message-syntax-checks): Doc fix.
11423         (message-send-mail): Add check for continuation headers.
11424         (message-check-news-header-syntax): Fix regexp used to check for
11425         continuation headers.
11426
11427 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11428
11429         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
11430
11431 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
11432
11433         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
11434
11435 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11436
11437         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
11438         default-truncate-lines.
11439
11440 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11441
11442         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
11443         to fill the utf-8 entry.
11444
11445         * lpath.el: Fbind unicode-precedence-list.
11446
11447 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11448
11449         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
11450
11451 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
11452
11453         * gnus-agent.el (directory-files-and-attributes): Move all the way
11454         forward (the third and final move).
11455         (gnus-agent-read-agentview): Trap reconstruction errors due to
11456         nonexistent directory.  Handle by returning nil.
11457
11458 2006-05-30  Didier Verna  <didier@xemacs.org>
11459
11460         * message.el (message-dont-reply-to-names): Update the custom type.
11461         * message.el (message-dont-reply-to-names): New defsubst: potentially
11462         convert a list of regexps into a single one.
11463         * message.el (message-get-reply-headers): Use it.
11464         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
11465
11466 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11467
11468         * gnus-agent.el (directory-files-and-attributes): Move forward.
11469
11470 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
11471
11472         * gnus-ml.el (gnus-mailing-list-subscribe)
11473         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
11474         (gnus-mailing-list-message): Fix doc strings.
11475
11476 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11477
11478         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
11479         of doing it manually.
11480
11481 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
11482
11483         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
11484         comment.
11485
11486 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
11487
11488         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
11489         (gnus-agent-read-agentview): Fix handling of end-of-file error.
11490         (gnus-agent-read-local): All symbols allocated in my-obarray.
11491         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
11492         (gnus-agent-regenerate-group): Check numeric names to see if they are
11493         messages or groups.
11494         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
11495         better way of do this...)
11496
11497         * gnus-cache.el (gnus-agent-total-fetched-for):
11498         Ignore 'dummy.group' (there should be a better way of do this...)
11499
11500 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11501
11502         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
11503         (gnus-saved-headers): Ditto.
11504         (gnus-default-article-saver): Mention functions may have properties.
11505         (gnus-article-save): Override gnus-save-all-headers and
11506         gnus-saved-headers by :headers property which saver function may have.
11507         (gnus-summary-save-in-file): Add :headers property.
11508         (gnus-summary-write-to-file): Ditto.
11509
11510         * gnus-sum.el (gnus-summary-save-article): Bind
11511         gnus-prompt-before-saving to t when saving many articles in a file;
11512         always show all headers.
11513
11514         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
11515
11516 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
11517
11518         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
11519         marks.
11520
11521         * message.el (message-indent-citation): Add optional arguments to allow
11522         using it outside of message buffers.
11523
11524         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
11525         (gnus-article-treat-unfold-headers): Use it.
11526         (gnus-article-truncate-lines): New variable.
11527         (gnus-article-mode): Use it.
11528         (gnus-article-toggle-truncate-lines): New function.
11529
11530         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
11531         Add gnus-article-toggle-truncate-lines.
11532
11533         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
11534         coding system in XEmacs, use binary.
11535
11536 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11537
11538         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
11539         after-load-alist.
11540
11541         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
11542         this function should save decoded articles.
11543         (gnus-summary-write-to-file): Use property to specify this function
11544         should save decoded articles and specify gnus-summary-save-in-file
11545         should be used to save articles other than the first one when saving
11546         many articles.
11547         (gnus-summary-save-body-in-file): Use property to specify this
11548         function should save decoded articles.
11549         (gnus-summary-write-body-to-file): Use property to specify this
11550         function should save decoded articles and specify
11551         gnus-summary-save-body-in-file should be used to save articles other
11552         than the first one when saving many articles.
11553
11554         * gnus-sum.el (gnus-summary-save-article): Simplify.
11555
11556 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11557
11558         * gnus-art.el (gnus-default-article-saver):
11559         Add gnus-summary-write-body-to-file.
11560         (gnus-article-save-coding-system): Don't use coding system object
11561         in XEmacs.
11562         (gnus-read-save-file-name): Add optional `dir-var' argument which
11563         specifies directory in which files are saved; work even if optional
11564         `variable' argument is not specified.
11565         (gnus-summary-write-to-file): Read file name.
11566         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
11567         (gnus-summary-write-body-to-file): New function.
11568
11569         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
11570         (gnus-summary-local-variables): Add it.
11571         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
11572         (gnus-summary-save-article): Remove optional `decode' argument;
11573         determine whether to decode articles by the value of
11574         gnus-default-article-saver; when saving many files using
11575         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
11576         it first and use gnus-summary-save-in-file or
11577         gnus-summary-save-body-in-file thereafter unless
11578         gnus-prompt-before-saving is always; move point to article which
11579         will be saved.
11580         (gnus-summary-save-article-file): Revert.
11581         (gnus-summary-write-article-file): Revert.
11582         (gnus-summary-save-article-body-file): Revert.
11583         (gnus-summary-write-article-body-file): New function.
11584
11585 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11586
11587         * gnus-art.el (gnus-default-article-saver): Doc fix.
11588         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
11589         from gnus-summary-save-article-coding-system, and default to a
11590         certain coding system.
11591         (gnus-output-to-file): Add coding cookie and encode text according
11592         to gnus-article-save-coding-system; don't use mm-append-to-file.
11593
11594         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
11595         gnus-art.el and rename to gnus-article-save-coding-system.
11596         (gnus-summary-save-article): Require gnus-art; don't show all
11597         headers if it decodes articles; don't add coding cookie here;
11598         don't bind mm-text-coding-system-for-write.
11599         (gnus-summary-save-article-file): Save decoded articles.
11600         (gnus-summary-write-article-file): When saving many files, use
11601         gnus-summary-write-to-file first and gnus-summary-save-in-file
11602         thereafter unless gnus-prompt-before-saving is always.
11603         (gnus-summary-save-article-body-file): Save decoded articles.
11604
11605         * lpath.el: Fbind select-safe-coding-system for XEmacs.
11606
11607 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
11608
11609         * nnrss.el (nnrss-check-group): Bind hash-index.
11610
11611 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
11612
11613         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
11614         its hash index.  Store this hash in `nnrss-group-data'.
11615         (nnrss-read-group-data): Update accordingly.
11616
11617 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
11618
11619         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
11620         entry.
11621
11622         * gnus-sum.el (gnus-summary-make-menu-bar):
11623         Add gnus-article-browse-html-article.
11624
11625 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
11626
11627         * gnus-sum.el (gnus-summary-mime-map):
11628         Add gnus-article-browse-html-article.
11629
11630         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
11631
11632 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
11633
11634         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
11635         suitable coding systems in customize.
11636
11637 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
11638
11639         * mail-source.el (mail-sources): Fix custom type.
11640
11641 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
11642
11643         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
11644         (gnus-summary-expire-articles-now): Shorten prompt.
11645
11646         * gmm-utils.el (wid-edit): Require.
11647         (defun-gmm): Rename from `gmm-defun-compat'.
11648         (gmm-image-search-load-path): Use it.
11649         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
11650
11651 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11652
11653         * gnus-sum.el (gnus-summary-save-article-coding-system):
11654         New variable.
11655         (gnus-summary-save-article): Add optional `decode' argument.
11656         If it is set and gnus-summary-save-article-coding-system is non-nil,
11657         save decoded article.
11658         (gnus-summary-write-article-file): Save decoded article if
11659         gnus-summary-save-article-coding-system is non-nil.
11660
11661         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
11662         type.
11663
11664 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11665
11666         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
11667
11668 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11669
11670         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
11671         first to test gnus-single-article-buffer which may be buffer-local.
11672
11673         * gnus-sum.el (gnus-summary-setup-buffer):
11674         Make gnus-single-article-buffer buffer-local and nil in ephemeral
11675         group; make gnus-article-buffer, gnus-article-current, and
11676         gnus-original-article-buffer always buffer-local.
11677         (gnus-summary-exit): Kill article buffer belonging to ephemeral
11678         group.
11679         (gnus-handle-ephemeral-exit): Don't move to next summary line.
11680
11681 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
11682
11683         * nnml.el (nnml-request-compact-group): Compressed files might not
11684         have .gz extension.
11685
11686 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11687
11688         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
11689         (mm-copy-to-buffer): Use with-current-buffer.
11690         (mm-display-part): Simplify.
11691         (mm-inlinable-p): Add optional arg `type'.
11692
11693 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11694
11695         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
11696         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
11697         Try harder to show the attachment internally or externally using
11698         gnus-mime-view-part-as-type.
11699
11700 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
11701
11702         * message.el (message-from-style, message-signature-separator)
11703         (message-user-organization-file, message-send-mail-function)
11704         (message-citation-line-function, message-yank-prefix)
11705         (message-indent-citation-function, message-signature)
11706         (message-signature-file, message-signature-insert-empty-line):
11707         Remove autoloads.
11708
11709         * gnus-art.el (gnus-buttonized-mime-types):
11710         Remove "multipart/signed".  Revert 2006-04-26 change.
11711
11712 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11713
11714         * gnus.el (gnus-version-number): Bump version.
11715
11716 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
11717
11718         * gnus.el: No Gnus v0.5 is released.
11719
11720 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11721
11722         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
11723         fetching articles by message-id.
11724
11725 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11726
11727         * message.el (hashcash): Require hashcash as normal.
11728
11729         * ecomplete.el (ecomplete-highlight-match-line):
11730         Use point-at-eol.
11731         (ecomplete-highlight-match-line): Use `highlight', because that
11732         face exists in both Emacs and XEmacs.
11733
11734         * message.el (message-display-abbrev): Use point-at-bol.
11735
11736         * mail-source.el: Don't require timer/timer-funcs.
11737
11738         * gnus-async.el: Ditto.
11739
11740         * password.el: Ditto.
11741
11742         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
11743
11744         * mm-url.el: Ditto.
11745
11746         * gnus-xmas.el: Don't require timer-funcs.
11747
11748         * mm-util.el: Require timer/timer-funcs.
11749
11750 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11751
11752         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
11753         Close.
11754
11755 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11756
11757         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
11758         unibyte after clear-decrypt function runs.
11759
11760         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
11761         returns as a unibyte string.
11762
11763 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11764
11765         * lpath.el: Revert.
11766
11767         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
11768         (pgg-gpg-process-sentinel): Revert.
11769
11770         * pgg-pgp.el (pgg-pgp-process-region): Revert.
11771         (pgg-pgp-lookup-key): Revert.
11772
11773         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
11774         (pgg-pgp5-lookup-key): Revert.
11775
11776         * pgg.el (pgg-fetch-key): Revert.
11777
11778 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11779
11780         * lpath.el: Fbind string-as-multibyte for XEmacs.
11781
11782         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
11783         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
11784         (mml1991-pgg-encrypt): Ditto.
11785
11786         * pgg-gpg.el (pgg-string-to-multibyte): New function.
11787         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
11788         a multibyte buffer.
11789
11790         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
11791         (pgg-pgp-lookup-key): Ditto.
11792
11793         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
11794         (pgg-pgp5-lookup-key): Ditto.
11795
11796         * pgg.el (pgg-fetch-key): Ditto.
11797
11798 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
11799
11800         * message.el (message-user-organization-file): Check several
11801         locations of the organization file.
11802
11803         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
11804         Add gnus-article-view-part-as-type.
11805
11806         * gnus-art.el (gnus-article-view-part-as-type): New function.
11807
11808         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
11809         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
11810
11811         * mml.el: Simplify autoload.
11812         (mml-mode): defvar dnd-protocol-alist instead of using
11813         symbol-value.
11814         (mml-default-directory): New variable.
11815         (mml-minibuffer-read-file): Use it.
11816         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
11817
11818         * message.el (message-citation-line-format): New variable.
11819         (message-insert-formated-citation-line): New function.
11820         (message-citation-line-function):
11821         Add `message-insert-formated-citation-line' to custom type.
11822
11823         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
11824         to doc string.
11825
11826         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
11827         depending on mm-verify-option.
11828
11829 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11830
11831         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
11832         binding pgg-* variables; reimplement the section which prevents
11833         MIME header from being signed.
11834         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
11835         pgg-text-mode; remove a blank line at the top of body.
11836
11837         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
11838         lines at the top of body; use gnus-newsgroup-charset if there's no
11839         Charset header.
11840
11841 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11842
11843         * message.el (message-self-insert-commands): Doc fix.
11844
11845         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
11846         (mm-uu-pgp-encrypted-test): Ditto.
11847         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
11848         between header and body; return application/pgp-encrypted handle
11849         if decryption failed; decode decrypted body by charset.
11850
11851         * mm-decode.el (mm-automatic-display): Don't make application/pgp
11852         element match to application/pgp-*.
11853
11854 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11855
11856         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
11857         HTML.
11858
11859 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11860
11861         * mail-source.el (mail-source-call-script): Message the error
11862         string.
11863
11864 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11865
11866         * gnus-util.el (gnus-byte-compile): Use it.
11867
11868 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
11869
11870         * gnus-util.el (kill-empty-logs): New function.
11871
11872 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11873
11874         * message.el (message-mail-alias-type): Doc fix.
11875         (message-mail-alias-type-p): New function.
11876         (message-send): Use it.
11877         (message-mode): Ditto.
11878         (message-strip-forbidden-properties): Ditto.
11879
11880         * ecomplete.el (ecomplete-database-file-coding-system):
11881         New variable.
11882         (ecomplete-save): Use it.
11883         (ecomplete-setup): Use it.
11884
11885 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11886
11887         * message.el (message-self-insert-commands): New variable.
11888         (message-strip-forbidden-properties): Use it.
11889
11890 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11891
11892         * message.el (message-put-addresses-in-ecomplete): Use a regexp
11893         that doesn't make XEmacs choke.
11894
11895 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
11896
11897         * gnus-util.el (gnus-replace-in-string):
11898         Prefer replace-regexp-in-string over of replace-in-string.
11899
11900 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11901
11902         * gnus-util.el (gnus-select-frame-set-input-focus):
11903         Use select-frame-set-input-focus if it is available in XEmacs; use
11904         definition defined in Emacs 22 for old Emacsen.
11905
11906         * dgnushack.el: Autoload unmorse-region for XEmacs.
11907
11908         * lpath.el: Bind cursor-in-non-selected-windows and
11909         select-frame-set-input-focus for XEmacs.
11910
11911 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11912
11913         * mm-view.el (mm-inline-text): Use equal instead of equalp.
11914
11915 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
11916
11917         * gnus-registry.el (gnus-registry-cache-save): Remove text
11918         properties when saving via the temp buffer.
11919
11920 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
11921
11922         * message.el (message-generate-hashcash): Honor custom type.
11923
11924 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11925
11926         * message.el (message-generate-hashcash): Default to non-nil when
11927         hashcash is found.
11928
11929         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
11930         (gnus-refer-thread-limit): Increase default to 500.
11931
11932         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
11933
11934         * flow-fill.el (fill-flowed): Allow delete-space.
11935
11936 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
11937
11938         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
11939         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
11940         Remove autoloads.
11941
11942 2006-04-18  Simon Josefsson  <jas@extundo.com>
11943
11944         * message.el (message-generate-hashcash): Default to.
11945
11946 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11947
11948         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
11949         concatenating segments rather than before concatenating them.
11950
11951 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
11952
11953         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
11954
11955 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11956
11957         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
11958
11959         * message.el (message-forward-make-body-plain):
11960         Allow message-forward-ignored-headers to be a list.
11961         (message-remove-ignored-headers): Factor out into function.
11962         (message-forward-make-body-mml): Use it.
11963
11964         * imap.el (imap-quote-specials): New function.
11965         (imap-login-auth): Quote specials.
11966
11967         * rfc2231.el (rfc2231-parse-string): Remove dead code.
11968         (rfc2231-parse-string): Allow concatanation of parameters that
11969         aren't contiguous.  The test case is
11970           (mail-header-parse-content-type "message/external-body;
11971             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
11972             access-type=LOCAL-FILE;
11973             name*1*=plugh%2fhello-sailor%2fbing.pdf")
11974
11975 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11976
11977         * nntp.el (nntp-accept-process-output): Return the value of
11978         `nnheader-accept-process-output'.
11979
11980 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11981
11982         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
11983         (gnus-button-alist): Recognize more diff formats.
11984         (gnus-button-patch): Strip directory.
11985
11986 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
11987
11988         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
11989         Emacs 22 when setting focus.
11990
11991 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11992
11993         * gnus-art.el (gnus-article-treat-types): Do treatment of
11994         text/x-verbatim parts.
11995         (gnus-button-patch): New command.
11996
11997         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
11998         addresses that contain invalid characters.
11999
12000 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12001
12002         * message.el (message-put-addresses-in-ecomplete):
12003         Use gnus-replace-in-string.
12004         (message-is-yours-p): Use the more correct
12005         mail-header-parse-address instead of
12006         mail-extract-address-components.
12007         (message-put-addresses-in-ecomplete): Fix typo.
12008
12009         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
12010         keystroke.
12011
12012         * gnus-art.el (gnus-treatment-function-alist): Change order of
12013         newsgroups/generic header folding to avoid double-folding.
12014
12015         * message.el (message-hidden-headers): Add X-Draft-From.
12016
12017         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
12018         New command.
12019         (gnus-summary-repeat-search-article-backward): New command.
12020
12021         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
12022         groups in the parent topic.
12023
12024 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
12025
12026         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
12027         (spam-extra-header-to-number): Return the CRM114 number as a
12028         number instead of a string.
12029
12030 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12031
12032         * gnus-art.el (gnus-face-properties-alist): Move here from
12033         gnus-fun.
12034
12035         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
12036
12037 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12038
12039         * message.el (message-strip-forbidden-properties): Only display on
12040         self-insert-command.
12041
12042         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
12043         reindent.
12044         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
12045
12046 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
12047
12048         * smiley.el (smiley-style): Fix typo.
12049
12050 2006-03-23  Kenichi Handa  <handa@m17n.org>
12051
12052         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
12053         instead of set-buffer-multibyte.
12054
12055 2006-03-23  Kenichi Handa  <handa@m17n.org>
12056
12057         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
12058         buffer and then decode the buffer text if necessary.
12059         (rfc2231-encode-string): Be sure to work on multibyte buffer at
12060         first, and after mm-encode-body, change the buffer to unibyte.
12061
12062 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12063
12064         * hashcash.el (hashcash-insert-payment-async-2):
12065         Use message-goto-eoh instead of doing it manually.
12066         (mail-add-payment): Use message-narrow-to-header instead of trying
12067         to do the same itself.
12068
12069         * message.el (message-hidden-headers): Add Face.
12070
12071         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
12072         reparenting code.
12073         (gnus-summary-reparent-children): Refactored out code.
12074         (gnus-summary-thread-map): New keystroke.
12075         (gnus-summary-reparent-children): Make into command.
12076
12077         * smiley.el (smiley-style): Default to `medium' if using a large
12078         font.
12079
12080         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
12081         does it itself.
12082
12083         * message.el (message-point-in-header-p): Simplify definition.
12084
12085 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12086
12087         * nnagent.el (nnagent-request-set-mark): Silence log file
12088         writing.
12089         (nnagent-request-set-mark): Use write-region instead of
12090         append-to-file.
12091
12092         * gnus-sum.el (gnus-read-header): Fudge article number if using a
12093         strange select method.
12094
12095         * ecomplete.el (ecomplete-display-matches): Get highlightling
12096         right.
12097         (ecomplete-display-matches): Use literals.
12098         (ecomplete-display-matches): Disable message logging.
12099
12100         * message.el (message-display-abbrev): Small optimization.
12101
12102         * ecomplete.el (ecomplete-display-matches): Allow automatic
12103         display.
12104
12105         * message.el (message-strip-forbidden-properties):
12106         Display abbrevs.
12107         (message-display-abbrev): Get automatic display right.
12108
12109         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
12110         keystrokes.
12111
12112 2006-04-13  Romain Francoise  <romain@orebokech.com>
12113
12114         TODO: Backport to v5-10!
12115
12116         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
12117         Move here (and rename) from gnus-registry.el.
12118
12119         * gnus-registry.el: Require gnus-util.
12120         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
12121
12122 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12123
12124         * gnus-group.el (gnus-group-catchup-current):
12125         Change if-then-else-if-then-else into cond.
12126         (gnus-group-catchup): Indent.
12127         (group-name-at-point): New function.
12128         (gnus-fetch-group): Provide default from thing at point.
12129
12130 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12131
12132         * message.el (message-display-abbrev): Fix regexp.
12133
12134         * ecomplete.el (ecomplete-highlight-match-line):
12135         Reimplement choosing.
12136         (ecomplete-highlight-match-line): Fix up code rewrite, remove
12137         dead variables.
12138
12139         * message.el (message-newline-and-indent): Remove debugging.
12140         (message-display-abbrev): Use new implementation.
12141
12142 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
12143
12144         * gnus-art.el (gnus-article-mode):
12145         Set cursor-in-non-selected-windows to nil.
12146
12147         * smiley.el: Revert previous change.
12148         (smiley-data-directory): defvar it before using it in the
12149         defcustom of `smiley-style'.
12150
12151 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12152
12153         * message.el (message-newline-and-indent): New function.
12154
12155         * ecomplete.el: Implement more bits.
12156
12157         * message.el (message-put-addresses-in-ecomplete): Clean up the
12158         string.
12159
12160         * ecomplete.el (ecomplete-add-item): Chop off decimals.
12161
12162         * gnus-sum.el (gnus-summary-save-parts):
12163         Bind gnus-summary-save-parts-counter and use it to make unique file
12164         names.
12165
12166         * gnus-art.el (gnus-ignored-headers): Add some more headers.
12167
12168         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
12169         parameter to say whether to actually parse the individual
12170         addresses.
12171
12172         * message.el (message-put-addresses-in-ecomplete): New function.
12173         (ecomplete): Require.
12174         (message-mail-alias-type): Add ecomplete as an option.
12175
12176 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
12177
12178         * flow-fill.el (fill-flowed): Remove trailing space from blank
12179         quoted lines.
12180
12181 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12182
12183         * smiley.el (smiley-style): Move definition later to avoid a
12184         compilation warning.
12185
12186 2006-04-12  Kenichi Handa  <handa@m17n.org>
12187
12188         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
12189         buffer and then decode the buffer text if necessary.
12190         (rfc2231-encode-string): Be sure to work on multibyte buffer at
12191         first, and after mm-encode-body, change the buffer to unibyte.
12192         Use mm-disable-multibyte instead of set-buffer-multibyte.
12193
12194 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12195
12196         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
12197         Content-Type header instead of Content-Disposition header.
12198         (gnus-mime-inline-part): Ditto.
12199         (gnus-mime-view-part-as-charset): Ignore charset that the part
12200         specifies.
12201
12202         * mm-decode.el (mm-display-part): Work with external parts and
12203         usual parts similarly.
12204
12205         * mm-extern.el (mm-inline-external-body): Use mm-display-part
12206         instead of gnus-display-mime.
12207
12208         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
12209         instead of with-temp-buffer.
12210
12211         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
12212         tag to summarized topics part in order to encode non-ASCII text.
12213
12214 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
12215
12216         * smiley.el (smiley-style): New variable.
12217         (smiley-directory): New function.
12218         (smiley-data-directory): Derive from `smiley-style' using
12219         `smiley-directory'.
12220         (smiley-regexp-alist): Add new entries.
12221
12222         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
12223         (gnus-article-browse-delete-temp): Add :version.
12224
12225 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
12226
12227         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
12228         the sieve region.
12229
12230 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12231
12232         * gnus.el (gnus-version-number): Bump version.
12233
12234 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
12235
12236         * gnus.el: No Gnus v0.4 is released.
12237
12238 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12239
12240         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
12241         layout.
12242
12243         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
12244         unknown charset.
12245
12246         * message.el (message-header-synonyms): Add Original-To to the
12247         default.
12248
12249         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
12250         optional parameter.
12251
12252 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
12253
12254         * gnus-fun.el (gnus): Require it for gnus-directory.
12255
12256 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12257
12258         * gnus-fun.el (gnus-face-properties-alist): Add :version.
12259
12260 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
12261
12262         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
12263
12264 2006-04-05  Simon Josefsson  <jas@extundo.com>
12265
12266         * password.el (password-reset): New function.
12267
12268 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
12269
12270         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
12271         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
12272
12273 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12274
12275         * nnweb.el (nnweb-google-create-mapping): Update regexp.
12276         Some whitespace was matched into the url, which broke browsing hits
12277         > 100 when mm-url-use-external was nil.
12278
12279 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
12280
12281         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
12282         Check gnus-extra-headers for 'Newsgroups.
12283
12284         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
12285         bound.
12286
12287 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
12288
12289         * pgg-gpg.el: Clean up process buffers every time gpg processes
12290         complete.
12291
12292 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
12293
12294         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
12295         doc string.
12296
12297 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
12298
12299         * pgg-gpg.el (pgg-gpg-process-filter)
12300         (pgg-gpg-wait-for-completion): Check if buffer is alive.
12301
12302         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
12303         lines, temporary fix.
12304
12305 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
12306
12307         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
12308
12309 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
12310
12311         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
12312         default-enable-multibyte-characters.  This reverts the change from
12313         revision 6.17 which is no longer necessary because the passphrase
12314         is sent separately now.  GnuPG messages are unreadable under
12315         multibyte locales with default-enable-multibyte-characters set to
12316         nil.
12317
12318 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
12319
12320         * message.el (message-tool-bar-gnome): Move "spell".
12321
12322 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
12323
12324         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
12325         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
12326         instead.
12327
12328 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
12329
12330         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
12331         Improve newsgroups handling for NNTP overviews which don't include
12332         Newsgroups.
12333
12334 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12335
12336         * message.el (message-resend): Bind message-generate-hashcash to nil.
12337
12338 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12339
12340         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
12341         when searching for already-paid recipients.
12342
12343 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
12344
12345         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
12346         passphrases when it is not needed.
12347         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
12348         passphrase stuff from gpg, should only be necessary when you use
12349         gpg with a smartcard.
12350
12351 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12352
12353         * mml.el (mml-insert-mime): Ignore cached contents of
12354         message/external-body part.
12355
12356         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
12357         (mm-insert-part): Ditto.
12358
12359 2006-03-23  Simon Josefsson  <jas@extundo.com>
12360
12361         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
12362         Reiner.
12363         (pgg-gpg-use-agent-p): Use it again.
12364
12365 2006-03-23  Simon Josefsson  <jas@extundo.com>
12366
12367         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
12368         older emacsen.
12369         (pgg-gpg-use-agent-p): Don't use it.
12370
12371 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
12372
12373         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
12374         if we can.
12375
12376 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
12377
12378         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
12379         (pgg-gpg-update-agent): New function.
12380         (pgg-gpg-use-agent-p): New function.
12381         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
12382         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
12383         (pgg-gpg-sign-region): Use it.
12384
12385 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12386
12387         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
12388         Reported by Ralf Wachinger <rwachinger@gmx.de>.
12389
12390 2006-03-21  Simon Josefsson  <jas@extundo.com>
12391
12392         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
12393         <wilde@sha-bang.de>.
12394         (pgg-gpg-use-agent): New variable.
12395         (pgg-gpg-process-region): Use it.
12396         (pgg-gpg-encrypt-region): Likewise.
12397         (pgg-gpg-encrypt-symmetric-region): Likewise.
12398         (pgg-gpg-decrypt-region): Likewise.
12399         (pgg-gpg-sign-region): Likewise.
12400         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
12401
12402 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
12403
12404         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
12405
12406         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
12407         Add comment on version.
12408
12409 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
12410
12411         * smiley.el: Add missing test smiley.
12412
12413 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12414
12415         * mm-decode.el (mm-with-part): New macro.
12416         (mm-get-part): Use it; work with message/external-body as well.
12417         (mm-save-part): Treat name and filename equally.
12418
12419         * mm-extern.el (mm-extern-cache-contents): New function.
12420         (mm-inline-external-body): Use it; force the part to be displayed;
12421         move undisplayer added to the cached handle to the parent.
12422
12423         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
12424         (gnus-mime-view-part-as-type): Work with message/external-body.
12425
12426         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
12427
12428 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
12429
12430         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
12431         images in image-load-path.  [Sync with image.el, revision 1.60, in
12432         Emacs.]
12433
12434 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
12435
12436         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
12437         path rather than symbol.  Always return list of directories.
12438         Guarantee that image directory comes first.  [Sync with image.el,
12439         revision 1.59, in Emacs.]
12440
12441         * message.el (message-make-tool-bar): Adjust to new API of
12442         `gmm-image-load-path-for-library'.
12443
12444         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
12445
12446         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
12447
12448 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12449
12450         * gnus-art.el (gnus-article-only-boring-p):
12451         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
12452         intangible text.
12453         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
12454
12455 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
12456
12457         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
12458         Use `defun' instead of `gmm-defun-compat'.
12459
12460 2006-03-14  Simon Josefsson  <jas@extundo.com>
12461
12462         * message.el (message-unique-id): Don't use message-number-base36
12463         if (user-uid) is a float.
12464         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
12465
12466 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12467
12468         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
12469
12470         * gnus-art.el (gnus-mime-display-single): Make sure there is an
12471         empty line between a part and a message part.
12472
12473 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
12474
12475         * smiley.el: Add more test smileys.
12476         (smiley-data-directory, smiley-regexp-alist)
12477         (gnus-smiley-file-types): Fix doc strings.
12478         (smiley-update-cache): Clear smiley-cached-regexp-alist before
12479         adding new elements.
12480         (smiley-mouse-map): Unused code.  Make it a comment.
12481
12482 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12483
12484         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
12485         scan latest NoCeM messages instead of old ones.
12486         (gnus-nocem-check-article): Fix regexps so as to match to PGP
12487         delimiters that are recently used.
12488         (gnus-nocem-load-cache): Add autoload cookie.
12489
12490         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
12491
12492         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
12493         level which is larger than gnus-use-nocem is specified.
12494
12495         * gnus-group.el (gnus-group-get-new-news): Ditto.
12496
12497 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
12498
12499         * gnus-util.el (gnus-tool-bar-update): New function.
12500
12501         * gnus-group.el (gnus-group-update-tool-bar): New variable.
12502         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
12503
12504         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
12505
12506         * gnus-group.el (gnus-group-redraw-when-idle)
12507         (gnus-group-redraw-check): Remove.
12508         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
12509
12510 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12511
12512         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
12513         if optional last element is specified in splits (FIELD VALUE...).
12514
12515 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
12516
12517         * message.el (message-make-tool-bar): Rename gmm-image-load-path
12518         to gmm-image-load-path-for-library.  Call with no-error argument.
12519         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
12520
12521         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
12522
12523         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
12524
12525         * gmm-utils.el (gmm-image-load-path): Remove alias.
12526
12527 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
12528
12529         * gmm-utils.el (gmm-image-load-path): Add alias.
12530
12531         * nnml.el (nnml-generate-nov-databases-directory): Rename from
12532         nnml-generate-nov-databases-1.
12533         (nnml-generate-nov-databases): Use it.
12534         (nnml-generate-nov-databases-directory): Document no-active
12535         argument.
12536
12537         * gmm-utils.el (gmm-image-load-path-for-library): Return single
12538         directory if path is t.  Add no-error.
12539
12540         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
12541         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
12542
12543         * gnus-art.el (gnus-article-browse-delete-temp-files):
12544         Simplify resetting gnus-article-browse-html-temp-list.
12545
12546         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
12547         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
12548         Add example to docstring.  Rename local variables.  Move error
12549         checks to default case in cond and simplify.
12550
12551 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12552
12553         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
12554         handle is multipart when calling it recursively.
12555         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
12556
12557 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
12558
12559         * nnimap.el (nnimap-request-update-info-internal): Optimize.
12560         Don't `gnus-uncompress-range' to avoid excessive memory usage.
12561
12562 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12563
12564         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
12565         is loaded.
12566
12567         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
12568         loaded.
12569
12570 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
12571
12572         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
12573         to "Emacs 23 (unicode)" in doc string.
12574
12575         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
12576         "Emacs 23 (unicode)" in comment.
12577
12578 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12579
12580         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
12581
12582         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
12583         characters 160 through 255 in Emacs 23.
12584
12585 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
12586
12587         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
12588         gnus-article-browse-html-temp.
12589         (gnus-article-browse-delete-temp): Make it customizable.
12590         Add `file'.  Adjust doc string.
12591         (gnus-article-browse-delete-temp-files): Add argument.
12592         Allow query for each file.  Adjust doc string.
12593         (gnus-article-browse-html-parts):
12594         Add `gnus-article-browse-delete-temp-files' to
12595         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
12596
12597 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
12598
12599         * gnus-art.el (gnus-article-browse-html-temp)
12600         (gnus-article-browse-delete-temp): New variables.
12601         (gnus-article-browse-delete-temp-files): New function.
12602         (gnus-article-browse-html-parts): Use it.
12603
12604 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
12605
12606         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
12607
12608         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
12609         string.
12610
12611         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
12612         gnus-summary-insert-new-articles when unplugged.
12613         Remove gnus-summary-search-article-forward.
12614
12615         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
12616         display-visual-class instead of display-color-cells.
12617
12618 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12619
12620         * dgnushack.el: Autoload customize-group for XEmacs.
12621
12622         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
12623         message/* containing non-ASCII text properly.
12624
12625 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
12626
12627         * message.el: Require gmm-utils, remove autoloads.
12628         (message-tool-bar): Set default based on
12629         gmm-tool-bar-style.
12630         (message-tool-bar-gnome): Add gmm-customize-mode.
12631
12632         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
12633         gmm-tool-bar-style.
12634         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
12635
12636         * gnus-group.el (gnus-group-tool-bar): Set default based on
12637         gmm-tool-bar-style.
12638         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
12639
12640         * gmm-utils.el (gmm-image-directory): Rename variable from
12641         gmm-image-load-path.
12642         (gmm-image-load-path): Use gmm-image-directory.
12643         (gmm-customize-mode): New function.
12644         (gmm-tool-bar-style): New variable.
12645
12646         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
12647         gnus-group-redraw-line-number.
12648         (gnus-group-redraw-check): Simplify.
12649         (gnus-group-tool-bar-update): Remove redraw check.
12650         (gnus-group-make-tool-bar): Add redraw check.
12651
12652 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
12653
12654         * gnus-art.el (gnus-button): Add missing parentheses.
12655
12656 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12657
12658         * lpath.el: Fbind line-number-at-pos.
12659
12660 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12661
12662         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
12663
12664 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
12665
12666         * gnus-art.el (gnus-button): New face.
12667         (gnus-article-button-face): Use it.
12668
12669         * gnus-sum.el (gnus-summary-tool-bar-gnome):
12670         Add gnus-summary-next-page.  Re-order.
12671
12672         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
12673         next-node are now included.
12674         (gnus-group-redraw-line-number): New internal variable.
12675         (gnus-group-redraw-check): Helper function for updating the tool
12676         bar.
12677         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
12678
12679         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
12680
12681         * spam.el (spam-spamassassin-score-regexp): New internal variable.
12682         (spam-extra-header-to-number, spam-check-spamassassin-headers):
12683         Use it to match format of Spamassassin 3.0 and later.
12684         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
12685         (spam-check-bogofilter)
12686         (spam-bogofilter-register-with-bogofilter): Fix args of
12687         `gnus-error' calls.
12688
12689 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
12690
12691         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
12692         unnecessary interaction when sending queued mails.
12693         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
12694
12695 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
12696
12697         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
12698         first or last are nil.
12699
12700 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12701
12702         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
12703
12704 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12705
12706         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
12707
12708 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12709
12710         * dns.el (query-dns): Protect more against buggy tcp output.
12711
12712 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
12713
12714         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
12715         nov.php.
12716
12717 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
12718
12719         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
12720         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
12721         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
12722         output on the server side.
12723         (nnweb-google-create-mapping): Update regexps and add some
12724         progress indication.
12725
12726 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
12727
12728         * gnus-group.el (gnus-group-tool-bar-gnome):
12729         Fix gnus-agent-toggle-plugged.  Re-order icons.
12730         (gnus-group-tool-bar-gnome):
12731         Add gnus-group-{prev,next}-unread-group.
12732         (gnus-group-tool-bar-gnome): Re-order icons.
12733
12734         * gnus-sum.el (gnus-summary-tool-bar-gnome):
12735         Move gnus-summary-insert-new-articles.
12736
12737         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
12738         Fix comments.
12739
12740         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
12741         also available in Emacs 21.3.
12742
12743         * message.el (message-fix-before-sending): Change "Emacs 22" to
12744         "Emacs 23 (unicode)" in comment.
12745
12746         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
12747         "Emacs 23 (unicode)" in comment.
12748
12749         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
12750         comment.
12751         (mm-coding-system-p): Add comment about no-MULE XEmacs.
12752
12753         * mm-view.el (mm-fill-flowed): Add :version.
12754
12755 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12756
12757         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
12758         and load-path.
12759
12760 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
12761
12762         * message.el: Autoload gmm-image-load-path.
12763         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
12764         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
12765         consitency.
12766
12767         * gmm-utils.el (gmm-image-load-path): Also search in
12768         "../etc/images".  Don't set gmm-image-load-path if we don't find
12769         the image.
12770
12771 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12772
12773         * gmm-utils.el (gmm-image-load-path): Don't make
12774         `gmm-image-load-path' include subdirectories which the second arg
12775         `image' might specify.
12776
12777         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
12778         subdirectory to icon file names.
12779
12780         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
12781
12782 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
12783
12784         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
12785         gmm-image-load-path calls.
12786
12787         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
12788
12789         * message.el (message-make-tool-bar): Ditto.
12790
12791         * mml.el (mml-preview): Add comment concerning tool bar icons.
12792
12793         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
12794         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
12795
12796         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
12797         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
12798
12799         * message.el (message-tool-bar-gnome): Use new icon names.
12800         (message-make-tool-bar): Use `gmm-image-load-path'.
12801
12802         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
12803         New functions from MH-E.
12804         (gmm-image-load-path): New variable from MH-E.
12805         (gmm-image-load-path): New function from MH-E.  Add arguments
12806         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
12807         *-image-load-path-called-flag.
12808
12809 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
12810
12811         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
12812
12813 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
12814
12815         * nnimap.el (nnimap-request-move-article): Change folder back to
12816         source group before deleting.
12817
12818 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
12819
12820         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
12821
12822         * gnus-art.el (mm-url-insert-file-contents-external):
12823         Autoload mm-url.
12824
12825         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
12826
12827 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12828
12829         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
12830         coding system which mm-charset-to-coding-system returns for a
12831         given charset is valid.
12832
12833 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
12834
12835         * html2text.el (html2text-remove-tag-list):
12836         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
12837
12838 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
12839
12840         * gnus-cus.el: Revert 2005-10-17 change.
12841
12842 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12843
12844         * gnus-art.el (article-strip-banner):
12845         Call article-really-strip-banner only when the regexp match is made.
12846
12847 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12848
12849         * gnus-art.el (article-strip-banner):
12850         Use gnus-extract-address-components instead of
12851         mail-header-parse-addresses to make it work with non-ASCII text;
12852         remove mail-encode-encoded-word-string.
12853
12854         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
12855         values which are surrounded with \"...\"; make it never cause a
12856         Lisp error; give up parsing of parameters if it failed in
12857         extracting type.
12858
12859 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
12860
12861         * smime.el (smime-cert-by-ldap-1): Fix bug where
12862         `smime-ldap-search' returns results without userCertificates.
12863
12864 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12865
12866         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
12867
12868 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
12869
12870         * spam.el (spam-check-spamassassin-headers): Adapt format for
12871         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
12872         <ari@mbf.ocn.ne.jp>.
12873         (spam-list-of-processors): Add spam-use-gmane.
12874
12875 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12876
12877         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
12878         make-temp-file; make it work with XEmacs as well.
12879
12880         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
12881         mm-make-temp-file.
12882
12883         * mm-decode.el (mm-display-external): Use the 3rd arg of
12884         mm-make-temp-file.
12885         (mm-create-image-xemacs): Ditto.
12886
12887 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12888
12889         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
12890         with message-narrow-to-headers.
12891         (gnus-draft-setup): Narrow to header to run message-fetch-field.
12892         (gnus-draft-check-draft-articles): New function.
12893         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
12894
12895 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
12896
12897         * gnus-art.el (gnus-article-browse-html-parts):
12898         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
12899         Don't use suffix argument for mm-make-temp-file for Emacs 21
12900         compatibility.  Remove useless `format'.
12901
12902 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
12903
12904         * nnweb.el (nnweb-google-wash-article): Update regexps.
12905         (nnweb-group-alist): Use defvoo instead of defvar.
12906
12907 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12908
12909         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
12910         re-loading nn* modules.
12911
12912 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
12913
12914         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
12915         for `tool-bar-mode' and don't check it's default-value.
12916
12917         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
12918
12919         * message.el (message-make-tool-bar): Ditto.
12920
12921         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
12922         `substring'.  Shorten tmp-file name.
12923
12924         * gnus.el: Remove bogus comment.
12925
12926 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
12927
12928         * gnus-art.el (gnus-article-browse-html-parts): New function.
12929         (gnus-article-browse-html-article): New function for viewing html
12930         articles with a browser.
12931
12932 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
12933
12934         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
12935         in elisp.
12936         (pgg-gpg-encrypt-symmetric-region): Ditto.
12937         (pgg-gpg-sign-region): Ditto.
12938
12939         * pgg-def.el (pgg-text-mode): New variable.
12940
12941         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
12942         (mml2015-pgg-encrypt): Ditto.
12943
12944         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
12945         (mml1991-pgg-encrypt): Ditto.
12946
12947 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12948
12949         * nnfolder.el (nnfolder-insert-newsgroup-line):
12950         Use message-make-date instead of current-time-string.
12951
12952         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
12953         to gnus-decoded which mm-uu might set.
12954
12955 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12956
12957         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
12958         don't decode quoted parameters; remove misimported Emacs code.
12959         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12960         (rfc2231-decode-encoded-string): Don't use split-string which
12961         behaves differently according to Emacs version; use
12962         mm-decode-coding-region to convert charset to coding-system.
12963         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12964         (rfc2231-encode-string): Remove misimported Emacs code.
12965
12966 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12967
12968         * gnus-art.el (article-decode-charset): Don't use ignore-errors
12969         when calling mail-header-parse-content-type.
12970         (article-de-quoted-unreadable): Ditto.
12971         (article-de-base64-unreadable): Ditto.
12972         (article-wash-html): Ditto.
12973
12974         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
12975         calling mail-header-parse-content-type and
12976         mail-header-parse-content-disposition.
12977         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
12978         mail-header-parse-content-type.
12979
12980         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
12981         insert charset and format parameters; encode description after
12982         inserting it to buffer.
12983         (mml-insert-parameter): Fold lines properly even if a parameter is
12984         segmented into two or more lines; change the max column to 76.
12985
12986         * rfc1843.el (rfc1843-decode-article-body): Don't use
12987         ignore-errors when calling mail-header-parse-content-type.
12988
12989         * rfc2231.el (rfc2231-parse-string): Return at least type if
12990         possible; don't cause an error even if it fails in parsing of
12991         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12992         (rfc2231-encode-string): Don't break lines at the beginning, leave
12993         it to mml-insert-parameter.
12994
12995         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
12996         calling mail-header-parse-content-type.
12997
12998 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
12999
13000         * spam-report.el (spam-report-gmane-use-article-number):
13001         Improve doc string.
13002         (spam-report-gmane-internal): Check if a suitable header was found
13003         in the article.
13004
13005 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
13006
13007         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
13008         (rfc2231-encode-string): Make param*=value always begin with LWSP.
13009
13010 2006-02-05  Romain Francoise  <romain@orebokech.com>
13011
13012         Update copyright notices of all files in the gnus directory.
13013
13014 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
13015
13016         * nnweb.el (nnweb-request-group): Avoid growing overview files.
13017
13018 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13019
13020         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
13021         segmented lines of parameter value to cope with Thunderbird 1.5
13022         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
13023         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
13024         (rfc2231-encode-string): Don't make lines exceeding 76 column.
13025
13026 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
13027
13028         * mml.el (mml-generate-mime-1): Correct the order of inline signed
13029         parts.
13030
13031 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
13032
13033         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
13034         there's only one active file for all servers.
13035         (nnweb-request-scan): Make sure nnweb-articles is initialized on
13036         solid groups.  Gnus might have used a FAST request to select the group.
13037         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
13038         and nnweb-search redundantly in the active file.
13039         (nnweb-request-list): Don't list bogus groups.  There can only be one.
13040         (nnweb-request-create-group): Don't use ARGS.
13041         (nnweb-possibly-change-server, nnweb-request-group): Remove some
13042         initialisations.  Let nnoo do the work.
13043
13044 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13045
13046         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
13047         Say the part has been decoded.
13048
13049         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
13050
13051 2006-01-31  Kevin Ryde  <user42@zip.com.au>
13052
13053         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
13054         mailcap-viewer-test-cache when there's no 'test clause, since that
13055         will invert the meaning of a "nil" test previously determined by
13056         mailcap-mailcap-entry-passes-test.
13057
13058 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13059
13060         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
13061         compiling.
13062
13063         * gnus-sum.el: Ditto.
13064
13065         * message.el: Don't bind tool-bar-map when compiling.
13066
13067 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
13068
13069         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
13070
13071 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
13072
13073         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
13074         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
13075         current Google Groups.
13076
13077 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
13078
13079         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
13080         and tool-bar-mode.
13081
13082         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
13083         and tool-bar-mode.
13084
13085         * message.el (message-tool-bar-update): Simplify.
13086         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
13087
13088         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
13089         gnus-summary-buffer.
13090         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
13091         gnus-summary-reply.
13092
13093         * gmm-utils.el (gmm): Add :version.
13094
13095 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13096
13097         * Makefile.in (clean): New rule.
13098         (distclean): Use it.
13099
13100 2006-01-26  Steve Youngs  <steve@sxemacs.org>
13101
13102         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
13103         Don't autoload.
13104
13105 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13106
13107         * gmm-utils.el (gmm-verbose): Add :group.
13108
13109 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
13110
13111         * message.el: Change some comments WRT tool-bars.
13112
13113         * gnus-sum.el (gnus-summary-tool-bar)
13114         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
13115         (gnus-summary-tool-bar-zap-list): New variables.
13116         (gnus-summary-make-tool-bar): Complete rewrite using
13117         `gmm-tool-bar-from-list'.
13118
13119         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
13120         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
13121         New variables.
13122         (gnus-group-make-tool-bar): Complete rewrite using
13123         `gmm-tool-bar-from-list'.
13124         (gnus-group-tool-bar-update): New function.
13125
13126         * message.el (message-mode-field-menu): Add "Show hidden Headers".
13127
13128 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13129
13130         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
13131         is dissected into a single part of which the type is the same as
13132         the given one; decode charset.
13133
13134 2006-01-21  Kevin Ryde  <user42@zip.com.au>
13135
13136         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
13137         into alists as symbol not string, since that's what
13138         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
13139         look for.
13140
13141 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
13142
13143         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
13144         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
13145
13146         * message.el (message-tool-bar-gnome): Use gmm-ignore.
13147
13148 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13149
13150         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
13151         (gnus-xmas-mime-security-button-menu): New function.
13152
13153         * gnus-art.el (gnus-mime-security-button-commands): New variable.
13154         (gnus-mime-security-button-menu): New definition.
13155         (gnus-mime-security-button-map): Use them.
13156         (gnus-mime-security-button-menu): New function.
13157         (gnus-insert-mime-security-button): Addition to help echo.
13158         (gnus-mime-security-run-function, gnus-mime-security-save-part)
13159         (gnus-mime-security-pipe-part): New functions.
13160
13161         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
13162         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
13163
13164         * mm-decode.el (mm-handle-set-disposition): Remove.
13165         (mm-handle-set-description): Remove.
13166
13167 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13168
13169         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
13170         (mm-w3m-standalone-supports-m17n-p): New function.
13171         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
13172         w3m usage.
13173
13174         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
13175         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
13176
13177 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
13178
13179         * message.el (message-tool-bar-zap-list):
13180         Use gmm-tool-bar-zap-list as custom type.
13181         (message-tool-bar-update): New function.
13182         (message-tool-bar, message-tool-bar-gnome)
13183         (message-tool-bar-retro): Add message-tool-bar-update.
13184         (message-tool-bar-gnome): Add flyspell-buffer.
13185
13186         * gnus-util.el (gnus-error): Describe `args'.
13187
13188         * gmm-utils.el (gmm-error): Describe `args'.
13189         (gmm-tool-bar-zap-list): New widget.
13190         (gmm-tool-bar-from-list): Improve description of `zap-list'.
13191
13192 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13193
13194         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
13195         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
13196         the number of recursive calls.
13197
13198         * mm-decode.el (mm-handle-set-disposition): New macro.
13199         (mm-handle-set-description): New macro.
13200
13201 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13202
13203         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
13204         encoding.
13205
13206 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
13207
13208         * message.el (message-tool-bar-zap-list, message-tool-bar)
13209         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
13210         (message-tool-bar-local-item-from-menu): Remove.
13211         (message-tool-bar-map): Replace by `message-make-tool-bar'.
13212         (message-make-tool-bar): New function.
13213         (message-mode): Use `message-make-tool-bar'.
13214
13215         * gmm-utils.el: New file.
13216         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
13217         (gmm-lazy): New widget copied from `nnmail.el'.
13218         (gmm-tool-bar-from-list): New function for creating customizable
13219         tool bars.
13220         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
13221         output.
13222         (gmm): Add :prefix to defgroup.
13223
13224 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
13225
13226         * gmm-utils.el (gmm-widget-p): New function.
13227
13228 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
13229
13230         * mml.el (mml-attach-file): Describe `description' in doc string.
13231         (mml-menu): Add Emacs MIME manual and PGG manual.
13232
13233 2006-01-20  Richard M. Stallman  <rms@gnu.org>
13234
13235         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
13236
13237 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
13238
13239         * nntp.el (nntp-end-of-line): Doc fix.
13240
13241 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
13242
13243         * imap.el (imap-open): Handle case where buffer is a buffer
13244         object.
13245
13246 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13247
13248         * gnus-delay.el (gnus-delay): Don't autoload.
13249         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
13250         to be re-loaded when customizing the `gnus-delay' group.
13251
13252 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
13253
13254         * message.el (message-insert-citation-line): Use newlines.
13255
13256 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
13257
13258         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
13259         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
13260         these routines, so the passphrase can be managed externally and
13261         passed in to the system.
13262         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
13263         pgg-add-passphrase-to-cache function.
13264
13265         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
13266         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
13267         these routines, so the passphrase can be managed externally and
13268         passed in to the system.
13269         (pgg-pgp5-sign-region): Use new name of
13270         pgg-add-passphrase-to-cache function.
13271
13272 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
13273
13274         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
13275         part of the decoded armor to find the key-identifier.
13276         (pgg-gpg-lookup-key-owner): New function to return the
13277         human-readable identifier of a key owner.
13278         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
13279         itself.
13280         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
13281         the key value) if we have a key and can match it against a secret
13282         key.  Also, added a note pointing out fact that the prompt only
13283         indicates the first matching key.
13284
13285         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
13286         pgg-decrypt-region.
13287         (pgg-add-passphrase-to-cache): Rename from
13288         `pgg-add-passphrase-cache' to reduce confusion (all callers
13289         changed).
13290         (pgg-remove-passphrase-from-cache): Rename from
13291         `pgg-remove-passphrase-cache' to reduce confusion (all callers
13292         changed).
13293         (pgg-read-passphrase, pgg-add-passphrase-cache)
13294         (pgg-remove-passphrase-cache): Add informative docstrings.
13295         (pgg-decrypt): Convey provided passphrase in subordinate call to
13296         pgg-decrypt-region.
13297
13298 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
13299
13300         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
13301         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
13302         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
13303         'passphrase' argument, so the passphrase can be managed externally
13304         and then passed in to the system.
13305
13306         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
13307         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
13308         so the passphrase cache can be used reliably with identifiers
13309         besides a pgp packet's key id.
13310
13311         * pgg-gpg.el (pgg-gpg-encrypt-region)
13312         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
13313         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
13314         these routines, so the passphrase can be managed externally and
13315         passed in to the system.
13316
13317         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
13318         'notruncate' argument, so the passphrase cache can be used
13319         reliably with identifiers besides a pgp packet's key id.
13320
13321 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
13322
13323         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
13324         symmetric encryption.
13325         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
13326         encrypted session key.
13327         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
13328         message ask for the passphrase in a proper way.
13329
13330         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
13331         New user commands for symmetric encryption.
13332
13333 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
13334
13335         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
13336
13337         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
13338
13339 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
13340
13341         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
13342
13343 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13344
13345         * mm-decode.el (mm-inlined-types): Add application/pgp.
13346         (mm-automatic-display): Ditto.
13347
13348         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
13349         part as text.
13350
13351 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13352
13353         * nnrss.el: Update copyright.
13354         (nnrss-opml-import): Query whether to subscribe to each entry.
13355
13356         * gnus-art.el:
13357         * gnus-sum.el:
13358         * gnus-xmas.el:
13359         * messagexmas.el:
13360         * mm-uu.el:
13361         * mm-view.el: Update copyright.
13362
13363 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
13364
13365         * message.el (message-info): New function.
13366         (message-mode-menu): Add it.
13367         Update copyright.
13368
13369         * ChangeLog: Fix and update copyright.
13370
13371 2006-01-13  Romain Francoise  <romain@orebokech.com>
13372
13373         * message.el (message-forward-subject-name-subject): Prefer the
13374         address to 'nowhere' if the sender has no name.
13375         Fix typo.  Update copyright year.
13376
13377 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13378
13379         * gnus-art.el (article-wash-html):
13380         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
13381         (gnus-article-wash-html-with-w3m-standalone): New function.
13382
13383         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
13384         mm-inline-text-html-render-with-w3m-standalone.
13385         (mm-text-html-washer-alist): Map w3m-standalone to
13386         gnus-article-wash-html-with-w3m-standalone.
13387         (mm-inline-text-html-render-with-w3m-standalone): New function.
13388
13389 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
13390
13391         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
13392         Improve LaTeX.
13393
13394 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13395
13396         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
13397         (nnrss-request-article): Render text/plain parts as HTML.
13398
13399         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
13400         the buffer.
13401
13402 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
13403
13404         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
13405         custom definition of `gnus-posting-styles'.
13406
13407         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
13408         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
13409
13410 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
13411
13412         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
13413         Use nntp for bug archive.
13414
13415 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13416
13417         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
13418         parts.
13419         (nnrss-normalize-date): New function converts ISO 8601 date into
13420         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
13421         (nnrss-check-group): Use it.
13422
13423 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13424
13425         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
13426
13427         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
13428         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
13429         (nnrss-insert-w3): Ditto.
13430
13431 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13432
13433         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
13434         the articles to be forwarded including the case where neither a
13435         number of articles nor a region is specified.
13436
13437 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13438
13439         * nnrss.el (nnrss-request-article): Fix last change; fill
13440         text/plain parts.
13441
13442 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13443
13444         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
13445         in text/plain part.
13446         (nnrss-check-group): Don't add excessive newline to dc:subject.
13447
13448 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
13449
13450         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
13451         article.
13452
13453 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
13454
13455         * nnml.el: Don't require gnus-bcklg.  Autoload it.
13456         (nnml-use-compressed-files, nnml-save-mail): Support other
13457         comression programs such as bzip2.
13458
13459 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13460
13461         * dns.el (query-dns): Make sure we check the buffer size before
13462         removing tcp headers.
13463
13464 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13465
13466         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
13467         remove MIME buttons associated with multipart/alternative parts.
13468         (gnus-mime-display-alternative): Tag buttons using `article-type'
13469         text property.
13470
13471         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
13472         associated with multipart/alternative parts.
13473
13474         * gnus-art.el (gnus-signature-separator): Fix custom type.
13475
13476         * mm-decode.el (mm-inlined-types): Fix custom type.
13477         (mm-keep-viewer-alive-types): Ditto.
13478         (mm-automatic-display): Ditto.
13479         (mm-attachment-override-types): Ditto.
13480         (mm-inline-override-types): Ditto.
13481         (mm-automatic-external-display): Ditto.
13482
13483 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
13484
13485         * spam-report.el (spam-report-user-mail-address)
13486         (spam-report-user-agent): New variables.
13487         (spam-report-url-ping-plain): Use spam-report-user-agent.
13488
13489 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
13490
13491         * gnus-art.el (gnus-button-handle-custom): Do not just use
13492         `customize-apropos' for any "M-x customize-*" button but the
13493         function called for.  Accept both the function name and its
13494         argument in order to achieve this.
13495         (gnus-button-alist): Remove support for "custom:" URL's.
13496         Pass function name to `gnus-button-handle-custom' in case of "M-x
13497         customize-*" buttons.
13498
13499 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13500
13501         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
13502         multipart/alternative and add xref to mm-discouraged-alternatives
13503         in doc string.
13504
13505         * mm-decode.el (mm-discouraged-alternatives): Add xref to
13506         gnus-buttonized-mime-types in doc string.
13507
13508 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
13509
13510         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
13511         Suggest image/.* in the doc string.
13512
13513 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
13514
13515         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
13516         message-marks (Debian bug #342521).
13517
13518 2005-12-12  Simon Josefsson  <jas@extundo.com>
13519
13520         * password.el (password-read-from-cache): Add.
13521         (password-read): Use it.
13522
13523 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13524
13525         * rfc2047.el (rfc2047-charset-to-coding-system):
13526         Recognize us-ascii as a MIME charset.
13527
13528         * mm-bodies.el (mm-decode-content-transfer-encoding):
13529         Protect against the case where the 2nd arg TYPE is nil.
13530
13531 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
13532
13533         * pop3.el (pop3-stream-type): Fix custom version.
13534
13535         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
13536
13537 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
13538
13539         * mm-decode.el (mm-display-external): Add missing cdr.
13540
13541 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13542
13543         * mm-decode.el (mm-display-external): Use nametemplate (defined in
13544         RFC1524) if it is in mailcap or add a suffix according to
13545         mailcap-mime-extensions when generating a temp filename; postpone
13546         deleting a temp file for 2 seconds for some wrappers, shell
13547         scripts, and so on, which might exit right after having started a
13548         viewer command as a background job.
13549
13550 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
13551
13552         * nntp.el (nntp-marks-directory): Fix custom group.
13553
13554         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
13555         steps when < 10.
13556
13557         * gnus-start.el (gnus-no-server-1):
13558         Mention `gnus-level-default-subscribed' in doc string.
13559
13560 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
13561
13562         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
13563         parens.
13564
13565 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13566
13567         * gnus-xmas.el (gnus-use-toolbar): Revert.
13568         (gnus-xmas-setup-toolbar): Use global default-toolbar if
13569         gnus-use-toolbar is default.
13570
13571         * messagexmas.el (message-use-toolbar): Revert.
13572         (message-setup-toolbar): Use global default-toolbar if
13573         message-use-toolbar is default.
13574
13575 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13576
13577         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
13578         according to default-toolbar-visible-p.
13579
13580         * messagexmas.el (message-use-toolbar): Ditto.
13581
13582 2005-11-26  Dave Love  <fx@gnu.org>
13583
13584         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
13585         (tls-program, tls-success): Provide openssl alternative.
13586
13587         * starttls.el: Doc fixes.
13588         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
13589         SERVICE to PORT.
13590
13591         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
13592         port null or service name.
13593         (starttls-negotiate): Autoload.
13594
13595 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13596
13597         * message.el (message-kill-to-signature): Fix interactive spec.
13598
13599 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13600
13601         * pop3.el (pop3-open-server): Recognize a string as a service name.
13602
13603 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
13604
13605         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
13606
13607 2005-11-23  Dave Love  <fx@gnu.org>
13608
13609         Add pop3s, pop3/starttls.
13610
13611         * pop3.el (pop3-authentication-scheme): Clarify doc.
13612         (open-tls-stream, starttls-open-stream): Autoload.
13613         (pop3-stream-type): New.
13614         (pop3-open-server): Use it.
13615
13616         * mail-source.el (mail-sources): Fix some :types.  Add stream type
13617         for POP.
13618         (mail-source-keyword-map): Add :stream for POP.
13619         (mail-source-fetch-pop): Use pop3-stream-type.
13620
13621 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13622
13623         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
13624         of current-time-string.
13625
13626 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
13627
13628         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
13629         date header.
13630
13631 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
13632
13633         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
13634         it can seriously impact performance as it bypasses the agent's
13635         local caches.
13636
13637 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
13638
13639         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
13640         must be explicitly online rather than "not explicitly offline" for
13641         its flags to be synchronized.
13642
13643         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
13644         that gnus-uu-unmark-thread will function correctly.
13645
13646         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
13647         1024K is instead displayed as 1M.
13648
13649 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13650
13651         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
13652
13653 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
13654
13655         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
13656
13657 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
13658
13659         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
13660         error message to display actual error condition.
13661         (gnus-agent-save-local): Avoid saving symbols that are bound to
13662         nil as they simply result in a warning message in
13663         gnus-agent-read-local.
13664
13665 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13666
13667         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
13668         rather than make-variable-buffer-local for file-precious-flag.
13669
13670 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
13671
13672         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
13673         for duplicates which are removed.  The invalid sort check then
13674         triggers a rescan after the sort as sorting may have moved
13675         duplicate entries such that they can be cheaply detected.
13676
13677 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13678
13679         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
13680
13681 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
13682
13683         * gnus-agent.el (gnus-agent-article-alist-save-format):
13684         Change internal variable to a custom variable.  Change default value
13685         from compressed(2) to uncompressed(1).
13686         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
13687         support for uncompressed agentview files.  Taken together, reading
13688         the agentview file should now be 6-7 times faster.
13689
13690 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
13691
13692         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
13693         as a buffer-local variable.  This avoids creating truncated
13694         dribble files as a result of a hang up, eg.
13695
13696 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
13697
13698         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
13699         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
13700         XEmacs.
13701
13702 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
13703
13704         * gnus-start.el (gnus-start-draft-setup):
13705         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
13706
13707         * gnus.el (gnus-splash): Change custom group.
13708         (gnus-group-get-parameter, gnus-group-parameter-value):
13709         Describe allow-list argument.
13710
13711         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
13712         string.
13713
13714 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
13715
13716         * gnus-art.el (gnus-default-article-saver): Add user-defined
13717         `function' to custom type.
13718
13719 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
13720
13721         * imap.el (imap-open): Handle case where buffer is a buffer
13722         object.
13723
13724 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
13725
13726         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
13727         long lines.
13728         (gnus-cache-delete-group): Wrap doc strings.
13729
13730         * gnus-agent.el (gnus-agent-rename-group)
13731         (gnus-agent-delete-group): Wrap doc strings.
13732
13733 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13734
13735         * messagexmas.el (message-use-toolbar): Change the valid values
13736         into default, top, bottom, left, and right.
13737         (message-toolbar-thickness): New variable.
13738         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
13739         well.
13740         (message-setup-toolbar): Make it work.
13741
13742         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
13743         (gnus-use-toolbar): Change the valid values into default, top,
13744         bottom, left, and right.
13745         (gnus-toolbar-thickness): New variable.
13746         (gnus-xmas-setup-toolbar): New function.
13747         (gnus-xmas-setup-group-toolbar): Use it.
13748         (gnus-xmas-setup-summary-toolbar): Use it.
13749
13750 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13751
13752         * gnus-start.el (gnus-1): Add "native" to
13753         gnus-predefined-server-alist.
13754
13755         * gnus.el (gnus-method-to-server): Don't add "native" to the
13756         lists here, because that leads to problems when
13757         gnus-select-method is bound.
13758
13759 2005-11-09  Simon Josefsson  <jas@extundo.com>
13760
13761         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
13762         use (not sort-by-date) instead.
13763
13764 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13765
13766         * gnus-delay.el (gnus-delay-group): Don't autoload.
13767         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
13768         to be re-loaded when customizing the `gnus-delay' group.
13769
13770 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
13771
13772         * message.el: Revert last changes.
13773         (message-insert-citation-line): Use newlines.
13774
13775 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
13776
13777         * message.el (message-courtesy-message)
13778         (message-mark-insert-begin, message-mark-insert-end)
13779         (message-elide-ellipsis, message-cancel-message)
13780         (message-add-header, message-change-subject)
13781         (message-cross-post-followup-to-header)
13782         (message-cross-post-insert-note, message-reduce-to-to-cc)
13783         (message-widen-reply, message-delete-not-region)
13784         (message-kill-to-signature, message-insert-signature)
13785         (message-insert-importance-high, message-insert-importance-low)
13786         (message-insert-or-toggle-importance)
13787         (message-insert-disposition-notification-to)
13788         (message-indent-citation, message-yank-original)
13789         (message-cite-original-without-signature, message-cite-original)
13790         (message-insert-citation-line, message-position-on-field)
13791         (message-fix-before-sending, message-send-mail-partially)
13792         (message-send-mail, message-send-mail-with-sendmail)
13793         (message-send-mail-with-qmail, message-send-news)
13794         (message-check-news-header-syntax, message-generate-headers)
13795         (message-insert-courtesy-copy, message-fill-address)
13796         (message-fill-header, message-shorten-references)
13797         (message-setup-1, message-cancel-news)
13798         (message-forward-make-body-plain, message-forward-make-body-mime)
13799         (message-forward-make-body-mml, message-encode-message-body)
13800         (message-forward-make-body-digest-plain)
13801         (message-forward-make-body-digest-mime)
13802         (message-use-alternative-email-as-from): Insert `hard-newline'
13803         instead of ordinary newlines.
13804
13805 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13806
13807         * message.el (message-generate-headers): Downcase the argument
13808         given to message-check-element.
13809
13810 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
13811
13812         * nntp.el (nntp-authinfo-rejected): New error condition.
13813         (nntp-wait-for): Use new error condition to signal authentication
13814         error.
13815         (nntp-retrieve-data): Rethrow new error condition to break out of
13816         recursive call to nntp-send-authinfo.
13817
13818 2005-11-08  Romain Francoise  <romain@orebokech.com>
13819
13820         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
13821         (gnus-summary-exit-map): Bind to `Z p'.
13822         (gnus-summary-make-menu-bar): Add menu item.
13823
13824 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
13825
13826         * gnus-art.el (gnus-article-treat-custom): Add `first'.
13827         (gnus-treat-*): Add `first' in all doc strings.
13828
13829         * gnus-group.el (gnus-group-compact-group): Fix typo.
13830
13831 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13832
13833         * gnus.el (gnus-parameters-case-fold-search): New variable.
13834         (gnus-parameters-get-parameter): Use it.
13835
13836         * gnus-score.el (gnus-home-score-file): Doc fix.
13837
13838 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
13839
13840         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
13841
13842 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13843
13844         * mm-util.el (mm-special-display-p): New function.
13845
13846         * mml.el (mml-preview): Use it; doc fix.
13847
13848 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
13849
13850         * imap.el (imap-open): Handle case where buffer is a buffer object.
13851
13852 2005-10-29  Romain Francoise  <romain@orebokech.com>
13853
13854         * message.el (message-fix-before-sending): Fix comment.
13855
13856 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
13857
13858         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
13859
13860 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
13861
13862         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
13863         Used in gnus-score.el.
13864
13865 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
13866
13867         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
13868
13869 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
13870
13871         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
13872         whitespace removed in revision 7.8.  Use concatenated string to
13873         protect trailing whitespace.
13874
13875 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
13876
13877         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
13878         (nnimap-request-expire-articles): Use it to avoid sending 'UID
13879         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
13880         Courier IMAP ("some version from 2004").  Mostly based on similar
13881         code in the same function.
13882
13883 2005-10-26  Didier Verna  <didier@xemacs.org>
13884
13885         * gnus-group.el (gnus-group-compact-group): Invalidate original
13886         article buffer.
13887         * gnus-srvr.el (gnus-server-compact-server): Ditto.
13888         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
13889         NOV database and in article itself.
13890         Invalidate article backlog.
13891
13892 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
13893
13894         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
13895
13896 2005-10-26  Simon Josefsson  <jas@extundo.com>
13897
13898         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
13899         part of 2004-07-25 change.
13900
13901 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13902
13903         * message.el (message-display-completion-list): New function.
13904         (message-expand-group): Use it; make sure the Completions buffer
13905         is modifiable.
13906 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
13907
13908         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
13909         user-mail-name is an empty string.
13910
13911 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
13912
13913         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
13914         depending on gnus-score-decay-constant.
13915
13916         * encrypt.el (encrypt-insert-file-contents)
13917         (encrypt-write-file-contents): Don't use `gnus-message'.
13918
13919         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
13920         arguments.
13921         (mm-uu-type-alist): Add message-marks and insert-marks.
13922         Pass arguments to mm-uu-verbatim-marks-extract.
13923         (mm-uu-hide-markers): New variable.
13924         (mm-uu-extract): Use face similar to `gnus-cite-3'.
13925
13926         * gnus-fun.el (gnus-convert-image-to-x-face-command)
13927         (gnus-convert-image-to-face-command): Use "convert" by default to
13928         allow other input image formats.
13929         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
13930         accordingly.
13931
13932 2005-10-23  Simon Josefsson  <jas@extundo.com>
13933
13934         * imap.el (imap-gssapi-program): Align command line parameters
13935         with latest GNU SASL.
13936         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
13937
13938 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13939
13940         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
13941         HTML.
13942         (nnslashdot-request-article): Ditto.
13943
13944         * lpath.el (featurep): Add nobreak-char-display.
13945
13946 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
13947
13948         * mail-source.el (mail-source-fetch-pop): Require pop3.
13949         (mail-source-check-pop): Ditto.
13950
13951 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13952
13953         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
13954         errors.
13955
13956 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
13957
13958         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
13959         (gnus-treat-strip-leading-blank-lines): Improve doc string.
13960
13961         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
13962
13963         * mm-bodies.el (mm-decode-string):
13964         Call `mm-charset-to-coding-system' with allow-override argument.
13965
13966 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
13967
13968         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
13969         (rfc2047-charset-to-coding-system): New function.
13970         (rfc2047-decode-encoded-words): New function.
13971         (rfc2047-decode-region): Use them.
13972         (rfc2047-decode-cte): Remove.
13973         (rfc2047-parse-and-decode): Remove.
13974         (rfc2047-decode): Remove.
13975
13976 2005-10-15  Kenichi Handa  <handa@m17n.org>
13977
13978         * rfc2047.el (rfc2047-decode-cte): New function.
13979         (rfc2047-decode-region): Change the way to decode successive
13980         encoded-words: decode B- or Q-encoding in each encoded-word,
13981         concatenate them, and decode it as charset.
13982
13983 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13984
13985         * lpath.el: Fbind codepage-setup for XEmacs.
13986
13987 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
13988
13989         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
13990         widget-move-and-invoke.
13991         (gnus-custom-mode): Use gnus-custom-map.
13992
13993 2005-10-15  Bill Wohler  <wohler@newt.com>
13994
13995         * message.el (message-tool-bar-map): Rename image file from
13996         mail_send to mail/send.
13997
13998 2005-10-16  Masatake YAMATO  <jet@gyve.org>
13999
14000         * message.el (message-expand-group): Pass the common
14001         prefix substring of completion to `display-completion-list'.
14002
14003 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
14004
14005         * mml-sec.el (mml-secure-method): New internal variable.
14006         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
14007         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
14008         New functions using mml-secure-method.
14009
14010         * mml.el (mml-mode-map): Add key bindings for those functions.
14011         (mml-menu): Simplify security menu entries.  Suggested by Jesper
14012         Harder <harder@myrealbox.com>.
14013         (mml-attach-file, mml-attach-buffer, mml-attach-external):
14014         Goto end of message if point is the headers of the message.
14015
14016         * message.el (message-in-body-p): New function.
14017
14018         * assistant.el: Autoload gnus-util and netrc.
14019
14020         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
14021         Use `mm-charset-override-alist' only when decoding.
14022
14023         * mm-bodies.el (mm-decode-body):
14024         Call `mm-charset-to-coding-system' with allow-override argument.
14025
14026         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
14027         `filename' from Content-Disposition if Content-Type doesn't
14028         provide `name'.
14029         (gnus-mime-view-part-as-type): Set default instead of
14030         initial-input.
14031
14032 2005-10-09  Daniel Brockman  <daniel@brockman.se>
14033
14034         * format-spec.el (format-spec): Propagate text properties of % spec.
14035
14036 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
14037
14038         * gnus-art.el (gnus-treat-predicate): Add `first'.
14039
14040 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
14041
14042         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
14043         (mm-charset-override-alist): New variable.
14044         (mm-charset-to-coding-system): Use it.
14045         (mm-codepage-setup): New helper function.
14046         (mm-charset-eval-alist): New variable.
14047         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
14048         Warn about unknown charsets.
14049
14050         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
14051
14052 2005-10-04  David Hansen  <david.hansen@gmx.net>
14053
14054         * nnrss.el (nnrss-request-article): Add support for the comments tag.
14055         (nnrss-check-group): Ditto.
14056
14057 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
14058
14059         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
14060         Rename x-gnus-verbatim to x-verbatim.
14061         (mm-uu-type-alist): Fix regexp for verbatim-marks.
14062
14063         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
14064         x-verbatim.
14065
14066         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
14067
14068         * gnus-util.el (gnus-remove-duplicates): Remove.
14069
14070         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
14071         instead of gnus-remove-duplicates.
14072
14073         * message.el (message-remove-duplicates): Remove.
14074         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
14075         message-remove-duplicates.
14076
14077         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
14078         available, else use implementation from `delete-dups'.
14079
14080         * message.el (message-insert-expires): New function.
14081         (message-mode-map): Add key binding.
14082         (message-mode-field-menu): Add menu entry.
14083         (message-mode): Document it.
14084         (message-make-expires-date): Use `message-make-date'.
14085
14086 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
14087
14088         * message.el (message-make-expires-date): New function.
14089
14090 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14091
14092         * Makefile.in (list-installed-shadows): New entry.
14093         (install): Use it.
14094         (remove-installed-shadows): New entry.
14095
14096         * dgnushack.el (dgnushack-default-load-path): New variable.
14097         (dgnushack-find-lisp-shadows): New function.
14098         (dgnushack-remove-lisp-shadows): New function.
14099
14100 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14101
14102         * Makefile.in (install-el-elc): New entry.
14103         (install): Use it so that .el files are necessarily installed.
14104
14105 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14106
14107         * time-date.el: Autoload parse-time-string, XEmacs needs it.
14108
14109 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14110
14111         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
14112         function rather than the diff-mode.el package.
14113         (mm-display-external): Use with-current-buffer.
14114         (mm-viewer-completion-map, mm-viewer-completion-map):
14115         Move initialization inside declaration.
14116
14117 2005-09-29  Simon Josefsson  <jas@extundo.com>
14118
14119         * spam.el: Load hashcash when compiling, to avoid warnings.
14120         Don't autoload mail-check-payment.
14121         (spam-check-hashcash): Define unconditionally, since hashcash.el
14122         is part of Gnus now.  Ignore errors from payment checking.
14123
14124 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
14125
14126         * message.el (message-bold-region, message-unbold-region):
14127         Rename from `bold-region' and `unbold-region'.
14128
14129         * message.el: Remove useless autoloads.
14130
14131 2005-09-28  Simon Josefsson  <jas@extundo.com>
14132
14133         * message.el (message-use-idna): Default to t.
14134         (message-use-idna): Test whether encoding works too.  Doc fix.
14135
14136 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14137
14138         * nntp.el (nntp-warn-about-losing-connection): Remove.
14139
14140 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
14141
14142         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
14143         customizable.  Change default value.
14144         (mm-uu-diff-groups-regexp): Change default value.
14145         (mm-uu-type-alist): Add doc string.
14146         (mm-uu-configure): Add doc string.  Make it interactive.
14147         (mm-uu-tex-groups-regexp): New variable.
14148         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
14149         (mm-uu-type-alist): Add LaTeX documents.
14150         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
14151         of "text/verbatim".
14152         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
14153
14154         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
14155         instead of "text/verbatim".
14156
14157         * message.el (message-mark-inserted-region)
14158         (message-mark-insert-file): Use slrn style marks when called with
14159         prefix argument.
14160
14161 2005-09-27  Simon Josefsson  <jas@extundo.com>
14162
14163         * message.el (message-idna-to-ascii-rhs-1): Reformat.
14164
14165 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
14166
14167         * message.el (message-remove-duplicates): New function.
14168         Implementation borrowed from `gnus-remove-duplicates'.
14169         (message-idna-to-ascii-rhs): Also encode idna addresses in
14170         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
14171         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
14172         only ask about the same idna domain once per header and also tell
14173         in what header to replace the idna domain.
14174
14175         * gnus-art.el (article-decode-idna-rhs): Also decode idna
14176         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
14177         (article-decode-idna-rhs): Fix regexp so that all idna-address in
14178         a header is decoded and not just the last one.
14179
14180 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14181
14182         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
14183         has been decoded.
14184
14185         * mm-decode.el (mm-automatic-display): Add text/verbatim.
14186         (mm-insert-part): Don't modify text if it has been decoded.
14187
14188         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
14189         decoded.
14190
14191         * mm-view.el (mm-inline-text): Don't strip text props unless
14192         decoding enriched or richtext parts.
14193
14194 2005-09-25  Romain Francoise  <romain@orebokech.com>
14195
14196         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
14197         * gnus-start.el (gnus-subscribe-interactively):
14198         * gnus-uu.el (gnus-uu-grab-articles):
14199         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
14200         space.
14201
14202 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
14203
14204         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
14205         * mm-view.el (mm-view-pkcs7-decrypt):
14206         * gnus-sum.el (gnus-summary-limit-to-extra)
14207         (gnus-summary-respool-article, gnus-read-move-group-name):
14208         * gnus-score.el (gnus-summary-increase-score):
14209         * gnus-util.el (gnus-completing-read-with-default):
14210         * gnus-art.el (gnus-read-save-file-name)
14211         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
14212         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
14213         * message.el (message-check-news-header-syntax):
14214         Follow convention for reading with the minibuffer.
14215
14216 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
14217
14218         * spam-report.el (spam-report-url-ping-plain):
14219         Use gnus-extended-version as User-Agent.
14220
14221         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
14222         default value is nil.
14223
14224         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
14225         (mm-uu-verbatim-marks-extract): New function.
14226         (mm-uu-extract): New face.
14227         (mm-uu-copy-to-buffer): Use it.
14228
14229         * spam-report.el (spam-report-gmane-ham): Rename from
14230         `spam-report-gmane-unspam'.
14231         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
14232         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
14233
14234         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
14235         Autoload.
14236         (spam-report-gmane-unregister-routine):
14237         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
14238
14239 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
14240
14241         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
14242         (spam-report-gmane-unregister-routine): Add support for gmane
14243         unregistration.
14244
14245         * spam-report.el (spam-report-gmane-unspam)
14246         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
14247         (spam-report-gmane): Change to take a single article and do unspam
14248         registration.
14249
14250 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
14251
14252         * mm-url.el (mm-url-decode-entities): Fix regexp.
14253
14254 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14255
14256         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
14257         default to nil, to be able to use Gnus at all.  If the default
14258         switches to something else, then the function should be fixed not
14259         be exceedingly slow.
14260
14261 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
14262
14263         * gnus-start.el (gnus-activate-group): If the server is nil, don't
14264         fail hard.
14265
14266         * spam-report.el: Add better Keywords line.
14267
14268         * spam.el: Add Maintainer and better Keywords line.
14269
14270 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
14271
14272         * gnus-art.el (gnus-article-replace-part)
14273         (gnus-mime-replace-part): New functions.
14274         (gnus-mime-action-alist, gnus-mime-button-commands)
14275         (gnus-mime-save-part-and-strip): Add file argument.
14276         (gnus-article-part-wrapper): Add interactive argument.
14277
14278         * gnus-sum.el (gnus-summary-mime-map):
14279         Add `gnus-article-replace-part'.
14280
14281 2005-09-19  Didier Verna  <didier@xemacs.org>
14282
14283         The nnml compaction feature:
14284         * nnml.el (nnml-request-compact-group): New function.
14285         * nnml.el (nnml-request-compact): New function.
14286         * gnus-int.el (gnus-request-compact-group): New function.
14287         * gnus-int.el (gnus-request-compact): New function.
14288         * gnus-group.el (gnus-group-compact-group): New function.
14289         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
14290         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
14291         * gnus-srvr.el (gnus-server-compact-server): New function.
14292         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
14293         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
14294
14295 2005-09-18  Deepak Goel  <deego@gnufans.org>
14296
14297         * sieve.el (sieve-help): Fix `message' call: first arg should be a
14298         format spec.
14299
14300 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14301
14302         * gnus.el (gnus-group-startup-message): Bind image-load-path.
14303
14304 2005-09-15  Romain Francoise  <romain@orebokech.com>
14305
14306         * message.el (message-fill-paragraph): Clarify docstring.
14307
14308 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14309
14310         * gnus-art.el (gnus-mime-display-part): Protect against broken
14311         MIME messages.
14312
14313 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14314
14315         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
14316         before parsing header.
14317
14318 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
14319
14320         * html2text.el (html2text-replace-list): Add new entities.
14321
14322 2005-09-11  Romain Francoise  <romain@orebokech.com>
14323
14324         * message.el (message-alternative-emails): Improve docstring.
14325         (message-setup-1): Call `message-use-alternative-email-as-from'
14326         after `message-setup-hook' to give it precedence over posting
14327         styles, etc.
14328         (message-use-alternative-email-as-from): Add docstring.
14329         Remove the original From header if present.
14330
14331         * nnml.el (nnml-compressed-files-size-threshold): New variable.
14332         (nnml-save-mail): Use it.
14333
14334         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
14335         articles.  Add new argument `silent'.
14336         (gnus-uu-mark-all): Report the total number of marked articles.
14337
14338 2005-09-10  Romain Francoise  <romain@orebokech.com>
14339
14340         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
14341         (gnus-uu-mark-series): Likewise.
14342
14343 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
14344
14345         * spam-report.el (spam-report-gmane): Fix generation of spam
14346         report URL.
14347
14348 2005-09-10  Simon Josefsson  <jas@extundo.com>
14349
14350         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
14351         t, based on discussion on the ding list with Robert Epprecht
14352         <epprecht@solnet.ch>.
14353
14354 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
14355
14356         * spam-report.el (spam-report-gmane): Make it work without
14357         X-Report-Spam header.  Gmane now only provides Archived-At.
14358         This is only used if `spam-report-gmane-use-article-number' is nil.
14359         (spam-report-gmane-spam-header): Remove.  Not used anymore.
14360
14361         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
14362         make `gnus-summary-sort-by-recipient' work with threading.
14363
14364         * nnweb.el (nnweb-google-wash-article): Print a message if article
14365         is not available.
14366
14367 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14368
14369         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
14370         change.  Decode text/* parts content before displaying.
14371
14372 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
14373
14374         * mml-smime.el: Remove defvar of gnus-extract-address-components.
14375
14376 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14377
14378         * mm-view.el (mm-display-inline-fontify): Disable support modes.
14379
14380         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
14381         url-package-name, url-package-version,
14382         w3m-cid-retrieve-function-alist, w3m-current-buffer,
14383         w3m-display-inline-images, and w3m-minor-mode-map.
14384
14385 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
14386
14387         * message.el (message-tab-body-function): Fix mismatched custom type.
14388
14389         * gnus.el (gnus-group-change-level-function): Ditto.
14390
14391         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
14392
14393         * gnus-art.el (gnus-signature-limit)
14394         (gnus-article-mime-part-function): Ditto.
14395
14396 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14397
14398         * mml.el (mml-mode): Silence the byte compiler.
14399
14400         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
14401         using `(sit-for 0)' before moving the point to the specified part;
14402         skip unbuttonized parts.
14403         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
14404         return to the summary window if gnus-auto-select-part is non-nil.
14405
14406 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
14407
14408         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
14409         New variables.
14410         (mml-dnd-attach-file, mml-mode): Use them.
14411
14412         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
14413         Make fetching article by MID work again for Google Groups.
14414         Add FIXME concerning gnus-group-make-web-group.
14415
14416         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
14417         Don't depend on Gnus by using mail-extract-address-components if
14418         gnus-extract-address-components is not bound.
14419
14420 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14421
14422         * gnus-art.el (gnus-mime-display-security): Don't display the
14423         signature, but only the signed part.
14424
14425 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14426
14427         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
14428
14429         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
14430         list, not listp.
14431
14432 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
14433
14434         * mm-encode.el (mm-encode-content-transfer-encoding):
14435         Likewise when encoding.
14436
14437         * mm-bodies.el (mm-decode-content-transfer-encoding):
14438         De-canonicalize CRLF for all text content types, not just
14439         text/plain.
14440
14441 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14442
14443         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
14444         valid article; point arrow and cursor at the MIME button.
14445
14446 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14447
14448         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
14449         Suggested by Dan Christensen <jdc@uwo.ca>.
14450
14451         * mm-decode.el (mm-save-part): Enable change of prompt.
14452
14453 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
14454
14455         * gnus-msg.el (gnus-inews-add-send-actions):
14456         Make `message-post-method' lambda parameter ARG `&optional'.
14457
14458 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
14459
14460         * gnus-sum.el (gnus-summary-mime-map):
14461         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
14462         gnus-article-jump-to-part.
14463
14464         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
14465         (gnus-article-edit-part): Use it.
14466         (gnus-article-part-wrapper): Add no-handle argument.
14467         (gnus-article-save-part-and-strip, gnus-article-delete-part):
14468         New functions.
14469
14470 2005-08-29  Romain Francoise  <romain@orebokech.com>
14471
14472         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
14473         docstring.
14474         (gnus-face-from-file): Likewise.
14475
14476 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
14477
14478         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
14479         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
14480         non-nil.
14481         (gnus-auto-select-part): New variable.
14482         (gnus-article-jump-to-part): New function.
14483         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
14484         (gnus-mime-delete-part): Allow selecting specified part after
14485         deleting or stripping parts.
14486         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
14487         part if argument is bogus.
14488
14489 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
14490
14491         * gnus-art.el (w3m-minor-mode-map):
14492         * gnus-spec.el (gnus-newsrc-file-version):
14493         * gnus-util.el (nnmail-active-file-coding-system)
14494         (gnus-original-article-buffer, gnus-user-agent):
14495         * gnus.el (gnus-ham-process-destinations)
14496         (gnus-parameter-ham-marks-alist)
14497         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
14498         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
14499         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
14500         * mm-decode.el (gnus-current-window-configuration):
14501         * mm-extern.el (gnus-article-mime-handles):
14502         * mm-url.el (url-current-object, url-package-name)
14503         (url-package-version):
14504         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
14505         (smime-keys, w3m-cid-retrieve-function-alist)
14506         (w3m-current-buffer, w3m-display-inline-images)
14507         (w3m-minor-mode-map):
14508         * mml-smime.el (gnus-extract-address-components):
14509         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
14510         (gnus-newsrc-hashtb, message-default-charset)
14511         (message-deletable-headers, message-options)
14512         (message-posting-charset, message-required-mail-headers)
14513         (message-required-news-headers):
14514         * mml1991.el (mc-pgp-always-sign):
14515         * mml2015.el (mc-pgp-always-sign):
14516         * nnheader.el (nnmail-extra-headers):
14517         * rfc1843.el (gnus-decode-encoded-word-function)
14518         (gnus-decode-header-function, gnus-newsgroup-name):
14519         * spam-stat.el (gnus-original-article-buffer): Add defvars.
14520
14521 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
14522
14523         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
14524         the end of the date treatments.
14525
14526 2005-08-15  Simon Josefsson  <jas@extundo.com>
14527
14528         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
14529         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
14530         Capello and Romain Francoise.
14531         (pgg-fetch-key-function): Remove, not used?
14532         (pgg-insert-url-with-w3): Require url, to get
14533         url-insert-file-contents regardless of where it is defined.
14534
14535 2005-08-13  Romain Francoise  <romain@orebokech.com>
14536
14537         * message.el (message-cite-original-1): New function.
14538         (message-cite-original): Use it.
14539         (message-cite-original-without-signature): Ditto.
14540
14541 2005-08-08  Romain Francoise  <romain@orebokech.com>
14542
14543         * message.el (message-yank-empty-prefix): New variable.
14544         (message-indent-citation): Use it.
14545         (message-cite-original-without-signature): Respect X-No-Archive.
14546
14547 2005-08-08  Simon Josefsson  <jas@extundo.com>
14548
14549         * pgg.el: Autoload url-insert-file-contents instead of loading
14550         w3/url.
14551         (pgg-insert-url-with-w3): Don't load url here.
14552
14553 2005-08-07  Jesper Harder  <harder@phys.au.dk>
14554
14555         * message.el (message-kill-to-signature): Don't insert newline at
14556         bol.
14557         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
14558
14559 2005-08-06  Romain Francoise  <romain@orebokech.com>
14560
14561         * message.el (message-user-fqdn): Fix typo in docstring.
14562
14563 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
14564
14565         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
14566
14567         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
14568
14569 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14570
14571         * mm-bodies.el (mm-encode-body): Use coding system rather than
14572         charset to encode text.
14573
14574         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
14575         number of charsets if utf-8 is available (XEmacs).
14576
14577 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
14578
14579         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
14580         taken from `gnus-button-mid-or-mail-regexp'.
14581         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
14582         (gnus-button-alist): Improve regexp for domain part of the MIDs
14583         for news:localpart@domain buttons.
14584         (gnus-button-ctan-directory-regexp): Update.
14585
14586 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14587
14588         * sieve-manage.el (sieve-manage-interactive-login):
14589         Use make-local-variable rather than make-variable-buffer-local.
14590         (sieve-manage-open): Ditto.
14591         (sieve-manage-authenticate): Ditto.
14592
14593         * mml.el (mml-generate-mime-1): Make the content type default to
14594         text/plain if the filename is not specified.
14595
14596 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14597
14598         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
14599         instead of insert-buffer.
14600
14601         * message.el (message-yank-original): Ditto; set the mark at the
14602         end of the yanked message.
14603
14604 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
14605
14606         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
14607         lines to scroll rather than to stop it.
14608
14609         * mml.el (mml-generate-default-type): Add doc string.
14610         (mml-generate-mime-1): Use mm-default-file-encoding or make it
14611         default to application/octet-stream when determining the content
14612         type if it is not specified for the part or the mml contents; add
14613         a comment about mml-generate-default-type.
14614
14615 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
14616
14617         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
14618         make it default to application/octet-stream when determining the
14619         content type if it is not specified for the external contents.
14620
14621 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14622
14623         * rfc2231.el (rfc2231-parse-string): Take care that not only a
14624         segmented parameter but also other parameters might be there.
14625
14626 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14627
14628         * mm-decode.el (mm-display-external): Delete temp file, directory
14629         and buffer immediately if the external process is exited.
14630
14631 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14632
14633         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
14634         fewer lines than that of scroll-margin.
14635         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
14636
14637 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14638
14639         * gnus-art.el (gnus-article-next-page): Revert.
14640         (gnus-article-beginning-of-window): New macro.
14641         (gnus-article-next-page-1): Use it.
14642         (gnus-article-prev-page): Ditto.
14643         (gnus-article-edit-part): Use insert-buffer-substring instead of
14644         insert-buffer.
14645         (gnus-article-edit-exit): Ditto.
14646
14647         * gnus-util.el (gnus-beginning-of-window): Remove.
14648         (gnus-end-of-window): Remove.
14649
14650         * lpath.el: Don't bind header-line-format and scroll-margin.
14651
14652 2005-07-25  Simon Josefsson  <jas@extundo.com>
14653
14654         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
14655         to have the url package without w3.  Reported by Daiki Ueno
14656         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
14657
14658 2005-07-20  Didier Verna  <didier@xemacs.org>
14659
14660         * gnus-diary.el: Remove the description comment (nndiary is now
14661         properly documented in the Gnus manual).
14662         Fix the spelling of "Back End".
14663         * nndiary.el: Ditto.
14664         Fix the copyright notice.
14665
14666 2005-07-18  Romain Francoise  <romain@orebokech.com>
14667
14668         * gnus-sum.el (gnus-summary-to-prefix)
14669         (gnus-summary-newsgroup-prefix): New variables.
14670         (gnus-summary-from-or-to-or-newsgroups): Use them.
14671
14672 2005-07-17  Romain Francoise  <romain@orebokech.com>
14673
14674         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
14675         space as it's generally not especially interesting to the user.
14676
14677 2005-07-16  Romain Francoise  <romain@orebokech.com>
14678
14679         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
14680         nil to avoid prompting and file modification if one of the
14681         messages at the top of the nnfolder file contains a copyright
14682         notice.
14683         Update copyright notice.
14684
14685         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
14686         instead of `current-time-string' as the latter creates a time
14687         string that is not RFC 2822 compliant (it lacks the zone).
14688         Update copyright notice.
14689
14690 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14691
14692         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
14693         for text/rtf.  Display default in prompt.  Pass default for M-n.
14694
14695         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
14696
14697 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14698
14699         * gnus-msg.el (gnus-button-mailto):
14700         Remove save-selected-window-window hackery because it relies on
14701         save-selected-window internals.
14702
14703 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14704
14705         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
14706         (gnus-article-next-page-1): Use gnus-beginning-of-window.
14707         (gnus-article-prev-page): Ditto.
14708
14709         * gnus-util.el (gnus-beginning-of-window): New function.
14710         (gnus-end-of-window): New function.
14711
14712         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
14713
14714 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
14715
14716         * gnus-score.el (gnus-score-edit-all-score):
14717         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
14718         gnus-message.
14719
14720 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14721
14722         * gnus-msg.el (gnus-button-mailto):
14723         Remove save-selected-window-window hackery because it relies on
14724         save-selected-window internals.
14725
14726 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14727
14728         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
14729         add-minor-mode.
14730         (gnus-binary-mode): Ditto.
14731
14732         * gnus-topic.el (gnus-topic-mode): Ditto.
14733
14734 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
14735
14736         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
14737         (gnus-article-prev-page): Take scroll-margin into consideration.
14738
14739 2005-07-04  Lute Kamstra  <lute@gnu.org>
14740
14741         Update FSF's address in GPL notices.
14742
14743 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
14744
14745         * gnus.el (gnus-exit):
14746         * gnus-group.el (gnus-group-icons):
14747         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
14748
14749         * gnus-nocem.el (gnus-nocem):
14750         * message.el (message-various, message-buffers, message-sending)
14751         (message-interface, message-forwarding, message-insertion)
14752         (message-headers, message-news, message-mail):
14753         * pgg-gpg.el (pgg-gpg):
14754         * pgg-parse.el (pgg-parse):
14755         * pgg-pgp.el (pgg-pgp):
14756         * pgg-pgp5.el (pgg-pgp5):
14757         * pop3.el (pop3): Finish `defgroup' description with period.
14758
14759 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14760
14761         * gnus-art.el (article-display-face): Improve the efficiency.
14762         (article-display-x-face): Ditto; remove grey x-face stuff.
14763
14764 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14765
14766         * gnus-art.el (article-display-face): Correct the position in
14767         which Faces are inserted.
14768
14769 2005-06-29  Didier Verna  <didier@xemacs.org>
14770
14771         * gnus-art.el (article-display-face): Display faces in correct
14772         order.
14773
14774 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
14775
14776         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
14777         (gnus-fill-real-hashtb): Use hash table instead of obarray.
14778         (gnus-nocem-check-article): Fetch the Type header.
14779         (gnus-nocem-message-wanted-p): Fix the way to examine types.
14780         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
14781         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
14782         make sure gnus-nocem-hashtb is initialized.
14783         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
14784         (gnus-nocem-unwanted-article-p): Ditto.
14785
14786         * pgg.el (pgg-verify): Return the verification result.
14787
14788 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14789
14790         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
14791         is ascii.
14792
14793 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
14794
14795         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
14796         `show-nonbreak-escape'.
14797
14798 2005-06-23  Lute Kamstra  <lute@gnu.org>
14799
14800         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
14801
14802         * dig.el (dig-mode):
14803         * smime.el (smime-mode): Use gnus-run-mode-hooks.
14804
14805 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
14806
14807         * nnimap.el (nnimap-split-download-body): Fix spellings.
14808
14809 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
14810
14811         * gnus-art.el (gnus-article-encrypt-body):
14812         * gnus-cus.el (gnus-score-customize):
14813         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
14814         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
14815
14816 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
14817
14818         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
14819         header by looking for magic "MII" at the beginnig.
14820
14821 2005-06-16  Miles Bader  <miles@gnu.org>
14822
14823         * gnus-xmas.el (gnus-xmas-group-startup-message):
14824         Use renamed gnus-splash face.
14825
14826         * assistant.el (assistant-field): Remove "-face" suffix from face name.
14827         (assistant-field-face): New backward-compatibility alias for renamed
14828         face.
14829         (assistant-render-text): Use renamed assistant-field face.
14830
14831         * spam.el (spam): Remove "-face" suffix from face name.
14832         (spam-face): New backward-compatibility alias for renamed face.
14833         (spam-face, spam-initialize): Use renamed spam face.
14834
14835         * message.el (message-header-to, message-header-cc)
14836         (message-header-subject, message-header-newsgroups)
14837         (message-header-other, message-header-name)
14838         (message-header-xheader, message-separator, message-cited-text)
14839         (message-mml): Remove "-face" suffix from face names.
14840         (message-header-to-face, message-header-cc-face)
14841         (message-header-subject-face, message-header-newsgroups-face)
14842         (message-header-other-face, message-header-name-face)
14843         (message-header-xheader-face, message-separator-face)
14844         (message-cited-text-face, message-mml-face):
14845         New backward-compatibility aliases for renamed faces.
14846         (message-font-lock-keywords): Use renamed message faces.
14847
14848         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
14849         (sieve-test-commands, sieve-tagged-arguments):
14850         Remove "-face" suffix from face names.
14851         (sieve-control-commands-face, sieve-action-commands-face)
14852         (sieve-test-commands-face, sieve-tagged-arguments-face):
14853         New backward-compatibility aliases for renamed faces.
14854         (sieve-control-commands-face, sieve-action-commands-face)
14855         (sieve-test-commands-face, sieve-tagged-arguments-face):
14856         Use renamed sieve faces.
14857
14858         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
14859         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
14860         (gnus-group-news-3-empty, gnus-group-news-4)
14861         (gnus-group-news-4-empty, gnus-group-news-5)
14862         (gnus-group-news-5-empty, gnus-group-news-6)
14863         (gnus-group-news-6-empty, gnus-group-news-low)
14864         (gnus-group-news-low-empty, gnus-group-mail-1)
14865         (gnus-group-mail-1-empty, gnus-group-mail-2)
14866         (gnus-group-mail-2-empty, gnus-group-mail-3)
14867         (gnus-group-mail-3-empty, gnus-group-mail-low)
14868         (gnus-group-mail-low-empty, gnus-summary-selected)
14869         (gnus-summary-cancelled, gnus-summary-high-ticked)
14870         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
14871         (gnus-summary-high-ancient, gnus-summary-low-ancient)
14872         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
14873         (gnus-summary-low-undownloaded)
14874         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
14875         (gnus-summary-low-unread, gnus-summary-normal-unread)
14876         (gnus-summary-high-read, gnus-summary-low-read)
14877         (gnus-summary-normal-read, gnus-splash):
14878         Remove "-face" suffix from face names.
14879         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
14880         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
14881         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
14882         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
14883         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
14884         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
14885         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
14886         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
14887         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
14888         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
14889         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
14890         (gnus-summary-selected-face, gnus-summary-cancelled-face)
14891         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
14892         (gnus-summary-normal-ticked-face)
14893         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
14894         (gnus-summary-normal-ancient-face)
14895         (gnus-summary-high-undownloaded-face)
14896         (gnus-summary-low-undownloaded-face)
14897         (gnus-summary-normal-undownloaded-face)
14898         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
14899         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
14900         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
14901         (gnus-splash-face):
14902         New backward-compatibility aliases for renamed faces.
14903         (gnus-group-startup-message): Use renamed gnus faces.
14904
14905         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
14906         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
14907         (gnus-server-agent): Remove "-face" suffix from face names.
14908         (gnus-server-agent-face, gnus-server-opened-face)
14909         (gnus-server-closed-face, gnus-server-denied-face)
14910         (gnus-server-offline-face):
14911         New backward-compatibility aliases for renamed faces.
14912         (gnus-server-agent-face, gnus-server-opened-face)
14913         (gnus-server-closed-face, gnus-server-denied-face)
14914         (gnus-server-offline-face): Use renamed gnus faces.
14915
14916         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
14917         Remove "-face" suffix from face names.
14918         (gnus-picon-xbm-face, gnus-picon-face):
14919         New backward-compatibility aliases for renamed faces.
14920
14921         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
14922         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
14923         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
14924         (gnus-cite-11): Remove "-face" suffix from face names.
14925         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
14926         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
14927         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
14928         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
14929         New backward-compatibility aliases for renamed faces.
14930         (gnus-cite-attribution-face, gnus-cite-face-list)
14931         (gnus-article-boring-faces): Use renamed gnus faces.
14932
14933         * gnus-art.el (gnus-signature, gnus-header-from)
14934         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
14935         (gnus-header-content): Remove "-face" suffix from face names.
14936         (gnus-signature-face, gnus-header-from-face)
14937         (gnus-header-subject-face, gnus-header-newsgroups-face)
14938         (gnus-header-name-face, gnus-header-content-face):
14939         New backward-compatibility aliases for renamed faces.
14940         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
14941
14942         * gnus-sum.el (gnus-summary-selected-face)
14943         (gnus-summary-highlight): Use renamed gnus faces.
14944         * gnus-group.el (gnus-group-highlight): Likewise.
14945
14946 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
14947
14948         * gnus-sieve.el (gnus-sieve-article-add-rule):
14949         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
14950         * spam-stat.el (spam-stat-buffer-change-to-spam)
14951         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
14952
14953         * message.el (message-is-yours-p):
14954         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
14955
14956 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14957
14958         * mm-view.el (mm-inline-text): Withdraw the last change.
14959
14960 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14961
14962         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
14963         executing enriched-decode.
14964
14965 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14966
14967         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
14968         charset of tar files.
14969
14970 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
14971
14972         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
14973
14974 2005-06-04  Lute Kamstra  <lute@gnu.org>
14975
14976         * nnfolder.el (nnfolder-read-folder): Make sure that undo
14977         information is never recorded.
14978
14979 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14980
14981         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
14982
14983 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14984
14985         * pop3.el (pop3-apop): Run md5 in the binary mode.
14986
14987         * starttls.el (starttls-set-process-query-on-exit-flag):
14988         Use eval-and-compile.
14989
14990 2005-05-31  Simon Josefsson  <jas@extundo.com>
14991
14992         * smime.el (smime-replace-in-string): Define.
14993         (smime-cert-by-ldap-1): Use it.
14994
14995 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
14996
14997         * gnus-art.el (article-display-x-face): Replace
14998         process-kill-without-query by gnus-set-process-query-on-exit-flag.
14999
15000         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
15001         set-process-query-on-exit-flag or process-kill-without-query.
15002
15003         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
15004         loop instead of replace-regexp.
15005
15006         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
15007         instead of process-kill-without-query if it is available.
15008
15009         * lpath.el: Fbind ldap-search-entries.
15010
15011         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
15012         instead of find-file-hooks if it is available.
15013
15014         * mml1991.el: Bind pgg-default-user-id when compiling.
15015
15016         * mml2015.el: Bind pgg-default-user-id when compiling.
15017
15018         * nndraft.el (nndraft-request-associate-buffer):
15019         Use write-contents-functions instead of write-contents-hooks if it is
15020         available.
15021
15022         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
15023         instead of find-file-hooks if it is available.
15024
15025         * nntp.el (nntp-open-connection): Replace
15026         process-kill-without-query by gnus-set-process-query-on-exit-flag.
15027         (nntp-open-ssl-stream): Ditto.
15028         (nntp-open-tls-stream): Ditto.
15029
15030         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
15031         set-process-query-on-exit-flag or process-kill-without-query.
15032         (starttls-open-stream-gnutls): Use it instead of
15033         process-kill-without-query.
15034         (starttls-open-stream): Ditto.
15035
15036 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
15037
15038         * smime.el (smime-cert-by-ldap-1): Don't use
15039         replace-regexp-in-string.
15040
15041 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
15042
15043         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
15044
15045         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
15046         in PEM format.  Adjust to the XEmacs compability.
15047
15048 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
15049
15050         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
15051         by `string-to-number'.
15052         * gnus-agent.el (gnus-agent-regenerate-group)
15053         (gnus-agent-fetch-articles): Ditto.
15054         * gnus-art.el (gnus-button-fetch-group): Ditto.
15055         * gnus-cache.el (gnus-cache-generate-active)
15056         (gnus-cache-articles-in-group): Ditto.
15057         * gnus-group.el (gnus-group-set-current-level)
15058         (gnus-group-insert-group-line): Ditto.
15059         * gnus-score.el (gnus-score-set-expunge-below)
15060         (gnus-score-set-mark-below, gnus-summary-score-effect)
15061         (gnus-summary-score-entry): Ditto.
15062         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
15063         (gnus-soup-pack): Ditto.
15064         * gnus-spec.el (gnus-xmas-format): Ditto.
15065         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
15066         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
15067         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
15068         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
15069         * nndb.el (nndb-get-remote-expire-response): Ditto.
15070         * nndiary.el (nndiary-parse-schedule-value)
15071         (nndiary-string-to-number, nndiary-request-replace-article)
15072         (nndiary-request-article): Ditto.
15073         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
15074         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
15075         * nneething.el (nneething-make-head): Ditto.
15076         * nnfolder.el (nnfolder-request-article)
15077         (nnfolder-retrieve-headers): Ditto.
15078         * nnheader.el (nnheader-file-to-number): Ditto.
15079         * nnkiboze.el (nnkiboze-request-article): Ditto.
15080         * nnmail.el (nnmail-process-unix-mail-format)
15081         (nnmail-process-babyl-mail-format): Ditto.
15082         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
15083         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
15084         (nnmh-request-create-group, nnmh-request-list-1)
15085         (nnmh-request-group, nnmh-request-article): Ditto.
15086         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
15087         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
15088         * nnsoup.el (nnsoup-make-active): Ditto.
15089         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
15090         * nntp.el (nntp-find-group-and-number)
15091         (nntp-retrieve-headers-with-xover): Ditto.
15092         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
15093         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
15094         (pgg-format-key-identifier): Ditto.
15095         * pop3.el (pop3-last, pop3-stat): Ditto.
15096         * qp.el (quoted-printable-decode-region): Ditto.
15097
15098         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
15099         of concat.
15100
15101 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
15102
15103         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
15104
15105         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
15106
15107         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
15108
15109         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
15110
15111         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
15112
15113         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
15114
15115         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
15116         (gnus-carpal-mode): Ditto.
15117
15118         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
15119         (gnus-browse-mode): Ditto.
15120
15121         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
15122
15123         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
15124
15125 2005-05-29  Richard M. Stallman  <rms@gnu.org>
15126
15127         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
15128
15129 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15130
15131         * gnus-util.el (gnus-run-mode-hooks): New function.
15132
15133         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
15134
15135         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
15136         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
15137
15138 2005-05-27  Lute Kamstra  <lute@gnu.org>
15139
15140         * dns-mode.el (dns-mode): Specify customization group.
15141
15142 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
15143
15144         * gnus-agent.el (gnus-agent-make-mode-line-string):
15145         Use mode-line-highlight as mouse-face.
15146
15147 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15148
15149         * canlock.el (canlock): Change the parent group to news.
15150
15151         * deuglify.el (gnus-outlook-deuglify): Add :group.
15152
15153         * dig.el (dig): Add :group.
15154
15155         * dns-mode.el (dns-mode): Add :group.
15156
15157         * encrypt.el (encrypt): Add :group.
15158
15159         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
15160         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
15161         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
15162         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
15163         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
15164
15165         * gnus-diary.el (gnus-diary): Add :group.
15166
15167         * gnus.el (gnus-group-news-1-face): Add :group.
15168         (gnus-group-news-1-empty-face): Ditto.
15169         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
15170         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
15171         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
15172         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
15173         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
15174         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
15175         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
15176         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
15177         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
15178         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
15179         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
15180         (gnus-summary-high-ticked-face): Ditto.
15181         (gnus-summary-low-ticked-face): Ditto.
15182         (gnus-summary-normal-ticked-face): Ditto.
15183         (gnus-summary-high-ancient-face): Ditto.
15184         (gnus-summary-low-ancient-face): Ditto.
15185         (gnus-summary-normal-ancient-face): Ditto.
15186         (gnus-summary-high-undownloaded-face): Ditto.
15187         (gnus-summary-low-undownloaded-face): Ditto.
15188         (gnus-summary-normal-undownloaded-face): Ditto.
15189         (gnus-summary-high-unread-face): Ditto.
15190         (gnus-summary-low-unread-face): Ditto.
15191         (gnus-summary-normal-unread-face): Ditto.
15192         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
15193         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
15194
15195         * hashcash.el (hashcash): New custom group.
15196         (hashcash-default-payment): Add :group.
15197         (hashcash-payment-alist): Ditto.
15198         (hashcash-default-accept-payment): Ditto.
15199         (hashcash-accept-resources): Ditto.
15200         (hashcash-path): Ditto.
15201         (hashcash-extra-generate-parameters): Ditto.
15202         (hashcash-double-spend-database): Ditto.
15203         (hashcash-in-news): Ditto.
15204
15205         * message.el (message-minibuffer-local-map): Add :group.
15206
15207         * netrc.el (netrc): Add :group.
15208
15209         * sieve-manage.el (sieve-manage-log): Add :group.
15210         (sieve-manage-default-user): Diito.
15211         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
15212         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
15213         (sieve-manage-authenticators): Ditto.
15214         (sieve-manage-authenticator-alist): Ditto.
15215         (sieve-manage-default-port): Ditto.
15216
15217         * sieve-mode.el (sieve-control-commands-face): Add :group.
15218         (sieve-action-commands-face): Ditto.
15219         (sieve-test-commands-face): Ditto.
15220         (sieve-tagged-arguments-face): Ditto.
15221
15222         * smime.el (smime): Add :group.
15223
15224         * spam-report.el (spam-report): Add :group.
15225
15226         * spam.el (spam, spam-face): Add :group.
15227
15228 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15229
15230         * nntp.el (nntp-next-result-arrived-p): Some news servers may
15231         return \n.\n.\n at the end of articles.  Protect against that.
15232         (nntp-with-open-group): Allow debugging.
15233
15234         * nnheader.el (mail-header-set-extra): Make into a function
15235         because I just could't understand how to quote the list properly.
15236
15237         * dns.el (query-dns-cached): New function.
15238
15239 2005-05-26  Lute Kamstra  <lute@gnu.org>
15240
15241         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
15242
15243 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15244
15245         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
15246
15247         * gnus-art.el: Don't autoload mail-extract-address-components.
15248
15249         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
15250         eval-and-compile to evaluate it.
15251
15252         * hashcash.el: Don't autoload executable-find.
15253
15254         * nndb.el: Don't declare the nndb back end two or more times; don't
15255         autoload news-reply-mode, news-setup, cancel-timer and telnet.
15256
15257         * nntp.el: Autoload format-spec instead of format; use
15258         eval-and-compile to evaluate autoload forms.
15259
15260 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
15261
15262         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
15263
15264 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15265
15266         * gnus.el (gnus-version-number): Bump version.
15267
15268 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15269
15270         * gnus.el: No Gnus v0.3 is released.
15271
15272 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15273
15274         * lpath.el (featurep): Bind show-nonbreak-escape.
15275
15276 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15277
15278         * gnus-art.el (gnus-article-edit-part): Disable undo.
15279
15280 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15281
15282         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
15283         gnus-article-date-lapsed-new-header is t if date timer is active;
15284         skip headers in which the original date value is empty.
15285         (gnus-article-save-original-date): Redefine it as a macro.
15286         (gnus-display-mime): Use it.
15287
15288 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15289
15290         * gnus-art.el (article-date-ut): Support converting date in
15291         forwarded parts as well.
15292         (gnus-article-save-original-date): New function.
15293         (gnus-display-mime): Use it.
15294
15295 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
15296
15297         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
15298         enclosure element of <item>.
15299
15300 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
15301
15302         * message.el (message-kill-buffer-query): Rename from
15303         `message-kill-buffer-query-if-modified'.  Add :version.
15304
15305 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15306
15307         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
15308         window layout.
15309
15310 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15311
15312         * mml.el: Autoload dnd when compiling.
15313
15314 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
15315
15316         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
15317         x-dnd-*.
15318
15319 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15320
15321         * qp.el (quoted-printable-encode-region): Save excursion.
15322
15323 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
15324
15325         * message.el (message-kill-buffer-query-if-modified): Add new variable
15326         so the user can kill a modified message buffer quickly.
15327         (message-kill-buffer): Use it.
15328
15329 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15330
15331         * lpath.el: Fbind display-time-event-handler; don't fbind
15332         string-to-multibyte.
15333
15334         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
15335
15336 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15337
15338         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
15339         contained in text because xml.el decodes entities) with LFs.
15340
15341 2005-04-11  Lute Kamstra  <lute@gnu.org>
15342
15343         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
15344         differently.
15345
15346 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15347
15348         * mm-util.el (mm-detect-coding-region): Typo.
15349
15350 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
15351
15352         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
15353
15354 2005-04-06  Deepak Goel  <deego@gnufans.org>
15355
15356         * spam-stat.el (spam-stat-score-buffer): Add a call to a
15357         user-function allow user modifications of the scores.
15358         (spam-stat-score-buffer-user): New function, to allow
15359         user-computed modifications to the score.
15360         (spam-stat-score-buffer-user-functions): List of additional
15361         scoring functions.
15362         (spam-stat-error-holder): Global temporary error holder.
15363         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
15364         variable.
15365
15366 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
15367
15368         * gnus-registry.el (gnus-registry-clean-empty-function)
15369         (gnus-registry-trim, gnus-registry-fetch-groups)
15370         (gnus-registry-delete-group): Groups that match
15371         `gnus-registry-ignored-groups' are removed from the registry
15372         entries, not just ignored for splitting.  This helps clean up the
15373         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
15374         to get all the groups a message ID is in.
15375
15376         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
15377         (spam-stat-split-fancy): Change "threshhold" to "threshold".
15378         (spam-stat-score-buffer-user-functions): Add :number custom type.
15379
15380 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15381
15382         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
15383         argument in XEmacs.
15384
15385         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
15386         (nnrss-request-group): Decode group name first.
15387         (nnrss-request-article): Make a text/plain article if mml-to-mime
15388         failed.
15389         (nnrss-get-encoding): Return a compatible encoding according to
15390         nnrss-compatible-encoding-alist.
15391         (nnrss-find-el): Use consp instead of listp.
15392         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
15393
15394 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15395
15396         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
15397         which Emacs 20 doesn't support.
15398         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
15399
15400 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
15401
15402         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
15403         silence the byte compiler inside the defun.
15404
15405         * gnus-demon.el (parse-time-string): Add autoload.
15406
15407         * gnus-delay.el (parse-time-string): Add autoload.
15408
15409         * gnus-art.el (parse-time-string): Add autoload.
15410
15411         * nnultimate.el (parse-time): Require for `parse-time-string'.
15412
15413 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
15414
15415         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
15416
15417         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
15418
15419         * smime.el (smime-ldap-host-list): Add :version.
15420
15421 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
15422
15423         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
15424         pass it to `gnus-browse-read-group'.
15425         (gnus-browse-read-group): Add NUMBER argument and pass it to
15426         `gnus-group-read-ephemeral-group'.
15427
15428         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
15429         argument and pass it to `gnus-group-read-group'.
15430
15431 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
15432
15433         * mm-util.el (mm-xemacs-find-mime-charset): Only call
15434         mm-xemacs-find-mime-charset-1 if we have the mule feature
15435         available at runtime.
15436
15437 2005-03-25  Werner Lemberg  <wl@gnu.org>
15438
15439         * nnmaildir.el: Replace `illegal' with `invalid'.
15440
15441 2005-03-23  Lute Kamstra  <lute@gnu.org>
15442
15443         * time-date.el: Add comment on time value formats.
15444         Don't require parse-time.
15445         (with-decoded-time-value): New macro.
15446         (encode-time-value): New function.
15447         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
15448         (days-to-time): Return a valid time value when arg is huge.
15449         (time-since): Use time-subtract.
15450         (time-to-number-of-days): Use time-to-seconds.
15451
15452 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
15453
15454         * gnus-start.el (gnus-display-time-event-handler):
15455         Check display-time-timer at runtime rather than only at load time
15456         in case display-time-mode is turned off in the mean time.
15457
15458 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
15459
15460         * nnimap.el (nnimap-open-connection): Print which authinfo file is
15461         used.
15462
15463         * nneething.el (nneething-map-file-directory): Derive from
15464         `gnus-directory'.
15465
15466         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
15467         the To/Cc button.
15468
15469 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
15470
15471         * nnmaildir.el (nnmaildir-request-accept-article):
15472         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
15473
15474 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
15475
15476         * gnus-async.el: Require timer-funcs at compile time when in
15477         XEmacs for `run-with-idle-timer'.
15478
15479 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
15480
15481         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
15482         autoloaded function.
15483
15484 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15485
15486         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
15487
15488 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
15489
15490         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
15491
15492 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15493
15494         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
15495         Add gnus-expert-user to default.
15496
15497 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
15498
15499         * nnimap.el (nnimap-open-server): Ditto.
15500
15501         * imap.el (imap-authenticate): Fix typo.
15502
15503 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
15504
15505         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
15506         buffer (since IMAP server might return FETCH response out of
15507         order, and the nntp buffer must be sorted).
15508
15509 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
15510
15511         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
15512         comparison on string.
15513
15514         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
15515         (gnus-agent-score): Rename category keywords to match gnus-cus.
15516         (gnus-agent-summary-fetch-series): Modify to protect against
15517         gnus-agent-summary-fetch-group clearing processable flags.
15518         (gnus-agent-synchronize-group-flags): Update live group buffer as
15519         synchronization may occur due to the user toggle the plugged
15520         status.
15521         (gnus-agent-fetch-group-1): Clear downloadable flag when article
15522         successfully downloaded.
15523         (gnus-agent-expire-group-1): Avoid using markers when the overview
15524         is in ascending order; greatly improves performance.
15525         (gnus-agent-regenerate-group):
15526         Use gnus-agent-synchronize-group-flags to reset read status in both
15527         gnus and server.
15528         (gnus-agent-update-files-total-fetched-for): Fix initial size.
15529
15530 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
15531
15532         * message.el: Don't autoload former message-utils variables.
15533         (message-strip-subject-trailing-was): Change doc string.
15534
15535         * nnweb.el: Fixes for `gnus-group-make-web-group'.
15536         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
15537         (nnweb-google-search): Add "hl=en" here.
15538         (nnweb-google-parse-1, nnweb-google-create-mapping):
15539         Don't hardcode URL.
15540
15541 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
15542
15543         * message.el (message-get-reply-headers, message-followup):
15544         Mention related variables `message-use-followup-to' and
15545         `message-use-mail-followup-to', in the information buffer.
15546
15547         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
15548         of broken groups(-beta).google.com.
15549
15550 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
15551
15552         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
15553         parameter to invoked gnus-request-move-article; remove the
15554         redundant gnus-sum-hint-move-is-internal variable; apply the marks
15555         all at once instead of once per article.
15556         (gnus-summary-remove-process-mark): Accept a list of articles as
15557         well as a single article for processing.
15558
15559         * gnus-int.el (gnus-request-move-article): Add move-is-internal
15560         parameter.
15561
15562         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
15563
15564         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
15565
15566         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
15567         parameter.
15568
15569         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
15570         parameter.
15571
15572         * nnimap.el (nnimap-request-move-article): Add move-is-internal
15573         parameter and remove the gnus-sum-hint-move-is-internal variable.
15574
15575         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
15576         parameter.
15577
15578         * nndraft.el (nndraft-request-move-article): Add move-is-internal
15579         parameter.
15580
15581         * nndiary.el (nndiary-request-move-article): Add move-is-internal
15582         parameter.
15583
15584         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
15585
15586         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
15587         parameter.
15588
15589         * nnagent.el (nnagent-request-move-article): Add move-is-internal
15590         parameter.
15591
15592 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
15593
15594         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
15595         a more conservative way.
15596
15597 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
15598
15599         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
15600         buffer, so it moves the window's cursor.
15601
15602 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
15603
15604         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
15605         `mm-dissect-multipart' and receive the from field as an (optional)
15606         argument from `mm-dissect-multipart'.
15607         (mm-dissect-multipart): Receive the from field as an argument and
15608         pass it on when we call `mm-dissect-buffer' on MIME parts.
15609         Fixes verification/decryption of signed/encrypted MIME parts.
15610
15611 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
15612
15613         * gnus-sum.el (gnus-summary-move-article):
15614         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
15615         whatever it calls (right now, only nnimap-request-move article
15616         respects it).
15617
15618         * nnimap.el (nnimap-request-move-article):
15619         When gnus-sum-hint-move-is-internal is set, don't do the extra
15620         nnimap-request-article.
15621
15622 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
15623
15624         * nnheader.el (nnheader-find-file-noselect): Add doc string.
15625
15626         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
15627         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
15628
15629         * gnus-sum.el (gnus-summary-caesar-message):
15630         Apply `gnus-treat-article' after rotation.
15631
15632         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
15633         doc string.
15634
15635 2005-02-22  Simon Josefsson  <jas@extundo.com>
15636
15637         * encrypt.el (encrypt-password-cache-expiry): Remove (use
15638         `password-cache-expiry' instead).  Reported by Arne Jørgensen
15639         <arne@arnested.dk>.
15640         (encrypt): Add password-cache and password-cache-expiry as group
15641         members.
15642
15643 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
15644
15645         * smime.el (smime-ldap-host-list): Doc fix.
15646         (smime-ask-passphrase): Use `password-read-and-add' to read (and
15647         cache) password.
15648         (smime-sign-region): Use it.
15649         (smime-decrypt-region): Use it.
15650         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
15651         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
15652         fails.
15653         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
15654         certificate from DER to PEM format rather than calling openssl.
15655
15656         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
15657
15658         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
15659         for signing/encryption.
15660
15661         * mml.el (mml-parse-1): Use them.
15662
15663 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
15664
15665         * nnrss.el (nnrss-verbose): Remove.
15666         (nnrss-request-group): Use `nnheader-message' instead.
15667
15668 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
15669
15670         * nnrss.el (nnrss-verbose): New variable.
15671         (nnrss-request-group): Make it say nnrss is requesting a group.
15672
15673 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
15674
15675         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
15676         Handle news URL with given port correctly.
15677
15678 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15679
15680         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
15681         containing special characters.
15682
15683         * gnus-sum.el (gnus-summary-edit-article): Ditto.
15684
15685         * mml.el (mime-to-mml): Ditto.
15686
15687         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
15688         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
15689         (rfc2047-decode-region): Quote decoded words containing special
15690         characters when rfc2047-quote-decoded-words-containing-tspecials
15691         is non-nil.
15692
15693 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
15694
15695         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
15696
15697         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
15698
15699 2005-02-15  Simon Josefsson  <jas@extundo.com>
15700
15701         * nnimap.el (nnimap-debug): Doc fix.
15702
15703         * imap.el (imap-debug): Doc fix.
15704
15705 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15706
15707         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
15708
15709 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
15710
15711         * gnus.el (spam-contents): Improve docs for spam-contents
15712         parameter in its variable incarnation.
15713
15714 2005-02-14  Simon Josefsson  <jas@extundo.com>
15715
15716         * smime-ldap.el: Use require instead of load-library for ldap.
15717         (smime-ldap-search): Indent.
15718         (smime-ldap-search-internal): Shorten line.
15719
15720         * smime.el (smime-cert-by-dns): Add doc-string.
15721         (smime-cert-by-ldap-1): Indent.
15722
15723         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
15724         mml-smime-get-dns-ldap.
15725         (mml-smime-encrypt-query): Use new function.  Default to ldap.
15726
15727 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
15728
15729         * smime.el: Require smime-ldap.
15730         (smime-ldap-host-list): New variable.
15731         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
15732
15733         * mml-smime.el (mml-smime-encrypt-query): New function.
15734         (mml-smime-encrypt-query): Use it.
15735
15736         * smime-ldap.el: New file.
15737
15738 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15739
15740         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
15741
15742 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
15743
15744         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
15745         argument in doc string.  Make query for type more clear.
15746
15747 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
15748
15749         * gnus.el (gnus-group-startup-message): Search for gnus images in
15750         etc/images/gnus.
15751         * mm-util.el (mm-image-load-path): Likewise.
15752         * smiley.el (smiley-data-directory): Search for smilies in
15753         etc/images/smilies.
15754
15755 2005-02-09  Kim F. Storm  <storm@cua.dk>
15756
15757         Change Emacs release version from 21.4 to 22.1 throughout.
15758         Change Emacs development version from 21.3.50 to 22.0.50.
15759
15760 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15761
15762         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
15763
15764         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
15765         non-Mule XEmacs as well.
15766         (mm-decompress-buffer): Signal an error intentionally if it does
15767         not decompress compressed data because auto-compression-mode is
15768         disabled.
15769
15770 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
15771
15772         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
15773         an ID in the registry even if it has no groups.
15774
15775 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15776
15777         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
15778         merge it into mm-decompress-buffer.
15779         (gnus-mime-copy-part): Use the MIME part charset, the value which
15780         a user specified or gnus-newsgroup-charset for decoding, like
15781         gnus-mime-inline-part does; set buffer-file-coding-system to tell
15782         save-buffer what was used.  Suggested by Kevin Ryde
15783         <user42@zip.com.au>.
15784         (gnus-mime-inline-part): Allow the name parameter as well as the
15785         filename parameter; force decompressing of compressed data; always
15786         display contents being not decoded as unibyte.
15787
15788         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
15789         as well as the filename parameter.
15790
15791         * mm-util.el (mm-decompress-buffer):
15792         Merge gnus-mime-jka-compr-maybe-uncompress.
15793         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
15794         of compressed data.
15795
15796 2005-02-08  Simon Josefsson  <jas@extundo.com>
15797
15798         * imap.el (imap-log): Doc fix.
15799
15800 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15801
15802         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
15803         the coding cookies; decompress compressed parts.
15804
15805         * mml.el (mml-generate-mime-1): Add the charset parameter according
15806         to the value which a user specified manually or the coding cookie.
15807
15808         * mm-util.el (mm-string-to-multibyte): New function.
15809         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
15810         (mm-coding-system-to-mime-charset): New function.
15811         (mm-decompress-buffer): New function.
15812         (mm-find-buffer-file-coding-system): New function.
15813
15814         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
15815         (mm-display-inline-fontify): Rewrite for decoding and decompressing
15816         parts.
15817
15818 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
15819
15820         * mm-view.el (mm-display-inline-fontify): Decode a part according
15821         to the charset parameter.
15822
15823 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15824
15825         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
15826         prefix arg is neither nil nor a number, as info specifies.
15827
15828 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15829
15830         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
15831         timestamps.
15832
15833 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
15834
15835         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
15836         groups error checking and notify user.
15837
15838 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
15839
15840         * message.el (message-send-mail-function): Check existence of
15841         sendmail-program first before using default value
15842         `message-send-mail-with-sendmail'.  Otherwise use more generic
15843         `smtpmail-send-it'.
15844
15845 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15846
15847         * nntp.el (nntp-request-update-info): Always return nil.
15848
15849 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
15850
15851         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
15852
15853 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
15854
15855         * message.el (message-beginning-of-line): Change the behavior when
15856         invoked between BOL and : so that it first moves backward.
15857
15858 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15859
15860         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
15861         article buffer when editing of the article is discarded.
15862         (gnus-article-prepare): Revert.
15863
15864 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15865
15866         * gnus-art.el (gnus-article-prepare):
15867         Remove message-strip-forbidden-properties from the local hook.
15868
15869 2005-01-27  Simon Josefsson  <jas@extundo.com>
15870
15871         * password.el (password-cache-add): Only start one timer per key.
15872         Reported by Derek Atkins <warlord@MIT.EDU>.
15873
15874 2005-01-26  Steve Youngs  <steve@sxemacs.org>
15875
15876         * run-at-time.el: Remove.  It is no longer needed as
15877         timer-funcs.el in the xemacs-base package has a working version of
15878         `run-at-time'.
15879
15880         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
15881
15882         * password.el: Require timer-funcs instead of run-at-time in
15883         XEmacs.
15884         Remove `password-run-at-time' macro.
15885         (password-cache-add): Use `run-at-time' instead of
15886         `password-run-at-time'.
15887
15888         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
15889         Remove `nnheader-cancel-function-timers' alias,
15890         `cancel-function-timers' exists in XEmacs in timer-funcs.
15891
15892         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
15893         for `run-with-idle-timer'.
15894
15895         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
15896         for `run-at-time'.
15897
15898         * mm-url.el: Require timer-funcs at compile time when in XEmacs
15899         for `with-timeout'.
15900
15901         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
15902         the same as for XEmacs 21.4.
15903         No need to ignore `run-with-idle-timer', this function exists in
15904         XEmacs now in timer-funcs.el in the xemacs-base package.
15905         (dgnushack-compile): No need to delete
15906         run-at-time.el from the list of files to compile because it
15907         doesn't exist anymore.
15908
15909 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15910
15911         * mml.el (mml-generate-mime-1): Convert string into unibyte when
15912         inserting " *mml*" buffer's contents into a unibyte temp buffer.
15913
15914 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
15915
15916         * mail-source.el (mail-source-fetch-imap): Search for ^From case
15917         sensitively.
15918
15919 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
15920
15921         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
15922
15923 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15924
15925         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
15926         which will be inserted according to the multibyteness of a buffer
15927         rather than the type of contents.  Suggested by ARISAWA Akihiro
15928         <ari@mbf.ocn.ne.jp>.
15929
15930         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
15931         of string which old xml.el may return rather than a string.
15932
15933 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15934
15935         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
15936
15937 2005-01-16  Simon Josefsson  <jas@extundo.com>
15938
15939         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
15940         idn/idna.el isn't available.
15941         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
15942         <michael@waxrat.com>.
15943
15944         * hashcash.el: Remove non-FSF copyright header.
15945
15946         * hashcash.el (hashcash-extra-generate-parameters): New variable.
15947         (hashcash-generate-payment): Use it.
15948         (hashcash-generate-payment-async): Use it.
15949
15950 2005-01-15  Simon Josefsson  <jas@extundo.com>
15951
15952         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
15953         Suggested by Raymond Scholz <ray-2005@zonix.de>.
15954
15955         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
15956         gnus-summary-idna-message.
15957         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
15958         (gnus-summary-idna-message): New function.
15959
15960 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
15961
15962         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
15963         gnus-novice-user.
15964
15965 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15966
15967         * nnrss.el (nnrss-request-delete-group): Delete entries in
15968         nnrss-group-alist as well.
15969         (nnrss-save-server-data): Insert newline.
15970
15971 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
15972
15973         * gnus.el (gnus-user-agent): Use list of symbols instead of
15974         symbols.  Display full version number for (S)XEmacs.
15975         Optionally display (S)XEmacs codename.
15976
15977         * gnus-util.el (gnus-emacs-version): Update for new
15978         `gnus-user-agent'.
15979
15980         * gnus-msg.el (gnus-extended-version): Make it possible to omit
15981         Gnus version.
15982
15983 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
15984
15985         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
15986         which is unreadable in some setups.
15987
15988 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15989
15990         * gnus-spec.el (gnus-update-format-specifications): Flush the
15991         group format spec cache if it doesn't support decoded group names.
15992
15993 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
15994
15995         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
15996         Allow to apply decay on score files matching a regexp.
15997
15998 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
15999
16000         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
16001         compatibility in %g and %c.
16002
16003 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16004
16005         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
16006         name for only %g and %c.
16007         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
16008         of gnus-tmp-group to decoded group name.
16009         (gnus-group-make-rss-group): Exclude `/'s from group names.
16010
16011 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16012
16013         * nnrss.el (nnrss-get-encoding): Fix regexp.
16014
16015 2004-12-27  Simon Josefsson  <jas@extundo.com>
16016
16017         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
16018         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
16019         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
16020
16021 2004-12-17  Kim F. Storm  <storm@cua.dk>
16022
16023         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
16024
16025         * gnus-sum.el (gnus-summary-mode-map): Likewise.
16026
16027 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
16028
16029         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
16030
16031 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16032
16033         * nnrss.el: Require rfc2047 and mml.
16034         (nnrss-file-coding-system): New variable.
16035         (nnrss-format-string): Redefine it as an inline function.
16036         (nnrss-decode-group-name): New function.
16037         (nnrss-string-as-multibyte): Remove.
16038         (nnrss-retrieve-headers): Decode group name; don't use
16039         nnrss-format-string.
16040         (nnrss-request-group): Decode group name.
16041         (nnrss-request-article): Decode group name; allow a Message-ID as
16042         well as an article number; don't use nnrss-format-string; encode a
16043         Message-ID string which may contain non-ASCII characters; use
16044         mml-to-mime to compose a MIME article.
16045         (nnrss-request-expire-articles): Decode group name.
16046         (nnrss-request-delete-group): Decode group name.
16047         (nnrss-fetch): Clarify error message.
16048         (nnrss-read-server-data): Use insert-file-contents instead of load;
16049         bind file-name-coding-system; use multibyte buffer.
16050         (nnrss-save-server-data): Bind coding-system-for-write to the
16051         value of nnrss-file-coding-system; bind file-name-coding-system;
16052         add coding cookie.
16053         (nnrss-read-group-data): Use insert-file-contents instead of load;
16054         bind file-name-coding-system; use multibyte buffer.
16055         (nnrss-save-group-data): Bind coding-system-for-write to the
16056         value of nnrss-file-coding-system; bind file-name-coding-system.
16057         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
16058         make it work with non-ASCII text.
16059         (nnrss-find-el): Make it work with old xml.el as well.
16060
16061 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
16062
16063         * nnrss.el (nnrss-get-encoding): New function.
16064         (nnrss-fetch): Use unibyte buffer initially; bind
16065         coding-system-for-read while performing mm-url-insert; remove ^Ms;
16066         decode contents according to the encoding attribute.
16067         (nnrss-save-group-data): Add coding cookie.
16068         (nnrss-mime-encode-string): New function.
16069         (nnrss-check-group): Use it to encode subject and author.
16070
16071 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
16072
16073         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
16074         imaginary variable.
16075
16076 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16077
16078         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
16079         correctly even if there are wide characters.
16080
16081 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
16082
16083         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
16084         downcased symbol names; make a new cache instead of reusing
16085         bbdb-hashtable.
16086
16087 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16088
16089         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
16090         concatenating segments rather than before concatenating them.
16091         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
16092
16093         * message.el (message-get-reply-headers): Bind `extra'.
16094
16095 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16096
16097         * message.el (message-extra-wide-headers): New variable.
16098         (message-get-reply-headers): Use it.
16099
16100 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16101
16102         * gnus-agent.el (gnus-agent-group-path): Decode group name.
16103         (gnus-agent-group-pathname): Ditto.
16104
16105         * gnus-cache.el (gnus-cache-file-name): Decode group name.
16106
16107         * gnus-group.el (gnus-group-make-group): Decode group name.
16108         (gnus-group-make-rss-group): Register the group data after opening
16109         the nnrss group.
16110
16111 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
16112
16113         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
16114         by expiry now get marked as read.
16115
16116 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16117
16118         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
16119
16120 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
16121
16122         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
16123         unify Latin characters in XEmacs.
16124         (mm-find-mime-charset-region): Use it.
16125
16126 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16127
16128         * gnus-util.el (gnus-delete-directory): New function.
16129
16130         * gnus-agent.el (gnus-agent-delete-group): Use it.
16131
16132         * gnus-cache.el (gnus-cache-delete-group): Use it.
16133
16134 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16135
16136         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
16137         names.
16138
16139 2004-12-16  Simon Josefsson  <jas@extundo.com>
16140
16141         * hashcash.el (hashcash-payment-alist): Fix custom :type.
16142
16143 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16144
16145         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
16146
16147         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
16148         (gnus-group-set-current-level): Decode group name.
16149
16150 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
16151
16152         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
16153         failed.
16154
16155 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16156
16157         * gnus-group.el (gnus-group-delete-group): Decode group name.
16158         (gnus-group-make-rss-group): Encode group name.
16159         (gnus-group-catchup-current): Decode group name.
16160         (gnus-group-kill-group): Decode group name.
16161
16162 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
16163
16164         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
16165
16166 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16167
16168         * gnus-group.el (gnus-group-make-rss-group):
16169         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
16170
16171         * gnus-start.el (gnus-setup-news): Honor user's setting to
16172         gnus-message-archive-method.  Suggested by Lute Kamstra
16173         <lute@gnu.org>.
16174
16175 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
16176
16177         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
16178         global counterparts of the buffer-local variables.
16179
16180 2004-11-16  Romain Francoise  <romain@orebokech.com>
16181
16182         * gnus-sum.el (gnus-summary-exit): Don't clear the global
16183         counterparts of the buffer-local variables.
16184
16185 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
16186
16187         * message.el (message-forbidden-properties): Fix typo in doc
16188         string.
16189
16190 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
16191
16192         * gnus-util.el (gnus-replace-in-string): Add doc string.
16193
16194         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
16195         to avoid problems when splitting mails with many recipients.
16196
16197 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16198
16199         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
16200         pop-to-buffer, covered by the subsequent gnus-configure-windows.
16201
16202 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
16203
16204         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
16205         if there is no hashtable in memory or file modification time is
16206         newer than cached timestamp.
16207
16208 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
16209
16210         * gnus-sum.el (gnus-summary-limit-to-recipient):
16211         Implement not-matching option.
16212
16213 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
16214
16215         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
16216         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
16217         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
16218         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
16219         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
16220         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
16221
16222 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16223
16224         * message.el (message-forward-make-body-mml): Remove headers
16225         according to message-forward-ignored-headers if a message is decoded.
16226
16227 2004-12-02  Romain Francoise  <romain@orebokech.com>
16228
16229         * message.el (message-forward-make-body-plain): Always remove
16230         headers according to message-forward-ignored-headers.
16231
16232 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
16233
16234         * spam.el (spam-summary-prepare-exit): Remove the
16235         gnus-summary-limit pop for now, it has problems with ham marks for
16236         me.
16237
16238 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
16239
16240         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
16241         correctly.
16242
16243 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
16244
16245         * format-spec.el (format-spec): Message the char.
16246
16247 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
16248
16249         * gnus-art.el (gnus-split-methods): Reformat comments.
16250
16251         * spam.el (spam-summary-prepare-exit): Remove article limits
16252         before exiting the summary buffer.
16253
16254 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16255
16256         * lpath.el: Remove bbdb-create-internal, bbdb-records,
16257         spam-BBDB-register-routine and spam-enter-ham-BBDB.
16258
16259         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
16260         order to silence the byte compiler.
16261
16262         * spam.el: Fix the way to silence the byte compiler, which
16263         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
16264         bbdb-search-simple, spam-BBDB-register-routine,
16265         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
16266         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
16267         spam-stat-buffer-is-spam, spam-stat-load,
16268         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
16269         spam-stat-save and spam-stat-split-fancy.
16270
16271 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16272
16273         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
16274         which may confuse users.
16275         (canlock-password-for-verify): Ditto.
16276
16277         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
16278
16279         * gnus-art.el (gnus-emphasis-alist): Ditto.
16280
16281         * gnus-registry.el (gnus-registry-max-entries): Ditto.
16282
16283         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
16284
16285         * gnus-start.el (gnus-save-killed-list): Ditto.
16286
16287         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
16288         (gnus-sum-thread-tree-root): Ditto.
16289         (gnus-sum-thread-tree-false-root): Ditto.
16290         (gnus-sum-thread-tree-single-indent): Ditto.
16291
16292         * message.el (message-courtesy-message): Ditto.
16293         (message-archive-note): Ditto.
16294         (message-subscribed-address-file): Ditto.
16295         (message-user-fqdn): Ditto.
16296
16297         * spam-report.el (spam-report-gmane-regex): Ditto.
16298
16299         * spam.el (spam-blackhole-good-server-regex): Ditto.
16300
16301 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16302
16303         * mml.el (mml-preview): Widen the message buffer before copying
16304         the contents to the preview buffer; sort headers before previewing.
16305
16306         * message.el (message-hidden-headers): Fix the way to avoid a bug
16307         in the `repeat' widget in Emacs 21.3 or earlier.
16308
16309 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16310
16311         * message.el (message-hidden-headers): Default to "^References:".
16312         Improve customization type.  Suggested by Reiner Steib
16313         <Reiner.Steib@gmx.de>.
16314
16315 2004-11-25  Romain Francoise  <romain@orebokech.com>
16316
16317         * message.el (message-strip-forbidden-properties): Remove check for
16318         obsolete `message-hidden' text property, hidden headers are not
16319         accessible in the buffer anymore.
16320
16321 2004-11-22  Romain Francoise  <romain@orebokech.com>
16322
16323         * message.el (message-header-format-alist): Add `From' in list
16324         so that it can be sorted.
16325         (message-fix-before-sending): Widen and sort headers before
16326         sending.
16327         (message-hide-headers): Use narrowing to hide headers by moving
16328         them to the top of the buffer and narrowing to the region
16329         underneath.
16330
16331 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16332
16333         * message.el (message-strip-forbidden-properties):
16334         Bind buffer-read-only (etc) to nil.
16335
16336 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16337
16338         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
16339         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
16340
16341 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
16342
16343         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
16344
16345 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16346
16347         * dns.el (query-dns): Use sit-for to time instead of
16348         accept-process-output, since that doesn't seem to work on udp
16349         sockets.
16350
16351 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16352
16353         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
16354
16355 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
16356
16357         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
16358         doc string.  Improve doc string.
16359
16360 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16361
16362         * nntp.el (nntp-request-update-info): Return nil if
16363         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
16364         may not call gnus-activate-group which uselessly issues the GROUP
16365         commands for all nntp groups and wastes time.  Reported by Romain
16366         Francoise <romain@orebokech.com>.
16367
16368         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
16369
16370 2004-11-15  Simon Josefsson  <jas@extundo.com>
16371
16372         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
16373         headers separately.
16374         (gnus-button-openpgp): New function, inspired by Jochen Küpper
16375         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
16376
16377 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
16378
16379         * gnus-start.el (gnus-convert-old-newsrc):
16380         Assign legacy-gnus-agent to 5.10.7.
16381
16382 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16383
16384         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
16385         start of the lines.
16386
16387 2004-11-14  Magnus Henoch  <mange@freemail.hu>
16388
16389         * hashcash.el (hashcash-default-payment): Change default to 20.
16390         (hashcash-default-accept-payment): Change default to 20.
16391         (hashcash-process-alist): New variable.
16392         (hashcash-generate-payment-async): Add.
16393         (hashcash-already-paid-p): Add.
16394         (hashcash-insert-payment): Don't generate payments twice.
16395         (hashcash-insert-payment-async): Add.
16396         (hashcash-insert-payment-async-2): Add.
16397         (hashcash-cancel-async): Add.
16398         (hashcash-wait-async): Add.
16399         (hashcash-processes-running-p): Add.
16400         (hashcash-wait-or-cancel): Add.
16401         (mail-add-payment): New optional argument.  Conditionally start
16402         asynchronous calculation.
16403         (mail-add-payment-async): Add.
16404
16405         * message.el (message-send-mail): Wait for asynchronous hashcash
16406         results.  Don't clobber existing X-Hashcash headers.
16407         (message-setup-1): Call mail-add-payment-async when
16408         message-generate-hashcash is non-nil.
16409
16410 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
16411
16412         * message.el (message-use-alternative-email-as-from): Examine the
16413         From header as well; use message-make-from in order to include a
16414         user's full name.
16415
16416 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16417
16418         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
16419         default; improve customization type.
16420         (gnus-emphasis-custom-with-format): New macro.
16421         (gnus-emphasis-custom-value-to-external): New function.
16422         (gnus-emphasis-custom-value-to-internal): New function.
16423
16424 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16425
16426         * dns.el (query-dns): Resolve reverse addresses.
16427
16428 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16429
16430         * gnus-group.el (gnus-group-get-new-news): Use it.
16431
16432         * gnus-start.el (gnus-check-reasonable-setup): New function.
16433
16434 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16435
16436         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
16437         "Args out of range" error.  Reported by Arnaud Giersch
16438         <arnaud.giersch@free.fr>.
16439
16440 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
16441
16442         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
16443
16444 2004-11-04  Richard M. Stallman  <rms@gnu.org>
16445
16446         * spam.el (spam group): Add :version.
16447
16448         * pgg-def.el (pgg group): Add :version.
16449
16450 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16451
16452         * gnus-art.el (gnus-article-edit-article): Don't associate the
16453         article buffer with a draft file.  This is a temporary measure
16454         against the 2004-08-22 change to gnus-article-edit-mode.
16455
16456 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16457
16458         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
16459         (html2text-format-tags): Remove unused variable `attr'.
16460
16461 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
16462
16463         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
16464
16465         * tls.el (tls-process-connection-type, tls-success)
16466         (tls-certtool-program): Add :version.
16467
16468         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
16469         (starttls-extra-arguments, starttls-process-connection-type)
16470         (starttls-connect, starttls-failure, starttls-success): Add :version.
16471
16472         * spam-stat.el (spam-stat): Add :version.
16473
16474         * sieve.el (sieve): Add :version.
16475
16476         * sha1.el (sha1): Add :version.
16477         (sha1-use-external): Remove redundant version.
16478
16479         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
16480         (nnmail-cache-ignore-groups, nnmail-spool-hook)
16481         (nnmail-split-fancy-match-partial-words)
16482         (nnmail-split-lowercase-expanded): Add :version.
16483
16484         * nndiary.el (nndiary): Add :version.
16485
16486         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
16487
16488         * mml-sec.el (mml-default-sign-method)
16489         (mml-default-encrypt-method, mml-signencrypt-style-alist):
16490         Add :version.
16491
16492         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
16493
16494         * mm-url.el (mm-url-use-external, mm-url-program)
16495         (mm-url-arguments): Add :version.
16496
16497         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
16498         (mm-attachment-file-modes, mm-decrypt-option)
16499         (mm-w3m-safe-url-regexp): Add :version.
16500
16501         * message.el (message-cite-prefix-regexp)
16502         (message-sendmail-envelope-from, message-minibuffer-local-map)
16503         (message-user-fqdn, message-completion-alist): Add :version.
16504
16505         * gnus-win.el (gnus-configure-windows-hook)
16506         (gnus-use-frames-on-any-display): Add :version.
16507
16508         * gnus-art.el (gnus-article-address-banner-alist)
16509         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
16510         (gnus-treat-from-picon, gnus-treat-mail-picon)
16511         (gnus-treat-x-pgp-sig): Add :version.
16512
16513         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
16514         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
16515         (gnus-summary-article-delete-hook)
16516         (gnus-summary-display-while-building): Add :version.
16517
16518         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
16519         (gnus-get-top-new-news-hook): Add :version.
16520
16521         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
16522         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
16523
16524         * gnus-registry.el (gnus-registry): Add :version.
16525
16526         * gnus-spec.el (gnus-use-correct-string-widths)
16527         (gnus-make-format-preserve-properties): Add :version.
16528
16529         * gnus.el (gnus-group-charter-alist)
16530         (gnus-group-fetch-control-use-browse-url)
16531         (gnus-install-group-spam-parameters): Add :version.
16532
16533         * gnus-diary.el (gnus-diary): Add :version.
16534
16535         * gnus-delay.el (gnus-delay): Add :version.
16536
16537         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
16538         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
16539         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
16540         Add :version.
16541
16542         * gnus-agent.el (gnus-agent-max-fetch-size)
16543         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
16544         (gnus-agent-prompt-send-queue): Add :version.
16545
16546         * deuglify.el (gnus-outlook-deuglify): Add :version.
16547
16548         * html2text.el: Beautify code.  Improve doc strings.
16549         Some checkdoc cleanup.
16550         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
16551
16552 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
16553
16554         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
16555
16556 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
16557
16558         * gnus-registry.el (gnus-registry-hashtb): Create the registry
16559         when package is loaded.
16560
16561         * spam.el (spam-summary-score-preferred-header): Add global preference
16562         for people who want to override the default SpamAssassin over
16563         Bogofilter preference (when both are set).
16564         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
16565         (spam-user-format-function-S):
16566         Check spam-summary-score-preferred-header.
16567         (spam-extra-header-to-number): Add X-Bogosity header parsing.
16568         (spam-user-format-function-S): Format the score correctly.
16569
16570 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16571
16572         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
16573         signature file.  Suggested by Manoj Srivastava
16574         <srivasta@golden-gryphon.com>.
16575
16576         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
16577         iso-2022-jp even in the Japanese language environment.
16578         Suggested by Jason Rumney <jasonr@gnu.org>.
16579
16580 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16581
16582         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
16583         use the same characters as the dummy marks; make it free from
16584         getting affected by the language environment.
16585         (gnus-summary-read-group-1): Update mark positions only when the
16586         format spec is updated.
16587
16588         * gnus-spec.el (gnus-update-format-specifications): Return a list
16589         of updated types.
16590
16591 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
16592
16593         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
16594         of boundp to check if display-warning is available.
16595
16596 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
16597
16598         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
16599
16600 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16601
16602         * nnspool.el (nnspool-spool-directory): Use news-path if the
16603         news-directory variable is not bound.
16604
16605         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
16606         function instead of display-warning if it is not available.
16607
16608 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
16609
16610         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
16611         v5-10: Use `point-at-bol'.
16612
16613 2004-10-26  Simon Josefsson  <jas@extundo.com>
16614
16615         * hashcash.el: Fix URL in comment, reported by Cheng Gao
16616         <chenggao@gmail.com>.
16617
16618 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
16619
16620         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
16621         instead.
16622
16623 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
16624
16625         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
16626         to remove a server from the nnimap-server-buffer-alist.
16627         (nnimap-open-connection, nnimap-close-server): Use it.
16628
16629         * gnus-encrypt.el: Remove file in favor of encrypt.el.
16630
16631 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16632
16633         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
16634         running the major-mode function.
16635
16636 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16637
16638         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
16639         dummy marks in the right way.
16640
16641 2004-10-18  David Edmondson  <dme@dme.org>
16642
16643         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
16644         excessively.
16645
16646 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
16647
16648         * gnus-util.el (gnus-split-references): Accept a nil references
16649         string and go on blissfully.
16650
16651         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
16652         cases where the references string is non-nil but has no references.
16653
16654         * encrypt.el: Add autoload tags.
16655
16656         * spam.el (spam-resolve-registrations-routine): Remove article
16657         from unregistration list too.  Reported by David Hanak
16658         <dhanak@isis.vanderbilt.edu>
16659
16660 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
16661
16662         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
16663         nil.  Change custom type.
16664
16665 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
16666
16667         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
16668
16669         * gnus-sum.el (gnus-summary-move-article): Use it.
16670
16671 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
16672
16673         * encrypt.el: Add autoload cookies.
16674
16675         * spam.el (spam-backend-article-list-property)
16676         (spam-backend-get-article-todo-list)
16677         (spam-backend-put-article-todo-list)
16678         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
16679         Resolve registrations separately.
16680         (spam-register-routine): Format comments.
16681         (spam-unregister-routine, spam-register-routine): Always call with
16682         specific-articles, no default list.
16683         (spam-summary-prepare-exit): Use the spam-classifications function.
16684
16685         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
16686         gnus-encrypt.el.
16687
16688         * encrypt.el: Copied from gnus-encrypt.el.
16689
16690         * gnus-encrypt.el: Commented that it's obsolete.
16691
16692 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
16693
16694         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
16695         (gnus-score-save): Use it.
16696
16697         * message.el (message-bury): Use `window-dedicated-p'.
16698
16699 2004-10-15  Simon Josefsson  <jas@extundo.com>
16700
16701         * pop3.el (top-level): Don't require nnheader.
16702         (pop3-read-timeout): Add.
16703         (pop3-accept-process-output): Add.
16704         (pop3-read-response, pop3-retr): Use it.
16705
16706 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
16707
16708         * spam.el (spam-register-routine): Move comment.
16709         (spam-verify-bogofilter): Use 'unknown for the initial
16710         spam-bogofilter-valid state, not 'never.
16711
16712         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
16713         for netrc-machine.
16714
16715         * nnimap.el (nnimap-open-connection):
16716         Use netrc-machine-user-or-password.
16717
16718 2004-10-17  Richard M. Stallman  <rms@gnu.org>
16719
16720         * gnus-registry.el (gnus-registry-unload-hook):
16721         Set as a variable with add-hook.
16722
16723         * nnspool.el (nnspool-spool-directory): Use news-directory instead
16724         of news-path.
16725
16726         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
16727
16728         * spam.el: Delete duplicate `provide'.
16729         (spam-unload-hook): Set as a variable with add-hook.
16730
16731 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
16732
16733         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
16734         in the doc string.
16735
16736         * message.el (message-ignored-news-headers)
16737         (message-ignored-supersedes-headers)
16738         (message-ignored-resent-headers)
16739         (message-forward-ignored-headers): Improve custom type.
16740
16741 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16742
16743         * message.el (message-tokenize-header): Fix 2004-09-06 change
16744         which used point-min in the wrong place.
16745
16746 2004-10-12  Simon Josefsson  <jas@extundo.com>
16747
16748         * tls.el (tls-certtool-program): New variable.
16749         (tls-certificate-information): New function, based on
16750         ssl-certificate-information.
16751
16752 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16753
16754         * compface.el: Move the version of ELisp-based uncompface program
16755         to the contrib directory because of the copyright problem.
16756
16757 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
16758
16759         * message.el (message-kill-buffer): Raise the current frame.
16760
16761 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
16762
16763         * gnus-sum.el: Mention that multibyte characters don't work as marks.
16764
16765         * gnus.el (message-y-or-n-p): Autoload.
16766
16767         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
16768         (pop3-password-required, pop3-authentication-scheme)
16769         (pop3-leave-mail-on-server): Make customizable.
16770         (pop3): New custom group.
16771         (pop3-retr): Remove `sleep-for' statements.
16772         Suggested by Dave Love <fx@gnu.org>.
16773
16774         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
16775         Windows/DOS.
16776
16777         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
16778         (imap-parse-body): Fix incorrect use of `assert'.
16779         Suggested by Dave Love <fx@gnu.org>.
16780
16781         * mml.el (mml-minibuffer-read-disposition): Require match.
16782         Suggested by Dave Love <fx@gnu.org>.
16783
16784 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
16785
16786         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
16787         doc string.
16788
16789 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
16790
16791         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
16792
16793 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
16794
16795         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
16796         instead of calling `mm-insert-inline', to decode text/* parts
16797         before displaying them.
16798
16799 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16800
16801         * mm-uu.el (mm-uu-text-plain-type): New variable.
16802         (mm-uu-pgp-signed-extract-1): Use it.
16803         (mm-uu-pgp-encrypted-extract-1): Use it.
16804         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
16805         bind mm-uu-text-plain-type with that value.
16806         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
16807         mm-uu-dissect.
16808
16809 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16810
16811         * gnus-group.el (gnus-update-group-mark-positions):
16812         * gnus-sum.el (gnus-update-summary-mark-positions):
16813         * message.el (message-check-news-body-syntax):
16814         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
16815         of string-as-multibyte.
16816
16817 2004-10-05  Juri Linkov  <juri@jurta.org>
16818
16819         * gnus-group.el (gnus-update-group-mark-positions):
16820         * gnus-sum.el (gnus-update-summary-mark-positions):
16821         * message.el (message-check-news-body-syntax):
16822         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
16823         8-bit unibyte values to a multibyte string for search functions.
16824
16825 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16826
16827         * mm-uu.el (mm-uu-dissect): Allow optional arg.
16828         (mm-uu-dissect-text-parts): New function.
16829
16830         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
16831         dissect text parts.
16832
16833         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
16834         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
16835
16836         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
16837
16838         * gnus-topic.el (gnus-topic-hierarchical-parameters):
16839         Use gnus-current-topics instead of gnus-current-topic.
16840
16841 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
16842
16843         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
16844
16845 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
16846
16847         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
16848         where approriate.
16849
16850         * nnml.el (nnml-generate-active-info): do.
16851
16852         * nndiary.el (nndiary-generate-active-info): do.
16853
16854         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
16855         (gnus-topic-move): do.
16856
16857         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
16858         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
16859
16860         * gnus-srvr.el (gnus-server-prepare)
16861         (gnus-server-open-all-servers): do.
16862
16863         * gnus-msg.el (gnus-summary-cancel-article)
16864         (gnus-summary-resend-message)
16865         (gnus-summary-mail-crosspost-complaint): do.
16866
16867         * gnus-move.el (gnus-change-server): do.
16868
16869         * gnus-group.el (gnus-group-unmark-all-groups)
16870         (gnus-group-set-current-level): do.
16871
16872 2004-10-04  Simon Josefsson  <jas@extundo.com>
16873
16874         * message.el (message-generate-hashcash): Doc fix.
16875
16876 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
16877
16878         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
16879         avoid infinite recursion via gnus-get-function.
16880
16881 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
16882
16883         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
16884
16885         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
16886
16887         * nnmail.el (nnmail-split-history): do.
16888
16889         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
16890         (nnml-request-delete-group): do.
16891
16892         * nnslashdot.el (nnslashdot-read-groups): do.
16893
16894         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
16895         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
16896
16897         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
16898         (nnspool-sift-nov-with-sed): Use last.
16899         (nnspool-retrieve-headers-with-nov): Use mapc.
16900         (nnspool-request-newgroups): Use dolist.
16901         (nnspool-request-group): Use last.
16902
16903         * nntp.el (nntp-read-server-type): Use dolist.
16904
16905         * nnvirtual.el (nnvirtual-create-mapping)
16906         (nnvirtual-update-read-and-marked): Use dolist.
16907         (nnvirtual-convert-headers): Simplify.
16908
16909 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
16910
16911         * gnus-agent.el (gnus-agent-synchronize-group-flags):
16912         Add support for sync'ing tick marks.
16913
16914 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16915
16916         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
16917         there's no visible header.
16918
16919 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
16920
16921         * gnus-agent.el (gnus-agent-synchronize-group-flags):
16922         When necessary, pass full group name to gnus-request-set-marks.
16923
16924 2004-10-01  Simon Josefsson  <jas@extundo.com>
16925
16926         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
16927         acroread.
16928
16929 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16930
16931         * spam-report.el (spam-report-gmane): Fix interactive.
16932
16933         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
16934
16935         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
16936         when writing file.
16937         (gnus-agent-synchronize-flags): Don't default to being
16938         interactive.
16939
16940 2004-09-30  Simon Josefsson  <jas@extundo.com>
16941
16942         * message.el (message-generate-hashcash): Add.
16943         (message-send-mail): Use it, call mail-add-payment.
16944
16945 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
16946
16947         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
16948
16949 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
16950
16951         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
16952         gnus-requst-update-info with explicit code to sync the in-memory
16953         info read flags with the marks being sync'd to the backend.
16954
16955         *gnus-util.el (gnus-pp): Add optional stream to match pp API.
16956
16957 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16958
16959         * spam.el (spam-verify-bogofilter): Add new function.
16960         (spam-check-bogofilter)
16961         (spam-bogofilter-register-with-bogofilter): Use it.
16962         (spam-verify-bogofilter): Add small fixes.
16963
16964 2004-09-28  Simon Josefsson  <jas@extundo.com>
16965
16966         * hashcash.el (hashcash-generate-payment): Revert.
16967
16968 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
16969
16970         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
16971         Use gnus-extract-references instead of gnus-split-references.
16972
16973         * gnus-util.el (gnus-extract-references): Add new function, analogous
16974         to gnus-split-references but extracts only the message-ID without
16975         anything extra.
16976
16977         * hashcash.el (hashcash-generate-payment)
16978         (hashcash-check-payment): Do the right thing if hashcash-path is
16979         nil (because the hashcash program could not be found).
16980
16981         * spam.el (spam-use-hashcash): Remove comment.
16982
16983 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
16984
16985         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
16986         (gnus-cache-enter-article, gnus-cache-remove-article)
16987         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
16988
16989         * gnus-async.el (gnus-async-prefetch-remove-group): do.
16990
16991         * gnus-art.el (article-hide-boring-headers)
16992         (article-translate-strings, article-display-face)
16993         (gnus-article-mime-match-handle-first)
16994         (gnus-article-highlight-headers)
16995         (gnus-article-add-buttons-to-head): do.
16996
16997 2004-09-27  Simon Josefsson  <jas@extundo.com>
16998
16999         * hashcash.el: New version, from
17000         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
17001         ../contrib/.
17002
17003 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17004
17005         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
17006
17007 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
17008
17009         * gnus-dup.el (gnus-dup-open): Use mapc.
17010         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
17011
17012         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
17013         Reported by Stefan Wiens <s.wi@gmx.net>.
17014
17015         * gnus.el (gnus-shutdown): Use dolist.
17016
17017         * gnus-undo.el (gnus-undo): Use mapc.
17018
17019         * nnrss.el (nnrss-generate-active): do.
17020
17021         * message.el (message-cite-original-without-signature)
17022         (message-cite-original): Use mapc.
17023         (message-do-actions, message-make-forward-subject): Use dolist.
17024
17025 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
17026
17027         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
17028         deletion to remove entire duplicate line.  Fixes merged article
17029         number bug.
17030
17031 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
17032
17033         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
17034         servers that are offline.  Avoids having gnus-agent-toggle-plugged
17035         first ask if you want to open a server and then, even when you
17036         responded with no, asking if you want to synchronize the server's
17037         flags.
17038         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
17039         multi-line expressions.
17040         (gnus-agent-synchronize-group-flags): New internal function.
17041         Updates marks in memory (in the info structure) AND in the
17042         backend.
17043
17044         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
17045
17046         * nnagent.el (nnagent-request-set-mark):
17047         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
17048         method, to ensure that synchronization updates marks in the
17049         backend and in the info (in memory) structure.
17050
17051 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17052
17053         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
17054         convention fully; don't miss the root article of a thread; make
17055         the X-Draft-From header with correct article numbers.
17056
17057 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
17058
17059         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
17060         unless plugged.  Disable the agent so that an open failure causes
17061         an error.
17062
17063         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
17064         Revert 2004-09-21 change.  The backend must be opened while
17065         synchronizing flags even when the backend stores the flags
17066         locally.
17067
17068 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
17069
17070         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
17071         in `header' match.  Reported by Svend Tollak Munkejord.
17072
17073         * message.el (message-cite-original): Fix use of
17074         `message-cite-articles-with-x-no-archive'.
17075
17076 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17077
17078         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
17079         (gnus-window-to-buffer): Ditto.
17080
17081         * mml.el (mml-preview-buffer): New variable.
17082         (mml-preview): Manage window layout with gnus-buffer-configuration.
17083
17084         * gnus-msg.el (gnus-setup-message): Put article numbers into the
17085         X-Draft-From header even if those articles aren't quoted.
17086
17087 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
17088
17089         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
17090         (gnus-request-set-mark, gnus-request-update-mark): Use new
17091         g-s-t-u-l-m to decide to use backend even when unplugged.
17092
17093 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
17094
17095         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
17096         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
17097
17098 2004-09-20  Simon Josefsson  <jas@extundo.com>
17099
17100         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
17101         "utf-16-le".
17102
17103 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17104
17105         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
17106
17107 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
17108
17109         * uudecode.el (uudecode-use-external): Add :version.
17110
17111         * smime.el (smime-CA-file, smime-encrypt-cipher)
17112         (smime-dns-server): Add :version.
17113
17114         * smiley.el (gnus-smiley-file-types): Add :version.
17115
17116         * sha1.el (sha1-use-external): Add :version.
17117
17118         * pgg-def.el (pgg-query-keyserver): Add :version.
17119
17120         * nnmail.el (nnmail-fancy-expiry-targets)
17121         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
17122         Add :version.
17123
17124         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
17125         (nnimap-retrieve-groups-asynchronous): Add :version.
17126         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
17127
17128         * mml.el (mml-content-disposition-parameters)
17129         (mml-insert-mime-headers-always): Add :version.
17130
17131         * mm-util.el (mm-coding-system-priorities): Add :version.
17132
17133         * mm-decode.el (mm-inline-text-html-with-images)
17134         (mm-keep-viewer-alive-types, mm-external-terminal-program)
17135         (mm-verify-option): Add :version.
17136         (mm-text-html-renderer): Change :version.
17137
17138         * message.el (message-fcc-externalize-attachments)
17139         (message-required-headers, message-draft-headers)
17140         (message-subject-trailing-was-query)
17141         (message-subject-trailing-was-ask-regexp)
17142         (message-subject-trailing-was-regexp, message-mark-insert-begin)
17143         (message-mark-insert-end, message-archive-header)
17144         (message-archive-note, message-cross-post-default)
17145         (message-cross-post-note, message-followup-to-note)
17146         (message-cross-post-note-function, message-use-mail-followup-to)
17147         (message-subscribed-address-functions)
17148         (message-subscribed-address-file, message-subscribed-addresses)
17149         (message-subscribed-regexps, message-allow-no-recipients)
17150         (message-yank-cited-prefix, message-signature-insert-empty-line)
17151         (message-hidden-headers, message-hierarchical-addresses)
17152         (message-mail-user-agent, message-use-idna)
17153         (message-valid-fqdn-regexp)
17154         (message-strip-special-text-properties, message-header-synonyms)
17155         (message-beginning-of-line, message-tab-body-function): Add :version.
17156         (message-insert-canlock, message-wide-reply-confirm-recipients):
17157         Change :version.
17158
17159         * mail-source.el (mail-source-ignore-errors): Add :group, :type
17160         and :version.
17161         (mail-source-delete-old-incoming-confirm)
17162         (mail-source-movemail-program): Add :version.
17163
17164         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
17165         (gnus-agent-cache, gnus-agent): Change :version.
17166
17167         * gnus-util.el (gnus-use-byte-compile): Change :version.
17168
17169         * gnus-sum.el (gnus-summary-make-false-root-always)
17170         (gnus-summary-default-high-score)
17171         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
17172         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
17173         (gnus-read-all-available-headers, gnus-article-emulate-mime)
17174         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
17175         (gnus-sum-thread-tree-single-indent)
17176         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
17177         (gnus-sum-thread-tree-leaf-with-other)
17178         (gnus-sum-thread-tree-single-leaf): Add :version.
17179         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
17180         (gnus-article-loose-mime): Change :version.
17181
17182         * gnus-start.el (gnus-backup-startup-file)
17183         (gnus-save-startup-file-via-temp-buffer): Add :version.
17184
17185         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
17186         (gnus-server-offline-face): Add :version.
17187
17188         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
17189
17190         * gnus-msg.el (gnus-gcc-externalize-attachments)
17191         (gnus-debug-files, gnus-debug-exclude-variables)
17192         (gnus-discouraged-post-methods): Change :version.
17193         (gnus-confirm-mail-reply-to-news)
17194         (gnus-confirm-treat-mail-like-news): Add :version.
17195
17196         * gnus-int.el (gnus-server-unopen-status): Add :version.
17197
17198         * gnus-group.el (gnus-group-jump-to-group-prompt)
17199         (gnus-large-ephemeral-newsgroup)
17200         (gnus-fetch-old-ephemeral-headers): Add :version.
17201
17202         * gnus-fun.el (gnus-x-face-directory)
17203         (gnus-convert-pbm-to-x-face-command)
17204         (gnus-convert-image-to-x-face-command)
17205         (gnus-convert-image-to-face-command): Add :version.
17206
17207         * gnus-delay.el (gnus-delay-default-hour): Add :version.
17208
17209         * gnus-cite.el (gnus-cite-blank-line-after-header)
17210         (gnus-article-boring-faces): Add :version.
17211
17212         * gnus-art.el (gnus-buttonized-mime-types)
17213         (gnus-inhibit-mime-unbuttonizing)
17214         (gnus-treat-display-face)
17215         (gnus-treat-body-boundary): Change :version.
17216         (gnus-body-boundary-delimiter, gnus-picon-databases)
17217         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
17218         (gnus-treat-date-english, gnus-treat-fold-headers)
17219         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
17220         (gnus-treat-mail-picon, gnus-treat-wash-html)
17221         (gnus-article-encrypt-protocol)
17222         (gnus-use-idna, gnus-article-over-scroll)
17223         (gnus-mime-display-multipart-alternative-as-mixed)
17224         (gnus-mime-display-multipart-related-as-mixed)
17225         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
17226         (gnus-ctan-url, gnus-button-ctan-handler)
17227         (gnus-button-handle-ctan-bogus-regexp)
17228         (gnus-button-ctan-directory-regexp)
17229         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
17230         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
17231         (gnus-button-man-level, gnus-button-emacs-level)
17232         (gnus-button-message-level, gnus-button-browse-level): Add :version.
17233
17234         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
17235         (gnus-agent-go-online): Change :version.
17236         (gnus-agent-expire-unagentized-dirs)
17237         (gnus-agent-auto-agentize-methods): Add :version.
17238
17239         * flow-fill.el (fill-flowed-display-column)
17240         (fill-flowed-encode-column): Add :version.
17241
17242         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
17243         (gnus-outlook-deuglify-unwrap-max)
17244         (gnus-outlook-deuglify-cite-marks)
17245         (gnus-outlook-deuglify-unwrap-stop-chars)
17246         (gnus-outlook-deuglify-no-wrap-chars)
17247         (gnus-outlook-deuglify-attrib-cut-regexp)
17248         (gnus-outlook-deuglify-attrib-verb-regexp)
17249         (gnus-outlook-deuglify-attrib-end-regexp)
17250         (gnus-outlook-display-hook): Add :version.
17251
17252         * binhex.el (binhex-use-external): Add :version.
17253
17254 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
17255
17256         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
17257         and `invisible'.
17258
17259 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
17260
17261         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
17262         in gnus-registry-trim.
17263
17264 2004-09-13  Simon Josefsson  <jas@extundo.com>
17265
17266         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
17267
17268         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
17269
17270         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
17271         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
17272         <yamaoka@jpl.org>.
17273         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
17274         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
17275         <yamaoka@jpl.org>.
17276
17277         * sieve.el (sieve-manage-mode): Ditto.
17278
17279 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
17280
17281         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
17282
17283 2004-09-11  Simon Josefsson  <jas@extundo.com>
17284
17285         * dns-mode.el: Add.
17286
17287         * mm-view.el (mm-display-dns-inline): Add.
17288
17289         * mm-decode.el (mm-inline-media-tests): Add text/dns.
17290         (mm-automatic-display): Ditto.
17291
17292         * mailcap.el (mailcap-mime-data): Add text/dns.
17293         (mailcap-mime-extensions): Map .soa to text/dns.
17294
17295 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
17296
17297         * gnus-art.el (article-decode-mime-words, article-babel)
17298         (gnus-article-highlight-signature, gnus-article-add-buttons)
17299         (gnus-signature-toggle): Remove unnecessary bindings of
17300         `inhibit-read-only' inherited from v5.10 merge.
17301
17302 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
17303
17304         * nntp.el (nntp): New customization group.
17305         (nntp-authinfo-file): Add customization group.
17306
17307         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
17308
17309         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
17310
17311         * gnus.el (to-address, to-list, subscribed)
17312         (large-newsgroup-initial): Ditto.
17313
17314         * flow-fill.el (fill-flowed-display-column)
17315         (fill-flowed-encode-column): Ditto.
17316
17317 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
17318
17319         * message.el (message-tokenize-header, message-send-mail-with-qmail):
17320         Use point-min rather than 1.
17321         (message-send-mail): Use buffer-size rather than point-max.
17322
17323         * gnus-sum.el (gnus-summary-search-article-forward):
17324         Signal a specific `search-failed' rather than a generic `error'.
17325
17326         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
17327         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
17328         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
17329
17330 2004-09-10  Simon Josefsson  <jas@extundo.com>
17331
17332         * nndb.el (require): Remove tcp and duplicate cl.
17333
17334 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
17335
17336         * gnus-agent.el (directory-files-and-attributes): Move forward.
17337
17338 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
17339
17340         * gnus-agent.el (directory-files-and-attributes):
17341         Optionally defined to support XEmacs.
17342
17343 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
17344
17345         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
17346         to avoid run-time CL dependencies.
17347         (gnus-agent-unfetch-articles): New function.
17348         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
17349         article numbers even when local .overview file is missing.
17350         (gnus-agent-read-article-number): New function.  Only accepts
17351         27-bit article numbers.
17352         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
17353         Use gnus-agent-read-article-number.
17354         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
17355         from backend while recognizing that article numbers in .overview
17356         must be valid.
17357         (gnus-agent-update-files-total-fetched-for):
17358         Use directory-files-and-attributes to improve performance.
17359         * gnus-int.el (gnus-request-move-article):
17360         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
17361         improve performance.
17362
17363         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
17364         some users confused by references to .newsrc when they only have a
17365         .newsrc.eld file.
17366         (gnus-convert-mark-converter-prompt)
17367         (gnus-convert-converter-needs-prompt): Fix use of property list.
17368         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
17369         New function.  Used internally to only display 'gnus converting
17370         files' message when actually necessary.
17371
17372         * gnus-sum.el (): Remove (require 'gnus-agent) as required
17373         methods now autoloaded.
17374
17375 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
17376
17377         * gnus-sum.el (gnus-summary-insert-subject): Remove list
17378         identifiers.
17379
17380 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
17381
17382         * gnus-picon.el: Fix indentation and closing parenthesis.
17383
17384 2004-09-01  Simon Josefsson  <jas@extundo.com>
17385
17386         * message.el (message-canlock-generate): Require sha1, not
17387         sha1-el.  (Can we get rid of this require altogether?  It is ugly
17388         to require within a function.  Sadly, if sha1.el isn't loaded, the
17389         let binding in m-c-g will hide the defcustom definition, which is
17390         bad.)
17391
17392         * canlock.el: Require sha1, not sha1-el.
17393
17394         * message.el: Don't autoload sha1 (there is a autoload cookie in
17395         sha1.el).
17396
17397         * sha1-el.el: Rename to sha1.el.
17398
17399 2004-08-30  Juanma Barranquero  <lektu@terra.es>
17400
17401         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
17402
17403 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
17404
17405         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
17406
17407 2004-08-30  Kim F. Storm  <storm@cua.dk>
17408
17409         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
17410
17411         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
17412         Add :group 'nnimap.
17413
17414 2004-08-30  Andreas Schwab  <schwab@suse.de>
17415
17416         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
17417         ?* and ?\;.
17418
17419         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
17420         and ?\' to symbol instead of whitespace.
17421
17422 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
17423
17424         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
17425
17426         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
17427         instead of re-search-forward.
17428
17429         * gnus-uu.el (gnus-uu-save-article): Ditto.
17430         (gnus-uu-post-encode-uuencode): Ditto.
17431
17432         * html2text.el (html2text-clean-list-items): Ditto.
17433         (html2text-clean-dtdd): Ditto.
17434         (html2text-format-tags): Ditto.
17435
17436         * message.el (message-send-mail-with-sendmail): Fix regexp.
17437         (message-fill-field-general): Use search-forward instead of
17438         re-search-forward.
17439         (unbold-region): Ditto.
17440
17441         * nnrss.el (nnrss-request-article): Ditto.
17442
17443         * nnslashdot.el (nnslashdot-request-article): Ditto.
17444
17445         * nnweb.el (nnweb-gmane-wash-article): Ditto.
17446
17447         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
17448         "Unrecognized menu descriptor" error in XEmacs.
17449
17450 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
17451
17452         * gnus-sum.el (gnus-read-header): Don't remove a header for the
17453         parent article of a sparse article in the thread hashtb.
17454
17455 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
17456
17457         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
17458         (nnmail-expand-newtext): Lowercase expanded entries if
17459         nnmail-split-lowercase-expanded is non-nil.
17460
17461 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17462
17463         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
17464
17465         * gnus-group.el (gnus-group-line-format-alist): Convert the value
17466         of gnus-tmp-news-method into string under XEmacs.  It will be
17467         passed to gnus-correct-length which takes only a string argument.
17468
17469 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17470
17471         * gnus-util.el (gnus-bind-print-variables): New macro.
17472         (gnus-prin1): Use it.
17473         (gnus-prin1-to-string): Use it.
17474         (gnus-pp): New function.
17475         (gnus-pp-to-string): New function.
17476
17477         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
17478         Replace pp-to-string with gnus-pp-to-string.
17479         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
17480         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
17481         * gnus-msg.el (gnus-debug): Ditto.
17482         * gnus-score.el (gnus-score-save): Ditto.
17483         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
17484         gnus-pp-to-string.
17485         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
17486         with gnus-pp.
17487         * score-mode.el (gnus-score-pretty-print): Ditto.
17488         * webmail.el (webmail-debug): Ditto.
17489
17490 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17491
17492         * gnus-art.el (article-display-face, article-display-x-face):
17493         Use buffer-read-only.
17494
17495 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17496
17497         * gnus-art.el (article-hide-list-identifiers):
17498         Bind inhibit-read-only as t.
17499
17500 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
17501
17502         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
17503
17504 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
17505
17506         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
17507         (gnus-narrow-to-page): Don't assume point-min == 1.
17508         (gnus-article-edit-mode): Derive from message-mode.
17509
17510         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
17511         point-min == 1.
17512
17513         * imap.el (imap-parse-address-list, imap-parse-body-ext):
17514         Disable incorrect use of `assert'.
17515
17516         * message.el (message-mode): Set comment-start-skip.
17517
17518
17519 2004-08-22  Sam Steingold  <sds@gnu.org>
17520
17521         * pop3.el (pop3-leave-mail-on-server): New user variable.
17522         (pop3-movemail): Delete mail only when it is nil.
17523
17524 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
17525
17526         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
17527
17528         * mml.el (mml-preview): Use `pop-to-buffer'.
17529
17530         * message.el (message-goto-mail-followup-to): Insert after "To".
17531         (message-carefully-insert-headers): Add comment.
17532
17533         * gnus.el: Remove unused variable `gnus-article-check-size'.
17534
17535         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
17536
17537         * gnus-art.el (gnus-button-alist):
17538         Improve `gnus-button-handle-library' entry.
17539
17540 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
17541
17542         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
17543         Use downcase, since XEmacs capitalizes error messages differently.
17544
17545 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
17546
17547         * nntp.el: Add (require 'gnus) due to reference to
17548         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
17549
17550 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
17551
17552         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
17553         Bind `mm-fill-flowed'.
17554
17555         * mm-decode.el (mm-dissect-singlepart): Check it.
17556
17557 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
17558
17559         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
17560         'imap' for netrc parsing.
17561
17562 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
17563
17564         * mailcap.el (mailcap-mime-data): Mark as risky.
17565
17566 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17567
17568         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
17569         may be included in the encoded word.
17570         (rfc2047-encode): Don't append a space if the encoded word
17571         includes close parenthesis.
17572
17573 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17574
17575         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
17576         of text within parentheses.
17577
17578 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
17579
17580         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
17581         (gnus-encrypt-write-file-contents): Make the password key the file
17582         name PLUS the cipher, not just the cipher.  Also remove failed
17583         passwords from the cache.
17584
17585 2004-08-06  Simon Josefsson  <jas@extundo.com>
17586
17587         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
17588         Doc fix.
17589
17590 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
17591
17592         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
17593         LWSP.
17594
17595 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
17596
17597         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
17598         Try to append in-reply-to: data to the references: header.
17599
17600         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
17601         (netrc-parse): Use gnus-encrypt.el functions.
17602
17603         * gnus-encrypt.el: Add new file for encryption support; currently
17604         does only a few GPG ciphers and an internal XOR cipher.
17605
17606         * password.el: Add comments on using password-read-and-add.
17607         (password-read-and-add): Add function to read and add the
17608         password to the cache at once.
17609
17610 2004-07-28  Simon Josefsson  <jas@extundo.com>
17611
17612         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
17613         parameter (but don't use it, for now).
17614
17615         * imap.el (imap-ssl-open): Use imap-process-connection-type,
17616         instead of hard coding to nil.
17617
17618 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17619
17620         * mm-view.el (mm-inline-image-emacs): Open lines under an image
17621         as mm-inline-image-xemacs does.
17622
17623 2004-07-26  Simon Josefsson  <jas@extundo.com>
17624
17625         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
17626         Revert part of 2004-07-17 change below.
17627
17628 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17629
17630         * rfc2047.el (rfc2047-encode-region): Don't infloop.
17631         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
17632
17633 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17634
17635         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
17636         quotes that actually start with ">" at the beginning of the
17637         lines.
17638
17639 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17640
17641         * rfc2047.el (rfc2047-encode-region): Fix last change.
17642         (rfc2047-encode-parameter): Remove useless concat.
17643
17644 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17645
17646         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
17647         encode special characters; fix some kind of misconfigured headers;
17648         signal a real error if debug-on-quit or debug-on-error is non-nil.
17649         (rfc2047-encode-max-chars): New variable.
17650         (rfc2047-encode-1): Use it.
17651         (rfc2047-encode-parameter): New function.
17652
17653         * mml.el (mml-insert-parameter): Remove an excessive space.
17654
17655 2004-07-17  Simon Josefsson  <jas@extundo.com>
17656
17657         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
17658         Kai Grossjohann <kai@emptydomain.de>.
17659         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
17660         (gnus-group-make-menu-bar): Ditto.
17661
17662         * gnus-util.el (gnus-group-server): Add.
17663
17664 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
17665
17666         * message.el (message-clone-locals): Clone sendmail and smtp
17667         variables.
17668
17669 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17670
17671         * rfc2047.el (rfc2047-encode-region): Fix last change.
17672
17673 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17674
17675         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
17676         characters as non-special.
17677
17678 2004-07-09  Simon Josefsson  <jas@extundo.com>
17679
17680         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
17681         Users will lose all flag changes made while unplugged with
17682         e.g. nntp unless flag synchronization happens, thus `nil' is not a
17683         good default.  See numerous reports on ding mailing list.
17684
17685 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17686
17687         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
17688         add generate-head-function and generate-article-function to the
17689         rfc822-forward entry.
17690         (nndoc-rfc822-forward-generate-article): New function.
17691         (nndoc-rfc822-forward-generate-head): New function.
17692
17693         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
17694
17695 2004-07-06  Dan Christensen  <jdc@uwo.ca>
17696
17697         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
17698         respect display group parameter and gnus-summary-expunge-below.
17699         (gnus-articles-to-read): Remove unused reference to display group
17700         parameter.
17701
17702 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17703
17704         * nnheader.el (nnheader-uniquify-message-id): New experimental
17705         variable.
17706         (nnheader-nov-read-message-id): Use it.
17707
17708         * spam-report.el (spam-report-gmane): Add interactive.
17709
17710 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
17711
17712         * mm-encode.el (mm-content-transfer-encoding-defaults):
17713         Use qp-or-base64 for the application/* types.
17714
17715 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
17716
17717         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
17718
17719 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
17720
17721         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
17722         trim value.
17723
17724 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
17725
17726         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
17727         New macro and function.
17728         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
17729
17730 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17731
17732         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
17733         after-load-alist.
17734
17735 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17736
17737         * gnus-group.el (gnus-group-get-new-news-this-group):
17738         Don't update info that isn't there.
17739
17740 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
17741
17742         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
17743         entry.
17744
17745 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17746
17747         * mm-view.el (mm-inline-render-with-function): Use multibyte
17748         buffer; decode html source by charset.
17749
17750         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
17751
17752         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
17753         Mule-UCS is loaded under XEmacs.
17754         (mm-mime-mule-charset-alist): Avoid duplicated entries.
17755
17756 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
17757
17758         * nnheader.el (nnheader-max-head-length): Increase to 8192.
17759
17760 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17761
17762         * mm-util.el (mm-coding-system-p): Return a coding-system.
17763         (mm-mime-mule-charset-alist): Use shift_jis instead of
17764         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
17765         entries for the mime charsets iso-2022-jp-3 and shift_jis.
17766         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
17767         instead of japanese-shift-jis and iso-latin-1 respectively in
17768         order to share the default value with both Emacs and XEmacs-mule.
17769         (mm-mule-charset-to-mime-charset):
17770         Make mm-coding-system-priorities effective.
17771         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
17772         while predicating of candidates upon the priorities.
17773
17774 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
17775
17776         * gnus-sum.el (gnus-summary-make-menu-bar):
17777         Add gnus-uu-invert-processable.
17778
17779         * gnus.el: Autoload gnus-uu-invert-processable.
17780
17781 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17782
17783         * mm-util.el (mm-with-multibyte-buffer): New macro.
17784
17785         * rfc2047.el (rfc2047-encode-string): Use it.
17786         (rfc2047-encode-region): Move point to the end of the region after
17787         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
17788
17789 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17790
17791         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
17792         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
17793
17794 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17795
17796         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
17797         (gnus-cite-parse): Ignore quoted envelope From_.
17798         Suggested by Karl Chen <quarl@nospam.quarl.org>.
17799
17800 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
17801
17802         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
17803         invalid addresses.
17804
17805 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
17806
17807         * spam.el: Change section markers, revise TODO list.
17808         (spam-backends): Make new master list of all installed backends.
17809         (spam-summary-exit-behavior): Add new variable to determine how
17810         messages moves are done at summary exit.
17811         (spam-move-spam-nonspam-groups-only)
17812         (spam-process-ham-in-nonham-groups)
17813         (spam-process-ham-in-spam-groups): Remove variables, the
17814         spam-summary-exit-behavior variable should be used to manage this
17815         behavior.
17816         (spam-old-ham-articles, spam-old-spam-articles): Remove.
17817         (spam-old-articles): Add variable, replacing spam-old-ham-articles
17818         and spam-old-spam-articles.
17819         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
17820         Add empty variables, placeholders for the backends they represent.
17821         (spam-set-difference): Move, unchanged.
17822         (spam-list-of-processors): Declare OBSOLETE, not used anymore
17823         unless the user has a processor variable.
17824         (spam-classifications, spam-classification-valid-p)
17825         (spam-backend-properties, spam-backend-property-valid-p)
17826         (spam-backend-function-type-valid-p)
17827         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
17828         (spam-report-articles-gmane, spam-report-articles-resend):
17829         Remove functions, they are not needed.
17830         (spam-install-backend-super, spam-backend-list)
17831         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
17832         (spam-backend-function, spam-backend-ham-registration-function)
17833         (spam-backend-spam-registration-function)
17834         (spam-backend-ham-unregistration-function)
17835         (spam-backend-spam-unregistration-function)
17836         (spam-backend-statistical-p, spam-backend-mover-p)
17837         (spam-install-backend-alias, spam-install-checkonly-backend)
17838         (spam-install-mover-backend, spam-install-nocheck-backend)
17839         (spam-install-backend, spam-install-statistical-backend)
17840         (spam-install-statistical-checkonly-backend): Add backend installation
17841         support.
17842         (spam-summary-prepare-exit): Rewrite to use the new backend code.
17843         (spam-group-processor-p): Use the new backend code and respect the
17844         summary exit behavior.
17845         (spam-mark-spam-as-expired-and-move-routine): Remove.
17846         (spam-summary-prepare): Change to use the new spam-old-articles
17847         variable.
17848         (spam-copy-or-move-routine, spam-copy-spam-routine)
17849         (spam-move-spam-routine, spam-copy-ham-routine)
17850         (spam-move-ham-routine): Add code to copy/move ham or spam.
17851         (spam-fetch-field-fast): Improve doc and code, plus allow the
17852         'number request.
17853         (spam-list-of-checks, spam-list-of-statistical-checks):
17854         Remove variables.
17855         (spam-split, spam-find-spam): Use the new backend code.
17856         (spam-registration-functions): Remove variable.
17857         (spam-unregister-routine): Add convenience wrapper.
17858         (spam-log-undo-registration, spam-register-routine)
17859         (spam-log-processing-to-registry)
17860         (spam-log-unregistration-needed-p): Rename "check" to "backend"
17861         where possible.
17862         (spam-check-gmane-xref, spam-check-regex-headers)
17863         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
17864         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
17865         (spam-check-bogofilter-headers, spam-check-spamoracle)
17866         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
17867         (spam-check-crm114-headers): Use the spam-split-group that
17868         spam-split prepares, no need to determine it every time.
17869
17870         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
17871         to the nnheader-parse-naked-head call.
17872
17873         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
17874
17875         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
17876         the nnheader-nov-read-message-id call.
17877
17878 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
17879
17880         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
17881         gnus-activate-group twice.  Suggested by Markus Peter
17882         <warp@spin.de>.
17883
17884 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
17885
17886         * gnus-art.el (gnus-article-time-format): Exchange the order of
17887         day and month in the default value; fix customization type.
17888         (article-date-ut): Use add-text-properties.
17889         (article-make-date-line): Use message-make-date instead of
17890         current-time-string.
17891
17892         * message.el (message-fetch-field): Don't use set-text-properties.
17893         (message-make-date): Simplify.
17894
17895         * messagexmas.el (message-xmas-make-date): New function.
17896         (message-xmas-redefine): Defalias message-make-date to it.
17897
17898 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17899
17900         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
17901         (rfc2047-encode-region): Treat text within parentheses as special;
17902         show the original text when error has occurred.
17903
17904         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
17905         already-computed method to gnus-activate-group.
17906
17907         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
17908         same select-methods identical Lisp objects.
17909
17910         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
17911         object when modifying the info.
17912
17913 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17914
17915         * gnus-srvr.el (gnus-server-set-info): Remove the server from
17916         gnus-opened-servers since it has never been opened with the new
17917         configuration yet.
17918
17919 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17920
17921         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
17922         arg to nnheader-generate-fake-message-id.
17923
17924 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
17925
17926         * nnheader.el (nnheader-generate-fake-message-id): Accept a
17927         number and build a fake message ID localized to a group and
17928         article number (so it's repeatable from that point on).
17929         (nnheader-fake-message-id-p): Change regex to accomodate new fake
17930         ID format.
17931
17932         * gnus-sum.el (gnus-get-newsgroup-headers):
17933         Call nnheader-generate-fake-message-id with the article number.
17934
17935 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
17936
17937         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
17938         end-of-buffer.
17939
17940 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17941
17942         * message.el (message-ignored-supersedes-headers): Add Approved.
17943
17944 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
17945
17946         * rfc2047.el (rfc2047-encode-message-header): Remove useless
17947         goto-char.
17948         (rfc2047-encode): Fold the line before encoding.
17949
17950 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17951
17952         * rfc2047.el (rfc2047-encode-message-header): Disabled header
17953         folding -- not all headers can be folded, and this should be done
17954         by the message composition mode.  Probably.  I think.
17955
17956 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
17957
17958         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
17959         fast.
17960
17961         * gnus-ems.el (gnus-remove-image): Don't use
17962         message-text-with-property; remove only the image found first.
17963
17964         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
17965         found first.
17966
17967 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
17968
17969         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
17970
17971 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17972
17973         * message.el (message-text-with-property): Make it fast and accept
17974         optional arguments.
17975         (message-strip-forbidden-properties): Use it.
17976         (message-fix-before-sending): Follow the m-t-w-p change.
17977
17978         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
17979
17980 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
17981
17982         * gnus-art.el (article-hide-headers): Don't change the buffer
17983         mistakenly when performing mml-preview even if
17984         gnus-single-article-buffer is nil.
17985
17986 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
17987
17988         * message.el (message-expand-name-databases): New user option.
17989         (message-expand-name): Use it.
17990
17991 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
17992
17993         * spam.el (spam-report-articles-resend)
17994         (spam-report-resend-register-routine): Allow ham reporting.
17995         (spam-report-resend-register-ham-routine): Add wrapper.
17996         (spam-registration-functions): Add ham resending functions.
17997         (spam-list-of-processors): Add ham resend processor.
17998
17999         * gnus.el (ham-resend-to): Add new group parameter.
18000         (spam-process): Add ham resend option.
18001
18002         * spam-report.el (spam-report-resend): Allow reporting ham.
18003         (spam-report-resend-ham): Add wrapper.
18004
18005 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18006
18007         * message.el (message-cite-articles-with-x-no-archive):
18008         New variable.
18009         (message-cite-original): Use it.
18010
18011 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18012
18013         * message.el (message-cite-original): Respect X-No-Archive.
18014
18015 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18016
18017         * gnus-art.el (article-hide-headers): Refer to the values for
18018         gnus-ignored-headers and gnus-visible-headers in the summary
18019         buffer since a user may have set them as group parameters.
18020
18021 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
18022
18023         * assistant.el (assistant-node-name): Add convenience function.
18024         (assistant-render-text, assistant-render-node): Add error handling,
18025         plus handle multiple next nodes.
18026         (assistant-find-next-node): Comment out for now.
18027         (assistant-find-next-nodes): Add function, returns list of next
18028         nodes.
18029
18030 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
18031
18032         * mail-source.el (mail-source-directory): Fix doc-string.
18033
18034 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
18035
18036         * assistant.el (assistant-render-text, assistant-eval): Add :set
18037         widget type, which is different because it takes and returns a
18038         list.  Much hilarity ensues.
18039
18040 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
18041
18042         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
18043
18044         * gnus-group.el (gnus-group-get-new-news-this-group):
18045         Add doc-string.
18046
18047         * gnus-start.el (gnus-activate-group): Add doc-string.
18048
18049 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18050
18051         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
18052
18053 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
18054
18055         * assistant.el (assistant-render-text): Try to add a :set
18056         widget, more to come.
18057
18058         * spam.el (spam-group-spam-contents-p): Handle empty groupname
18059         strings.
18060         (spam-report-articles-resend)
18061         (spam-register-routine): Do registration iff any articles warrant
18062         it.
18063         (spam-summary-prepare-exit): Change log message for nil group
18064         destinations.
18065
18066 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
18067
18068         * spam.el (spam-report-resend-register-routine):
18069         Allow spam-report-resend-to to be a group parameter or a global value.
18070
18071 2004-05-26  Simon Josefsson  <jas@extundo.com>
18072
18073         * starttls.el: Merge with my GNUTLS based starttls.el.
18074         (starttls-gnutls-program, starttls-use-gnutls)
18075         (starttls-extra-arguments, starttls-process-connection-type)
18076         (starttls-connect, starttls-failure, starttls-success):
18077         New variables.
18078         (starttls-program, starttls-extra-args): Doc fix.
18079         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
18080         New functions.
18081         (starttls-negotiate, starttls-open-stream):
18082         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
18083         function if it is set.
18084
18085 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18086
18087         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
18088         structured fields.
18089
18090 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18091
18092         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
18093
18094 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
18095
18096         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
18097         Add variable.
18098         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
18099         assigning the spam-mark to new messages.
18100
18101 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
18102
18103         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
18104
18105 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18106
18107         * dgnushack.el: Autoload customize-set-variable for XEmacs.
18108
18109         * rfc2047.el (rfc2047-encodable-p): Don't move point.
18110         (rfc2047-decode): Treat the ascii coding-system as raw-text by
18111         default.
18112
18113 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
18114
18115         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
18116         correct data.
18117
18118 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
18119
18120         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
18121         (spam-group-processor-p): Fix function.
18122         (spam-group-processor-multiple-p)
18123         (spam-group-spam-processor-report-gmane-p)
18124         (spam-group-spam-processor-report-resend-p)
18125         (spam-group-spam-processor-bogofilter-p)
18126         (spam-group-spam-processor-blacklist-p)
18127         (spam-group-spam-processor-ifile-p)
18128         (spam-group-ham-processor-ifile-p)
18129         (spam-group-spam-processor-spamoracle-p)
18130         (spam-group-spam-processor-crm114-p)
18131         (spam-group-ham-processor-bogofilter-p)
18132         (spam-group-spam-processor-stat-p)
18133         (spam-group-ham-processor-stat-p)
18134         (spam-group-ham-processor-whitelist-p)
18135         (spam-group-ham-processor-BBDB-p)
18136         (spam-group-ham-processor-spamoracle-p)
18137         (spam-group-ham-processor-copy-p): Remove functions with some
18138         prejudice against unneeded code.
18139         (spam-report-articles-resend)
18140         (spam-report-resend-register-routine): Allow the group/topic
18141         spam-resend-to value to override spam-report-resend-to.
18142         (spam-summary-prepare-exit): Invoke spam-group-processor-p
18143         properly now.
18144
18145         * gnus.el (spam-resend-to): Add group/topic parameter.
18146         (spam-process): Move the OBSOLETE processors to the end of the
18147         choices.
18148
18149 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
18150
18151         * spam-report.el (spam-report-resend-to, spam-report-resend):
18152         Start with resend-to set to nil, and then ask the user if necessary.
18153         (spam-report-resend): spam-report-resend takes a list of articles, not
18154         separate article numbers.
18155
18156 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18157
18158         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
18159         addition to emacs-w3m.
18160
18161 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18162
18163         * assistant.el (assistant-authinfo-data): New function.
18164         (assistant-eval): Eval for entire assistant.
18165
18166         * netrc.el (netrc-services-file): New variable.
18167         (netrc-parse-services): New function.
18168         (netrc-find-service-name): New function.
18169         (netrc-find-service-number): New function.
18170         (netrc-port-equal): New function.
18171         (netrc-machine): Use it.
18172
18173         * nnimap.el (nnimap-open-connection): Use netrc.
18174
18175         * gnus-util.el (gnus-netrc-get): Remove aliases.
18176
18177         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
18178
18179         * assistant.el (wid-edit): Fix compilation.
18180
18181         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
18182
18183 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
18184
18185         * gnus-util.el (gnus-set-file-modes): New function.  (small
18186         patch).
18187
18188 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18189
18190         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
18191
18192         * assistant.el (assistant-render-node): Fix up rendering and
18193         read-only text.
18194         (assistant-render-node): Reset.
18195         (assistant-make-read-only): Not sticky.
18196
18197 2004-05-20  Danny Siu  <dsiu@adobe.com>
18198
18199         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
18200         centered even when gnus-auto-center-summary is t.
18201
18202 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18203
18204         * dns.el (dns-get-txt-answer): New function.
18205         (dns-read-txt): Ditto.
18206         (query-dns): Use it.
18207
18208 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
18209
18210         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
18211         active for foreign groups even if the group level is higher than
18212         the specified value.
18213
18214 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18215
18216         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
18217         non-active groups.
18218
18219         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
18220
18221 2004-05-20  Magnus Henoch  <mange@freemail.hu>
18222
18223         * dns.el (dns-read-type): Add support for SVR.  (small patch)
18224
18225 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
18226
18227         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
18228         (spam-crm114-header, spam-crm114-spam-switch)
18229         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
18230         (spam-crm114-positive-spam-header)
18231         (spam-crm114-database-directory, spam-list-of-processors)
18232         (spam-group-spam-processor-crm114-p)
18233         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
18234         (spam-generic-score, spam-list-of-checks)
18235         (spam-list-of-statistical-checks, spam-registration-functions)
18236         (spam-check-crm114-headers, spam-crm114-score)
18237         (spam-check-crm114, spam-crm114-register-with-crm114)
18238         (spam-crm114-register-spam-routine)
18239         (spam-crm114-unregister-spam-routine)
18240         (spam-crm114-register-ham-routine)
18241         (spam-crm114-unregister-ham-routine): Add CRM114 support.
18242         From asjo@koldfront.dk (Adam Sjøgren).
18243
18244         * gnus.el: Add spam-use-crm114.
18245
18246         * spam.el (spam-list-of-processors, spam-registration-functions):
18247         Add spam-use-resend.
18248         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
18249         (spam-report-articles-gmane): Add doc fix.
18250         (spam-report-articles-resend, spam-report-resend-register-routine):
18251         Add wrappers around spam-report-resend-to.
18252
18253         * spam-report.el (spam-report-resend-to, spam-report-resend):
18254         Add support for resending spam.
18255         (spam-report-gmane): Fix line length >80.
18256
18257         * gnus.el (spam-process): Add spam-use-resend.
18258
18259 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18260
18261         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
18262         number of processed spam messages.
18263         (spam-ham-copy-or-move-routine): Return the number of processed
18264         ham messages.
18265         (spam-summary-prepare-exit): Use the above values to decide
18266         whether status messages shouled be displayed.
18267
18268 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18269
18270         * rfc2047.el (rfc2047-encode-function-alist): Rename from
18271         `rfc2047-encoding-function-alist' in order to avoid conflicting
18272         with the old version.
18273         (rfc2047-encode-region): Concatenate words containing non-ASCII
18274         characters in structured fields; don't encode space-delimited
18275         ASCII words even in unstructured fields; don't break words at
18276         char-category boundaries.
18277         (rfc2047-encode-1): New function.
18278         (rfc2047-encode): Use it; encode text so that it occupies the
18279         maximum width within 76-column; work correctly on Q encoding for
18280         iso-2022-* charsets.
18281         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
18282         sure not to break a line just after the header name.
18283         (rfc2047-b-encode-region): Remove.
18284         (rfc2047-b-encode-string): New function.
18285         (rfc2047-q-encode-region): Remove.
18286         (rfc2047-q-encode-string): New function.
18287
18288         * mm-util.el (mm-replace-in-string): New function.
18289
18290 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18291
18292         * gnus-msg.el (gnus-inews-make-draft-meta-information):
18293         Really get it right.
18294         (gnus-inews-make-draft): Really.
18295
18296 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
18297
18298         * nnmh.el (nnmh-request-list-1): Don't check the link count
18299         before descending.  (small patch)
18300
18301 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18302
18303         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
18304         stuff.
18305
18306         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
18307         Match on real group name.
18308
18309         * gnus-art.el (gnus-signature-limit): Doc fix.
18310
18311         * gnus-msg.el (gnus-inews-make-draft): Quote list.
18312
18313         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
18314
18315 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
18316
18317         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
18318         isn't a string.
18319
18320 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18321
18322         * gnus-draft.el (gnus-draft-send):
18323         Bind rfc2047-encode-encoded-words.
18324
18325         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
18326         (rfc2047-encodable-p): Say that =? needs encoding.
18327         (rfc2047-encode-encoded-words): New variable.
18328
18329         * gnus-group.el (gnus-group-select-group): Doc fix.
18330
18331         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
18332
18333         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
18334         to nil.
18335
18336         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
18337
18338         * nnheader.el (nnheader-get-lines-and-char): New function.
18339
18340 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
18341
18342         * gnus-msg.el (gnus-summary-followup-with-original):
18343         Document yanking of region when active.
18344
18345 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18346
18347         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
18348         groups if the group level is higher than the specified value.
18349
18350 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
18351
18352         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
18353         (gnus-group-jump-to-group): Add prefix argument using
18354         `gnus-group-jump-to-group-prompt'.  Query before jumping to
18355         non-active group.
18356
18357         * compface.el (uncompface): Be verbose when changing
18358         `uncompface-use-external'.
18359
18360         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
18361         handle manual section.
18362
18363 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18364
18365         * gnus-art.el (gnus-button-alist): Revert previous change.
18366
18367 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
18368
18369         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
18370
18371 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18372
18373         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
18374         whether backend can accept message.
18375
18376         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
18377
18378 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
18379
18380         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
18381         Avoid creating directory when nntp-marks-is-evil is true.
18382         Reported by Reiner Steib.
18383
18384 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
18385
18386         * gnus-picon.el (gnus-picon-style): New variable.
18387         (gnus-picon-insert-glyph): Add optional `nostring' argument.
18388         (gnus-picon-transform-address): Support `gnus-picon-style'.
18389         From Jesper Harder <harder@ifa.au.dk>.
18390
18391 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18392
18393         * message.el (message-fill-field): Return point.
18394         (message-generate-headers): Go to end of field.
18395
18396         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
18397         stuff for non-living groups.
18398
18399 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
18400
18401         * gnus-art.el (gnus-article-followup-with-original)
18402         (gnus-article-reply-with-original): gnus-mark-active-p ->
18403         gnus-region-active-p.
18404
18405 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
18406
18407         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
18408         only when there is spam or ham to be processed.
18409
18410 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18411
18412         * mail-source.el (mail-source-delete-crash-box): Refactor.
18413         (mail-source-fetch): Use it.
18414         (mail-source-fetch-file): Ditto.
18415         (mail-source-fetch-directory): Run postscript in loop.
18416         (mail-source-fetch-pop): Delete.
18417         (mail-source-fetch-maildir): Ditto.
18418         (mail-source-fetch-imap): Ditto.
18419
18420         * imap.el (imap-authenticators): Comment out sasl.
18421
18422         * message.el (message-skip-to-next-address): New function.
18423         (message-fill-header-address): Refactor.
18424         (message-fill-address): Use it.
18425         (message-delete-address): Use it.
18426         (message-fill-header-general): Refactor.
18427         (message-fill-field-address): Rename.
18428         (message-narrow-to-field): Find the start of the header.
18429         (message-header-format-alist): Don't pre-fill.
18430         (message-fill-header): Remove.
18431         (message-insert-header): New function.
18432         (message-shorten-references): Use it.
18433
18434         * rfc2047.el (rfc2047-field-value): Strip props.
18435
18436         * mail-parse.el (mail-header-make-address): New alias.
18437
18438         * ietf-drums.el (ietf-drums-make-address): New function.
18439
18440         * imap.el: Add compiler directives.
18441
18442         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
18443
18444         * gnus-art.el (article-decode-idna-rhs): Don't use
18445         message-idna-inside-rhs-p.
18446
18447 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18448
18449         * message.el (message-idna-inside-rhs-p): Remove.
18450         (message-idna-to-ascii-rhs-1): Use proper address parsing.
18451
18452         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
18453         false positives.
18454
18455 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
18456
18457         * imap.el (imap-sasl-make-mechanisms): Use sasl.
18458
18459 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18460
18461         * nneething.el (nneething-file-name): Don't create spurious
18462         files.
18463
18464         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
18465         (gnus-inews-do-gcc): Remove sleep.
18466
18467         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
18468         part under point.
18469
18470         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
18471         (gnus-agent-regenerate-group): Using nil messages aren't valid.
18472
18473 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
18474
18475         * spam.el (spam-summary-prepare-exit): Fix (length).
18476
18477 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
18478
18479         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
18480         as expired without moving it" message when there are spam
18481         messages left.
18482
18483 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
18484
18485         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
18486         header is not nil.
18487
18488 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
18489
18490         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
18491         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
18492         (nntp-marks-changed-p): New arg SERVER.
18493         (nntp-request-update-info): Adjust caller.
18494
18495 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
18496
18497         * nntp.el (nntp-save-marks): Pass missing arg.
18498
18499 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
18500
18501         * nntp.el: Support marks.
18502         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
18503         (nntp-marks-modtime, nntp-marks-directory): New variables.
18504         (nntp-request-set-mark, nntp-request-update-info)
18505         (nntp-possibly-create-directory, nntp-marks-changed-p)
18506         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
18507         New functions.
18508
18509 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
18510
18511         * gnus-xmas.el (gnus-xmas-select-lowest-window)
18512         (gnus-xmas-redefine): Rename.
18513
18514         * gnus-score.el (gnus-score-insert-help):
18515         Use gnus-select-lowest-window.
18516
18517         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
18518         appt-select-lowest-window and rename to gnus-select-lowest-window.
18519
18520         * gnus.el: do.
18521
18522 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18523
18524         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
18525         encodings of MIME-encoded words, in order to improve
18526         interoperability with several broken MUAs.
18527
18528 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18529
18530         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
18531         tags, only when charsets are not specified in headers.
18532         (mm-inline-text-html-render-with-w3m): Ditto.
18533
18534         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
18535         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
18536
18537 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18538
18539         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
18540         instead of MIME-decoded from fields when checking
18541         `gnus-article-address-banner-alist'.
18542
18543 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
18544
18545         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
18546         description rather than subject.
18547
18548 2004-05-02  Steve Youngs  <steve@youngs.au.com>
18549
18550         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
18551
18552 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18553
18554         * gnus.el (gnus-version-number): Bump.
18555
18556 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
18557
18558         * gnus.el: No Gnus v0.2 is released.
18559
18560 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18561
18562         * gnus-agent.el (gnus-agent-read-agentview):
18563         Inline gnus-uncompress-range.
18564
18565 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18566
18567         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
18568         `exec-installed-p'.
18569
18570 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18571
18572         * gnus.el (spam-process, spam-autodetect-methods):
18573         Add bsfilter and bsfilter-headers.
18574
18575         * spam.el (spam-bsfilter): New customize group.
18576         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
18577         (spam-bsfilter-header, spam-bsfilter-probability-header)
18578         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
18579         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
18580         (spam-bsfilter-database-directory): New options.
18581         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
18582         (spam-list-of-statistical-checks, spam-registration-functions):
18583         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
18584         (spam-bsfilter-score): New command.
18585         (spam-check-bsfilter-headers, spam-check-bsfilter)
18586         (spam-bsfilter-register-with-bsfilter)
18587         (spam-bsfilter-register-spam-routine)
18588         (spam-bsfilter-unregister-spam-routine)
18589         (spam-bsfilter-register-ham-routine)
18590         (spam-bsfilter-unregister-ham-routine): New functions.
18591         (spam-generic-score): Support bsfilter; Accept an optional argument
18592         to recalcurate spam score even if scoring header has already been
18593         added.
18594         (spam-bogofilter-score, spam-spamassassin-score): Accept an
18595         optional argument to recalcurate spam score even if scoring header
18596         has already been added.
18597
18598 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
18599
18600         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
18601         strings!  Reported by David D. Smith <davidsmith@acm.org>.
18602         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
18603         link is missing.
18604
18605 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
18606
18607         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
18608         (html2text-get-attr): Rewrite.
18609
18610         * message.el (message-setup-1): Remove redundant put-text-property
18611         on mail-header-separator.
18612
18613 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
18614
18615         * gnus-registry.el (gnus-registry-cache-whitespace)
18616         (gnus-registry-action, gnus-registry-spool-action)
18617         (gnus-registry-split-fancy-with-parent): Change message levels
18618         from 5 to 3 or 7, as needed.
18619
18620         * spam.el (spam-summary-prepare-exit)
18621         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
18622         (spam-split, spam-find-spam, spam-log-undo-registration)
18623         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
18624         level from 5 to 6.
18625
18626 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18627
18628         * gnus-ems.el: Autoload appt-select-lowest-window (revert
18629         2004-03-04 change).
18630
18631 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
18632
18633         * sieve-manage.el (sieve-manage-open):
18634         * nnweb.el (nnweb-insert-html):
18635         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
18636         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
18637         * nnspool.el (nnspool-request-group):
18638         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
18639         * nnml.el (nnml-request-update-info):
18640         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
18641         (nnmh-request-create-group, nnmh-update-gnus-unreads):
18642         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
18643         (nnimap-request-set-mark):
18644         * nnfolder.el (nnfolder-request-update-info):
18645         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
18646         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
18647         * gnus-uu.el (gnus-uu-find-articles-matching):
18648         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
18649         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
18650         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
18651         * gnus-nocem.el (gnus-nocem-scan-groups):
18652         * gnus-int.el (gnus-start-news-server):
18653         * gnus-group.el (gnus-group-make-kiboze-group)
18654         (gnus-group-browse-foreign-server):
18655         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
18656         Use mapc when appropriate.
18657
18658 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
18659
18660         FIXME: Make separate entries for each person.
18661
18662         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
18663         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
18664         <shields@msrl.com>:
18665
18666         * spam.el (spam-necessary-extra-headers): Get the extra headers we
18667         may need for spam sorting and scoring.
18668         (spam-user-format-function-S): Add user format function suitable for
18669         general use.
18670         (spam-article-sort-by-spam-status): Add sorting function for summary
18671         sorting.
18672         (spam-extra-header-to-number): Add function to get a score from a
18673         header.
18674         (spam-summary-score): Add function to get a numeric score from the
18675         headers.
18676         (spam-generic-score): Fix function doc, was in wrong place.
18677         (spam-initialize): Take symbols when it's run, and install the
18678         extra headers that spam-necessary-extra-headers thinks we need.
18679
18680 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
18681
18682         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
18683         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
18684
18685 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
18686
18687         * gnus-sum.el (gnus-set-global-variables)
18688         (gnus-build-all-threads, gnus-get-newsgroup-headers)
18689         (gnus-article-get-xrefs, gnus-summary-best-group)
18690         (gnus-summary-next-article, gnus-summary-enter-digest-group)
18691         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
18692         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
18693         Use with-current-buffer.
18694
18695 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
18696
18697         * spam.el (spam-summary-prepare-exit): Simplify logic.
18698         (spam-fetch-article-header): Read the article header if it's not
18699         available.
18700         (spam-list-articles): Simplify logic.
18701         (spam-filelist-register-routine): Fix bug with unregister-list.
18702
18703         * gnus-registry.el: Fix comments at beginning.
18704
18705 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
18706
18707         * message.el (message-cater-to-broken-inn): Remove.
18708         (message-shorten-references): Make sure the total folded length of
18709         References is shorter than 998 characters to cater to a bug in INN
18710         2.3.  Also, don't pretend that references aren't folded -- this
18711         hasn't worked for a while.
18712
18713 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18714
18715         * gnus-agent.el (gnus-agentize):
18716         gnus-agent-send-mail-real-function no longer set to current value
18717         of message-send-mail-function but rather a lambda that calls
18718         message-send-mail-function.  The change makes the agent real-time
18719         responsive to user changes to message-send-mail-function.
18720
18721 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18722
18723         * legacy-gnus-agent.el
18724         (gnus-agent-convert-to-compressed-agentview): Fix typos with
18725         help from Florian Weimer <fw@deneb.enyo.de>
18726
18727 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18728
18729         * nnmail.el (nnmail-cache-insert): Revert last change.
18730
18731 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18732
18733         * nnmail.el (nnmail-cache-insert): Always check whether
18734         nnmail-cache-ignore-groups matches a group name.
18735
18736 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
18737
18738         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
18739         (spam-find-spam, spam-log-processing-to-registry)
18740         (spam-log-registered-p, spam-log-unregistration-needed-p)
18741         (spam-log-undo-registration): Use gnus-message instead of
18742         gnus-error, none of these errors are fatal.
18743
18744         * gnus-registry.el (gnus-registry-clean-empty-function)
18745         (gnus-registry-clean-empty): Remove only empty entries without
18746         extra data.
18747
18748 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
18749
18750         * spam-stat.el (spam-stat-buffer-change-to-spam)
18751         (spam-stat-buffer-change-to-non-spam): Change (error) to
18752         (gnus-message 8) invocation.
18753
18754 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18755
18756         * nntp.el (nntp-via-netcat-command): New variable.
18757         (nntp-via-netcat-switches): New variable.
18758         (nntp-open-via-rlogin-and-netcat): New function.
18759         (nntp-open-connection-function): Doc fix.
18760         (nntp-telnet-command): Doc fix.
18761         (nntp-end-of-line): Doc fix.
18762         (nntp-via-rlogin-command): Doc fix.
18763         (nntp-via-user-name): Doc fix.
18764         (nntp-via-address): Doc fix.
18765
18766 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18767
18768         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
18769         error in Emacs 21.1.
18770
18771 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
18772
18773         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
18774
18775 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18776
18777         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
18778         (gnus-agent-with-refreshed-group): New macro.
18779         (gnus-agent-rename-group): New function.
18780         (gnus-agent-delete-group): New function.
18781         (gnus-agent-save-group-info): Use gnus-command-method when
18782         `method' parameter is nil.  Don't write nil entries into the
18783         active file.
18784         (gnus-agent-get-group-info): New function.
18785         (gnus-agent-fetch-articles):
18786         Use gnus-agent-update-files-total-fetched-for to increment disk space
18787         used.
18788         (gnus-agent-fetch-headers, gnus-agent-save-alist):
18789         Use gnus-agent-update-view-total-fetched-for to increment disk space
18790         used.
18791         (gnus-agent-get-local): Add optional parameters to avoid calling
18792         gnus-group-real-name and gnus-find-method-for-group.
18793         (gnus-agent-set-local): Delete stored entry if either min, or max,
18794         are nil.
18795         (gnus-agent-fetch-session): Reworded error/quit messages.
18796         On quit, use gnus-agent-regenerate-group to record existance of any
18797         articles fetched to disk before the quit occurred.
18798         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
18799         gnus-agent-update-view-total-fetched-for, and
18800         gnus-agent-update-files-total-fetched-for to decrement disk space
18801         used.
18802         (gnus-agent-retrieve-headers):
18803         Use gnus-agent-update-view-total-fetched-for to increment disk space
18804         used.
18805         (gnus-agent-regenerate-group): Replace gnus-group-update-group
18806         with gnus-agent-update-files-total-fetched-for to decrement disk
18807         space and fresh group buffer.
18808         (gnus-agent-inhibit-update-total-fetched-for): New variable.
18809         (gnus-agent-need-update-total-fetched-for): New variable.
18810         (gnus-agent-update-files-total-fetched-for): New function.
18811         (gnus-agent-update-view-total-fetched-for): New function.
18812         (gnus-agent-total-fetched-for): New function.
18813
18814         * gnus-cache.el (gnus-cache-save-buffers):
18815         Use gnus-cache-update-overview-total-fetched-for to change disk space
18816         used by this group.
18817         (gnus-cache-possibly-enter-article):
18818         Use gnus-cache-update-file-total-fetched-for to increment disk space
18819         used by this group.
18820         (gnus-cache-possibly-remove-article):
18821         Use gnus-cache-update-file-total-fetched-for to decrement disk space
18822         used by this group.
18823         (gnus-cache-generate-nov-databases): Purge total fetched cache.
18824         (gnus-cache-rename-group): New function.
18825         (gnus-cache-delete-group): New function.
18826         (gnus-cache-inhibit-update-total-fetched-for): New variable.
18827         (gnus-cache-need-update-total-fetched-for): New variable.
18828         (gnus-cache-with-refreshed-group): New macro.
18829         (gnus-cache-update-file-total-fetched-for): New function.
18830         (gnus-cache-update-overview-total-fetched-for): New function.
18831         (gnus-cache-rename-group-total-fetched-for): New function.
18832         (gnus-cache-delete-group-total-fetched-for): New function.
18833         (gnus-cache-total-fetched-for): New function.
18834
18835         * gnus-group.el: Require gnus-sum and autoload functions to
18836         resolve warnings when gnus-group.el compiled alone.
18837         (gnus-group-line-format): Documented new %F.
18838         (size of Fetched data) group line format; identifies disk space
18839         used by agent and cache.
18840         (gnus-group-line-format-alist): Defined new F format.
18841         (gnus-total-fetched-for): New function.
18842         (gnus-group-delete-group): No longer update
18843         gnus-cache-active-altered as gnus-request-delete-group now keeps
18844         the cache in sync.
18845         (gnus-group-list-active): Let the agent store a server's active
18846         list if currently plugged.
18847
18848         * gnus-int.el (gnus-request-delete-group):
18849         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
18850         local disk in sync with the server.
18851         (gnus-request-rename-group):
18852         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
18853         local disk in sync with the server.
18854
18855         * gnus-start.el (gnus-get-unread-articles):
18856         Cosmetic simplification to logic.
18857
18858         * gnus-util.el (gnus-rename-file): New function.
18859
18860 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
18861
18862         * mm-util.el (mm-image-load-path): Handle nil in load-path.
18863
18864 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
18865
18866         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
18867         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
18868
18869 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
18870
18871         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
18872         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
18873
18874 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
18875
18876         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
18877
18878 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
18879
18880         * spam.el (spam-set-difference): Add function to replace
18881         gnus-set-difference in spam.el.
18882         (spam-summary-prepare-exit): Use spam-set-difference.
18883
18884 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
18885
18886         * gnus-registry.el (gnus-registry-cache-file): Update to use
18887         gnus-dribble-directory OR gnus-home-directory OR ~.
18888         (gnus-registry-split-fancy-with-parent): Fix doc.
18889
18890 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18891
18892         * message.el (message-exchange-point-and-mark):
18893         Use message-mark-active-p.  Suggested by Jesper Harder
18894         <harder@ifa.au.dk>.
18895
18896 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18897
18898         * message.el (message-exchange-point-and-mark): Don't activate
18899         region if it was inactive.  Suggested by Hiroshi Fujishima
18900         <pooh@nature.tsukuba.ac.jp>.
18901
18902 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18903
18904         * gnus-art.el (article-display-face): Display Faces in the same
18905         order as X-Faces.
18906
18907 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18908
18909         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
18910
18911 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18912
18913         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
18914         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
18915         (gnus-article-mime-hierarchy): Remove.
18916         (gnus-article-mime-hierarchy-next): Remove.
18917         (gnus-article-mode): Revert 2004-03-19 change.
18918         (gnus-article-setup-buffer): Revert 2004-03-19 change.
18919         (gnus-insert-mime-button): Revert 2004-03-19 change.
18920         (gnus-mime-accumulate-hierarchy): Remove.
18921         (gnus-mime-enter-multipart): Remove.
18922         (gnus-mime-leave-multipart): Remove.
18923         (gnus-mime-display-part): Revert 2004-03-19 change.
18924         (gnus-mime-display-alternative): Revert 2004-03-19 change.
18925
18926         * mml.el (mml-preview): Revert 2004-03-19 change.
18927
18928 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
18929
18930         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
18931
18932 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18933
18934         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
18935         t while entering a file name using the mm-with-multibyte macro.
18936         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
18937
18938         * mm-util.el (mm-with-multibyte): New macro.
18939
18940 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18941
18942         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
18943         New user option.
18944         (gnus-mime-multipart-functions): Doc and customization fix.
18945         (gnus-article-mime-hierarchy): New variable.
18946         (gnus-article-mime-hierarchy-next): New variable.
18947         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
18948         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
18949         gnus-article-mime-hierarchy-next to nil.
18950         (gnus-insert-mime-button): Show hierarchy numbers.
18951         (gnus-mime-accumulate-hierarchy): New function.
18952         (gnus-mime-enter-multipart): New function.
18953         (gnus-mime-leave-multipart): New function.
18954         (gnus-mime-display-part): Recompute hierarchical MIME structure.
18955         (gnus-mime-display-alternative): Show hierarchy numbers.
18956
18957         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
18958         gnus-article-mime-hierarchy-next to nil.
18959
18960 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
18961
18962         * dns.el: Don't require gnus-xmas.
18963
18964 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
18965
18966         * mml.el (mml-generate-mime-1): Don't use format=flowed with
18967         inline PGP.
18968         (mml-menu): Disable mml-quote-region if mark is inactive.
18969
18970 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18971
18972         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
18973         when the group's active is not available.
18974
18975 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18976
18977         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
18978         error.
18979
18980 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
18981
18982         * imap.el (imap-store-password): New variable.
18983         (imap-interactive-login): Use it.
18984         Suggested by Mark Plaksin <happy@mcplaksin.org>.
18985
18986 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18987
18988         * gnus-art.el (gnus-article-read-summary-keys): Restore new
18989         window-start and hscroll to summary window.
18990
18991 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18992
18993         * gnus-start.el (gnus-convert-old-newsrc): Only write the
18994         conversion message to newsrc-dribble when an actual conversion is
18995         performed.
18996
18997 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
18998
18999         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
19000
19001 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19002
19003         * mm-decode.el (mm-complicated-handles): New function reviving
19004         former definition of mm-multiple-handles.
19005
19006         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
19007         (gnus-mime-delete-part): Use it.
19008
19009 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19010
19011         * gnus-agent.el (gnus-agent-read-local):
19012         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
19013         avoid the implicit assumption that they will always be equal.
19014         (gnus-agent-save-local): Bind buffer-file-coding-system, not
19015         coding-system-for-write, as the with-temp-file macro first prints
19016         to a buffer then saves the buffer.
19017
19018 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19019
19020         * gnus-art.el (gnus-article-edit-part): New function.
19021         (gnus-mime-save-part-and-strip): Use it; do query instead of
19022         signaling an error; don't use mm-multiple-handles.
19023         (gnus-mime-delete-part): Ditto.
19024
19025 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19026
19027         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
19028         old file versions.
19029         (gnus-group-prepare-hook): Remove function that converted list
19030         form of gnus-agent-expire-days to group properties.
19031
19032         * gnus-int.el: Autoload gnus-agent-regenerate-group.
19033         (gnus-request-accept-article): Re-indented.
19034
19035         * gnus-start.el (gnus-convert-old-newsrc): Registered new
19036         converters to handle old agent file formats.  Add logic for a
19037         "backup before upgrading warning".
19038         (gnus-convert-mark-converter-prompt): Developers can mark
19039         functions as needing (default), or not needing,
19040         gnus-convert-old-newsrc's "backup before upgrading warning".
19041         (gnus-convert-converter-needs-prompt): Tests whether the user
19042         should be protected from potentially irreversable changes by the
19043         function.
19044
19045         * legacy-gnus-agent.el: New.  Provides converters that are only
19046         loaded when gnus-convert-old-newsrc needs to call them.
19047
19048 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
19049
19050         * mail-source.el (mail-source-touch-pop): Doc fix.
19051
19052         * message.el (message-smtpmail-send-it): Doc fix.
19053
19054 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
19055
19056         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
19057
19058         * nnmail.el (nnmail-split-fancy): do.
19059
19060         * gnus-kill.el (gnus-kill, gnus-execute): do.
19061
19062 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
19063
19064         * gnus-sum.el (gnus-widget-reversible-match)
19065         (gnus-widget-reversible-to-internal)
19066         (gnus-widget-reversible-to-external): New functions.
19067         (gnus-widget-reversible): New widget.
19068         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
19069
19070 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
19071
19072         * gnus-sum.el (gnus-thread-sort-functions)
19073         (gnus-article-sort-functions): Document `(not F)' items.
19074
19075 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
19076
19077         * spam.el (spam-use-gmane-xref): Add new backend.
19078         (spam-gmane-xref-spam-group): Add variable to control the name of the
19079         Gmane spam group.
19080         (spam-blackhole-servers, spam-blackhole-good-server-regex)
19081         (spam-regex-headers-spam, spam-regex-headers-ham)
19082         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
19083         (spam-list-of-checks): Add spam-use-gmane-xref to list of
19084         backends and checks.
19085         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
19086
19087         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
19088         an autodetect method.
19089
19090 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19091
19092         * gnus-int.el (gnus-request-accept-article): Inform the agent that
19093         articles are being added to a group.
19094         (gnus-request-replace-article): Inform the agent that articles
19095         need to be uncached as the cached contents are no longer valid.
19096
19097 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19098
19099         * binhex.el: Don't autoload executable-find.
19100
19101         * canlock.el: Don't autoload mail-fetch-field.
19102
19103         * dgnushack.el: Autoload c-mode for XEmacs.
19104
19105         * gnus-ems.el: Don't autoload appt-select-lowest-window.
19106
19107         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
19108         rmail-dont-reply-to and rmail-output.
19109
19110         * gnus-score.el: Don't autoload ffap-string-at-point.
19111
19112         * gnus-setup.el: Don't autoload sc-cite-original.
19113
19114         * imap.el: Don't autoload base64-decode-string,
19115         base64-encode-string and md5.
19116
19117         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
19118         and rmail-msg-restore-non-pruned-header.
19119
19120         * mm-decode.el: Don't autoload executable-find.
19121
19122         * mm-url.el: Don't autoload executable-find.
19123
19124         * mm-view.el: Don't autoload diff-mode.
19125
19126         * nndb.el: Don't autoload news-reply-mode, news-setup,
19127         cancel-timer and telnet.
19128
19129         * password.el: Don't autoload run-at-time for Emacs.
19130
19131         * sha1-el.el: Don't autoload executable-find.
19132
19133         * sieve-mode.el: Don't autoload c-mode.
19134
19135         * uudecode.el: Don't autoload executable-find.
19136
19137 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19138
19139         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
19140         (gnus-agent-possibly-alter-active): Avoid null in numeric
19141         comparison.
19142         (gnus-agent-set-local): Refuse to save null in local object table.
19143         (gnus-agent-regenerate-group): The REREAD parameter can now be a
19144         list of articles that will be marked as unread.
19145
19146 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19147
19148         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
19149
19150 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
19151
19152         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
19153         language tags.
19154
19155 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
19156
19157         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
19158         Don't bind "obarray".
19159
19160         * gnus-sum.el (gnus-thread-sort-functions):
19161         Add `gnus-thread-sort-by-most-recent-number' and
19162         `gnus-thread-sort-by-most-recent-date'.
19163         Reported by Kai Grossjohann <kai@emptydomain.de>.
19164
19165 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
19166
19167         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
19168
19169 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19170
19171         * gnus-cus.el (gnus-agent-customize-category):
19172         Remove ignore-errors macro reference that required cl to be loaded at
19173         run-time.
19174
19175         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
19176         single-interval range of the form (min . max).  Previously the
19177         range had to look like ((min . max)).  Likewise, return
19178         (min . max) rather than ((min . max)).
19179         (gnus-range-map): Use gnus-range-normalize to accept
19180         single-interval range.
19181
19182         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
19183         the cache, but not the agent, now appear with their usual face.
19184
19185         * dgnushack.el (loaddir): New variable that is bound to the
19186         directory containing the dgnushack.el file. Use loaddir, rather
19187         than srcdir, to update load-path. Change lets dgnushack compile
19188         code in directories other than GNUS/lisp.
19189
19190 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19191
19192         * lpath.el: Don't bind w3m-safe-url-regexp.
19193
19194         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
19195         w3m-safe-url-regexp variable buffer-local.
19196
19197         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
19198
19199 2004-02-27  Simon Josefsson  <jas@extundo.com>
19200
19201         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
19202         gnus-group-real-prefix.
19203         (gnus-summary-move-article): Use it, instead of
19204         gnus-group-real-prefix.
19205
19206 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19207
19208         * lpath.el: Bind w3m-safe-url-regexp.
19209
19210         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
19211         w3m-safe-url-regexp variable buffer-local and set it as the value
19212         of mm-w3m-safe-url-regexp.
19213
19214         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
19215
19216         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
19217         parsing gnus-posting-styles when the message is not for replying.
19218
19219         * dgnushack.el: Autoload sgml-mode for XEmacs.
19220
19221         * nnrss.el (nnrss-opml-export):
19222         Use mm-set-buffer-file-coding-system instead of
19223         set-buffer-file-coding-system.
19224
19225 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
19226
19227         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
19228         of checkdoc.el).
19229         * nnrss.el: do.
19230         * gnus-mlspl.el: do.
19231         * gnus-ml.el: do.
19232         * gnus-srvr.el: do.
19233
19234         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
19235
19236 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
19237
19238         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
19239         Corrections to custom-manual links.
19240
19241         * gnus-art.el (gnus-article): Ditto.
19242
19243         * mm-decode.el (mime-display, mime-security): Ditto.
19244
19245 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
19246
19247         * flow-fill.el: Typo.
19248
19249 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
19250
19251         * spam-wash.el: New file.
19252
19253 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
19254
19255         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
19256
19257 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
19258
19259         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
19260         to be run with new-articles as LIST1, not LIST2.
19261         (spam-registration-functions): Add spam-use-ham-copy as a nil
19262         registration backend.
19263
19264 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
19265
19266         * spam-stat.el (spam-stat-washing-hook): New option.
19267         (spam-stat-buffer-words): Use it.
19268         (spam-stat-process-directory, spam-stat-test-directory):
19269         Use insert-file-contents-literally.
19270         (spam-stat-coding-system): New variable.
19271         (spam-stat-load, spam-stat-save): Use it.
19272
19273 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19274
19275         * spam-report.el (spam-report-plug-agent):
19276         Quote spam-report-url-to-file and spam-report-url-ping-plain.
19277
19278 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
19279
19280         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
19281         Allow / in mailto URLs.
19282
19283 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
19284
19285         * spam-report.el (spam-report-process-queue): Fix interactive use.
19286         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
19287         (spam-report-unplug-agent): Doc fixes.
19288         (spam-report-url-ping-mm-url, spam-report-url-to-file)
19289         (spam-report-agentize, spam-report-deagentize): Autoload.
19290
19291 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19292
19293         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
19294
19295         * message.el (message-setup-fill-variables): Add mml tags to
19296         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
19297         <ajk@iu.edu>.
19298         (message-mode): Don't modify paragraph-separate there.
19299
19300 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19301
19302         * compface.el (uncompface-use-external): Default to undecided.
19303         (uncompface-use-external-threshold): New variable.
19304         (uncompface-float-time): New macro.
19305         (uncompface): Determine whether to use the external decoder if
19306         uncompface-use-external is undecided.
19307
19308 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19309
19310         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
19311         after images.
19312
19313         * gnus-art.el (gnus-mime-display-single): Remove dead code.
19314
19315 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
19316
19317         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
19318
19319         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
19320
19321         * gnus-sum.el (gnus-summary-limit-to-age)
19322         (gnus-summary-limit-children): do.
19323
19324         * gnus-int.el (gnus-request-scan): do.
19325
19326         * gnus-group.el (gnus-group-suspend): do.
19327
19328         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
19329
19330         * gnus-cite.el (gnus-cite-parse-attributions): do.
19331
19332         * gnus-agent.el (gnus-summary-set-agent-mark)
19333         (gnus-agent-regenerate-group): do.
19334
19335         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
19336
19337         * binhex.el (binhex-decode-region-internal): do.
19338
19339 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19340
19341         * gnus-fun.el (gnus-face-properties-alist): New user option.
19342         (gnus-display-x-face-in-from): Use it.
19343
19344         * gnus-art.el (article-display-face): Ditto.
19345
19346         * compface.el (uncompface-use-external): Default to nil.
19347
19348 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
19349
19350         * nntp.el (nntp-erase-buffer): New function.
19351         (nntp-retrieve-data, nntp-send-command)
19352         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
19353         (nntp-possibly-change-group): Use it.
19354
19355         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
19356         Use with-current-buffer.
19357
19358 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
19359
19360         * compface.el: Merge the ELisp-based uncompface program.
19361         (compface): New customization group.
19362         (uncompface-use-external): New user option.
19363         (uncompface): Call uncompface-internal if uncompface-use-external
19364         is nil.
19365         (uncompface-internal): New function.  Note that there are also
19366         some other functions and variables added for this function.
19367
19368 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
19369
19370         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
19371         if necessary.
19372
19373 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
19374
19375         * spam-report.el (spam-report-unplug-agent)
19376         (spam-report-plug-agent, spam-report-deagentize)
19377         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
19378         Add support for the Agent in spam-report: when unplugged, report to a
19379         file; when plugged, submit all the requests.
19380
19381         * spam.el (spam-register-routine): Fix message about
19382         registration.
19383
19384 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
19385
19386         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
19387         dependencies.
19388         (rfc2047-encode): Use it.
19389
19390         * gnus-art.el (gnus-button-marker-list): Move before first
19391         reference.
19392
19393         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
19394         (imap-parse-body): Fix format string mismatch.
19395
19396         * gnus-score.el (gnus-summary-increase-score): do.
19397
19398         * nnrss.el (nnrss-close): New function.
19399
19400 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
19401
19402         * nnrss.el (nnrss-make-filename): New function.
19403         (nnrss-request-delete-group, nnrss-read-server-data)
19404         (nnrss-save-server-data, nnrss-read-group-data)
19405         (nnrss-save-group-data): Use it.
19406         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
19407         (nnrss-read-server-data, nnrss-read-group-data): Use load.
19408         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
19409
19410 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
19411
19412         * mml.el (mml-compute-boundary-1): Don't uncompress files.
19413
19414 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
19415
19416         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
19417         files.
19418
19419         * message.el (message-generate-headers-first): Don't quote nil
19420         and t in docstrings.
19421
19422         * imap.el (imap-id): do.
19423
19424         * gnus-agent.el (gnus-agent-consider-all-articles)
19425         (gnus-agent-queue-mail): do.
19426
19427 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
19428
19429         * spam-report.el (spam-report-process-queue): New function.
19430         Process requests from `spam-report-requests-file'.
19431         (spam-report-process-queue): Doc fix.
19432
19433 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
19434
19435         * spam.el (spam-register-routine)
19436         (spam-log-processing-to-registry, spam-log-registered-p)
19437         (spam-log-unregistration-needed-p, spam-log-undo-registration):
19438         Change "check" to "spam-check" for semi-clarity.
19439
19440 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
19441
19442         * pop3.el: Require nnheader.
19443
19444         * mml-smime.el: Require cl.  Autoload message-fetch-field.
19445
19446         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
19447
19448         * gnus-picon.el: Require cl.
19449
19450         * gnus-fun.el: Require gnus-ems and gnus-util.
19451
19452         * gnus.el (gnus-method-to-server): Move defsubst before first use.
19453
19454         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
19455
19456         * gnus-art.el (gnus-article-edit-mode): Define before first
19457         reference.
19458
19459 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
19460
19461         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
19462         (gnus-uu-post-encoded): Use point-at-bol.
19463
19464         * gnus-topic.el (gnus-group-active-topic-p): do.
19465
19466         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
19467
19468         * gnus-group.el (gnus-group-kill-region): do.
19469
19470         * gnus-art.el (article-date-ut): do.
19471
19472         * message.el (message-fetch-field): Remove redundant
19473         case-fold-search binding.
19474         (message-narrow-to-field): Simplify.
19475
19476 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
19477
19478         * spam.el (spam-directory): Derive from `gnus-directory'.
19479
19480         * spam-report.el (spam-report-url-to-file)
19481         (spam-report-requests-file): New function and variable for offline
19482         reporting.
19483         (spam-report-url-ping-function): Add `spam-report-url-to-file'
19484         and user defined function.
19485         (spam-report-url-ping-mm-url): Remove doubled slash.
19486
19487 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
19488
19489         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
19490
19491 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
19492
19493         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
19494         Fix format string mismatch.
19495
19496         * sieve.el (sieve-deactivate-all): do.
19497
19498         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
19499
19500         * nnlistserv.el (nnlistserv-kk-wash-article): do.
19501
19502         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
19503
19504         * mm-bodies.el (mm-7bit-chars): Don't include \r.
19505
19506 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
19507
19508         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
19509         the list of checks.
19510
19511 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
19512
19513         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
19514         padding.
19515
19516 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
19517
19518         * mm-view.el (mm-fill-flowed): New variable.
19519         (mm-inline-text): Use it.
19520
19521 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
19522
19523         * spam.el (spam-spamassassin-register-ham-routine)
19524         (spam-spamassassin-register-spam-routine): Fix function names.
19525
19526 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19527
19528         * gnus.el (gnus-tmp-grouplens): Remove.
19529         (gnus-summary-line-format): Remove grouplens.
19530
19531         * gnus-group.el (gnus-group-line-format): Ditto.
19532
19533         * gnus-spec.el (gnus-format-specs): Ditto.
19534         (gnus-update-format-specifications): Flush the group format spec
19535         cache if there's the grouplens stuff.
19536         (gnus-parse-simple-format): Replace %l with the empty string.
19537
19538 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
19539
19540         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
19541         omission.
19542
19543 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19544
19545         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
19546         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
19547
19548 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
19549
19550         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
19551         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
19552         New macros and functions.
19553         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
19554         Handle > NLINK_MAX messages.
19555         * nnmaildir.el (nnmaildir-request-set-mark):
19556         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
19557
19558 2004-01-25  Alex Schroeder  <alex@gnu.org>
19559
19560         * spam-stat.el (spam-stat-process-directory-age): New option.
19561         (spam-stat-process-directory): Use it.
19562
19563 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
19564
19565         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
19566         (spam-stat-save): Accept prefix argument.
19567
19568 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
19569
19570         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
19571         links" error.
19572
19573 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19574
19575         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
19576         the rest of the and/or forms.
19577
19578 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
19579
19580         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
19581         compatibility with old .newsrc.eld files.
19582
19583         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
19584
19585         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
19586
19587         * gnus-start.el (gnus-1): do.
19588
19589         * gnus-group.el (gnus-group-line-format-alist): do.
19590
19591         * gnus.el (gnus-use-grouplens, gnus-visual): do.
19592
19593         * gnus-gl.el: Remove.
19594
19595 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19596
19597         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
19598         marks consisting of a single range {for example, (3 . 5)} rather
19599         than a list of a single range { ((3 . 5)) }.
19600
19601 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
19602
19603         * spam-stat.el (spam-stat-store-gnus-article-buffer):
19604         Use with-current-buffer.
19605         (spam-stat-store-current-buffer): Use insert-buffer-substring to
19606         avoid consing a string.
19607
19608         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
19609         Remove obsolete entries for big5 and gb2312.
19610
19611 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19612
19613         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
19614         uncompressed list.
19615
19616 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
19617
19618         * spam-stat.el (spam-stat-strip-xref): New function.
19619         (spam-stat-process-directory): Use it.
19620
19621         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
19622         here -- it's done in message-fetch-field.
19623
19624 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19625
19626         * gnus-agent.el (gnus-agent-queue-mail)
19627         (gnus-agent-prompt-send-queue): New variables.
19628         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
19629         * gnus-draft.el (gnus-group-send-queue): Pass the group name
19630         "nndraft:queue" along to gnus-draft-send.
19631         Use gnus-agent-prompt-send-queue.
19632         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
19633         is "nndraft:queue".  Suggested by Gaute Strokkenes
19634         <gs234@srcf.ucam.org>
19635
19636         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
19637         (agent-enable-undownloaded-faces): Add.
19638         (gnus-agent-cat-groups): Use eval-and-compile, not
19639         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
19640         method of gnus-agent-cat-groups even when the buffer has been
19641         evaled.
19642         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
19643         delete gnus-agent-save-active-1.
19644         (gnus-agent-save-groups): Delete.  Identical to
19645         gnus-agent-save-active.
19646         (gnus-agent-write-active): No longer adjust agent's copy of active
19647         file as agent's adjustments are now stored in their own
19648         file.  Remove optional parameter.
19649         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
19650         servers.  Add use of min/max range limits from server's local
19651         file.
19652         (gnus-agent-save-alist): Remove unused optional argument.
19653         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
19654         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
19655         (gnus-agent-set-local): A per-server file that keeps min/max range
19656         limits for articles known to the agent.  Provides a fast mechanism
19657         for altering many active ranges.
19658         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
19659         active file (local makes it unnecessary).
19660         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
19661
19662         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
19663         (agent-enable-undownloaded-faces): Add.
19664
19665         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
19666         disable it when sending to "nndraft:queue".
19667         (gnus-group-send-queue): Add safety check to avoid sending queue
19668         when unplugged.
19669
19670         * gnus-group.el (gnus-group-catchup): Use new
19671         gnus-sequence-of-unread-articles, not
19672         gnus-list-of-unread-articles, to avoid exhausting memory with huge
19673         numbers of articles.  Use gnus-range-map to avoid having to
19674         uncompress the unread list.
19675         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
19676         Fix invalid ange-ftp reference.
19677
19678         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
19679         (gnus-sorted-range-intersection): Intersection of two ranges
19680         without requiring that they first be uncompressed.
19681
19682         * gnus-start.el (gnus-activate-group): Unless blocked by the
19683         caller, possibly expand the active range to include both cached
19684         and agentized articles.
19685         (gnus-convert-old-newsrc): Rewrote in anticipation of having
19686         multiple version-dependent converters.
19687         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
19688         gnus-agent-save-active.
19689         (gnus-save-newsrc-file): Save dirty agent range limits.
19690
19691         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
19692         gnus-agent-possibly-alter-active.
19693         (gnus-adjust-marked-articles): Faster handling of simple lists.
19694
19695 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
19696
19697         * spam-stat.el (spam-stat-test-directory): New optional argument
19698         displays a list of files detected.  Suggested by Andrew Cohen
19699         <cohen@andy.bu.edu>.
19700         (spam-stat-buffer-words-with-scores): Don't narrow and change
19701         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
19702
19703 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
19704
19705         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
19706         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
19707         (spam-spamassassin-arguments)
19708         (spam-spamassassin-spam-flag-header)
19709         (spam-spamassassin-positive-spam-flag-header)
19710         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
19711         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
19712         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
19713         (spam-list-of-processors, spam-list-of-checks)
19714         (spam-list-of-statistical-checks, spam-registration-functions)
19715         (spam-check-spamassassin-headers, spam-check-spamassassin)
19716         (spam-spamassassin-score)
19717         (spam-spamassassin-register-with-sa-learn)
19718         (spam-spamassassin-register-spam-routine)
19719         (spam-spamassassin-register-ham-routine)
19720         (spam-assassin-register-spam-routine)
19721         (spam-assassin-register-ham-routine): Add SpamAssassin support.
19722         (spam-bogofilter-score): Fix to show article before scoring.
19723
19724 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
19725
19726         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
19727         default scoring function.
19728         (spam-generic-score): Call spam-spamassassin-score if
19729         spam-use-spamassassin or spam-use-spamassassin-headers is on;
19730         spam-bogofilter-score otherwise.
19731
19732         * gnus.el (spam-process, spam-autodetect-methods):
19733         Add spamassassin and spamassassin-headers.
19734
19735 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
19736
19737         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
19738         Suppress unnecessary messages.
19739
19740 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
19741
19742         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
19743         make-hash-table.
19744
19745 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19746
19747         * canlock.el (base64-encode-string): Don't autoload it.
19748
19749 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19750
19751         * run-at-time.el: Remove useless (require 'itimer),
19752         eval-and-compile and (featurep 'xemacs).
19753
19754 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
19755
19756         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
19757         GROUP is a virtual group.
19758
19759 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
19760
19761         * gnus.el: Autoload `message-y-or-n-p'.
19762
19763 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
19764
19765         * pgg-parse.el: Remove unnecessary (require 'custom).
19766
19767         * pgg-def.el: do.
19768
19769         * nnmail.el: do.
19770
19771         * gnus-undo.el: do.
19772
19773         * gnus-picon.el: do.
19774
19775         * gnus-util.el: do.
19776
19777 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
19778
19779         * gnus-sum.el (gnus-pick-line-number): Add autoload.
19780
19781 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
19782
19783         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
19784         handle, as well as a list.
19785
19786         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
19787         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
19788         (mm-w3m-cid-retrieve): Simplify.
19789
19790 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
19791
19792         * message.el (message-kill-to-signature): Allow prefix arg to
19793         specify number of lines to keep before signature.
19794
19795 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
19796
19797         * message.el (message-kill-to-signature): Change docstring.
19798
19799 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
19800
19801         * canlock.el: Always require sha1-el.
19802         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
19803
19804         * message.el: Autoload sha1 only when compiling.
19805
19806         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
19807         eudc-expand-inline for XEmacs.
19808
19809 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19810
19811         * message.el (message-canlock-generate): Require sha1-el.
19812
19813 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
19814
19815         * message.el (message-expand-name): Silence the byte compiler.
19816
19817         * lpath.el: Add detect-coding-system.
19818
19819         * dgnushack.el (dgnushack-compile): Remove obsolete check for
19820         cus-edit.
19821
19822 2004-01-13  Simon Josefsson  <jas@extundo.com>
19823
19824         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
19825         Invoke gnus-score-mode.
19826         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
19827
19828         * gnus-range.el (gnus-compress-sequence): Doc fix.
19829         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
19830
19831 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
19832
19833         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
19834
19835 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
19836
19837         * spam.el (spam-get-article-as-string): Update to use
19838         gnus-request-article-this-buffer, much simpler.
19839         (spam-get-article-as-buffer): Remove.
19840
19841 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
19842
19843         * message.el (message-expand-name): Use EUDC if the user uses that.
19844
19845 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
19846
19847         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
19848         character for the encoding to avoid consing a string.
19849
19850         * rfc2047.el (rfc2047-decode-string): Don't cons a string
19851         unnecessarily.
19852
19853         * mm-util.el (mm-replace-chars-in-string): Remove.
19854
19855         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
19856         of mm-replace-chars-in-string.
19857
19858 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
19859
19860         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
19861
19862         * mm-util.el (mm-subst-char-in-string): Support inplace.
19863
19864         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
19865         a new string in every iteration.  Use shy groups.
19866
19867 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
19868
19869         * gnus-srvr.el (gnus-browse-unsubscribe-group):
19870         * gnus-soup.el (gnus-soup-group-brew):
19871         * gnus-msg.el (gnus-put-message):
19872         * gnus-move.el (gnus-group-move-group-to-server):
19873         * gnus-kill.el (gnus-batch-score):
19874         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
19875         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
19876         (gnus-group-update-group, gnus-group-read-group)
19877         (gnus-group-make-group, gnus-group-make-help-group)
19878         (gnus-group-make-archive-group, gnus-group-make-directory-group)
19879         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
19880         (gnus-group-sort-by-unread, gnus-group-catchup)
19881         (gnus-group-unsubscribe-group, gnus-group-kill-group)
19882         (gnus-group-yank-group, gnus-group-set-info)
19883         (gnus-group-list-groups):
19884         * gnus.el (gnus-generate-new-group-name):
19885         * gnus-delay.el (gnus-delay-send-queue):
19886         * nnvirtual.el (nnvirtual-catchup-group):
19887         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
19888         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
19889         (gnus-group-prepare-topics, gnus-topic-check-topology):
19890         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
19891         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
19892         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
19893         (gnus-group-make-articles-read):
19894         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
19895         (gnus-group-change-level, gnus-kill-newsgroup)
19896         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
19897         (gnus-get-unread-articles, gnus-make-articles-unread)
19898         (gnus-make-ascending-articles-unread): Use accessor
19899         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
19900         to get group information for improved readability.
19901
19902
19903 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
19904
19905         * gnus-art.el (article-decode-mime-words, article-babel)
19906         (gnus-article-highlight-signature, gnus-article-add-buttons)
19907         (gnus-signature-toggle): Use gnus-with-article-buffer.
19908
19909         * gnus-art.el (gnus-article-highlight-headers)
19910         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
19911
19912         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
19913         (gnus-article-set-globals, gnus-request-article-this-buffer)
19914         (gnus-button-message-id, gnus-article-maybe-hide-headers)
19915         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
19916         (gnus-mime-display-alternative): Use with-current-buffer.
19917
19918 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
19919
19920         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
19921         also under 80 char limit, and call gnus-error if needed.
19922         (spam-fetch-article-header): Fix - it was a
19923         buffer-local variable (gnus-newsgroup-data).
19924         (spam-find-spam): Use spam-generate-fake-headers, forget about
19925         spam-insert-fake-headers.
19926         (spam-insert-fake-headers): Remove.
19927
19928 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
19929
19930         * deuglify.el (gnus-article-outlook-unwrap-lines)
19931         (gnus-outlook-rearrange-article)
19932         (gnus-outlook-repair-attribution-outlook)
19933         (gnus-outlook-repair-attribution-block)
19934         (gnus-outlook-repair-attribution-other): Remove redundant
19935         save-excursion.
19936
19937 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
19938
19939         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
19940         (spam-fetch-field-subject-fast)
19941         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
19942         (spam-fetch-article-header): Add functions to deal with Gnus
19943         internals for fast retrieval of article header data.
19944         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
19945
19946 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
19947
19948         * pop3.el (pop3-md5): Remove.
19949         (pop3-apop): Replace pop3-md5 with md5.
19950
19951         * mm-bodies.el: base64 is always built-in.
19952
19953         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
19954         Use with-current-buffer.
19955
19956 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
19957
19958         * canlock.el (canlock-insert-header): Remove excessive grouping in
19959         regexp.
19960
19961         * gnus-sum.el (gnus-summary-read-document): Ditto.
19962
19963         * gnus-uu.el (gnus-uu-part-number): Ditto.
19964
19965         * html2text.el (html2text-remove-tags): Ditto.
19966         (html2text-format-tags): Ditto.
19967         (html2text-format-single-elements): Ditto.
19968
19969         * mml.el (mml-parse-1): Ditto.
19970
19971 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
19972
19973         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
19974
19975         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
19976
19977         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
19978
19979         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
19980
19981 2003-11-15  Simon Josefsson  <jas@extundo.com>
19982
19983         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
19984         (pgg-gpg-lookup-key): Use regexp match instead of
19985         split-string (split-string is different between emacs 21.2 and
19986         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
19987
19988 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
19989
19990         * gnus-art.el (gnus-mime-view-all-parts)
19991         (gnus-article-part-wrapper, gnus-article-view-part):
19992         Use with-current-buffer.
19993
19994 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
19995
19996         * spam.el (spam-disable-spam-split-during-ham-respool)
19997         (spam-spamoracle-database, spam-cache-lookups)
19998         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
19999         (spam-group-ham-mark-p, spam-group-spam-mark-p)
20000         (spam-group-ham-marks, spam-group-spam-marks)
20001         (spam-group-spam-contents-p, spam-group-ham-contents-p)
20002         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
20003         also add spam-use-blackholes to the statistical checks.
20004         (spam-fetch-field-fast): Add interface to fetching fields, may
20005         become a macro.
20006         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
20007         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
20008         (spam-insert-fake-headers): Fake an article when needed.
20009         (spam-find-spam): Fake article when possible.
20010         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
20011         (spam-check-bogofilter-headers): Use message-fetch-field instead
20012         of nnmail-fetch-field.
20013
20014 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
20015
20016         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
20017
20018 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
20019
20020         * spam.el (spam-split): Do not require spam-use-CHECK to be
20021         enabled if that check is passed to spam-split explicitly; also
20022         fix so 'spam doesn't get converted to spam-split-group when
20023         spam-split-symbolic-return is t.
20024         (spam-find-spam): Find registrations of the article and use those
20025         instead of re-running spam-split to find the spam/ham
20026         classification of the article.
20027         (spam-log-processing-to-registry, spam-log-registered-p)
20028         (spam-log-unregistration-needed-p, spam-log-undo-registration):
20029         Use gnus-error instead of gnus-message.
20030         (spam-log-registration-type): Add function to determine the
20031         classification of a message based on registry entries; will
20032         return nil if both 'spam and 'ham are found.
20033         (spam-check-BBDB): Expand all the BBDB macros here so we can have
20034         a reasonably fast local cache without the loading errors.
20035         (spam-cache-lookups): Set to t by default.
20036         (spam-find-spam): Don't try to guess spam-cache-lookups.
20037         (spam-enter-whitelist, spam-enter-blacklist): Clear the
20038         spam-caches entry.
20039         (spam-filelist-build-cache, spam-filelist-check-cache):
20040         Fix caching of whitelist/blacklist entries.
20041         (spam-check-whitelist, spam-check-blacklist):
20042         Invoke spam-from-listed-p with a type, not a cache variable.
20043         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
20044
20045 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
20046
20047         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
20048
20049         * nnmail.el (nnmail-split-fancy): do.
20050
20051         * mml.el (mml-parse): do.
20052
20053         * gnus-score.el (gnus-enter-score-words-into-hashtb)
20054         (gnus-score-adaptive): do.
20055
20056 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20057
20058         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
20059         (gnus-mime-button-map): Don't set keymap parent.
20060         (gnus-button-ctan-directory-regexp): Use shy grouping.
20061         (gnus-prev-page-map): Don't set keymap parent.
20062         (gnus-prev-page-map): Remove duplicated one.
20063         (gnus-next-page-map): Don't set keymap parent.
20064         (gnus-mime-security-button-map): Ditto.
20065
20066         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
20067         version number.
20068
20069         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
20070
20071 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20072
20073         * canlock.el (canlock-sha1-function): Remove.
20074         (canlock-sha1-function-for-verify): Remove.
20075         (canlock-openssl-program): Remove.
20076         (canlock-openssl-args): Remove.
20077         (canlock-ignore-errors): Remove.
20078         (canlock-sha1-with-openssl): Remove.
20079         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
20080         (canlock-verify): Don't use canlock-ignore-errors.
20081
20082         * sha1-el.el (sha1-string-external): Make it can return a string
20083         in binary form.
20084         (sha1-region-external): Ditto.
20085         (sha1-string-internal): Ditto.
20086         (sha1-region-internal): Ditto.
20087         (sha1-region): Ditto.
20088         (sha1-string): Ditto.
20089         (sha1): Ditto.
20090
20091 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20092
20093         * spam.el (spam-report-articles-gmane): New command.
20094
20095 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20096
20097         * gnus.el: Don't make unnecessary *Group* buffer when loading.
20098
20099         * run-at-time.el (run-at-time-saved): Remove.
20100         (run-at-time): Doc fix.
20101
20102 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
20103
20104         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
20105         (gnus-summary-limit-map): Add it.
20106         (gnus-summary-make-menu-bar): do.
20107
20108 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
20109
20110         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
20111         Make attempt at some caching support (done for BBDB only now).
20112         (spam-find-spam): Set spam-cache-lookups if there are more than 2
20113         addresses to be checked.
20114         (spam-clear-cache-BBDB): Add function, to be invoked by
20115         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
20116         (spam-check-BBDB): Check and use the caches, if
20117         spam-cache-lookups is on, remove superfluous (provide).
20118
20119 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
20120
20121         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
20122
20123 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
20124
20125         * run-at-time.el (run-at-time-saved): Move to after the definition
20126         of `run-at-time'.
20127
20128         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
20129
20130 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20131
20132         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
20133         mm-w3m-local-map-property.
20134
20135         * mm-view.el (mm-w3m-mode-map): Remove.
20136         (mm-w3m-local-map-property): Remove.
20137         (mm-inline-text-html-render-with-w3m): Don't use
20138         mm-w3m-local-map-property.
20139
20140 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20141
20142         * run-at-time.el: New file.
20143
20144         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
20145         under Emacs.
20146
20147         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
20148         of gnus-set-text-properties.
20149
20150         * gnus-uu.el (gnus-uu-save-article): Ditto.
20151
20152         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
20153
20154         * gnus-cite.el (gnus-cite-parse): Ditto.
20155
20156         * gnus-art.el (gnus-button-push): Use set-text-properties instead
20157         of gnus-.
20158
20159         * gnus-xmas.el (run-at-time): Require run-at-time.
20160
20161         * gnus.el: Change calls to nnheader-run-at-time and
20162         password-run-at-time throughout to use run-at-time directly.
20163
20164         * password.el: Remove definition of run-at-time.
20165
20166         * nnheaderxm.el: Remove definition of run-at-time.
20167
20168 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
20169
20170         * mml.el (mml-minibuffer-read-disposition): Show attachment type
20171         in prompt.
20172
20173 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
20174
20175         * messagexmas.el (message-xmas-redefine): Alias
20176         `message-make-caesar-translation-table' to
20177         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
20178         version.
20179
20180         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
20181         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
20182         `gnus-xmas-set-text-properties'.
20183         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
20184         `gnus-xmas-completing-read'.
20185         (gnus-xmas-completing-read): Removed.
20186         (gnus-xmas-open-network-stream): Removed.
20187
20188         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
20189         XEmacs version.
20190
20191         * dns.el (dns-make-network-process): Use `open-network-stream'
20192         instead of `gnus-xmas-open-network-stream'.
20193
20194         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
20195
20196         * .cvsignore: Add auto-autoloads.el, custom-load.el.
20197
20198 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
20199
20200         * gnus-art.el (gnus-mime-display-alternative)
20201         (gnus-insert-mime-button, gnus-insert-mime-security-button)
20202         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
20203         Don't use gnus-local-map-property.
20204
20205         * gnus-util.el (gnus-local-map-property): Remove.
20206
20207         * mm-view.el (mm-view-pkcs7-decrypt):
20208         Replace gnus-completing-read-maybe-default with completing-read.
20209
20210         * gnus-util.el (gnus-completing-read): do.
20211         (gnus-completing-read-maybe-default): Remove.
20212
20213 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
20214
20215         * password.el: Only autoload `run-at-time' if not XEmacs.
20216         Only autoload the itimer functions if XEmacs.
20217
20218 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20219
20220         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
20221         XEmacsen.
20222
20223         * dgnushack.el: Autoload executable-find for XEmacs.
20224
20225 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
20226
20227         * gnus-art.el (gnus-read-string): Remove.
20228         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
20229         read-string.
20230
20231 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
20232
20233         * netrc.el: Autoload password-read.
20234         (netrc): Add configuration group.
20235         (netrc-encoding-method, netrc-openssl-path):
20236         Add variables for encoding and decoding of files with symmetric
20237         ciphers.
20238         (netrc-encode): Add assistant function to encode a file with
20239         netrc-encoding-method.
20240         (netrc-parse): Add interactive parameter, added optional
20241         decoding if netrc-encoding-method is non-nil but otherwise
20242         behavior is standard.
20243         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
20244         Do s/encode/encrypt/ everywhere.
20245
20246         * spam.el: Remove executable-find autoload.
20247
20248 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
20249
20250         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
20251
20252         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
20253
20254 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
20255
20256         * gnus-art.el (gnus-treat-ansi-sequences)
20257         (article-treat-ansi-sequences): New variable and function.
20258         Suggested by Dan Jacobson <jidanni@jidanni.org>.
20259
20260         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
20261         Use it.
20262
20263 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
20264
20265         * mm-util.el (mm-quote-arg): Remove.
20266
20267         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
20268         shell-quote-argument.
20269
20270         * gnus-uu.el (gnus-uu-command): do.
20271
20272         * gnus-sum.el (gnus-summary-insert-pseudos): do.
20273
20274         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
20275         with make-char.
20276
20277         * mm-util.el (mm-make-char): Remove.
20278
20279         * mml.el (mml-mode): Replace gnus-add-minor-mode with
20280         add-minor-mode.
20281
20282         * gnus-undo.el (gnus-undo-mode): do.
20283
20284         * gnus-topic.el (gnus-topic-mode): do.
20285
20286         * gnus-sum.el (gnus-dead-summary-mode): do.
20287
20288         * gnus-start.el (gnus-slave-mode): do.
20289
20290         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
20291
20292         * gnus-ml.el (gnus-mailing-list-mode): do.
20293
20294         * gnus-gl.el (gnus-grouplens-mode): do.
20295
20296         * gnus-draft.el (gnus-draft-mode): do.
20297
20298         * gnus-dired.el (gnus-dired-mode): do.
20299
20300         * gnus-ems.el (gnus-add-minor-mode): Remove.
20301
20302         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
20303         Replace gnus-char-width with char-width.
20304
20305         * gnus-ems.el (gnus-char-width): Remove.
20306
20307         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
20308         Replace gnus-char-width with char-width.
20309
20310         * gnus-ems.el (gnus-char-width): Remove.
20311
20312         * spam-stat.el (with-syntax-table): Remove with-syntax-table
20313         definition.
20314         Remove Emacs 20 hash table compatibility code.
20315
20316         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
20317         20 compatibility code.
20318
20319         * spam.el (spam-point-at-eol): Replace with point-at-eol.
20320
20321         * smime.el (smime-point-at-eol): Replace with point-at-eol.
20322
20323         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
20324         Replace with point-at-{eol,bol}.
20325
20326         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
20327
20328         * imap.el (imap-point-at-eol): Replace with point-at-eol.
20329
20330         * flow-fill.el (fill-flowed-point-at-bol)
20331         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
20332
20333         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
20334         Replace with point-at-{eol,bol} throughout all files.
20335
20336 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20337
20338         * ntlm.el (ntlm-string-as-unibyte): New macro.
20339         (ntlm-build-auth-response): Use it.
20340
20341         Remove Emacs 20 stuff:
20342         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
20343         (butlast, mapc, remove): Remove the compiler macros.
20344         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
20345         of delq and copy-sequence.
20346         * gnus-art.el (popup-menu): Remove the compiler macro.
20347         * nnmail.el (nnmail-split-fancy): Don't support customizing with
20348         Emacs 20.
20349
20350 2004-01-05  Simon Josefsson  <jas@extundo.com>
20351
20352         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
20353         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
20354         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
20355         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
20356         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
20357         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
20358         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
20359         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
20360         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
20361         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
20362         ntlm-string-permute, string-lshift into ntlm-string-lshift,
20363         string-xor into ntlm-string-xor.
20364         Suggested by Jesper Harder <harder@myrealbox.com>.
20365
20366         * ntlm.el: Don't include poem.
20367
20368         * md4.el (print-int32, print-string-hexa): Remove.
20369         Suggested by Jesper Harder <harder@myrealbox.com>.
20370
20371         * sasl-ntlm.el, ntlm.el, md4.el: New files.
20372
20373         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
20374         probably breaks emacs with DL patch, but do we care? Is anyone
20375         still using the DL stuff?)
20376
20377         * sieve-manage.el: Use the password package.
20378         (sieve-manage-read-passwd): Remove.
20379         (sieve-manage-interactive-login): Use password.  Re-add
20380         condition-case around loop.
20381
20382         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
20383         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
20384         Use the password package.
20385
20386 2003-02-19  Simon Josefsson  <jas@extundo.com>
20387
20388         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
20389         token.
20390
20391 2002-08-07  Simon Josefsson  <jas@extundo.com>
20392
20393         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
20394         (sieve-manage-authenticators):
20395         (sieve-manage-authenticator-alist): Add some SASL mechs.
20396         (sieve-sasl-auth): New function.
20397         (sieve-manage-cram-md5-auth):
20398         (sieve-manage-plain-auth): Rewrite using SASL library.
20399         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
20400         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
20401         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
20402         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
20403
20404 2004-01-05  Simon Josefsson  <jas@extundo.com>
20405
20406         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
20407         New files.
20408
20409 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20410
20411         * gnus-group.el (gnus-no-groups-message): Update.
20412
20413         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
20414
20415 2003-11-09  Simon Josefsson  <jas@extundo.com>
20416
20417         * imap.el: Support for ID IMAP extension (RFC 2971).
20418         (imap-local-variables): Add imap-id.
20419         (imap-id): New variable.
20420         (imap-id): New function.
20421         (imap-parse-response): Parse untagged ID response.
20422         * nnimap.el (nnimap-id): New variable.
20423         (nnimap-open-connection): Use it.
20424
20425 2003-12-28  Simon Josefsson  <jas@extundo.com>
20426
20427         * gnus-score.el (gnus-score-edit-all-score): New.
20428         * gnus-group.el (gnus-group-score-map): Bind it to W e.
20429
20430 2004-01-04  Simon Josefsson  <jas@extundo.com>
20431
20432         * password.el: Add.
20433
20434 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
20435
20436         * dns.el (dns-query-types): Fix typo.
20437         (dns-query-types): New function.
20438         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
20439         PTR and SOA replies, see RFC 1035.
20440
20441 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20442
20443         * gnus.el (gnus-logo-color-style): Change colors to `no'.
20444
20445         * Move to Changelog.2.
20446
20447 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20448
20449         * gnus.el (gnus-version-number): Bump version.
20450
20451 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
20452
20453         * gnus.el: No Gnus v0.1 is released.
20454
20455 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
20456
20457         * gnus.el: No Gnus v0.0 is released.
20458
20459 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20460
20461         * gnus.el (gnus-version-number): Bump.
20462         (gnus-version): No.
20463
20464 See ChangeLog.2 for earlier changes.
20465
20466   Copyright (C) 2004-2011  Free Software Foundation, Inc.
20467
20468   This file is part of GNU Emacs.
20469
20470   GNU Emacs is free software: you can redistribute it and/or modify
20471   it under the terms of the GNU General Public License as published by
20472   the Free Software Foundation, either version 3 of the License, or
20473   (at your option) any later version.
20474
20475   GNU Emacs is distributed in the hope that it will be useful,
20476   but WITHOUT ANY WARRANTY; without even the implied warranty of
20477   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20478   GNU General Public License for more details.
20479
20480   You should have received a copy of the GNU General Public License
20481   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
20482
20483 ;; Local Variables:
20484 ;; coding: utf-8
20485 ;; fill-column: 79
20486 ;; add-log-time-zone-rule: t
20487 ;; End: