Use new auth-source search API for mail-source, nnimap, nntp.
[gnus] / lisp / ChangeLog
1 2011-02-08  Teodor Zlatanov  <tzz@lifelogs.com>
2
3         * mail-source.el: Autoload `auth-source-search'.
4         (mail-source-keyword-map): Note order matters.
5         (mail-source-set-1): Get all the mail-source source values and
6         defaults and search auth-source on those if needed.  This can all
7         probably be simplified.
8
9         * nnimap.el: Autoload `auth-source-search'.
10         (nnimap-credentials): Use it.
11         (nnimap-open-connection-1): Ask for the virtual server and physical
12         address in one shot.
13
14         * nntp.el: Autoload `auth-source-search'.
15         (nntp-send-authinfo): Use it.  Note TODO.
16
17 2011-02-08  Julien Danjou  <julien@danjou.info>
18
19         * message.el (message-options): Make message-options a local variable.
20
21 2011-02-07  Teodor Zlatanov  <tzz@lifelogs.com>
22
23         * auth-source.el (auth-source-secrets-search)
24         (auth-source-user-or-password): Use `append' instead of `nconc'.
25         (auth-source-user-or-password): Build return list better and protect
26         against nil :secret.
27
28 2011-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
29
30         * nnimap.el (nnimap-update-info): Refactor slightly.
31         (nnimap-update-info): Tell Gnus whether there are any \Recent messages.
32         (nnimap-update-info): Clean up slightly.
33         (nnimap-quirk): Add quirk for Gmail IMAP which bugs out on NUL
34         characters.
35         (nnimap-process-quirk): Renamed function to avoid collision.
36         (nnimap-update-info): Fix macrology bug-out.
37         (nnimap-update-info): Simplify split history test.
38
39 2011-02-06  Michael Albinus  <michael.albinus@gmx.de>
40
41         * auth-source.el (top): Require 'eieio unconditionally.  Autoload
42         `secrets-get-attributes' instead of `secrets-get-attribute'.
43         (auth-source-secrets-search): Limit search when `max' is greater than
44         number of results.
45
46 2011-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
47
48         * nntp.el (nntp-finish-retrieve-group-infos): Protect against the first
49         part not returning any data.
50
51         * proto-stream.el (open-protocol-stream): Document the return value.
52
53 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
54
55         * auth-source.el (auth-source-secrets-search): Add examples.
56
57 2011-02-06  Julien Danjou  <julien@danjou.info>
58
59         * message.el (message-setup-1): Handle message-generate-headers-first
60         set to t.
61
62 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
63
64         * auth-source.el (auth-sources): Allow for simpler defaults for Secrets
65         API with a string "secrets:collection-name" and with 'default.
66         (auth-source-backend-parse): Parse "secrets:collection-name" and
67         'default.  Recurse on parses instead of repeating code.  Use the
68         Secrets API is the source is not nil and 'ignore otherwise.  Emit a
69         message when ignoring a source.
70         (auth-source-search): List ignored search keys at the top level.
71         (auth-source-netrc-create): Use `case' instead of `cond'.
72         (auth-source-secrets-search): Created with TODOs.
73         (auth-source-secrets-create): Created with TODOs.
74         (auth-source-retrieve, auth-source-create, auth-source-delete)
75         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
76         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
77         (auth-source-user-or-password-sftp)
78         (auth-source-user-or-password-smtp): Removed.
79         (auth-source-user-or-password): Deprecated and modified to be a wrapper
80         around `auth-source-search'.  Not tested thoroughly.
81
82 2011-02-04  Teodor Zlatanov  <tzz@lifelogs.com>
83
84         * auth-source.el: Bring in assoc and eioeio libraries.
85         (secrets-enabled): New variable to track the status of the Secrets API.
86         (auth-source-backend): New EIOEIO class to represent a backend.
87         (auth-source-creation-defaults): New variable to set prompt defaults
88         during token creation (see the `auth-source-search' docstring for
89         details).
90         (auth-sources): Simplify to allow a simple string as a netrc backend
91         spec.
92         (auth-source-backend-parse): Parse a backend from an `auth-sources' spec.
93         (auth-source-backend-parse-parameters): Fill in the backend parameters.
94         (auth-source-search): Main auth-source API entry point.
95         (auth-source-delete): Wrapper around `auth-source-search' for deletion.
96         (auth-source-search-collection): Helper function for searching.
97         (auth-source-netrc-parse, auth-source-netrc-normalize)
98         (auth-source-netrc-search, auth-source-netrc-create): Netrc backend.
99         Supports search, create, and delete.
100         (auth-source-secrets-search, auth-source-secrets-create): Secrets API
101         backend stubs.
102         (auth-source-user-or-password): Call `auth-source-search' but it's not
103         ready yet.
104
105 2011-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
106
107         * message.el (message-setup-1): Remove the read-only stuff, since it
108         doesn't work under XEmacs, for some reason.
109
110         * gnus-sum.el (gnus-user-date): Renamed back from
111         gnus-summary-user-date since user code refers to it.
112
113         * shr.el (shr-render-td): Store the actual background colour used.
114
115         * message.el (message-setup-1): Don't bind the constant
116         -forbidden-properties.
117         (message-setup-1): Revert previous change, since it needs to bind the
118         props to insert them.
119         (message-resend): Allow removing the read-only separator line.
120
121 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
122
123         * nnimap.el (nnimap-request-accept-article): Give an error message if
124         the APPEND wasn't successful.
125
126 2011-02-03  Adam Sjøgren  <asjo@koldfront.dk>
127
128         * gnus-start.el (gnus-get-unread-articles): Fix the call to methods
129         that have no groups.
130
131 2011-02-03  Julien Danjou  <julien@danjou.info>
132
133         * gnus-draft.el: Remove progn around gnus-draft-setup.
134
135 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
136
137         * gnus-start.el (gnus-read-active-for-groups): This function is never
138         called with a nil `infos', so clean that up.
139         (gnus-get-unread-articles): Request active files from primary/secondary
140         methods that have no groups (yet).
141
142 2011-02-03  Julien Danjou  <julien@danjou.info>
143
144         * message.el (message-setup-1): Always generate References first.
145         (message-mail): Return the return value of message-setup, not always t.
146         (message-setup-1): Insert mail-header-separator with read-only and
147         intangible properties set.
148
149         * gnus.el (gnus-summary-line-format): Add missing semi-colon for
150         user-date in docstring.
151
152         * gnus-art.el (gnus-article-jump-to-part): Remove useless sit-for.
153
154         * gnus.el (gnus-summary-line-format): Mention &user-date format in
155         docstring.
156
157         * gnus.el (gnus-user-date-format-alist): Change default value. Use
158         defcustom, with type and group. Move from gnus-util.el. Rename to
159         gnus-summary-user-date-format-alist.
160
161 2011-02-03  Glenn Morris  <rgm@gnu.org>
162
163         * nnimap.el (gnus-fetch-headers): Declare.
164
165         * nnheader.el (gnus-range-add, gnus-remove-from-range): Autoload.
166
167 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
168
169         * message.el (message-forward-make-body-digest-plain)
170         (message-followup, message-reply): Clean up things noted by Stefan.
171
172         * gnus-art.el (gnus-article-setup-buffer): Stop the date timer if
173         gnus-article-update-date-headers is nil.
174         (gnus-article-date-headers): Rip out the old -treat-date-* stuff, since
175         it didn't really work with defcustom.
176         (article-update-date-lapsed): Make sure the window start doesn't move,
177         either.
178
179 2011-02-01  Julien Danjou  <julien@danjou.info>
180
181         * mm-uu.el (mm-uu-type-alist): Add support for git format-patch diff
182         format.
183
184         * mm-decode.el (mm-inline-media-tests): Do not check for diff-mode it's
185         standard in Emacs nowadays.
186
187         * color.el (color-gradient): Add a color-gradient function.
188
189 2011-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
190
191         * message.el (message-expand-name): Don't trust the return value of
192         bbdb-complete-name.
193         (message-check-news-header-syntax): Remove unused var `start'.
194         (message-idna-to-ascii-rhs-1): Remove unused vars `rhs' and `address'.
195         (message-inhibit-body-encoding): Move to before first use.
196         (mail-abbrev-mode-regexp, Expires, User-Agent, Lines, Distribution)
197         (To, References, In-Reply-To, Newsgroups, Subject, Path, From)
198         (Organization, Message-ID, Date, mh-previous-window-config):
199         Defvar the vars using dynamic scoping.
200
201 2011-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
202
203         * shr.el (shr-render-td): Only do colours at the final rendering.
204         Should be slightly faster.
205         (shr-insert-table): Fix up TD background colours when doing the
206         vertical padding.
207
208         * gnus-art.el (article-date-ut): Protect against articles with no Date
209         header.
210         (article-update-date-lapsed): Don't use current-column to find the
211         horizontal position.  It's fragile in the presence of \003 characters.
212
213         * gnus-start.el (gnus-read-active-file-1): Remove dead parameter infos.
214
215 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
216
217         * gnus-art.el (article-transform-date): Rewrite to still work when
218         there are several rfc2822 parts.
219         (article-transform-date): Fix infinite recursion.
220         (article-date-ut): Replace infinitely many Date headers with a single
221         one when called interactively.
222
223         * nnimap.el (nnimap-wait-for-response): Wait for results in a more
224         secure manner.
225
226         * gnus-art.el (article-update-date-lapsed): Try to avoid having point
227         move around by not using save-window-excursion.  It seems to work...
228
229 2011-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
230
231         * gnus-art.el (article-make-date-line): Work for user-defined format.
232
233 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
234
235         * nntp.el (nntp-retrieve-group-data-early)
236         (nntp-finish-retrieve-group-infos): Implement the asynchronous data
237         fetching functions.
238
239         * gnus-start.el (gnus-read-active-for-groups): Read the active files
240         thoroughly for all backends that have no known groups.  This should
241         allow new nnml methods to retrieve mail.
242
243         * gnus-group.el (gnus-group-jump-to-group): Allow jumping to groups
244         that Gnus doesn't know exists again.
245
246         * gnus-art.el (gnus-article-date-lapsed-new-header): Removed.
247         (gnus-treat-date-ut): Ditto.
248         (gnus-article-update-date-header): Renamed.
249         (gnus-treat-date-local): Removed.
250         (gnus-treat-date-english): Removed.
251         (gnus-treat-date-lapsed): Removed.
252         (gnus-treat-date-combined-lapsed): Removed.
253         (gnus-treat-date-original): Removed.
254         (gnus-treat-date-iso8601): Removed.
255         (gnus-treat-date-user-defined): Removed.
256         (gnus-article-date-headers): New variable to control all the date
257         header options.
258         (article-date-ut): Rewrite to allow using the new way to format date
259         headers(s).
260
261 2011-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
262
263         * nnmail.el (nnmail-article-group): Check for a direct fancy split
264         method.
265         (nnmail-article-group): A better test for fanciness.
266
267         * nnimap.el (nnimap-request-head): Protect against not finding the
268         article by Message-ID.
269
270 2011-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
271
272         * gnus-art.el (article-update-date-lapsed): Try a better way to really
273         keep point at the "same place".
274
275 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
276
277         * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active
278         data if the group is unactivated.
279
280 2011-01-28  Julien Danjou  <julien@danjou.info>
281
282         * gnus-win.el: Remove dead function gnus-window-configuration-element.
283         (gnus-all-windows-visible-p): Remove old compatibility code.
284         (gnus-window-top-edge): Add docstring.
285
286         * gnus-group.el (gnus-group-jump-to-group): Set must match to t.
287
288 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
289
290         * gnus-int.el (gnus-request-marks): Call *-request-marks instead of the
291         older request-update-info.
292
293         * gnus-art.el (article-make-date-line): Limit the length a bit more.
294
295 2011-01-28  Daiki Ueno  <ueno@unixuser.org>
296
297         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Give
298         mml2015-signers higher precedence over mml2015-sign-with-sender.
299
300 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
301
302         * gnus-group.el (gnus-group-refresh-group): Refresh even non-visible
303         groups.  This makes the nndraft:queue group pop up if it's not already
304         there.
305
306         * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no
307         messages" logic, which was reversed.
308
309         * gnus-art.el (article-update-date-lapsed): Ensure that point stays at
310         the "same place" even if point is on the line being replaced.
311         (article-update-date-lapsed): Allow updating both the combined lapsed
312         and the lapsed headers.
313         (article-update-date-lapsed): Skip past all the X-Sent/Date headers.
314         (article-make-date-line): Limit the number of segments dynamically to
315         avoid too-long lines.
316
317 2011-01-27  Julien Danjou  <julien@danjou.info>
318
319         * mml2015.el (mml2015-epg-sign): Add and use mml2015-sign-with-sender.
320         (mml2015-epg-encrypt): Use mml2015-sign-with-sender.
321
322 2011-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
323
324         * shr.el (shr-expand-newlines, shr-previous-newline-padding-width):
325         Use plist-get instead of the cl function getf.
326
327 2011-01-27  Glenn Morris  <rgm@gnu.org>
328
329         * gnus-util.el (float-time): Get rid of compiler warning, again.
330
331 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
332
333         * shr.el (shr-put-color): Special-case background colours: Do put them
334         at the blank parts at the front of the lines.
335
336         * gnus-draft.el (gnus-draft-clear-marks): New function to be run as an
337         exit hook to nix out all data on readedness on group exit.
338
339         * gnus-util.el (float-time): If float-time is bound, always use it on
340         all Emacsen.  It's unclear why the subrp check was there.
341         (time-date): Require to make some autoload issues on XEmacs go away.
342
343         * shr.el (shr-put-color): Don't do the box padding in tables, since
344         they're already padded.
345
346 2011-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
347
348         * gnus-art.el (gnus-article-next-page): When the last line of the
349         article is displayed, scroll down once more instead of going to the
350         next article at once.
351         (article-lapsed-string): Refactor out and allow specifying how many
352         segments you want.
353         (gnus-article-setup-buffer): Start updating the lapsed header directly.
354         (gnus-article-update-lapsed-header): New variable.
355
356         * shr.el: Revert change that made headings use different-sized faces.
357         The Emacs display engine isn't advanced enough that, for instance,
358         tables can comfortably use differntly-sized faces.
359
360 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
361
362         * nnimap.el (nnimap-open-connection-1): Store the actual stream type
363         used.
364         (nnimap-login): Prefer plain LOGIN if it's enabled (since it requires
365         fewer round trips than CRAM-MD5, and it's less likely to be buggy), and
366         we're using an encrypted connection.
367
368         * proto-stream.el: Alter the interface functions to also return the
369         actual stream type used: network or tls.
370
371 2011-01-25  Julien Danjou  <julien@danjou.info>
372
373         * mm-view.el (mm-display-shell-script-inline): Fix typo in docstring.
374         (mm-display-javascript-inline): New function.
375
376         * mm-decode.el (mm-inline-media-tests): Add application/javascript
377         viewing function.
378
379 2011-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
380
381         * shr.el (shr-expand-newlines): Fix variable name.
382
383 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
384
385         * shr.el (shr-expand-newlines): Make nested boxes work.
386
387 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
388
389         * shr.el (shr-expand-newlines): Proof of concept implemantation of boxy
390         backgrounds.
391         (shr-expand-newlines): Switch to using overlays to enable kill'n'yank
392         in a more sensible manner.
393
394 2011-01-24  Teodor Zlatanov  <tzz@lifelogs.com>
395
396         * mml-smime.el (mml-smime-use): Make it a defcustom and default to 'epg
397         if EPG is loaded.
398
399 2011-01-24  Julien Danjou  <julien@danjou.info>
400
401         * shr.el: Use defface to create shr-tag-h[1-6] faces to fontify h[1-6]
402         tags.
403
404 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
405
406         * gnus-art.el (gnus-article-read-summary-keys): Don't call disabled
407         commands.
408
409         * gnus-gravatar.el (gnus-gravatar-insert): Don't move point around
410         in the article buffer.
411         (gnus-gravatar-insert): Use blank space from the current buffer to
412         avoid breaking text properties.  This makes X-Sent updating work again.
413
414         * gravatar.el (gravatar-retrieve): Be silent when retrieving.
415
416 2011-01-23  Lars Ingebrigtsen  <larsi@gnus.org>
417
418         * gnus-html.el (gnus-html-image-fetched): Kill the buffer anyway, and
419         fix the bug in url-http.el instead.
420
421         * shr.el (shr-image-fetched): Ditto.
422
423         * shr.el (shr-image-fetched): Avoid having point move in the article
424         buffer.
425
426         * gnus-html.el (gnus-html-image-fetched): Don't kill the temporary
427         buffer after being called.  It's apparently being killed by url.el, and
428         killing it made point move to end-of-buffer in a random buffer.
429
430         * shr.el (shr-image-fetched): Ditto.
431
432 2011-01-23  Julien Danjou  <julien@danjou.info>
433
434         * mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org.
435
436         * mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to
437         text/x-org.
438
439 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
440
441         * gnus-sum.el (gnus-summary-move-article): Protect against backends
442         (i.e., nnimap) returning nil as the article number.
443
444 2011-01-22  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
445
446         * flow-fill.el (fill-flowed): Make `delete-space' option correspond to
447         "DelSp" parameter in RFC3676.
448
449 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
450
451         * message.el (message-check-recipients): Display the encoded version of
452         the bogus address if they differ.
453
454         * gnus-draft.el (gnus-group-send-queue): Really refresh the queue group
455         after sending.
456
457         * gnus-agent.el (gnus-agent-send-mail): Ditto.
458
459         * gnus-group.el (gnus-group-refresh-group): New convenience function.
460
461         * gnus-draft.el (gnus-group-send-queue): Update the queue group in the
462         group buffer after sending the queue.
463
464         * gnus-agent.el (gnus-agent-send-mail): Ditto.
465
466 2011-01-22  Julien Danjou  <julien@danjou.info>
467
468         * mailcap.el (mailcap-mime-extensions): Rename text/org to text/x-org.
469
470 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
471
472         * mm-decode.el (mm-preferred-alternative-precedence): Don't bug out on
473         nested related parts.
474
475         * nnfolder.el (nnfolder-request-expire-articles): Return the list of
476         unexpired articles.  This fixes the regression that led expiry marks to
477         disappear from nnfolder groups.
478
479 2011-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
480
481         * gnus-art.el (gnus-button-alist, gnus-button-handle-info-keystrokes):
482         Don't confuse the "ret" of "retrograde" with RET.
483
484 2011-01-21  Julien Danjou  <julien@danjou.info>
485
486         * gnus-art.el (gnus-mime-display-single): Use mm-display-inline rather
487         than mm-insert-inline.
488
489 2011-01-21  Katsumi Yamaoka  <yamaoka@jpl.org>
490
491         * gnus-art.el (gnus-article-remove-images, gnus-article-show-images):
492         Widen article buffer.
493
494 2011-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
495
496         * mm-util.el (mm-find-buffer-file-coding-system): Don't forget to kill
497         the temp buffer.
498         * message.el (message-mailer-swallows-blank-line): Use with-temp-buffer.
499
500 2011-01-20  Julien Danjou  <julien@danjou.info>
501
502         * mm-decode.el (mm-inline-media-tests): Add text/x-sh.
503
504         * gnus-art.el (gnus-mime-inline-part): Use mm-display-inline rather
505         than mm-insert-inline to insert inline part: this respect
506         mm-inline-media-tests displayers.
507
508         * mm-view.el (mm-display-shell-script-inline): New function.
509
510         * mm-decode.el (mm-inline-media-tests): Add x-shellscript and x-sh.
511
512         * mm-uu.el (mm-uu-type-alist): Add org block.
513         (mm-uu-org-src-code-block-extract): New function.
514
515         * mm-view.el (mm-display-org-inline): New function.
516
517         * mm-decode.el (mm-automatic-display): Add text/org.
518
519         * mailcap.el (mailcap-mime-extensions): Add .org.
520
521 2011-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
522
523         * gnus-art.el (gnus-article-highlight): Remove argument passed to
524         gnus-article-add-buttons.
525
526 2011-01-19  Tom Rauchenwald  <sehnsucht.nach.unendlichkeit@quantentunnel.de>  (tiny change)
527
528         * spam.el (spam-spamassassin-register-with-sa-learn): Insert a full
529         From header with a date and "nobody" as the sender.
530
531 2011-01-19  Julien Danjou  <julien@danjou.info>
532
533         * gnus-art.el (gnus-article-add-buttons): Simplify condition.
534         (gnus-button-push): Remove gnus-button-entry function, it fails heavily
535         if you have the same regexp several times.
536         (gnus-button-push): Fix matching when regexp is symbol.
537
538 2011-01-15  Glenn Morris  <rgm@gnu.org>
539
540         * message.el (message-mail): A compose-mail function should
541         accept headers as strings.
542
543 2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
544
545         * message.el (message-tool-bar-gnome): Tweak tool-bar items.
546         Add :vert-only tags.
547         (message-mail): New arg RETURN-ACTION.
548         (message-return-action): New var.
549         (message-bury): Use it.
550         (message-mode): Make it buffer-local.
551         (message-send-and-exit): Always call message-bury.
552
553         * gnus-msg.el (gnus-msg-mail): New arg RETURN-ACTION.  Pass it to
554         message-mail.
555
556 2011-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
557
558         * nnimap.el (nnimap-convert-partial-article): Protect against
559         zero-length body parts.
560
561         * mm-decode.el (mm-preferred-alternative-precedence):
562         Discourage showing empty parts.
563
564         * gnus-int.el (gnus-request-accept-article): Don't try to update marks
565         and stuff if the backend didn't return the article number.  This fixes
566         an Exchange-related nnimap bug.
567
568         * gnus-sum.el (gnus-summary-next-article): Remove hack to reselect
569         group window, because it does the wrong thing when a separate frame
570         displays the group buffer.
571
572         * proto-stream.el (open-protocol-stream): Protect against the low-level
573         transport functions returning nil.
574
575 2011-01-07  Daiki Ueno  <ueno@unixuser.org>
576
577         * mml2015.el (epg-sub-key-fingerprint): Autoload.
578         (mml2015-epg-find-usable-secret-key): New function.
579         (mml2015-epg-sign): Use mml2015-epg-find-usable-secret-key instead of
580         mml2015-epg-find-usable-key (Bug#7797).
581         (mml2015-epg-encrypt): Ditto.
582
583 2011-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
584
585         * dgnushack.el (rot13-string): Fix the way to get the argument.
586
587 2011-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
588
589         * flow-fill.el (fill-flowed-encode): Do encoding citation-aware.
590
591 2011-01-03  Glenn Morris  <rgm@gnu.org>
592
593         * sieve-manage.el (sieve-manage-open): Correctly set sieve-manage-port.
594
595         * sieve.el (sieve-open-server): Give a more explicit error if
596         sieve-manage-open returns nil.  (Bug#7720)
597
598 2011-01-02  Karl Fogel  <kfogel@red-bean.com>
599
600         * gnus-msg.el (gnus-message-replyencrypt): Default to `t'.
601
602 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
603
604         * nnimap.el (nnimap-login): Prefer AUTH=CRAM-MD5, if it's available.
605         This avoids sending passwords in plain text over non-encrypted
606         channels.
607
608         * shr.el (shr-rescale-image): Display all GIF images as animated images.
609
610         * nnimap.el (nnimap-login): Refactored out into own function, and
611         implement CRAM-MD5.
612         (nnimap-wait-for-line): Refactored out.
613
614         * mm-view.el (mml-smime): Require.
615
616 2010-12-20  David Engster  <deng@eml.cc>
617
618         * mm-view.el (mm-view-pkcs7-decrypt): If mml-smime-use is set to 'epg,
619         use EPG to decrypt S/MIME messages instead of openssl.
620
621 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
622
623         * nnimap.el (nnimap-request-group): Avoid double SELECT on `M-g'.
624
625         * gnus-group.el (gnus-group-kill-group): Don't try to update the group
626         status is the group clearly is unreachable.
627
628         * auth-source.el (auth-source-create): Add the optional second
629         parameter to `local-variable-p' to be compatible with XEmacs.
630
631 2011-01-02  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
632
633         * nnml.el (nnml-request-article): Allow requesting by Message-ID to
634         work when using a compressed nnml folder.
635
636 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
637
638         * gnus-sum.el (gnus-select-newsgroup): Don't propagate marks to
639         backends after sanitising on entry, because this never makes sense:
640         If the articles have gone missing, then the data no longer exists on
641         the backend, and if they haven't, then Gnus is wrong, and shouldn't
642         overwrite anything anyway.
643
644         * shr.el (shr-insert-document): Bind shr-width dynamically to
645         window-width if it's nil.
646
647 2010-12-30  Tassilo Horn  <tassilo@member.fsf.org>
648
649         * shr.el (shr-width, shr-insert-document): Allow nil as shr-width value
650         with the meaning of using the full emacs window width for rendering.
651
652 2010-12-27  Daiki Ueno  <ueno@unixuser.org>
653
654         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Take care the
655         case when sender is not given.
656
657 2010-12-23  Julien Danjou  <julien@danjou.info>
658
659         * gnus-gravatar.el (gnus-gravatar-transform-address): Set
660         `mail-extr-ignore-realname-equals-mailbox-name' to nil when extracting
661         the addresses, otherwise we might misplaced the gravatar.
662
663 2010-12-21  Daiki Ueno  <ueno@unixuser.org>
664
665         * mml1991.el (pgg-sign-region, pgg-encrypt-region):
666         * gnus-art.el (pgg-snarf-keys-region): Autoload since PGG is now
667         obsolete in Emacs.
668
669 2010-12-20  Julien Danjou  <julien@danjou.info>
670
671         * gnus-util.el (gnus-rescale-image): Revert last change.
672
673 2010-12-17  Chong Yidong  <cyd@stupidchicken.com>
674
675         * binhex.el: Improve commentary (Bug#7482).
676
677 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
678
679         * gnus-group.el (gnus-group-delete-articles): New command.
680
681 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
682
683         * nnir.el (nnir-mode): Make sure 'gnus-registry-install is bound.
684
685 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
686
687         * gnus-sum.el (gnus-get-newsgroup-headers): Revert the last change
688         here, since it's up to the backends to do CRLF removal if their
689         protocol has it.
690
691         * nnimap.el (nnimap-retrieve-headers): Remove CRLF from the headers.
692
693 2010-12-17  Julien Danjou  <julien@danjou.info>
694
695         * gnus-util.el (gnus-rescale-image): Allow to resize images even if
696         they are from file. Can also scale up.
697
698 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
699
700         * gnus-sum.el (gnus-summary-refer-thread): Simplify code. Restore
701         gnus-use-agent.
702         (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
703
704         * nnir.el (nnir-get-active): Ignore nnir-ignored-newsgroups if null.
705
706 2010-12-17  Julien Danjou  <julien@danjou.info>
707
708         * gravatar.el (gravatar-retrieve-synchronously): New function.
709         (gravatar-get-data): Make more robust.
710
711 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
712
713         * lpath.el: Bind epa-file-encrypt-to for Emacs 22 and XEmacs.
714
715 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
716
717         * nnimap.el (nnimap-wait-for-response): Fix the end-point calculation
718         to really consider the last line.
719
720 2010-12-16  Daiki Ueno  <ueno@unixuser.org>
721
722         * auth-source.el (auth-source-gpg-encrypt-to): New variable to set the
723         list of recipient keys, or use symmetric encryption if not a list.
724         (auth-source-create): Use it to make `epa-file-encrypt-to' local for an
725         EPA override, replacing the call to `netrc-store-data'.
726
727 2010-12-16  Dan Davison  <dandavison7@gmail.com>  (tiny change)
728
729         * gnus-srvr.el: Avoid passing nil regexp argument to
730         delete-matching-lines.
731
732 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
733
734         * gnus-html.el (gnus-html-schedule-image-fetching): Make sure the HTML
735         fetching stops when Gnus exits.
736
737         * nnfolder.el (nnfolder-save-all-buffers): Refactor out into its own
738         function.
739         (nnfolder-request-expire-articles): Save all the buffers after doing
740         expiry.
741
742         * nnmail.el (nnmail-expiry-target-group): Revert the "all articles are
743         the last article", since that led to serious performance regressions
744         when expiring nnml groups.
745
746 2010-12-16  Andrew Cohen  <cohen@andy.bu.edu>
747
748         * nnir.el: Improve customizations.
749
750 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
751
752         * gnus-start.el (gnus-subscribe-newsgroup): Notify the backend.
753
754         * gnus-group.el (gnus-group-kill-group): Notify the backend that the
755         group has been killed.
756         (gnus-group-yank-group): Ditto.
757
758         * gnus-srvr.el (gnus-browse-unsubscribe-group): Ditto.
759
760         * nnimap.el (nnimap-request-update-group-status): New function.
761
762         * gnus-int.el (gnus-request-update-group-status): New interface
763         function.
764
765         * gnus-sum.el (gnus-summary-push-marks-to-backend): Fix the logic for
766         copying read-ness to the backends.
767
768         * nnimap.el (nnimap-quirk): New function.
769         (nnimap-retrieve-group-data-early): Use it.
770         (nnimap-quirks): New alist.
771
772 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
773
774         * shr.el (shr-insert): Set shr-start after deleting trailing space;
775         don't delete it within indentation.
776
777 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
778
779         * nnimap.el (nnimap-wait-for-response): Always look (at least) at the
780         previous line.
781
782 2010-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
783
784         * nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the
785         QRESYNC command by deleting a superfluous space which broke Cyrus
786         servers.  This change will break other servers that are buggy the other
787         way around.
788
789 2010-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
790
791         * spam.el: Reindent and fix long lines.
792         (spam-copy-or-move-routine): Exclude invalid move destinations.
793
794 2010-12-14  Andrew Cohen  <cohen@andy.bu.edu>
795
796         * nnir.el (nnir-mode): Don't install registry hooks if user hasn't
797         installed the registry.
798
799 2010-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
800
801         * dgnushack.el (rot13-string): New macro for XEmacs.  netrc.el uses it.
802
803 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
804
805         * nnir.el (nnir-run-gmane): Better check for gmane groups: error out if
806         groupname doesn't contain "gmane".
807
808 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
809
810         * netrc.el (netrc-point-at-eol): Remove the unused netrc-point-at-old
811         and netrc-bound-and-true-p bindings.
812         (netrc-parse): Cache the netrc contents.
813
814         * gnus-start.el (gnus-matches-options-n): Fix typo in last change.
815         (gnus-1): Don't create the nndrafts group twice.
816         (gnus-setup-news): There's no need to read the active file here, since
817         that's done again later on a per-backend basis.
818         (gnus-start-draft-setup): Make sure that the new group is started out
819         empty.
820
821         * gnus-agent.el (gnus-agentize): Don't create the queue group
822         automatically on startup.  It'll be created later, if needed.
823
824         * gnus-start.el (gnus-auto-subscribed-groups): Add nnimap to the list
825         of automatically subscribed groups.
826         (gnus-auto-subscribed-categories): New variable.
827         (gnus-matches-options-n): Use it.
828         (gnus-default-subscribed-newsgroups): Remove unused variable.
829         (gnus-start-draft-setup): Message a bit less.
830
831 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
832
833         * nnir.el (nnir-run-imap): Return article list in order of increasing
834         UID.
835
836 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
837
838         * gnus-sum.el (gnus-summary-enter-digest-group):
839         Mention gnus-auto-select-on-ephemeral-exit.
840
841         * proto-stream.el (proto-stream-open-network-only): Fix the calling
842         convention of the network-only option.
843
844 2010-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
845
846         * proto-stream.el (proto-stream-open-network-only): New function to
847         have a way to specify non-STARTTLS upgrade connections.
848
849 2010-12-10  Julien Danjou  <julien@danjou.info>
850
851         * gnus-gravatar.el (gnus-gravatar-transform-address): Fix error when
852         email address is nil.
853
854         * message.el (message-bogus-recipient-p): Set address to "" if nil.
855
856 2010-12-10  Andrew Cohen  <cohen@andy.bu.edu>
857
858         * nnir.el (nnir-request-expire-articles): Ignore expiry except for
859         deletion.
860         (nnir-run-imap): Only need to parse list once.
861
862 2010-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
863
864         * shr.el (shr-tag-script): Ignore <script>.
865         (shr-tag-label): Add <label> support.
866
867 2010-12-09  Katsumi Yamaoka  <yamaoka@jpl.org>
868
869         * mm-util.el (mm-ucs-to-char): Use eval-and-compile.
870
871         * shr.el (shr-image-displayer): Work for images lined side by side.
872
873 2010-12-08  Robert Pluim  <rpluim@gmail.com>
874
875         * gnus-demon.el (gnus-demon-init): Call run-with-timer with an integer
876         parameter, since XEmacs doesn't accept t as a parameter.
877
878 2010-12-08  Andrew Cohen  <cohen@andy.bu.edu>
879
880         * nnir.el (nnir-retrieve-headers): Use rassq when comparing article
881         ids.
882         (nnir-run-gmane): Simplify groupspec formatting.
883         (nnir-request-expire-articles): New function.
884
885 2010-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
886
887         * nnimap.el (nnimap-parse-flags): Tweak VANISHED regexp to avoid regexp
888         overflow, possibly.
889
890         * shr.el (shr-tag-table-1): Use bg/gfcolor specs on tables.
891         (shr-render-td): Handle td style="" better.
892         (shr-tag-table): Use the color from the style sheet.
893         (shr-render-td): Make sure we copy over all the overlays, too.
894
895 2010-12-07  Andrew Cohen  <cohen@andy.bu.edu>
896
897         * nnir.el (nnir-run-gmane): Restore sub-optimal test for gmane server.
898         (nnir-request-article): Improve article retrieval.
899
900 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
901
902         * mm-util.el (mm-extra-numeric-entities): New variable.
903
904         * mm-url.el (mm-url-decode-entities):
905         * mm-decode.el (mm-shr): Use it to decode extra numeric entities.
906
907         * lpath.el: Fbind completion-at-point for Emacs 22 and XEmacs.
908
909 2010-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
910
911         * message.el: Use completion-at-point.
912         (message-completion-function): New fun, extracted from message-tab.
913         (message-mode): Use it for completion-at-point-functions.
914         (message-tab): Use it and completion-at-point.
915
916 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
917
918         * shr.el (shr-find-fill-point): Don't break a line after a kinsoku-bol
919         character if a non-breakable character follows.
920
921 2010-12-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
922
923         * proto-stream.el (proto-stream-open-tls): Return nil if we don't get
924         any stream.
925
926         * shr.el (shr-tag-font): Colorize the region.
927         (shr-tag-body): Ditto.
928         (shr-tag-font): Actually let the styles be inherited instead of
929         overwriting them.
930         (shr-tag-font): Get the background color right.
931         (shr-tag-style): Ignore all <style> tags for the moment.
932
933         * gnus-int.el (gnus-request-thread): Rework to take a header instead of
934         a Message-ID to avoid having nnimap depend on gnus-sum.
935
936         * shr.el (shr-descend): Only colorize something if we have a node that
937         sets colors.
938
939 2010-12-06  Julien Danjou  <julien@danjou.info>
940
941         * shr.el (shr-render-td): Render td content with shr-descend, so style
942         will be applied to <td> too.
943         (shr-colorize-region): Colorize region even if we only have a background.
944         (shr-tag-body): Fix color and background color inheritance.
945         Do not recolorize after shr-generic.
946         (shr-tag-font): Let shr-generic colorize via inheritance.
947
948 2010-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
949
950         * shr.el (shr-find-fill-point): Don't regard apostrophe as kinsoku-bol.
951
952 2010-12-06  Andrew Cohen  <cohen@andy.bu.edu>
953
954         * nnir.el (nnir-request-move-article): Remove obsolete code.
955
956 2010-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
957
958         * gnus-util.el (gnus-macroexpand-all): Use eval-and-compile.
959
960 2010-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
961
962         * gnus-sum.el (gnus-summary-respool-article): The completion function
963         expects a list instead of an alist.
964
965         * nntp.el (nntp-snarf-error-message): nnheader-report takes a format
966         string as the parameter.
967
968         * gnus.el (gnus-valid-select-methods): Allow nnimap to respool.
969
970         * shr.el (shr-stylesheet): New dynamic variable for cascading the
971         styles.
972         (shr-colorize-region): New function.
973         (shr-insert-background-overlay): Remove.
974         (shr-render-td): Background setting should be taken care of on a higher
975         level.
976         (shr-tag-body): Use post-hoc colorizations.
977         (shr-tag-body): Set up a style sheet based on bgcolor/fgcolor.
978         (shr-put-color-1): Don't overwrite old colors.
979         (shr-colorize-region): When the background color isn't explicit, use
980         a fixed background.
981
982         * gnus-util.el (gnus-output-to-mail): Require nnmail before using
983         nnmail variables.
984
985 2010-12-05  Bjørn Mork  <bjorn@mork.no>
986
987         * nnimap.el (nnimap-process-expiry-targets): Avoid downloading articles
988         unless necessary.
989
990 2010-12-05  Andrew Cohen  <cohen@andy.bu.edu>
991
992         * nnir.el (nnir-run-gmane): Use more careful test for gmane nntp
993         server.
994
995 2010-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
996
997         * gnus-html.el (gnus-html-put-image): Use widget instead of local maps
998         so that TAB works.
999
1000         * gnus-sum.el (gnus-summary-show-article): Reverse the meanings of `C-u
1001         C-u g' and `C-u g' so that `C-u g' does what it traditionally did.
1002
1003         * shr.el (shr-urlify): Show the URL before the title to avoid
1004         misleading URLs.
1005
1006 2010-12-04  Adam Sjøgren  <asjo@koldfront.dk>
1007
1008         * shr.el (shr-urlify): Display the title in <a> tags.
1009
1010 2010-12-04  Andrew Cohen  <cohen@andy.bu.edu>
1011
1012         * nnir.el (nnir-categorize): Replace mapcar with mapc.
1013
1014 2010-12-03  Andrew Cohen  <cohen@andy.bu.edu>
1015
1016         * nnir.el: Rearrange code to allow macros to be autoloaded by
1017         gnus-sum.el.
1018         (nnir-retrieve-headers-override-function): Make this variable
1019         customizable.
1020         (nnir-retrieve-headers): Remove obsolete subject-mangling code.
1021
1022         * gnus-sum.el (nnir-article-group,nnir-article-rsv): Autoload macros
1023         from nnir.el.
1024
1025 2010-12-03  Julien Danjou  <julien@danjou.info>
1026
1027         * gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
1028
1029 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1030
1031         * gnus-util.el (gnus-macroexpand-all): Don't modify argument;
1032         allow optional argument `environment'.
1033
1034 2010-12-03  Glenn Morris  <rgm@gnu.org>
1035
1036         * mm-extern.el (message-goto-body): Update declaration.
1037
1038 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1039
1040         * gnus-util.el (gnus-macroexpand-all): New function.
1041
1042         * gnus-sum.el (gnus-summary-line-format-alist): Use gnus-macroexpand-all
1043         instead of macroexpand-all that is unavailable in XEmacs.
1044
1045 2010-12-02  Andrew Cohen  <cohen@andy.bu.edu>
1046
1047         * nnir.el (nnir-summary-line-format): New variable.
1048         (nnir-mode): Use it.
1049         (nnir-artlist-*,nnir-aritem-*): Reimplement as macros.
1050         (nnir-article-ids): Reimplement as defsubst.
1051         (nnir-retrieve-headers): Don't mangle the subject header.
1052         (nnir-run-imap): Use 100 as RSV score.
1053         (nnir-run-find-grep): Fix for full server searching.
1054         (nnir-run-gmane): Better restriction to gmane groups.
1055
1056         * gnus-sum.el (gnus-summary-line-format-alist): Add specs for nnir
1057         summary buffers.
1058
1059 2010-12-02  Julien Danjou  <julien@danjou.info>
1060
1061         * gnus-win.el (gnus-configure-frame): Remove old compatibility code.
1062
1063         * gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
1064
1065         * gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting
1066         support.
1067
1068 2010-12-01  Andrew Cohen  <cohen@andy.bu.edu>
1069
1070         * nnir.el: Update to handle the registry better.
1071         (autoload): Silence byte-compiler.
1072         (nnir-open-server): Add a hook for nnir groups.
1073         (nnir-request-move-article): Don't mangle the header. Better to use
1074         formating variables (which will be added in the future).
1075         (nnir-registry-action): Update the registry using the original article
1076         group name.
1077         (nnir-mode): Install nnir-specific hooks for updating the registry.
1078
1079         * gnus-sum.el
1080         (gnus-article-original-subject,gnus-newsgroup-original-name):
1081         Remove obsolete variables.
1082         (gnus-summary-move-article): Remove use of obsolete variables.
1083         (gnus-summary-local-variables): Make move and delete hooks local to
1084         summary buffers.
1085
1086 2010-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1087
1088         * rtree.el: New file.
1089
1090 2010-12-01  Julien Danjou  <julien@danjou.info>
1091
1092         * message.el (message-user-organization): Do not use
1093         gnus-local-organization.
1094
1095         * gnus.el: Remove gnus-local-organization.
1096
1097         * gnus-msg.el: Remove nastygram thing.
1098
1099 2010-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
1100
1101         * nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark
1102         funcall.
1103
1104 2010-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1105
1106         * gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of
1107         names.
1108
1109         * shr.el (shr-find-fill-point): Don't break line between kinsoku-bol
1110         characters.
1111
1112         * gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding
1113         to t of inhibit-read-only since it is inside gnus-with-article-headers.
1114         Suggested by Štěpán Němec <stepnem@gmail.com>.
1115         (gnus-gravatar-transform-address): Use mail-extract-address-components
1116         that supports non-ASCII names rather than mail-header-parse-addresses.
1117
1118 2010-11-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1119
1120         * proto-stream.el (open-protocol-stream): All starttls connections are
1121         handled by the network handler.
1122
1123 2010-11-30  Julien Danjou  <julien@danjou.info>
1124
1125         * nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
1126         (nnimap-open-connection-1): Fix PREAUTH.
1127
1128         * gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
1129
1130 2010-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1131
1132         * shr.el (shr-char-breakable-p, shr-char-nospace-p)
1133         (shr-char-kinsoku-bol-p, shr-char-kinsoku-eol-p): New macros.
1134         (shr-insert): Use them.
1135         (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
1136
1137 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
1138
1139         * nnir.el (nnir-request-move-article): Bail out if original group
1140         doesn't support article moves.
1141         (nnir-get-active): Improve active list retrieval.
1142
1143 2010-11-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1144
1145         * shr.el (shr-find-fill-point): Don't break before apostrophes.
1146
1147 2010-11-29  Binjo  <binjo.cn@gmail.com>  (tiny change)
1148
1149         * nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't
1150         seem to accept strings-with-numbers as port numbers,
1151
1152 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
1153
1154         * gnus-sum.el (gnus-summary-delete-article): If delete fails don't
1155         change the registry.
1156
1157 2010-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
1158
1159         * nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of
1160         delete-dups that is not available in XEmacs 21.4.
1161
1162         * mm-util.el (mm-delete-duplicates): Add comment.
1163
1164 2010-11-28  Andrew Cohen  <cohen@andy.bu.edu>
1165
1166         * nnir.el (nnir-ignored-newsgroups): New variable.
1167         (nnir-get-active): Use it.
1168
1169 2010-11-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1170
1171         * proto-stream.el (proto-stream-open-network): Add some comments.
1172
1173         * nntp.el (nntp-open-connection): Provide a :success condition.
1174
1175         * nnimap.el (nnimap-open-connection-1): Ditto.
1176
1177         * proto-stream.el (proto-stream-open-network): See what the response to
1178         the STARTTLS command is.
1179
1180         * nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for
1181         backwards compatibility).
1182         (nnimap-open-connection-1): Really respect nnimap-server-port.
1183
1184         * proto-stream.el (proto-stream-open-network): When doing opportunistic
1185         TLS upgrades we don't really care about the identity of the peer.
1186         (proto-stream-open-network): Force starttls.el to use gnutls-cli, since
1187         that what we've checked for.
1188         (proto-stream-always-use-starttls): Only default to t if
1189         open-gnutls-stream exists.
1190         (proto-stream-open-network): If STARTTLS failed, then just open a
1191         normal connection.
1192         (proto-stream-open-network): Wait until the greeting before doing
1193         STARTTLS.
1194
1195         * nntp.el (nntp-open-connection): Report what the connection error is.
1196
1197         * proto-stream.el (open-protocol-stream): Rename from
1198         open-proto-stream.
1199
1200 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1201
1202         * nnimap.el (nnimap-stream): Change default to `undecided'.
1203         (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl
1204         first, and then network.
1205         (nnimap-open-connection-1): Respect nnimap-server-port.
1206         (nnimap-open-connection): Be more backwards-compatible.
1207
1208         * proto-stream.el (proto-stream-always-use-starttls): New variable.
1209         (proto-stream-open-starttls): De-duplicate the starttls code.
1210         (proto-stream-open-starttls): Folded back into the main function.
1211         (proto-stream-open-network): Fix typo in the gnutls path.
1212         (proto-stream-command): Refactor out.
1213
1214         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
1215
1216         * proto-stream.el (proto-stream-open-starttls): Actually implement the
1217         starttls.el STARTTLS.
1218
1219         * color.el (color-lab->srgb): Fix function call name.
1220
1221         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
1222         if we're using tls.el.
1223         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
1224         built in, then don't try to establish a STARTTLS connection.
1225
1226         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
1227         servers.
1228
1229         * proto-stream.el (open-proto-stream): Use network, not stream.
1230         (open-proto-stream): Add a way to specify what the end of a command is.
1231
1232         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
1233         connections types.
1234         (nntp-open-network-stream): Remove.
1235         (nntp-open-ssl-stream): Remove.
1236         (nntp-open-tls-stream): Remove.
1237         (nntp-ssl-program): Remove.
1238
1239         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
1240
1241 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
1242
1243         * nnir.el: Fix typos.
1244         (nnir-retrieve-headers-override-function): Rename variable to reflect
1245         new semantics.
1246         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
1247         macros.
1248         (nnir-request-article, nnir-request-move-article): Use them.
1249         (nnir-categorize): New function.
1250         (nnir-run-query): Use it.
1251         (nnir-retrieve-headers): Rewrite to batch header retrieval.
1252         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
1253         sorted.
1254         (nnir-group-full-name): Use gnus-group-full-name instead.
1255         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
1256         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
1257
1258 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1259
1260         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
1261
1262         * proto-stream.el: New library to provide protocol-specific
1263         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
1264         protocols.
1265         (open-proto-stream): Complete the documentation.
1266         (proto-stream-open-network): Fix some typos.
1267
1268         * nnimap.el (nnimap-open-connection): Use it.
1269
1270 2010-11-27  Yuri Karaban  <tech@askold.net>  (tiny change)
1271
1272         * pop3.el (pop3-open-server): Read server greeting before starting TLS
1273         negotiation.
1274
1275 2010-11-26  Julien Danjou  <julien@danjou.info>
1276
1277         * color.el: Rename various rgb functions to srgb.
1278
1279 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1280
1281         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
1282         names.
1283
1284 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
1285
1286         * shr.el (shr-insert): Revert last change.
1287         (shr-find-fill-point): Never leave point being at bol;
1288         relax the kinsoku limitation when rendering tables.
1289
1290 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1291
1292         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
1293         results from -accept-article.
1294
1295         * shr-color.el: Require cl when compiling.
1296
1297         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
1298         checkin.
1299
1300         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
1301
1302         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
1303
1304         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
1305         'add and 'delete to set backend marks.
1306
1307         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
1308
1309         * nnheader.el (nnheader-update-marks-actions): Refactor out.
1310
1311         * nntp.el (nntp-request-set-mark): Use it.
1312
1313         * nnfolder.el (nnfolder-request-set-mark): Ditto.
1314
1315         * nnml.el (nnml-request-set-mark): Ditto.
1316
1317         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
1318         introduces regressions in article selection.
1319         (nnimap-find-uid-response): New function.
1320         (nnimap-request-accept-article): Use the UID returned, if any.
1321         (nnimap-request-move-article): Use the UID returned, if any.
1322         (nnimap-get-groups): Reimplement to work with folded lines.
1323         (nnimap-find-uid-response): The UID is the last element in the list.
1324         (nnimap-request-set-mark): Extend syntax with 'set.
1325
1326         * nnml.el (nnml-request-set-mark): Ditto.
1327
1328         * nnfolder.el (nnfolder-request-set-mark): Ditto.
1329
1330         * nntp.el (nntp-request-set-mark): Ditto.
1331
1332 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1333
1334         * message.el (message-called-interactively-p): A temporary macro.
1335         (message-goto-body): Use it temporarily.
1336
1337 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1338
1339         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
1340         (nnimap-last-response-string): Unfold quoted lines, if they exist.
1341         (nnimap-last-response-string): Fix last unfolding fix.
1342
1343 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1344
1345         * shr.el (shr-insert): Fix the way to fold lines.
1346
1347 2010-11-25  Julien Danjou  <julien@danjou.info>
1348
1349         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex
1350
1351         * color.el: Rename from color-lab.el
1352         (color-rgb->hex): Add.
1353         (color-complement): Add.
1354         (color-complement-hex): Add.
1355
1356         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
1357
1358 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1359
1360         * shr-color.el (shr-color-visible): Don't bug out if the colour names
1361         don't exist.
1362
1363 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1364
1365         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
1366         assuming that article displaying or another mml-preview may be
1367         interrupted for an error or for the like.
1368
1369         * shr.el (shr-get-background): Fix argument name.
1370
1371 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1372
1373         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
1374
1375         * gnus-sum.el (gnus-summary-include-articles): New function.
1376
1377         * message.el (message-goto-body): called-interactively-p needs a
1378         parameter, so use `any'.
1379
1380         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
1381         clear marks before moving, since they're synced from the Gnus side
1382         first.
1383
1384         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
1385         (gnus-summary-move-article): Copy over all marks before moving, so that
1386         IMAP doesn't think a new article has arrived.
1387
1388 2010-11-24  Julien Danjou  <julien@danjou.info>
1389
1390         * shr.el (shr-insert-background-overlay): Fix typo.
1391         (shr-render-td): Copy the background before rendering.
1392
1393         * shr-color.el (shr-color-visible): Fix docstring.
1394
1395         * shr.el (shr-tag-table): Add bgcolor support.
1396         (shr-render-td): Add bgcolor support.
1397         (shr-get-background): Add.
1398         (shr-insert-foreground-overlay): Use shr-get-background.
1399
1400         * message.el (message-goto-body): Use called-interactively-p.
1401         (message-in-body-p): message-goto-body returns point.
1402
1403 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1404
1405         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
1406         Fixes something or other in Emacs 23, and is backwards compatible.
1407
1408         * message.el (message-goto-body): Remove the <#secure special-casing,
1409         which is too special.
1410
1411         * shr.el (shr-parse-style): Drop !important from styles.
1412
1413 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
1414
1415         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
1416         this function to return incorrect results when calling it with an
1417         explicit article argument different from
1418         (gnus-summary-article-number).
1419
1420 2010-11-24  Julien Danjou  <julien@danjou.info>
1421
1422         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
1423         (shr-tag-body): Add background support.
1424         (shr-descend): Add background support.
1425         (shr-tag-title): Add.
1426
1427         * shr-color.el (shr-color-visible): Really return original background
1428         if fixed.
1429
1430 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1431
1432         * shr.el (shr-color-check): Protect against non-existant colour names.
1433
1434 2010-11-24  Julien Danjou  <julien@danjou.info>
1435
1436         * color-lab.el: Require 'cl when compiling.
1437
1438         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
1439
1440         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
1441         matched part.
1442
1443         * color-lab.el: Fix all expt calls to use float type.
1444
1445 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
1446
1447         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
1448         expression to shr-color-check as is.
1449
1450         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
1451
1452         * color-lab.el: Add coding cookie.
1453         (float-pi): Use eval-and-compile.
1454
1455         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
1456         compiled for Emacsen having no `libxml-parse-html-region' support.
1457
1458 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1459
1460         * shr.el (shr-insert-color-overlay): Split stuff like
1461         "#444444 !important" to find the real colour.
1462         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
1463         parse <font color="red"> entries.
1464
1465 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
1466
1467         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
1468         point when parsing headers.
1469
1470         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
1471         is positioned properly when parsing headers.
1472
1473 2010-11-23  Julien Danjou  <julien@danjou.info>
1474
1475         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
1476
1477         * shr-color.el (shr-color->hexadecimal): Add support for color names.
1478
1479         * shr.el (shr-parse-style): Replace \n with space in style parsing.
1480
1481         * shr-color.el (shr-color-hsl-to-rgb-fractions):
1482         Use shr-color-hue-to-rgb.
1483         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
1484
1485 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1486
1487         * shr.el (shr-color->hexadecimal): Autoload.
1488         (shr-descend): Add color to all tags.
1489
1490 2010-11-22  Julien Danjou  <julien@danjou.info>
1491
1492         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
1493         shr-color->hexadecimal.
1494
1495         * shr-color.el (shr-color->hexadecimal): Add converting functions for
1496         RGB() or HSL() color representation.
1497
1498         * shr.el (shr-tag-font): Add.
1499         (shr-tag-color-check): New function to get better colors.
1500         (shr-tag-insert-color-overlay): Factorize code between tag-font and
1501         tag-span.
1502
1503         * shr-color.el: New file.
1504
1505         * color-lab.el: New file.
1506
1507         * gnus-art.el (gnus-url-mailto): Do not downcase args.
1508
1509 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
1510
1511         * nnir.el: Fix typo in comments.
1512         (nnir-run-imap): Simplify code. No need to reverse artlist.
1513         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
1514
1515 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1516
1517         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
1518
1519         * nnimap.el (nnimap-get-capabilities): Refactor out.
1520         (nnimap-open-connection): Re-request capabilities after STARTTLS.
1521
1522 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
1523
1524         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
1525         appearing when `mm-uu-hide-markers' is nil.
1526
1527 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1528
1529         * nnimap.el (nnimap-unselect-group): Make into its own function.
1530         (nnimap-request-rename-group): Unselect group before renaming.
1531         This had gotten lost somewhere.
1532         (nnimap-request-accept-article): Keep track of examined groups, and
1533         unselect the group before APPENDing to read-only groups.
1534         (nnimap-request-move-article): Clear flags before moving so that they
1535         can be re-set later.
1536
1537 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1538
1539         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
1540         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
1541
1542 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1543
1544         * gnus-art.el (gnus-mime-display-single)
1545         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images)
1546         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
1547         parameter.
1548
1549 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1550
1551         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
1552         (shr-table-vertical-line): New variable.
1553         (shr-insert-table): Use it.
1554
1555 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1556
1557         * gnus-html.el (gnus-html-wash-images): Don't display images if
1558         gnus-inhibit-images is non-nil; register displayer for cid images.
1559         (gnus-html-display-image): Work for cid image.
1560         (gnus-html-insert-image): Allow arguments.
1561         (gnus-html-put-image): Inhibit read-only.
1562         (gnus-html-prefetch-images): Don't prefetch images if
1563         gnus-inhibit-images is non-nil.
1564
1565 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1566
1567         * shr.el (shr-put-image): Break lines when inserting big pictures.
1568
1569 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
1570
1571         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
1572         sender, thanks Katsumi Yamaoka.
1573
1574 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
1575
1576         * nnir.el (nnir-run-imap): Reverse the article list for each group
1577         rather than the whole list.
1578
1579 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1580
1581         * shr.el (shr-image-displayer): Protect function against non-existent
1582         image source.
1583
1584         * gnus-art.el (gnus-inhibit-images): New user option.
1585         (gnus-mime-display-single): Don't display image if it is non-nil.
1586
1587         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
1588         gnus-inhibit-images.
1589
1590         * shr.el (shr-image-displayer): New function.
1591         (shr-tag-img): Use it.
1592
1593 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
1594
1595         * mml2015.el (mml2015-epg-sign): Use From header.
1596
1597 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1598
1599         * gnus-html.el (gnus-html-wash-images): Register a displayer.
1600
1601         * gnus-util.el (gnus-find-text-property-region): Return markers.
1602
1603         * shr.el (shr-tag-img): Put a displayer in the text property.
1604
1605         * gnus-util.el (gnus-find-text-property-region): New utility function.
1606
1607         * gnus-html.el (gnus-html-display-image): Make the alt optional.
1608         (gnus-html-show-images): Remove.
1609
1610         * gnus-art.el (gnus-article-show-images): New, more general function.
1611
1612         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
1613         image url text properties.
1614
1615         * shr.el: Ditto.
1616
1617         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
1618         gnus-agent-auto-agentize-methods is set.  Which it isn't.
1619
1620 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1621
1622         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
1623         work for two or more articles.
1624
1625 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1626
1627         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
1628         divide an image that's in an html article to two or more when washing
1629         non-ASCII characters in alt text of it.
1630
1631 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1632
1633         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
1634         smime-decrypt-region using function argument.
1635         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
1636
1637         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
1638
1639         * smime.el (smime-decrypt-region): Catch it.
1640
1641 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1642
1643         * smime.el (smime-mode-map): Move initialization into declaration.
1644         (gnus-run-mode-hooks): Don't autoload.
1645         (smime-mode): Use define-derived-mode.
1646
1647 2010-11-11  Glenn Morris  <rgm@gnu.org>
1648
1649         * smime.el (from): Restrict declaration to XEmacs.
1650
1651         * nnir.el (gnus-group-topic-name): Autoload.
1652
1653 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1654
1655         * shr.el (shr-insert): Don't break long line if it is because of
1656         kinsoku-bol characters in the line end.
1657
1658 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
1659
1660         * nnir.el (nnir-request-move-article): Fix to provide original group
1661         and subject.
1662         (nnir-warp-to-article): Don't fail on articles whose headers haven't
1663         been retrieved.
1664
1665         * gnus-sum.el (gnus-summary-move-article): Use original group and
1666         subject for virtual articles such as those in an nnir summary buffer.
1667
1668 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1669
1670         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
1671         least 21.5).
1672
1673         * smime.el (from): Declare it again for XEmacs.
1674
1675 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1676
1677         * message.el (message-resend): Don't disable encoding unless it's
1678         already encoded.
1679
1680         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
1681         low-numbered articles.
1682
1683 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1684
1685         * rfc2047.el (rfc2047-syntax-table): Simplify.
1686
1687         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
1688
1689         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
1690         set-char-table-range for XEmacs.
1691
1692 2010-11-10  Glenn Morris  <rgm@gnu.org>
1693
1694         * time-date.el (time-to-seconds): Always an alias on Emacs,
1695         never a real function.
1696         (with-no-warnings): Remove compat stub, now unused.
1697         (time-less-p): Doc fix.
1698         (time-to-number-of-days): Simplify.
1699
1700         * smime.el (from): Remove unused declaration.
1701
1702         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
1703         (gnus-float-time): On Emacs, always an alias.
1704
1705         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
1706         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
1707
1708 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1709
1710         * dgnushack.el: Don't use ignore-errors in the top level form since it
1711         is unavailable in XEmacs even if cl is loaded.
1712
1713         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
1714
1715 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1716
1717         * shr.el (browse-url-mailto): Autoload.
1718
1719         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
1720
1721         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
1722         regexp doesn't need quoting.
1723
1724 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
1725
1726         * message.el (message-subject-trailing-was-ask-regexp)
1727         (message-subject-trailing-was-regexp): Match was: in addition to was.
1728
1729 2010-11-09  Glenn Morris  <rgm@gnu.org>
1730
1731         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
1732         (nnbabyl-check-mbox): Use point-at-bol.
1733
1734 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1735
1736         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
1737
1738         * message.el (message-mailto): New function.
1739         (message-mailto): Should accept other parameters.
1740         (message-mailto): Remove since it duplicates browse-url-mailto
1741         functionality.
1742
1743 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1744
1745         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
1746         methods.
1747         (gnus-read-active-file): Ditto.
1748
1749         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
1750         ": " from the prompt.
1751         (gnus-group-make-group): Ditto.
1752
1753 2010-11-07  Glenn Morris  <rgm@gnu.org>
1754
1755         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
1756         (gnus-bookmark-kill-line): Use point-at-eol.
1757
1758 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1759
1760         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
1761         asterisks in From header.
1762
1763 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1764
1765         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
1766         string to avoid making the From headers syntactically invalid.
1767
1768         * message.el (message-send-mail): Don't insert courtesy messages if the
1769         message already has List-Post and List-ID messages.
1770
1771 2010-11-06  Glenn Morris  <rgm@gnu.org>
1772
1773         * gnus-art.el (gnus-treat-article): Give dynamic local variables
1774         `condition', `type', `length' a prefix.
1775         (gnus-treat-predicate): Update for above name changes.
1776
1777 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
1778
1779         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
1780         binding.  Handled by `gnus-summary-refer-thread' instead.
1781         (nnir-warp-to-article): New backend function.
1782
1783         * nnimap.el (nnimap-request-thread): Force dependency updating.
1784
1785         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
1786         (gnus-summary-refer-thread): Rework to improve thread-referral.
1787
1788         * gnus-int.el (gnus-warp-to-article): New function.
1789
1790         * gnus-sum.el (gnus-summary-article-map): Bind it.
1791
1792 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
1793
1794         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
1795         gnus-summary-refer-thread.
1796
1797         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
1798         headers.
1799         (gnus-summary-limit-include-thread): Prevent articles in thread from
1800         being cut in gnus-cut-threads.
1801         (gnus-summary-refer-thread): Limit retrieved headers to those in
1802         thread.
1803
1804 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1805
1806         * message.el (message-send-mail): Use the value of
1807         message-courtesy-message from the message buffer.
1808
1809         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
1810
1811         * shr.el (shr-browse-url): Implement mailto: URLs.
1812
1813         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
1814         "raw".
1815
1816         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
1817         if it's already selected.
1818
1819         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
1820
1821 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
1822
1823         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
1824         to measure the length and truncate alt text.
1825
1826 2010-11-03  Glenn Morris  <rgm@gnu.org>
1827
1828         * nndiary.el (nndiary-generate-nov-databases-1)
1829         (nndiary-generate-active-info): Rename dynamic variable `files' to
1830         something less generic.
1831
1832 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
1833
1834         * nnir.el (nnir-request-move-article): Call the underlying backend to
1835         move articles from nnir.
1836
1837 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1838
1839         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
1840
1841 2010-11-02  Julien Danjou  <julien@danjou.info>
1842
1843         * nnir.el: Remove wais support.
1844
1845 2010-11-02  Glenn Morris  <rgm@gnu.org>
1846
1847         * gnus-html.el: Reorder requirements to quieten compiler.
1848
1849 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1850
1851         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
1852         properly for XEmacs as well.
1853         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
1854         (gnus-article-natural-long-line-p): Use window-width rather than
1855         frame-width.
1856
1857 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
1858
1859         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
1860         (nnir-read-parms): Don't modify query.
1861         (nnir-run-query): Add ability to search topic on current line.
1862         (nnir-get-active): Clean up.
1863
1864 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1865
1866         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
1867         degenerate articles.
1868
1869         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
1870         (gnus-print-buffer): Just print the buffer as is, without any copying
1871         to a buffer and then re-highlighting.
1872
1873         * nnimap.el (nnimap-request-group): Store the new updated info.
1874         (nnimap-request-group): Select the group when we don't know whether it
1875         exists or not.
1876
1877         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
1878         groups.
1879
1880         * gnus-group.el (gnus-group-find-new-groups): Display all the new
1881         groups.
1882
1883         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
1884         groups.
1885
1886         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
1887         long-lines case by only filling the long lines.
1888
1889         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
1890         (bug #7311).
1891
1892 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1893
1894         * shr.el: No need to declare `declare-function' since shr.el is for
1895         only Emacsen that provide `libxml-parse-html-region'.
1896
1897         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
1898         effective only in a file it is referred to.
1899
1900 2010-11-01  Glenn Morris  <rgm@gnu.org>
1901
1902         * mm-util.el (gnus-completing-read): Autoload.
1903         (mm-read-coding-system): Simplify Emacs definition.
1904
1905         * nnmail.el (gnus-activate-group):
1906         * nnimap.el (gnutls-negotiate):
1907         * nntp.el (netrc-parse): Fix declarations.
1908
1909 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1910
1911         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
1912         string-match-p in Emacs >=23.
1913
1914         * gnus-msg.el (gnus-configure-posting-styles)
1915         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
1916
1917 2010-11-01  Glenn Morris  <rgm@gnu.org>
1918
1919         * nnir.el (declare-function): Add compat stub.
1920         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
1921         (nnir-run-gmane): Require 'mm-url.
1922
1923         * mm-util.el (mm-string-to-multibyte): Simplify.
1924
1925         * shr.el (declare-function): Add compat stub.
1926         (url-cache-create-filename): Declare.
1927         (mm-disable-multibyte, widget-convert-button): Autoload.
1928
1929         * smime.el (ldap-search): Declare.
1930         (smime-cert-by-ldap-1): Require ldap on Emacs.
1931
1932         * nnimap.el: Require nnmail, and gnus-sum when compiling.
1933         (nnimap-keepalive): Use gnus-float-time.
1934
1935         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
1936         (mail-source-delete-crash-box): Use gnus-float-time.
1937
1938         * gnus-dired.el (gnus-completing-read): Autoload.
1939
1940         * mm-view.el (gnus-rescale-image): Autoload.
1941
1942         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
1943
1944         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
1945
1946         * sieve-manage.el: Require 'cl when compiling.
1947
1948         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
1949         (gnus-iswitchb-completing-read): Require iswitchb.
1950         (gnus-select-frame-set-input-focus): Silence compiler.
1951
1952 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1953
1954         * message.el (message-subject-trailing-was-query): Change default to t,
1955         since I think that's what most people want.
1956
1957         * nnimap.el (nnimap-request-accept-article): Erase buffer before
1958         appending for easier debugging.
1959         (nnimap-wait-for-connection): Take a regexp.
1960         (nnimap-request-accept-article): Wait for the continuation line before
1961         sending anything unless we're streaming.
1962
1963         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
1964         leave the header washing to take place.
1965
1966 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
1967
1968         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
1969         regular expression match and replace in posting styles.
1970
1971 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
1972
1973         * nnir.el (gnus-group-make-nnir-group,nnir-run-query): Allow searching
1974         an entire server.
1975         (nnir-get-active): New function.
1976         (nnir-run-imap): Use it.
1977         (nnir-run-gmane): Who knew, gmane search returns an article score!
1978
1979         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
1980         server on the current line with nnir.
1981
1982 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1983
1984         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
1985         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
1986         left edge.
1987         (gnus-article-foldable-buffer): Skip past the prefix when determining
1988         raggedness.
1989
1990         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
1991         the raw article, and change `C-u g' to show the article without doing
1992         treatments.
1993
1994         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
1995         on to `gnus-treat-article'.
1996         (gnus-inhibit-article-treatments): New variable.
1997
1998         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
1999
2000         * gnus-art.el (gnus-treatment-function-alist): Have
2001         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
2002         (gnus-treat-fill-long-lines): Change default to fill all text/plain
2003         sections.
2004
2005         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
2006         parameter.
2007         (gnus-article-fill-cited-long-lines): New function.
2008         (gnus-article-fill-cited-article): Allow filling only long sections.
2009
2010         * shr.el (shr-find-fill-point): Don't break lines between punctuation
2011         and non-punctuation (like after the apostrophe in "'We").
2012
2013         * gnus-sum.el (gnus-summary-select-article): Make sure
2014         gnus-original-article-buffer is alive.
2015
2016         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
2017         reflect the order they're in in the digest.
2018
2019         * gnus.el (gnus-group-startup-message): Move point to the start of the
2020         buffer.
2021
2022         * nnimap.el (nnimap-capability): New function.
2023         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
2024         is set.
2025
2026 2010-10-31  David Engster  <dengste@eml.cc>
2027
2028         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
2029         conform with changes to gnus-completing-read.
2030
2031 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2032
2033         * shr.el (shr-tag-img): Output "*" instead of "[img]".
2034
2035 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
2036
2037         * nnir.el: Move defvar, defcustom around to keep file organized
2038         and keep byte-compiler quiet.
2039         (nnir-read-parms): Accept search-engine as arg.
2040         (nnir-run-query): Pass search-engine as arg.
2041         (nnir-search-engine): Remove.
2042
2043 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2044
2045         * shr.el (shr-generic): The text nodes should be text, not :text.
2046
2047         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
2048         later in the file.
2049
2050 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
2051
2052         * nnir.el: General clean up.  Allow searching with multiple engines.
2053         Allow separate extra-parameters for each engine.
2054         Batch queries when possible.
2055         (nnir-imap-default-search-key,nnir-method-default-engines):
2056         Add customize interface.
2057         (nnir-run-gmane): New engine.
2058         (nnir-engines): Use it.  Qualify all prompts with engine name.
2059         (nnir-search-engine): Remove global variable.
2060         (nnir-run-hyrex): Restore for now.
2061         (nnir-extra-parms,nnir-search-history): New variables.
2062         (gnus-group-make-nnir-group): Use them.
2063         (nnir-group-server): Remove in favor of gnus-group-server.
2064         (nnir-request-group): Avoid searching twice.
2065         (nnir-sort-groups-by-server): New function.
2066
2067 2010-10-30  Julien Danjou  <julien@danjou.info>
2068
2069         * gnus-group.el: Remove gnus-group-fetch-control.
2070
2071         * gnus-start.el (gnus-find-new-newsgroups):
2072         Remove gnus-check-first-time-used.
2073
2074         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
2075
2076 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
2077
2078         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
2079         set on groups that don't have \* permanentflags.
2080
2081 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2082
2083         * shr.el (shr-tag-span): Drop colorisation of regions since we don't
2084         control the background color.
2085         (shr-tag-img): Ignore very small web bug type images.
2086         (shr-put-image): Add help-echo alt texts to the images.
2087         (shr-tag-video): Show the video poster image.
2088
2089 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2090
2091         * shr.el (shr-table-depth): New variable.
2092         (shr-tag-table-1): Only insert the images after the top-level table.
2093
2094         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
2095
2096         * gnus-util.el (gnus-list-memq-of-list): New function.
2097
2098         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
2099         selected.
2100         (nnimap-unsplittable-articles): New slot.
2101         (nnimap-new-articles): Use it.
2102
2103 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
2104
2105         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
2106         move to the previous line on `M-g'.
2107
2108 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2109
2110         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
2111         *-request-group, which seems unnecessary.
2112
2113         * nnimap.el (nnimap-quote-specials): Function copied over from
2114         imap.el.
2115         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
2116         they support that.  Suggested by Tom Regner.
2117
2118 2010-10-29  Julien Danjou  <julien@danjou.info>
2119
2120         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
2121         defalias.
2122         (gnus-summary-delete-marked-with): Remove obsolete defalias.
2123
2124         * gnus.el: Remove `gnus-nntp-service' variable.
2125         (gnus-secondary-servers): Make obsolete.
2126         (gnus-nntp-server): Make obsolete.
2127
2128         * gnus-start.el (gnus-1): Remove x-splash calls.
2129
2130         * gnus-ems.el (gnus-x-splash): Remove.
2131
2132         * gnus.el (gnus-group-startup-message): Simplify/update code.
2133
2134         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
2135         definition.
2136
2137         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
2138         capability before doing anything.
2139         (gnus-group-insert-group-line): Remove useless
2140         gnus-group-remove-excess-properties.
2141
2142 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2143
2144         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
2145
2146 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2147
2148         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
2149         config after reselecting.
2150
2151 2010-10-28  Julien Danjou  <julien@danjou.info>
2152
2153         * shr.el (shr-put-image): Use point even if only inserting text.
2154         (shr-put-image): Save excursion when inserting alt text on non-graphic
2155         display, so the behaviour is the same when we are on a graphic display.
2156
2157         * nnir.el (nnir-run-swish-e): Remove hyrex support.
2158
2159 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2160
2161         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
2162         (gnus-mime-copy-part): Check coding system, not charset.
2163         (gnus-mime-view-part-externally): Never remove part.
2164         (gnus-mime-view-part-internally): Don't remove part here.
2165         (gnus-article-part-wrapper): Make sure MIME tag is visible.
2166         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
2167         multipart/alternative.
2168
2169         * mm-decode.el (mm-display-part): Take optional arg `force'.
2170
2171 2010-10-26  Julien Danjou  <julien@danjou.info>
2172
2173         * gnus-group.el (gnus-group-default-list-level): Add this function to
2174         compute the default list level.
2175         (gnus-group-default-list-level): Add possibility to use a function.
2176
2177 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2178
2179         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
2180
2181         * gnus-group.el (gnus-group-completing-read)
2182         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
2183         gnus-replace-in-string.
2184
2185 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2186
2187         * shr.el (shr-tag-div): Add.
2188
2189         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
2190
2191 2010-10-25  Julien Danjou  <julien@danjou.info>
2192
2193         * gnus-util.el: Remove `gnus-with-local-quit'.
2194
2195         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
2196
2197 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2198
2199         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
2200         the original article buffer.
2201
2202 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2203
2204         * nnimap.el (nnimap-request-head): New function.
2205         (nnimap-request-move-article): Try to be slighly faster by not
2206         requesting the entire message when moving.
2207         (nnimap-transform-headers): Don't bug out on bodiless articles.
2208         (nnimap-send-command): Have no outstanding messages if the IMAP server
2209         doesn't support streaming.
2210         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
2211
2212 2010-10-24  Julien Danjou  <julien@danjou.info>
2213
2214         * message.el (message-default-headers): Fix type.
2215
2216 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2217
2218         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
2219         prefetching images.
2220
2221         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
2222         backend for unknown groups.  This is mainly useful for nnimap groups.
2223
2224         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
2225         group isn't covered by the agent.
2226
2227 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
2228
2229         * nnir.el (nnir-method-default-engines): New variable.
2230         (nnir-run-query): Use it.
2231         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
2232         (gnus-summary-nnir-goto-thread): Change group if needed.
2233
2234         * gnus-group.el (gnus-group-group-map): Add key binding for
2235         gnus-group-make-nnir-group.
2236
2237 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2238
2239         * shr.el (shr-tag-object): Add.
2240
2241         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
2242         original article buffer live.
2243         (gnus-summary-select-article-buffer):
2244         Mention gnus-widen-article-buffer.
2245
2246 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2247
2248         * shr.el (shr-tag-strong): Add.
2249
2250 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2251
2252         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
2253         group names.  They mess up the group buffer badly.
2254
2255         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
2256
2257         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
2258         instead of the summary one.
2259
2260 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2261
2262         * mml.el (mml-preview): Work properly when editing article.
2263
2264         * gnus-start.el (gnus-read-active-file-1): Don't add method to
2265         gnus-have-read-active-file if it's already been in.
2266
2267 2010-10-22  Tom Tromey  <tromey@redhat.com>
2268
2269         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
2270         gnus-group-completing-read.
2271
2272 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2273
2274         * message.el (message-mode-map): Don't bind M-; to comment region, to
2275         allow the global comment-dwim to work.
2276
2277 2010-10-21  Julien Danjou  <julien@danjou.info>
2278
2279         * message.el (message-setup-1): Allow message-default-headers to be a
2280         function.
2281
2282 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2283
2284         * shr.el (shr-tag-table): Simplify.
2285
2286 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2287
2288         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
2289         to avoid trying to snarf invalid stuff.
2290
2291         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
2292
2293         * gnus.el (gnus-message-archive-group): Quote value.
2294         (gnus-message-archive-group): Mark as changed.
2295
2296         * shr.el (shr-add-font): Don't put the font properties on the newline
2297         or the indentation.
2298
2299         * message.el (message-fix-before-sending): Change options when sending
2300         non-printable characters.
2301
2302         * gnus.el (gnus-message-archive-method): Change the default to
2303         monthly outgoing groups.
2304
2305         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
2306         that have gotten new numbers.
2307
2308         * nnimap.el (nnimap-request-replace-article): New function.
2309
2310 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2311
2312         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
2313         (nnrss-request-article): Don't use special html washing code.
2314
2315 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
2316
2317         * shr.el (shr-tag-table): Remove useless nconc.
2318
2319 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2320
2321         * gnus-art.el (article-wash-html): Simplify and remove the charset
2322         stuff.  Use the normal html rendering code instead of the special html
2323         washing code.
2324
2325         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
2326         `gnus-w3m' symbols.
2327         (mm-text-html-washer-alist): Remove.
2328
2329         * mm-decode.el (mm-inline-text-html-renderer): Remove.
2330         (mm-inline-media-tests): Remove use.
2331         (mm-text-html-renderer): Change default to the `shr' symbol.
2332
2333         * mm-view.el (mm-inline-text-html): Remove use.
2334
2335         * gnus-art.el (gnus-blocked-images): New function.  Allow the
2336         `gnus-blocked-images' to be a function.
2337         (gnus-article-wash-function): Remove.
2338
2339 2010-10-20  Julien Danjou  <julien@danjou.info>
2340
2341         * spam.el (spam-list-of-processors): Mark as obsolete.
2342
2343         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
2344         (nnimap-insert-partial-structure): Fix boundary detection.
2345
2346 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
2347
2348         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
2349         run file-truename on remote files.  This can be expensive and even
2350         prevent one from editing drafts if some unrelated buffer has a stale
2351         connection.
2352
2353 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
2354
2355         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
2356         kinsoku-eol regardless of shr-kinsoku-shorten.
2357         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
2358         (shr-tag-table): Support caption, thead, and tfoot.
2359
2360 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2361
2362         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
2363         lines.
2364         (shr-save-contents): New command and keystroke.
2365
2366         * nndoc.el (nndoc-type-alist): Add git support.
2367         (nndoc-git-type-p): New function.
2368         (nndoc-transform-git-article): Ditto.
2369         (nndoc-transform-git-headers): Ditto.
2370         (nndoc-transform-git-headers): Generate Subject headers.
2371
2372         * shr.el (shr-parse-style): New function.
2373         (shr-tag-span): Ditto.
2374
2375         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
2376         to `G G' to avoid collisions.
2377
2378 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
2379
2380         * shr.el: Load kinsoku if necessary.
2381         (shr-kinsoku-shorten): New internal variable.
2382         (shr-find-fill-point): Make kinsoku shorten text line if
2383         shr-kinsoku-shorten is bound to non-nil.
2384         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
2385         shr-indentation too when testing if table is wider than frame width.
2386         (shr-insert-table): Use `string-width' instead of `length' to measure
2387         text width.
2388         (shr-insert-table-ruler): Make sure indentation is done at bol.
2389
2390 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2391
2392         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
2393         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
2394         undecoded network data.
2395
2396 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2397
2398         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
2399         name in the mode line spec so that the mode line menu works
2400         (bug #2431).
2401
2402         * message.el (message-get-reply-headers): If we're fed `to-address',
2403         then always use that.
2404
2405         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
2406         aren't so wide as to need to switch off the edit menu.
2407
2408         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
2409         binding.  Suggested by Leo <sdl.web@gmail.com> (bug #6613).
2410
2411         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
2412         `M-g'.
2413         (nnimap-update-info): Update flags/read marks even if \* isn't part of
2414         the permanent marks.
2415
2416 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
2417
2418         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
2419         Splitting according to references/in-reply-to obeys the ignore-groups
2420         variable, while splitting by sender and subject do not.
2421
2422 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2423
2424         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
2425         alist, so that we can look for non-Unicode chars.
2426         (article-translate-strings): Allow both character and string maps.
2427
2428 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2429
2430         * shr.el (shr-insert): Don't insert space behind a wide character
2431         categorized as kinsoku-bol, or between characters both categorized as
2432         nospace.
2433
2434 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
2435
2436         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
2437         headers to gnus-newsgroup-headers.
2438
2439 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2440
2441         * shr.el (shr-tag-img): Don't align images -- since we're not
2442         rescaling, this often leads to ugly displays.
2443
2444 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
2445
2446         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
2447         duplicates.
2448
2449 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
2450
2451         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
2452         call.
2453
2454 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2455
2456         * gnus.el: Autoload gnus-html-show-images.
2457
2458         * nnimap.el: Use nnheader-message throughout.
2459
2460         * shr.el (shr-tag-img): Ignore images with no data.
2461
2462 2010-10-15  Julien Danjou  <julien@danjou.info>
2463
2464         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
2465         a possibility to disable format=flow encoding when using hard newlines.
2466
2467 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2468
2469         * shr.el (shr-insert): Remove space inserted before or after a
2470         breakable character or at the beginning or the end of a line.
2471         (shr-find-fill-point): Do kinsoku; find the second best point or give
2472         it up if there's no breakable point.
2473
2474 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2475
2476         * nnimap.el (nnimap-open-connection): Message when opening connection
2477         for debugging purposes.
2478
2479         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
2480         on every setup buffer call to allow this to change from article to
2481         article.
2482
2483         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
2484         buffers where we have a wide table.
2485
2486 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
2487
2488         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
2489         uses *-request-thread.
2490
2491 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2492
2493         * nnimap.el (nnimap-open-connection): Remove %s from openssl
2494         incantation, which is no longer valid.
2495
2496 2010-10-14  Julien Danjou  <julien@danjou.info>
2497
2498         * shr.el: Fix defcustom type (char -> character).
2499
2500 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2501
2502         * nnimap.el (nnimap-open-connection): tls-program should be a list of
2503         programs.
2504
2505 2010-10-14  Julien Danjou  <julien@danjou.info>
2506
2507         * shr.el (shr-tag-a): Use url-link as widget type.
2508
2509         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
2510         `gnus-group-get-icon'.
2511
2512 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2513
2514         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
2515         This should make server editing work better.
2516
2517         * shr.el (shr-find-fill-point): Don't inloop on indented text.
2518
2519         * tls.el (tls-program): Remove spurious %s from openssl.
2520
2521         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
2522         (nnimap-parse-flags): Fix regexp.
2523
2524         * shr.el (shr-find-fill-point): Use a filling algorithm that should
2525         probably work for CJVK text, too.
2526
2527         * nnimap.el (nnimap-extend-tls-programs): Remove.
2528         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
2529
2530         * tls.el (tls-starttls-switches): Remove starttls hack.
2531         (open-tls-stream): Ditto.
2532         (tls-find-starttls-argument): Ditto.
2533
2534 2010-10-13  Julien Danjou  <julien@danjou.info>
2535
2536         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
2537         responses.
2538
2539 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2540
2541         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
2542
2543         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
2544         anything in Emacs.
2545
2546         * shr.el (shr-current-column): Remove buggy and unnecessary function.
2547
2548 2010-10-13  Julien Danjou  <julien@danjou.info>
2549
2550         * shr.el (shr-width): Make shr-width a defcustom with default to
2551         fill-column.
2552         (shr-tag-img): Use shr-width rather than fill-column.
2553
2554 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2555
2556         * dgnushack.el (byte-optimize-apply)
2557         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
2558
2559         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
2560         position when (X-)Faces exist.
2561         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
2562         avatars when called interactively.
2563
2564 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2565
2566         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
2567         gnus-article-x-face-too-ugly is bound.
2568
2569 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2570
2571         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
2572
2573         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
2574         mailbox that doesn't exist.
2575
2576 2010-10-12  Julien Danjou  <julien@danjou.info>
2577
2578         * shr.el (shr-tag-img): Encode URL properly when retrieving.
2579         (shr-get-image-data): Encode URL properly when fetching from cache.
2580         (shr-tag-img): Use aligned-to spaces to align correctly images.
2581
2582         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
2583         before inserting the Gravatar.
2584
2585         * shr.el (shr-tag-img): Add align attribute support for <img>.
2586
2587 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2588
2589         * gnus-gravatar.el (gnus-art): Require.
2590
2591         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
2592         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
2593         Remove long obsoleted functions.
2594
2595 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2596
2597         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
2598
2599         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
2600
2601         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
2602         * gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
2603         * hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
2604         * mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
2605         * mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
2606         * nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
2607         * sieve-manage.el, smime.el, spam.el:
2608         Fix comment for declare-function.
2609
2610 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2611
2612         * nnimap.el (nnimap-request-rename-group): Select group read-only
2613         before renaming it.
2614
2615         * shr.el (shr-insert): Fix up the white space only regexp.
2616
2617         * nnimap.el (nnimap-transform-split-mail): Not all articles have
2618         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
2619
2620         * shr.el (shr-current-column): New function.
2621         (shr-find-fill-point): New function.
2622
2623 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
2624
2625         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
2626         numbers.
2627
2628 2010-10-11  Julien Danjou  <julien@danjou.info>
2629
2630         * shr.el (shr-hr-line): Add.
2631         (shr-tag-hr): Use shr-hr-line to specify which character to use to
2632         display hr lines.
2633         (shr-max-columns): Do not change state to nil if we just inserting
2634         spaces.
2635
2636 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2637
2638         * gnus-topic.el (gnus-topic-read-group): If after the last group,
2639         select the last group.
2640
2641 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
2642
2643         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
2644
2645 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
2646
2647         * dig.el (dig-mode-map): Declare and define in one step.
2648
2649 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2650
2651         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
2652         for Gnus.
2653         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
2654         (nnimap-update-qresync-info): Mark \Seen articles as read.
2655
2656         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
2657         non-variable, too.
2658
2659         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
2660         available.
2661         (nnimap-update-info): Rely more on the current active than the param
2662         active to avoid marking articles as read too much.
2663
2664         * auth-source.el (auth-source-create): Use (user-login-name) for the
2665         user name default.
2666
2667         * nnimap.el (nnimap-update-info): If the server doesn't return any
2668         useful info, just use the previous info.
2669         (nnimap-update-info): Prefer old info over start-article.
2670         (nnimap-update-qresync-info): Finish implementing QRESYNC.
2671
2672 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
2673
2674         * nnir.el (autoload): Clean up autoloads.
2675         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
2676         Use key rather than value.
2677         (nnir-imap-search-other): New variable.
2678         (nnir-read-parm): Use it.
2679         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
2680         (gnus-summary-nnir-goto-thread): Modify to work with imap.
2681
2682 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2683
2684         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
2685         the process, too.
2686
2687 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2688
2689         * spam.el (gnus-summary-mode-map): Bind to "$".
2690         Suggested by Russ Allbery.
2691
2692         * shr.el: Rework the way things are indented by <li> slightly.
2693
2694         * gnus.el (gnus-group-set-parameter): Fix typo.
2695
2696         * nnimap.el: Start implementing QRESYNC support.
2697
2698 2010-10-09  Julien Danjou  <julien@danjou.info>
2699
2700         * nnir.el (nnir-engines): Fix too many arguments.
2701
2702 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2703
2704         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
2705         group is the "last", so that the backends like nnfolder actually save
2706         their folders.
2707
2708         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
2709         try to use that for the tls stream.
2710         (nnimap-retrieve-group-data-early): Rework the marks code to heed
2711         UIDVALIDITY and find out which groups are read-only and not.
2712         (nnimap-get-flags): Use the same marks parsing code as the rest of
2713         nnimap.
2714
2715 2010-10-09  Julien Danjou  <julien@danjou.info>
2716
2717         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
2718
2719         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
2720         retrieving gravatars.
2721
2722         * shr.el (shr-table-corner): Add.
2723         (shr-table-line): Add.
2724         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
2725
2726 2010-10-08  Julien Danjou  <julien@danjou.info>
2727
2728         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
2729
2730 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
2731
2732         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
2733
2734         * gnus-sum.el (gnus-mark-article-as-unread)
2735         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
2736         (gnus-summary-set-bookmark): Use it.
2737
2738         * gnus-msg.el (gnus-setup-message): Use it.
2739
2740         * gnus-demon.el (gnus-demon-remove-handler): Use it.
2741
2742         * gnus.el (gnus-group-remove-parameter): Use it.
2743
2744         * gnus-group.el (gnus-group-make-web-group): Use it.
2745
2746         * gnus-demon.el (gnus-demon-remove-handler): Use it.
2747
2748         * nnregistry.el: Update docs to mention manual.
2749
2750         * gnus-registry.el: Update docs to mention nnregistry.el.
2751         (gnus-registry-initialize): Don't install nnregistry refer method
2752         automatically.
2753         (gnus-registry-install-nnregistry): Remove it.
2754
2755 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2756
2757         * shr.el (shr-insert): Don't insert double spaces.
2758
2759 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2760
2761         * gnus-gravatar.el (gnus-treat-from-gravatar)
2762         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
2763         called interactively.
2764
2765         * gnus-art.el (gnus-mime-view-part-externally)
2766         (gnus-mime-view-part-internally): Make predicate function passed to
2767         gnus-mime-view-part-as-type assume argument is a mime type, not a list
2768         of a mime type.
2769
2770         * shr.el (shr-table-widths): Don't use cl function `reduce'.
2771
2772 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2773
2774         * shr.el (require): Require cl when compiling.
2775         (shr-tag-hr): New function.
2776
2777         * nnimap.el (nnimap-update-info): Remove double setting of high.
2778         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
2779         This makes nnimap work properly on Courier again.
2780
2781         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
2782         the variable for backwards compatability.
2783
2784         * mm-decode.el (mm-save-part): If given a non-directory result, expand
2785         the file name before using to avoid setting mm-default-directory to
2786         nil.
2787
2788         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
2789         bidning gnus-agent variables.
2790
2791         * shr.el (shr-render-td): Use a cache for the table rendering function
2792         to avoid getting an exponential rendering behaviour in nested tables.
2793         (shr-insert): Rework the line-breaking algorithm.
2794         (shr-insert): Don't leave trailing spaces.
2795         (shr-insert-table): Also insert empty TDs.
2796         (shr-tag-blockquote): Ensure paragraphs after </ul>.
2797
2798 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2799
2800         * gnus-sum.el (gnus-number): Rename from `number'.
2801         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
2802         (gnus-summary-limit-children): Update uses correspondingly.
2803
2804 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2805
2806         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
2807         (gnus-gravatar-transform-address): Don't show avatars of people of
2808         which mail addresses match gnus-gravatar-too-ugly.
2809
2810 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2811
2812         * shr.el (shr-table-widths): Expand TD elements to fill available
2813         space.
2814
2815 2010-10-07  Julien Danjou  <julien@danjou.info>
2816
2817         * nnimap.el (nnimap-request-rename-group): Add this method.
2818
2819 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2820
2821         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
2822         name from XEmacs' function-arglist.
2823
2824         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
2825         gravatar under XEmacs.
2826
2827 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
2828
2829         * auth-source.el: Update docs with TODO items.
2830
2831         * gnus-sync.el: Update docs to explain state and plans.
2832
2833         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
2834         Hooks for mark updates.
2835         (gnus-request-set-mark, gnus-request-update-mark): Use them.
2836
2837         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
2838         hooks with arguments, which is needed for mark update hooks.
2839
2840 2010-10-06  Julien Danjou  <julien@danjou.info>
2841
2842         * gnus.el (gnus-expand-group-parameter): Only return and act on what
2843         was matched.
2844
2845         * sieve-manage.el: Update example in `Commentary'.
2846
2847         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
2848
2849         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
2850         not 2000.
2851         (sieve-manage-authenticate): Re-add function.
2852
2853 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2854
2855         * shr.el (shr-insert): Get 'space transition right.
2856         (shr-render-td): Only delete space at the end of the TD.
2857
2858         * nnimap.el (nnimap-open-connection): Prepare to support
2859         open-gnutls-stream.
2860
2861         * shr.el: Rearrange function order to be more logical.
2862
2863 2010-10-06  Julien Danjou  <julien@danjou.info>
2864
2865         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
2866         (nnrss-discover-feed): Remove 404 URL in docstring.
2867
2868         * nnir.el: Fix Swish-E URL.
2869         Fix Namazu URL.
2870
2871         * message.el (message-change-subject): Remove 404 URL in a comment.
2872
2873 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2874
2875         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
2876         called interactively.
2877
2878         * gnus-util.el (gnus-remove-if): Allow hash table.
2879         (gnus-remove-if-not): New function.
2880
2881         * gnus-art.el (gnus-mime-view-part-as-type)
2882         * gnus-score.el (gnus-summary-score-effect)
2883         * gnus-sum.el (gnus-read-move-group-name):
2884         Replace remove-if-not with gnus-remove-if-not.
2885
2886         * gnus-group.el (gnus-group-completing-read):
2887         Regard collection as a hash table if it is not a list.
2888
2889 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2890
2891         * shr.el (shr-render-td): Allow blank/missing <TD>s.
2892
2893         * shr.el: Document the table-rendering algorithm.
2894
2895 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2896
2897         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
2898         for Emacsen having no `libxml-parse-html-region' support.
2899
2900 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2901
2902         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
2903         invalid URLs.
2904
2905         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
2906         line-broken.
2907         (shr-tag-img): Ignore image fetching errors.
2908         (shr-overlays-in-region): Compute overlay positions correctly.
2909
2910         * mm-decode.el (mm-shr): Require shr.
2911
2912         * gnus-art.el (gnus-blocked-images): Move variable here.
2913
2914         * shr.el (shr-insert-table): Bind free variable.
2915
2916         * mm-decode.el (mm-shr): Bind shr-content-function.
2917
2918         * shr.el (shr-content-function): New variable.
2919
2920         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
2921         added for symmetry.
2922
2923         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
2924
2925         * gnus-group.el (gnus-group-make-group): Doc fix.
2926
2927         * nnimap.el (nnimap-request-newgroups): Return success.
2928
2929         * shr.el (shr-find-elements): New function.
2930         (shr-tag-table): Put all the images after the table.
2931         (shr-tag-table): Really inhibit images inside the table.
2932         (shr-collect-overlays): Copy over overlays from the TD elements to the
2933         main document.
2934
2935         * mm-decode.el (mm-shr): Bind shr-blocked-images to
2936         gnus-blocked-images.
2937
2938 2010-10-05  Julien Danjou  <julien@danjou.info>
2939
2940         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
2941
2942         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
2943         (gnus-html-maximum-image-size): Add this function.
2944         (gnus-html-put-image): Use gnus-html-maximum-image-size.
2945
2946         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
2947         server-value of the capability is nil.
2948
2949 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2950
2951         * shr.el (shr-tag-em): Add <EM> tag.
2952
2953 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
2954
2955         * sieve-manage.el (sieve-manage-default-stream): Make default stream
2956         customizable.
2957
2958         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
2959         handing broken links to browse-url.
2960
2961 2010-10-05  Julien Danjou  <julien@danjou.info>
2962
2963         * gnus-util.el (gnus-emacs-completing-read)
2964         (gnus-iswitchb-completing-read): Use autoload rather than require.
2965
2966 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2967
2968         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
2969         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
2970         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
2971         iswitchb-temp-buflist for XEmacs.
2972
2973         * gnus-util.el (gnus-completing-read-function): Exclude
2974         gnus-icompleting-read and gnus-ido-completing-read from candidates for
2975         XEmacs since iswitchb.el is very old and ido.el is unavailable in
2976         XEmacs.
2977
2978         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
2979         not to use `delete-dups' that is unavailable in XEmacs 21.4.
2980
2981         * gnus-html.el: Don't require help-fns under XEmacs.
2982         (gnus-html-schedule-image-fetching): Work for XEmacs.
2983
2984         * mm-decode.el (mm-shr): Decode contents by charset.
2985
2986 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2987
2988         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
2989         unknown.
2990
2991         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
2992         (shr-get-image-data): Ensure against the cache file missing.
2993
2994         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
2995         for data.
2996
2997         * spam-report.el (spam-report-url-ping-plain): Don't query about
2998         killing the process.
2999
3000         * shr.el (shr-render-td): Protect against too-wide text.
3001
3002 2010-10-04  Julien Danjou  <julien@danjou.info>
3003
3004         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
3005         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
3006
3007         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
3008         retrieved.
3009
3010 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3011
3012         * shr.el (browse-url): Require.
3013         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
3014         lines.
3015         (shr-show-alt-text, shr-browse-image): New commands.
3016         (shr-browse-url, shr-copy-url): New commands.
3017
3018         * gnus-sum.el (gnus-widen-article-window): New variable.
3019         (gnus-summary-select-article-buffer): Use it.
3020
3021         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
3022         without @ signs.
3023
3024 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
3025
3026         * nnir.el (nnir-run-imap): Remove spurious space in search string.
3027
3028 2010-10-04  Julien Danjou  <julien@danjou.info>
3029
3030         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
3031         for XEmacs.
3032
3033 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3034
3035         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
3036
3037         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
3038         (nnimap-close-server): Implement.
3039
3040         * dgnushack.el (iswitchb): Require to shut up the compiler.
3041
3042         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
3043         (shr-insert): Tweak line breaking.
3044         (shr-insert): Handle <pre> better.
3045         (shr-tag-li): Get <li> indentation right.
3046         (shr-tag-li): Get <li> indentation even righter.
3047         (shr-tag-blockquote): Ensure paragraph start.
3048         (shr-make-table): Tweak table generation.
3049         (shr-make-table): Fix typo.
3050
3051         * shr.el: Implement table rendering.
3052
3053 2010-10-04  Julien Danjou  <julien@danjou.info>
3054
3055         * gnus-html.el (gnus-html-put-image): Fix resize image code.
3056
3057 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3058
3059         * shr.el (shr-insert): Use string anchors instead of line anchors.
3060
3061 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3062
3063         * shr.el: Add headings.
3064         (shr-ensure-paragraph): Actually work.
3065         (shr-tag-li): Make <ul> prettier.
3066         (shr-insert): Get white space at the beginning/end of elements right.
3067         (shr-tag-p): Collapse subsequent <p>s.
3068         (shr-ensure-paragraph): Don't insert double line feeds after blank
3069         lines.
3070         (shr-insert): \t is also space.
3071         (shr-tag-s): Fix "s" tag name function.
3072         (shr-tag-s): Fix face prop name.
3073
3074 2010-10-03  Julien Danjou  <julien@danjou.info>
3075
3076         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
3077
3078         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
3079         gnus-window-inside-pixel-edges.
3080
3081         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
3082         gnus-ems.
3083
3084         * mm-view.el (mm-inline-image-emacs): Support image resizing.
3085
3086         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
3087         function.
3088
3089         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
3090         resize choice.
3091
3092 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3093
3094         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
3095         beginning of the buffer.
3096
3097         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
3098         article buffer again.
3099
3100         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
3101
3102         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
3103         when it's at the start of the buffer.
3104
3105         * shr.el (shr-tag-blockquote): Convert name.
3106         (shr-rescale-image): Use the right image-size variant.
3107
3108         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
3109         buffer isn't shown, then select the current article first instead of
3110         bugging out.
3111         (gnus-summary-select-article-buffer): Show both the article and summary
3112         buffers again.
3113
3114         * shr.el (shr-fontize-cont): Protect against regions with no text.
3115         Rename tag functions to shr-tag-* for enhanced security.
3116         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
3117
3118 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
3119
3120         * shr.el (shr-insert):
3121         * pop3.el (pop3-movemail):
3122         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
3123         loaded.
3124
3125 2010-10-03  Glenn Morris  <rgm@gnu.org>
3126
3127         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
3128
3129         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
3130
3131         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
3132
3133         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
3134
3135         * gnus-util.el (gnus-make-local-hook): Simplify.
3136
3137 2010-10-02  Julien Danjou  <julien@danjou.info>
3138
3139         * gnus-util.el (gnus-iswitchb-completing-read): New function.
3140         (gnus-ido-completing-read): New function.
3141         (gnus-emacs-completing-read): New function.
3142         (gnus-completing-read): Use gnus-completing-read-function.
3143         Add gnus-completing-read-function.
3144
3145 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3146
3147         * shr.el (shr-insert-document): Autoload.
3148         (shr-img): Be silent.
3149         (shr-insert): Add a newline after every picture before text.
3150         (shr-add-font): Use overlays for combining faces.
3151         (shr-insert): Pass upwards the text start point.
3152
3153         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
3154         possible.
3155         (mm-shr): New function.
3156
3157 2010-10-02  Julien Danjou  <julien@danjou.info>
3158
3159         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
3160         should go backward.
3161
3162 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
3163
3164         * shr.el (shr): Fix typo in provide call.
3165
3166 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3167
3168         * shr.el: New file.
3169
3170         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
3171
3172         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
3173         completing read.
3174
3175 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3176
3177         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
3178         we're being queried about.  Suggested by Dan Jacobson.
3179
3180         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
3181         Suggested by Jason Eisner.
3182
3183         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
3184         table, too.  Suggested by Stefan Wiens.
3185         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
3186         the table unnecessary.  Suggested by Stefan Wiens.
3187
3188         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
3189         longer needed, and probably doesn't work either, as pointed out by
3190         Stefan Wiens.
3191         (gnus-summary-exit): Remove call to the clearing function.
3192         (gnus-summary-exit-no-update): Ditto.
3193
3194         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
3195         instead of gnus-eval-in-buffer-window to avoid popping up frames.
3196         Reported by Stefan Monnier.
3197         (gnus-summary-save-in-rmail): Ditto.
3198
3199         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
3200         article buffer, instead of both the article buffer and the summary
3201         buffer.  Sort of suggested by Dan Jacobson.
3202
3203         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
3204
3205         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
3206         Suggested by Dan Jacobson.
3207
3208         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
3209         documentation clearer.
3210
3211         * message.el (message-shorten-references): Comment on the number "21".
3212         Suggested by Stefan Monnier.
3213
3214         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
3215         Suggested by Dan Jacobson.
3216
3217         * gnus.el (gnus-large-newsgroup):
3218         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
3219
3220         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
3221         externalize attachments.  Bug reported by Steve Wen.
3222
3223         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
3224         really message anything to the user.
3225
3226         * nnmail.el (nnmail-article-group): Allow using the fancy split method
3227         directly.
3228
3229         * nnimap.el (nnimap-request-group): Low higher than high to signal no
3230         messages in empty groups.
3231
3232 2010-10-01  Ted Zlatanov  <tzz@lifelogs.com>
3233
3234         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
3235         non-UIDNEXT group.
3236
3237 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3238
3239         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
3240         not the value from the collection.
3241
3242         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
3243         values.  This sometimes happens on some groups that have no info.
3244         (nnimap-request-newgroups): New function.
3245
3246 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
3247
3248         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
3249         check into `gnus-registry-initialize'.
3250         (gnus-registry-initialize): Ditto.
3251         Fix and extend header docs.
3252
3253 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3254
3255         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
3256         regexp backtrace overflows.
3257
3258         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
3259         for starttls that tls.el implements; i.e. openssl.
3260
3261         * tls.el (tls-starttls-switches): Give up on using starttls with
3262         gnutls-cli.
3263         (tls-program): Add --insecure to be consistent with the defaults from
3264         openssl s_client.  Now all three commands are insecure.
3265
3266 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3267
3268         * lpath.el: Bind completion-styles-alist for XEmacs.
3269
3270         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
3271         (gravatar-create-image): New function that's an alias to
3272         gnus-xmas-create-image, gnus-create-image, or create-image.
3273         (gravatar-data->image): Use it.
3274
3275 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
3276
3277         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
3278         install the nnregistry refer method.
3279         (gnus-registry-install-hooks): Use it.
3280         (gnus-registry-unfollowed-groups): Add nnmairix to the default
3281         unfollowed groups.
3282
3283 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
3284
3285         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
3286         expanding threads.
3287
3288 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3289
3290         * nnir.el: Use the server names without suffixes (bug #7009).
3291
3292         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
3293         unencrypted to STARTTLS, if possible.
3294
3295 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
3296
3297         * message.el (message-ignored-supersedes-headers): Strip Injection-*
3298         headers before superseding.
3299
3300 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3301
3302         * nnrss.el (nnrss-use-local): Add documentation.
3303
3304         * nnimap.el (nnimap-extend-tls-programs): New function.
3305         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
3306         (nnimap-wait-for-connection): Accept the greeting from the stupid
3307         output from openssl s_client -starttls, too.
3308
3309         * tls.el (tls-starttls-switches): New variable.
3310         (tls-find-starttls-argument): Use it.
3311         (open-tls-stream): Ditto.
3312
3313         * netrc.el (netrc-credentials): Return the value of the "default" entry.
3314         (netrc-machine): Ditto.
3315
3316         * nnimap.el (nnimap-find-article-by-message-id): Really return the
3317         article number.
3318         (nnimap-split-fancy): New variable.
3319         (nnimap-split-incoming-mail): Use it.
3320
3321         * nntp.el (nntp-server-list-active-group): Document.
3322
3323         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
3324         SELECT to get the message-id.
3325
3326         * mail-source.el (mail-sources): Remove webmail support.
3327         (defvar): Ditto.
3328         (mail-source-fetcher-alist): Ditto.
3329         (mail-source-fetch-webmail): Remove.
3330
3331         * webmail.el: Remove -- doesn't seem relevant any more.
3332
3333         * gnus.el: Fix up make-obsolete-variable declarations throughout.
3334
3335         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
3336         the \r.
3337
3338 2010-09-30  Julien Danjou  <julien@danjou.info>
3339
3340         * gnus-agent.el (gnus-agent-add-group): Fix call to
3341         gnus-completing-read.
3342
3343 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3344
3345         * nndoc.el (nndoc-retrieve-groups): New function.
3346
3347         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
3348         `default', use nnmail-split-methods.
3349         (nnimap-request-article): Downcase the NILs so that they are nil.
3350
3351         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
3352         symbol.
3353
3354         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
3355         code, since if the user has requested network, that's what they ought
3356         to get.
3357         (nnimap-request-set-mark): Erase the buffer before issuing commands.
3358         (nnimap-split-rule): Mark as obsolete.
3359
3360         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
3361         New variable.
3362
3363         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
3364         correct slot, too.
3365
3366 2010-09-29  Julien Danjou  <julien@danjou.info>
3367
3368         * gnus.el (gnus-local-domain): Declare variable obsolete.
3369
3370         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
3371         Fix history computing.
3372         (gnus-ido-completing-read): Require ido.
3373
3374 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3375
3376         * gnus-registry.el: Don't prompt on load, which makes it impossible to
3377         build Gnus.
3378
3379         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
3380         when interpreting the structures.
3381         (nnimap-request-accept-article): Add \r\n to the lines to make this
3382         work with Cyrus.
3383
3384         * nndraft.el (nndraft-request-expire-articles): Use the group name
3385         instead if "nndraft".  Fix found by Nils Ackermann.
3386
3387 2010-09-29  Ludovic Courtes  <ludo@gnu.org>
3388
3389         * nnregistry.el: Add.
3390
3391 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3392
3393         * nnmail.el (group, group-art-list, group-art):
3394         Remove unneeded directives.
3395
3396 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
3397
3398         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
3399         (mm-mime-charset)
3400         * rfc2047.el (rfc2047-syntax-table)
3401         * utf7.el (utf7-utf-16-coding-system): Comment fix.
3402
3403         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
3404         rather than `insert-file-contents' and `eval-region'.
3405
3406         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
3407         construction.
3408
3409         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
3410
3411         * time-date.el: No need to require cl for Emacs 21.
3412
3413 2010-09-29  Julien Danjou  <julien@danjou.info>
3414
3415         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
3416         replacement of `gnus-gravatar-relief' to mimic
3417         `gnus-faces-properties-alist'.
3418         Add :version property.
3419
3420 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
3421
3422         * mail-source.el (mail-source-report-new-mail)
3423         * message.el (message-default-mail-headers)
3424         * mm-decode.el (mm-valid-image-format-p): Comment fix.
3425
3426         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
3427
3428 2010-09-28  Julien Danjou  <julien@danjou.info>
3429
3430         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
3431         mail-address contains the same string as real-name.
3432
3433         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
3434         non-blank in header, otherwise it'll get stripped.
3435
3436         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
3437         real-name, and then for mail address rather than doing : or , search.
3438
3439 2010-09-27  Julien Danjou  <julien@danjou.info>
3440
3441         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
3442         right completing-read function.
3443         (gnus-use-ido): New variable
3444         (gnus-completing-read-with-default): Remove.
3445         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
3446         (gnus-agent-add-group):
3447         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
3448         * mm-view.el (mm-view-pkcs7-decrypt):
3449         * mm-util.el (mm-codepage-setup):
3450         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
3451         * mml-smime.el (mml-smime-openssl-sign-query):
3452         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
3453         (mml-insert-multipart):
3454         * gnus-msg.el (gnus-summary-yank-message):
3455         * gnus-int.el (gnus-start-news-server):
3456         * mm-decode.el (mm-interactively-view-part):
3457         * gnus-dired.el (gnus-dired-attach):
3458         * gnus.el (gnus-read-method):
3459         * gnus-bookmark.el (gnus-bookmark-jump):
3460         * gnus-art.el (gnus-mime-view-part-as-type)
3461         (gnus-mime-action-on-part, gnus-article-encrypt-body):
3462         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
3463         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
3464         * nnmairix.el (nnmairix-create-server-and-default-group)
3465         (nnmairix-update-groups, nnmairix-get-server)
3466         (nnmairix-backend-to-server, nnmairix-goto-original-article)
3467         (nnmairix-get-group-from-file-path):
3468         * nnrss.el (nnrss-find-rss-via-syndic8):
3469         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
3470         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
3471         (gnus-group-browse-foreign-server):
3472         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
3473         (gnus-summary-execute-command, gnus-summary-respool-article)
3474         (gnus-read-move-group-name):
3475         * gnus-score.el (gnus-summary-increase-score)
3476         (gnus-summary-score-effect):
3477         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
3478
3479 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
3480
3481         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
3482         x-focus-frame.
3483
3484         * nnimap.el (auth-source-forget-user-or-password)
3485         (auth-source-user-or-password): Autoload.
3486
3487         * message.el (message-from-style, message-interactive)
3488         (message-cite-prefix-regexp, message-sendmail-envelope-from)
3489         (message-yank-prefix, message-indentation-spaces, message-signature)
3490         (message-signature-file): Add comment.
3491
3492 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3493
3494         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
3495         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
3496         new articles.
3497
3498         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
3499         parts.
3500         (nnimap-request-article): Work with the t setting, too.
3501
3502         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
3503         that you don't get flashes of other buffers.
3504         (gnus-summary-show-complete-article): Intern before setting.
3505
3506 2010-09-27  David Engster  <dengste@eml.cc>
3507
3508         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
3509         well as HEADERS.
3510         (nnmairix-retrieve-headers): Provide new argument for the above.
3511
3512 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3513
3514         * gnus-sum.el (gnus-summary-move-article): Don't alter
3515         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
3516         group.
3517
3518         * nnimap.el (nnimap-update-info): Don't destructively alter active.
3519
3520         * message.el (message-cite-prefix-regexp): Revert my last edit.
3521
3522         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
3523         variable instead of the Gnus variable.
3524
3525         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
3526
3527         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
3528
3529         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
3530         since some servers don't like it.
3531         (nnimap-open-connection): Forget credentials if the server says the
3532         password was wrong.
3533         (nnimap-parse-line): Protect against invalid data.
3534
3535         * gnus-sum.el (gnus-summary-move-article): Add comment.
3536         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
3537         nothing alters it while scanning for new messages.
3538
3539         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
3540         which may or may not help.
3541         (nnimap-open-connection): If we're doing a stream connection, and then
3542         discover we're on a STARTTLS-capable server, then open a STARTTLS
3543         connection instead.
3544
3545 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3546
3547         * nnimap.el (utf7): Require.
3548
3549         * message.el (message-cite-prefix-regexp): Remove "}" from citation
3550         prefix.
3551
3552 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
3553
3554         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
3555
3556 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3557
3558         * nnimap.el (nnimap-request-accept-article): Message the error on
3559         error.
3560
3561 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3562
3563         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
3564
3565 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3566
3567         * nndoc.el (nndoc-request-list): Return success always.
3568
3569         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
3570         `fetch-old' -- we only want to fetch the articles we've requested.
3571         The rest are in the agent, probably.
3572         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
3573         disappeared server" to something low.  It's not important.
3574
3575         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
3576         arrived before the FETCH data.
3577
3578         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
3579         target here, because we don't know the Gnus name of the group.
3580
3581         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
3582         for the correct group.
3583
3584         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
3585
3586         * gnus.el (gnus): Give a final warning after startup.
3587
3588         * gnus-util.el (gnus-action-message-log): New variable.
3589         (gnus-message): Use it.
3590         (gnus-final-warning): New function.
3591
3592         * nnimap.el (nnimap-open-connection): Record the greeting.
3593         (nnimap): Add greeting.
3594
3595 2010-09-26  Julien Danjou  <julien@danjou.info>
3596
3597         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
3598         arguments.
3599         (gnus-html-wash-images): Fix spec computing to include start/end.
3600
3601         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
3602
3603 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3604
3605         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
3606         deletion.
3607         (nnimap-retrieve-headers): Don't select the group, because that's
3608         already done by nnimap-possibly-change-group.
3609
3610         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
3611         (gnus-picon-transform-address): Use it.
3612
3613         * mail-source.el (mail-source-value): Revert previous patch.
3614
3615         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
3616         on failure.
3617         (nnimap-open-connection): Look up both virtual and physical server name
3618         credentials.
3619
3620         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
3621
3622 2009-02-07  Dave Love  <fx@gnu.org>
3623
3624         * tls.el (open-tls-stream): Don't query killing process.
3625
3626 2009-02-08  Dave Love  <fx@gnu.org>
3627
3628         * gnus-win.el (gnus-window-to-buffer-helper)
3629         (gnus-all-windows-visible-p): Function needn't be a symbol.
3630
3631         * mail-source.el (mail-source-value): Function needn't be a symbol.
3632
3633 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3634
3635         * message.el (message-cite-prefix-regexp): Remove } from the cite
3636         prefix.
3637
3638         * gnus-art.el (gnus-treatment-function-alist): Do picons before
3639         highlight again, so that the highlight is correct.
3640
3641         * gnus-picon.el (gnus-picon): Remove again.
3642         (gnus-picon-create-glyph): Set the background XPM colour explicitly.
3643
3644         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
3645         doing the header highlightling, so that the background colour of the
3646         picon is correct.
3647
3648         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
3649         (gnus-picon): Ditto.
3650         (gnus-picon): Reinstate.  The background colour for picons is white.
3651         (gnus-picon-insert-glyph): Make the background white.
3652
3653         * nnml.el (nnml-open-nov): Don't return dead buffers.
3654
3655         * auth-source.el (auth-source-create): Query the user for whether to
3656         store the credentials.
3657
3658         * netrc.el (netrc-store-data): New function.
3659
3660         * auth-source.el (auth-source-user-or-password): Use the existing auth
3661         sources, if any, for creation.
3662
3663         * gnus.el (gnus-group-fast-parameter): Return the last matching
3664         parameter instead of the first matching parameter.
3665
3666 2010-09-26  Julien Danjou  <julien@danjou.info>
3667
3668         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
3669
3670 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3671
3672         * mml2015.el (mml2015-use): Remove gpg support.
3673
3674         * mml1991.el (mml1991-function-alist): Remove gpg function.
3675         (mml1991-gpg-sign): Remove.
3676
3677 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
3678
3679         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
3680         (gnus-browse-unsubscribe-current-group): Document it.
3681         (gnus-browse-unsubscribe-group): Use it.
3682
3683 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3684
3685         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
3686         address to the To list for easier response.
3687
3688         * gnus.el (gnus-play-startup-jingle): Remove.
3689         (gnus-splash): Don't play jingle.
3690         (gnus): Silence gnus-load message.
3691
3692         * gnus-art.el (gnus-treat-play-sounds): Remove.
3693
3694         * gnus.el (gnus-play-jingle): Remove audio support.
3695
3696         * gnus-cus.el (gnus-score-customize): Remove audio reference.
3697
3698         * earcon.el: Remove -- no users.
3699
3700         * gnus-audio.el: Remove -- no users of this package.
3701
3702         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
3703
3704         * gnus-start.el (gnus-setup-news): Remove nocem support.
3705
3706         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
3707
3708         * gnus.el (gnus-use-nocem): Remove.
3709
3710         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
3711         Remove.
3712
3713         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
3714         uses NoCeM any more.
3715
3716         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
3717         (gnus-button-ctan-handler): Ditto.
3718         (gnus-button-handle-ctan-bogus-regexp): Ditto.
3719         (gnus-button-ctan-directory-regexp): Ditto.
3720         (gnus-button-handle-ctan): Ditto.
3721         (gnus-button-tex-level): Ditto.
3722         (gnus-button-alist): Remove CTAN stuff.
3723
3724 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3725
3726         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
3727         nnimap-streaming test.
3728
3729         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
3730         servers twice.
3731
3732         * nnimap.el (nnimap-open-connection): Add more error reporting when
3733         nnimap fails early.
3734
3735         * nnheader.el (nnheader-get-report-string): New function.
3736         (nnheader-get-report): Use it.
3737
3738         * gnus-int.el (gnus-check-server): Say what the error was when opening
3739         failed.
3740
3741         * nnimap.el (nnimap-wait-for-response): Search further when we're not
3742         using streaming.
3743
3744 2010-09-25  Julien Danjou  <julien@danjou.info>
3745
3746         * gnus-html.el (gnus-html-rescale-image): Use our defalias
3747         gnus-window-inside-pixel-edges.
3748
3749 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3750
3751         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
3752
3753         * mm-decode.el (mm-save-part): Allow saving to other directories the
3754         normal Emacs way.
3755
3756         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
3757         Suggested by Jay Berkenbilt.
3758
3759         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
3760         there isn't a single byte.
3761
3762         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
3763         just do it.  It doesn't really seem to matter what the user responds
3764         here, I think, so it's just a confusing question.
3765
3766         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
3767         non-streaming case.
3768
3769         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
3770         (gnus-article-encrypt-body): Use it.
3771
3772         * gnus-sum.el (gnus-summary-show-complete-article): New command and
3773         keystroke.
3774
3775         * nnimap.el (nnimap-find-wanted-parts-1):
3776         Use gnus-fetch-partial-articles.
3777
3778         * gnus-art.el (gnus-fetch-partial-articles): New variable.
3779
3780         * nnimap.el (nnimap-insert-partial-structure): New function.
3781         (nnimap-get-partial-article): New function.
3782         (nnimap-request-article): Use it.
3783         (nnimap-wait-for-response): Return whether the wait was successful.
3784         (nnimap-finish-retrieve-group-infos): Don't do anything if the
3785         retrieval wasn't successful.
3786         (nnimap-retrieve-group-data-early): Allow throttling servers.
3787         (nnimap-streaming): New variable.
3788         (nnimap-fetch-partial-articles): Remove.
3789
3790         * mm-decode.el (mm-with-part): Protect against killed buffers.
3791
3792         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
3793         for prettier summary display.
3794
3795 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
3796
3797         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
3798
3799 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3800
3801         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
3802         apparently third-party libraries depend on it.
3803
3804         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
3805         before starting negotiation.
3806
3807         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
3808         privacy reasons.
3809         (gnus-treat-mail-gravatar): Ditto.
3810
3811         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
3812         buffer when inserting images.  Inserting text into the headers, for
3813         instance, can make them invalid.
3814
3815 2010-09-25  Julien Danjou  <julien@danjou.info>
3816
3817         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
3818         variables.
3819
3820         * nnheader.el: Remove useless variables news-reply-yank-from and
3821         news-reply-yank-message-id.
3822
3823         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
3824         variables.
3825
3826         * mml1991.el: Remove useless mml1991-verbose.
3827
3828         * gnus.el: Remove useless variable gnus-use-generic-from.
3829         Remove obsolete variable gnus-topic-indentation.
3830
3831         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
3832
3833         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
3834
3835         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
3836
3837         * gnus-group.el: Remove useless gnus-group-icon-cache.
3838         Remove useless gnus-ephemeral-group-server.
3839
3840         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
3841
3842         * mml2015.el: Remove useless mml2015-verbose.
3843
3844         * mml-smime.el: Remove useless mml-smime-verbose.
3845
3846         * gnus.el: Remove useless gnus-local-domain.
3847
3848         * gnus-gravatar.el (gnus-gravatar-transform-address):
3849         Use gnus-gravatar-size.
3850
3851         * gnus-art.el: Remove useless gnus-treat-translate.
3852
3853 2010-09-24  Julien Danjou  <julien@danjou.info>
3854
3855         * gnus-sum.el: Add support for Gravatars.
3856
3857         * gnus-art.el: Add support for Gravatars.
3858
3859         * gnus-gravatar.el: Add this file.
3860
3861         * gravatar.el: Add this file.
3862
3863 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3864
3865         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
3866
3867         * gnus-group.el (gnus-group-fetch-faq): Remove.
3868
3869         * gnus.el (gnus-group-faq-directory): Remove.
3870
3871         * gnus-group.el (gnus-group-fetch-charter): Remove.
3872
3873         * gnus.el (gnus-group-charter-alist): Remove.
3874
3875         * gnus-group.el (gnus-group-archive-directory): Remove.
3876         (gnus-group-recent-archive-directory): Ditto.
3877         (gnus-group-make-archive-group): Remove.
3878
3879         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
3880
3881         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
3882         use the same article number for all the cached articles.
3883
3884         * nnimap.el (nnimap-command): Register the last command time so
3885         that we can use it for idling NOOPs.
3886         (nnimap-open-connection): Start the keeplive timer.
3887         (nnimap-make-process-buffer): Store all the process buffers.
3888         (nnimap-keepalive): New function.
3889
3890         * starttls.el (starttls-open-stream): Add autoload cookie.
3891
3892 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
3893
3894         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
3895         handling.
3896
3897 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3898
3899         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
3900         its data structures.
3901
3902         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
3903         instead of the cl.el copy-list.
3904         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
3905         equalp.
3906
3907 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
3908
3909         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
3910         and tool-bar-local-item-from-menu.
3911
3912         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
3913         mode-line-highlight face for Emacs.
3914
3915         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
3916         loading gnus-sum.elc; fix comment for canlock-verify.
3917         (gnus-article-jump-to-part): Use read-number.
3918         (gnus-insert-mime-button, gnus-insert-mime-security-button):
3919         Remove Emacs pre-21 compatible code for help-echo.
3920         (gnus-article-next-page-1): No need to adjust the number of lines.
3921         (gnus-article-describe-bindings): Always use help-buffer.
3922
3923         * gnus-audio.el (gnus-audio-inline-sound)
3924         * gnus-cus.el (gnus-custom-mode)
3925         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
3926
3927         * gnus-sum.el (gnus-remove-overlays): Doc fix.
3928
3929         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
3930         compatible code.
3931
3932 2010-09-24  Glenn Morris  <rgm@gnu.org>
3933
3934         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
3935         visiting the fcc file in rmail-mode.
3936
3937         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
3938
3939 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
3940
3941         * nnir.el: Silence the byte compiler.
3942
3943         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
3944         alias to browse-url-url-encode-chars if any.
3945         (gnus-html-encode-url): Use it.
3946
3947 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3948
3949         * gnus-start.el (gnus-use-backend-marks): New variable.
3950         (gnus-get-unread-articles-in-group): Use it.
3951
3952         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
3953         makeover.
3954
3955 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
3956
3957         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
3958
3959 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3960
3961         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
3962         Remove.
3963         (gnus-setup-news-hook):
3964         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
3965
3966         * gnus-int.el (gnus-request-update-info): Protect against backends not
3967         having the function.
3968
3969         * nnimap.el (nnimap-stream): Mention starttls.
3970         (nnimap-open-connection): Add starttls support.
3971
3972 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
3973
3974         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
3975
3976 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3977
3978         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
3979         BODYSTRUCTUREs.
3980         (nnimap-transform-headers): Unfold quoted {42} headers.
3981
3982         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
3983         the info.
3984         (gnus-get-unread-articles): Only call updatep on backends that support
3985         it.
3986
3987         * nnweb.el (nnweb-request-update-info): NOOP.
3988
3989         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
3990
3991         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
3992         since it only deals with marks.
3993
3994         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
3995         gnus-request-marks, and make a new gnus-request-update-info.
3996
3997         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
3998         the active instead of the high number, which is usually too low.
3999
4000 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
4001
4002         * netrc.el (netrc-parse): Remove encrypt.el mentions.
4003         * encrypt.el: Remove.
4004
4005 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4006
4007         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
4008         server in symbolic form.
4009
4010         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
4011
4012 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4013
4014         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
4015         (nnimap-update-info): Fix up code slightly.
4016
4017         * gnus-int.el (gnus-open-server): Add tracing for performance
4018         debugging.
4019
4020         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
4021         (gnus-group-insert-group-line): Pass the real group name so that it
4022         gets the right data.
4023
4024         * gnus-start.el (gnus-get-unread-articles): Don't have
4025         `gnus-get-unread-articles-in-group' update info, since that can be
4026         really slow and doesn't seem to be needed?
4027
4028 2010-09-22  Dan Christensen  <jdc@uwo.ca>
4029
4030         * time-date.el (date-to-time): Try using parse-time-string first before
4031         using the slower timezone-make-date-arpa-standard.
4032
4033 2010-09-22  Julien Danjou  <julien@danjou.info>
4034
4035         * gnus-group.el (gnus-group-insert-group-line):
4036         Call gnus-group-highlight-line.
4037         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
4038         default hook list.
4039         (gnus-group-update-eval-form): Add new function.
4040         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
4041         (gnus-group-get-icon): Use gnus-group-update-eval-form.
4042
4043 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4044
4045         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
4046         immediate, then expire all articles.
4047         (nnimap-update-info): Fix off-by-one errors.
4048         (nnimap-flags-to-marks): Would return no marks lists for group with no
4049         flags.  Instead return the other data.
4050
4051 2010-09-22  Julien Danjou  <julien@danjou.info>
4052
4053         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
4054         Only return an icon.
4055         (gnus-group-insert-group-line): Compute icon to return.
4056
4057         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
4058         (gnus-html-image-fetched): Only cache if
4059         gnus-html-image-automatic-caching is set.
4060         (gnus-html-image-fetched): Check for errors.
4061
4062 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4063
4064         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
4065         once per method on `g'.  This ensures that backends like nnfolder don't
4066         open all their folders.
4067
4068         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
4069         (nnimap-request-list): Nix out group in the correct buffer.
4070         (nnimap-parse-flags): Implement by using `read' instead of
4071         hand-parsing.
4072         (nnimap-flags-to-marks): Pass on permanent-flags.
4073         (nnimap-make-process-buffer): Record the server name.
4074         (nnimap-parse-flags): Fix typo.
4075         (nnimap-request-scan): Run split on the server in general, not just a
4076         single group.
4077
4078         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
4079         parameter, and propagate this downwards.
4080
4081         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
4082         since EXAMINE changes it on the server.
4083
4084         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
4085         this command might take a while.
4086
4087 2010-09-22  Julien Danjou  <julien@danjou.info>
4088
4089         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
4090         harmful if you have 2 images side-by-side, they can't be properly
4091         update on text deletion.  Using text-property is safer here.
4092         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
4093         data.
4094
4095 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4096
4097         * nnimap.el (nnimap-expunge-inbox): Remove.
4098         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
4099         (nnimap-expunge): Flip default to t.
4100
4101         * gnus.el (gnus-method-to-server): Don't push things to the cache
4102         unless it's unique.
4103         (gnus-server-to-method): Ditto.
4104
4105 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
4106
4107         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
4108
4109 2010-09-22  Julien Danjou  <julien@danjou.info>
4110
4111         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
4112         get the start of data.
4113         (gnus-html-encode-url): Add this function to encode special chars in
4114         URL.
4115         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
4116         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
4117
4118         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
4119         default.
4120         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
4121
4122         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
4123         images alt-text.
4124         (gnus-html-put-image): Put alt-text as help-echo.
4125
4126 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
4127
4128         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes)
4129         * mm-util.el (mm-decompress-buffer)
4130         * nnir.el (nnir-run-find-grep)
4131         * pop3.el (pop3-list): Use 3rd arg of split-string.
4132
4133         * time-date.el (format-seconds): Comment fix.
4134
4135         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
4136         and byte-optimize-form-code-walker.
4137         (dgnushack-make-auto-load): Don't advise make-autoload.
4138
4139         * lpath.el: Remove Emacs 21 stuff.
4140
4141 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4142
4143         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
4144         outside the active range.  Suggested by Dan Christensen.
4145
4146         * gnus-start.el (gnus-get-unread-articles): Get the extended method
4147         slightly later to avoid double-getting it.
4148
4149         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
4150         previous patch.
4151
4152         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
4153
4154 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
4155
4156         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
4157
4158 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4159
4160         * gnus-int.el (gnus-open-server): Give a better error message in the
4161         "go offline" case.
4162
4163         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
4164         marks for nnimap, which is seldom the right thing to do.
4165
4166         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
4167         (gnus-same-method-different-name): New function.
4168
4169         * nnimap.el (parse-time): Require.
4170
4171         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
4172         method in the presence of many similar methods.
4173
4174         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
4175
4176         * nnimap.el (nnimap-find-expired-articles): Don't refer to
4177         nnml-inhibit-expiry.
4178
4179         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
4180         find out whether methods are equal.
4181
4182         * nnimap.el (nnimap-find-expired-articles): New function.
4183         (nnimap-process-expiry-targets): New function.
4184         (nnimap-request-move-article): Request the article before looking at
4185         what the Message-ID is.  Fix found by Andrew Cohen.
4186         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
4187
4188         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
4189         for oldness in addition to being a predicate.
4190
4191         * nnimap.el (nnimap-request-group): When we have zero articles, return
4192         the right data to Gnus.
4193         (nnimap-request-expire-articles): Only delete articles immediately if
4194         the target is 'delete.
4195
4196         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
4197         method, this would bug out.
4198
4199         * gnus-group.el (gnus-group-expunge-group): Rename from
4200         gnus-group-nnimap-expunge, and implemented as a normal interface
4201         function.
4202
4203         * gnus-int.el (gnus-request-expunge-group): New function.
4204
4205         * nnimap.el (nnimap-request-create-group): Implement.
4206         (nnimap-request-expunge-group): New function.
4207
4208 2010-09-21  Julien Danjou  <julien@danjou.info>
4209
4210         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
4211         (gnus-html-cache-expired): Add new function.
4212         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
4213         wethever we should display image for fetch it.
4214         Compute alt-text earlier to pass it to the fetching function too.
4215         (gnus-html-schedule-image-fetching): Change function argument to only
4216         get one image at a time, not a list.
4217         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
4218         cache.
4219         (gnus-html-get-image-data): New function to retrieve image data from
4220         cache.
4221         (gnus-html-put-image): Change buffer argument to use image data rather
4222         than file, and place image above region rather than inserting a new
4223         one.  Do not take alt-text as argument, since it's useless now: we place
4224         the image above alt-text.
4225         (gnus-html-prune-cache): Remove.
4226         (gnus-html-show-images): Start to fetch image when we find one, do not
4227         push into a temporary list.
4228         (gnus-html-prefetch-images): Only fetch image if they have expired.
4229         (gnus-html-browse-image): Fix, use 'gnus-image-url.
4230         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
4231
4232 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4233
4234         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
4235
4236 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4237
4238         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
4239         spec inser "*" if the group isn't active instead of 0.
4240
4241         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
4242         opening the server.
4243         (nnimap-request-delete-group): Implement group deletion.
4244         (nnimap-transform-headers): Return the size of the entire message in
4245         the Bytes header, not just the size of the first part.
4246         (nnimap-request-move-article): When moving an article from nnimap,
4247         request the article first so the accepting form has an article to
4248         accept.  Reported by Dan Christensen.
4249         (nnimap-command): Make sure that the error message doesn't error out.
4250
4251 2010-09-20  David Edmondson  <dme@dme.org>  (tiny change)
4252
4253         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
4254         we haven't requested anything.
4255
4256 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4257
4258         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
4259         "".  Fix found by Andrew Cohen.
4260
4261         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
4262         instead of -encode-string.
4263
4264 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4265
4266         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
4267
4268         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
4269         by mm-subst-char-in-string.
4270
4271 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4272
4273         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
4274         waiting for the connection string.
4275
4276         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
4277         arriving.
4278
4279         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
4280         bogus characters.  This allows selecting certain Gmail groups.
4281
4282         * nnimap.el (nnimap-find-wanted-parts-1): New function.
4283         (nnimap-fetch-partial-articles): New variable.
4284         (nnimap-open-connection): When looking for credentials, also use the
4285         nnimap-server-port.
4286         (nnimap-request-article): Return the group/article number, so that Gnus
4287         `^' works as expected.
4288         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
4289
4290         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
4291         comments.
4292         (gnus-methods-sloppily-equal): New function.
4293         (gnus): When using the development version of Gnus, load the gnus-load
4294         file.
4295
4296         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
4297         `gnus-open-server' on each method before trying to scan them etc.
4298         This ensures that all the backend parameters are set correctly.
4299
4300         * nnimap.el (nnimap-authenticator): New variable.
4301         (nnimap-open-connection): Allow anonymous login.
4302         (nnimap-transform-headers): The chars header is called Chars not Bytes.
4303         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
4304
4305         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
4306         patch, found by Knut Anders Hatlen.
4307
4308 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
4309
4310         * gnus-agent.el (gnus-agent-batch-confirmation)
4311         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
4312         to gnus-message.
4313         * gnus-art.el (gnus-article-describe-briefly): Likewise.
4314         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
4315         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
4316         * gnus-int.el (gnus-open-server): Likewise.
4317         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
4318         (gnus-score-check-syntax): Likewise.
4319         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
4320         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
4321         Likewise.
4322         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
4323
4324 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4325
4326         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
4327         calling conventions so that prefetch doesn't bug out.
4328
4329 2010-09-19  Julien Danjou  <julien@danjou.info>
4330
4331         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
4332         rather than `subst-char-in-region' in order to be able to replace ASCII
4333         char by UTF-8 ones.
4334
4335         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
4336         than curl.
4337         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
4338         the right URL and ALT text on images.
4339         (gnus-html-wash-tags): Fix tag case.
4340         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
4341         (gnus-article-html): Add -o display_ins_del=2 option.
4342         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
4343
4344 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4345
4346         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
4347         the extra mail headers, which sometimes seem to happen for unknown
4348         reasons.
4349
4350         * mail-parse.el (mail-header-encode-parameter): Define as
4351         rfc2045-encode-string instead of as rfc2231-encode-string, since some
4352         (or most, perhaps?) mail readers don't understand the latter, but do
4353         understand the former.
4354
4355         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
4356         to nil, so that no methods are automatically agentized.  I think this
4357         is probably what most users want.
4358
4359         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
4360         from url-retrieve, for instance about invalid URLs.
4361
4362         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
4363         groups that have no articles.
4364         (nnimap-request-article): Check that we really got an article when we
4365         requested one.
4366
4367         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
4368         doesn't exist.
4369
4370         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
4371         nntp buffer so the agent can save it.
4372         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
4373         that CRLF doesn't get translated to \n.
4374         (nnimap-open-connection): Don't make 'shell commands only send \n.
4375
4376 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4377
4378         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
4379         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
4380         Update var name.
4381         (nnml-generate-nov-file): Use dolist.
4382         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
4383         Use with-current-buffer.
4384
4385 2010-09-18  Julien Danjou  <julien@danjou.info>
4386
4387         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
4388         parallel.
4389
4390 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4391
4392         * nnimap.el (nnimap-update-info): When doing partial marks update, get
4393         the range update right.
4394         (nnimap-request-group): Don't make `M-g' bug out on group with no
4395         marks.
4396         (nnoo): Require, so that other packages can require nnimap.
4397         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
4398         command we're looking for.  This helps when the server sends more
4399         responses after we've gotten everything we expected.
4400         (nnimap): Add a `newlinep' field to keep track of end-of-line
4401         conventions.
4402         Don't send CRLF to things that don't want it.
4403         (nnimap-request-accept-article): Ditto.
4404
4405 2010-09-18  Julien Danjou  <julien@danjou.info>
4406
4407         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
4408         than curl to retrieve images.
4409
4410 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4411
4412         * nnimap.el (nnimap-update-info): Extend the info so that we can set
4413         the marks.
4414         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
4415         (nnimap-wait-for-connection): New function.
4416         (nnimap-open-connection): If we have PREAUTH, don't query for login
4417         credentials.
4418         (nnimap-update-info): Fix off-by-one error when concatenating ranges
4419         when doing a partial update.
4420
4421 2010-09-18  Julien Danjou  <julien@danjou.info>
4422
4423         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
4424         tags.
4425
4426 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4427
4428         * nnimap.el (nnimap-credentials): New function.
4429         (nnimap-open-connection): Use the new function to look for credentials
4430         also on the numeric equivalents of "imap" and "imaps".
4431
4432         * gnus-start.el (gnus-activate-group): Send the info to
4433         gnus-request-group.
4434
4435         * nnimap.el (nnimap-request-group): Have the "check" version of the
4436         function parse flags and update the info, so that a `M-g' get a total
4437         resync of all flags from the group.
4438
4439         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
4440         to allow backends to alter the info on group selection.  Also alter all
4441         the backend -request-group functions to take the parameter.
4442
4443         * nnimap.el (nnimap-store-info): New function.
4444         (nnimap-update-info): Store the info for later usage.
4445         (nnimap-request-group): Use the stored info for the dont-check case, so
4446         that we don't retrieve all marks when we enter a group.
4447
4448         * nnimap.el: Use deffoo instead of defun for interface functions.
4449
4450         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
4451         update the group info.  This makes the nndraft groups, for instance, go
4452         back to their old behaviour.
4453
4454         * gnus-sum.el (gnus-select-newsgroup): Indent.
4455
4456         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
4457         in.
4458         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
4459         nothing.
4460
4461         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
4462         from methods that are denied.
4463
4464         * gnus-int.el (gnus-method-denied-p): New function.
4465
4466         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
4467         store the password instead of netrc.
4468         (nnimap-open-connection): Don't error out when we can't make a
4469         connections.
4470
4471         * auth-source.el (auth-source-create): In the password prompt, say what
4472         we're querying for.  Also prompt for user name if that hasn't been
4473         given.
4474
4475         * nnimap.el (nnimap-with-process-buffer): Remove.
4476
4477 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4478
4479         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
4480         method when we're reading from the agent.
4481
4482         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
4483
4484         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
4485         that's probably most useful for users.
4486
4487         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
4488         "failed" all the time.
4489
4490         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
4491         ...)) with (with-current-buffer ... ).
4492
4493         * nntp.el (nntp-open-server): Return whether the open was successful or
4494         not.
4495
4496         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
4497         select an unread unseen article first.
4498
4499         * nnimap.el (nnimap-open-connection): If the user doesn't have a
4500         /etc/services, supply some sensible port defaults.
4501
4502         * dgnushack.el: Define netrc-credentials.
4503
4504 2010-09-17  Julien Danjou  <julien@danjou.info>
4505
4506         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
4507
4508 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
4509
4510         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
4511         doesn't have any parameters.
4512
4513 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4514
4515         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
4516         only upcased checks.
4517
4518         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
4519
4520         * nnimap.el (nnimap-open-shell-stream): New function.
4521         (nnimap-open-connection): Use it.
4522         (nnimap-transform-headers): Get the number of lines in each message.
4523         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
4524         number of lines.
4525         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
4526         problem.
4527
4528         * utf7.el (utf7-encode): Autoload.
4529
4530         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
4531         to allow the mail splitting to not return a default group.  This is
4532         useful for nnimap, which will leave unmatched mail in the inbox.
4533
4534         * nnimap.el: Rewritten.
4535
4536         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
4537         nnimap usage.
4538
4539         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
4540         if the move is internal, so that nnimap can do fast internal moves.
4541
4542         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
4543         data.
4544         (gnus-read-active-for-groups): Support finishing the early retrieval of
4545         data.
4546
4547         * gnus-range.el (gnus-range-nconcat): New function.
4548
4549         * gnus-int.el (gnus-finish-retrieve-group-infos)
4550         (gnus-retrieve-group-data-early): New functions.
4551
4552 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4553
4554         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
4555         (nnrss-retrieve-groups):
4556         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
4557         (pop3-quit): Use with-current-buffer.
4558
4559 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4560
4561         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
4562         instead of nnheader-accept-process-output.
4563
4564         * dgnushack.el (dgnushack-compile): Add comment.
4565
4566         * lpath.el: No need to fbind propertize for XEmacs 21.4.
4567
4568         * gnus-html.el (gnus-html-schedule-image-fetching)
4569         (gnus-html-prefetch-images): Replace process-kill-without-query by
4570         gnus-set-process-query-on-exit-flag.
4571
4572 2010-09-16  Romain Francoise  <romain@orebokech.com>
4573
4574         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
4575
4576 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4577
4578         * gnus-registry.el (gnus-registry-install-shortcuts): The second
4579         parameter to unintern is mandatory-ish in Emacs 24.
4580
4581         * gnus-html.el (gnus-html-schedule-image-fetching)
4582         (gnus-html-prefetch-images): Check for curl before using it.
4583
4584         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
4585         depend on curl, which isn't essential.
4586
4587         * imap.el: Revert back to version
4588         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
4589         seem problematic.
4590
4591 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
4592
4593         * gnus-registry.el (gnus-registry-install-shortcuts):
4594         Explicitly pass `obarray' to `unintern' to avoid a warning.
4595
4596 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4597
4598         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
4599         change.
4600
4601         * nnrss.el (nnrss-request-list): Remove this function and related
4602         functions, including the moreover stuff.
4603
4604 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4605
4606         * nnrss.el (nnrss-retrieve-groups): New function.
4607
4608 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
4609
4610         * .dir-locals.el: Add no-byte-compile cookie.
4611
4612 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4613
4614         * time-date.el (format-seconds): Comment fix.
4615
4616         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
4617         for back end that doesn't support request-scan.
4618
4619 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4620
4621         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
4622         then do request scans from the backends.
4623
4624         * netrc.el (netrc-credentials): New conveniency function.
4625
4626         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
4627         avoid running a hook per line, since this takes a lot of time,
4628         profiling shows.
4629         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
4630         directly if gnus-visual-p is true.
4631
4632 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4633
4634         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
4635         groups; replace mapcar with dolist which is a bit faster; pass groups
4636         info to gnus-read-active-file-1.
4637         (gnus-read-active-file-1): Scan only specified groups if the new
4638         optional arg `infos' is given.
4639
4640 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4641
4642         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
4643
4644         * pop3.el (pop3-movemail): Remove.
4645         (pop3-streaming-movemail): Rename to pop3-movemail.
4646
4647         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
4648         don't restrict end-tag searches to the end of the line.
4649
4650 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4651
4652         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
4653         articles of every unchecked group to t, which means unknown since the
4654         server has never been opened.
4655
4656 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4657
4658         * gnus-html.el (gnus-html-show-alt-text): New command.
4659         (gnus-html-browse-image): Ditto.
4660         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
4661         to browse the image directly.
4662         (gnus-html-wash-tags): Search for images first, so that <a><img> works
4663         better.
4664
4665         * gnus-async.el (gnus-async-article-callback):
4666         Call `gnus-html-prefetch-images' unconditionally.
4667
4668         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
4669         before feeding URLs to curl.
4670
4671 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4672
4673         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
4674         internal images as deletable by `W D D'.
4675
4676         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
4677         (gnus-async-article-callback): Fix typo.
4678
4679 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4680
4681         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
4682         current line to work around bugs in the output from w3m.
4683
4684         * gnus-async.el (gnus-async-article-callback): Always prefetch images
4685         for groups that want that.
4686
4687         * nntp.el (nntp-wait-for-string): Supply a timeout for
4688         accept-process-output to ensure progress.
4689
4690         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
4691         level to get unread articles from, then use that for foreign groups,
4692         too.
4693
4694         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
4695         confuses the rest of the function.
4696
4697         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
4698         for the methods that support -retrieve-groups, too.
4699
4700         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
4701
4702 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4703
4704         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
4705         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
4706
4707         * pop3.el: Require cl when compiling.
4708         (pop3-number-of-responses): Search for "+OK", not "+OK ".
4709
4710 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4711
4712         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
4713         that aren't going to be activated.
4714         (gnus-get-unread-articles): Fix up the last commit.
4715
4716         * gnus-html.el (gnus-article-html): Allow calling without specifying
4717         the handle.  In that case, dissect the buffer first.
4718
4719         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
4720
4721         * nnimap.el (nnimap-open-connection): Revert the change that would look
4722         into authinfo for imaps instead of imap.
4723
4724         * gnus-start.el (gnus-activate-group): Take an optional parameter to
4725         say that you don't want to call gnus-request-group with don-check, but
4726         do check the reponse.  This is for virtual groups only.
4727         (gnus-get-unread-articles): Count the archive groups as secondary, so
4728         that they're activated the same way as before.
4729
4730         * imap.el (imap-message-map): Removed optional buffer parameter, since
4731         no callers use it.
4732         (imap-message-get): Ditto.
4733         (imap-message-put): Ditto.
4734         (imap-mailbox-map): Ditto.
4735         (imap-mailbox-put): Ditto.
4736         (imap-mailbox-get): Ditto.
4737         (imap-mailbox-get): Revert last change for this function.
4738
4739         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
4740         case-insensitively.
4741         (nnimap-debug): Remove.
4742
4743         * imap.el (imap-fetch-safe): Removed function, and altered all callers
4744         to use `imap-fetch' instead.  According to the comments, this should be
4745         safe, since all other IMAP clients use the 1:* syntax.
4746         (imap-enable-exchange-bug-workaround): Removed.
4747         (imap-debug): Removed -- doesn't seem very useful.
4748
4749         * mail-source.el (mail-source-fetch): Don't message if we're fetching
4750         mail from a file, and the file doesn't exist.
4751
4752         * imap.el (imap-log): New convenience function used throughout instead
4753         of repeating the same code all over the place.
4754
4755         * pop3.el (pop3-streaming-movemail): Return t for success.
4756
4757         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
4758         .authinfo if we're using ssl connection.
4759
4760         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
4761         already have if we're in a main Gnus `g' run.
4762
4763         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
4764
4765 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4766
4767         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
4768
4769         * nnmh.el (nnmh-request-list-1): Bind `file'.
4770
4771         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
4772         alias to set-process-query-on-exit-flag or process-kill-without-query.
4773         (pop3-open-server): Use it.
4774
4775 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4776
4777         * mail-source.el (mail-source-delete-crash-box): Always move the crash
4778         box to the Incoming file.  Fixes mistake in previous checkin.
4779
4780         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
4781         request loop (for debugging purposes) removed.
4782
4783         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
4784         culprit is more visible.
4785         (nnml-save-incremental-nov, nnml-open-incremental-nov)
4786         (nnml-add-incremental-nov): New functions to do "incremental" nov
4787         updates, where we just append to the end of the existing nov files
4788         without reading/writing them in full.
4789
4790         * mail-source.el (mail-source-delete-crash-box): Really only check the
4791         incoming files once in a while.
4792
4793         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
4794
4795         * mail-source.el (mail-source-delete-crash-box): Only check the
4796         incoming files for deletion once per day to save a lot of file
4797         accesses.
4798
4799         * pop3.el (pop3-logon): Fix up unbound variable typo.
4800
4801         * mail-source.el (pop3-streaming-movemail): Autoload.
4802
4803         * pop3.el (pop3-streaming-movemail):
4804         Respect pop3-leave-mail-on-server.
4805
4806         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
4807         retrieval.
4808
4809         * pop3.el (pop3-process-filter): Remove unused function.
4810         (pop3-streaming-movemail, pop3-send-streaming-command)
4811         (pop3-wait-for-messages, pop3-write-to-file)
4812         (pop3-number-of-responses): New functions for streaming pop3
4813         retrieval.
4814
4815         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
4816         come from no known methods.
4817         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
4818         list.
4819
4820         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
4821         message sizes.
4822         (pop3-movemail): Use erase-buffer instead of looping and deleting
4823         regions, which seems rather odd.
4824
4825         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
4826         file once per `g' run.
4827
4828         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
4829         directories.  This makes the draft queue directory work.
4830
4831         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
4832         data from the backends, so that we only request the list of groups from
4833         each method once.  This should speed things up considerably.
4834
4835         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
4836         detect that it's not implemented.
4837
4838         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
4839         we actually do recurse down into the tree, but don't stat all leaf
4840         nodes.
4841
4842         * gnus-html.el (gnus-html-show-images): If there are no images to show,
4843         then say so instead of bugging out.
4844
4845         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
4846         files exist before trying to read them.
4847
4848         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
4849         around <pre_int>.
4850
4851         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
4852
4853         * nnmh.el (nnmh-request-list-1): Optimize for speed.
4854
4855 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4856
4857         * mm-util.el (mm-image-load-path): Just return the image directories,
4858         not all directories in the path in addition to the image directories.
4859         (mm-image-load-path): Maintain a cache of the image directories so that
4860         the `g' command in Gnus doesn't have to stat dozens of directories each
4861         time.
4862
4863         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
4864         (gnus-html-wash-tags): Add a new `i' command to insert images.
4865         (gnus-html-insert-image): New command and keystroke.
4866         (gnus-html-redisplay-with-images): New command and keystroke.
4867         (gnus-html-show-images): Rename command.
4868         (gnus-html-wash-tags): Remove more white space before <pre_int> image
4869         spacers.
4870         (gnus-html-wash-tags): Decode entities at the end, so that entities
4871         inside the tags don't mess up the rest of the "parsing".
4872
4873         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
4874         so that nnimap methods aren't agentized by default.  There's apparently
4875         many problems related to agent/imap behaviour.
4876
4877         * gnus-art.el (gnus-article-copy-string): New command and key binding.
4878
4879         * gnus-html.el: Doc fix.
4880
4881 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
4882
4883         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
4884         specifier-spec-list for Emacs 21.
4885
4886         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
4887         glyph-width and glyph-height instead of display-graphic-p and
4888         image-size; make avoidance of displaying small images work for XEmacs.
4889
4890         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
4891         for XEmacs.
4892
4893         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
4894         of symbol that holds plist data.
4895         (gnus-process-plist): Remove plist of process after getting it.
4896
4897 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4898
4899         * message.el (message-generate-hashcash): Change default to
4900         'opportunistic if hashcash is installed.
4901
4902         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
4903         (gnus-html-put-image): Only call image-size once, since it's somewhat
4904         time-consuming on remote X servers.
4905
4906 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4907
4908         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
4909         type on data, not a file name.
4910
4911         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
4912         window-pixel-edges for Emacs 21.
4913
4914         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
4915         decoded contents.
4916         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
4917
4918 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4919
4920         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
4921         group line format, since it isn't very interesting.
4922
4923         * gnus-agent.el (gnus-agent-short-article),
4924         (gnus-agent-long-article): Increase values for these two variables,
4925         since most people are likely to have more network connection and
4926         storage than before.
4927
4928         * gnus.el (gnus-refer-article-method): Change default to 'current.
4929         When referring an article, the common behaviour is to refer it from the
4930         current select method, not the native select method.  The chances of
4931         the native select method having the message in question is rather slim
4932         these days.
4933
4934         * gnus-sum.el (gnus-auto-select-subject): Change default to
4935         `unseen-or-unread'.  I think it's likely that most people want to
4936         select an unseen article over a previously seen, but unread one.
4937
4938         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
4939         means that in the article buffer none of the minor mode elements will
4940         be shown, usually, and this is not desirable in most cases.
4941
4942         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
4943         that commands like `d' (and the like) go to the next line in the
4944         buffer, instead of the next unread article.  I think this is the
4945         behaviour that is most natural for most users.
4946         (gnus-single-article-buffer): Change default to nil, so that people can
4947         have as many article buffers open as they have summary buffer.  I think
4948         this is the most natural way for the groups to behave.
4949
4950         * message.el (message-generate-new-buffers): Change default to
4951         `unsent', so that all new message buffers start their names with the
4952         string "*unsent", and it's easier to find the buffers if you move from
4953         them.
4954
4955 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4956
4957         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
4958         small.  They're probably tracking images.
4959         (gnus-html-wash-tags): Remove all <pre_int> place holders.
4960         (gnus-html-rescale-image): Yet another try at getting the image sizing
4961         right.
4962
4963         * nntp.el (nntp-request-set-mark): Refuse to do marks if
4964         nntp-marks-file-name is nil.
4965
4966 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
4967
4968         * gnus-html.el (gnus-html-wash-tags)
4969         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
4970         Better logging.
4971
4972 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4973
4974         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
4975
4976         * gnus-html.el (gnus-html-wash-tags): Check the value of
4977         gnus-blocked-images in the summary buffer.
4978
4979 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
4980
4981         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
4982
4983 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4984
4985         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
4986         like "a", it seems like.
4987         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
4988         since it needs to be picked from the correct buffer.
4989
4990         * nnwfm.el: Remove.
4991
4992         * nnlistserv.el: Remove.
4993
4994 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
4995
4996         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
4997         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
4998
4999 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5000
5001         * nnkiboze.el: Remove.
5002
5003         * nndb.el: Remove.
5004
5005         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
5006         alt text.
5007         (gnus-html-rescale-image): Try to get the rescaling logic right for
5008         images that are just wide and not tall.
5009
5010         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
5011         overshadow variable bindings.
5012
5013 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
5014
5015         * gnus-html.el (gnus-html-wash-tags)
5016         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
5017         Add extra logging.
5018
5019 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5020
5021         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
5022         (gnus-max-image-proportion): New variable.
5023         (gnus-html-rescale-image): New function.
5024         (gnus-html-put-image): Rescale images.
5025
5026 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5027
5028         Fix up some byte-compiler warnings.
5029         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
5030         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
5031         (gnus-article-fill-cited-article, gnus-article-hide-citation)
5032         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
5033         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
5034         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
5035         (gnus-group-update-group): Use save-excursion and with-current-buffer.
5036
5037 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5038
5039         * gnus-html.el (gnus-article-html): Decode contents by charset.
5040
5041 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5042
5043         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
5044         (gnus-html-frame-width, gnus-blocked-images)
5045         * message.el (message-prune-recipient-rules): Add custom version.
5046         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
5047
5048         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
5049         functions.
5050
5051         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
5052         gnus-process-get.
5053
5054 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
5055
5056         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
5057         instead of lsub directly.
5058
5059 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5060
5061         * nnwarchive.el: Remove.
5062
5063         * gnus-soup.el: Remove.
5064
5065         * nnsoup.el: Remove.
5066
5067         * nnultimate.el: Remove.
5068
5069         * gnus-html.el (gnus-blocked-images): New variable.
5070
5071         * message.el (message-prune-recipients): New function.
5072         (message-prune-recipient-rules): New variable.
5073
5074         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
5075         guess whether a long line is natural text or not.
5076
5077         * gnus-html.el (gnus-html-schedule-image-fetching):
5078         Use gnus-process-plist and friends for compatibility.
5079
5080 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5081
5082         * gnus-html.el: Require packages that define macros used in this file.
5083         (gnus-article-mouse-face): Declare to silence byte-compiler.
5084         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
5085         process-get.
5086         (gnus-html-put-image): Use plist-get to avoid getf.
5087         (gnus-html-prefetch-images): Use with-current-buffer.
5088
5089 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5090
5091         * gnus-ems.el: Provide compatibility functions for
5092         gnus-set-process-plist.
5093
5094         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
5095         header-line-format for XEmacs 21.4.
5096
5097         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
5098         * gnus.el (gnus-valid-select-methods)
5099         * message.el (message-send-mail-partially-limit)
5100         * mm-decode.el (mm-text-html-renderer)
5101         * mml.el (mml-insert-mime-headers-always)
5102         * smiley.el (smiley-regexp-alist): Bump custom version.
5103
5104 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5105
5106         * gnus-html.el: require mm-url.
5107         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
5108         with the url to `url'.
5109         (gnus-html-wash-tags): Support cid: URLs/images.
5110
5111 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5112
5113         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
5114         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
5115         bindings, as they aren't useful at all.  `w' is moved to `W w'.
5116
5117         * gnus-move.el: Remove file, since it doesn't really work.
5118
5119         * gnus-html.el (gnus-article-html): Tell w3m that the input is
5120         UTF-8.  This seems to fix problems with some German web feeds.
5121
5122         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
5123         at the top so that the proper colours are applied.
5124
5125         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
5126         don't have dots in their names.
5127
5128         * gnus-art.el (gnus-article-view-part): Doc fix.
5129
5130         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
5131         XEmacs-compatible.
5132         (gnus-html-put-image): Don't do images on non-graphic displays.
5133
5134         * nnslashdot.el: Remove this unused backend.
5135
5136         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
5137         actions.
5138         (gnus-undo-register-1): Revert last change.
5139
5140         * gnus-group.el (gnus-group-completing-read): Protect against not
5141         having completion-styles bound.
5142
5143         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
5144         make broken recipients happier.
5145
5146         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
5147
5148         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
5149         point parameter.
5150
5151         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
5152
5153         * gnus-group.el (gnus-group-completing-read): Add 'substring to
5154         completion-styles for group selection.
5155
5156 2009-02-04  Andreas Schwab  <schwab@suse.de>
5157
5158         * gnus-score.el (gnus-score-string): Fix regex for matching extra
5159         headers and regexp-quote the match if necessary.
5160
5161 2009-03-24  Miles Bader  <miles@gnu.org>
5162
5163         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
5164         the blinking smiley.
5165
5166 2009-03-24  Simon Josefsson  <simon@josefsson.org>
5167
5168         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
5169         blink smiley.
5170
5171 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5172
5173         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
5174         where the dribbel file lives exists.
5175
5176         * message.el (message-send-mail-partially-limit): Change the default to
5177         nil, since most people don't want this.
5178
5179         * mm-url.el (mm-url-decode-entities): Also decode entities like
5180         &#x3212.
5181
5182 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
5183
5184         * gnus-sum.el (gnus-summary-idna-message):
5185         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
5186         Hyperlink urls in docstrings with URL `...'.
5187
5188 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
5189
5190         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
5191         functions.
5192
5193 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5194
5195         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
5196         say what the mouseover text should be.
5197
5198         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
5199         version of the mm-w3m-safe-url-regexp variable to only download images
5200         in the groups where we want that to happen.
5201
5202         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
5203
5204         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
5205         easier debugging.
5206         (gnus-article-beginning-of-window): Add kludge to allow spacing past
5207         big pictures in the article buffer.
5208
5209         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
5210         gnus-article-html.
5211         (mm-text-html-renderer): gnus-article-html needs curl in addition to
5212         w3m.
5213
5214         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
5215
5216 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5217
5218         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
5219         which doesn't exist.
5220
5221         * message.el (message-inhibit-ecomplete): New variable to allow some
5222         function to inhibit ecomplete address storage.
5223         (message-resend): Disable ecomplete message storage when resending
5224         messages.
5225
5226         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
5227
5228 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5229
5230         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
5231         Save excursion while copying, moving, and deleting articles in order to
5232         prevent the cursor from jumping to unforeseen place.
5233
5234 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5235
5236         * lpath.el: No need to bind bookmark-current-buffer,
5237         bookmark-yank-point and bookmark-make-record-function.
5238
5239 2010-08-17  Glenn Morris  <rgm@gnu.org>
5240
5241         * gnus-sync.el: Require gnus components whose functions are used.
5242
5243         * gnus-art.el (bookmark-make-record-function):
5244         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
5245         Declare for compiler.
5246
5247         * mm-url.el (mml-compute-boundary): Autoload.
5248
5249 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5250
5251         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
5252
5253 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
5254
5255         Typo fix "hoo4a" -> "hook".
5256
5257         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
5258
5259 2010-08-14  Glenn Morris  <rgm@gnu.org>
5260
5261         * gnus-sync.el (gnus-sync): Fix defgroup version.
5262
5263 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
5264
5265         Doc fixes and keep unknown groups (ammended for nunion bug fix).
5266
5267         * gnus-sync.el: Fix docs.
5268         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
5269         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
5270
5271 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
5272
5273         Optimizations for gnus-sync.el.
5274
5275         * gnus-sync.el: Add docs about gnus-sync-backend
5276         possibilities.
5277         (gnus-sync-save): Remove unnecessary message.
5278         (gnus-sync-read): Optimize and show what groups were skipped.
5279
5280 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
5281
5282         Minor bug fixes for gnus-sync.el.
5283
5284         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
5285         Don't read the sync on get-new-news.
5286
5287         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
5288         quiet.
5289
5290         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
5291         (fix typo).
5292
5293 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
5294
5295         Make saving and restoring of hidden threads work with overlays.
5296         Patch applied by Ted Zlatanov.
5297
5298         * gnus-sum.el (gnus-hidden-threads-configuration)
5299         (gnus-restore-hidden-threads-configuration): Update to deal with text
5300         properties, rather than searching for a magic character.
5301
5302 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
5303
5304         New gnus-sync.el library for synchronization of marks.
5305
5306         * gnus-sync.el: New library for synchronization of marks.
5307
5308         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
5309         renamed from `gnus-registry-grep-in-list'.
5310
5311         * gnus-registry.el (gnus-registry-follow-group-p):
5312         Use `gnus-grep-in-list'.
5313
5314         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
5315
5316 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5317
5318         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
5319         determining charset of text fails.
5320
5321 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5322
5323         * nnmail.el (nnmail-get-new-mail-1): Revert.
5324
5325         * nnml.el (nnml-active-number): Make sure names of newly created groups
5326         in nnml-group-alist are encoded.
5327
5328 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5329
5330         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
5331         containing non-ASCII characters in active file for nnml back end.
5332
5333 2010-07-24  David Engster  <dengste@eml.cc>
5334
5335         * mml-smime.el (mml-smime-epg-verify): Also accept the older
5336         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
5337
5338 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
5339
5340         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
5341         tag (Bug#6654).
5342
5343 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5344
5345         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
5346         the article buffer, not the summary buffer.
5347
5348 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5349
5350         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
5351         Emacs 23 as well.
5352
5353 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5354
5355         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
5356         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
5357
5358 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5359
5360         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
5361         Patch applied by Karl Fogel.
5362
5363         * gnus-sum.el (gnus-summary-bookmark-make-record):
5364         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
5365
5366 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5367
5368         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
5369         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
5370         C-w still not working correctly from Article buffers; Thierry's
5371         patch to fix that will be applied after this.
5372
5373         * gnus-art.el (bookmark-make-record-function): New local variable.
5374
5375         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
5376         article buffer.
5377         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
5378
5379 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
5380
5381         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
5382         on changes in bookmark.el.
5383
5384 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5385
5386         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
5387         `no-log' instead of message not to log prompt string.
5388
5389 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
5390
5391         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
5392         the *other* type of HTML form submission.
5393
5394 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
5395
5396         * auth-source.el (auth-source-pick): If choice does not contain a
5397         questioned keyword, set the check to t.
5398
5399 2010-06-12  Romain Francoise  <romain@orebokech.com>
5400
5401         * gnus-util.el (gnus-date-get-time): Move up before first use.
5402
5403 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5404
5405         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
5406         (gnus-article-edit-part): Bind it to make last part that is substituted
5407         or deleted visible.
5408         (gnus-mime-display-single): Buttonize part of which id equals to
5409         gnus-mime-buttonized-part-id.
5410
5411 2010-06-10  Dan Christensen  <jdc@uwo.ca>
5412
5413         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
5414         (gnus-dd-mmm): Use gnus-date-get-time.
5415         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
5416         simplify logic.
5417         (gnus-summary-limit-to-age): Use gnus-date-get-time.
5418         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
5419
5420 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
5421
5422         * auth-source.el (top): Autoload `secrets-list-collections',
5423         `secrets-create-item', `secrets-delete-item'.
5424         (auth-sources): Fix tag string.
5425         (auth-get-source, auth-source-retrieve, auth-source-create)
5426         (auth-source-delete): New defuns.
5427         (auth-source-pick): Rewrite in order to avoid 2 passes.
5428         (auth-source-forget-user-or-password): New parameter USERNAME.
5429         (auth-source-user-or-password): New parameters CREATE-MISSING and
5430         DELETE-EXISTING.  Retrieve password interactively, if needed.
5431
5432 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
5433
5434         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
5435         deleting unused directories when gnus-expert-user is t.
5436
5437 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5438
5439         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
5440         for each temp file when gnus-article-browse-delete-temp is ask.
5441
5442 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5443
5444         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
5445         Lisp calls to delete-backward-char by calls to delete-char.
5446
5447 2010-05-20  Kevin Ryde  <user42@zip.com.au>
5448
5449         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
5450
5451 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
5452
5453         * password-cache.el (password-cache-remove): Fix docstring.
5454
5455 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5456
5457         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
5458         article unless decoding article to be saved.
5459
5460 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5461
5462         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
5463         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
5464         generated within the mm-with-unibyte-current-buffer macro.
5465
5466 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5467
5468         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
5469         to nil when we're in a mml-preview buffer and no group is selected.
5470
5471 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
5472
5473         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
5474         when catching the `C-g'.  Reported by "Leo".
5475
5476 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5477
5478         * message.el (message-forward-make-body-plain)
5479         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
5480         multibyte-string-p.
5481
5482         * lpath.el: Revert.
5483
5484 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5485
5486         * message.el (message-forward-make-body-mml): Assume original message
5487         is multibyte string; error on unibyte.
5488         (message-forward-make-body-plain): Ditto; don't add excessive newline
5489         in body end.
5490
5491         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
5492
5493 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
5494
5495         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
5496         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
5497
5498 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5499
5500         * mm-extern.el (mm-extern-url): Don't use
5501         mm-with-unibyte-current-buffer.
5502         (mm-extern-cache-contents): Use with-current-buffer instead of
5503         save-excursion + set-buffer.
5504
5505 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5506
5507         * mm-util.el (mm-emacs-mule): Remove.
5508
5509 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
5510
5511         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
5512         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
5513         change.
5514
5515 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5516
5517         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
5518         bind the default value of enable-multibyte-characters to nil.
5519
5520 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5521
5522         * message.el (message-forward-make-body-plain)
5523         (message-forward-make-body-mml):
5524         Don't use mm-with-unibyte-current-buffer.
5525
5526 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5527
5528         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
5529
5530 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
5531
5532         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
5533         (Bug#5592).
5534
5535 2010-05-07  Julien Danjou  <julien@danjou.info>
5536
5537         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
5538         it to mm-pipe-part.
5539
5540         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
5541         it is given.
5542
5543 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5544
5545         * binhex.el (binhex-decode-region-internal)
5546         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
5547         (dns-query)
5548         * nnweb.el (nnweb-gmane-search)
5549         * pgg-parse.el (pgg-parse-armor)
5550         * pgg.el (pgg-verify-region)
5551         * sha1.el (sha1-string-external)
5552         * uudecode.el (uudecode-decode-region-internal)
5553         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
5554         XEmacs.
5555
5556         * gnus-art.el (gnus-article-browse-html-parts)
5557         * gnus-group.el (gnus-read-ephemeral-gmane-group)
5558         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
5559         make-temp-file.
5560
5561         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
5562         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
5563         compiling.
5564
5565         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
5566         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
5567         XEmacs when compiling.
5568
5569         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
5570         gnus-pick-mode-off-hook for XEmacs when compiling.
5571         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
5572         gnus-binary-mode-off-hook for XEmacs when compiling.
5573
5574         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
5575         Return nil if char-charset is not available.
5576
5577         * imap.el (imap-disable-multibyte)
5578         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
5579         macros.
5580
5581         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
5582         instead of encode-coding-string.
5583
5584         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
5585         'xemacs) instead of mm-emacs-mule to switch function definitions.
5586         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
5587
5588         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
5589         bind temporary-file-directory for XEmacs;
5590         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
5591         timer-set-function for XEmacs 21.4 and SXEmacs;
5592         bind timer-list for XEmacs 21.4 and SXEmacs;
5593         fbind char-charset and find-charset-region for non-Mule XEmacs;
5594         fbind decode-coding-region, decode-coding-string, detect-coding-region,
5595         encode-coding-region and encode-coding-string for XEmacs having no
5596         file-coding feature.
5597
5598 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
5599
5600         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
5601
5602 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5603
5604         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
5605         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
5606
5607 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
5608
5609         * mm-util.el (mm-decompress-buffer): Use `delete-file';
5610         alias `jka-compr-delete-temp-file' no longer exists.
5611
5612 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5613
5614         Use define-minor-mode in Gnus where applicable.
5615         * mml.el (mml-mode): Use define-minor-mode.
5616         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
5617         (gnus-undo-mode): Use define-minor-mode.
5618         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
5619         (gnus-dead-summary-mode): Use define-minor-mode.
5620         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
5621         Initialize in declaration.
5622         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
5623         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
5624         (gnus-mailing-list-mode): Use define-minor-mode.
5625         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
5626         (gnus-draft-mode): Use define-minor-mode.
5627         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
5628         (gnus-dired-mode): Use define-minor-mode.
5629
5630 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
5631
5632         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
5633         handles on recursive mml-to-mime translation and check them for
5634         boundary delimiter collisions.  Reported by Greg Troxel.
5635
5636 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5637
5638         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
5639
5640 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5641
5642         * mm-util.el (mm-find-buffer-file-coding-system):
5643         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
5644
5645 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
5646
5647         * message.el (message-generate-headers): Record insertion of optional
5648         headers as well.  Otherwise the check to prevent repeated insertion of
5649         optional headers is a no-op.
5650
5651 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
5652
5653         * smime.el: Don't mention CVS.
5654
5655         * nnrss.el (nnrss-fetch): Don't mention CVS.
5656
5657         * nnir.el: Don't mention CVS.
5658
5659 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5660
5661         * gnus-sum.el (gnus-summary-bookmark-make-record):
5662         Add `location' field.
5663
5664 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5665
5666         * lpath.el: Fbind bookmark-default-handler,
5667         bookmark-get-bookmark-record, bookmark-make-record-default,
5668         bookmark-prop-get for Emacs <23 and XEmacs.
5669
5670 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5671
5672         * gnus-sum.el: Add bookmark declarations to silence the compiler.
5673         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
5674         Use with-current-buffer to silence the byte-compiler.
5675         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
5676         bother to require `gnus'.
5677         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
5678
5679 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5680
5681         * gnus-sum.el (gnus-summary-bookmark-make-record)
5682         (gnus-summary-bookmark-jump): New functions.
5683         (gnus-summary-mode): Setup bookmark support.
5684
5685 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
5686
5687         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
5688         if set.
5689
5690 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5691
5692         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
5693         gnus-article-browse-html-save-cid-image; make it work recursively for
5694         forwarded messages as well.
5695         (gnus-article-browse-html-parts): Work when prefix arg is given.
5696         (gnus-article-browse-html-article): Doc fix.
5697
5698 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
5699
5700         * message.el (message-default-mail-headers):
5701         (message-default-headers): Carry the value mail-default-headers over
5702         into message-default-mail-headers, rather than message-default-headers.
5703
5704 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
5705
5706         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
5707         charset.
5708
5709         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
5710         charset into the <meta> tag when the article is encoded to utf-8.
5711
5712 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5713
5714         * gnus-art.el (gnus-article-browse-delete-temp-files):
5715         Delete directories as well.
5716         (gnus-article-browse-html-parts): Work for images that do not specify
5717         file names; delete temp directory when quitting; insert header at the
5718         right place; use file: scheme for image files.
5719
5720 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
5721
5722         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
5723         (gnus-article-browse-html-parts): Use it to make temporary cid image
5724         files in addition to html file so that browser may display them.
5725
5726 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5727
5728         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
5729
5730 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
5731
5732         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
5733
5734 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
5735
5736         * auth-source.el (auth-sources): Change default to be simpler.
5737         Explain about Secret Service API sources.  Improve Customize options.
5738         (auth-source-pick): Change to accept any number of search parameters.
5739         Implement fallbacks iteratively, not recursively.  Add scoring on the
5740         second pass and sort by score.  Call Secret Service API when needed.
5741         (auth-source-user-or-password): Use it.  Call Secret Service API
5742         directly when needed to get the user name and the password.
5743
5744 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
5745
5746         * message.el (message-interactive): Doc fix.
5747         (message-qmail-inject-args): Reflow.
5748         (message-kill-to-signature): Fix typo in docstring.
5749
5750         * smiley.el (smiley-buffer): Fix typo in docstring.
5751
5752 2010-03-24  Glenn Morris  <rgm@gnu.org>
5753
5754         * mail-source.el (gnus-message): Declare.
5755         (mail-source-delete-old-incoming): Require gnus-util.
5756
5757 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5758
5759         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
5760
5761         * message.el (ecomplete-setup): Autoload it for Emacs <23.
5762
5763         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
5764         password-cache's default if it is not bound.
5765         (mml-secure-passphrase-cache-expiry): Default to 16 that is
5766         password-cache-expiry's default if it is not bound.
5767
5768         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
5769         available in Emacs 21.
5770
5771         * lpath.el: Suppress compiler warnings for:
5772         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
5773         XEmacs;
5774         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
5775         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
5776         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
5777
5778 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
5779
5780         * auth-source.el (auth-sources): Fix up definition so extra parameters
5781         are always inline.
5782
5783 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
5784
5785         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
5786         wasn't updated after mismatch.  Clear cached mailbox info correctly
5787         when uidvalidity changes.
5788         (nnimap-group-prefixed-name): New function to avoid some code
5789         duplication.
5790         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
5791         (nnimap-request-group): Use it.
5792         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
5793         (nnimap-update-unseen): Significantly improved speed of Gnus startup
5794         with many imap folders.  This is done by caching the group status from
5795         the imap server persistently in a group parameter `imap-status'.  (This
5796         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
5797         but not persistently, so every Gnus startup was still very slow.)
5798
5799 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
5800
5801         * assistant.el (assistant-render-text): Run `widget-setup' and don't
5802         delete the extra newline.  Otherwise editing of :string and :number
5803         types don't work.
5804
5805 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
5806
5807         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
5808         secrets.el dependency.
5809         (auth-sources): Add optional user name.  Add secrets.el configuration
5810         choice (unused right now).
5811
5812 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
5813
5814         * gnus-sum.el (gnus-summary-make-menu-bar):
5815         Let `gnus-registry-install-shortcuts' fill in the functions.
5816
5817         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
5818         warnings.
5819         (gnus-registry-misc-menus): Variable to hold registry mark menus.
5820         (gnus-registry-install-shortcuts): Populate and use it in a
5821         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
5822
5823 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
5824
5825         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
5826         In-place substitutions for the group name encoding/decoding.
5827         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
5828         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
5829         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
5830         (nnimap-update-unseen, nnimap-request-list)
5831         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
5832         (nnimap-request-set-mark, nnimap-split-to-groups)
5833         (nnimap-split-articles, nnimap-request-newgroups)
5834         (nnimap-request-create-group, nnimap-request-accept-article)
5835         (nnimap-request-delete-group, nnimap-request-rename-group)
5836         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
5837         `encoded-mbx' for consistency.
5838         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
5839         variable `imap-current-mailbox'.
5840
5841         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
5842         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
5843
5844 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
5845
5846         * pop3.el (pop3-display-message-size-flag): Display message size byte
5847         counts during POP3 download.
5848         (pop3-movemail): Use it.
5849         (pop3-list): Implement listing of available messages.
5850
5851 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
5852
5853         * nnir.el (nnir-get-article-nov-override-function): New function to
5854         override the normal NOV retrieval.
5855         (nnir-retrieve-headers): Use it.
5856
5857 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
5858
5859         * auth-source.el (netrc-machine-user-or-password): Autoload.
5860
5861 2010-03-19  Glenn Morris  <rgm@gnu.org>
5862
5863         Stop message.el from loading about 40 libraries it doesn't always need.
5864         The general approach is to autoload rather than require, and to
5865         require in the specific functions rather than the file.  (Bug#5642)
5866
5867         * gmm-utils.el: Don't require wid-edit.
5868         (widget-create-child-value, widget-convert, widget-default-get):
5869         Autoload.
5870
5871         * gnus-util.el: Don't require time-date, netrc.
5872         (message-fetch-field, gnus-group-name-decode): Declare rather than
5873         autoloading.
5874         (gnus-fetch-field): Require message.
5875         (gnus-decode-newsgroups): Require gnus-group.
5876
5877         * ietf-drums.el: Don't require time-date.
5878
5879         * message.el: Don't require hashcash, canlock, ecomplete.
5880         Do require mail-utils.  Require nnheader only when compiling.
5881         (smtpmail-default-smtp-server): Remove declaration.
5882         (message-send-mail-function): Check smtpmail-default-smtp-server
5883         is bound rather than requiring smtpmail.
5884         (message-auto-save-directory, message-insert-signature):
5885         Use expand-file-name rather than nnheader-concat.
5886         (nnheader-insert-file-contents): Autoload.
5887         (hashcash-wait-async): Declare.
5888         (message-send-mail): Only call gnus-setup-posting-charset if
5889         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
5890         (message-send-mail-with-sendmail): Require sendmail.
5891         (canlock-password, canlock-password-for-verify): Declare.
5892         (message-canlock-password): Require canlock.
5893         (nnheader-get-report): Autoload.
5894         (gnus-setup-posting-charset): Declare.
5895         (message-send-news): Require gnus-msg.
5896         (message-make-references, message-make-in-reply-to): Use mail-header-id
5897         rather than the alias mail-header-message-id.
5898         (ecomplete-add-item, ecomplete-save): Declare.
5899         (message-put-addresses-in-ecomplete): Require ecomplete.
5900         (ecomplete-display-matches): Autoload.
5901
5902         * mm-decode.el: Don't require mailcap, gnus-util.
5903         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
5904         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
5905         Autoload.
5906         (mailcap-mime-extensions): Declare.
5907
5908         * mm-encode.el: Don't require mailcap.
5909         (mailcap-extension-to-mime): Autoload.
5910
5911         * mml-sec.el: Don't require password-cache.
5912
5913         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
5914         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
5915         (mml-minibuffer-read-type): Require mailcap.
5916         (mml-preview): Require gnus-msg.
5917
5918         * mml1991.el: Require password-cache.
5919         (password-cache-expiry): Remove declaration.
5920
5921         * mml2015.el: Require password-cache.
5922         (password-cache-expiry): Remove declaration.
5923
5924         * nneething.el (mailcap): Require mailcap.
5925
5926         * nnheader.el (declare-function): Add compatibility stub.
5927         (message-remove-header): Declare rather than autoload.
5928         (nnheader-replace-header): Require message.
5929
5930         * nnimap.el (declare-function): Add compatibility stub.
5931         (netrc-parse, netrc-machine-user-or-password): Declare.
5932         (nnimap-open-connection): Require netrc.
5933
5934         * nntp.el (declare-function): Add compatibility stub.
5935         (netrc-parse, netrc-machine, netrc-get): Declare.
5936         (nntp-send-authinfo): Require netrc.
5937
5938         * rfc2047.el: Don't require qp.
5939         (quoted-printable-encode-region, quoted-printable-decode-string):
5940         Autoload.
5941
5942         * sieve-mode.el: Don't require easymenu.
5943         (easy-menu-add-item): Autoload it.
5944
5945         * spam-stat.el (time-to-number-of-days): Autoload it.
5946
5947 2010-03-19  Glenn Morris  <rgm@gnu.org>
5948
5949         * password-cache.el (password-cache, password-cache-expiry): Autoload.
5950
5951 2010-03-18  Glenn Morris  <rgm@gnu.org>
5952
5953         * hashcash.el (declare-function): Remove duplicate definition.
5954
5955 2010-03-17  Kevin Ryde  <user42@zip.com.au>
5956
5957         * mml.el (mml-read-tag): Unquote values with `read' to reverse
5958         prin1 in mml-insert-tag (just stripping the quotes gave wrong
5959         value if any backslash escapes).
5960
5961 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5962
5963         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
5964         if it is available.  (bug#5647)
5965
5966         * lpath.el: Suppress compiler warning for coding-system-from-name for
5967         Emacs 21 and XEmacs.
5968
5969 2010-03-14  Juri Linkov  <juri@jurta.org>
5970
5971         * hmac-def.el:
5972         * hmac-md5.el:
5973         * netrc.el: Fix keywords.
5974
5975 2010-02-26  Glenn Morris  <rgm@gnu.org>
5976
5977         * message.el (message-send-mail-function): Change the default, so that
5978         it inherits from a customized send-mail-function.  (Bug#5643)
5979
5980 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
5981
5982         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
5983         shell-command-to-string signals an error (bug#5299).
5984
5985 2010-02-24  Glenn Morris  <rgm@gnu.org>
5986
5987         * message.el (message-smtpmail-send-it)
5988         (message-send-mail-with-mailclient): Doc fixes.
5989
5990 2010-02-16  Glenn Morris  <rgm@gnu.org>
5991
5992         * message.el (message-default-mail-headers): Change the default value
5993         to ease the transition from mail-mode to message-mode.  (Bug#5555)
5994
5995 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5996
5997         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
5998         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
5999
6000 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
6001
6002         * time-date.el (date-to-time): Doc fix (Bug#5408).
6003
6004 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
6005
6006         * message.el (message-mail): Just pass yank-action on to message-setup.
6007         (message-setup): Handle (FUN . ARGS) form of yank-action.
6008         (message-with-reply-buffer, message-widen-reply)
6009         (message-yank-original): Handle non-buffer values of
6010         message-reply-buffer (Bug#4080).
6011         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
6012
6013 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
6014
6015         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
6016         Fix typo in docstring.
6017
6018 2010-01-08  Jason Rumney  <jasonr@gnu.org>
6019
6020         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
6021         response.
6022
6023 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6024
6025         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
6026
6027         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
6028
6029         * message.el (message-check-news-header-syntax): Protect against a
6030         string that `rfc822-addresses' returns when parsing fails.
6031
6032 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6033
6034         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
6035         (gnus-previous-char-property-change): New functions.
6036
6037         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
6038
6039 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
6040
6041         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
6042         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
6043
6044 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
6045
6046         * message.el (message-exchange-point-and-mark): Rework last change to
6047         avoid using optional arg of exchange-point-and-mark, for backward
6048         compatibility.
6049
6050 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
6051
6052         * message.el (message-exchange-point-and-mark):
6053         Call exchange-point-and-mark with an argument rather than setting
6054         mark-active by hand (Bug#5175).
6055
6056 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6057
6058         * nntp.el (nntp-service-to-port): Work for service expressed with
6059         numeric string; replace [:digit:] with [0-9] for XEmacs.
6060
6061 2009-12-17  Glenn Morris  <rgm@gnu.org>
6062
6063         * gnus-group.el (gnus-bug-group-download-format-alist):
6064         Change emacs entry to debbugs.gnu.org.  Bump :version.
6065
6066 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
6067
6068         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
6069
6070 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
6071
6072         * message.el (message-info): Explain why we use `Info-goto-node'.
6073
6074 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
6075
6076         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
6077
6078 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6079
6080         * message.el (message-completion-in-region): New compatibility function.
6081         (message-expand-group): Use it.
6082
6083 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
6084
6085         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
6086         with no unread article should be listed if the 2nd arg `predicate' is
6087         given.
6088
6089 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6090
6091         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
6092
6093 2009-11-29  Juri Linkov  <juri@jurta.org>
6094
6095         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
6096         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
6097         on `gnus-recenter'.  (Bug#4698, Bug#4981)
6098
6099 2009-11-26  Kevin Ryde  <user42@zip.com.au>
6100
6101         * sha1.el (sha1-string-external): default-directory "/" in case
6102         otherwise non-existent.  process-connection-type pipe for touch of
6103         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
6104
6105 2009-11-25  Kevin Ryde  <user42@zip.com.au>
6106
6107         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
6108         it's comms related and sgml-mode.el has "comm" on that basis too.
6109
6110 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6111
6112         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
6113         containing tspecial characters if they have been already quoted.
6114
6115 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
6116
6117         * dns-mode.el (auto-mode-alist): Purecopy string.
6118
6119 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6120
6121         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
6122
6123 2009-10-24  Glenn Morris  <rgm@gnu.org>
6124
6125         * gnus-art.el (help-xref-stack-item): Define for compiler.
6126
6127 2009-10-21  Kevin Ryde  <user42@zip.com.au>
6128
6129         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
6130
6131 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6132
6133         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
6134
6135 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6136
6137         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
6138         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
6139
6140 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6141
6142         * gnus.el (gnus-overlay-get): New alias to overlay-get.
6143         (gnus-overlays-in): New alias to overlays-in.
6144
6145         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
6146         gnus-overlay-get, and gnus-delete-overlay.
6147         (gnus-summary-show-thread): Make it work as well for systems in which
6148         next-single-char-property-change is not available.
6149         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
6150
6151         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
6152         (gnus-overlay-get): New alias to extent-property.
6153         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
6154
6155         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
6156         SXEmacs.
6157
6158         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
6159         SXEmacs.
6160
6161 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
6162
6163         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
6164
6165 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
6166
6167         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
6168         and XEmacs that don't have `remove-overlays'.
6169
6170 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6171
6172         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
6173         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
6174         selective display.  Use overlays instead.
6175
6176 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
6177
6178         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
6179
6180 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
6181
6182         * spam-stat.el (spam-stat-load): Fix typo in message.
6183
6184 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
6185
6186         * dig.el (dig-invoke): Fix typo in docstring.
6187         (query-dig): Reflow docstring.
6188
6189 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
6190
6191         * gnus-art.el (gnus-article-encrypt-body):
6192         * message.el (message-check-recipients):
6193         * mm-util.el (mm-codepage-setup):
6194         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
6195         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
6196
6197 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
6198
6199         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
6200         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
6201         keys from the menu if mm-{sign,encrypt}-option is 'guided.
6202         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
6203         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
6204
6205 2009-09-21  Kevin Ryde  <user42@zip.com.au>
6206
6207         * dig.el: Add "Keywords: comm", as per net-utils.el.
6208
6209 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6210
6211         * dig.el (dig-mode): Use define-derived-mode.
6212
6213 2009-09-19  Glenn Morris  <rgm@gnu.org>
6214
6215         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
6216
6217 2009-09-18  Glenn Morris  <rgm@gnu.org>
6218
6219         * gnus-diary.el (gnus-diary-check-message):
6220         * message.el (message-insert-formatted-citation-line):
6221         * nnbabyl.el (top-level):
6222         * nndiary.el (nndiary-schedule):
6223         Fix typos in condition-case handlers.
6224
6225 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6226
6227         * gnus-art.el (gnus-article-edit-part): Work for the buffer
6228         configuration that provides the sole article window in a frame;
6229         position point correctly after deleting a part.
6230
6231 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
6232
6233         * spam.el (spam-unregister-on-reregister): Add boolean variable.
6234         (spam-resolve-registrations-routine): Use it to unregister articles
6235         that change status.
6236
6237 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6238
6239         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
6240         with XEmacs.
6241         (parse-time-string-chars): Use it.
6242
6243 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
6244
6245         * imap.el (imap-interactive-login): Better messages.
6246         (imap-open): Fix bug with renamed buffer on reconnect.
6247         (imap-authenticate): Add buffer-local imap-last-authenticator variable
6248         for easier debugging and cleaner code.  On successful (guessed based on
6249         server capabilities) secondary authentication, set imap-state
6250         correctly.
6251         (imap-last-authenticator): Define imap-last-authenticator as a variable
6252         to avoid warnings.
6253
6254 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6255
6256         * nnrss.el (nnrss-request-article): Remove binding of
6257         default-enable-multibyte-characters that has gotten needless by
6258         the 2007-07-13 change in rfc2047-encode-message-header.
6259
6260         * mml.el (mml-insert-multipart): Error on the message header.
6261         (mml-insert-part): Error on the message header; position point at
6262         the end of a MIME tag.
6263
6264 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6265
6266         * time-date.el (autoload): Expand define-obsolete-function-alias into
6267         defalias and make-obsolete for old Emacsen that Gnus supports.
6268         (with-no-warnings): Define it for old Emacsen.
6269         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
6270         is available.
6271         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
6272         float-time is available; suppress compile warning for time-to-seconds.
6273
6274         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
6275         (gnus-float-time): Alias to float-time if it exists.
6276
6277         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
6278         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
6279         float-time is available; suppress compile warning for time-to-seconds.
6280
6281         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
6282         XEmacs.
6283
6284 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
6285
6286         * imap.el (imap-message-map): Docstring fix.
6287
6288 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6289
6290         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
6291         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
6292         Add the optional argument `encoding' that overrides the default.
6293
6294         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
6295         mm-encode-buffer.
6296
6297 2009-09-04  Glenn Morris  <rgm@gnu.org>
6298
6299         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
6300         mm-disable-multibyte, rather than default-enable-multibyte-characters.
6301         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
6302         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
6303         * mm-util.el (mm-with-unibyte-current-buffer)
6304         (mm-find-buffer-file-coding-system):
6305         * yenc.el (yenc-decode-region): Use default-value rather than
6306         default-enable-multibyte-characters.
6307
6308 2009-09-03  Glenn Morris  <rgm@gnu.org>
6309
6310         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
6311         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
6312         than default-enable-multibyte-characters.
6313
6314 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
6315
6316         * gnus-art.el (gnus-article-read-summary-keys):
6317         Fix gnus-buffer-configuration's value temporarily used.
6318
6319 2009-09-02  Glenn Morris  <rgm@gnu.org>
6320
6321         * gnus-util.el (gnus-float-time): New function.
6322         * gnus-delay.el (gnus-delay-article):
6323         * gnus-sum.el (gnus-thread-latest-date):
6324         * gnus-util.el (gnus-user-date): Use gnus-float-time.
6325         * nnspool.el (nnspool-request-newgroups):
6326         Use gnus-float-time rather than time-to-seconds.
6327         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
6328
6329         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
6330         (gnus-header-subject-face, gnus-header-newsgroups-face)
6331         (gnus-header-name-face, gnus-header-content-face):
6332         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
6333         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
6334         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
6335         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
6336         (gnus-cite-face-11):
6337         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
6338         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
6339         (gnus-server-closed-face, gnus-server-denied-face)
6340         (gnus-server-offline-face):
6341         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
6342         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
6343         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
6344         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
6345         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
6346         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
6347         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
6348         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
6349         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
6350         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
6351         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
6352         (gnus-summary-selected-face, gnus-summary-cancelled-face)
6353         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
6354         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
6355         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
6356         (gnus-summary-high-undownloaded-face)
6357         (gnus-summary-low-undownloaded-face)
6358         (gnus-summary-normal-undownloaded-face)
6359         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
6360         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
6361         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
6362         (gnus-splash-face):
6363         * message.el (message-header-to-face, message-header-cc-face)
6364         (message-header-subject-face, message-header-newsgroups-face)
6365         (message-header-other-face, message-header-name-face)
6366         (message-header-xheader-face, message-separator-face)
6367         (message-cited-text-face, message-mml-face):
6368         * sieve-mode.el (sieve-control-commands-face)
6369         (sieve-action-commands-face, sieve-test-commands-face)
6370         (sieve-tagged-arguments-face):
6371         * spam.el (spam-face):
6372         Mark face aliases with "-face" in the name as obsolete.
6373
6374 2009-09-01  Glenn Morris  <rgm@gnu.org>
6375
6376         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
6377         than goto-line.
6378
6379 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
6380
6381         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
6382         Don't move point if the command is invoked inside the message header.
6383
6384 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6385
6386         * imap.el (imap-send-command): Simplify.
6387         (imap-wait-for-tag): point-max -> buffer-size.
6388
6389 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6390
6391         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
6392         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
6393         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
6394         * nnir.el (nnir-swish-e-index-file):
6395         * gnus-sum.el (gnus-summary-delete-marked-as-read)
6396         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
6397         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
6398         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
6399         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
6400         (gnus-treat-display-xface): Add Emacs version of obsolescence.
6401
6402 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6403
6404         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
6405         Don't save excursion.
6406
6407 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6408
6409         * nnheader.el (nnheader-find-file-noselect):
6410         * mm-util.el (mm-insert-file-contents):
6411         Use (default-value 'major-mode) instead of default-major-mode.
6412
6413 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6414
6415         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
6416
6417 2009-08-26  Glenn Morris  <rgm@gnu.org>
6418
6419         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
6420         than placing in files.el.
6421
6422 2009-08-25  Glenn Morris  <rgm@gnu.org>
6423
6424         * nnir.el (top-level): Don't require cl at run-time.
6425         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
6426         Replace cl-function substitute with gnus-replace-in-string.
6427         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
6428         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
6429         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
6430         simplified expansions.
6431
6432 2009-08-25  Kevin Ryde  <user42@zip.com.au>
6433
6434         * dig.el (dig): Add autoload cookie.
6435
6436 2009-08-22  Glenn Morris  <rgm@gnu.org>
6437
6438         * gnus-art.el (gnus-button-patch): Use forward-line rather than
6439         goto-line.
6440
6441 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
6442
6443         * parse-time.el (parse-time-string-chars): Save match data.
6444
6445 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
6446
6447         * parse-time.el (parse-time-string-chars): Compute using character
6448         classes, to handle non-ascii characters (Bug#3190).
6449
6450 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
6451
6452         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
6453
6454         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
6455         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
6456         (gnus-mm-display-part, gnus-mime-display-single)
6457         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
6458         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
6459
6460         * gnus-sum.el
6461         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
6462         (gnus-summary-move-article): Add expirable mark to articles copied or
6463         moved to group that has auto-expire turned on if the option is non-nil.
6464
6465 2009-07-24  Glenn Morris  <rgm@gnu.org>
6466
6467         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
6468         Fix typo.  (Bug#3903)
6469
6470 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
6471
6472         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
6473         gnus-article-read-summary-keys rather than gnus-summary-edit-article
6474         that should not be used for draft articles.
6475         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
6476         that has no concern in minor mode keys.
6477         (gnus-article-summary-command, gnus-article-summary-command-nosave):
6478         Abolish.
6479
6480 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6481
6482         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
6483         article without making inquiry to a user for unknown encoding.
6484
6485         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
6486         (nnmaildir--scan): Assume i-node and device number that file-attributes
6487         returns might be cons-cell.
6488
6489         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
6490
6491         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
6492
6493 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
6494
6495         * auth-source.el: Remove docs now in auth.texi.  Don't use
6496         `gnus-message' for logging.  Add new variables `auth-source-debug' and
6497         `auth-source-hide-passwords' and use them.
6498
6499 2009-07-15  Glenn Morris  <rgm@gnu.org>
6500
6501         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
6502
6503 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6504
6505         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
6506         excessive whitespace from the default values of title and description.
6507
6508 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6509
6510         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
6511         mail-fetch-field to fetch Content-Description header in order to
6512         exclude newlines.
6513
6514 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
6515
6516         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
6517         format used by GnuPG 2.0.11.
6518
6519 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6520
6521         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
6522         to deleted part.
6523
6524 2009-05-30  David Engster  <dengste@eml.cc>
6525
6526         * nnmairix.el: Remove old documentation in the commentary block.
6527         (nnmairix-request-group): Do not update active file for nnml back ends.
6528         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
6529         end so that overview files are ignored.
6530         (nnmairix-update-groups): Make updating the groups more robust by using
6531         marks.
6532         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
6533         with dollar characters in message-id.
6534
6535 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
6536
6537         * spam.el: Use dns-query instead of query-dns.  Was renamed on
6538         2008-12-25 in dns.el.
6539
6540 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6541
6542         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
6543         could happen if the text is only composed of spaces and/or tabs.
6544
6545 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
6546
6547         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
6548         when sending a queued message to avoid extra mml tags.
6549
6550 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
6551
6552         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
6553
6554 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6555
6556         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
6557         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
6558         rmail-toggle-header for XEmacs;
6559         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
6560
6561 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6562
6563         * gnus-dired.el: Remove autoload for gnus-setup-message.
6564         (gnus-dired-attach): Fake this-command value to prevent Gnus from
6565         displaying Gnus logo; always use compose-mail.
6566
6567 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
6568
6569         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
6570
6571 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6572
6573         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
6574         (gnus-nocem-issuers): List currently active issuers; fix custom type.
6575         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
6576         available.
6577         (gnus-nocem-epg-verify): New function.
6578
6579 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
6580
6581         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
6582
6583 2009-02-15  Glenn Morris  <rgm@gnu.org>
6584
6585         * gnus-util.el (rmail-insert-rmail-file-header)
6586         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
6587         autoloads.
6588         (rmail-default-rmail-file): Remove unnecessary declaration.
6589         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
6590
6591 2009-02-14  Glenn Morris  <rgm@gnu.org>
6592
6593         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
6594         variable (only used in gnus-util, which declares it anyway).
6595         (rmail-output-to-rmail-file): Remove autoload of deleted function,
6596         which was only needed by gnus-art (changed to not use it any more).
6597         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
6598         only used in gnus-util, which autoloads it itself.
6599         (rmail-update-summary): Fix autoload.
6600
6601         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
6602         rather than rmail-output-to-rmail-file.
6603
6604 2009-02-07  Glenn Morris  <rgm@gnu.org>
6605
6606         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
6607         autoload of function that no longer exists.
6608         (rmail-toggle-header): Declare.
6609         (message-forward-rmail-make-body): Handle mbox Rmail.
6610
6611 2009-01-31  Glenn Morris  <rgm@gnu.org>
6612
6613         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
6614         2009-01-09 change.
6615
6616 2009-01-31  Dave Love  <fx@gnu.org>
6617
6618         * imap.el (imap-fetch-safe): Bind debug-on-error.
6619         (imap-debug): Add imap-fetch-safe.
6620
6621 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
6622
6623         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
6624         (auth-source-forget-all-cached): New convenience function.
6625         (auth-source-user-or-password): Accept list of modes or a single mode.
6626
6627         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
6628         auth-source modes.
6629
6630         * netrc.el (netrc-machine-user-or-password): Use list of
6631         auth-source modes.
6632
6633         * nnimap.el (nnimap-open-connection): Use list of
6634         auth-source modes.
6635
6636         * nntp.el (nntp-send-authinfo): Use list of
6637         auth-source modes.
6638
6639 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
6640
6641         * auth-source.el: Update docs to reflect epa-file-enable is to be used
6642         now.
6643
6644 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6645
6646         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
6647         coding system in XEmacs; add a workaround for XEmacs.
6648
6649         * lpath.el: Fbind coding-system-aliasee.
6650
6651 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6652
6653         * mm-util.el (mm-coding-system-priorities): Protect against nil value
6654         of current-language-environment.
6655
6656 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
6657
6658         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
6659         available at runtime.
6660
6661 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6662
6663         * gnus-art.el (article-date-ut): Fix end point of narrowing.
6664
6665 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
6666
6667         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
6668         the greatest positive fixnum value doesn't work under an XEmacs with
6669         bignum support; use the most-positive-fixnum constant instead,
6670         available since Emacs 21.1 with cl and XEmacs 21.1.
6671
6672 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6673
6674         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
6675         XEmacs gets not to work.
6676
6677 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6678
6679         * mm-util.el (mm-coding-system-priorities): Allow the value like
6680         "Japanese (UTF-8)" of current-language-environment.
6681
6682 2009-01-09  Glenn Morris  <rgm@gnu.org>
6683
6684         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
6685         with last-command-event.
6686
6687 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
6688
6689         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
6690         in the doc string.
6691
6692         * message.el (message-fix-before-sending): Amend comment.
6693
6694 2009-01-08  Dave Love  <fx@gnu.org>
6695
6696         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
6697
6698 2009-01-07  David Engster  <dengste@eml.cc>
6699
6700         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
6701         simplified server definitions by converting it via
6702         gnus-server-to-method.
6703
6704 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6705
6706         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
6707         parameter's operands.
6708
6709 2009-01-06  David Engster  <dengste@eml.cc>
6710
6711         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
6712         primary select method (for gnus-group-mark-article-as-read).
6713
6714 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
6715
6716         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
6717         `(gnus)Face', not `(gnus)X-Face'.
6718
6719 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6720
6721         * mm-util.el (mm-ucs-to-char): New function.
6722
6723         * mm-url.el (mm-url-decode-entities): Use it.
6724
6725         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
6726         unicode-to-char.
6727
6728 2009-01-05  Dave Love  <fx@gnu.org>
6729
6730         * time-date.el: Require cl for `declare'.
6731
6732 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
6733
6734         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
6735         Dave Love.
6736
6737 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
6738
6739         * message.el (message-fix-before-sending): Add `eight-bit' to
6740         illegible-text check.
6741
6742 2009-01-03  Michael Olson  <mwolson@gnu.org>
6743
6744         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
6745         `headers' is nil.  This can occur if the IMAP server does not have
6746         permissions to read messages from a folder, but can write new messages
6747         to the folder.
6748         (nnimap-request-article-part): Do not insert `data' if it is nil.
6749
6750         * imap.el (imap-parse-fetch): Courier can insert spurious blank
6751         characters which will confuse `read', so skip past them.
6752
6753 2009-01-01  Dave Love  <fx@gnu.org>
6754
6755         * imap.el (imap-string-to-integer): Fix typo.
6756         (imap-fetch-safe): New function.
6757         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
6758
6759         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
6760
6761         * imap.el (imap-process-connection-type, imap-debug, imap-open):
6762         (imap-parse-greeting): Fix doc strings.
6763         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
6764         (imap-parse-flag-list): Make messages unique.
6765         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
6766
6767         * nnimap.el: Fix author email.
6768         (nnimap-split-rule): Add FIXME comment.
6769         (nnimap-debug): Fix doc string.
6770
6771 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6772
6773         * dns.el (dns-set-servers): Check "Address".  Fix typo.
6774
6775 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
6776
6777         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
6778         nslookup if resolv.conf isn't available.
6779         (dns-query): Rename from query-dns.
6780         (dns-query-cached): Rename from query-dns-cached.
6781
6782 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6783
6784         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
6785         overlay-arrow-position and overlay-arrow-string buffer-local; no need
6786         to check if those variables exist (first appeared in Emacs 18.50).
6787
6788 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6789
6790         * mm-util.el (mm-line-number-at-pos): New function.
6791
6792         * spam-report.el (spam-report-process-queue): Use it.
6793
6794 2008-12-24  David Engster  <dengste@eml.cc>
6795
6796         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
6797         parameters that haven't existed as variables as buffer-local variables.
6798
6799 2008-12-23  Dave Love  <fx@gnu.org>
6800
6801         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
6802         cadar.
6803
6804         * sieve-manage.el (sieve-manage-starttls-p): Rename from
6805         imap-starttls-p.
6806         (sieve-manage-starttls-open): Rename from imap-starttls-open.
6807
6808 2008-12-22  Dave Love  <fx@gnu.org>
6809
6810         * imap.el: Fix author email.  Doc fixes.
6811         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
6812         reply.
6813
6814 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
6815
6816         * spam-report.el (spam-report-gmane-max-requests): New constant.
6817         (spam-report-gmane-wait): New variable.
6818         (spam-report-gmane-ham, spam-report-gmane-spam)
6819         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
6820         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
6821         the server.
6822
6823         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
6824         Add explanations.
6825
6826         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
6827         nnheader-accept-process-output and nnheader-read-timeout if available.
6828         (pop3-movemail): Use it.
6829
6830         * message.el (message-check-news-body-syntax): Fix signature check if
6831         there's an attachment.
6832
6833 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6834
6835         * mm-util.el: Add comments to the mm- emulating functions.
6836
6837 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
6838
6839         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
6840         Reported by Stephen Berman <stephen.berman@gmx.net>.
6841
6842 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6843
6844         * mm-util.el (mm-substring-no-properties): New function.
6845         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
6846         (mm-special-display-p): Enable those lambda forms to be byte compiled.
6847         (mm-string-to-multibyte): Doc fix.
6848
6849         * mml.el (mml-attach-file): Use mm-substring-no-properties.
6850
6851 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
6852
6853         * mml.el (mml-attach-file): Strip text properties from file name.
6854         (Bug#1574)
6855
6856 2008-12-16  Glenn Morris  <rgm@gnu.org>
6857
6858         * mm-util.el (mm-charset-override-alist): Declare for compiler.
6859
6860 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6861
6862         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
6863         knows since the charset specified might be a bogus alias that
6864         mm-charset-synonym-alist provides.
6865
6866 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
6867
6868         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
6869         "ISO_8859-1".
6870
6871         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
6872
6873 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6874
6875         * mm-util.el (mm-charset-eval-alist):
6876         Define it before mm-charset-to-coding-system.
6877         (mm-charset-to-coding-system): Add optional argument `silent';
6878         define it before mm-charset-override-alist.
6879         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
6880         default value if it can be used in Emacs currently running;
6881         silence mm-charset-to-coding-system.
6882
6883 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6884
6885         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
6886         `allow-override' which says whether to use `mm-charset-override-alist'.
6887         (rfc2047-decode-encoded-words): Use it.
6888
6889         * mm-util.el (mm-charset-override-alist): Fix custom type;
6890         add `(gb2312 . gbk)' to choices.
6891
6892 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
6893
6894         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
6895         fast.
6896
6897         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
6898
6899         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
6900
6901 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
6902
6903         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
6904         on links.
6905
6906         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
6907
6908 2008-12-03  Lute Kamstra  <lute@gnu.org>
6909
6910         * sha1.el: Remove leading * from docstrings of defcustoms,
6911         deffaces, defconsts and defuns.
6912
6913 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6914
6915         * message.el (message-idna-to-ascii-rhs-1): Protect against local
6916         users' addresses that don't have domain parts.
6917         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
6918         rather than message-narrow-to-head since there will be the message
6919         header separator.
6920
6921 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6922
6923         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
6924         since the result is inserted in a unibyte buffer anyway.
6925         (nnimap-demule-use-string-to-multibyte): Remove.
6926         (nnimap-demule): Alias it to mm-string-to-multibyte.
6927
6928 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
6929
6930         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
6931         variable for debugging bug#464 and bug#1174.
6932         (nnimap-demule): Use it.
6933
6934 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
6935
6936         * gnus-score.el (gnus-score-find-trace): Handle default score in total
6937         score calculation correctly.
6938
6939 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6940
6941         * message.el (message-send-mail): Just set the buffer to unibyte
6942         rather than use mm-with-unibyte-current-buffer which does a lot more.
6943         (message-send-mail-partially): Don't bother with
6944         mm-with-unibyte-current-buffer since it's already been made unibyte by
6945         message-send-mail.
6946
6947 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
6948
6949         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
6950
6951 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
6952
6953         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
6954
6955 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
6956
6957         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
6958         require itself and to remove `with-no-warnings'.
6959
6960 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
6961
6962         * starttls.el (starttls-any-program-available): Get the name of the
6963         available TLS layer program.
6964         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
6965         well as the host name in the "opening" message.
6966
6967         * auth-source.el (auth-source-cache, auth-source-do-cache)
6968         (auth-source-user-or-password): Cache passwords and logins by default,
6969         allow override with `auth-source-do-cache'.
6970         (auth-source-forget-user-or-password): Allow users to remove cache
6971         entries if needed.
6972
6973 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
6974
6975         * md4.el (md4-buffer): Fix typo in docstring.
6976         (md4, md4-64): Doc fixes.
6977         (md4-pack-int32): Reflow docstring.
6978
6979 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
6980
6981         * ietf-drums.el (ietf-drums-remove-comments): Localize second
6982         condition-case to only the forward-sexp call.
6983
6984 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
6985
6986         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
6987         quotes contained.  Make it more robust regardless by an extra
6988         condition-case wrapper.
6989
6990 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6991
6992         * lpath.el: No need to fbind codepage-setup for Emacs 23.
6993
6994 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6995
6996         * nnml.el (nnml-request-expire-articles): Check if the function set to
6997         `nnmail-expiry-target' returns the symbol `delete'.
6998
6999         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
7000
7001         * nnmail.el (nnmail-expiry-target): Fix custom type.
7002
7003 2008-10-02  Glenn Morris  <rgm@gnu.org>
7004
7005         * mm-util.el (mm-codepage-setup): Tweak codepage error.
7006         Silence compiler warning.
7007
7008 2008-10-01  Magnus Henoch  <mange@freemail.hu>
7009
7010         * tls.el (open-tls-stream): Show the actual command being
7011         executed, instead of the format string.
7012
7013 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7014
7015         * lpath.el: Fbind codepage-setup for Emacs 23.
7016
7017 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
7018
7019         * mml.el (mml-menu): Don't assume mml2015 is bound.
7020
7021 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7022
7023         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
7024         exists.
7025
7026 2008-09-27  Glenn Morris  <rgm@gnu.org>
7027
7028         * gnus-util.el (mail-header-remove-comments): Autoload it.
7029
7030 2008-09-27  Andreas Schwab  <schwab@suse.de>
7031
7032         * gnus-util.el (gnus-split-references): Strip comments.
7033         (gnus-parent-id): Likewise.
7034
7035 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
7036
7037         * message.el (message-confirm-send): Fix version.
7038
7039 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7040
7041         * message.el (message-idna-to-ascii-rhs-1): Use
7042         mail-extract-address-components rather than mail-header-parse-addresses
7043         that is an alias by default to ietf-drums-parse-addresses that does not
7044         support non-ASCII names in headers' contents.
7045
7046 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
7047
7048         * message.el (message-confirm-send): Fix variable documentation to
7049         avoid the "y/n" wording.
7050
7051 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
7052
7053         * message.el (message-set-auto-save-file-name): Save to a different
7054         filename so multiple messages (especially drafts) can be recovered.
7055
7056 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
7057
7058         * message.el (message-confirm-send): Add appropriate version.
7059
7060 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
7061
7062         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
7063         defvar.
7064
7065 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
7066
7067         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
7068         (mm-pkcs7-enveloped-magic): Ditto.
7069
7070 2008-09-17  Simon Josefsson  <simon@josefsson.org>
7071
7072         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
7073         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
7074
7075 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
7076
7077         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
7078         default, it's better.
7079
7080 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
7081
7082         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
7083         summary line gnus-number property and ignore them (with a warning
7084         message).
7085
7086 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7087
7088         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
7089         macro caddr in the interactive form since it won't be expanded.
7090
7091 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7092
7093         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
7094         `charset'; fix name of function called recursively.
7095         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
7096
7097 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7098
7099         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
7100         (gnus-mime-set-charset-parameters): New function.
7101         (gnus-mime-view-part-as-charset): Use it to correctly display part
7102         specifying wrong charset.
7103
7104 2008-09-08  David Engster  <dengste@eml.cc>
7105
7106         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
7107         in completing-read for back end server.
7108
7109 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
7110
7111         * message.el (message-confirm-send): New variable to confirm sending a
7112         message.
7113         (message-send): Use it.
7114
7115 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
7116
7117         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
7118
7119 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7120
7121         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
7122
7123 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
7124
7125         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
7126         prevent tracking too many groups.
7127         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
7128         Use it.
7129
7130 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
7131
7132         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
7133         moving point to the bottom of the window in order to avoid recentering.
7134
7135 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7136
7137         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
7138
7139         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
7140         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
7141         (gnus-article-beginning-of-window): Fix calculation.
7142
7143 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
7144
7145         * gnus-msg.el (gnus-summary-supersede-article)
7146         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
7147         value of gnus-newsgroup-charset to decode non-MIME encoded text in
7148         message header.
7149
7150 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
7151
7152         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
7153         pending output coming after the status change.
7154
7155 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
7156
7157         * message.el:
7158         * gnus-start.el:
7159         * gnus-registry.el: Remove VMS support.
7160
7161 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7162
7163         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
7164         macro.
7165         (rfc2104-hash): Use it.
7166
7167 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
7168
7169         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
7170         (gnus-summary-sort-by-most-recent-date): New commands.
7171         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
7172         and menu entries.
7173
7174 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7175
7176         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
7177         don't redisplay article for raw contents; remove plural articles stuff.
7178
7179         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
7180         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
7181         on gnus-summary-save-article; display results properly.
7182
7183 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7184
7185         * lpath.el: No need to fbind ns-focus-frame.
7186
7187 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7188
7189         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
7190
7191 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7192
7193         * gnus-art.el (gnus-summary-save-in-pipe):
7194         Consider gnus-save-all-headers.
7195
7196 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
7197
7198         * gnus-util.el (ns-focus-frame): Remove declaration.
7199         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
7200         like x.
7201
7202 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
7203
7204         * rfc2104.el (rfc2104-zero): Delete defconst.
7205         (rfc2104-hex-alist): Likewise.
7206         (rfc2104-hex-to-int): Delete func.
7207         (rfc2104-hexstring-to-bitstring): Likewise.
7208         (rfc2104-nybbles): New defconst.
7209         (rfc2104-hash): Rewrite for speed.
7210
7211 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7212
7213         * tls.el (open-tls-stream): Make it work with the 2nd argument
7214         BUFFER that is a string but does not exist as a buffer object, as
7215         mentioned in the doc-string.
7216
7217 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7218
7219         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
7220         SXEmacs.
7221
7222 2008-07-16  Glenn Morris  <rgm@gnu.org>
7223
7224         * gnus-util.el (ns-focus-frame): Declare for compiler.
7225
7226 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7227
7228         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
7229         set as a group parameter.
7230         (gnus-summary-save-in-pipe): Work when it is called independently.
7231         (gnus-summary-pipe-to-muttprint): Don't modify
7232         gnus-summary-pipe-output-default-command.
7233
7234 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7235
7236         * message.el (message-send-mail-with-sendmail):
7237         Display the error message.
7238
7239 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
7240
7241         * gnus-art.el (gnus-default-article-saver):
7242         Add gnus-summary-save-in-pipe to choices.
7243         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
7244         gnus-summary-pipe-output-default-command as the default command.
7245         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
7246         instead of gnus-last-shell-command.
7247
7248         * gnus-sum.el (gnus-summary-pipe-output-default-command):
7249         New user option.
7250         (gnus-summary-muttprint-program): Mention the value will be changed.
7251         (gnus-summary-save-article): Force showing of all headers.
7252         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
7253
7254 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
7255
7256         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
7257
7258 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
7259
7260         * nnimap.el (nnimap-id):
7261         * sieve-manage.el (sieve-manage-open): Doc fixes.
7262
7263 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
7264
7265         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
7266         if available.
7267
7268 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7269
7270         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
7271
7272         * nnkiboze.el (nnkiboze-generate-group):
7273         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
7274
7275         * nnmairix.el: Require CL.
7276
7277 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7278
7279         * dgnushack.el: Autoload get-display-table and put-display-table for
7280         XEmacs 21.5.
7281
7282         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
7283         21.4 and SXEmacs.
7284
7285 2008-06-15  David Engster  <dengste@eml.cc>
7286
7287         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
7288
7289 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
7290
7291         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
7292         New macros that expand to an `aset'/`aref' call under Emacs, and to a
7293         runtime choice under XEmacs.
7294
7295         * gnus-sum.el (gnus-summary-set-display-table):
7296         Use `gnus-put-display-table', `gnus-get-display-table',
7297         `gnus-set-display-table' for the display table, instead of `aset'.
7298
7299         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
7300         Use `gnus-put-display-table', `gnus-get-display-table',
7301         `gnus-set-display-table' for the display table.
7302
7303 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
7304
7305         * nnmairix.el: Add autoloads.
7306
7307 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
7308
7309         * nnmairix.el (nnmairix-delete-recreate-group)
7310         (nnmairix-update-and-clear-marks): Fix error messages.
7311
7312 2008-06-14  David Engster  <dengste@eml.cc>
7313
7314         * nnmairix.el: Upgrade to version 0.6.
7315         (nnmairix-group-toggle-propmarks-this-group)
7316         (nnmairix-group-toggle-readmarks-this-group)
7317         (nnmairix-group-delete-recreate-this-group)
7318         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
7319         (nnmairix-remove-tick-mark-original-article): New commands.
7320         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
7321         (nnmairix-propagate-marks-to-nnmairix-groups)
7322         (nnmairix-only-use-registry, nnmairix-allowfast-default)
7323         (nnmairix-marks-cache, nnmairix-version-output): New variables.
7324         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
7325         functions needed for marks propagation and manipulation of read marks.
7326         (nnmairix-update-groups): New function.
7327         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
7328         (nnmairix-determine-original-group-from-registry)
7329         (nnmairix-determine-original-group-from-path)
7330         (nnmairix-get-group-from-file-path, nnmairix-map-range)
7331         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
7332         New helper functions.
7333         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
7334         keystrokes for new commands.
7335         (nnmairix-delete-and-create-on-change): Doc string cleanup.
7336         (nnmairix-request-group): Check allow-fast group parameter.
7337         (nnmairix-request-create-group): Set allow-fast group parameter if
7338         nnmairix-allowfast-default is set.
7339         (nnmairix-close-group): Propagate marks upon closing if needed.
7340         (nnmairix-group-toggle-threads-this-group): Use new.
7341         nnmairix-group-toggle-parameter helper function.
7342         (nnmairix-search): Better check for empty search result.
7343         (nnmairix-goto-original-article): Use new helper functions for
7344         determining original article.
7345         (nnmairix-show-original-article): Make sure message-id is in brackets.
7346         (nnmairix-call-mairix-binary): Change variable name.
7347         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
7348         helper function.
7349         (nnmairix-widget-toggle-activate): Fix doc string.
7350
7351 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7352
7353         * nnir.el: Require edmacro when compiling with XEmacs.
7354         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
7355         available in Emacs 21.
7356
7357 2008-06-11  Glenn Morris  <rgm@gnu.org>
7358
7359         * gnus-util.el (x-focus-frame):
7360         * gnus.el (image-size):
7361         * mm-decode.el (image-size): Declare.
7362
7363         * gnus-picon.el (declare-function): Add compat definition.
7364         (image-size): Declare.
7365
7366         * gnus-group.el (tool-bar-map):
7367         * gnus-sum.el (tool-bar-map): Define for compiler.
7368
7369         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
7370
7371         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
7372
7373         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
7374         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
7375         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
7376         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
7377         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
7378         * sieve-manage.el, spam-report.el, spam.el:
7379         Remove unnecessary eval-and-compile of autoloads.
7380
7381 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
7382
7383         * auth-source.el: Precise Tramp doc.
7384
7385 2008-06-07  Glenn Morris  <rgm@gnu.org>
7386
7387         * nnmairix.el: Remove unnecessary eval-when-compile.
7388
7389 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7390
7391         * lpath.el: Fbind propertize for XEmacs 21.4.
7392
7393 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
7394
7395         * nnir.el: Move here from ../contrib.
7396
7397 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7398
7399         * gnus-util.el (gnus-read-shell-command): New function.
7400         * mm-decode.el (mm-pipe-part):
7401         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
7402
7403 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7404
7405         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
7406
7407 2008-06-03  Glenn Morris  <rgm@gnu.org>
7408
7409         * pop3.el (nnheader-accept-process-output): Autoload it.
7410
7411 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7412
7413         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
7414         are not 2-digit hexadecimal characters that follow `%'s.
7415
7416 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7417
7418         * message.el (message-bogus-recipient-p): Fix type in doc string.
7419         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
7420         (message-bogus-addresses): Rename from message-bogus-address-regexp.
7421         Improve custom options.
7422         (message-bogus-recipient-p): Adjust accordingly.
7423
7424 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
7425
7426         * parse-time.el (parse-time-months, parse-time-weekdays): Add
7427         long-form month and day names.
7428
7429 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7430
7431         * dgnushack.el: Autoload debug, eudc-expand-inline and
7432         pgg-snarf-keys-region for XEmacs.
7433
7434         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
7435
7436         * nnmairix.el: Require edmacro when compiling with XEmacs.
7437
7438 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
7439
7440         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
7441         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
7442
7443 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
7444
7445         * auth-source.el: Add more docs.
7446
7447         * netrc.el (netrc-machine): Always match if the port is not given.
7448
7449 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7450
7451         * nnheader.el (nnheader-read-timeout): Change the default timeout from
7452         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
7453         retrieval faster in some cases, but might make CPU usage larger.
7454         If this has any bad side effects, we might revert this change.
7455
7456         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
7457         seems to make mail retrieval much, much faster.
7458         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
7459         unconditionally.
7460
7461         * gnus-draft.el (gnus-group-send-queue):
7462         Bind message-send-mail-partially-limit to nil to avoid being prompted.
7463
7464 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
7465
7466         * mml.el (mml-attach-buffer): Prompt for `disposition'.
7467
7468         * message.el (message-bogus-address-regexp): Fix and improve custom
7469         type.
7470         (message-setup-hook): Add message-check-recipients as custom option.
7471
7472 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
7473
7474         * message.el (message-cite-function): Remove bogus autoload which crept
7475         in during merge from v5-10.
7476
7477 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
7478
7479         * nnimap.el (nnimap-open-connection): Fix login/password bug.
7480
7481         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
7482
7483         * auth-source.el: Preliminary Tramp docs.
7484         (auth-sources): Change the default auth-sources to use
7485         EPA .gpg files.
7486
7487 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
7488
7489         * nntp.el: Autoload `auth-source-user-or-password'.
7490         (nntp-send-authinfo): Use it.
7491
7492         * nnimap.el: Autoload `auth-source-user-or-password'.
7493         (nnimap-open-connection): Use it.
7494
7495         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
7496         for the gnus-message function.
7497         (auth-source-user-or-password): Use it.
7498
7499 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7500
7501         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
7502         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
7503         (rfc2104-hash): Use it.
7504
7505 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
7506
7507         * gnus-art.el (gnus-article-toggle-truncate-lines):
7508         Don't use `iff' in docstring.
7509
7510 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
7511
7512         * gnus-registry.el: Adjusted copyright dates and added a keyword.
7513
7514         * gnus-util.el (gnus-extract-address-component-name)
7515         (gnus-extract-address-component-email): Convenience functions around
7516         `gnus-extract-address-components'.
7517
7518         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
7519         Use `gnus-extract-address-component-email' to fix bug of comparing full
7520         sender name to `user-mail-address'.
7521
7522 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
7523
7524         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
7525         catch/throw to optimize.
7526         (gnus-registry-find-keywords): Just use member to find a keyword.
7527
7528 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7529
7530         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
7531         is current before calling gnus-server-prepare.
7532         (gnus-server-setup-buffer, gnus-server-update-server)
7533         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
7534
7535 2008-05-04  Juri Linkov  <juri@jurta.org>
7536
7537         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
7538         (mailcap-file-default-commands): Use mailcap-replace-in-string
7539         instead of replace-regexp-in-string, and mailcap-delete-duplicates
7540         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
7541
7542 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
7543
7544         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
7545
7546 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7547
7548         * gnus.el: Bump version to 0.11.
7549
7550 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7551
7552         * gnus.el: No Gnus v0.10 is released.
7553
7554 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7555
7556         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
7557         hooks.
7558         (gnus-update-read-articles): Speed up non-marks-using users.
7559         (gnus-use-marks): Define gnus-use-marks.
7560         (gnus-propagate-marks): Rename variable to something more sensible.
7561
7562 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
7563
7564         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
7565         (gmm-image-load-path-for-library): Fix typos in docstrings.
7566         (gmm-message): Reflow docstring.
7567
7568 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
7569
7570         * mail-source.el (mail-source-set-1, mail-source-bind):
7571         Move auth-source code out of the macro to clean it up and fix bugs.
7572
7573 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
7574
7575         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
7576         by sender if it's equal to user-mail-address, it's likely to be
7577         useless.
7578
7579         * mail-source.el (mail-source-bind): Don't use user or password if they
7580         are not bound.  Unintern them if they are nil.  Don't use server unless
7581         it's bound, and default it to empty string otherwise.
7582
7583 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
7584
7585         * mail-source.el: Load auth-source.el.
7586         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
7587         get user name or password, if auth-sources is set up.
7588
7589         * gnus-registry.el (gnus-registry-split-strategy): New variable for
7590         strategy of splitting with parent.
7591         (gnus-registry-split-fancy-with-parent)
7592         (gnus-registry-post-process-groups): Use it and fix prior
7593         bug (returning a list as the split result).
7594
7595         * auth-source.el (auth-sources): Remove server parameter.
7596         (auth-source-pick, auth-source-user-or-password)
7597         (auth-source-user-or-password-imap)
7598         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
7599         (auth-source-user-or-password-sftp)
7600         (auth-source-user-or-password-smtp): Remove server parameter.
7601
7602 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
7603
7604         * smime.el (smime-sign-region, smime-encrypt-region)
7605         (smime-decrypt-region):
7606         Remove redundant calls to `generate-new-buffer-name'.
7607
7608 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
7609
7610         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
7611         Don't use QP for message/rfc822.
7612         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
7613
7614 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7615
7616         * sieve-manage.el (sieve-string-bytes): Remove.
7617         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
7618         correct byte-length only if the process's coding-system is the same as
7619         the one used internally by Emacs to represent strings.
7620
7621 2008-04-22  Juri Linkov  <juri@jurta.org>
7622
7623         * mailcap.el (mailcap-file-default-commands): New function.
7624
7625 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
7626
7627         * message.el (message-signature-separator, message-cite-function):
7628         Change custom version.
7629
7630 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
7631
7632         * tls.el (tls-program): Add -ign_eof argument to call the openssl
7633         commands.
7634         (tls-checktrust): Ditto.
7635
7636 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
7637
7638         * mm-decode.el (mm-display-external): Make temp file read-only.
7639
7640 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
7641
7642         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
7643         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
7644         `C-c C-f d'.
7645
7646 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
7647
7648         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
7649
7650 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
7651
7652         * gnus.el: Bump version to 0.9.
7653
7654 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
7655
7656         * gnus.el: No Gnus v0.8 is released.
7657
7658 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7659
7660         * mail-source.el (mail-source-value):
7661         Prefer fboundp to functionp so it works with macros as well.
7662
7663 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7664
7665         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
7666         Fix last change in case the element is not even a symbol.
7667
7668 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7669
7670         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
7671         Prefer fboundp to functionp so it works with macros as well.
7672
7673 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
7674
7675         * auth-source.el: Add docs.
7676         (auth-sources): Modify format to support server.
7677         (auth-source-pick, auth-source-user-or-password)
7678         (auth-source-user-or-password-imap)
7679         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
7680         (auth-source-user-or-password-sftp)
7681         (auth-source-user-or-password-smtp): Add server parameter.
7682
7683 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
7684
7685         * gnus-registry.el: Initialize the registry when gnus-registry-install
7686         is t.
7687
7688 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
7689
7690         * compface.el (uncompface): Make buffer unibyte.
7691
7692 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7693
7694         * mail-source.el (mail-source-value):
7695         Prefer fboundp to functionp so it works with macros as well.
7696
7697 2008-04-05  Glenn Morris  <rgm@gnu.org>
7698
7699         * gnus-ems.el (mm-disable-multibyte): Autoload it.
7700
7701 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7702
7703         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
7704         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
7705
7706         * nnheader.el (nnheader-init-server-buffer): Change buffer's
7707         multibyteness after rather than before erasing it.
7708
7709         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
7710         mm-with-multibyte.
7711         (gnus-request-article-this-buffer): Make sure the proper decoding is
7712         used if gnus-original-article-buffer happens to be unibyte.
7713
7714         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
7715         default-enable-multibyte-characters.
7716
7717         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
7718         default-enable-multibyte-characters.
7719
7720         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
7721
7722         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
7723
7724 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7725
7726         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
7727         Fix last change in case the element is not even a symbol.
7728
7729 2008-04-02  Simon Josefsson  <simon@josefsson.org>
7730
7731         * imap.el (imap-enable-exchange-bug-workaround): New variable.
7732         (imap-message-copyuid-1): Use it.
7733         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
7734         J. Williams in
7735         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
7736
7737         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
7738         imap-enable-exchange-bug-workaround.
7739         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
7740
7741 2008-04-01  Simon Josefsson  <simon@josefsson.org>
7742
7743         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
7744         a 100 byte status-checks into a 2-3MB transfer for each group.
7745         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
7746         to enable bug workaround or not.
7747         (nnimap-find-minmax-uid): Only enable workaround conditionally.
7748
7749 2008-03-31  Glenn Morris  <rgm@gnu.org>
7750
7751         * message.el (mml2015-use): Declare for compiler.
7752         (message-info): Require mml2015 when appropriate.
7753
7754 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7755
7756         * Makefile.in (EMACS_COMP): Quote directory name that might contain
7757         whitespace.
7758
7759 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
7760
7761         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
7762         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
7763         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
7764         (nntp-service-to-port): New function.
7765         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
7766         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
7767         (nntp-open-netcat-stream): New function.
7768         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
7769
7770 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
7771
7772         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
7773
7774 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7775
7776         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
7777
7778 2008-03-28  Magnus Henoch  <mange@freemail.hu>
7779
7780         * dns.el (dns-write): Use set-buffer-multibyte.
7781
7782 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
7783
7784         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
7785
7786 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
7787
7788         * message.el (message-signature-separator): Change default.
7789         Improve custom type.
7790         (message-cite-function): Change default to
7791         message-cite-original-without-signature.
7792
7793         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
7794         toggle.
7795
7796         * message.el (message-check-news-body-syntax): Fix signature check.
7797         (message-setup-1): Mark buffer as unmodified _after_ running
7798         message-setup-hook and handling message-alternative-emails.
7799         (message-shorten-references): Be more strict when building list of
7800         valid references to comply with GNKSA.
7801
7802         * gnus-group.el (gnus-read-ephemeral-bug-group)
7803         (gnus-read-ephemeral-debian-bug-group)
7804         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
7805
7806         * message.el (message-info): Don't use booleanp which isn't supported
7807         in Emacs 21 and XEmacs.
7808
7809 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
7810
7811         * gnus-group.el (gnus-gmane-group-download-format): Rename from
7812         gnus-group-gmane-group-download-format.
7813         (gnus-group-read-ephemeral-gmane-group): Rename from
7814         gnus-group-read-ephemeral-gmane-group.
7815         (gnus-read-ephemeral-gmane-group-url): Rename from
7816         gnus-group-read-ephemeral-gmane-group-url.
7817         (gnus-bug-group-download-format-alist): New variable.
7818         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
7819         (gnus-read-ephemeral-emacs-bug-group): New commands.
7820
7821 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
7822
7823         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
7824         (gnus-visible-headers): Improve custom type.
7825
7826 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
7827
7828         * mml.el (mml-menu): Add workarounds for XEmacs.
7829
7830         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
7831         X-Boundary header.
7832
7833         * message.el (message-simplify-recipients): Fix previous commit.
7834
7835 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7836
7837         * mm-util.el (mm-set-buffer-multibyte): New function.
7838         * mm-decode.el (mm-copy-to-buffer): Use it.
7839
7840         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
7841         Prefer fboundp to functionp so it works with macros as well.
7842
7843 2008-03-19  Glenn Morris  <rgm@gnu.org>
7844
7845         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
7846         Accidentally removed in the sync process with Emacs.
7847
7848 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
7849
7850         * message.el (message-alter-recipients-discard-bogus-full-name):
7851         New function.
7852         (message-alter-recipients-function): New variable.
7853         (message-get-reply-headers): Use it.
7854         (message-replace-header): New helper function.
7855         (message-recipients-without-full-name): New variable.
7856         (message-simplify-recipients): New command.
7857
7858         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
7859
7860         * message.el (message-info): Handle EasyPG manual.
7861
7862         * mml.el (mml-menu): Add entry for EasyPG.
7863
7864 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
7865
7866         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
7867         parameter.
7868
7869         * message.el (message-disassociate-draft): Specify drafts group name
7870         fully.
7871
7872 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
7873
7874         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
7875         Eliminate unnecessary duplicates from the match list.
7876
7877 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7878
7879         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
7880
7881         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
7882
7883         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
7884         args of `how-many' of which the XEmacs version doesn't take; declare
7885         Info-index-next as function.
7886
7887 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
7888
7889         * gnus-score.el (gnus-score-headers): Fix handling of
7890         gnus-inhibit-slow-scoring.
7891
7892         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
7893         string.
7894         (gnus-button-url-regexp): Improve handling of parenthesis.
7895         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
7896         (gnus-button-handle-info-keystrokes): Handle index entries.
7897
7898 2008-03-15  Glenn Morris  <rgm@gnu.org>
7899
7900         * parse-time.el (parse-time-string): Simplify.
7901
7902 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7903
7904         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
7905         Incoming* files.
7906
7907 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
7908
7909         * auth-source.el (auth-sources): Rename from auth-source-choices.
7910         (auth-source-pick): Use it.
7911
7912 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7913
7914         * binhex.el (binhex-decode-region-internal):
7915         * uudecode.el (uudecode-decode-region-internal):
7916         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
7917         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
7918         setting default-enable-multibyte-characters.
7919
7920 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
7921
7922         * auth-source.el (auth-source-protocols)
7923         (auth-source-protocols-customize, auth-source-choices): Add and
7924         modified variable customizations and defaults.
7925         (auth-source-pick, auth-source-user-or-password)
7926         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
7927         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
7928         (auth-source-user-or-password-sftp)
7929         (auth-source-user-or-password-smtp): Use new variables and provide an
7930         interface to netrc.el.
7931
7932 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7933
7934         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
7935         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
7936         Make sure the nntp port to specify is a string.
7937
7938 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7939
7940         * nntp.el: Use with-current-buffer.
7941         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
7942         dubious mm-with-unibyte-current-buffer.
7943         (nntp-with-open-group-function): New function extracted from
7944         nntp-with-open-group macro.
7945         (nntp-with-open-group): Use the function, so it's easier to debug.
7946         Add indentation and debugging info.
7947         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
7948         Recommend the use of the netcat alternatives.
7949
7950         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
7951         Avoid mm-string-as-multibyte as well.
7952
7953         * nnweb.el (nnweb-insert-html):
7954         Remove use of nnheader-string-as-multibyte.
7955
7956         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
7957         (nnheader-string-as-multibyte): Remove.
7958
7959         * mm-view.el: Use inhibit-read-only.
7960         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
7961         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
7962         or unibyte-string.
7963
7964         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
7965         (mm-uu-yenc-extract): Use with-current-buffer.
7966
7967         * gnus-soup.el (gnus-soup-send-packet): Don't use
7968         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
7969
7970         * nnmh.el: Use with-current-buffer.
7971         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
7972         mm-string-as-multibyte on the output of mm-encode-coding-string.
7973
7974         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
7975         (nnimap-request-move-article): Use with-current-buffer.
7976
7977         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
7978         inserting the handle-buffer's text, so the implicit multibyte->unibyte
7979         conversion uses string-make-unibyte rather than string-as-unibyte.
7980
7981         * gnus-msg.el: Use with-current-buffer.
7982
7983         * message.el (message-ignored-resent-headers): Add "Delivered-To".
7984
7985 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
7986
7987         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
7988         string for caching if it is 'PIN.
7989
7990 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7991
7992         * lpath.el: Consider the case without Emacs/W3.
7993
7994 2008-03-08  Glenn Morris  <rgm@gnu.org>
7995
7996         * time-date.el (date-to-time, time-subtract, time-add)
7997         (safe-date-to-time): Doc fixes.
7998
7999 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
8000
8001         * mail-source.el (mail-source-delete-old-incoming-confirm):
8002         Change default to nil.
8003         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
8004
8005 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8006
8007         * lpath.el: Rearrange.
8008
8009         * gnus-art.el (gnus-narrow-to-page): Position point properly.
8010         (gnus-article-goto-prev-page): Work for articles having ^L's.
8011
8012         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
8013
8014         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
8015
8016 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
8017
8018         * gnus-bookmark.el: Adjust for renames in bookmark.el.
8019         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
8020         (gnus-bookmark-jump): Adjust some variable names.
8021
8022 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
8023
8024         * auth-source.el: New package.
8025         (auth-source-choices): Add customization entry point variable.
8026
8027         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
8028         bug.
8029
8030 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
8031
8032         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
8033         (gnus-registry-initialize, gnus-registry-install-p): Use it.
8034         (gnus-registry-install-shortcuts): Rename from
8035         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
8036         the `gnus-registry-mark-map' keymap dynamically from
8037         `gnus-registry-marks'.  The generated functions update the summary line
8038         when a registry mark is added or deleted, and will call
8039         `gnus-registry-install-p' (see the comments in the code).
8040         (gnus-registry-user-format-function-M): Use concat intelligently.
8041
8042         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
8043         the registry mark functions.
8044
8045 2008-03-05  Glenn Morris  <rgm@gnu.org>
8046
8047         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
8048         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
8049         gnus-art.
8050         (top-level): No need to load own source when compiling.
8051
8052 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
8053
8054         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
8055         Suggested by <chris.anderton@zetnet.co.uk>.
8056
8057 2008-03-04  Glenn Morris  <rgm@gnu.org>
8058
8059         * gnus-sum.el (top-level): No need to require gnus when compiling,
8060         since unconditionally required near start of file.
8061         (gnus-summary-display-while-building): Move definition before use.
8062
8063 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
8064
8065         * gnus-registry.el (gnus-registry-user-format-function-M):
8066         Add formatting function.
8067
8068 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
8069
8070         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
8071         with plists.
8072         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
8073         Use new format.
8074
8075 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8076
8077         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
8078         `where-is-internal' that returns a range of key sequences.
8079
8080 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8081
8082         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
8083
8084         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
8085         (gnus-summary-jump-to-group): Consider windows on other displayed
8086         frames as well.  Similar changes might be needed elsewhere, but that's
8087         the one I've bumped into during my use.
8088
8089         * nndoc.el (nndoc-oe-dbx-type-p):
8090         * gnus-msg.el (gnus-debug):
8091         * gnus-group.el (gnus-update-group-mark-positions):
8092         Use mm-string-to-multibyte.
8093
8094 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8095
8096         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
8097         doesn't handle NotDashEscaped.
8098
8099         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
8100         (mml-dnd-attach-options): Fix typo in custom choice.
8101
8102         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
8103         Change nndoc-article-type to mbox.
8104         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
8105
8106         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
8107         to nil, instead of html2text.
8108
8109         * imap.el (imap-debug): Add `imap-ping-server'.
8110
8111         * gnus-bookmark.el: Add FIXMEs.
8112
8113         * message.el (message-form-letter-separator)
8114         (message-send-form-letter-delay): New variables.
8115         (message-send-form-letter): Use them.  New command to send form
8116         letters.  Requested by Uwe Siart.
8117         (message-send-mail-function): Doc fix.  Add "Other" custom option.
8118
8119 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
8120
8121         * Update copyright years.
8122
8123 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
8124
8125         Sync from EMACS_22_BASE.
8126
8127         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
8128
8129 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
8130
8131         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
8132         empty author.
8133
8134 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
8135
8136         * gnus-registry.el (gnus-registry-marks): Add variable for
8137         customization of marks and their appearance.
8138         (gnus-registry-read-mark): Use it.
8139         (gnus-registry-do-marks): Add utility function to loop through
8140         `gnus-registry-marks'.
8141         (gnus-registry-install-shortcuts-and-menus): Add function to install
8142         shortcuts and menus.
8143         (gnus-registry-initialize): Use it.
8144         (gnus-registry-default-mark): Clarify documentation.
8145
8146 2008-02-29  Glenn Morris  <rgm@gnu.org>
8147
8148         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
8149         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
8150         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
8151         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
8152         Change defcustom :version from 23.0 to 23.1.
8153
8154 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
8155
8156         * gnus-registry.el (gnus-registry-follow-group-p)
8157         (gnus-registry-post-process-groups): Add functions to aid registry
8158         splitting and improve logging.  Clarify behavior in function
8159         documentation.
8160         (gnus-registry-split-fancy-with-parent): Use them.
8161
8162 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8163
8164         * gnus-art.el: Use with-current-buffer.
8165
8166 2008-02-27  David Engster  <dengste@eml.cc>
8167
8168         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
8169         Express real group name in the response.
8170
8171 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
8172
8173         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
8174         (nnmairix-last-server, nnmairix-current-server): Defvar them.
8175         (nnmairix-goto-original-article): Defvar gnus-registry-install and
8176         autoload gnus-registry-fetch-group when compiling.
8177         (nnmairix-request-group-with-article-number-correction):
8178         Remove unreferenced argument passed to nnmairix-call-backend.
8179
8180 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
8181
8182         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
8183         (mm-uu-extract): Improve face for low color ttys.
8184         Reported by Sascha Wilde.
8185
8186 2008-02-27  Glenn Morris  <rgm@gnu.org>
8187
8188         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
8189         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
8190         variables to defconsts.  Convert comments to doc-strings.
8191         (nnmairix-last-server, nnmairix-current-server): Convert from free
8192         variables to defvars.  Convert comments to doc-strings.
8193         (gnus-registry-fetch-group): Autoload.
8194         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
8195         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
8196         (nnmairix-widget-build-editable-fields): Use car cddr rather than
8197         caddr.
8198         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
8199         nnmairix-request-group-with-article-number-correction call.
8200         (nnmairix-fast, nnmairix-group): New, less general names, for free
8201         variables passed from nnmairix-request-group to
8202         nnmairix-request-group-with-article-number-correction.  Declare.
8203         (nnmairix-request-group-with-article-number-correction):
8204         Use nnmairix-fast, nnmairix-group rather than fast, group.
8205
8206 2008-02-26  David Engster  <dengste@eml.cc>
8207
8208         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
8209         version 0.5.
8210
8211 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
8212
8213         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
8214         instead of making an extra function call.  Don't add the current group
8215         to articles only when they have the group.  Use
8216         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
8217         Reported by David <de_bb@arcor.de>.
8218
8219 2008-02-24  Miles Bader  <miles@gnu.org>
8220
8221         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
8222         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
8223         (mm-find-mime-charset-region):
8224         * mm-bodies.el (mm-encode-body):
8225         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
8226
8227 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8228
8229         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
8230         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
8231
8232 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
8233
8234         * mail-source.el (mail-source-delete-incoming): Change default.
8235         Supplement doc string.
8236
8237         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
8238
8239 2008-02-14  Glenn Morris  <rgm@gnu.org>
8240
8241         * time-date.el (format-seconds): New function.
8242
8243 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
8244
8245         * nnmail.el (nnmail-message-id-cache-file): Derive from
8246         `gnus-home-directory'.
8247
8248 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
8249
8250         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
8251         Document negative prefix.
8252
8253         * gnus-group.el (gnus-group-read-group): Document negative prefix.
8254
8255 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8256
8257         * message.el (message-unsent-separator): Add the Exim bounce
8258         separator.
8259
8260 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
8261
8262         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
8263         list.
8264         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
8265         recipient/signer list.
8266
8267 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8268
8269         * Makefile.in (datarootdir): Define.
8270         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
8271         name that might contain whitespace.
8272
8273 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
8274
8275         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
8276         fbound (Emacs 23 unicode), signal an error.
8277
8278 2008-02-08  Glenn Morris  <rgm@gnu.org>
8279
8280         * gnus-art.el (pgg-display-output-buffer): Declare as function.
8281
8282 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
8283
8284         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
8285         ports to the calls to `netrc-machine-user-or-password' in addition to
8286         "imap" and "imaps".
8287
8288 2008-02-01  Zhang Wei  <id.brep@gmail.com>
8289
8290         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
8291
8292         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
8293
8294 2008-02-01  Kenichi Handa  <handa@m17n.org>
8295
8296         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
8297         rfc2104-hexstring-to-bitstring and changed to return a byte list.
8298         (rfc2104-hash): Convert the result of concat to unibyte string.
8299
8300 2008-02-01  Dave Love  <fx@gnu.org>
8301
8302         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
8303         coding-system-for-read.
8304         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
8305
8306 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
8307
8308         * gnus.el (gnus-group-startup-message): Add `find-image' call before
8309         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
8310         <hanche@math.ntnu.no>.
8311
8312 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8313
8314         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
8315
8316         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
8317
8318 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
8319
8320         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
8321         * message.el (message-beginning-of-line): Use featurep instead of bound
8322         tests in order to resolve conditionals at compile time.
8323
8324 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
8325
8326         * mail-source.el (mail-sources): Add `group' choice.
8327
8328         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
8329         parameter `in-group' to control into which group the articles go.
8330         Add treatment of `group' mail-source.
8331
8332 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8333
8334         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
8335
8336         * mm-decode.el (mm-dissect-buffer): Decode description.
8337
8338         * mml.el (mml-to-mime): Encode message header first.
8339
8340 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8341
8342         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
8343         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
8344
8345         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
8346         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
8347
8348 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
8349
8350         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
8351
8352 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8353
8354         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
8355         prefix keys.
8356         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
8357         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
8358         gnus-xmas.el.
8359
8360         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
8361         (gnus-xmas-article-describe-bindings): New function.
8362         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
8363         gnus-xmas-article-describe-bindings.
8364
8365         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
8366
8367 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
8368
8369         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
8370         Add new variables for article mark management.
8371         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
8372         list of extra data entries which, when present, will indicate that the
8373         article ID should not be trimmed from the registry.
8374         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
8375         functions.
8376         (gnus-registry-read-mark): New function to read a mark name from the
8377         user.
8378         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
8379         (gnus-registry-set-article-mark-internal): New functions to add and
8380         remove marks.
8381         (gnus-registry-get-article-marks): New function to show the marks for
8382         an article, or retrieve them for further use.
8383
8384 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8385
8386         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
8387         keys when no argument is given.
8388
8389 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
8390
8391         * imap.el (imap-ping-server): New variable.
8392         (imap-opened): On add extra ping if imap-ping-server is non-nil.
8393         (imap-ping-server): Minor doc string fixes.
8394
8395 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
8396
8397         * imap.el (imap-ping-server): New function.
8398         (imap-opened): Call imap-ping-server.
8399
8400 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
8401
8402         * gnus-sum.el (gnus-article-sort-by-random)
8403         (gnus-thread-sort-by-random): Fix doc strings.
8404         Reported by jidanni@jidanni.org.
8405
8406 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8407
8408         * gnus-art.el (gnus-article-describe-bindings): New function.
8409         (gnus-article-read-summary-keys): Use it.
8410         (gnus-article-mode-map): Bind `C-h b' to it.
8411
8412 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8413
8414         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
8415         XEmacs.
8416         (gnus-article-describe-key, gnus-article-describe-key-briefly):
8417         Protect against non-character events.
8418
8419         * lpath.el: Fbind map-keymap for Emacs 21.
8420
8421 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
8422
8423         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
8424         New command.
8425         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
8426         instead of END.  Change name of the temp file.
8427         (gnus-group-gmane-group-download-format): Add doc string.  Make it
8428         customizable.
8429
8430 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8431
8432         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
8433         bind `S W' to gnus-article-wide-reply-with-original; set default
8434         binding to gnus-article-read-summary-send-keys.
8435         (gnus-article-read-summary-keys): Fix the order of keys; display
8436         continuation keys correctly in the echo area; describe bindings
8437         correctly when keys end with `C-h'.
8438         (gnus-article-read-summary-send-keys): New function.
8439         (gnus-article-describe-key, gnus-article-describe-key-briefly):
8440         Work for gnus-article-read-summary-send-keys; display continuation keys
8441         correctly in the echo area.
8442         (gnus-article-reply-with-original): Ignore prefix argument.
8443         (gnus-article-wide-reply-with-original): New function.
8444
8445         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
8446         Emacs 21.
8447
8448 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8449
8450         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
8451         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
8452
8453 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
8454
8455         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
8456         (gnus-group-read-ephemeral-gmane-group): New command.
8457
8458 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
8459
8460         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
8461
8462 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
8463
8464         * message.el (message-send-mail-function): Increase custom version.
8465
8466         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
8467         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
8468
8469 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
8470
8471         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
8472         for the cases where imap-authenticate is called with a nil buffer
8473         parameter.
8474
8475 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8476
8477         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
8478         html parts correctly; support forwarded messages.
8479         (gnus-article-browse-html-article): Remove work buffers.
8480
8481         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
8482         compiling.
8483         (netrc-bound-and-true-p): New macro.
8484         (netrc-parse): Use it instead of bound-and-true-p that is not available
8485         in XEmacs 21.4.
8486
8487 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
8488
8489         * gnus-registry.el (gnus-registry-mark-article)
8490         (gnus-registry-article-marks): Add functionality to mark articles
8491         through the Gnus registry.
8492
8493         * encrypt.el: Clarify documentation for the new pgg method.
8494         (encrypt-file-alist): Add PGG option.
8495         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
8496         functionality.  Abstract password key and messaging to external
8497         functions.
8498         (encrypt-password-key, encrypt-get-passphrase-if-needed)
8499         (encrypt-message-method-and-cipher): Add new convenience external
8500         functions.
8501         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
8502         (encrypt-pgg-process-buffer): Add PGG functionality glue.
8503
8504         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
8505         (netrc-parse): Use encrypt-file-alist to determine if
8506         encrypt-find-model or encrypt-insert-file-contents should be used.
8507
8508         * encrypt.el: Clarify documentation.  Load password-cache or
8509         password, whichever one is found first, instead of autoloading.
8510
8511 2007-12-19  Glenn Morris  <rgm@gnu.org>
8512
8513         * mml.el (message-options-set, message-narrow-to-head)
8514         (message-in-body-p, message-mail-p, message-encode-message-body):
8515         Autoload.
8516         (message-remove-header, message-narrow-to-headers-or-head)
8517         (message-subscribed-p, message-make-mail-followup-to)
8518         (message-position-on-field, message-news-p)
8519         (message-options-set-recipient, message-generate-headers)
8520         (message-sort-headers): Declare as functions.
8521
8522 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
8523
8524         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
8525         convention in doc string.
8526
8527 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8528
8529         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
8530         title to html parts.
8531         (gnus-article-browse-html-article): Pass message header to it.
8532
8533         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
8534
8535 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
8536
8537         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
8538         or password compatible with XEmacs.
8539
8540 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
8541
8542         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
8543         format document.
8544         (gnus-mime-delete-part): Don't write description line if empty.
8545         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
8546
8547 2007-12-14  Johan Bockgård  <bojohan@gnu.org>
8548
8549         * gnus-sum.el (gnus-summary-mark-unread-as-read)
8550         (gnus-summary-mark-read-and-unread-as-read)
8551         (gnus-summary-mark-current-read-and-unread-as-read)
8552         (gnus-summary-mark-unread-as-ticked): Doc fix.
8553         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
8554
8555 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
8556
8557         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
8558         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
8559
8560 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
8561
8562         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
8563         yes-or-no-p.
8564
8565 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8566
8567         * mm-decode.el (mm-add-meta-html-tag): New function.
8568         (mm-save-part-to-file, mm-pipe-part): Use it.
8569
8570         * gnus-art.el (gnus-article-browse-delete-temp-files):
8571         Use gnus-y-or-n-p instead of y-or-n-p.
8572         (gnus-article-browse-html-parts): Work with message/external-body; use
8573         mm-add-meta-html-tag.
8574
8575 2007-12-11  Glenn Morris  <rgm@gnu.org>
8576
8577         * gnus-cache.el: Require gnus-sum not just when compiling.
8578
8579         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
8580
8581         * gnus-int.el (gnus-server-opened, gnus-status-message):
8582         Move definitions before use.
8583
8584         * mm-decode.el: Require gnus-util.
8585         (mm-remove-part): Only call delete-annotation on XEmacs.
8586
8587         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
8588
8589         * nnmail.el: Require gnus-int.
8590
8591         * spam.el: Move `require's before `eval-when-compile's.
8592
8593         * gnus-ems.el (gnus-alive-p):
8594         * gnus-fun.el (message-goto-eoh):
8595         * gnus-util.el (gnus-group-name-decode):
8596         * mail-source.el (gnus-compress-sequence):
8597         * message.el (Info-goto-node, format-spec):
8598         * mm-bodies.el (message-options-get):
8599         * mm-decode.el (mm-view-pkcs7):
8600         * mm-util.el (gmm-write-region):
8601         * mml-smime.el (mml-compute-boundary)
8602         (gnus-completing-read-with-default):
8603         * mml.el (widget-button-press, gnus-make-hashtable):
8604         * mml1991.el (mm-decode-content-transfer-encoding)
8605         (mm-encode-content-transfer-encoding)
8606         (message-options-get, message-options-set):
8607         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
8608         * nnfolder.el (gnus-request-group):
8609         * nnheader.el (ietf-drums-unfold-fws):
8610         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
8611         * smime.el (gnus-run-mode-hooks):
8612         * spam-stat.el (gnus-message): Autoload.
8613
8614         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
8615         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
8616         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
8617         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
8618         Add declare-function compatibility definition.
8619
8620         * gnus-cache.el (nnvirtual-find-group-art):
8621         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
8622         (gnus-add-image, gnus-add-wash-type):
8623         * gnus-group.el (nnkiboze-score-file):
8624         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
8625         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
8626         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
8627         (message-tokenize-header, gnus-get-buffer-create)
8628         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
8629         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
8630         * gnus.el (gnus-group-decoded-name):
8631         * mail-source.el (imap-capability):
8632         * mm-bodies.el (message-options-set):
8633         * mm-decode.el (gnus-configure-windows):
8634         * mm-extern.el (message-goto-body):
8635         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
8636         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
8637         (epg-sub-key-validity, message-options-set):
8638         * mml.el (widget-event-point, gnus-configure-windows):
8639         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
8640         * mml2015.el (epg-check-configuration, epg-configuration)
8641         (message-options-set):
8642         * nndb.el (nndb-request-article):
8643         * nnfolder.el (gnus-request-create-group):
8644         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
8645         * nnmaildir.el (gnus-group-mark-article-read):
8646         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
8647         * rfc1843.el (message-fetch-field):
8648         * spam.el (gnus-extract-address-components):
8649         Declare as functions.
8650
8651 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8652
8653         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
8654
8655         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
8656
8657         * lpath.el: Fbind run-mode-hooks for Emacs 21;
8658         bind show-trailing-whitespace for XEmacs.
8659
8660 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
8661
8662         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
8663         new no-op macro for backward compatibility.
8664
8665         * imap.el (imap-string-to-integer): New function.
8666
8667 2007-12-09  Glenn Morris  <rgm@gnu.org>
8668
8669         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
8670
8671         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
8672         * message.el, mm-view.el, sieve-manage.el, smime.el:
8673         Add declare-function compatibility definition.
8674
8675         * gnus-art.el (w3-region, w3m-region, Info-menu):
8676         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
8677         * gnus-sum.el (gnus-get-predicate):
8678         * gnus-util.el (mm-append-to-file, w32-focus-frame):
8679         * message.el (mail-abbrev-in-expansion-header-p):
8680         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
8681         (w3m-detect-meta-charset, w3m-region):
8682         * sieve-manage.el (password-read, password-cache-add)
8683         (password-cache-remove):
8684         * smime.el (password-read-and-add): Declare as functions.
8685
8686 2007-12-08  David Kastrup  <dak@gnu.org>
8687
8688         * gnus-sum.el (gnus-summary-simplify-subject-query):
8689         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
8690         `message'.
8691
8692 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8693
8694         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
8695         it to bind idna-program, installation-directory, defined-colors, and
8696         face-attribute for XEmacs of the version that compiles defcustom forms.
8697
8698 2007-12-07  Glenn Morris  <rgm@gnu.org>
8699
8700         * gnus-art.el (article-make-date-line): Revert previous change.
8701
8702 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
8703
8704         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
8705
8706 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
8707
8708         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
8709         Call gnus-add-to-range ranges only once with a prepared article-list.
8710
8711 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
8712
8713         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
8714         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
8715         group names with backslashes.
8716         Reported by Tassilo Horn <tassilo@member.fsf.org>.
8717
8718 2007-12-06  Deepak Goel  <deego3@gmail.com>
8719
8720         * gnus-art.el (article-make-date-line):
8721         * gnus-start.el (gnus-load):
8722         * pop3.el (pop3-read-response): Fix buggy call to `error'.
8723
8724 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8725
8726         * gnus-art.el (gnus-use-idna)
8727         * gnus-start.el (gnus-site-init-file)
8728         * message.el (message-use-idna)
8729         * mm-uu.el (mm-uu-hide-markers)
8730         * smiley.el (smiley-style): Revert changes that suppress warnings.
8731
8732 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8733
8734         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
8735         specify charset to html source.
8736         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
8737
8738 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8739
8740         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
8741         idna-program in order to suppress byte compile warning issued by XEmacs
8742         that came to byte compile the default value section of defcustom forms
8743         recently.
8744
8745         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
8746         value of installation-directory.
8747
8748         * message.el (message-use-idna): Don't directly refer to the value of
8749         idna-program.
8750
8751         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
8752
8753         * smiley.el (smiley-style): Don't directly call face-attribute.
8754
8755 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
8756
8757         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
8758
8759         * gnus-dired.el: Reduce Gnus dependencies.
8760         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
8761         Don't require.  Use autoloads instead.
8762         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
8763         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
8764         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
8765         (gnus-dired-mode): Adjust doc string.
8766         (gnus-dired-mail-mode): New variable.
8767         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
8768         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
8769         (gnus-dired-mail-buffers): New function.  Return mail or message
8770         composition buffers.
8771         (gnus-dired-attach): Use it.
8772         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
8773         NO-DECODE.
8774         (gnus-dired-print): Use `gnus-print-buffer' depending on
8775         `gnus-dired-mail-mode'.
8776
8777 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8778
8779         * rfc2047.el (rfc2047-encoded-word-regexp)
8780         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
8781         explaining what regexp patterns are for.
8782
8783 2007-12-04  Glenn Morris  <rgm@gnu.org>
8784
8785         * password.el: Move to password-cache.el.
8786
8787         * mml1991.el (password-read, password-cache-add, password-cache-remove):
8788         * mml2015.el (password-read, password-cache-add, password-cache-remove):
8789         * mml-smime.el (password-read, password-cache-add)
8790         (password-cache-remove):
8791         No need to autoload, since mml-sec requires password.
8792
8793         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
8794         * message.el (gnus-extract-address-components):
8795         * mml-smime.el (gnus-extract-address-components): Define for compiler.
8796
8797         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
8798         password.
8799
8800 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
8801
8802         * mailcap.el: Reduce dependencies.
8803         (mail-header-parse-content-type): Autoload.
8804         (mailcap-delete-duplicates): New alias.
8805         (mailcap-mime-info): Add optional argument NO-DECODE.
8806         (mailcap-mime-types): Use mailcap-delete-duplicates.
8807
8808         * message.el (message-ignored-supersedes-headers): Add "X-ID".
8809
8810 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
8811
8812         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
8813         (imap-parse-status): Upcase status-att for servers that sends them
8814         lower-case (e.g., MS Exchange 2007).
8815
8816 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8817
8818         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
8819         function.
8820
8821         * gnus-uu.el (gnus-uu-decode-yenc): New command.
8822         (gnus-uu-yenc-article): New function.
8823
8824         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
8825
8826         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
8827
8828 2007-12-02  Glenn Morris  <rgm@gnu.org>
8829
8830         * binhex.el (binhex): New custom group.
8831         (binhex-decoder-program, binhex-decoder-switches)
8832         (binhex-use-external): Move to the binhex custom group.
8833
8834         * uudecode.el (uudecode): New custom group.
8835         (uudecode-decoder-program, uudecode-decoder-switches)
8836         (uudecode-use-external): Move to the uudecode custom group.
8837
8838         * netrc.el (top-level): Don't load `encrypt' features.
8839         (netrc-parse): Don't use encrypt.
8840         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
8841
8842         * encrypt.el: Remove file.
8843
8844 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
8845
8846         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
8847         matches on patches.
8848
8849         * gnus-art.el (gnus-article-browse-html-article):
8850         Mention `mm-text-html-renderer' in the doc string.
8851
8852         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
8853         string.  Add comments.
8854
8855         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
8856         if rhs is ASCII.
8857
8858 2007-12-01  Glenn Morris  <rgm@gnu.org>
8859
8860         * mail-source.el (top-level): Require format-spec before
8861         eval-when-compile.
8862
8863 2007-11-30  Glenn Morris  <rgm@gnu.org>
8864
8865         * encrypt.el: Require password, rather than autoloading password-read.
8866
8867 2007-11-29  Glenn Morris  <rgm@gnu.org>
8868
8869         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
8870         (sasl-make-client, sasl-next-step, sasl-step-data)
8871         (sasl-step-set-data): Declare as functions.
8872
8873 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
8874
8875         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
8876
8877 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
8878
8879         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
8880         certs should be verified and what is to be done in the event of a
8881         verification failure.
8882
8883         * gnus.el (gnus-method-to-server): Add an optional parameter so the
8884         caller can indicate whether the cache should be disregarded for this
8885         call.  This way the result of the call is reproducible at all times and
8886         can be considered a canonical server name for the supplied method.
8887         (gnus-agent-method-p): Canonicalize server names by pushing their
8888         method through `gnus-method-to-server' using the no-cache argument.
8889
8890         * gnus-srvr.el (gnus-server-insert-server-line):
8891         Call `gnus-method-to-server' with `no-cache' argument.
8892
8893         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
8894         gnus-agent-possibly-synchronize-flags as this should be called when the
8895         server is actually being opened.
8896         (gnus-agent-possibly-synchronize-flags)
8897         (gnus-agent-possibly-synchronize-flags-server): Move check for the
8898         flags file of an agentized server to the latter function.
8899
8900         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
8901         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
8902         after a connection has been established successfully.
8903
8904 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8905
8906         * gnus-art.el (article-display-face): Force to display face if called
8907         interactively; check if gnus-article-x-face-too-ugly matches author.
8908         (article-display-x-face): Display face even if From header is missing
8909         as article-display-face does.
8910
8911 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
8912
8913         * hashcash.el (message-narrow-to-headers-or-head)
8914         (message-fetch-field, message-goto-eoh)
8915         (message-narrow-to-headers): Declare as functions.
8916
8917 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
8918
8919         * mail-source.el (mail-sources): Default to fetch from file for
8920         compatibility with default of nnmail-spool-file.
8921
8922 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
8923
8924         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
8925         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
8926         to look for encoded word that should be encoded again.
8927         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
8928         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
8929         encoding pattern.
8930         (rfc2047-decode-region): Switch strict regexp and loose one according
8931         to rfc2047-allow-irregular-q-encoded-words.
8932
8933 2007-11-25  Romain Francoise  <romain@orebokech.com>
8934
8935         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
8936
8937 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
8938
8939         * tls.el (tls-program): Provide more custom choices from
8940         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
8941         (tls-process-connection-type, tls-success): Remove "*" in doc string.
8942
8943 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
8944
8945         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
8946         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
8947
8948         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
8949         `nnmail-spool-file'.
8950
8951         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
8952         `nnmail-spool-file'.
8953
8954         * gnus-move.el (gnus-change-server): Ditto.
8955
8956         * gnus-kill.el (gnus-batch-score): Ditto.
8957
8958         * gnus-cache.el (gnus-jog-cache): Ditto.
8959
8960         * gnus-msg.el (gnus-summary-reply):
8961         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
8962
8963 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
8964
8965         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
8966         version.  Minor improvement to doc strings.
8967         (tls-program): Add comment.
8968
8969 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
8970
8971         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
8972         (tls-checktrust): New variable.  Check if GNU TLS complained about a
8973         mismatch between the hostname provided in the certificate and the name
8974         of the host connnecting to.
8975         (open-tls-stream): Use them.  Check certificates against trusted root
8976         certificates.
8977
8978 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
8979
8980         * gnus-cache.el (gnus-cache-generate-nov-databases):
8981         Use nnml-generate-nov-databases-directory instead of
8982         nnml-generate-nov-databases-1.
8983
8984 2007-11-24  Glenn Morris  <rgm@gnu.org>
8985
8986         * message.el (message-tool-bar-retro): Update for rename
8987         mail_send.xpm->mail-send.xpm.
8988
8989 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
8990
8991         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
8992         `smime-ldap-search' for Emacs 22 and up.
8993
8994 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
8995
8996         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
8997
8998         * message.el (message-send-mail-function): Fix error convention.
8999         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
9000         (message-widen-reply, message-send-mail, message-talkative-question)
9001         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
9002         (message-clone-locals, message-send-news): Use with-current-buffer.
9003         (message-insert-or-toggle-importance): Remove unused var `valid'.
9004         (message-make-references): Remove unused var `new-references'.
9005         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
9006
9007 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
9008
9009         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
9010         (spam-split-symbolic-return-positive): Reflow docstring.
9011         (spam-backends, spam-summary-exit-behavior)
9012         (spam-mark-ham-unread-before-move-from-spam-group)
9013         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
9014         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
9015         (spam-clear-cache, spam-backend-check, spam-install-backend)
9016         (spam-install-statistical-backend, spam-list-of-processors)
9017         (spam-group-processor-p, spam-split, spam-bogofilter-score)
9018         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
9019         (spam-check-crm114, spam-initialize, spam-unload-hook):
9020         Fix typos in docstrings.
9021
9022 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9023
9024         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
9025         been checked if they have never been read and those group levels are
9026         higher than the one that a user specified.
9027
9028 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9029
9030         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
9031         foreign groups unless a group level is specified by a user.
9032         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
9033
9034 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
9035
9036         * message.el (message-send-mail-function): Require sendmail.
9037
9038 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
9039
9040         * message.el (message-send-mail-function): Check for smtpmail too.
9041
9042         * utf7.el (utf7-encode, utf7-decode): Use coding system
9043         `utf-7'/`utf-7-imap' from utf-7.el' if available.
9044
9045         * message.el (message-send-mail-function): New function.
9046         (message-send-mail-function): Set default using
9047         message-send-mail-function.  Adjust doc string.
9048         (message-send-mail-with-mailclient): New function.
9049
9050 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
9051
9052         * smime.el (from):
9053         * rfc2047.el (message-posting-charset):
9054         * qp.el (mm-use-ultra-safe-encoding):
9055         * pop3.el (parse-time-months):
9056         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
9057         * nnml.el (files):
9058         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
9059         (jka-compr-compression-info-list, ange-ftp-path-format)
9060         (efs-path-regexp):
9061         * nndiary.el (files):
9062         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
9063         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
9064         (epg-digest-algorithm-alist, inhibit-redisplay)
9065         (password-cache-expiry):
9066         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
9067         (pgg-output-buffer, password-cache-expiry):
9068         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
9069         (efs-path-regexp):
9070         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
9071         (inhibit-redisplay):
9072         * mm-uu.el (file-name, start-point, end-point, entry)
9073         (gnus-newsgroup-name, gnus-newsgroup-charset):
9074         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
9075         (latin-unity-ucs-list):
9076         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
9077         (mm-uu-binhex-decode-function):
9078         * message.el (gnus-message-group-art, gnus-list-identifiers)
9079         (rmail-enable-mime-composing, gnus-local-organization)
9080         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
9081         (gnus-read-active-file, facemenu-add-face-function)
9082         (facemenu-remove-face-function, gnus-article-decoded-p)
9083         (tool-bar-mode):
9084         * mail-source.el (display-time-mail-function):
9085         * gnus-util.el (nnmail-pathname-coding-system)
9086         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
9087         (gnus-original-article-buffer, gnus-user-agent)
9088         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
9089         (xemacs-codename, sxemacs-codename, emacs-program-version):
9090         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
9091         * gnus-start.el (gnus-agent-covered-methods)
9092         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
9093         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
9094         (gnus-newsgroup-headers, gnus-group-list-mode)
9095         (gnus-group-mark-positions, gnus-newsgroup-data)
9096         (gnus-newsgroup-unreads, nnoo-state-alist)
9097         (gnus-current-select-method, mail-sources)
9098         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
9099         (nnmail-spool-file, gnus-cache-active-hashtb):
9100         * gnus-mh.el (mh-lib-progs):
9101         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
9102         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
9103         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
9104         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
9105         (gnus-group-buffer):
9106         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
9107         (font-lock-set-defaults):
9108         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
9109         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
9110         (gnus-summary-post-menu, total-parts, type, condition, length):
9111         * gnus-agent.el (gnus-agent-read-agentview):
9112         * flow-fill.el (show-trailing-whitespace):
9113         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
9114         eval-and-compile wrappers for byte compiler pacifiers.
9115
9116         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
9117         (mm-display-inline-fontify): Check for featurep 'xemacs not
9118         extent-list.
9119
9120         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
9121         itimer-list.
9122         (mm-create-image-xemacs): Only do something for XEmacs.
9123         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
9124
9125         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
9126
9127         * gnus-registry.el (gnus-adaptive-word-syntax-table):
9128         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
9129
9130 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
9131
9132         * nnimap.el (nnimap-split-download-body):
9133         * gnus-demon.el (gnus-demon):
9134         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
9135
9136 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9137
9138         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
9139         New macros.
9140         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
9141         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
9142         copy data from unibyte buffer to multibyte current buffer.
9143         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
9144         to copy data from unibyte current buffer to multibyte buffer.
9145         (nntp-make-process-buffer): Make process buffer unibyte.
9146
9147         * pop3.el (pop3-open-server): Fix typo in Lisp code.
9148
9149 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
9150
9151         * pop3.el (pop3-open-server): Accept and process data more robustly at
9152         connexion start to avoid spurious "POP SSL connexion failed" errors.
9153
9154 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9155
9156         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
9157         read group names.
9158
9159 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
9160
9161         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
9162
9163 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9164
9165         * nnmail.el (nnmail-parse-active): Make group names unibyte.
9166         (nnmail-save-active): Use a unibyte buffer when saving active file,
9167         which may contain non-ASCII group names.
9168
9169         * nnml.el (nnml-request-group): Decode group names in messages.
9170
9171 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
9172
9173         * message.el (message-citation-line-function)
9174         (message-insert-formatted-citation-line): Fix spelling of
9175         `message-insert-formated-citation-line'.
9176
9177 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
9178
9179         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
9180
9181 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9182
9183         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
9184         nnmail-pathname-coding-system.
9185
9186         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
9187         that a user enters; decode group names in messages.
9188
9189         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
9190
9191 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
9192
9193         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
9194
9195         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
9196
9197         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
9198         risky local variable.
9199
9200         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
9201
9202 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
9203
9204         * encrypt.el: Improve documentation to fix function name typo.
9205         Reported by Daiki Ueno <ueno@unixuser.org>.
9206
9207 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9208
9209         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
9210         even if the point is not in the last page of an article.
9211         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
9212         back to the previous page.
9213
9214 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
9215
9216         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
9217
9218 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9219
9220         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
9221
9222 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9223
9224         * message.el (message-check-news-body-syntax):
9225         Avoid mm-string-as-multibyte.
9226         (message-hide-headers): Don't assume (point-min)==1.
9227
9228 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9229
9230         * message.el (message-remove-blank-cited-lines): Fix if remove is
9231         given.
9232         (message-bogus-address-regexp): New variable.
9233         (message-bogus-recipient-p): New function.
9234         (message-check-recipients): New command.
9235         (message-syntax-checks): Add `bogus-recipient'.
9236         (message-fix-before-sending): Add `bogus-recipient'.
9237
9238         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
9239         (gnus-treat-body-boundary): Don't test window-system.
9240
9241 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
9242
9243         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
9244
9245 2007-10-28  Miles Bader  <miles@gnu.org>
9246
9247         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
9248         at compile-time too.
9249
9250 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
9251
9252         * gnus-msg.el (gnus-message-setup-hook):
9253         Add `message-remove-blank-cited-lines' to options.
9254
9255 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9256
9257         * message.el (message-remove-blank-cited-lines): New function.
9258         Suggested by Karl Plästerer.
9259
9260 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9261
9262         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
9263         mapc.
9264
9265         * imap.el (imap-open): Replace mapcar called for effect with mapc.
9266         (top-level): Use mapc to set functions to be traced for debugging.
9267
9268         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
9269         called for effect with while loop.
9270
9271         * message.el (message-talkative-question): Replace mapcar called for
9272         effect with mapc.
9273
9274         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
9275         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
9276         called for effect with dolist.
9277
9278         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
9279
9280         * nndiary.el: Use dolist instead of mapcar to add diary headers to
9281         gnus-extra-headers and nnmail-extra-headers.
9282
9283         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
9284         called for effect with dolist.
9285         (top-level): Use mapc to set functions to be traced for debugging.
9286
9287         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
9288         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
9289         dolist.
9290
9291         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
9292         Replace mapcar called for effect with mapc.
9293         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
9294         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
9295         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
9296         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
9297
9298         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
9299         remove-if that's a cl function.
9300
9301         * webmail.el (webmail-debug): Replace mapcar called for effect with
9302         dolist.
9303
9304         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
9305         with mapc.
9306
9307 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9308
9309         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
9310         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
9311         with while loop.
9312
9313         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
9314         functions from article-* functions.
9315         (gnus-multi-decode-header): Replace mapcar called for effect with
9316         dolist.
9317
9318         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
9319         (gnus-bookmark-show-details): Replace mapcar called for effect with
9320         while loop.
9321
9322         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
9323         called for effect with while loop.
9324
9325         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
9326         with dolist.
9327
9328         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
9329         Replace mapcar called for effect with dolist.
9330
9331         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
9332
9333         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
9334         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
9335         Replace mapcar called for effect with dolist.
9336         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
9337         mapc.
9338
9339         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
9340         Replace mapcar called for effect with dolist.
9341         (gnus-topic-list): Replace mapcar called for effect with mapc.
9342
9343         * gnus.el: Use mapc instead of mapcar to add autoloads.
9344
9345 2007-10-23  Richard Stallman  <rms@gnu.org>
9346
9347         * gnus-group.el (gnus-group-highlight): Mark as risky.
9348
9349 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9350
9351         * gnus.el (gnus-server-to-method): Return method found first in
9352         gnus-newsrc-alist.
9353
9354         * gnus-art.el (gnus-article-highlight-signature)
9355         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
9356         button overlay without the front stickiness.
9357
9358 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
9359
9360         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
9361         overview buffer needed a catch to receive its throw.
9362         (gnus-agent-flush-cache): Declare as interactive to make this function
9363         easier to use.
9364
9365 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
9366
9367         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
9368         `next-line'.
9369
9370 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9371
9372         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
9373         exclude address matching message-dont-reply-to-names.
9374
9375 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9376
9377         * gnus-util.el (gnus-string<): New function.
9378
9379         * gnus-sum.el (gnus-article-sort-by-author)
9380         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
9381
9382 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9383
9384         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
9385         the frame-focus tag is set in gnus-buffer-configuration.
9386
9387 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9388
9389         * gnus-art.el (gnus-article-add-button): Make a button overlay without
9390         the front stickiness.
9391
9392 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9393
9394         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
9395         url pattern; remove duplicate one.
9396         (gnus-article-extend-url-button): New function.
9397         (gnus-article-add-buttons): Use it.
9398         (gnus-button-push): Use concatenated url that it makes.
9399
9400 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
9401
9402         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
9403
9404 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9405
9406         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
9407         Don't hardcode point-min==1.
9408
9409 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
9410
9411         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
9412         Fix comment about "iso8859-1".
9413
9414 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
9415
9416         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
9417         ones returned from the verify-function.
9418
9419         * mm-uu.el (mm-uu-pgp-signed-extract-1):
9420         Call mml2015-extract-cleartext-signature if extraction failed.
9421
9422 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
9423
9424         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
9425         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
9426         failed.
9427
9428 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
9429
9430         * Relicense "GPLv2 or later" files to "GPLv3 or later".
9431
9432 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
9433
9434         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
9435         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
9436         recommends to use EasyPG instead of PGG.
9437
9438         * pgg.el: Revert to revision 6.23.2.16.
9439
9440         * pgg-def.el: Revert to revision 6.6.2.14.
9441
9442         * pgg-gpg.el: Revert to revision 6.23.2.34.
9443
9444 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
9445
9446         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
9447         to mark a thread as expirable.  Add variable `hide' to handle hiding of
9448         thread for both the null and zero (kill/expire thread) universal prefix
9449         cases.
9450         (gnus-summary-expire-thread): Add new function to expire a thread,
9451         using gnus-summary-kill-thread.
9452         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
9453         shortcuts for gnus-summary-expire-thread.
9454         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
9455         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
9456
9457 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
9458
9459         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
9460         extras value, so an extras entry can be deleted.
9461         (gnus-registry-delete-extra-entry): Use it.
9462         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
9463         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
9464         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
9465         storage through the gnus-registry, and provide an appropriate API for
9466         it.
9467
9468 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9469
9470         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
9471         Suggested by Leo <sdl.web@gmail.com>.
9472
9473         * gnus.el: Do.
9474
9475 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9476
9477         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
9478         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
9479
9480         * gnus-agent.el (gnus-agent-fetch-headers): Do.
9481
9482         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
9483         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
9484
9485 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9486
9487         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
9488         newline.
9489         (nnmbox-request-accept-article): Don't change article in source buffer;
9490         narrow to header to use message-fetch-field rather than
9491         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
9492         (nnmbox-request-replace-article): Quote lines that'll be misidentified
9493         as delimiters; make sure article ends with newline.
9494         (nnmbox-delete-mail): Correct last position of article to be deleted;
9495         ignore X-Gnus-Newsgroup header in article body.
9496         (nnmbox-save-mail): Quote lines looking like delimiters at the right
9497         positions; make sure article ends with newline.
9498
9499         * message.el (message-display-abbrev): Don't infloop when a user
9500         inserts SPC in the beginning of header.
9501
9502         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
9503         coding-system-for-read and coding-system-for-write for XEmacs having no
9504         file-coding feature.
9505
9506         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
9507
9508 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
9509
9510         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
9511         list of groups not followed by default.  Fix type to be regexp.
9512         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
9513
9514 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
9515
9516         * hmac-def.el (define-hmac-function): Switch from old-style to
9517         new-style backquotes.
9518
9519         * md4.el (md4-make-step): Likewise.
9520
9521 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
9522
9523         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
9524         raw-text coding system when saving .newsrc file, which may contain
9525         non-ASCII group names.
9526
9527 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9528
9529         * gnus-cus.el (gnus-score-extra): New widget.
9530         (gnus-score-extra-convert): New function.
9531         (gnus-score-customize): Use it for Extra.
9532
9533 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
9534
9535         * mml2015.el (mml2015-extract-cleartext-signature): New function.
9536         (mml2015-mailcrypt-clear-verify): Use it.
9537         (mml2015-gpg-clear-verify): Use it.
9538         (mml2015-pgg-clear-verify): Use it.
9539         (mml2015-epg-clear-verify): Replace the current part with the output
9540         from GnuPG; don't extract the plaintext by itself.
9541
9542         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
9543         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
9544         mml2015-clear-verify-function; don't touch the armor headers or
9545         dash-escaped text here.
9546
9547 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9548
9549         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
9550         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
9551         parts, or application/octet-stream as a last resort.
9552         (gnus-mime-view-part-as-type): Don't toggle display.
9553         (gnus-mime-view-part-as-charset): Don't turn off display before
9554         querying charset.
9555
9556         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
9557         stuff to undisplayer function in Emacs.
9558         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
9559
9560         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
9561         text/calendar parts.
9562
9563 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9564
9565         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
9566         decoding text/calendar parts.
9567
9568         * message.el (message-forward-make-body-mime): Always mark body as
9569         having no illegible text; remove signed-or-encrypted argument.
9570         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
9571
9572         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
9573         (mml-generate-mime-1): Don't encode body if it is specified to be in
9574         raw form; don't make buffer be unibyte when inserting multibyte string.
9575
9576 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
9577
9578         * sha1.el: Fix up comment style.
9579         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
9580         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
9581
9582         * hex-util.el: Fix up comment style.
9583         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
9584
9585         * gnus-salt.el: Use with-current-buffer.
9586         (gnus-pick-setup-message): Fix long-standing typo.
9587
9588 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9589
9590         * imap.el (imap-logout-timeout): New variable.
9591         (imap-logout, imap-logout-wait): New functions.
9592         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
9593
9594         * nnimap.el (nnimap-logout-timeout): New server variable.
9595         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
9596         nnimap-logout-timeout.
9597
9598         * gnus-art.el (gnus-article-summary-command-nosave)
9599         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
9600
9601 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9602
9603         * gnus.el (gnus-maximum-newsgroup): New variable.
9604
9605         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
9606         according to gnus-maximum-newsgroup.
9607
9608         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
9609         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
9610         Limit the range of articles according to gnus-maximum-newsgroup.
9611
9612 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
9613
9614         * gnus-art.el (gnus-sticky-article): Fix problems described in
9615         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
9616         Don't perform gnus-configure-windows here; reuse existing sticky
9617         article buffer.
9618
9619         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
9620         it doesn't exist in gnus-article-mode.
9621
9622 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9623
9624         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
9625         (gnus-agent-decoded-group-name): New function.
9626         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
9627         (gnus-agent-expire-group-1): Use it; decode group name in messages.
9628
9629 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
9630
9631         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
9632         Add binding for gnus-sticky-article.
9633         (gnus-summary-exit): Don't kill sticky article buffers.
9634
9635         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
9636         article buffer.
9637         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
9638         (gnus-kill-sticky-article-buffers): New commands.
9639
9640 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9641
9642         * nntp.el (nntp-xref-number-is-evil): New server variable.
9643         (nntp-find-group-and-number): If it is non-nil, don't trust article
9644         numbers in the Xref header.
9645
9646 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9647
9648         * gnus-agent.el (gnus-agent-read-group): New function.
9649         (gnus-agent-flush-group, gnus-agent-expire-group)
9650         (gnus-agent-regenerate-group): Use it.
9651         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
9652         nnmail-pathname-coding-system.
9653
9654 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
9655
9656         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
9657
9658         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
9659         that are unread as unread, and also as selected so that information of
9660         marks having been changed by a user may be updated when exiting group.
9661
9662 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
9663
9664         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
9665
9666 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
9667
9668         * gnus-art.el (gnus-mime-display-single): Pass part number that is
9669         calculated ignoring signature parts to gnus-treat-article.
9670
9671 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9672
9673         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
9674         a point here in order to keep the window start.
9675         (gnus-insert-mime-security-button): Make a button overlay without the
9676         front stickiness.
9677         (gnus-mime-display-security): Goto the end of a button.
9678
9679         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
9680
9681 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9682
9683         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
9684         group-name-at-point.
9685         (gnus-group-completing-read): New function that offers decoded
9686         non-ASCII group names for completion.
9687         (gnus-fetch-group, gnus-group-read-ephemeral-group)
9688         (gnus-group-jump-to-group, gnus-group-make-group-simple)
9689         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
9690         (gnus-group-fetch-control): Use it.
9691         (gnus-fetch-group): Use group-name-at-point for the initial value
9692         rather than the default value; use gnus-alive-p.
9693
9694         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
9695         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
9696         (gnus-summary-post-news): Use gnus-group-completing-read.
9697
9698         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
9699         (gnus-read-move-group-name): Decode group name for completion.
9700
9701 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
9702
9703         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
9704         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
9705         Yamaoka slightly modified the code).
9706
9707 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9708
9709         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
9710         (nnmail-split-incoming): Bind it.
9711
9712         * nnml.el (nnml-group-name-charset): New function.
9713         (nnml-decoded-group-name): Use it; don't decode group name if
9714         nnmail-group-names-not-encoded-p is non-nil.
9715         (nnml-encoded-group-name): New function.
9716         (nnml-group-pathname): Inline nnml-decoded-group-name.
9717         (nnml-request-expire-articles): Decode group name in message.
9718         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
9719         nnmail-pathname-coding-system.
9720         (nnml-save-mail, nnml-active-number): Work with decoded group names and
9721         not decoded ones according to nnmail-group-names-not-encoded-p.
9722         (nnml-generate-active-info): Use nnml-encoded-group-name.
9723
9724 2007-08-08  Glenn Morris  <rgm@gnu.org>
9725
9726         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
9727         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
9728         doc-strings and comments.
9729
9730 2007-07-25  Glenn Morris  <rgm@gnu.org>
9731
9732         * Relicense all FSF files to GPLv3 or later.
9733
9734 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9735
9736         * gnus-sum.el (gnus-summary-move-article):
9737         Make gnus-summary-respool-article work.
9738
9739 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
9740
9741         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
9742         string.
9743
9744 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
9745
9746         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
9747         that should be ignored when comparing distant RSS articles with local
9748         ones.
9749         (nnrss-make-hash-index): New function.  Create a hash index according
9750         to the ignored fields.
9751         (nnrss-check-group): Use it.
9752
9753 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9754
9755         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
9756
9757         * gnus-art.el (article-decode-group-name): Decode Xref header too.
9758
9759         * gnus-group.el (gnus-group-make-group): Encode group name here unless
9760         the new optional argument ENCODED is non-nil.
9761         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
9762         coding system for encoding group name.
9763         (gnus-group-make-rss-group): Pass un-encoded group name to
9764         gnus-group-make-group.
9765         (gnus-group-set-info): Tell gnus-group-make-group that group name is
9766         encoded.
9767
9768         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
9769         Encode group name to which articles are moved or copied.
9770         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
9771         coding system for encoding Newsgroup, Followup-To and Xref headers.
9772
9773         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
9774         marks; use nnheader-file-coding-system to write a file.
9775         (nnagent-retrieve-headers): Bind file-name-coding-system to
9776         nnmail-pathname-coding-system.
9777
9778         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
9779
9780         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
9781         (nnml-request-article, nnml-request-create-group)
9782         (nnml-request-rename-group, nnml-find-id)
9783         (nnml-possibly-change-directory, nnml-possibly-create-directory)
9784         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
9785         (nnml-save-marks): Use nnml-group-pathname instead of
9786         nnmail-group-pathname.
9787
9788         (nnml-request-create-group, nnml-request-expire-articles)
9789         (nnml-request-move-article, nnml-request-delete-group)
9790         (nnml-deletable-article-p, nnml-possibly-create-directory)
9791         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
9792         (nnml-open-marks): Bind file-name-coding-system to
9793         nnmail-pathname-coding-system.
9794
9795         (nnml-request-article): Pass server argument to nnml-find-group-number.
9796         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
9797         Pass server argument to nnml-possibly-create-directory.
9798         (nnml-request-accept-article): Pass server argument to
9799         nnml-active-number and nnml-save-mail.
9800         (nnml-find-group-number): Pass server argument to nnml-find-id.
9801         (nnml-request-update-info): Pass server argument to
9802         nnml-marks-changed-p.
9803
9804         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
9805         (nnml-save-mail, nnml-active-number): Add server argument.
9806
9807         (nnml-request-delete-group): Warn if group is missing.
9808         (nnml-get-nov-buffer): Decode group name.
9809         (nnml-generate-active-info): Encode group name.
9810         (nnml-open-marks): Decode group name in messages.
9811
9812 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9813
9814         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
9815         if it is not specified.
9816         (gnus-article-pipe-part, gnus-article-save-part)
9817         (gnus-article-interactively-view-part, gnus-article-copy-part)
9818         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
9819         (gnus-article-inline-part, gnus-article-save-part-and-strip)
9820         (gnus-article-replace-part, gnus-article-delete-part)
9821         (gnus-article-view-part-as-type): Pass raw prefix argument to
9822         gnus-article-part-wrapper.
9823
9824 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9825
9826         * gnus-agent.el (gnus-agent-save-active):
9827         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
9828
9829         * gnus-cache.el (gnus-cache-save-buffers)
9830         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
9831         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
9832         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
9833         (gnus-cache-braid-nov, gnus-cache-braid-heads)
9834         (gnus-cache-generate-active, gnus-cache-rename-group)
9835         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
9836         (gnus-cache-update-overview-total-fetched-for):
9837         Bind file-name-coding-system to nnmail-pathname-coding-system.
9838         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
9839         New variables.
9840         (gnus-cache-decoded-group-name): New function.
9841         (gnus-cache-file-name): Use it.
9842         (gnus-cache-generate-active): Use non-decoded group name for active.
9843
9844         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
9845         right place.
9846         (gnus-write-active-file): Don't break non-ASCII group names.
9847
9848         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
9849         nnmail-pathname-coding-system.
9850
9851         * lpath.el: Bind default-file-name-coding-system,
9852         file-name-coding-system and language-info-alist for XEmacs.
9853
9854         * gnus-uu.el (gnus-uu-decode-save): Typo.
9855
9856 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9857
9858         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
9859
9860 2007-07-14  David Kastrup  <dak@gnu.org>
9861
9862         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
9863         finishing actions if we did not edit the article.
9864
9865 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9866
9867         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
9868         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
9869         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
9870         (gnus-agent-flush-group, gnus-agent-flush-cache)
9871         (gnus-agent-fetch-headers, gnus-agent-load-alist)
9872         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
9873         (gnus-agent-retrieve-headers, gnus-agent-request-article)
9874         (gnus-agent-regenerate-group)
9875         (gnus-agent-update-files-total-fetched-for)
9876         (gnus-agent-update-view-total-fetched-for):
9877         Bind file-name-coding-system to nnmail-pathname-coding-system.
9878         (gnus-agent-group-pathname): Don't encode file names by
9879         nnmail-pathname-coding-system.
9880         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
9881         coding-system-for-write instead of buffer-file-coding-system to
9882         gnus-agent-file-coding-system.
9883
9884         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
9885         Decode group name.
9886
9887         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
9888
9889         * gnus-start.el (gnus-update-active-hashtb-from-killed)
9890         (gnus-read-newsrc-el-file): Make group names unibyte.
9891
9892         * nnmail.el (nnmail-group-pathname): Don't encode file names by
9893         nnmail-pathname-coding-system.
9894
9895         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
9896         (nnrss-request-delete-group): Bind file-name-coding-system to
9897         nnmail-pathname-coding-system.
9898         (nnrss-read-server-data, nnrss-read-group-data):
9899         Bind file-name-coding-system correctly.
9900         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
9901
9902         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
9903         (nntp-server-to-method-cache): New variable.
9904         (nntp-group-pathname): New function that decodes non-ASCII group names.
9905         (nntp-possibly-create-directory, nntp-marks-changed-p)
9906         (nntp-save-marks, nntp-open-marks): Use it.
9907         (nntp-possibly-create-directory, nntp-open-marks):
9908         Bind file-name-coding-system to nnmail-pathname-coding-system.
9909         (nntp-open-marks): Decode group names when bootstrapping marks.
9910
9911         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
9912         Newsgroups and Folowup-To headers.
9913
9914 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9915
9916         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
9917         (gnus-server-closed-face, gnus-server-denied-face)
9918         (gnus-server-offline-face): Remove variable.
9919         (gnus-server-font-lock-keywords): Use faces that are not aliases.
9920
9921         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
9922         of modifying message-stack directly for XEmacs.
9923
9924         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
9925         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
9926         if the coding-system argument is nil for XEmacs.
9927
9928         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
9929         mm-charset-override-alist.
9930
9931         * rfc2047.el: Don't require base64; require rfc2045 for the function
9932         rfc2045-encode-string.
9933         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
9934         to quote the parameter value.
9935
9936 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
9937
9938         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
9939         form in gnus-group-name-charset-method-alist.
9940
9941         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
9942         overrides the default layout edit-form.
9943
9944         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
9945
9946         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
9947
9948 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9949
9950         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
9951         as unfetched articles.
9952
9953 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
9954
9955         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
9956
9957 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9958
9959         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
9960         original back end that keeps marks in the local system.
9961
9962 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9963
9964         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
9965         arg of pop-to-buffer for XEmacs.
9966         (gnus-article-read-summary-keys): Ditto; don't restore window
9967         configuration if summary command ends up with neither article buffer
9968         nor summary buffer; describe bindings if summary keys end with C-h.
9969
9970 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9971
9972         * message.el (message-fix-before-sending): Skip raw message part to be
9973         forwarded while checking illegible text.
9974         (message-forward-make-body-mime, message-forward-make-body):
9975         Mark signed or encrypted raw message as having no illegible text.
9976
9977 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9978
9979         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
9980         (gnus-message-with-timestamp-1): New macro.
9981         (gnus-message-with-timestamp): New function.
9982         (gnus-message): Use them.
9983
9984         * nnheader.el (nnheader-message): Use them.
9985
9986 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
9987
9988         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
9989         .newsrc.eld file.
9990
9991 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9992
9993         * gnus-agent.el (gnus-agent-fetch-headers)
9994         (gnus-agent-retrieve-headers):
9995         Bind gnus-decode-encoded-address-function to identity.
9996
9997         * nntp.el (nntp-send-xover-command): Recognize an xover command is
9998         available also when the server returns simply a dot.
9999
10000         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
10001
10002 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
10003
10004         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
10005
10006 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10007
10008         * gnus-ems.el (gnus-x-splash): Make it work.
10009
10010         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
10011         from being used.
10012
10013         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
10014
10015 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10016
10017         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
10018         4th and the 5th arguments.
10019
10020         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
10021         the front stickiness.
10022         (gnus-article-summary-command-nosave): Correct the order of the
10023         arguments passed to pop-to-buffer.
10024         (gnus-article-read-summary-keys): Ditto; make it work properly when the
10025         summary command ends up with the article buffer.
10026
10027         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
10028         the same faces.
10029
10030 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
10031
10032         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
10033
10034 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
10035
10036         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
10037         * gnus-sum.el (gnus-summary-highlight):
10038         * pgg.el (pgg-sign-region, pgg-sign):
10039         * mail-source.el (mail-source-delete-old-incoming-confirm):
10040         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
10041
10042 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10043
10044         * gnus-art.el (gnus-mime-view-part-externally)
10045         (gnus-mime-view-part-internally): Fix predicate function passed to
10046         completing-read.
10047
10048         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
10049
10050         * gnus.el (gnus-update-message-archive-method): Add :version.
10051
10052 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10053
10054         * gnus.el (gnus-update-message-archive-method): New variable.
10055
10056         * gnus-start.el (gnus-setup-news): Update saved "archive" method
10057         according to gnus-message-archive-method if
10058         gnus-update-message-archive-method is non-nil.
10059
10060 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10061
10062         * gnus-sum.el (gnus-summary-limit-to-address): New function.
10063         Suggested by Loic Dachary <loic@dachary.org>.
10064         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
10065
10066 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10067
10068         * message.el (message-pop-to-buffer): Add switch-function argument.
10069         (message-mail): Pass switch-function argument to it.
10070
10071 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
10072
10073         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
10074         Improve doc string.
10075
10076 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10077
10078         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
10079         (gnus-header-content)
10080         * gnus-cite.el (gnus-cite-10)
10081         * gnus-srvr.el (gnus-server-closed)
10082         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
10083         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
10084         (gnus-group-mail-3-empty, gnus-group-mail-low)
10085         (gnus-group-mail-low-empty, gnus-splash)
10086         * message.el (message-header-to, message-header-cc)
10087         (message-header-subject, message-header-other, message-header-name)
10088         (message-header-xheader, message-separator, message-cited-text)
10089         (message-mml): Lighten colors of faces used for dark background.
10090
10091 2007-05-24  Simon Josefsson  <simon@josefsson.org>
10092
10093         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
10094         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
10095
10096 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10097
10098         * message.el (message-narrow-to-headers-or-head):
10099         Ignore mail-header-separator in the body.
10100
10101 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
10102
10103         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
10104         same as window size.
10105
10106 2007-05-22  Kevin Ryde  <user42@zip.com.au>
10107
10108         * message.el (message-font-lock-keywords): Use message-header-xheader
10109         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
10110         ahead of the anything pattern, to get it recognised.
10111
10112 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
10113
10114         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
10115         spam.el loads uses it in the compiled defadvice form.
10116
10117 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
10118
10119         * gnus-sum.el (gnus-articles-to-read)
10120         (gnus-summary-insert-old-articles): Don't truncate group name for
10121         `read-string'.
10122
10123         * gnus-util.el (gnus-limit-string): Delete this function.
10124
10125         * gnus-sum.el (gnus-simplify-subject-fully):
10126         Use `truncate-string-to-width' instead.
10127
10128 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
10129
10130         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
10131         Tell if, on summary exit, the next group has to be selected.
10132         (gnus-summary-exit): Use it.
10133
10134 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
10135
10136         * gnus-art.el (gnus-article-mode): Fix comment about displaying
10137         non-break space.
10138
10139 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10140
10141         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
10142         Check if group is not a directory.
10143         (nnfolder-request-expire-articles): Don't delete articles if the target
10144         group is not available.
10145
10146         * nnml.el (nnml-request-create-group): Properly check if group is not a
10147         file.
10148         (nnml-request-expire-articles): Don't delete articles if the target
10149         group is not available.
10150
10151         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
10152         Don't quote characters that are within parentheses.
10153
10154 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10155
10156         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
10157         (gnus-handle-ephemeral-exit): Select article according to it.
10158
10159 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
10160
10161         * message.el (message-insert-formated-citation-line): Remove newline.
10162         (message-citation-line-format): Add final \n here so that the user can
10163         avoid a blank line.
10164
10165 2007-05-03  Dan Christensen  <jdc@uwo.ca>
10166
10167         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
10168         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
10169         Update lanl/arXiv support.
10170
10171 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
10172
10173         * gnus.el: Bump version number.
10174
10175 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10176
10177         * gnus.el (gnus-version-number): Bump version.
10178
10179 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
10180
10181         * gnus.el: No Gnus v0.6 is released.
10182
10183 2007-04-27  Didier Verna  <didier@xemacs.org>
10184
10185         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
10186         * gmm-utils.el (gmm-regexp-concat): ... here.
10187         * message.el: Don't require 'gnus-util.
10188         (message-dont-reply-to-names): Handle name change above.
10189         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
10190
10191 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10192
10193         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
10194         since the initial value varies according to the system.
10195
10196 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10197
10198         * mm-util.el (mm-charset-synonym-alist): Defcustom.
10199
10200 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
10201
10202         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
10203
10204 2007-04-24  Didier Verna  <didier@xemacs.org>
10205
10206         Improve the type of gnus-ignored-from-addresses.
10207         * gnus-util.el (gnus-orify-regexp): New function.
10208         * message.el (gnus-util): Require it.
10209         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
10210         * gnus-sum.el (gnus-ignored-from-addresses): New function.
10211         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
10212
10213 2007-04-24  Didier Verna  <didier@xemacs.org>
10214
10215         * gnus-sum.el:
10216         * gnus-utils.el: Fix some trailing whitespaces.
10217
10218 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
10219
10220         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
10221         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
10222         article's Message-ID; refer parent article in summary buffer.
10223
10224         * message.el (message-bounce): Call mime-to-mml.
10225
10226         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
10227         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
10228         optimize and/or forms properly.
10229
10230 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
10231
10232         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
10233         URL.
10234
10235 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10236
10237         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
10238
10239 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10240
10241         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
10242         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
10243         displayed of multipart/alternative part if it is invoked from summary
10244         buffer.
10245
10246         * mm-view.el (mm-inline-text-html-render-with-w3m)
10247         (mm-inline-text-html-render-with-w3m-standalone)
10248         (mm-inline-render-with-function): Use mail-parse-charset by default.
10249
10250 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
10251
10252         * parse-time.el (parse-time-string-chars): Check if CHAR
10253         is less than the length of parse-time-syntax.
10254
10255 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10256
10257         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
10258         from gnus-newsgroup-processable.
10259
10260 2007-04-16  Didier Verna  <didier@xemacs.org>
10261
10262         * gnus-msg.el (gnus-configure-posting-styles):
10263         Handle message-signature-directory properly with :file syntax.
10264         Reported by "Leo".
10265
10266 2007-04-11  Didier Verna  <didier@xemacs.org>
10267
10268         New user option: message-signature-directory.
10269         * gnus-msg.el (gnus-configure-posting-styles): Support it.
10270         * message.el (message-insert-signature): Ditto.
10271         * message.el (message-signature-file): Doc update.
10272         * message.el (message-signature-directory): New.
10273
10274 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10275
10276         * gnus-msg.el (gnus-inews-yank-articles):
10277         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
10278
10279 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10280
10281         * message.el (message-yank-original): Make sure cited text ends with
10282         newline; don't exchange point and mark.
10283
10284 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
10285
10286         * tls.el (open-tls-stream): Properly handle case where there
10287         is no associated buffer.
10288
10289 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
10290
10291         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
10292         message-yank-original, make sure (< mark TEXT point).
10293
10294 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
10295
10296         * message.el (message-fill-column): New variable.
10297         (message-mode): Use it.  Add comment on a possible new hook.
10298
10299         * nnmail.el (nnmail-spool-file): Mark as obsolete.
10300         (nnmail-get-new-mail): Reformat.
10301
10302         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
10303
10304         * gmm-utils.el: Fix Commentary.
10305         (gmm-tool-bar-from-list): Fix typo in doc string.
10306
10307 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
10308
10309         * message.el (message-yank-original): Don't switch point and mark
10310         unnecessarily to put point and mark as documented.
10311
10312 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10313
10314         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
10315         from the message heads.
10316
10317 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
10318
10319         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
10320         article buffer does not have a window.  This may not be the best
10321         solution but is certainly better than setting the start of the null,
10322         that is the current, window.
10323
10324 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
10325
10326         * gnus-draft.el (gnus-draft-setup-hook): New hook.
10327         (gnus-draft-setup): Run it.
10328
10329         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
10330         gnus-score-fast-scoring.  Allow regexp.
10331         (gnus-score-headers): Use it.
10332
10333         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
10334         XEmacs.
10335
10336         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
10337         string.
10338         (gnus-button-alist): Also catch `<f1> k ...'.
10339         (gnus-treat-display-x-face): Fix doc string.
10340
10341 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10342
10343         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
10344         evaluation of gnus-extended-version to ensure correct generation of the
10345         User-Agent header when message-generate-headers-first is used.
10346
10347 2007-03-24  Simon Josefsson  <simon@josefsson.org>
10348
10349         * hashcash.el (hashcash-generate-payment-async): Don't crash if
10350         hashcash-path is nil.  Don't call callback with incorrect number of
10351         parameters if val is 0.
10352
10353 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10354
10355         * message.el (message-required-news-headers):
10356         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
10357
10358 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
10359
10360         * tls.el (open-tls-stream): In handshake-waiting loop,
10361         don't wait more if there is output available to process.
10362
10363 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
10364
10365         * tls.el (tls-program): Doc fix.
10366
10367 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10368
10369         * message.el (message-generate-new-buffers): Change the meaning of the
10370         nil value; add `standard' to the choices; treat t as `unique'; improve
10371         doc string.
10372         (gnus-select-frame-set-input-focus): Autoload.
10373         (message-buffer-name): Search for the existing message buffer if
10374         message-generate-new-buffers is nil or `standard'; treat the value t of
10375         message-generate-new-buffers as `unique'.
10376         (message-pop-to-buffer): Raise the frame already displaying the message
10377         buffer; clear the echo area after querying.
10378         (message-setup): Pass the `continue' argument to compose-mail.
10379         (message-mail): Prefer `switch-function' if it is given; search for the
10380         existing message buffer if the `continue' argument is non-nil; pass
10381         continue and switch-function arguments to compose-mail by way of
10382         message-setup.
10383         (message-mail-other-window): Adjust argument of message-setup.
10384         (message-mail-other-frame): Ditto.
10385
10386 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10387
10388         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
10389         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
10390         to turn font-lock on when turning gnus-message-citation-mode on.
10391
10392 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
10393
10394         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
10395         (mml-smime-function-alist): New variable; add epg as the backend.
10396         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
10397         mml-smime- functions instead.
10398         * mm-view.el: Require smime.
10399
10400 2007-03-05  Didier Verna  <didier@xemacs.org>
10401
10402         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
10403         instead of just inheritance for posting styles.
10404         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
10405
10406 2007-02-24  Chris Moore  <dooglus@gmail.com>
10407
10408         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
10409         * pgg-pgp.el (pgg-pgp-encrypt-region):
10410         * pgg-gpg.el (pgg-gpg-encrypt-region):
10411         Check pgg-encrypt-for-me if no other recipients.
10412
10413 2007-02-24  John Paul Wallington  <jpw@pobox.com>
10414
10415         * tls.el (tls-certtool-program): Fix custom type.
10416
10417 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10418
10419         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
10420         and point-at-eol instead of line-(beginning|end)-position.
10421
10422         * assistant.el (assistant-parse-buffer): Ditto.
10423
10424         * netrc.el (netrc-parse-services): Ditto.
10425
10426 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
10427
10428         * mml2015.el (mml2015-epg-find-usable-key): New function.
10429         (mml2015-epg-sign): Use it.
10430         (mml2015-epg-encrypt): Use it.
10431
10432 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10433
10434         * message.el (message-make-in-reply-to): Quote name containing
10435         non-ASCII characters.  It will make the RFC2047 encoder cause an error
10436         if there are special characters.  Reported by NAKAJI Hiroyuki
10437         <nakaji@jp.freebsd.org>.
10438
10439 2007-02-27  Didier Verna  <didier@xemacs.org>
10440
10441         Include the group parameters as well as the topic ones in the
10442         inheritance filter process.
10443         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
10444         argument GROUP-PARAMS-LIST.
10445         * gnus-topic.el (gnus-group-topic-parameters): Use it.
10446
10447 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10448
10449         * nntp.el (nntp-never-echoes-commands)
10450         (nntp-open-connection-functions-never-echo-commands): New variables.
10451         (nntp-send-command): Use them.
10452
10453 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
10454
10455         * mml2015.el (mml2015-epg-verify): Simplify.
10456
10457 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10458
10459         * mml.el (mml-content-disposition-alist): New user option.
10460         (mml-content-disposition): New function.
10461         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
10462         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
10463
10464 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
10465
10466         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
10467         verification.
10468
10469 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10470
10471         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
10472         articles posted in the last 24 hours.
10473
10474 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
10475
10476         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
10477
10478 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
10479
10480         * nntp.el (nntp-send-command): Don't wait for echoes when
10481         nntp-open-ssl-stream is used.
10482
10483 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10484
10485         * gnus-cite.el (gnus-test-font-lock-add-keywords)
10486         (gnus-message-add-citation-keywords)
10487         (gnus-message-remove-citation-keywords): Remove.
10488         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
10489         directly, make the variables in font-lock-defaults buffer-local, add
10490         gnus-message-citation-keywords to them and then update the value of
10491         font-lock-keywords.
10492
10493 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10494
10495         * message.el (message-cite-original-1): Don't call
10496         gnus-article-highlight-citation.
10497
10498         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
10499         citations; fix line count.
10500
10501 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
10502
10503         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
10504         (gnus-message-add-citation-keywords)
10505         (gnus-message-remove-citation-keywords): Use it; fix the emulating
10506         versions of font-lock-add-keywords and font-lock-remove-keywords to
10507         work with XEmacs correctly.
10508
10509 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10510
10511         * gnus-cite.el (gnus-cite-face-list): Set the values of
10512         gnus-message-max-citation-depth and gnus-message-citation-keywords.
10513         (gnus-message-max-citation-depth): Use defvar rather than defconst.
10514         (gnus-message-cite-prefix-regexp): New variable.
10515         (gnus-message-search-citation-line): Use it; protect against long
10516         citation prefix; fill match data with nil rather than 0 for XEmacs; set
10517         the 0th match data for Emacs.
10518         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
10519         (gnus-message-add-citation-keywords): Append keywords rather than
10520         prepending; emulate font-lock-add-keywords if it is not available.
10521         (gnus-message-remove-citation-keywords):
10522         Emulate font-lock-remove-keywords if it is not available.
10523
10524         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
10525
10526         * message.el (message-cite-prefix-regexp): Set the value of
10527         gnus-message-cite-prefix-regexp.
10528
10529 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10530
10531         * nnweb.el (nnweb-google-parse-1): Update parser.
10532
10533 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
10534
10535         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
10536
10537 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10538
10539         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
10540         regexp.
10541
10542 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10543
10544         * uudecode.el (uudecode-string-to-multibyte): New function emulating
10545         string-to-multibyte.
10546         (uudecode-decode-region-internal): Use it.
10547
10548         * lpath.el: Fbind string-as-multibyte for XEmacs.
10549
10550 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
10551
10552         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
10553         Fix custom choice.
10554
10555         * gnus-art.el (gnus-signature-limit): Fix custom choice.
10556
10557 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
10558
10559         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
10560
10561         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
10562         `write-region' to respect `mm-inhibit-file-name-handlers'.
10563
10564 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
10565
10566         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
10567         Use gnus-home-directory instead of "~/" or "$HOME".
10568
10569 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
10570
10571         * encrypt.el (encrypt-insert-file-contents): Add better prompt
10572         to mention filename.
10573         Add comments at beginning regarding usage.
10574         (encrypt-write-file-contents): Change interactive so a string is
10575         acceptable.  If the file has no associated model, show an error instead
10576         of a nonsense prompt.
10577
10578 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10579
10580         * spam.el (spam-bsfilter-ham-switch): Fix typo.
10581         Thanks to Yoshihiko Yamada for kind notification of this typo.
10582
10583 2007-01-12  Kenichi Handa  <handa@m17n.org>
10584
10585         * uudecode.el (uudecode-decode-region-internal): Make it work in a
10586         multibyte buffer.
10587
10588 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
10589
10590         * gnus-score.el (gnus-score-fast-scoring): New variable.
10591         (gnus-score-headers): Use it.
10592
10593         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
10594
10595         * message.el (message-cite-original-1):
10596         Call gnus-article-highlight-citation if requested.
10597         (message-make-from): Allow name and address as optional arguments.
10598
10599         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
10600
10601         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
10602         bugs to doc string.
10603         (gnus-button-alist): Add mid\\|message-id.
10604         (gnus-button-fetch-group): Extend for use in
10605         `browse-url-browser-function'.
10606         (gnus-button-url-regexp): Try to catch paired parentheses like in
10607         Wikipedia URLs.
10608
10609         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
10610         Suggested by Simon Krahnke <overlord@gmx.li>.
10611
10612 2007-01-13  Romain Francoise  <romain@orebokech.com>
10613
10614         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
10615         Update copyright.
10616
10617 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
10618
10619         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
10620
10621 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
10622
10623         * gnus-registry.el (gnus-registry-unfollowed-groups)
10624         (gnus-registry-split-fancy-with-parent): Fix documentation.
10625
10626 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10627
10628         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
10629         from nnweb groups.
10630
10631 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10632
10633         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
10634         Xref urls.  Erase buffer before requesting head.
10635
10636         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
10637
10638 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
10639
10640         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
10641         customizable.
10642
10643 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
10644
10645         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
10646         no signing key is found.
10647         (mml2015-epg-encrypt): Ask user whether to skip or abort if
10648         no encrypting and/or signing key is found.
10649
10650 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
10651
10652         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
10653
10654 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10655
10656         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
10657         headers read from disk with the ones newly found in the current search.
10658         This should no longer cause problems, because the article numbers in
10659         Gmane's `nov.php' output are ignored since the previous change.
10660
10661 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10662
10663         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
10664
10665 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10666
10667         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
10668         replace-regexp-in-string; bind url-version; fbind display-images-p and
10669         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
10670         find-face and set-itimer-function for Emacs; bind itimer-list for
10671         Emacs.
10672
10673         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
10674
10675 2007-01-01  Romain Francoise  <romain@orebokech.com>
10676
10677         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
10678
10679 2006-12-31  Steve Youngs  <steve@sxemacs.org>
10680
10681         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
10682         `define-minor-mode' macro definition expanded properly.
10683         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
10684         exclude it there.
10685
10686         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
10687         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
10688         `fboundp' test.
10689         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
10690         This is OK to autoload in (S)XEmacs now.
10691
10692 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10693
10694         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
10695         keystroke.
10696         (gnus-summary-limit-to-singletons): Fix typo.
10697
10698         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
10699         else fails.
10700
10701 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10702
10703         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
10704         docstring.
10705
10706         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
10707         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
10708         (gnus-summary-insert-dormant-articles): Fix typo in message.
10709
10710 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
10711
10712         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
10713         nil for XEmacs.
10714         (gnus-message-citation-mode): Don't autoload in XEmacs.
10715
10716         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
10717
10718 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
10719
10720         * nnimap.el (nnimap-expunge-search-string):
10721         Mention nnimap-search-uids-not-since-is-evil in docstring.
10722
10723 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
10724
10725         * spam.el: Revert to make-obsolete-variable because
10726         define-obsolete-variable-alias is not supported in Emacs 21.
10727
10728         * spam.el (spam-ifile-path, spam-ifile-database-path)
10729         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
10730         make-obsolete-variable.
10731         (spam-bsfilter-path, spam-bsfilter-program)
10732         (spam-spamassassin-path, spam-spamassassin-program)
10733         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
10734         Don't use "path" inappropriately.
10735         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
10736         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
10737         variable names.
10738
10739 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
10740
10741         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
10742         summary buffer.
10743
10744         * password.el (password-cache-remove): Use clear-string to burn
10745         password, if available.
10746
10747 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
10748
10749         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
10750
10751         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
10752
10753         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
10754         (gnus-message-highlight-citation): Move defcustom here from
10755         gnus-cite.el.
10756         (gnus-message-citation-mode): Autoload.
10757
10758         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
10759         checks to make it compile with XEmacs.
10760         (gnus-message-citation-mode): New minor mode.
10761         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
10762         (gnus-message-highlight-citation): New variables.
10763         (gnus-message-search-citation-line)
10764         (gnus-message-add-citation-keywords)
10765         (gnus-message-remove-citation-keywords)
10766         (turn-on-gnus-message-citation-mode)
10767         (turn-off-gnus-message-citation-mode): New functions.
10768
10769 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
10770
10771         * gnus-cite.el: Enable highlighting of different citation levels in
10772         message-mode.
10773
10774 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
10775
10776         * message.el (message-make-fqdn): Fix comment.
10777         (message-bogus-system-names): Add ".local".
10778
10779         * spam.el (spam-ifile-path, spam-ifile-program)
10780         (spam-ifile-database-path, spam-ifile-database)
10781         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
10782         Don't use "path" inappropriately.
10783         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
10784         strings.
10785         (spam-check-ifile, spam-ifile-register-with-ifile)
10786         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
10787         Use new variable names.
10788
10789         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
10790         (gnus-treat-display-smileys): Simplify using
10791         gnus-image-type-available-p.
10792
10793         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
10794         available.
10795
10796         * gnus-xmas.el (gnus-xmas-image-type-available-p):
10797         Use `display-images-p' if available.
10798
10799 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
10800
10801         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
10802         one after turning on the buffer's multibyteness instead of decoding
10803         them directly in the unibyte buffer that causes unexpected conversion
10804         in Emacs 23 (unicode).
10805
10806 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10807
10808         * message.el (message-generate-hashcash): Fix custom type.
10809
10810 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
10811
10812         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
10813
10814 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
10815
10816         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
10817         disconnect icons.  Add help text.
10818
10819 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
10820
10821         * spam.el (spam-extra-header-to-number): CRM114 spam score is
10822         negated to be consistent with the others we handle.
10823
10824 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10825
10826         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
10827         version of gnus-summary-buffer to something, so that we can use two
10828         article buffers at the same time.
10829
10830 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
10831
10832         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
10833         trigger all the extra headers.
10834         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
10835         sorting.
10836
10837 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10838
10839         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
10840         solid groups.
10841
10842 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
10843
10844         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
10845
10846 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
10847
10848         * legacy-gnus-agent.el: Add Copyright notice.
10849
10850 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
10851
10852         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
10853
10854 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10855
10856         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
10857
10858         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
10859         to make it work reliably in CVS Emacs.
10860         (gnus-summary-limit-strange-charsets-predicate)
10861         (gnus-summary-limit-to-predicate): New functions.
10862
10863 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
10864
10865         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
10866         specifying array size.
10867         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
10868         array if it is too small.
10869         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
10870         (gnus-sort-threads-loop): New function.
10871
10872 2006-12-06  Chris Moore  <dooglus@gmail.com>
10873
10874         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
10875         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
10876
10877 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
10878
10879         * mm-url.el (mm-url-predefined-programs): Call curl with correct
10880         options.
10881
10882 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10883
10884         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
10885         DOS-ing the recipient.
10886
10887         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
10888         the headers when creating the mapping to avoid mismappings.
10889         (nnweb-gmane-create-mapping): Always nix out old mapping.
10890
10891 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10892
10893         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
10894         and mm-verify-option to never.
10895
10896 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10897
10898         * message.el (message-signed-or-encrypted-p): New function.
10899         (message-forward-make-body): Use it.
10900
10901         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
10902         Replace encode-coding-string with mm-encode-coding-string.
10903
10904 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10905
10906         * nneething.el (nneething-decode-file-name):
10907         Replace decode-coding-string with mm-decode-coding-string.
10908
10909         * gnus-int.el (gnus-open-server): Say failed server's name.
10910
10911 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10912
10913         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
10914         strings to a single string.  Quote `errors-file-name'.
10915         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
10916         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
10917         Adjust calls.  Use `shell-quote-argument'.
10918
10919 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
10920
10921         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
10922         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
10923
10924         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
10925         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
10926         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
10927         (gnus-group-make-directory-group, gnus-group-transpose-groups):
10928         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
10929         (gnus-subscribe-newsgroup, gnus-1):
10930         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
10931         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
10932         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
10933         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
10934
10935 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10936
10937         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
10938         keystroke.
10939         (gnus-summary-limit-to-bodies): Implement headersp.
10940
10941 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10942
10943         * dns.el (query-dns): Protect against "Process dns deleted" strings.
10944
10945 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
10946
10947         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
10948
10949 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10950
10951         * message.el (message-generate-hashcash): Expand range of values to
10952         include `opportunistic'.
10953         (message-send-mail): Use it.
10954
10955 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10956
10957         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
10958         and comment it.
10959
10960         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
10961
10962 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
10963
10964         * gnus-util.el (gnus-extract-address-components): Improve comment.
10965
10966 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10967
10968         * gnus-util.el (gnus-extract-address-components): Work with address in
10969         which the name portion contains @.
10970
10971         * lpath.el: Fbind custom-autoload.
10972
10973 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
10974
10975         * gnus.el (gnus-start): Move custom group up.
10976         (gnus-select-method): Don't autoload, but make it available for
10977         `customize-variable'.
10978         (gnus-getenv-nntpserver): Don't autoload.
10979
10980 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
10981
10982         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
10983
10984 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
10985
10986         * message.el (message-sendmail-extra-arguments): New variable.
10987         (message-send-mail-with-sendmail): Use it.
10988
10989 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10990
10991         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
10992         mm-with-unibyte-current-buffer to make string unibyte.
10993
10994         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
10995         mm-string-as-multibyte.
10996
10997 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
10998
10999         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
11000         Reported by Werner Koch <wk@gnupg.org>.
11001
11002 2006-11-14  Daiki Ueno  <ueno@p360>
11003
11004         * mml2015.el: Autoload epa-select-keys when compiling.
11005
11006 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
11007
11008         * mml2015.el (mml2015-epg-sign): Save the signing keys in
11009         message-options.
11010         (mml2015-epg-encrypt): Save the recipient keys in message-options.
11011
11012 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
11013
11014         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
11015         EasyPG (< 0.0.6).
11016         (mml2015-always-trust): New user option.
11017         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
11018         prompt.
11019
11020 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11021
11022         * nntp.el (nntp-authinfo-force): New variable.
11023         (nntp-send-authinfo): Use it.
11024
11025 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
11026
11027         * message.el (message-strip-subject-encoded-words): Allow _not_ to
11028         decode encoded words.  Improve prompt.  Add comment about forwarding.
11029         (message-replacement-char): Move up.
11030
11031 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
11032
11033         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
11034         instead of gnus-intersection because arguments of gnus-sorted-nunion
11035         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
11036
11037 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
11038
11039         * message.el (message-strip-subject-encoded-words): Reformat prompt.
11040         (message-simplify-subject-functions):
11041         Enable message-strip-subject-encoded-words by default.
11042
11043 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
11044
11045         * message.el (message-strip-subject-encoded-words): New function.
11046         (message-simplify-subject-functions): New variable.
11047         (message-simplify-subject): Use it.  Fix typo in doc string.
11048         Support message-strip-subject-encoded-words.
11049
11050 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
11051
11052         * gnus-diary.el (gnus-diary-delay-format-function):
11053         * nndiary.el (nndiary-reminders):
11054         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
11055
11056 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
11057
11058         * gnus-art.el (article-hide-boring-headers): Fetch date from
11059         gnus-original-article-buffer to avoid problems with localized date
11060         strings.
11061
11062 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11063
11064         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
11065
11066 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
11067
11068         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
11069         New variables.
11070         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
11071         (mm-charset-synonym-alist): Move some entries to
11072         mm-codepage-iso-8859-list.
11073         (mm-charset-synonym-alist, mm-charset-override-alist):
11074         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
11075
11076 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11077
11078         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
11079
11080 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
11081
11082         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
11083         with Emacs 21 and XEmacs.
11084
11085 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
11086
11087         * spam.el (spam-parse-address): New function for better parsing,
11088         catching errors, etc.
11089         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
11090
11091 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
11092
11093         * mm-view.el: Add interactive arg to html2text autoload.
11094
11095 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11096
11097         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
11098
11099 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
11100
11101         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
11102         New variables.
11103         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
11104         (mm-charset-synonym-alist): Move some entries to
11105         mm-codepage-iso-8859-list.
11106
11107         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
11108
11109 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
11110
11111         * message.el (message-citation-line-format)
11112         (message-insert-formated-citation-line): Fix implementation of %E, %N
11113         and %n according to the doc string.
11114
11115 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
11116
11117         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
11118         Use car-safe to avoid bad parses.
11119
11120 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11121
11122         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
11123         names.
11124
11125         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
11126
11127 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11128
11129         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
11130         header.
11131
11132         * message.el (message-draft-headers): Add Date.
11133         (message-headers-to-generate): Fix typo in docstring.
11134
11135         * nndraft.el (nndraft-required-headers): New variable.
11136         (nndraft-generate-headers): Use it.
11137
11138         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
11139
11140 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
11141
11142         * gnus-registry.el (gnus-registry-wash-for-keywords)
11143         (gnus-registry-find-keywords): New functions to allow easy searching of
11144         articles that are in the registry.
11145
11146 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
11147
11148         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
11149         Use ietf-drums-parse-address instead of gnus-extract-address-components.
11150         Reported by Damien Elmes <damien@repose.cx>.
11151
11152 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
11153
11154         * gnus.el (gnus-mime): Remove unused custom group.
11155
11156 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11157
11158         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
11159         "blank line" when searching for end of armor headers.
11160
11161 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11162
11163         * gmm-utils.el (gmm-write-region): Fix variable name.
11164
11165 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
11166
11167         * gmm-utils.el (gmm-write-region): New function based on compatibility
11168         code from `mm-make-temp-file'.
11169
11170         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
11171
11172         * nnmaildir.el (nnmaildir--update-nov)
11173         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
11174         Use `gmm-write-region'.
11175
11176 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
11177
11178         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
11179         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
11180
11181         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
11182
11183         * message.el (message-replacement-char): New variable.
11184         (message-fix-before-sending): Use it.
11185         (message-simplify-subject): New function to remove duplicate code.
11186         (message-reply, message-followup): Use it.
11187
11188         * gnus-sum.el (gnus-summary-make-menu-bar):
11189         Clarify gnus-summary-limit-to-articles.
11190
11191 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11192
11193         * gnus-util.el (gnus-with-local-quit): New macro.
11194
11195         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
11196
11197 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
11198
11199         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
11200         ignore non-string data.
11201
11202 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
11203
11204         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
11205         non-string data (needs to be done in the registry too).
11206
11207 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
11208
11209         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
11210         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
11211         (gnus-registry-split-fancy-with-parent)
11212         (gnus-registry-fetch-simplified-message-subject-fast)
11213         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
11214         Remove text properties on ingress into the registry and when it's saved.
11215         (gnus-registry-clean-empty-function): Fix bug with cleaning the
11216         registry from entries with no groups.
11217
11218 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
11219
11220         * gnus-util.el (gnus-string-remove-all-properties): Add utility
11221         function to remove string properties.
11222
11223 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
11224
11225         * gmm-utils.el (gmm): Adjust custom version.
11226
11227         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
11228         Adjust custom version.
11229
11230         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
11231
11232 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
11233
11234         * gnus-art.el (gnus-insert-prev-page-button)
11235         (gnus-insert-next-page-button): Simplify.  Reformat.
11236
11237 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
11238
11239         * gnus-art.el (gnus-insert-prev-page-button)
11240         (gnus-insert-next-page-button): Apply gnus-article-button-face.
11241
11242 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
11243
11244         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
11245
11246 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
11247
11248         * gnus-art.el (gnus-insert-mime-button)
11249         (gnus-insert-mime-security-button):
11250         Apply gnus-article-button-face to MIME and security buttons.
11251
11252 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
11253
11254         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
11255         readable.
11256
11257 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11258
11259         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
11260
11261 2006-09-20  Steve Youngs  <steve@sxemacs.org>
11262
11263         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
11264         `browse-url-of-file' instead of `browse-url'.
11265
11266 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11267
11268         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
11269         regexp.  Articles containing quotation were cut prematurely.
11270
11271 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11272
11273         * message.el (message-cite-original-1): Use nobody by default for the
11274         value of From header.
11275         (message-reply): Ditto.
11276
11277 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
11278
11279         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
11280         to the gnus-info.  This fixes a bug of inline-PGP message verification.
11281         Reported by Michael Piotrowski <mxp@dynalabs.de>.
11282
11283 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
11284
11285         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
11286         mails in the doc string.  Add some URLs in comment.
11287         (pop3-movemail): Warn about pop3-leave-mail-on-server.
11288
11289 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11290
11291         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
11292         backslashes handling and the way to find boundaries of quoted strings.
11293
11294 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
11295
11296         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
11297         mml1991-encrypt-to-self is set and mml1991-signers is not set.
11298         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
11299         mml2015-encrypt-to-self is set and mml2015-signers is not set.
11300
11301 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
11302
11303         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
11304         doc string.
11305         (gnus-button-regexp, gnus-button-last): Remove unused variables.
11306
11307 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11308
11309         * lpath.el: Fbind epg-check-configuration.
11310
11311 2006-09-06  Simon Josefsson  <jas@extundo.com>
11312
11313         * mml2015.el (mml2015-use): Doc fix, mention epg.
11314
11315 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
11316
11317         * mml2015.el (mml2015-use): Default to epg, if available.
11318
11319 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
11320
11321         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
11322         message-sender.
11323         (mml1991-epg-encrypt): Ditto.
11324         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
11325         message-sender.
11326         (mml2015-epg-encrypt): Ditto.
11327
11328 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
11329
11330         * message.el (message-send-mail-with-sendmail): Look for sendmail in
11331         several common directories.
11332
11333 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
11334
11335         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
11336         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
11337
11338 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
11339
11340         * gnus-art.el (article-decode-encoded-words): Make it fast.
11341
11342 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
11343
11344         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
11345
11346         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
11347         in quoted string into `\'.
11348
11349 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11350
11351         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
11352         Use standard-syntax-table.
11353
11354 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11355
11356         * gnus-art.el (gnus-decode-address-function): New variable.
11357         (article-decode-encoded-words): Use it to decode headers which are
11358         assumed to contain addresses.
11359         (gnus-mime-delete-part): Remove useless `or'.
11360
11361         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
11362         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
11363         (gnus-nov-parse-line): Use it to decode From header.
11364         (gnus-get-newsgroup-headers): Ditto.
11365         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
11366
11367         * mail-parse.el (mail-decode-encoded-address-region): New alias.
11368         (mail-decode-encoded-address-string): New alias.
11369
11370         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
11371         New function.
11372         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
11373         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
11374         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
11375         (rfc2047-decode-string): Ditto.
11376         (rfc2047-decode-address-region): New function.
11377         (rfc2047-decode-address-string): New function.
11378
11379 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
11380
11381         * message.el (message-caesar-buffer-body): Allow rotating headers.
11382
11383         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
11384
11385         * message.el (message-insert-formated-citation-line): Fix %f.
11386         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
11387
11388 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11389
11390         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
11391         (gnus-bookmark-mouse-available-p): New macro.
11392         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
11393         (gnus-bookmark-bmenu-show-infos): Use it.
11394         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
11395         (gnus-bookmark-bmenu-hide-infos): Ditto.
11396         (gnus-bookmark-remove-properties): New function.
11397         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
11398         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
11399         (gnus-bookmark-write-file): Bind coding-system-for-write.
11400         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
11401         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
11402         group before selecting it.
11403         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
11404         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
11405         quit-window if it is not available; use gnus-mouse-2 and bind it to
11406         gnus-bookmark-bmenu-select-by-mouse.
11407         (gnus-bookmark-show-details): Remove unused variable `details-list'.
11408         (gnus-bookmark-bmenu-select-by-mouse): New function.
11409
11410 2006-08-13  Romain Francoise  <romain@orebokech.com>
11411
11412         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
11413         space.
11414
11415 2006-08-10  Romain Francoise  <romain@orebokech.com>
11416
11417         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
11418         (dns-mode-soa-auto-increment-serial): New user option.
11419         (dns-mode-soa-maybe-increment-serial): New function.
11420         (dns-mode): Add the latter to `write-contents-functions'.
11421
11422 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11423
11424         * compface.el (uncompface): Use binary rather than raw-text-unix.
11425
11426 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11427
11428         * compface.el (uncompface): Make sure the eol conversion doesn't take
11429         place when communicating with the external programs.
11430         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
11431
11432 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
11433
11434         * nnheader.el (nnheader-insert-head): Fix typo in comment.
11435
11436 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11437
11438         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
11439         Make it more robust by parsing author and date independently.
11440
11441 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11442
11443         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
11444
11445 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
11446
11447         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
11448         first matching secret key.
11449         (mml2015-epg-encrypt): Ditto.
11450
11451         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
11452         first matching secret key.
11453         (mml1991-epg-encrypt): Ditto.
11454
11455         * mml2015.el (mml2015-encrypt-to-self): New user option.
11456         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
11457         mml2015-epg-encrypt-to-self is set.
11458
11459         * mml1991.el (mml1991-encrypt-to-self): New variable.
11460         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
11461         mml1991-epg-encrypt-to-self is set.
11462
11463         * mml2015.el (mml2015-signers): New user option.
11464         (mml2015-epg-sign): Reflect the value of mml2015-signers.
11465         (mml2015-epg-encrypt): Allow to select signing keys.
11466
11467         * mml1991.el (mml1991-signers): New variable.
11468         (mml1991-epg-sign): Reflect the value of mml1991-signers.
11469         (mml1991-epg-encrypt): Allow to select signing keys.
11470
11471 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11472
11473         * nnheader.el (nnheader-insert-head): Make it work even if the file
11474         uses CRLF for the line-break code.
11475
11476 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
11477
11478         * mml2015.el: Require mml-sec instead of password.
11479         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
11480         (mml2015-cache-passphrase): Inherit the default value from
11481         mml-secure-cache-passphrase.
11482         (mml2015-passphrase-cache-expiry): Inherit the default value from
11483         mml-secure-passphrase-cache-expiry.
11484
11485         * mml1991.el: Require mml-sec instead of password.
11486         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
11487         (mml1991-cache-passphrase): Inherit the default value from
11488         mml-secure-cache-passphrase.
11489         (mml1991-passphrase-cache-expiry): Inherit the default value from
11490         mml-secure-passphrase-cache-expiry.
11491
11492         * mml-sec.el: Require password.
11493         (mml-secure-verbose): New user option.
11494         (mml-secure-cache-passphrase): New user option.
11495         (mml-secure-passphrase-cache-expiry): New user option.
11496
11497 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
11498
11499         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
11500         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
11501         andreas@altroot.de (Andreas Vögele).
11502
11503         FIXME: Use `tiny change'?
11504
11505 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11506
11507         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
11508         workaround for the url package included with Emacs.
11509
11510         * nnweb.el (nnweb-google-create-mapping): Update regexp.
11511
11512 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11513
11514         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
11515         correctly.  This fixes a bug caused by the 2006-05-12 change.
11516
11517 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
11518
11519         * nnmail.el (nnmail-article-group): If splitting raises an error, give
11520         some information about the error when saying that the `bogus' mail
11521         group will be used.
11522
11523 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
11524
11525         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
11526         string.
11527
11528 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
11529
11530         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
11531
11532 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11533
11534         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
11535
11536 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
11537
11538         * mml1991.el (mml1991-function-alist): Add epg.
11539         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
11540         (mml1991-epg-encrypt): New functions.
11541
11542 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
11543
11544         * mml2015.el (mml2015-verbose): New variable.
11545         (mml2015-cache-passphrase): Ditto.
11546         (mml2015-passphrase-cache-expiry): Ditto.
11547         (mml2015-function-alist): Add epg.
11548         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
11549         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
11550         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
11551         New functions.
11552
11553 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11554
11555         * message.el (message-cite-original-1): Preserve region when removing
11556         quoted text due to X-No-Archive in order to avoid bogus attribution
11557         when citing multiple messages.
11558
11559 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11560
11561         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
11562         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
11563
11564 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
11565
11566         * gnus-diary.el (gnus-user-format-function-d)
11567         (gnus-user-format-function-D): Autoload.
11568
11569         * imap.el (Commentary): Fix typo.
11570
11571         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
11572         2006-04-22 contribution.
11573
11574 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11575
11576         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
11577         It didn't really fix the bogosity I'm seeing with solid web groups.
11578
11579 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11580
11581         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
11582         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
11583         created using server names.  If we use the feature without declaring
11584         it, Gnus does not properly manage server and group state.
11585
11586         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
11587         bound.
11588
11589 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11590
11591         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
11592         looking up the method using GROUP's prefix before inventing a new one.
11593         It is used on killed/unknown groups in various places where returning
11594         an all-new method isn't expected by the caller.
11595
11596         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
11597         and match semantics of gnus-group-real-prefix.
11598
11599 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
11600
11601         * nnmail.el (nnmail-broken-references-mailers): New variable.
11602         (nnmail-ignore-broken-references): New function generalizing
11603         nnmail-fix-eudora-headers.
11604         (nnmail-fix-eudora-headers): Now obsolete.
11605
11606         * gnus-art.el (gnus-button-handle-custom):
11607         Support `customize-apropos*'.
11608
11609 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11610
11611         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
11612
11613         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
11614         articles.
11615
11616 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
11617
11618         * message.el (message-cite-reply-above): New variable.
11619         (message-yank-original): Use it.
11620
11621 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11622
11623         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
11624
11625 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
11626
11627         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
11628         as read.
11629
11630         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
11631
11632 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
11633
11634         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
11635         (gnus-bookmark-default-file): Use gnus-directory.
11636         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
11637         Remove "*" in doc string.
11638         (gnus-bookmark-write-file): Simplify.
11639         (gnus-bookmark-maybe-sort-alist): Use `when'.
11640         (gnus-bookmark-get-bookmark): Fix typo in doc string.
11641         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
11642         Add FIXME about Emacs 21 and XEmacs compatibility.
11643         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
11644         compatibility.
11645         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
11646         compatibility.
11647         (gnus-bookmark-menu-heading): Fix version.
11648
11649 2006-06-19  Bastien Guerry  <bzg@altern.org>
11650
11651         * gnus-bookmark.el: New file.
11652
11653 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11654
11655         * message.el (message-syntax-checks): Doc fix.
11656
11657 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11658
11659         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
11660         unsubscribed groups as if they were killed ones.  It causes duplicate
11661         entries in gnus-newsrc-alist.
11662
11663 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11664
11665         * message.el (message-syntax-checks): Doc fix.
11666         (message-send-mail): Add check for continuation headers.
11667         (message-check-news-header-syntax): Fix regexp used to check for
11668         continuation headers.
11669
11670 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11671
11672         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
11673
11674 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
11675
11676         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
11677
11678 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11679
11680         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
11681         default-truncate-lines.
11682
11683 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11684
11685         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
11686         to fill the utf-8 entry.
11687
11688         * lpath.el: Fbind unicode-precedence-list.
11689
11690 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11691
11692         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
11693
11694 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
11695
11696         * gnus-agent.el (directory-files-and-attributes): Move all the way
11697         forward (the third and final move).
11698         (gnus-agent-read-agentview): Trap reconstruction errors due to
11699         nonexistent directory.  Handle by returning nil.
11700
11701 2006-05-30  Didier Verna  <didier@xemacs.org>
11702
11703         * message.el (message-dont-reply-to-names): Update the custom type.
11704         * message.el (message-dont-reply-to-names): New defsubst: potentially
11705         convert a list of regexps into a single one.
11706         * message.el (message-get-reply-headers): Use it.
11707         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
11708
11709 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11710
11711         * gnus-agent.el (directory-files-and-attributes): Move forward.
11712
11713 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
11714
11715         * gnus-ml.el (gnus-mailing-list-subscribe)
11716         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
11717         (gnus-mailing-list-message): Fix doc strings.
11718
11719 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11720
11721         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
11722         of doing it manually.
11723
11724 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
11725
11726         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
11727         comment.
11728
11729 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
11730
11731         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
11732         (gnus-agent-read-agentview): Fix handling of end-of-file error.
11733         (gnus-agent-read-local): All symbols allocated in my-obarray.
11734         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
11735         (gnus-agent-regenerate-group): Check numeric names to see if they are
11736         messages or groups.
11737         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
11738         better way of do this...)
11739
11740         * gnus-cache.el (gnus-agent-total-fetched-for):
11741         Ignore 'dummy.group' (there should be a better way of do this...)
11742
11743 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11744
11745         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
11746         (gnus-saved-headers): Ditto.
11747         (gnus-default-article-saver): Mention functions may have properties.
11748         (gnus-article-save): Override gnus-save-all-headers and
11749         gnus-saved-headers by :headers property which saver function may have.
11750         (gnus-summary-save-in-file): Add :headers property.
11751         (gnus-summary-write-to-file): Ditto.
11752
11753         * gnus-sum.el (gnus-summary-save-article): Bind
11754         gnus-prompt-before-saving to t when saving many articles in a file;
11755         always show all headers.
11756
11757         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
11758
11759 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
11760
11761         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
11762         marks.
11763
11764         * message.el (message-indent-citation): Add optional arguments to allow
11765         using it outside of message buffers.
11766
11767         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
11768         (gnus-article-treat-unfold-headers): Use it.
11769         (gnus-article-truncate-lines): New variable.
11770         (gnus-article-mode): Use it.
11771         (gnus-article-toggle-truncate-lines): New function.
11772
11773         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
11774         Add gnus-article-toggle-truncate-lines.
11775
11776         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
11777         coding system in XEmacs, use binary.
11778
11779 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11780
11781         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
11782         after-load-alist.
11783
11784         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
11785         this function should save decoded articles.
11786         (gnus-summary-write-to-file): Use property to specify this function
11787         should save decoded articles and specify gnus-summary-save-in-file
11788         should be used to save articles other than the first one when saving
11789         many articles.
11790         (gnus-summary-save-body-in-file): Use property to specify this
11791         function should save decoded articles.
11792         (gnus-summary-write-body-to-file): Use property to specify this
11793         function should save decoded articles and specify
11794         gnus-summary-save-body-in-file should be used to save articles other
11795         than the first one when saving many articles.
11796
11797         * gnus-sum.el (gnus-summary-save-article): Simplify.
11798
11799 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11800
11801         * gnus-art.el (gnus-default-article-saver):
11802         Add gnus-summary-write-body-to-file.
11803         (gnus-article-save-coding-system): Don't use coding system object
11804         in XEmacs.
11805         (gnus-read-save-file-name): Add optional `dir-var' argument which
11806         specifies directory in which files are saved; work even if optional
11807         `variable' argument is not specified.
11808         (gnus-summary-write-to-file): Read file name.
11809         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
11810         (gnus-summary-write-body-to-file): New function.
11811
11812         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
11813         (gnus-summary-local-variables): Add it.
11814         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
11815         (gnus-summary-save-article): Remove optional `decode' argument;
11816         determine whether to decode articles by the value of
11817         gnus-default-article-saver; when saving many files using
11818         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
11819         it first and use gnus-summary-save-in-file or
11820         gnus-summary-save-body-in-file thereafter unless
11821         gnus-prompt-before-saving is always; move point to article which
11822         will be saved.
11823         (gnus-summary-save-article-file): Revert.
11824         (gnus-summary-write-article-file): Revert.
11825         (gnus-summary-save-article-body-file): Revert.
11826         (gnus-summary-write-article-body-file): New function.
11827
11828 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11829
11830         * gnus-art.el (gnus-default-article-saver): Doc fix.
11831         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
11832         from gnus-summary-save-article-coding-system, and default to a
11833         certain coding system.
11834         (gnus-output-to-file): Add coding cookie and encode text according
11835         to gnus-article-save-coding-system; don't use mm-append-to-file.
11836
11837         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
11838         gnus-art.el and rename to gnus-article-save-coding-system.
11839         (gnus-summary-save-article): Require gnus-art; don't show all
11840         headers if it decodes articles; don't add coding cookie here;
11841         don't bind mm-text-coding-system-for-write.
11842         (gnus-summary-save-article-file): Save decoded articles.
11843         (gnus-summary-write-article-file): When saving many files, use
11844         gnus-summary-write-to-file first and gnus-summary-save-in-file
11845         thereafter unless gnus-prompt-before-saving is always.
11846         (gnus-summary-save-article-body-file): Save decoded articles.
11847
11848         * lpath.el: Fbind select-safe-coding-system for XEmacs.
11849
11850 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
11851
11852         * nnrss.el (nnrss-check-group): Bind hash-index.
11853
11854 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
11855
11856         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
11857         its hash index.  Store this hash in `nnrss-group-data'.
11858         (nnrss-read-group-data): Update accordingly.
11859
11860 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
11861
11862         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
11863         entry.
11864
11865         * gnus-sum.el (gnus-summary-make-menu-bar):
11866         Add gnus-article-browse-html-article.
11867
11868 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
11869
11870         * gnus-sum.el (gnus-summary-mime-map):
11871         Add gnus-article-browse-html-article.
11872
11873         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
11874
11875 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
11876
11877         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
11878         suitable coding systems in customize.
11879
11880 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
11881
11882         * mail-source.el (mail-sources): Fix custom type.
11883
11884 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
11885
11886         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
11887         (gnus-summary-expire-articles-now): Shorten prompt.
11888
11889         * gmm-utils.el (wid-edit): Require.
11890         (defun-gmm): Rename from `gmm-defun-compat'.
11891         (gmm-image-search-load-path): Use it.
11892         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
11893
11894 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11895
11896         * gnus-sum.el (gnus-summary-save-article-coding-system):
11897         New variable.
11898         (gnus-summary-save-article): Add optional `decode' argument.
11899         If it is set and gnus-summary-save-article-coding-system is non-nil,
11900         save decoded article.
11901         (gnus-summary-write-article-file): Save decoded article if
11902         gnus-summary-save-article-coding-system is non-nil.
11903
11904         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
11905         type.
11906
11907 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11908
11909         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
11910
11911 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11912
11913         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
11914         first to test gnus-single-article-buffer which may be buffer-local.
11915
11916         * gnus-sum.el (gnus-summary-setup-buffer):
11917         Make gnus-single-article-buffer buffer-local and nil in ephemeral
11918         group; make gnus-article-buffer, gnus-article-current, and
11919         gnus-original-article-buffer always buffer-local.
11920         (gnus-summary-exit): Kill article buffer belonging to ephemeral
11921         group.
11922         (gnus-handle-ephemeral-exit): Don't move to next summary line.
11923
11924 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
11925
11926         * nnml.el (nnml-request-compact-group): Compressed files might not
11927         have .gz extension.
11928
11929 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11930
11931         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
11932         (mm-copy-to-buffer): Use with-current-buffer.
11933         (mm-display-part): Simplify.
11934         (mm-inlinable-p): Add optional arg `type'.
11935
11936 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11937
11938         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
11939         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
11940         Try harder to show the attachment internally or externally using
11941         gnus-mime-view-part-as-type.
11942
11943 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
11944
11945         * message.el (message-from-style, message-signature-separator)
11946         (message-user-organization-file, message-send-mail-function)
11947         (message-citation-line-function, message-yank-prefix)
11948         (message-indent-citation-function, message-signature)
11949         (message-signature-file, message-signature-insert-empty-line):
11950         Remove autoloads.
11951
11952         * gnus-art.el (gnus-buttonized-mime-types):
11953         Remove "multipart/signed".  Revert 2006-04-26 change.
11954
11955 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11956
11957         * gnus.el (gnus-version-number): Bump version.
11958
11959 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
11960
11961         * gnus.el: No Gnus v0.5 is released.
11962
11963 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11964
11965         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
11966         fetching articles by message-id.
11967
11968 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11969
11970         * message.el (hashcash): Require hashcash as normal.
11971
11972         * ecomplete.el (ecomplete-highlight-match-line):
11973         Use point-at-eol.
11974         (ecomplete-highlight-match-line): Use `highlight', because that
11975         face exists in both Emacs and XEmacs.
11976
11977         * message.el (message-display-abbrev): Use point-at-bol.
11978
11979         * mail-source.el: Don't require timer/timer-funcs.
11980
11981         * gnus-async.el: Ditto.
11982
11983         * password.el: Ditto.
11984
11985         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
11986
11987         * mm-url.el: Ditto.
11988
11989         * gnus-xmas.el: Don't require timer-funcs.
11990
11991         * mm-util.el: Require timer/timer-funcs.
11992
11993 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11994
11995         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
11996         Close.
11997
11998 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11999
12000         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
12001         unibyte after clear-decrypt function runs.
12002
12003         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
12004         returns as a unibyte string.
12005
12006 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12007
12008         * lpath.el: Revert.
12009
12010         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
12011         (pgg-gpg-process-sentinel): Revert.
12012
12013         * pgg-pgp.el (pgg-pgp-process-region): Revert.
12014         (pgg-pgp-lookup-key): Revert.
12015
12016         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
12017         (pgg-pgp5-lookup-key): Revert.
12018
12019         * pgg.el (pgg-fetch-key): Revert.
12020
12021 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12022
12023         * lpath.el: Fbind string-as-multibyte for XEmacs.
12024
12025         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
12026         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
12027         (mml1991-pgg-encrypt): Ditto.
12028
12029         * pgg-gpg.el (pgg-string-to-multibyte): New function.
12030         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
12031         a multibyte buffer.
12032
12033         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
12034         (pgg-pgp-lookup-key): Ditto.
12035
12036         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
12037         (pgg-pgp5-lookup-key): Ditto.
12038
12039         * pgg.el (pgg-fetch-key): Ditto.
12040
12041 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
12042
12043         * message.el (message-user-organization-file): Check several
12044         locations of the organization file.
12045
12046         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
12047         Add gnus-article-view-part-as-type.
12048
12049         * gnus-art.el (gnus-article-view-part-as-type): New function.
12050
12051         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
12052         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
12053
12054         * mml.el: Simplify autoload.
12055         (mml-mode): defvar dnd-protocol-alist instead of using
12056         symbol-value.
12057         (mml-default-directory): New variable.
12058         (mml-minibuffer-read-file): Use it.
12059         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
12060
12061         * message.el (message-citation-line-format): New variable.
12062         (message-insert-formated-citation-line): New function.
12063         (message-citation-line-function):
12064         Add `message-insert-formated-citation-line' to custom type.
12065
12066         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
12067         to doc string.
12068
12069         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
12070         depending on mm-verify-option.
12071
12072 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12073
12074         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
12075         binding pgg-* variables; reimplement the section which prevents
12076         MIME header from being signed.
12077         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
12078         pgg-text-mode; remove a blank line at the top of body.
12079
12080         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
12081         lines at the top of body; use gnus-newsgroup-charset if there's no
12082         Charset header.
12083
12084 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12085
12086         * message.el (message-self-insert-commands): Doc fix.
12087
12088         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
12089         (mm-uu-pgp-encrypted-test): Ditto.
12090         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
12091         between header and body; return application/pgp-encrypted handle
12092         if decryption failed; decode decrypted body by charset.
12093
12094         * mm-decode.el (mm-automatic-display): Don't make application/pgp
12095         element match to application/pgp-*.
12096
12097 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12098
12099         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
12100         HTML.
12101
12102 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12103
12104         * mail-source.el (mail-source-call-script): Message the error
12105         string.
12106
12107 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12108
12109         * gnus-util.el (gnus-byte-compile): Use it.
12110
12111 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
12112
12113         * gnus-util.el (kill-empty-logs): New function.
12114
12115 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12116
12117         * message.el (message-mail-alias-type): Doc fix.
12118         (message-mail-alias-type-p): New function.
12119         (message-send): Use it.
12120         (message-mode): Ditto.
12121         (message-strip-forbidden-properties): Ditto.
12122
12123         * ecomplete.el (ecomplete-database-file-coding-system):
12124         New variable.
12125         (ecomplete-save): Use it.
12126         (ecomplete-setup): Use it.
12127
12128 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12129
12130         * message.el (message-self-insert-commands): New variable.
12131         (message-strip-forbidden-properties): Use it.
12132
12133 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12134
12135         * message.el (message-put-addresses-in-ecomplete): Use a regexp
12136         that doesn't make XEmacs choke.
12137
12138 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
12139
12140         * gnus-util.el (gnus-replace-in-string):
12141         Prefer replace-regexp-in-string over of replace-in-string.
12142
12143 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12144
12145         * gnus-util.el (gnus-select-frame-set-input-focus):
12146         Use select-frame-set-input-focus if it is available in XEmacs; use
12147         definition defined in Emacs 22 for old Emacsen.
12148
12149         * dgnushack.el: Autoload unmorse-region for XEmacs.
12150
12151         * lpath.el: Bind cursor-in-non-selected-windows and
12152         select-frame-set-input-focus for XEmacs.
12153
12154 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12155
12156         * mm-view.el (mm-inline-text): Use equal instead of equalp.
12157
12158 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
12159
12160         * gnus-registry.el (gnus-registry-cache-save): Remove text
12161         properties when saving via the temp buffer.
12162
12163 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
12164
12165         * message.el (message-generate-hashcash): Honor custom type.
12166
12167 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12168
12169         * message.el (message-generate-hashcash): Default to non-nil when
12170         hashcash is found.
12171
12172         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
12173         (gnus-refer-thread-limit): Increase default to 500.
12174
12175         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
12176
12177         * flow-fill.el (fill-flowed): Allow delete-space.
12178
12179 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
12180
12181         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
12182         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
12183         Remove autoloads.
12184
12185 2006-04-18  Simon Josefsson  <jas@extundo.com>
12186
12187         * message.el (message-generate-hashcash): Default to.
12188
12189 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12190
12191         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
12192         concatenating segments rather than before concatenating them.
12193
12194 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
12195
12196         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
12197
12198 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12199
12200         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
12201
12202         * message.el (message-forward-make-body-plain):
12203         Allow message-forward-ignored-headers to be a list.
12204         (message-remove-ignored-headers): Factor out into function.
12205         (message-forward-make-body-mml): Use it.
12206
12207         * imap.el (imap-quote-specials): New function.
12208         (imap-login-auth): Quote specials.
12209
12210         * rfc2231.el (rfc2231-parse-string): Remove dead code.
12211         (rfc2231-parse-string): Allow concatanation of parameters that
12212         aren't contiguous.  The test case is
12213           (mail-header-parse-content-type "message/external-body;
12214             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
12215             access-type=LOCAL-FILE;
12216             name*1*=plugh%2fhello-sailor%2fbing.pdf")
12217
12218 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12219
12220         * nntp.el (nntp-accept-process-output): Return the value of
12221         `nnheader-accept-process-output'.
12222
12223 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12224
12225         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
12226         (gnus-button-alist): Recognize more diff formats.
12227         (gnus-button-patch): Strip directory.
12228
12229 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
12230
12231         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
12232         Emacs 22 when setting focus.
12233
12234 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12235
12236         * gnus-art.el (gnus-article-treat-types): Do treatment of
12237         text/x-verbatim parts.
12238         (gnus-button-patch): New command.
12239
12240         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
12241         addresses that contain invalid characters.
12242
12243 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12244
12245         * message.el (message-put-addresses-in-ecomplete):
12246         Use gnus-replace-in-string.
12247         (message-is-yours-p): Use the more correct
12248         mail-header-parse-address instead of
12249         mail-extract-address-components.
12250         (message-put-addresses-in-ecomplete): Fix typo.
12251
12252         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
12253         keystroke.
12254
12255         * gnus-art.el (gnus-treatment-function-alist): Change order of
12256         newsgroups/generic header folding to avoid double-folding.
12257
12258         * message.el (message-hidden-headers): Add X-Draft-From.
12259
12260         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
12261         New command.
12262         (gnus-summary-repeat-search-article-backward): New command.
12263
12264         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
12265         groups in the parent topic.
12266
12267 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
12268
12269         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
12270         (spam-extra-header-to-number): Return the CRM114 number as a
12271         number instead of a string.
12272
12273 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12274
12275         * gnus-art.el (gnus-face-properties-alist): Move here from
12276         gnus-fun.
12277
12278         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
12279
12280 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12281
12282         * message.el (message-strip-forbidden-properties): Only display on
12283         self-insert-command.
12284
12285         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
12286         reindent.
12287         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
12288
12289 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
12290
12291         * smiley.el (smiley-style): Fix typo.
12292
12293 2006-03-23  Kenichi Handa  <handa@m17n.org>
12294
12295         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
12296         instead of set-buffer-multibyte.
12297
12298 2006-03-23  Kenichi Handa  <handa@m17n.org>
12299
12300         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
12301         buffer and then decode the buffer text if necessary.
12302         (rfc2231-encode-string): Be sure to work on multibyte buffer at
12303         first, and after mm-encode-body, change the buffer to unibyte.
12304
12305 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12306
12307         * hashcash.el (hashcash-insert-payment-async-2):
12308         Use message-goto-eoh instead of doing it manually.
12309         (mail-add-payment): Use message-narrow-to-header instead of trying
12310         to do the same itself.
12311
12312         * message.el (message-hidden-headers): Add Face.
12313
12314         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
12315         reparenting code.
12316         (gnus-summary-reparent-children): Refactored out code.
12317         (gnus-summary-thread-map): New keystroke.
12318         (gnus-summary-reparent-children): Make into command.
12319
12320         * smiley.el (smiley-style): Default to `medium' if using a large
12321         font.
12322
12323         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
12324         does it itself.
12325
12326         * message.el (message-point-in-header-p): Simplify definition.
12327
12328 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12329
12330         * nnagent.el (nnagent-request-set-mark): Silence log file
12331         writing.
12332         (nnagent-request-set-mark): Use write-region instead of
12333         append-to-file.
12334
12335         * gnus-sum.el (gnus-read-header): Fudge article number if using a
12336         strange select method.
12337
12338         * ecomplete.el (ecomplete-display-matches): Get highlightling
12339         right.
12340         (ecomplete-display-matches): Use literals.
12341         (ecomplete-display-matches): Disable message logging.
12342
12343         * message.el (message-display-abbrev): Small optimization.
12344
12345         * ecomplete.el (ecomplete-display-matches): Allow automatic
12346         display.
12347
12348         * message.el (message-strip-forbidden-properties):
12349         Display abbrevs.
12350         (message-display-abbrev): Get automatic display right.
12351
12352         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
12353         keystrokes.
12354
12355 2006-04-13  Romain Francoise  <romain@orebokech.com>
12356
12357         TODO: Backport to v5-10!
12358
12359         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
12360         Move here (and rename) from gnus-registry.el.
12361
12362         * gnus-registry.el: Require gnus-util.
12363         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
12364
12365 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12366
12367         * gnus-group.el (gnus-group-catchup-current):
12368         Change if-then-else-if-then-else into cond.
12369         (gnus-group-catchup): Indent.
12370         (group-name-at-point): New function.
12371         (gnus-fetch-group): Provide default from thing at point.
12372
12373 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12374
12375         * message.el (message-display-abbrev): Fix regexp.
12376
12377         * ecomplete.el (ecomplete-highlight-match-line):
12378         Reimplement choosing.
12379         (ecomplete-highlight-match-line): Fix up code rewrite, remove
12380         dead variables.
12381
12382         * message.el (message-newline-and-indent): Remove debugging.
12383         (message-display-abbrev): Use new implementation.
12384
12385 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
12386
12387         * gnus-art.el (gnus-article-mode):
12388         Set cursor-in-non-selected-windows to nil.
12389
12390         * smiley.el: Revert previous change.
12391         (smiley-data-directory): defvar it before using it in the
12392         defcustom of `smiley-style'.
12393
12394 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12395
12396         * message.el (message-newline-and-indent): New function.
12397
12398         * ecomplete.el: Implement more bits.
12399
12400         * message.el (message-put-addresses-in-ecomplete): Clean up the
12401         string.
12402
12403         * ecomplete.el (ecomplete-add-item): Chop off decimals.
12404
12405         * gnus-sum.el (gnus-summary-save-parts):
12406         Bind gnus-summary-save-parts-counter and use it to make unique file
12407         names.
12408
12409         * gnus-art.el (gnus-ignored-headers): Add some more headers.
12410
12411         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
12412         parameter to say whether to actually parse the individual
12413         addresses.
12414
12415         * message.el (message-put-addresses-in-ecomplete): New function.
12416         (ecomplete): Require.
12417         (message-mail-alias-type): Add ecomplete as an option.
12418
12419 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
12420
12421         * flow-fill.el (fill-flowed): Remove trailing space from blank
12422         quoted lines.
12423
12424 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12425
12426         * smiley.el (smiley-style): Move definition later to avoid a
12427         compilation warning.
12428
12429 2006-04-12  Kenichi Handa  <handa@m17n.org>
12430
12431         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
12432         buffer and then decode the buffer text if necessary.
12433         (rfc2231-encode-string): Be sure to work on multibyte buffer at
12434         first, and after mm-encode-body, change the buffer to unibyte.
12435         Use mm-disable-multibyte instead of set-buffer-multibyte.
12436
12437 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12438
12439         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
12440         Content-Type header instead of Content-Disposition header.
12441         (gnus-mime-inline-part): Ditto.
12442         (gnus-mime-view-part-as-charset): Ignore charset that the part
12443         specifies.
12444
12445         * mm-decode.el (mm-display-part): Work with external parts and
12446         usual parts similarly.
12447
12448         * mm-extern.el (mm-inline-external-body): Use mm-display-part
12449         instead of gnus-display-mime.
12450
12451         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
12452         instead of with-temp-buffer.
12453
12454         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
12455         tag to summarized topics part in order to encode non-ASCII text.
12456
12457 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
12458
12459         * smiley.el (smiley-style): New variable.
12460         (smiley-directory): New function.
12461         (smiley-data-directory): Derive from `smiley-style' using
12462         `smiley-directory'.
12463         (smiley-regexp-alist): Add new entries.
12464
12465         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
12466         (gnus-article-browse-delete-temp): Add :version.
12467
12468 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
12469
12470         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
12471         the sieve region.
12472
12473 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12474
12475         * gnus.el (gnus-version-number): Bump version.
12476
12477 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
12478
12479         * gnus.el: No Gnus v0.4 is released.
12480
12481 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12482
12483         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
12484         layout.
12485
12486         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
12487         unknown charset.
12488
12489         * message.el (message-header-synonyms): Add Original-To to the
12490         default.
12491
12492         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
12493         optional parameter.
12494
12495 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
12496
12497         * gnus-fun.el (gnus): Require it for gnus-directory.
12498
12499 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12500
12501         * gnus-fun.el (gnus-face-properties-alist): Add :version.
12502
12503 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
12504
12505         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
12506
12507 2006-04-05  Simon Josefsson  <jas@extundo.com>
12508
12509         * password.el (password-reset): New function.
12510
12511 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
12512
12513         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
12514         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
12515
12516 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12517
12518         * nnweb.el (nnweb-google-create-mapping): Update regexp.
12519         Some whitespace was matched into the url, which broke browsing hits
12520         > 100 when mm-url-use-external was nil.
12521
12522 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
12523
12524         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
12525         Check gnus-extra-headers for 'Newsgroups.
12526
12527         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
12528         bound.
12529
12530 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
12531
12532         * pgg-gpg.el: Clean up process buffers every time gpg processes
12533         complete.
12534
12535 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
12536
12537         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
12538         doc string.
12539
12540 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
12541
12542         * pgg-gpg.el (pgg-gpg-process-filter)
12543         (pgg-gpg-wait-for-completion): Check if buffer is alive.
12544
12545         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
12546         lines, temporary fix.
12547
12548 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
12549
12550         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
12551
12552 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
12553
12554         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
12555         default-enable-multibyte-characters.  This reverts the change from
12556         revision 6.17 which is no longer necessary because the passphrase
12557         is sent separately now.  GnuPG messages are unreadable under
12558         multibyte locales with default-enable-multibyte-characters set to
12559         nil.
12560
12561 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
12562
12563         * message.el (message-tool-bar-gnome): Move "spell".
12564
12565 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
12566
12567         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
12568         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
12569         instead.
12570
12571 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
12572
12573         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
12574         Improve newsgroups handling for NNTP overviews which don't include
12575         Newsgroups.
12576
12577 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12578
12579         * message.el (message-resend): Bind message-generate-hashcash to nil.
12580
12581 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12582
12583         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
12584         when searching for already-paid recipients.
12585
12586 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
12587
12588         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
12589         passphrases when it is not needed.
12590         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
12591         passphrase stuff from gpg, should only be necessary when you use
12592         gpg with a smartcard.
12593
12594 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12595
12596         * mml.el (mml-insert-mime): Ignore cached contents of
12597         message/external-body part.
12598
12599         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
12600         (mm-insert-part): Ditto.
12601
12602 2006-03-23  Simon Josefsson  <jas@extundo.com>
12603
12604         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
12605         Reiner.
12606         (pgg-gpg-use-agent-p): Use it again.
12607
12608 2006-03-23  Simon Josefsson  <jas@extundo.com>
12609
12610         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
12611         older emacsen.
12612         (pgg-gpg-use-agent-p): Don't use it.
12613
12614 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
12615
12616         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
12617         if we can.
12618
12619 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
12620
12621         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
12622         (pgg-gpg-update-agent): New function.
12623         (pgg-gpg-use-agent-p): New function.
12624         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
12625         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
12626         (pgg-gpg-sign-region): Use it.
12627
12628 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12629
12630         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
12631         Reported by Ralf Wachinger <rwachinger@gmx.de>.
12632
12633 2006-03-21  Simon Josefsson  <jas@extundo.com>
12634
12635         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
12636         <wilde@sha-bang.de>.
12637         (pgg-gpg-use-agent): New variable.
12638         (pgg-gpg-process-region): Use it.
12639         (pgg-gpg-encrypt-region): Likewise.
12640         (pgg-gpg-encrypt-symmetric-region): Likewise.
12641         (pgg-gpg-decrypt-region): Likewise.
12642         (pgg-gpg-sign-region): Likewise.
12643         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
12644
12645 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
12646
12647         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
12648
12649         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
12650         Add comment on version.
12651
12652 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
12653
12654         * smiley.el: Add missing test smiley.
12655
12656 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12657
12658         * mm-decode.el (mm-with-part): New macro.
12659         (mm-get-part): Use it; work with message/external-body as well.
12660         (mm-save-part): Treat name and filename equally.
12661
12662         * mm-extern.el (mm-extern-cache-contents): New function.
12663         (mm-inline-external-body): Use it; force the part to be displayed;
12664         move undisplayer added to the cached handle to the parent.
12665
12666         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
12667         (gnus-mime-view-part-as-type): Work with message/external-body.
12668
12669         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
12670
12671 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
12672
12673         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
12674         images in image-load-path.  [Sync with image.el, revision 1.60, in
12675         Emacs.]
12676
12677 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
12678
12679         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
12680         path rather than symbol.  Always return list of directories.
12681         Guarantee that image directory comes first.  [Sync with image.el,
12682         revision 1.59, in Emacs.]
12683
12684         * message.el (message-make-tool-bar): Adjust to new API of
12685         `gmm-image-load-path-for-library'.
12686
12687         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
12688
12689         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
12690
12691 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12692
12693         * gnus-art.el (gnus-article-only-boring-p):
12694         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
12695         intangible text.
12696         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
12697
12698 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
12699
12700         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
12701         Use `defun' instead of `gmm-defun-compat'.
12702
12703 2006-03-14  Simon Josefsson  <jas@extundo.com>
12704
12705         * message.el (message-unique-id): Don't use message-number-base36
12706         if (user-uid) is a float.
12707         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
12708
12709 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12710
12711         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
12712
12713         * gnus-art.el (gnus-mime-display-single): Make sure there is an
12714         empty line between a part and a message part.
12715
12716 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
12717
12718         * smiley.el: Add more test smileys.
12719         (smiley-data-directory, smiley-regexp-alist)
12720         (gnus-smiley-file-types): Fix doc strings.
12721         (smiley-update-cache): Clear smiley-cached-regexp-alist before
12722         adding new elements.
12723         (smiley-mouse-map): Unused code.  Make it a comment.
12724
12725 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12726
12727         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
12728         scan latest NoCeM messages instead of old ones.
12729         (gnus-nocem-check-article): Fix regexps so as to match to PGP
12730         delimiters that are recently used.
12731         (gnus-nocem-load-cache): Add autoload cookie.
12732
12733         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
12734
12735         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
12736         level which is larger than gnus-use-nocem is specified.
12737
12738         * gnus-group.el (gnus-group-get-new-news): Ditto.
12739
12740 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
12741
12742         * gnus-util.el (gnus-tool-bar-update): New function.
12743
12744         * gnus-group.el (gnus-group-update-tool-bar): New variable.
12745         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
12746
12747         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
12748
12749         * gnus-group.el (gnus-group-redraw-when-idle)
12750         (gnus-group-redraw-check): Remove.
12751         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
12752
12753 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12754
12755         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
12756         if optional last element is specified in splits (FIELD VALUE...).
12757
12758 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
12759
12760         * message.el (message-make-tool-bar): Rename gmm-image-load-path
12761         to gmm-image-load-path-for-library.  Call with no-error argument.
12762         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
12763
12764         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
12765
12766         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
12767
12768         * gmm-utils.el (gmm-image-load-path): Remove alias.
12769
12770 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
12771
12772         * gmm-utils.el (gmm-image-load-path): Add alias.
12773
12774         * nnml.el (nnml-generate-nov-databases-directory): Rename from
12775         nnml-generate-nov-databases-1.
12776         (nnml-generate-nov-databases): Use it.
12777         (nnml-generate-nov-databases-directory): Document no-active
12778         argument.
12779
12780         * gmm-utils.el (gmm-image-load-path-for-library): Return single
12781         directory if path is t.  Add no-error.
12782
12783         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
12784         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
12785
12786         * gnus-art.el (gnus-article-browse-delete-temp-files):
12787         Simplify resetting gnus-article-browse-html-temp-list.
12788
12789         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
12790         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
12791         Add example to docstring.  Rename local variables.  Move error
12792         checks to default case in cond and simplify.
12793
12794 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12795
12796         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
12797         handle is multipart when calling it recursively.
12798         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
12799
12800 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
12801
12802         * nnimap.el (nnimap-request-update-info-internal): Optimize.
12803         Don't `gnus-uncompress-range' to avoid excessive memory usage.
12804
12805 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12806
12807         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
12808         is loaded.
12809
12810         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
12811         loaded.
12812
12813 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
12814
12815         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
12816         to "Emacs 23 (unicode)" in doc string.
12817
12818         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
12819         "Emacs 23 (unicode)" in comment.
12820
12821 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12822
12823         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
12824
12825         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
12826         characters 160 through 255 in Emacs 23.
12827
12828 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
12829
12830         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
12831         gnus-article-browse-html-temp.
12832         (gnus-article-browse-delete-temp): Make it customizable.
12833         Add `file'.  Adjust doc string.
12834         (gnus-article-browse-delete-temp-files): Add argument.
12835         Allow query for each file.  Adjust doc string.
12836         (gnus-article-browse-html-parts):
12837         Add `gnus-article-browse-delete-temp-files' to
12838         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
12839
12840 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
12841
12842         * gnus-art.el (gnus-article-browse-html-temp)
12843         (gnus-article-browse-delete-temp): New variables.
12844         (gnus-article-browse-delete-temp-files): New function.
12845         (gnus-article-browse-html-parts): Use it.
12846
12847 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
12848
12849         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
12850
12851         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
12852         string.
12853
12854         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
12855         gnus-summary-insert-new-articles when unplugged.
12856         Remove gnus-summary-search-article-forward.
12857
12858         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
12859         display-visual-class instead of display-color-cells.
12860
12861 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12862
12863         * dgnushack.el: Autoload customize-group for XEmacs.
12864
12865         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
12866         message/* containing non-ASCII text properly.
12867
12868 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
12869
12870         * message.el: Require gmm-utils, remove autoloads.
12871         (message-tool-bar): Set default based on
12872         gmm-tool-bar-style.
12873         (message-tool-bar-gnome): Add gmm-customize-mode.
12874
12875         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
12876         gmm-tool-bar-style.
12877         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
12878
12879         * gnus-group.el (gnus-group-tool-bar): Set default based on
12880         gmm-tool-bar-style.
12881         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
12882
12883         * gmm-utils.el (gmm-image-directory): Rename variable from
12884         gmm-image-load-path.
12885         (gmm-image-load-path): Use gmm-image-directory.
12886         (gmm-customize-mode): New function.
12887         (gmm-tool-bar-style): New variable.
12888
12889         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
12890         gnus-group-redraw-line-number.
12891         (gnus-group-redraw-check): Simplify.
12892         (gnus-group-tool-bar-update): Remove redraw check.
12893         (gnus-group-make-tool-bar): Add redraw check.
12894
12895 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
12896
12897         * gnus-art.el (gnus-button): Add missing parentheses.
12898
12899 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12900
12901         * lpath.el: Fbind line-number-at-pos.
12902
12903 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12904
12905         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
12906
12907 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
12908
12909         * gnus-art.el (gnus-button): New face.
12910         (gnus-article-button-face): Use it.
12911
12912         * gnus-sum.el (gnus-summary-tool-bar-gnome):
12913         Add gnus-summary-next-page.  Re-order.
12914
12915         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
12916         next-node are now included.
12917         (gnus-group-redraw-line-number): New internal variable.
12918         (gnus-group-redraw-check): Helper function for updating the tool
12919         bar.
12920         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
12921
12922         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
12923
12924         * spam.el (spam-spamassassin-score-regexp): New internal variable.
12925         (spam-extra-header-to-number, spam-check-spamassassin-headers):
12926         Use it to match format of Spamassassin 3.0 and later.
12927         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
12928         (spam-check-bogofilter)
12929         (spam-bogofilter-register-with-bogofilter): Fix args of
12930         `gnus-error' calls.
12931
12932 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
12933
12934         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
12935         unnecessary interaction when sending queued mails.
12936         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
12937
12938 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
12939
12940         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
12941         first or last are nil.
12942
12943 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12944
12945         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
12946
12947 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12948
12949         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
12950
12951 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12952
12953         * dns.el (query-dns): Protect more against buggy tcp output.
12954
12955 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
12956
12957         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
12958         nov.php.
12959
12960 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
12961
12962         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
12963         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
12964         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
12965         output on the server side.
12966         (nnweb-google-create-mapping): Update regexps and add some
12967         progress indication.
12968
12969 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
12970
12971         * gnus-group.el (gnus-group-tool-bar-gnome):
12972         Fix gnus-agent-toggle-plugged.  Re-order icons.
12973         (gnus-group-tool-bar-gnome):
12974         Add gnus-group-{prev,next}-unread-group.
12975         (gnus-group-tool-bar-gnome): Re-order icons.
12976
12977         * gnus-sum.el (gnus-summary-tool-bar-gnome):
12978         Move gnus-summary-insert-new-articles.
12979
12980         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
12981         Fix comments.
12982
12983         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
12984         also available in Emacs 21.3.
12985
12986         * message.el (message-fix-before-sending): Change "Emacs 22" to
12987         "Emacs 23 (unicode)" in comment.
12988
12989         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
12990         "Emacs 23 (unicode)" in comment.
12991
12992         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
12993         comment.
12994         (mm-coding-system-p): Add comment about no-MULE XEmacs.
12995
12996         * mm-view.el (mm-fill-flowed): Add :version.
12997
12998 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12999
13000         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
13001         and load-path.
13002
13003 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
13004
13005         * message.el: Autoload gmm-image-load-path.
13006         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
13007         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
13008         consitency.
13009
13010         * gmm-utils.el (gmm-image-load-path): Also search in
13011         "../etc/images".  Don't set gmm-image-load-path if we don't find
13012         the image.
13013
13014 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13015
13016         * gmm-utils.el (gmm-image-load-path): Don't make
13017         `gmm-image-load-path' include subdirectories which the second arg
13018         `image' might specify.
13019
13020         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
13021         subdirectory to icon file names.
13022
13023         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
13024
13025 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
13026
13027         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
13028         gmm-image-load-path calls.
13029
13030         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
13031
13032         * message.el (message-make-tool-bar): Ditto.
13033
13034         * mml.el (mml-preview): Add comment concerning tool bar icons.
13035
13036         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
13037         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
13038
13039         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
13040         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
13041
13042         * message.el (message-tool-bar-gnome): Use new icon names.
13043         (message-make-tool-bar): Use `gmm-image-load-path'.
13044
13045         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
13046         New functions from MH-E.
13047         (gmm-image-load-path): New variable from MH-E.
13048         (gmm-image-load-path): New function from MH-E.  Add arguments
13049         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
13050         *-image-load-path-called-flag.
13051
13052 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
13053
13054         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
13055
13056 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
13057
13058         * nnimap.el (nnimap-request-move-article): Change folder back to
13059         source group before deleting.
13060
13061 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
13062
13063         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
13064
13065         * gnus-art.el (mm-url-insert-file-contents-external):
13066         Autoload mm-url.
13067
13068         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
13069
13070 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13071
13072         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
13073         coding system which mm-charset-to-coding-system returns for a
13074         given charset is valid.
13075
13076 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
13077
13078         * html2text.el (html2text-remove-tag-list):
13079         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
13080
13081 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
13082
13083         * gnus-cus.el: Revert 2005-10-17 change.
13084
13085 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13086
13087         * gnus-art.el (article-strip-banner):
13088         Call article-really-strip-banner only when the regexp match is made.
13089
13090 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13091
13092         * gnus-art.el (article-strip-banner):
13093         Use gnus-extract-address-components instead of
13094         mail-header-parse-addresses to make it work with non-ASCII text;
13095         remove mail-encode-encoded-word-string.
13096
13097         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
13098         values which are surrounded with \"...\"; make it never cause a
13099         Lisp error; give up parsing of parameters if it failed in
13100         extracting type.
13101
13102 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
13103
13104         * smime.el (smime-cert-by-ldap-1): Fix bug where
13105         `smime-ldap-search' returns results without userCertificates.
13106
13107 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13108
13109         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
13110
13111 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
13112
13113         * spam.el (spam-check-spamassassin-headers): Adapt format for
13114         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
13115         <ari@mbf.ocn.ne.jp>.
13116         (spam-list-of-processors): Add spam-use-gmane.
13117
13118 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13119
13120         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
13121         make-temp-file; make it work with XEmacs as well.
13122
13123         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
13124         mm-make-temp-file.
13125
13126         * mm-decode.el (mm-display-external): Use the 3rd arg of
13127         mm-make-temp-file.
13128         (mm-create-image-xemacs): Ditto.
13129
13130 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13131
13132         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
13133         with message-narrow-to-headers.
13134         (gnus-draft-setup): Narrow to header to run message-fetch-field.
13135         (gnus-draft-check-draft-articles): New function.
13136         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
13137
13138 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
13139
13140         * gnus-art.el (gnus-article-browse-html-parts):
13141         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
13142         Don't use suffix argument for mm-make-temp-file for Emacs 21
13143         compatibility.  Remove useless `format'.
13144
13145 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
13146
13147         * nnweb.el (nnweb-google-wash-article): Update regexps.
13148         (nnweb-group-alist): Use defvoo instead of defvar.
13149
13150 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13151
13152         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
13153         re-loading nn* modules.
13154
13155 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
13156
13157         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
13158         for `tool-bar-mode' and don't check it's default-value.
13159
13160         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
13161
13162         * message.el (message-make-tool-bar): Ditto.
13163
13164         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
13165         `substring'.  Shorten tmp-file name.
13166
13167         * gnus.el: Remove bogus comment.
13168
13169 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
13170
13171         * gnus-art.el (gnus-article-browse-html-parts): New function.
13172         (gnus-article-browse-html-article): New function for viewing html
13173         articles with a browser.
13174
13175 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
13176
13177         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
13178         in elisp.
13179         (pgg-gpg-encrypt-symmetric-region): Ditto.
13180         (pgg-gpg-sign-region): Ditto.
13181
13182         * pgg-def.el (pgg-text-mode): New variable.
13183
13184         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
13185         (mml2015-pgg-encrypt): Ditto.
13186
13187         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
13188         (mml1991-pgg-encrypt): Ditto.
13189
13190 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13191
13192         * nnfolder.el (nnfolder-insert-newsgroup-line):
13193         Use message-make-date instead of current-time-string.
13194
13195         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
13196         to gnus-decoded which mm-uu might set.
13197
13198 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13199
13200         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
13201         don't decode quoted parameters; remove misimported Emacs code.
13202         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
13203         (rfc2231-decode-encoded-string): Don't use split-string which
13204         behaves differently according to Emacs version; use
13205         mm-decode-coding-region to convert charset to coding-system.
13206         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
13207         (rfc2231-encode-string): Remove misimported Emacs code.
13208
13209 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13210
13211         * gnus-art.el (article-decode-charset): Don't use ignore-errors
13212         when calling mail-header-parse-content-type.
13213         (article-de-quoted-unreadable): Ditto.
13214         (article-de-base64-unreadable): Ditto.
13215         (article-wash-html): Ditto.
13216
13217         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
13218         calling mail-header-parse-content-type and
13219         mail-header-parse-content-disposition.
13220         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
13221         mail-header-parse-content-type.
13222
13223         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
13224         insert charset and format parameters; encode description after
13225         inserting it to buffer.
13226         (mml-insert-parameter): Fold lines properly even if a parameter is
13227         segmented into two or more lines; change the max column to 76.
13228
13229         * rfc1843.el (rfc1843-decode-article-body): Don't use
13230         ignore-errors when calling mail-header-parse-content-type.
13231
13232         * rfc2231.el (rfc2231-parse-string): Return at least type if
13233         possible; don't cause an error even if it fails in parsing of
13234         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
13235         (rfc2231-encode-string): Don't break lines at the beginning, leave
13236         it to mml-insert-parameter.
13237
13238         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
13239         calling mail-header-parse-content-type.
13240
13241 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
13242
13243         * spam-report.el (spam-report-gmane-use-article-number):
13244         Improve doc string.
13245         (spam-report-gmane-internal): Check if a suitable header was found
13246         in the article.
13247
13248 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
13249
13250         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
13251         (rfc2231-encode-string): Make param*=value always begin with LWSP.
13252
13253 2006-02-05  Romain Francoise  <romain@orebokech.com>
13254
13255         Update copyright notices of all files in the gnus directory.
13256
13257 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
13258
13259         * nnweb.el (nnweb-request-group): Avoid growing overview files.
13260
13261 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13262
13263         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
13264         segmented lines of parameter value to cope with Thunderbird 1.5
13265         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
13266         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
13267         (rfc2231-encode-string): Don't make lines exceeding 76 column.
13268
13269 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
13270
13271         * mml.el (mml-generate-mime-1): Correct the order of inline signed
13272         parts.
13273
13274 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
13275
13276         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
13277         there's only one active file for all servers.
13278         (nnweb-request-scan): Make sure nnweb-articles is initialized on
13279         solid groups.  Gnus might have used a FAST request to select the group.
13280         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
13281         and nnweb-search redundantly in the active file.
13282         (nnweb-request-list): Don't list bogus groups.  There can only be one.
13283         (nnweb-request-create-group): Don't use ARGS.
13284         (nnweb-possibly-change-server, nnweb-request-group): Remove some
13285         initialisations.  Let nnoo do the work.
13286
13287 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13288
13289         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
13290         Say the part has been decoded.
13291
13292         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
13293
13294 2006-01-31  Kevin Ryde  <user42@zip.com.au>
13295
13296         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
13297         mailcap-viewer-test-cache when there's no 'test clause, since that
13298         will invert the meaning of a "nil" test previously determined by
13299         mailcap-mailcap-entry-passes-test.
13300
13301 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13302
13303         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
13304         compiling.
13305
13306         * gnus-sum.el: Ditto.
13307
13308         * message.el: Don't bind tool-bar-map when compiling.
13309
13310 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
13311
13312         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
13313
13314 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
13315
13316         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
13317         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
13318         current Google Groups.
13319
13320 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
13321
13322         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
13323         and tool-bar-mode.
13324
13325         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
13326         and tool-bar-mode.
13327
13328         * message.el (message-tool-bar-update): Simplify.
13329         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
13330
13331         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
13332         gnus-summary-buffer.
13333         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
13334         gnus-summary-reply.
13335
13336         * gmm-utils.el (gmm): Add :version.
13337
13338 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13339
13340         * Makefile.in (clean): New rule.
13341         (distclean): Use it.
13342
13343 2006-01-26  Steve Youngs  <steve@sxemacs.org>
13344
13345         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
13346         Don't autoload.
13347
13348 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13349
13350         * gmm-utils.el (gmm-verbose): Add :group.
13351
13352 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
13353
13354         * message.el: Change some comments WRT tool-bars.
13355
13356         * gnus-sum.el (gnus-summary-tool-bar)
13357         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
13358         (gnus-summary-tool-bar-zap-list): New variables.
13359         (gnus-summary-make-tool-bar): Complete rewrite using
13360         `gmm-tool-bar-from-list'.
13361
13362         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
13363         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
13364         New variables.
13365         (gnus-group-make-tool-bar): Complete rewrite using
13366         `gmm-tool-bar-from-list'.
13367         (gnus-group-tool-bar-update): New function.
13368
13369         * message.el (message-mode-field-menu): Add "Show hidden Headers".
13370
13371 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13372
13373         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
13374         is dissected into a single part of which the type is the same as
13375         the given one; decode charset.
13376
13377 2006-01-21  Kevin Ryde  <user42@zip.com.au>
13378
13379         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
13380         into alists as symbol not string, since that's what
13381         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
13382         look for.
13383
13384 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
13385
13386         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
13387         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
13388
13389         * message.el (message-tool-bar-gnome): Use gmm-ignore.
13390
13391 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13392
13393         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
13394         (gnus-xmas-mime-security-button-menu): New function.
13395
13396         * gnus-art.el (gnus-mime-security-button-commands): New variable.
13397         (gnus-mime-security-button-menu): New definition.
13398         (gnus-mime-security-button-map): Use them.
13399         (gnus-mime-security-button-menu): New function.
13400         (gnus-insert-mime-security-button): Addition to help echo.
13401         (gnus-mime-security-run-function, gnus-mime-security-save-part)
13402         (gnus-mime-security-pipe-part): New functions.
13403
13404         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
13405         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
13406
13407         * mm-decode.el (mm-handle-set-disposition): Remove.
13408         (mm-handle-set-description): Remove.
13409
13410 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13411
13412         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
13413         (mm-w3m-standalone-supports-m17n-p): New function.
13414         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
13415         w3m usage.
13416
13417         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
13418         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
13419
13420 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
13421
13422         * message.el (message-tool-bar-zap-list):
13423         Use gmm-tool-bar-zap-list as custom type.
13424         (message-tool-bar-update): New function.
13425         (message-tool-bar, message-tool-bar-gnome)
13426         (message-tool-bar-retro): Add message-tool-bar-update.
13427         (message-tool-bar-gnome): Add flyspell-buffer.
13428
13429         * gnus-util.el (gnus-error): Describe `args'.
13430
13431         * gmm-utils.el (gmm-error): Describe `args'.
13432         (gmm-tool-bar-zap-list): New widget.
13433         (gmm-tool-bar-from-list): Improve description of `zap-list'.
13434
13435 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13436
13437         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
13438         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
13439         the number of recursive calls.
13440
13441         * mm-decode.el (mm-handle-set-disposition): New macro.
13442         (mm-handle-set-description): New macro.
13443
13444 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13445
13446         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
13447         encoding.
13448
13449 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
13450
13451         * message.el (message-tool-bar-zap-list, message-tool-bar)
13452         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
13453         (message-tool-bar-local-item-from-menu): Remove.
13454         (message-tool-bar-map): Replace by `message-make-tool-bar'.
13455         (message-make-tool-bar): New function.
13456         (message-mode): Use `message-make-tool-bar'.
13457
13458         * gmm-utils.el: New file.
13459         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
13460         (gmm-lazy): New widget copied from `nnmail.el'.
13461         (gmm-tool-bar-from-list): New function for creating customizable
13462         tool bars.
13463         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
13464         output.
13465         (gmm): Add :prefix to defgroup.
13466
13467 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
13468
13469         * gmm-utils.el (gmm-widget-p): New function.
13470
13471 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
13472
13473         * mml.el (mml-attach-file): Describe `description' in doc string.
13474         (mml-menu): Add Emacs MIME manual and PGG manual.
13475
13476 2006-01-20  Richard M. Stallman  <rms@gnu.org>
13477
13478         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
13479
13480 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
13481
13482         * nntp.el (nntp-end-of-line): Doc fix.
13483
13484 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
13485
13486         * imap.el (imap-open): Handle case where buffer is a buffer
13487         object.
13488
13489 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13490
13491         * gnus-delay.el (gnus-delay): Don't autoload.
13492         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
13493         to be re-loaded when customizing the `gnus-delay' group.
13494
13495 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
13496
13497         * message.el (message-insert-citation-line): Use newlines.
13498
13499 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
13500
13501         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
13502         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
13503         these routines, so the passphrase can be managed externally and
13504         passed in to the system.
13505         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
13506         pgg-add-passphrase-to-cache function.
13507
13508         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
13509         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
13510         these routines, so the passphrase can be managed externally and
13511         passed in to the system.
13512         (pgg-pgp5-sign-region): Use new name of
13513         pgg-add-passphrase-to-cache function.
13514
13515 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
13516
13517         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
13518         part of the decoded armor to find the key-identifier.
13519         (pgg-gpg-lookup-key-owner): New function to return the
13520         human-readable identifier of a key owner.
13521         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
13522         itself.
13523         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
13524         the key value) if we have a key and can match it against a secret
13525         key.  Also, added a note pointing out fact that the prompt only
13526         indicates the first matching key.
13527
13528         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
13529         pgg-decrypt-region.
13530         (pgg-add-passphrase-to-cache): Rename from
13531         `pgg-add-passphrase-cache' to reduce confusion (all callers
13532         changed).
13533         (pgg-remove-passphrase-from-cache): Rename from
13534         `pgg-remove-passphrase-cache' to reduce confusion (all callers
13535         changed).
13536         (pgg-read-passphrase, pgg-add-passphrase-cache)
13537         (pgg-remove-passphrase-cache): Add informative docstrings.
13538         (pgg-decrypt): Convey provided passphrase in subordinate call to
13539         pgg-decrypt-region.
13540
13541 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
13542
13543         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
13544         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
13545         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
13546         'passphrase' argument, so the passphrase can be managed externally
13547         and then passed in to the system.
13548
13549         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
13550         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
13551         so the passphrase cache can be used reliably with identifiers
13552         besides a pgp packet's key id.
13553
13554         * pgg-gpg.el (pgg-gpg-encrypt-region)
13555         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
13556         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
13557         these routines, so the passphrase can be managed externally and
13558         passed in to the system.
13559
13560         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
13561         'notruncate' argument, so the passphrase cache can be used
13562         reliably with identifiers besides a pgp packet's key id.
13563
13564 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
13565
13566         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
13567         symmetric encryption.
13568         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
13569         encrypted session key.
13570         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
13571         message ask for the passphrase in a proper way.
13572
13573         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
13574         New user commands for symmetric encryption.
13575
13576 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
13577
13578         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
13579
13580         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
13581
13582 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
13583
13584         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
13585
13586 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13587
13588         * mm-decode.el (mm-inlined-types): Add application/pgp.
13589         (mm-automatic-display): Ditto.
13590
13591         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
13592         part as text.
13593
13594 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13595
13596         * nnrss.el: Update copyright.
13597         (nnrss-opml-import): Query whether to subscribe to each entry.
13598
13599         * gnus-art.el:
13600         * gnus-sum.el:
13601         * gnus-xmas.el:
13602         * messagexmas.el:
13603         * mm-uu.el:
13604         * mm-view.el: Update copyright.
13605
13606 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
13607
13608         * message.el (message-info): New function.
13609         (message-mode-menu): Add it.
13610         Update copyright.
13611
13612         * ChangeLog: Fix and update copyright.
13613
13614 2006-01-13  Romain Francoise  <romain@orebokech.com>
13615
13616         * message.el (message-forward-subject-name-subject): Prefer the
13617         address to 'nowhere' if the sender has no name.
13618         Fix typo.  Update copyright year.
13619
13620 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13621
13622         * gnus-art.el (article-wash-html):
13623         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
13624         (gnus-article-wash-html-with-w3m-standalone): New function.
13625
13626         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
13627         mm-inline-text-html-render-with-w3m-standalone.
13628         (mm-text-html-washer-alist): Map w3m-standalone to
13629         gnus-article-wash-html-with-w3m-standalone.
13630         (mm-inline-text-html-render-with-w3m-standalone): New function.
13631
13632 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
13633
13634         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
13635         Improve LaTeX.
13636
13637 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13638
13639         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
13640         (nnrss-request-article): Render text/plain parts as HTML.
13641
13642         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
13643         the buffer.
13644
13645 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
13646
13647         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
13648         custom definition of `gnus-posting-styles'.
13649
13650         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
13651         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
13652
13653 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
13654
13655         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
13656         Use nntp for bug archive.
13657
13658 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13659
13660         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
13661         parts.
13662         (nnrss-normalize-date): New function converts ISO 8601 date into
13663         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
13664         (nnrss-check-group): Use it.
13665
13666 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13667
13668         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
13669
13670         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
13671         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
13672         (nnrss-insert-w3): Ditto.
13673
13674 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13675
13676         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
13677         the articles to be forwarded including the case where neither a
13678         number of articles nor a region is specified.
13679
13680 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13681
13682         * nnrss.el (nnrss-request-article): Fix last change; fill
13683         text/plain parts.
13684
13685 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13686
13687         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
13688         in text/plain part.
13689         (nnrss-check-group): Don't add excessive newline to dc:subject.
13690
13691 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
13692
13693         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
13694         article.
13695
13696 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
13697
13698         * nnml.el: Don't require gnus-bcklg.  Autoload it.
13699         (nnml-use-compressed-files, nnml-save-mail): Support other
13700         comression programs such as bzip2.
13701
13702 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13703
13704         * dns.el (query-dns): Make sure we check the buffer size before
13705         removing tcp headers.
13706
13707 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13708
13709         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
13710         remove MIME buttons associated with multipart/alternative parts.
13711         (gnus-mime-display-alternative): Tag buttons using `article-type'
13712         text property.
13713
13714         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
13715         associated with multipart/alternative parts.
13716
13717         * gnus-art.el (gnus-signature-separator): Fix custom type.
13718
13719         * mm-decode.el (mm-inlined-types): Fix custom type.
13720         (mm-keep-viewer-alive-types): Ditto.
13721         (mm-automatic-display): Ditto.
13722         (mm-attachment-override-types): Ditto.
13723         (mm-inline-override-types): Ditto.
13724         (mm-automatic-external-display): Ditto.
13725
13726 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
13727
13728         * spam-report.el (spam-report-user-mail-address)
13729         (spam-report-user-agent): New variables.
13730         (spam-report-url-ping-plain): Use spam-report-user-agent.
13731
13732 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
13733
13734         * gnus-art.el (gnus-button-handle-custom): Do not just use
13735         `customize-apropos' for any "M-x customize-*" button but the
13736         function called for.  Accept both the function name and its
13737         argument in order to achieve this.
13738         (gnus-button-alist): Remove support for "custom:" URL's.
13739         Pass function name to `gnus-button-handle-custom' in case of "M-x
13740         customize-*" buttons.
13741
13742 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13743
13744         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
13745         multipart/alternative and add xref to mm-discouraged-alternatives
13746         in doc string.
13747
13748         * mm-decode.el (mm-discouraged-alternatives): Add xref to
13749         gnus-buttonized-mime-types in doc string.
13750
13751 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
13752
13753         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
13754         Suggest image/.* in the doc string.
13755
13756 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
13757
13758         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
13759         message-marks (Debian bug #342521).
13760
13761 2005-12-12  Simon Josefsson  <jas@extundo.com>
13762
13763         * password.el (password-read-from-cache): Add.
13764         (password-read): Use it.
13765
13766 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13767
13768         * rfc2047.el (rfc2047-charset-to-coding-system):
13769         Recognize us-ascii as a MIME charset.
13770
13771         * mm-bodies.el (mm-decode-content-transfer-encoding):
13772         Protect against the case where the 2nd arg TYPE is nil.
13773
13774 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
13775
13776         * pop3.el (pop3-stream-type): Fix custom version.
13777
13778         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
13779
13780 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
13781
13782         * mm-decode.el (mm-display-external): Add missing cdr.
13783
13784 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13785
13786         * mm-decode.el (mm-display-external): Use nametemplate (defined in
13787         RFC1524) if it is in mailcap or add a suffix according to
13788         mailcap-mime-extensions when generating a temp filename; postpone
13789         deleting a temp file for 2 seconds for some wrappers, shell
13790         scripts, and so on, which might exit right after having started a
13791         viewer command as a background job.
13792
13793 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
13794
13795         * nntp.el (nntp-marks-directory): Fix custom group.
13796
13797         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
13798         steps when < 10.
13799
13800         * gnus-start.el (gnus-no-server-1):
13801         Mention `gnus-level-default-subscribed' in doc string.
13802
13803 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
13804
13805         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
13806         parens.
13807
13808 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13809
13810         * gnus-xmas.el (gnus-use-toolbar): Revert.
13811         (gnus-xmas-setup-toolbar): Use global default-toolbar if
13812         gnus-use-toolbar is default.
13813
13814         * messagexmas.el (message-use-toolbar): Revert.
13815         (message-setup-toolbar): Use global default-toolbar if
13816         message-use-toolbar is default.
13817
13818 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13819
13820         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
13821         according to default-toolbar-visible-p.
13822
13823         * messagexmas.el (message-use-toolbar): Ditto.
13824
13825 2005-11-26  Dave Love  <fx@gnu.org>
13826
13827         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
13828         (tls-program, tls-success): Provide openssl alternative.
13829
13830         * starttls.el: Doc fixes.
13831         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
13832         SERVICE to PORT.
13833
13834         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
13835         port null or service name.
13836         (starttls-negotiate): Autoload.
13837
13838 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13839
13840         * message.el (message-kill-to-signature): Fix interactive spec.
13841
13842 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13843
13844         * pop3.el (pop3-open-server): Recognize a string as a service name.
13845
13846 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
13847
13848         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
13849
13850 2005-11-23  Dave Love  <fx@gnu.org>
13851
13852         Add pop3s, pop3/starttls.
13853
13854         * pop3.el (pop3-authentication-scheme): Clarify doc.
13855         (open-tls-stream, starttls-open-stream): Autoload.
13856         (pop3-stream-type): New.
13857         (pop3-open-server): Use it.
13858
13859         * mail-source.el (mail-sources): Fix some :types.  Add stream type
13860         for POP.
13861         (mail-source-keyword-map): Add :stream for POP.
13862         (mail-source-fetch-pop): Use pop3-stream-type.
13863
13864 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13865
13866         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
13867         of current-time-string.
13868
13869 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
13870
13871         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
13872         date header.
13873
13874 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
13875
13876         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
13877         it can seriously impact performance as it bypasses the agent's
13878         local caches.
13879
13880 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
13881
13882         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
13883         must be explicitly online rather than "not explicitly offline" for
13884         its flags to be synchronized.
13885
13886         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
13887         that gnus-uu-unmark-thread will function correctly.
13888
13889         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
13890         1024K is instead displayed as 1M.
13891
13892 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13893
13894         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
13895
13896 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
13897
13898         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
13899
13900 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
13901
13902         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
13903         error message to display actual error condition.
13904         (gnus-agent-save-local): Avoid saving symbols that are bound to
13905         nil as they simply result in a warning message in
13906         gnus-agent-read-local.
13907
13908 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13909
13910         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
13911         rather than make-variable-buffer-local for file-precious-flag.
13912
13913 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
13914
13915         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
13916         for duplicates which are removed.  The invalid sort check then
13917         triggers a rescan after the sort as sorting may have moved
13918         duplicate entries such that they can be cheaply detected.
13919
13920 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13921
13922         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
13923
13924 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
13925
13926         * gnus-agent.el (gnus-agent-article-alist-save-format):
13927         Change internal variable to a custom variable.  Change default value
13928         from compressed(2) to uncompressed(1).
13929         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
13930         support for uncompressed agentview files.  Taken together, reading
13931         the agentview file should now be 6-7 times faster.
13932
13933 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
13934
13935         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
13936         as a buffer-local variable.  This avoids creating truncated
13937         dribble files as a result of a hang up, eg.
13938
13939 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
13940
13941         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
13942         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
13943         XEmacs.
13944
13945 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
13946
13947         * gnus-start.el (gnus-start-draft-setup):
13948         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
13949
13950         * gnus.el (gnus-splash): Change custom group.
13951         (gnus-group-get-parameter, gnus-group-parameter-value):
13952         Describe allow-list argument.
13953
13954         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
13955         string.
13956
13957 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
13958
13959         * gnus-art.el (gnus-default-article-saver): Add user-defined
13960         `function' to custom type.
13961
13962 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
13963
13964         * imap.el (imap-open): Handle case where buffer is a buffer
13965         object.
13966
13967 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
13968
13969         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
13970         long lines.
13971         (gnus-cache-delete-group): Wrap doc strings.
13972
13973         * gnus-agent.el (gnus-agent-rename-group)
13974         (gnus-agent-delete-group): Wrap doc strings.
13975
13976 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13977
13978         * messagexmas.el (message-use-toolbar): Change the valid values
13979         into default, top, bottom, left, and right.
13980         (message-toolbar-thickness): New variable.
13981         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
13982         well.
13983         (message-setup-toolbar): Make it work.
13984
13985         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
13986         (gnus-use-toolbar): Change the valid values into default, top,
13987         bottom, left, and right.
13988         (gnus-toolbar-thickness): New variable.
13989         (gnus-xmas-setup-toolbar): New function.
13990         (gnus-xmas-setup-group-toolbar): Use it.
13991         (gnus-xmas-setup-summary-toolbar): Use it.
13992
13993 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13994
13995         * gnus-start.el (gnus-1): Add "native" to
13996         gnus-predefined-server-alist.
13997
13998         * gnus.el (gnus-method-to-server): Don't add "native" to the
13999         lists here, because that leads to problems when
14000         gnus-select-method is bound.
14001
14002 2005-11-09  Simon Josefsson  <jas@extundo.com>
14003
14004         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
14005         use (not sort-by-date) instead.
14006
14007 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14008
14009         * gnus-delay.el (gnus-delay-group): Don't autoload.
14010         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
14011         to be re-loaded when customizing the `gnus-delay' group.
14012
14013 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
14014
14015         * message.el: Revert last changes.
14016         (message-insert-citation-line): Use newlines.
14017
14018 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
14019
14020         * message.el (message-courtesy-message)
14021         (message-mark-insert-begin, message-mark-insert-end)
14022         (message-elide-ellipsis, message-cancel-message)
14023         (message-add-header, message-change-subject)
14024         (message-cross-post-followup-to-header)
14025         (message-cross-post-insert-note, message-reduce-to-to-cc)
14026         (message-widen-reply, message-delete-not-region)
14027         (message-kill-to-signature, message-insert-signature)
14028         (message-insert-importance-high, message-insert-importance-low)
14029         (message-insert-or-toggle-importance)
14030         (message-insert-disposition-notification-to)
14031         (message-indent-citation, message-yank-original)
14032         (message-cite-original-without-signature, message-cite-original)
14033         (message-insert-citation-line, message-position-on-field)
14034         (message-fix-before-sending, message-send-mail-partially)
14035         (message-send-mail, message-send-mail-with-sendmail)
14036         (message-send-mail-with-qmail, message-send-news)
14037         (message-check-news-header-syntax, message-generate-headers)
14038         (message-insert-courtesy-copy, message-fill-address)
14039         (message-fill-header, message-shorten-references)
14040         (message-setup-1, message-cancel-news)
14041         (message-forward-make-body-plain, message-forward-make-body-mime)
14042         (message-forward-make-body-mml, message-encode-message-body)
14043         (message-forward-make-body-digest-plain)
14044         (message-forward-make-body-digest-mime)
14045         (message-use-alternative-email-as-from): Insert `hard-newline'
14046         instead of ordinary newlines.
14047
14048 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14049
14050         * message.el (message-generate-headers): Downcase the argument
14051         given to message-check-element.
14052
14053 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
14054
14055         * nntp.el (nntp-authinfo-rejected): New error condition.
14056         (nntp-wait-for): Use new error condition to signal authentication
14057         error.
14058         (nntp-retrieve-data): Rethrow new error condition to break out of
14059         recursive call to nntp-send-authinfo.
14060
14061 2005-11-08  Romain Francoise  <romain@orebokech.com>
14062
14063         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
14064         (gnus-summary-exit-map): Bind to `Z p'.
14065         (gnus-summary-make-menu-bar): Add menu item.
14066
14067 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
14068
14069         * gnus-art.el (gnus-article-treat-custom): Add `first'.
14070         (gnus-treat-*): Add `first' in all doc strings.
14071
14072         * gnus-group.el (gnus-group-compact-group): Fix typo.
14073
14074 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14075
14076         * gnus.el (gnus-parameters-case-fold-search): New variable.
14077         (gnus-parameters-get-parameter): Use it.
14078
14079         * gnus-score.el (gnus-home-score-file): Doc fix.
14080
14081 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
14082
14083         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
14084
14085 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
14086
14087         * mm-util.el (mm-special-display-p): New function.
14088
14089         * mml.el (mml-preview): Use it; doc fix.
14090
14091 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
14092
14093         * imap.el (imap-open): Handle case where buffer is a buffer object.
14094
14095 2005-10-29  Romain Francoise  <romain@orebokech.com>
14096
14097         * message.el (message-fix-before-sending): Fix comment.
14098
14099 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
14100
14101         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
14102
14103 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
14104
14105         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
14106         Used in gnus-score.el.
14107
14108 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
14109
14110         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
14111
14112 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
14113
14114         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
14115         whitespace removed in revision 7.8.  Use concatenated string to
14116         protect trailing whitespace.
14117
14118 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
14119
14120         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
14121         (nnimap-request-expire-articles): Use it to avoid sending 'UID
14122         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
14123         Courier IMAP ("some version from 2004").  Mostly based on similar
14124         code in the same function.
14125
14126 2005-10-26  Didier Verna  <didier@xemacs.org>
14127
14128         * gnus-group.el (gnus-group-compact-group): Invalidate original
14129         article buffer.
14130         * gnus-srvr.el (gnus-server-compact-server): Ditto.
14131         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
14132         NOV database and in article itself.
14133         Invalidate article backlog.
14134
14135 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
14136
14137         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
14138
14139 2005-10-26  Simon Josefsson  <jas@extundo.com>
14140
14141         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
14142         part of 2004-07-25 change.
14143
14144 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14145
14146         * message.el (message-display-completion-list): New function.
14147         (message-expand-group): Use it; make sure the Completions buffer
14148         is modifiable.
14149 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
14150
14151         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
14152         user-mail-name is an empty string.
14153
14154 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
14155
14156         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
14157         depending on gnus-score-decay-constant.
14158
14159         * encrypt.el (encrypt-insert-file-contents)
14160         (encrypt-write-file-contents): Don't use `gnus-message'.
14161
14162         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
14163         arguments.
14164         (mm-uu-type-alist): Add message-marks and insert-marks.
14165         Pass arguments to mm-uu-verbatim-marks-extract.
14166         (mm-uu-hide-markers): New variable.
14167         (mm-uu-extract): Use face similar to `gnus-cite-3'.
14168
14169         * gnus-fun.el (gnus-convert-image-to-x-face-command)
14170         (gnus-convert-image-to-face-command): Use "convert" by default to
14171         allow other input image formats.
14172         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
14173         accordingly.
14174
14175 2005-10-23  Simon Josefsson  <jas@extundo.com>
14176
14177         * imap.el (imap-gssapi-program): Align command line parameters
14178         with latest GNU SASL.
14179         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
14180
14181 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14182
14183         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
14184         HTML.
14185         (nnslashdot-request-article): Ditto.
14186
14187         * lpath.el (featurep): Add nobreak-char-display.
14188
14189 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
14190
14191         * mail-source.el (mail-source-fetch-pop): Require pop3.
14192         (mail-source-check-pop): Ditto.
14193
14194 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14195
14196         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
14197         errors.
14198
14199 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
14200
14201         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
14202         (gnus-treat-strip-leading-blank-lines): Improve doc string.
14203
14204         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
14205
14206         * mm-bodies.el (mm-decode-string):
14207         Call `mm-charset-to-coding-system' with allow-override argument.
14208
14209 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14210
14211         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
14212         (rfc2047-charset-to-coding-system): New function.
14213         (rfc2047-decode-encoded-words): New function.
14214         (rfc2047-decode-region): Use them.
14215         (rfc2047-decode-cte): Remove.
14216         (rfc2047-parse-and-decode): Remove.
14217         (rfc2047-decode): Remove.
14218
14219 2005-10-15  Kenichi Handa  <handa@m17n.org>
14220
14221         * rfc2047.el (rfc2047-decode-cte): New function.
14222         (rfc2047-decode-region): Change the way to decode successive
14223         encoded-words: decode B- or Q-encoding in each encoded-word,
14224         concatenate them, and decode it as charset.
14225
14226 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14227
14228         * lpath.el: Fbind codepage-setup for XEmacs.
14229
14230 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
14231
14232         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
14233         widget-move-and-invoke.
14234         (gnus-custom-mode): Use gnus-custom-map.
14235
14236 2005-10-15  Bill Wohler  <wohler@newt.com>
14237
14238         * message.el (message-tool-bar-map): Rename image file from
14239         mail_send to mail/send.
14240
14241 2005-10-16  Masatake YAMATO  <jet@gyve.org>
14242
14243         * message.el (message-expand-group): Pass the common
14244         prefix substring of completion to `display-completion-list'.
14245
14246 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
14247
14248         * mml-sec.el (mml-secure-method): New internal variable.
14249         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
14250         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
14251         New functions using mml-secure-method.
14252
14253         * mml.el (mml-mode-map): Add key bindings for those functions.
14254         (mml-menu): Simplify security menu entries.  Suggested by Jesper
14255         Harder <harder@myrealbox.com>.
14256         (mml-attach-file, mml-attach-buffer, mml-attach-external):
14257         Goto end of message if point is the headers of the message.
14258
14259         * message.el (message-in-body-p): New function.
14260
14261         * assistant.el: Autoload gnus-util and netrc.
14262
14263         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
14264         Use `mm-charset-override-alist' only when decoding.
14265
14266         * mm-bodies.el (mm-decode-body):
14267         Call `mm-charset-to-coding-system' with allow-override argument.
14268
14269         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
14270         `filename' from Content-Disposition if Content-Type doesn't
14271         provide `name'.
14272         (gnus-mime-view-part-as-type): Set default instead of
14273         initial-input.
14274
14275 2005-10-09  Daniel Brockman  <daniel@brockman.se>
14276
14277         * format-spec.el (format-spec): Propagate text properties of % spec.
14278
14279 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
14280
14281         * gnus-art.el (gnus-treat-predicate): Add `first'.
14282
14283 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
14284
14285         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
14286         (mm-charset-override-alist): New variable.
14287         (mm-charset-to-coding-system): Use it.
14288         (mm-codepage-setup): New helper function.
14289         (mm-charset-eval-alist): New variable.
14290         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
14291         Warn about unknown charsets.
14292
14293         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
14294
14295 2005-10-04  David Hansen  <david.hansen@gmx.net>
14296
14297         * nnrss.el (nnrss-request-article): Add support for the comments tag.
14298         (nnrss-check-group): Ditto.
14299
14300 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
14301
14302         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
14303         Rename x-gnus-verbatim to x-verbatim.
14304         (mm-uu-type-alist): Fix regexp for verbatim-marks.
14305
14306         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
14307         x-verbatim.
14308
14309         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
14310
14311         * gnus-util.el (gnus-remove-duplicates): Remove.
14312
14313         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
14314         instead of gnus-remove-duplicates.
14315
14316         * message.el (message-remove-duplicates): Remove.
14317         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
14318         message-remove-duplicates.
14319
14320         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
14321         available, else use implementation from `delete-dups'.
14322
14323         * message.el (message-insert-expires): New function.
14324         (message-mode-map): Add key binding.
14325         (message-mode-field-menu): Add menu entry.
14326         (message-mode): Document it.
14327         (message-make-expires-date): Use `message-make-date'.
14328
14329 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
14330
14331         * message.el (message-make-expires-date): New function.
14332
14333 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14334
14335         * Makefile.in (list-installed-shadows): New entry.
14336         (install): Use it.
14337         (remove-installed-shadows): New entry.
14338
14339         * dgnushack.el (dgnushack-default-load-path): New variable.
14340         (dgnushack-find-lisp-shadows): New function.
14341         (dgnushack-remove-lisp-shadows): New function.
14342
14343 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14344
14345         * Makefile.in (install-el-elc): New entry.
14346         (install): Use it so that .el files are necessarily installed.
14347
14348 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14349
14350         * time-date.el: Autoload parse-time-string, XEmacs needs it.
14351
14352 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14353
14354         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
14355         function rather than the diff-mode.el package.
14356         (mm-display-external): Use with-current-buffer.
14357         (mm-viewer-completion-map, mm-viewer-completion-map):
14358         Move initialization inside declaration.
14359
14360 2005-09-29  Simon Josefsson  <jas@extundo.com>
14361
14362         * spam.el: Load hashcash when compiling, to avoid warnings.
14363         Don't autoload mail-check-payment.
14364         (spam-check-hashcash): Define unconditionally, since hashcash.el
14365         is part of Gnus now.  Ignore errors from payment checking.
14366
14367 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
14368
14369         * message.el (message-bold-region, message-unbold-region):
14370         Rename from `bold-region' and `unbold-region'.
14371
14372         * message.el: Remove useless autoloads.
14373
14374 2005-09-28  Simon Josefsson  <jas@extundo.com>
14375
14376         * message.el (message-use-idna): Default to t.
14377         (message-use-idna): Test whether encoding works too.  Doc fix.
14378
14379 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14380
14381         * nntp.el (nntp-warn-about-losing-connection): Remove.
14382
14383 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
14384
14385         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
14386         customizable.  Change default value.
14387         (mm-uu-diff-groups-regexp): Change default value.
14388         (mm-uu-type-alist): Add doc string.
14389         (mm-uu-configure): Add doc string.  Make it interactive.
14390         (mm-uu-tex-groups-regexp): New variable.
14391         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
14392         (mm-uu-type-alist): Add LaTeX documents.
14393         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
14394         of "text/verbatim".
14395         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
14396
14397         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
14398         instead of "text/verbatim".
14399
14400         * message.el (message-mark-inserted-region)
14401         (message-mark-insert-file): Use slrn style marks when called with
14402         prefix argument.
14403
14404 2005-09-27  Simon Josefsson  <jas@extundo.com>
14405
14406         * message.el (message-idna-to-ascii-rhs-1): Reformat.
14407
14408 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
14409
14410         * message.el (message-remove-duplicates): New function.
14411         Implementation borrowed from `gnus-remove-duplicates'.
14412         (message-idna-to-ascii-rhs): Also encode idna addresses in
14413         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
14414         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
14415         only ask about the same idna domain once per header and also tell
14416         in what header to replace the idna domain.
14417
14418         * gnus-art.el (article-decode-idna-rhs): Also decode idna
14419         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
14420         (article-decode-idna-rhs): Fix regexp so that all idna-address in
14421         a header is decoded and not just the last one.
14422
14423 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14424
14425         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
14426         has been decoded.
14427
14428         * mm-decode.el (mm-automatic-display): Add text/verbatim.
14429         (mm-insert-part): Don't modify text if it has been decoded.
14430
14431         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
14432         decoded.
14433
14434         * mm-view.el (mm-inline-text): Don't strip text props unless
14435         decoding enriched or richtext parts.
14436
14437 2005-09-25  Romain Francoise  <romain@orebokech.com>
14438
14439         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
14440         * gnus-start.el (gnus-subscribe-interactively):
14441         * gnus-uu.el (gnus-uu-grab-articles):
14442         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
14443         space.
14444
14445 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
14446
14447         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
14448         * mm-view.el (mm-view-pkcs7-decrypt):
14449         * gnus-sum.el (gnus-summary-limit-to-extra)
14450         (gnus-summary-respool-article, gnus-read-move-group-name):
14451         * gnus-score.el (gnus-summary-increase-score):
14452         * gnus-util.el (gnus-completing-read-with-default):
14453         * gnus-art.el (gnus-read-save-file-name)
14454         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
14455         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
14456         * message.el (message-check-news-header-syntax):
14457         Follow convention for reading with the minibuffer.
14458
14459 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
14460
14461         * spam-report.el (spam-report-url-ping-plain):
14462         Use gnus-extended-version as User-Agent.
14463
14464         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
14465         default value is nil.
14466
14467         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
14468         (mm-uu-verbatim-marks-extract): New function.
14469         (mm-uu-extract): New face.
14470         (mm-uu-copy-to-buffer): Use it.
14471
14472         * spam-report.el (spam-report-gmane-ham): Rename from
14473         `spam-report-gmane-unspam'.
14474         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
14475         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
14476
14477         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
14478         Autoload.
14479         (spam-report-gmane-unregister-routine):
14480         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
14481
14482 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
14483
14484         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
14485         (spam-report-gmane-unregister-routine): Add support for gmane
14486         unregistration.
14487
14488         * spam-report.el (spam-report-gmane-unspam)
14489         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
14490         (spam-report-gmane): Change to take a single article and do unspam
14491         registration.
14492
14493 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
14494
14495         * mm-url.el (mm-url-decode-entities): Fix regexp.
14496
14497 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14498
14499         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
14500         default to nil, to be able to use Gnus at all.  If the default
14501         switches to something else, then the function should be fixed not
14502         be exceedingly slow.
14503
14504 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
14505
14506         * gnus-start.el (gnus-activate-group): If the server is nil, don't
14507         fail hard.
14508
14509         * spam-report.el: Add better Keywords line.
14510
14511         * spam.el: Add Maintainer and better Keywords line.
14512
14513 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
14514
14515         * gnus-art.el (gnus-article-replace-part)
14516         (gnus-mime-replace-part): New functions.
14517         (gnus-mime-action-alist, gnus-mime-button-commands)
14518         (gnus-mime-save-part-and-strip): Add file argument.
14519         (gnus-article-part-wrapper): Add interactive argument.
14520
14521         * gnus-sum.el (gnus-summary-mime-map):
14522         Add `gnus-article-replace-part'.
14523
14524 2005-09-19  Didier Verna  <didier@xemacs.org>
14525
14526         The nnml compaction feature:
14527         * nnml.el (nnml-request-compact-group): New function.
14528         * nnml.el (nnml-request-compact): New function.
14529         * gnus-int.el (gnus-request-compact-group): New function.
14530         * gnus-int.el (gnus-request-compact): New function.
14531         * gnus-group.el (gnus-group-compact-group): New function.
14532         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
14533         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
14534         * gnus-srvr.el (gnus-server-compact-server): New function.
14535         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
14536         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
14537
14538 2005-09-18  Deepak Goel  <deego@gnufans.org>
14539
14540         * sieve.el (sieve-help): Fix `message' call: first arg should be a
14541         format spec.
14542
14543 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14544
14545         * gnus.el (gnus-group-startup-message): Bind image-load-path.
14546
14547 2005-09-15  Romain Francoise  <romain@orebokech.com>
14548
14549         * message.el (message-fill-paragraph): Clarify docstring.
14550
14551 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14552
14553         * gnus-art.el (gnus-mime-display-part): Protect against broken
14554         MIME messages.
14555
14556 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14557
14558         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
14559         before parsing header.
14560
14561 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
14562
14563         * html2text.el (html2text-replace-list): Add new entities.
14564
14565 2005-09-11  Romain Francoise  <romain@orebokech.com>
14566
14567         * message.el (message-alternative-emails): Improve docstring.
14568         (message-setup-1): Call `message-use-alternative-email-as-from'
14569         after `message-setup-hook' to give it precedence over posting
14570         styles, etc.
14571         (message-use-alternative-email-as-from): Add docstring.
14572         Remove the original From header if present.
14573
14574         * nnml.el (nnml-compressed-files-size-threshold): New variable.
14575         (nnml-save-mail): Use it.
14576
14577         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
14578         articles.  Add new argument `silent'.
14579         (gnus-uu-mark-all): Report the total number of marked articles.
14580
14581 2005-09-10  Romain Francoise  <romain@orebokech.com>
14582
14583         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
14584         (gnus-uu-mark-series): Likewise.
14585
14586 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
14587
14588         * spam-report.el (spam-report-gmane): Fix generation of spam
14589         report URL.
14590
14591 2005-09-10  Simon Josefsson  <jas@extundo.com>
14592
14593         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
14594         t, based on discussion on the ding list with Robert Epprecht
14595         <epprecht@solnet.ch>.
14596
14597 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
14598
14599         * spam-report.el (spam-report-gmane): Make it work without
14600         X-Report-Spam header.  Gmane now only provides Archived-At.
14601         This is only used if `spam-report-gmane-use-article-number' is nil.
14602         (spam-report-gmane-spam-header): Remove.  Not used anymore.
14603
14604         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
14605         make `gnus-summary-sort-by-recipient' work with threading.
14606
14607         * nnweb.el (nnweb-google-wash-article): Print a message if article
14608         is not available.
14609
14610 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14611
14612         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
14613         change.  Decode text/* parts content before displaying.
14614
14615 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
14616
14617         * mml-smime.el: Remove defvar of gnus-extract-address-components.
14618
14619 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14620
14621         * mm-view.el (mm-display-inline-fontify): Disable support modes.
14622
14623         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
14624         url-package-name, url-package-version,
14625         w3m-cid-retrieve-function-alist, w3m-current-buffer,
14626         w3m-display-inline-images, and w3m-minor-mode-map.
14627
14628 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
14629
14630         * message.el (message-tab-body-function): Fix mismatched custom type.
14631
14632         * gnus.el (gnus-group-change-level-function): Ditto.
14633
14634         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
14635
14636         * gnus-art.el (gnus-signature-limit)
14637         (gnus-article-mime-part-function): Ditto.
14638
14639 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14640
14641         * mml.el (mml-mode): Silence the byte compiler.
14642
14643         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
14644         using `(sit-for 0)' before moving the point to the specified part;
14645         skip unbuttonized parts.
14646         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
14647         return to the summary window if gnus-auto-select-part is non-nil.
14648
14649 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
14650
14651         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
14652         New variables.
14653         (mml-dnd-attach-file, mml-mode): Use them.
14654
14655         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
14656         Make fetching article by MID work again for Google Groups.
14657         Add FIXME concerning gnus-group-make-web-group.
14658
14659         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
14660         Don't depend on Gnus by using mail-extract-address-components if
14661         gnus-extract-address-components is not bound.
14662
14663 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14664
14665         * gnus-art.el (gnus-mime-display-security): Don't display the
14666         signature, but only the signed part.
14667
14668 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14669
14670         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
14671
14672         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
14673         list, not listp.
14674
14675 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
14676
14677         * mm-encode.el (mm-encode-content-transfer-encoding):
14678         Likewise when encoding.
14679
14680         * mm-bodies.el (mm-decode-content-transfer-encoding):
14681         De-canonicalize CRLF for all text content types, not just
14682         text/plain.
14683
14684 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14685
14686         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
14687         valid article; point arrow and cursor at the MIME button.
14688
14689 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14690
14691         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
14692         Suggested by Dan Christensen <jdc@uwo.ca>.
14693
14694         * mm-decode.el (mm-save-part): Enable change of prompt.
14695
14696 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
14697
14698         * gnus-msg.el (gnus-inews-add-send-actions):
14699         Make `message-post-method' lambda parameter ARG `&optional'.
14700
14701 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
14702
14703         * gnus-sum.el (gnus-summary-mime-map):
14704         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
14705         gnus-article-jump-to-part.
14706
14707         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
14708         (gnus-article-edit-part): Use it.
14709         (gnus-article-part-wrapper): Add no-handle argument.
14710         (gnus-article-save-part-and-strip, gnus-article-delete-part):
14711         New functions.
14712
14713 2005-08-29  Romain Francoise  <romain@orebokech.com>
14714
14715         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
14716         docstring.
14717         (gnus-face-from-file): Likewise.
14718
14719 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
14720
14721         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
14722         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
14723         non-nil.
14724         (gnus-auto-select-part): New variable.
14725         (gnus-article-jump-to-part): New function.
14726         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
14727         (gnus-mime-delete-part): Allow selecting specified part after
14728         deleting or stripping parts.
14729         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
14730         part if argument is bogus.
14731
14732 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
14733
14734         * gnus-art.el (w3m-minor-mode-map):
14735         * gnus-spec.el (gnus-newsrc-file-version):
14736         * gnus-util.el (nnmail-active-file-coding-system)
14737         (gnus-original-article-buffer, gnus-user-agent):
14738         * gnus.el (gnus-ham-process-destinations)
14739         (gnus-parameter-ham-marks-alist)
14740         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
14741         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
14742         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
14743         * mm-decode.el (gnus-current-window-configuration):
14744         * mm-extern.el (gnus-article-mime-handles):
14745         * mm-url.el (url-current-object, url-package-name)
14746         (url-package-version):
14747         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
14748         (smime-keys, w3m-cid-retrieve-function-alist)
14749         (w3m-current-buffer, w3m-display-inline-images)
14750         (w3m-minor-mode-map):
14751         * mml-smime.el (gnus-extract-address-components):
14752         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
14753         (gnus-newsrc-hashtb, message-default-charset)
14754         (message-deletable-headers, message-options)
14755         (message-posting-charset, message-required-mail-headers)
14756         (message-required-news-headers):
14757         * mml1991.el (mc-pgp-always-sign):
14758         * mml2015.el (mc-pgp-always-sign):
14759         * nnheader.el (nnmail-extra-headers):
14760         * rfc1843.el (gnus-decode-encoded-word-function)
14761         (gnus-decode-header-function, gnus-newsgroup-name):
14762         * spam-stat.el (gnus-original-article-buffer): Add defvars.
14763
14764 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
14765
14766         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
14767         the end of the date treatments.
14768
14769 2005-08-15  Simon Josefsson  <jas@extundo.com>
14770
14771         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
14772         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
14773         Capello and Romain Francoise.
14774         (pgg-fetch-key-function): Remove, not used?
14775         (pgg-insert-url-with-w3): Require url, to get
14776         url-insert-file-contents regardless of where it is defined.
14777
14778 2005-08-13  Romain Francoise  <romain@orebokech.com>
14779
14780         * message.el (message-cite-original-1): New function.
14781         (message-cite-original): Use it.
14782         (message-cite-original-without-signature): Ditto.
14783
14784 2005-08-08  Romain Francoise  <romain@orebokech.com>
14785
14786         * message.el (message-yank-empty-prefix): New variable.
14787         (message-indent-citation): Use it.
14788         (message-cite-original-without-signature): Respect X-No-Archive.
14789
14790 2005-08-08  Simon Josefsson  <jas@extundo.com>
14791
14792         * pgg.el: Autoload url-insert-file-contents instead of loading
14793         w3/url.
14794         (pgg-insert-url-with-w3): Don't load url here.
14795
14796 2005-08-07  Jesper Harder  <harder@phys.au.dk>
14797
14798         * message.el (message-kill-to-signature): Don't insert newline at
14799         bol.
14800         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
14801
14802 2005-08-06  Romain Francoise  <romain@orebokech.com>
14803
14804         * message.el (message-user-fqdn): Fix typo in docstring.
14805
14806 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
14807
14808         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
14809
14810         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
14811
14812 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14813
14814         * mm-bodies.el (mm-encode-body): Use coding system rather than
14815         charset to encode text.
14816
14817         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
14818         number of charsets if utf-8 is available (XEmacs).
14819
14820 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
14821
14822         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
14823         taken from `gnus-button-mid-or-mail-regexp'.
14824         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
14825         (gnus-button-alist): Improve regexp for domain part of the MIDs
14826         for news:localpart@domain buttons.
14827         (gnus-button-ctan-directory-regexp): Update.
14828
14829 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14830
14831         * sieve-manage.el (sieve-manage-interactive-login):
14832         Use make-local-variable rather than make-variable-buffer-local.
14833         (sieve-manage-open): Ditto.
14834         (sieve-manage-authenticate): Ditto.
14835
14836         * mml.el (mml-generate-mime-1): Make the content type default to
14837         text/plain if the filename is not specified.
14838
14839 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14840
14841         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
14842         instead of insert-buffer.
14843
14844         * message.el (message-yank-original): Ditto; set the mark at the
14845         end of the yanked message.
14846
14847 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
14848
14849         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
14850         lines to scroll rather than to stop it.
14851
14852         * mml.el (mml-generate-default-type): Add doc string.
14853         (mml-generate-mime-1): Use mm-default-file-encoding or make it
14854         default to application/octet-stream when determining the content
14855         type if it is not specified for the part or the mml contents; add
14856         a comment about mml-generate-default-type.
14857
14858 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
14859
14860         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
14861         make it default to application/octet-stream when determining the
14862         content type if it is not specified for the external contents.
14863
14864 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14865
14866         * rfc2231.el (rfc2231-parse-string): Take care that not only a
14867         segmented parameter but also other parameters might be there.
14868
14869 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14870
14871         * mm-decode.el (mm-display-external): Delete temp file, directory
14872         and buffer immediately if the external process is exited.
14873
14874 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14875
14876         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
14877         fewer lines than that of scroll-margin.
14878         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
14879
14880 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14881
14882         * gnus-art.el (gnus-article-next-page): Revert.
14883         (gnus-article-beginning-of-window): New macro.
14884         (gnus-article-next-page-1): Use it.
14885         (gnus-article-prev-page): Ditto.
14886         (gnus-article-edit-part): Use insert-buffer-substring instead of
14887         insert-buffer.
14888         (gnus-article-edit-exit): Ditto.
14889
14890         * gnus-util.el (gnus-beginning-of-window): Remove.
14891         (gnus-end-of-window): Remove.
14892
14893         * lpath.el: Don't bind header-line-format and scroll-margin.
14894
14895 2005-07-25  Simon Josefsson  <jas@extundo.com>
14896
14897         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
14898         to have the url package without w3.  Reported by Daiki Ueno
14899         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
14900
14901 2005-07-20  Didier Verna  <didier@xemacs.org>
14902
14903         * gnus-diary.el: Remove the description comment (nndiary is now
14904         properly documented in the Gnus manual).
14905         Fix the spelling of "Back End".
14906         * nndiary.el: Ditto.
14907         Fix the copyright notice.
14908
14909 2005-07-18  Romain Francoise  <romain@orebokech.com>
14910
14911         * gnus-sum.el (gnus-summary-to-prefix)
14912         (gnus-summary-newsgroup-prefix): New variables.
14913         (gnus-summary-from-or-to-or-newsgroups): Use them.
14914
14915 2005-07-17  Romain Francoise  <romain@orebokech.com>
14916
14917         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
14918         space as it's generally not especially interesting to the user.
14919
14920 2005-07-16  Romain Francoise  <romain@orebokech.com>
14921
14922         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
14923         nil to avoid prompting and file modification if one of the
14924         messages at the top of the nnfolder file contains a copyright
14925         notice.
14926         Update copyright notice.
14927
14928         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
14929         instead of `current-time-string' as the latter creates a time
14930         string that is not RFC 2822 compliant (it lacks the zone).
14931         Update copyright notice.
14932
14933 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14934
14935         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
14936         for text/rtf.  Display default in prompt.  Pass default for M-n.
14937
14938         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
14939
14940 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14941
14942         * gnus-msg.el (gnus-button-mailto):
14943         Remove save-selected-window-window hackery because it relies on
14944         save-selected-window internals.
14945
14946 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14947
14948         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
14949         (gnus-article-next-page-1): Use gnus-beginning-of-window.
14950         (gnus-article-prev-page): Ditto.
14951
14952         * gnus-util.el (gnus-beginning-of-window): New function.
14953         (gnus-end-of-window): New function.
14954
14955         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
14956
14957 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
14958
14959         * gnus-score.el (gnus-score-edit-all-score):
14960         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
14961         gnus-message.
14962
14963 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14964
14965         * gnus-msg.el (gnus-button-mailto):
14966         Remove save-selected-window-window hackery because it relies on
14967         save-selected-window internals.
14968
14969 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14970
14971         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
14972         add-minor-mode.
14973         (gnus-binary-mode): Ditto.
14974
14975         * gnus-topic.el (gnus-topic-mode): Ditto.
14976
14977 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
14978
14979         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
14980         (gnus-article-prev-page): Take scroll-margin into consideration.
14981
14982 2005-07-04  Lute Kamstra  <lute@gnu.org>
14983
14984         Update FSF's address in GPL notices.
14985
14986 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
14987
14988         * gnus.el (gnus-exit):
14989         * gnus-group.el (gnus-group-icons):
14990         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
14991
14992         * gnus-nocem.el (gnus-nocem):
14993         * message.el (message-various, message-buffers, message-sending)
14994         (message-interface, message-forwarding, message-insertion)
14995         (message-headers, message-news, message-mail):
14996         * pgg-gpg.el (pgg-gpg):
14997         * pgg-parse.el (pgg-parse):
14998         * pgg-pgp.el (pgg-pgp):
14999         * pgg-pgp5.el (pgg-pgp5):
15000         * pop3.el (pop3): Finish `defgroup' description with period.
15001
15002 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15003
15004         * gnus-art.el (article-display-face): Improve the efficiency.
15005         (article-display-x-face): Ditto; remove grey x-face stuff.
15006
15007 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
15008
15009         * gnus-art.el (article-display-face): Correct the position in
15010         which Faces are inserted.
15011
15012 2005-06-29  Didier Verna  <didier@xemacs.org>
15013
15014         * gnus-art.el (article-display-face): Display faces in correct
15015         order.
15016
15017 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15018
15019         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
15020         (gnus-fill-real-hashtb): Use hash table instead of obarray.
15021         (gnus-nocem-check-article): Fetch the Type header.
15022         (gnus-nocem-message-wanted-p): Fix the way to examine types.
15023         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
15024         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
15025         make sure gnus-nocem-hashtb is initialized.
15026         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
15027         (gnus-nocem-unwanted-article-p): Ditto.
15028
15029         * pgg.el (pgg-verify): Return the verification result.
15030
15031 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15032
15033         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
15034         is ascii.
15035
15036 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
15037
15038         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
15039         `show-nonbreak-escape'.
15040
15041 2005-06-23  Lute Kamstra  <lute@gnu.org>
15042
15043         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
15044
15045         * dig.el (dig-mode):
15046         * smime.el (smime-mode): Use gnus-run-mode-hooks.
15047
15048 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
15049
15050         * nnimap.el (nnimap-split-download-body): Fix spellings.
15051
15052 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
15053
15054         * gnus-art.el (gnus-article-encrypt-body):
15055         * gnus-cus.el (gnus-score-customize):
15056         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
15057         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
15058
15059 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
15060
15061         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
15062         header by looking for magic "MII" at the beginnig.
15063
15064 2005-06-16  Miles Bader  <miles@gnu.org>
15065
15066         * gnus-xmas.el (gnus-xmas-group-startup-message):
15067         Use renamed gnus-splash face.
15068
15069         * assistant.el (assistant-field): Remove "-face" suffix from face name.
15070         (assistant-field-face): New backward-compatibility alias for renamed
15071         face.
15072         (assistant-render-text): Use renamed assistant-field face.
15073
15074         * spam.el (spam): Remove "-face" suffix from face name.
15075         (spam-face): New backward-compatibility alias for renamed face.
15076         (spam-face, spam-initialize): Use renamed spam face.
15077
15078         * message.el (message-header-to, message-header-cc)
15079         (message-header-subject, message-header-newsgroups)
15080         (message-header-other, message-header-name)
15081         (message-header-xheader, message-separator, message-cited-text)
15082         (message-mml): Remove "-face" suffix from face names.
15083         (message-header-to-face, message-header-cc-face)
15084         (message-header-subject-face, message-header-newsgroups-face)
15085         (message-header-other-face, message-header-name-face)
15086         (message-header-xheader-face, message-separator-face)
15087         (message-cited-text-face, message-mml-face):
15088         New backward-compatibility aliases for renamed faces.
15089         (message-font-lock-keywords): Use renamed message faces.
15090
15091         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
15092         (sieve-test-commands, sieve-tagged-arguments):
15093         Remove "-face" suffix from face names.
15094         (sieve-control-commands-face, sieve-action-commands-face)
15095         (sieve-test-commands-face, sieve-tagged-arguments-face):
15096         New backward-compatibility aliases for renamed faces.
15097         (sieve-control-commands-face, sieve-action-commands-face)
15098         (sieve-test-commands-face, sieve-tagged-arguments-face):
15099         Use renamed sieve faces.
15100
15101         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
15102         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
15103         (gnus-group-news-3-empty, gnus-group-news-4)
15104         (gnus-group-news-4-empty, gnus-group-news-5)
15105         (gnus-group-news-5-empty, gnus-group-news-6)
15106         (gnus-group-news-6-empty, gnus-group-news-low)
15107         (gnus-group-news-low-empty, gnus-group-mail-1)
15108         (gnus-group-mail-1-empty, gnus-group-mail-2)
15109         (gnus-group-mail-2-empty, gnus-group-mail-3)
15110         (gnus-group-mail-3-empty, gnus-group-mail-low)
15111         (gnus-group-mail-low-empty, gnus-summary-selected)
15112         (gnus-summary-cancelled, gnus-summary-high-ticked)
15113         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
15114         (gnus-summary-high-ancient, gnus-summary-low-ancient)
15115         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
15116         (gnus-summary-low-undownloaded)
15117         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
15118         (gnus-summary-low-unread, gnus-summary-normal-unread)
15119         (gnus-summary-high-read, gnus-summary-low-read)
15120         (gnus-summary-normal-read, gnus-splash):
15121         Remove "-face" suffix from face names.
15122         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
15123         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
15124         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
15125         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
15126         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
15127         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
15128         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
15129         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
15130         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
15131         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
15132         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
15133         (gnus-summary-selected-face, gnus-summary-cancelled-face)
15134         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
15135         (gnus-summary-normal-ticked-face)
15136         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
15137         (gnus-summary-normal-ancient-face)
15138         (gnus-summary-high-undownloaded-face)
15139         (gnus-summary-low-undownloaded-face)
15140         (gnus-summary-normal-undownloaded-face)
15141         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
15142         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
15143         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
15144         (gnus-splash-face):
15145         New backward-compatibility aliases for renamed faces.
15146         (gnus-group-startup-message): Use renamed gnus faces.
15147
15148         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
15149         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
15150         (gnus-server-agent): Remove "-face" suffix from face names.
15151         (gnus-server-agent-face, gnus-server-opened-face)
15152         (gnus-server-closed-face, gnus-server-denied-face)
15153         (gnus-server-offline-face):
15154         New backward-compatibility aliases for renamed faces.
15155         (gnus-server-agent-face, gnus-server-opened-face)
15156         (gnus-server-closed-face, gnus-server-denied-face)
15157         (gnus-server-offline-face): Use renamed gnus faces.
15158
15159         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
15160         Remove "-face" suffix from face names.
15161         (gnus-picon-xbm-face, gnus-picon-face):
15162         New backward-compatibility aliases for renamed faces.
15163
15164         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
15165         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
15166         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
15167         (gnus-cite-11): Remove "-face" suffix from face names.
15168         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
15169         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
15170         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
15171         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
15172         New backward-compatibility aliases for renamed faces.
15173         (gnus-cite-attribution-face, gnus-cite-face-list)
15174         (gnus-article-boring-faces): Use renamed gnus faces.
15175
15176         * gnus-art.el (gnus-signature, gnus-header-from)
15177         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
15178         (gnus-header-content): Remove "-face" suffix from face names.
15179         (gnus-signature-face, gnus-header-from-face)
15180         (gnus-header-subject-face, gnus-header-newsgroups-face)
15181         (gnus-header-name-face, gnus-header-content-face):
15182         New backward-compatibility aliases for renamed faces.
15183         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
15184
15185         * gnus-sum.el (gnus-summary-selected-face)
15186         (gnus-summary-highlight): Use renamed gnus faces.
15187         * gnus-group.el (gnus-group-highlight): Likewise.
15188
15189 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
15190
15191         * gnus-sieve.el (gnus-sieve-article-add-rule):
15192         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
15193         * spam-stat.el (spam-stat-buffer-change-to-spam)
15194         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
15195
15196         * message.el (message-is-yours-p):
15197         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
15198
15199 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15200
15201         * mm-view.el (mm-inline-text): Withdraw the last change.
15202
15203 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15204
15205         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
15206         executing enriched-decode.
15207
15208 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15209
15210         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
15211         charset of tar files.
15212
15213 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
15214
15215         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
15216
15217 2005-06-04  Lute Kamstra  <lute@gnu.org>
15218
15219         * nnfolder.el (nnfolder-read-folder): Make sure that undo
15220         information is never recorded.
15221
15222 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15223
15224         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
15225
15226 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15227
15228         * pop3.el (pop3-apop): Run md5 in the binary mode.
15229
15230         * starttls.el (starttls-set-process-query-on-exit-flag):
15231         Use eval-and-compile.
15232
15233 2005-05-31  Simon Josefsson  <jas@extundo.com>
15234
15235         * smime.el (smime-replace-in-string): Define.
15236         (smime-cert-by-ldap-1): Use it.
15237
15238 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
15239
15240         * gnus-art.el (article-display-x-face): Replace
15241         process-kill-without-query by gnus-set-process-query-on-exit-flag.
15242
15243         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
15244         set-process-query-on-exit-flag or process-kill-without-query.
15245
15246         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
15247         loop instead of replace-regexp.
15248
15249         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
15250         instead of process-kill-without-query if it is available.
15251
15252         * lpath.el: Fbind ldap-search-entries.
15253
15254         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
15255         instead of find-file-hooks if it is available.
15256
15257         * mml1991.el: Bind pgg-default-user-id when compiling.
15258
15259         * mml2015.el: Bind pgg-default-user-id when compiling.
15260
15261         * nndraft.el (nndraft-request-associate-buffer):
15262         Use write-contents-functions instead of write-contents-hooks if it is
15263         available.
15264
15265         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
15266         instead of find-file-hooks if it is available.
15267
15268         * nntp.el (nntp-open-connection): Replace
15269         process-kill-without-query by gnus-set-process-query-on-exit-flag.
15270         (nntp-open-ssl-stream): Ditto.
15271         (nntp-open-tls-stream): Ditto.
15272
15273         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
15274         set-process-query-on-exit-flag or process-kill-without-query.
15275         (starttls-open-stream-gnutls): Use it instead of
15276         process-kill-without-query.
15277         (starttls-open-stream): Ditto.
15278
15279 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
15280
15281         * smime.el (smime-cert-by-ldap-1): Don't use
15282         replace-regexp-in-string.
15283
15284 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
15285
15286         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
15287
15288         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
15289         in PEM format.  Adjust to the XEmacs compability.
15290
15291 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
15292
15293         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
15294         by `string-to-number'.
15295         * gnus-agent.el (gnus-agent-regenerate-group)
15296         (gnus-agent-fetch-articles): Ditto.
15297         * gnus-art.el (gnus-button-fetch-group): Ditto.
15298         * gnus-cache.el (gnus-cache-generate-active)
15299         (gnus-cache-articles-in-group): Ditto.
15300         * gnus-group.el (gnus-group-set-current-level)
15301         (gnus-group-insert-group-line): Ditto.
15302         * gnus-score.el (gnus-score-set-expunge-below)
15303         (gnus-score-set-mark-below, gnus-summary-score-effect)
15304         (gnus-summary-score-entry): Ditto.
15305         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
15306         (gnus-soup-pack): Ditto.
15307         * gnus-spec.el (gnus-xmas-format): Ditto.
15308         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
15309         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
15310         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
15311         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
15312         * nndb.el (nndb-get-remote-expire-response): Ditto.
15313         * nndiary.el (nndiary-parse-schedule-value)
15314         (nndiary-string-to-number, nndiary-request-replace-article)
15315         (nndiary-request-article): Ditto.
15316         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
15317         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
15318         * nneething.el (nneething-make-head): Ditto.
15319         * nnfolder.el (nnfolder-request-article)
15320         (nnfolder-retrieve-headers): Ditto.
15321         * nnheader.el (nnheader-file-to-number): Ditto.
15322         * nnkiboze.el (nnkiboze-request-article): Ditto.
15323         * nnmail.el (nnmail-process-unix-mail-format)
15324         (nnmail-process-babyl-mail-format): Ditto.
15325         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
15326         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
15327         (nnmh-request-create-group, nnmh-request-list-1)
15328         (nnmh-request-group, nnmh-request-article): Ditto.
15329         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
15330         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
15331         * nnsoup.el (nnsoup-make-active): Ditto.
15332         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
15333         * nntp.el (nntp-find-group-and-number)
15334         (nntp-retrieve-headers-with-xover): Ditto.
15335         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
15336         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
15337         (pgg-format-key-identifier): Ditto.
15338         * pop3.el (pop3-last, pop3-stat): Ditto.
15339         * qp.el (quoted-printable-decode-region): Ditto.
15340
15341         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
15342         of concat.
15343
15344 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
15345
15346         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
15347
15348         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
15349
15350         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
15351
15352         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
15353
15354         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
15355
15356         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
15357
15358         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
15359         (gnus-carpal-mode): Ditto.
15360
15361         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
15362         (gnus-browse-mode): Ditto.
15363
15364         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
15365
15366         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
15367
15368 2005-05-29  Richard M. Stallman  <rms@gnu.org>
15369
15370         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
15371
15372 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15373
15374         * gnus-util.el (gnus-run-mode-hooks): New function.
15375
15376         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
15377
15378         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
15379         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
15380
15381 2005-05-27  Lute Kamstra  <lute@gnu.org>
15382
15383         * dns-mode.el (dns-mode): Specify customization group.
15384
15385 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
15386
15387         * gnus-agent.el (gnus-agent-make-mode-line-string):
15388         Use mode-line-highlight as mouse-face.
15389
15390 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15391
15392         * canlock.el (canlock): Change the parent group to news.
15393
15394         * deuglify.el (gnus-outlook-deuglify): Add :group.
15395
15396         * dig.el (dig): Add :group.
15397
15398         * dns-mode.el (dns-mode): Add :group.
15399
15400         * encrypt.el (encrypt): Add :group.
15401
15402         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
15403         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
15404         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
15405         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
15406         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
15407
15408         * gnus-diary.el (gnus-diary): Add :group.
15409
15410         * gnus.el (gnus-group-news-1-face): Add :group.
15411         (gnus-group-news-1-empty-face): Ditto.
15412         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
15413         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
15414         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
15415         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
15416         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
15417         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
15418         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
15419         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
15420         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
15421         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
15422         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
15423         (gnus-summary-high-ticked-face): Ditto.
15424         (gnus-summary-low-ticked-face): Ditto.
15425         (gnus-summary-normal-ticked-face): Ditto.
15426         (gnus-summary-high-ancient-face): Ditto.
15427         (gnus-summary-low-ancient-face): Ditto.
15428         (gnus-summary-normal-ancient-face): Ditto.
15429         (gnus-summary-high-undownloaded-face): Ditto.
15430         (gnus-summary-low-undownloaded-face): Ditto.
15431         (gnus-summary-normal-undownloaded-face): Ditto.
15432         (gnus-summary-high-unread-face): Ditto.
15433         (gnus-summary-low-unread-face): Ditto.
15434         (gnus-summary-normal-unread-face): Ditto.
15435         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
15436         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
15437
15438         * hashcash.el (hashcash): New custom group.
15439         (hashcash-default-payment): Add :group.
15440         (hashcash-payment-alist): Ditto.
15441         (hashcash-default-accept-payment): Ditto.
15442         (hashcash-accept-resources): Ditto.
15443         (hashcash-path): Ditto.
15444         (hashcash-extra-generate-parameters): Ditto.
15445         (hashcash-double-spend-database): Ditto.
15446         (hashcash-in-news): Ditto.
15447
15448         * message.el (message-minibuffer-local-map): Add :group.
15449
15450         * netrc.el (netrc): Add :group.
15451
15452         * sieve-manage.el (sieve-manage-log): Add :group.
15453         (sieve-manage-default-user): Diito.
15454         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
15455         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
15456         (sieve-manage-authenticators): Ditto.
15457         (sieve-manage-authenticator-alist): Ditto.
15458         (sieve-manage-default-port): Ditto.
15459
15460         * sieve-mode.el (sieve-control-commands-face): Add :group.
15461         (sieve-action-commands-face): Ditto.
15462         (sieve-test-commands-face): Ditto.
15463         (sieve-tagged-arguments-face): Ditto.
15464
15465         * smime.el (smime): Add :group.
15466
15467         * spam-report.el (spam-report): Add :group.
15468
15469         * spam.el (spam, spam-face): Add :group.
15470
15471 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15472
15473         * nntp.el (nntp-next-result-arrived-p): Some news servers may
15474         return \n.\n.\n at the end of articles.  Protect against that.
15475         (nntp-with-open-group): Allow debugging.
15476
15477         * nnheader.el (mail-header-set-extra): Make into a function
15478         because I just could't understand how to quote the list properly.
15479
15480         * dns.el (query-dns-cached): New function.
15481
15482 2005-05-26  Lute Kamstra  <lute@gnu.org>
15483
15484         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
15485
15486 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15487
15488         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
15489
15490         * gnus-art.el: Don't autoload mail-extract-address-components.
15491
15492         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
15493         eval-and-compile to evaluate it.
15494
15495         * hashcash.el: Don't autoload executable-find.
15496
15497         * nndb.el: Don't declare the nndb back end two or more times; don't
15498         autoload news-reply-mode, news-setup, cancel-timer and telnet.
15499
15500         * nntp.el: Autoload format-spec instead of format; use
15501         eval-and-compile to evaluate autoload forms.
15502
15503 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
15504
15505         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
15506
15507 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15508
15509         * gnus.el (gnus-version-number): Bump version.
15510
15511 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15512
15513         * gnus.el: No Gnus v0.3 is released.
15514
15515 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15516
15517         * lpath.el (featurep): Bind show-nonbreak-escape.
15518
15519 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15520
15521         * gnus-art.el (gnus-article-edit-part): Disable undo.
15522
15523 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15524
15525         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
15526         gnus-article-date-lapsed-new-header is t if date timer is active;
15527         skip headers in which the original date value is empty.
15528         (gnus-article-save-original-date): Redefine it as a macro.
15529         (gnus-display-mime): Use it.
15530
15531 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15532
15533         * gnus-art.el (article-date-ut): Support converting date in
15534         forwarded parts as well.
15535         (gnus-article-save-original-date): New function.
15536         (gnus-display-mime): Use it.
15537
15538 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
15539
15540         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
15541         enclosure element of <item>.
15542
15543 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
15544
15545         * message.el (message-kill-buffer-query): Rename from
15546         `message-kill-buffer-query-if-modified'.  Add :version.
15547
15548 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15549
15550         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
15551         window layout.
15552
15553 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15554
15555         * mml.el: Autoload dnd when compiling.
15556
15557 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
15558
15559         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
15560         x-dnd-*.
15561
15562 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15563
15564         * qp.el (quoted-printable-encode-region): Save excursion.
15565
15566 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
15567
15568         * message.el (message-kill-buffer-query-if-modified): Add new variable
15569         so the user can kill a modified message buffer quickly.
15570         (message-kill-buffer): Use it.
15571
15572 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15573
15574         * lpath.el: Fbind display-time-event-handler; don't fbind
15575         string-to-multibyte.
15576
15577         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
15578
15579 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15580
15581         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
15582         contained in text because xml.el decodes entities) with LFs.
15583
15584 2005-04-11  Lute Kamstra  <lute@gnu.org>
15585
15586         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
15587         differently.
15588
15589 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15590
15591         * mm-util.el (mm-detect-coding-region): Typo.
15592
15593 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
15594
15595         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
15596
15597 2005-04-06  Deepak Goel  <deego@gnufans.org>
15598
15599         * spam-stat.el (spam-stat-score-buffer): Add a call to a
15600         user-function allow user modifications of the scores.
15601         (spam-stat-score-buffer-user): New function, to allow
15602         user-computed modifications to the score.
15603         (spam-stat-score-buffer-user-functions): List of additional
15604         scoring functions.
15605         (spam-stat-error-holder): Global temporary error holder.
15606         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
15607         variable.
15608
15609 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
15610
15611         * gnus-registry.el (gnus-registry-clean-empty-function)
15612         (gnus-registry-trim, gnus-registry-fetch-groups)
15613         (gnus-registry-delete-group): Groups that match
15614         `gnus-registry-ignored-groups' are removed from the registry
15615         entries, not just ignored for splitting.  This helps clean up the
15616         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
15617         to get all the groups a message ID is in.
15618
15619         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
15620         (spam-stat-split-fancy): Change "threshhold" to "threshold".
15621         (spam-stat-score-buffer-user-functions): Add :number custom type.
15622
15623 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15624
15625         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
15626         argument in XEmacs.
15627
15628         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
15629         (nnrss-request-group): Decode group name first.
15630         (nnrss-request-article): Make a text/plain article if mml-to-mime
15631         failed.
15632         (nnrss-get-encoding): Return a compatible encoding according to
15633         nnrss-compatible-encoding-alist.
15634         (nnrss-find-el): Use consp instead of listp.
15635         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
15636
15637 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15638
15639         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
15640         which Emacs 20 doesn't support.
15641         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
15642
15643 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
15644
15645         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
15646         silence the byte compiler inside the defun.
15647
15648         * gnus-demon.el (parse-time-string): Add autoload.
15649
15650         * gnus-delay.el (parse-time-string): Add autoload.
15651
15652         * gnus-art.el (parse-time-string): Add autoload.
15653
15654         * nnultimate.el (parse-time): Require for `parse-time-string'.
15655
15656 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
15657
15658         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
15659
15660         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
15661
15662         * smime.el (smime-ldap-host-list): Add :version.
15663
15664 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
15665
15666         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
15667         pass it to `gnus-browse-read-group'.
15668         (gnus-browse-read-group): Add NUMBER argument and pass it to
15669         `gnus-group-read-ephemeral-group'.
15670
15671         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
15672         argument and pass it to `gnus-group-read-group'.
15673
15674 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
15675
15676         * mm-util.el (mm-xemacs-find-mime-charset): Only call
15677         mm-xemacs-find-mime-charset-1 if we have the mule feature
15678         available at runtime.
15679
15680 2005-03-25  Werner Lemberg  <wl@gnu.org>
15681
15682         * nnmaildir.el: Replace `illegal' with `invalid'.
15683
15684 2005-03-23  Lute Kamstra  <lute@gnu.org>
15685
15686         * time-date.el: Add comment on time value formats.
15687         Don't require parse-time.
15688         (with-decoded-time-value): New macro.
15689         (encode-time-value): New function.
15690         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
15691         (days-to-time): Return a valid time value when arg is huge.
15692         (time-since): Use time-subtract.
15693         (time-to-number-of-days): Use time-to-seconds.
15694
15695 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
15696
15697         * gnus-start.el (gnus-display-time-event-handler):
15698         Check display-time-timer at runtime rather than only at load time
15699         in case display-time-mode is turned off in the mean time.
15700
15701 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
15702
15703         * nnimap.el (nnimap-open-connection): Print which authinfo file is
15704         used.
15705
15706         * nneething.el (nneething-map-file-directory): Derive from
15707         `gnus-directory'.
15708
15709         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
15710         the To/Cc button.
15711
15712 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
15713
15714         * nnmaildir.el (nnmaildir-request-accept-article):
15715         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
15716
15717 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
15718
15719         * gnus-async.el: Require timer-funcs at compile time when in
15720         XEmacs for `run-with-idle-timer'.
15721
15722 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
15723
15724         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
15725         autoloaded function.
15726
15727 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15728
15729         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
15730
15731 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
15732
15733         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
15734
15735 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15736
15737         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
15738         Add gnus-expert-user to default.
15739
15740 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
15741
15742         * nnimap.el (nnimap-open-server): Ditto.
15743
15744         * imap.el (imap-authenticate): Fix typo.
15745
15746 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
15747
15748         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
15749         buffer (since IMAP server might return FETCH response out of
15750         order, and the nntp buffer must be sorted).
15751
15752 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
15753
15754         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
15755         comparison on string.
15756
15757         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
15758         (gnus-agent-score): Rename category keywords to match gnus-cus.
15759         (gnus-agent-summary-fetch-series): Modify to protect against
15760         gnus-agent-summary-fetch-group clearing processable flags.
15761         (gnus-agent-synchronize-group-flags): Update live group buffer as
15762         synchronization may occur due to the user toggle the plugged
15763         status.
15764         (gnus-agent-fetch-group-1): Clear downloadable flag when article
15765         successfully downloaded.
15766         (gnus-agent-expire-group-1): Avoid using markers when the overview
15767         is in ascending order; greatly improves performance.
15768         (gnus-agent-regenerate-group):
15769         Use gnus-agent-synchronize-group-flags to reset read status in both
15770         gnus and server.
15771         (gnus-agent-update-files-total-fetched-for): Fix initial size.
15772
15773 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
15774
15775         * message.el: Don't autoload former message-utils variables.
15776         (message-strip-subject-trailing-was): Change doc string.
15777
15778         * nnweb.el: Fixes for `gnus-group-make-web-group'.
15779         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
15780         (nnweb-google-search): Add "hl=en" here.
15781         (nnweb-google-parse-1, nnweb-google-create-mapping):
15782         Don't hardcode URL.
15783
15784 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
15785
15786         * message.el (message-get-reply-headers, message-followup):
15787         Mention related variables `message-use-followup-to' and
15788         `message-use-mail-followup-to', in the information buffer.
15789
15790         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
15791         of broken groups(-beta).google.com.
15792
15793 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
15794
15795         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
15796         parameter to invoked gnus-request-move-article; remove the
15797         redundant gnus-sum-hint-move-is-internal variable; apply the marks
15798         all at once instead of once per article.
15799         (gnus-summary-remove-process-mark): Accept a list of articles as
15800         well as a single article for processing.
15801
15802         * gnus-int.el (gnus-request-move-article): Add move-is-internal
15803         parameter.
15804
15805         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
15806
15807         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
15808
15809         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
15810         parameter.
15811
15812         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
15813         parameter.
15814
15815         * nnimap.el (nnimap-request-move-article): Add move-is-internal
15816         parameter and remove the gnus-sum-hint-move-is-internal variable.
15817
15818         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
15819         parameter.
15820
15821         * nndraft.el (nndraft-request-move-article): Add move-is-internal
15822         parameter.
15823
15824         * nndiary.el (nndiary-request-move-article): Add move-is-internal
15825         parameter.
15826
15827         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
15828
15829         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
15830         parameter.
15831
15832         * nnagent.el (nnagent-request-move-article): Add move-is-internal
15833         parameter.
15834
15835 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
15836
15837         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
15838         a more conservative way.
15839
15840 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
15841
15842         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
15843         buffer, so it moves the window's cursor.
15844
15845 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
15846
15847         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
15848         `mm-dissect-multipart' and receive the from field as an (optional)
15849         argument from `mm-dissect-multipart'.
15850         (mm-dissect-multipart): Receive the from field as an argument and
15851         pass it on when we call `mm-dissect-buffer' on MIME parts.
15852         Fixes verification/decryption of signed/encrypted MIME parts.
15853
15854 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
15855
15856         * gnus-sum.el (gnus-summary-move-article):
15857         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
15858         whatever it calls (right now, only nnimap-request-move article
15859         respects it).
15860
15861         * nnimap.el (nnimap-request-move-article):
15862         When gnus-sum-hint-move-is-internal is set, don't do the extra
15863         nnimap-request-article.
15864
15865 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
15866
15867         * nnheader.el (nnheader-find-file-noselect): Add doc string.
15868
15869         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
15870         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
15871
15872         * gnus-sum.el (gnus-summary-caesar-message):
15873         Apply `gnus-treat-article' after rotation.
15874
15875         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
15876         doc string.
15877
15878 2005-02-22  Simon Josefsson  <jas@extundo.com>
15879
15880         * encrypt.el (encrypt-password-cache-expiry): Remove (use
15881         `password-cache-expiry' instead).  Reported by Arne Jørgensen
15882         <arne@arnested.dk>.
15883         (encrypt): Add password-cache and password-cache-expiry as group
15884         members.
15885
15886 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
15887
15888         * smime.el (smime-ldap-host-list): Doc fix.
15889         (smime-ask-passphrase): Use `password-read-and-add' to read (and
15890         cache) password.
15891         (smime-sign-region): Use it.
15892         (smime-decrypt-region): Use it.
15893         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
15894         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
15895         fails.
15896         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
15897         certificate from DER to PEM format rather than calling openssl.
15898
15899         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
15900
15901         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
15902         for signing/encryption.
15903
15904         * mml.el (mml-parse-1): Use them.
15905
15906 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
15907
15908         * nnrss.el (nnrss-verbose): Remove.
15909         (nnrss-request-group): Use `nnheader-message' instead.
15910
15911 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
15912
15913         * nnrss.el (nnrss-verbose): New variable.
15914         (nnrss-request-group): Make it say nnrss is requesting a group.
15915
15916 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
15917
15918         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
15919         Handle news URL with given port correctly.
15920
15921 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15922
15923         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
15924         containing special characters.
15925
15926         * gnus-sum.el (gnus-summary-edit-article): Ditto.
15927
15928         * mml.el (mime-to-mml): Ditto.
15929
15930         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
15931         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
15932         (rfc2047-decode-region): Quote decoded words containing special
15933         characters when rfc2047-quote-decoded-words-containing-tspecials
15934         is non-nil.
15935
15936 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
15937
15938         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
15939
15940         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
15941
15942 2005-02-15  Simon Josefsson  <jas@extundo.com>
15943
15944         * nnimap.el (nnimap-debug): Doc fix.
15945
15946         * imap.el (imap-debug): Doc fix.
15947
15948 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15949
15950         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
15951
15952 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
15953
15954         * gnus.el (spam-contents): Improve docs for spam-contents
15955         parameter in its variable incarnation.
15956
15957 2005-02-14  Simon Josefsson  <jas@extundo.com>
15958
15959         * smime-ldap.el: Use require instead of load-library for ldap.
15960         (smime-ldap-search): Indent.
15961         (smime-ldap-search-internal): Shorten line.
15962
15963         * smime.el (smime-cert-by-dns): Add doc-string.
15964         (smime-cert-by-ldap-1): Indent.
15965
15966         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
15967         mml-smime-get-dns-ldap.
15968         (mml-smime-encrypt-query): Use new function.  Default to ldap.
15969
15970 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
15971
15972         * smime.el: Require smime-ldap.
15973         (smime-ldap-host-list): New variable.
15974         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
15975
15976         * mml-smime.el (mml-smime-encrypt-query): New function.
15977         (mml-smime-encrypt-query): Use it.
15978
15979         * smime-ldap.el: New file.
15980
15981 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15982
15983         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
15984
15985 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
15986
15987         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
15988         argument in doc string.  Make query for type more clear.
15989
15990 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
15991
15992         * gnus.el (gnus-group-startup-message): Search for gnus images in
15993         etc/images/gnus.
15994         * mm-util.el (mm-image-load-path): Likewise.
15995         * smiley.el (smiley-data-directory): Search for smilies in
15996         etc/images/smilies.
15997
15998 2005-02-09  Kim F. Storm  <storm@cua.dk>
15999
16000         Change Emacs release version from 21.4 to 22.1 throughout.
16001         Change Emacs development version from 21.3.50 to 22.0.50.
16002
16003 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16004
16005         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
16006
16007         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
16008         non-Mule XEmacs as well.
16009         (mm-decompress-buffer): Signal an error intentionally if it does
16010         not decompress compressed data because auto-compression-mode is
16011         disabled.
16012
16013 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
16014
16015         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
16016         an ID in the registry even if it has no groups.
16017
16018 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16019
16020         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
16021         merge it into mm-decompress-buffer.
16022         (gnus-mime-copy-part): Use the MIME part charset, the value which
16023         a user specified or gnus-newsgroup-charset for decoding, like
16024         gnus-mime-inline-part does; set buffer-file-coding-system to tell
16025         save-buffer what was used.  Suggested by Kevin Ryde
16026         <user42@zip.com.au>.
16027         (gnus-mime-inline-part): Allow the name parameter as well as the
16028         filename parameter; force decompressing of compressed data; always
16029         display contents being not decoded as unibyte.
16030
16031         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
16032         as well as the filename parameter.
16033
16034         * mm-util.el (mm-decompress-buffer):
16035         Merge gnus-mime-jka-compr-maybe-uncompress.
16036         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
16037         of compressed data.
16038
16039 2005-02-08  Simon Josefsson  <jas@extundo.com>
16040
16041         * imap.el (imap-log): Doc fix.
16042
16043 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16044
16045         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
16046         the coding cookies; decompress compressed parts.
16047
16048         * mml.el (mml-generate-mime-1): Add the charset parameter according
16049         to the value which a user specified manually or the coding cookie.
16050
16051         * mm-util.el (mm-string-to-multibyte): New function.
16052         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
16053         (mm-coding-system-to-mime-charset): New function.
16054         (mm-decompress-buffer): New function.
16055         (mm-find-buffer-file-coding-system): New function.
16056
16057         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
16058         (mm-display-inline-fontify): Rewrite for decoding and decompressing
16059         parts.
16060
16061 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
16062
16063         * mm-view.el (mm-display-inline-fontify): Decode a part according
16064         to the charset parameter.
16065
16066 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
16067
16068         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
16069         prefix arg is neither nil nor a number, as info specifies.
16070
16071 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16072
16073         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
16074         timestamps.
16075
16076 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
16077
16078         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
16079         groups error checking and notify user.
16080
16081 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
16082
16083         * message.el (message-send-mail-function): Check existence of
16084         sendmail-program first before using default value
16085         `message-send-mail-with-sendmail'.  Otherwise use more generic
16086         `smtpmail-send-it'.
16087
16088 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16089
16090         * nntp.el (nntp-request-update-info): Always return nil.
16091
16092 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
16093
16094         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
16095
16096 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
16097
16098         * message.el (message-beginning-of-line): Change the behavior when
16099         invoked between BOL and : so that it first moves backward.
16100
16101 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16102
16103         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
16104         article buffer when editing of the article is discarded.
16105         (gnus-article-prepare): Revert.
16106
16107 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16108
16109         * gnus-art.el (gnus-article-prepare):
16110         Remove message-strip-forbidden-properties from the local hook.
16111
16112 2005-01-27  Simon Josefsson  <jas@extundo.com>
16113
16114         * password.el (password-cache-add): Only start one timer per key.
16115         Reported by Derek Atkins <warlord@MIT.EDU>.
16116
16117 2005-01-26  Steve Youngs  <steve@sxemacs.org>
16118
16119         * run-at-time.el: Remove.  It is no longer needed as
16120         timer-funcs.el in the xemacs-base package has a working version of
16121         `run-at-time'.
16122
16123         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
16124
16125         * password.el: Require timer-funcs instead of run-at-time in
16126         XEmacs.
16127         Remove `password-run-at-time' macro.
16128         (password-cache-add): Use `run-at-time' instead of
16129         `password-run-at-time'.
16130
16131         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
16132         Remove `nnheader-cancel-function-timers' alias,
16133         `cancel-function-timers' exists in XEmacs in timer-funcs.
16134
16135         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
16136         for `run-with-idle-timer'.
16137
16138         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
16139         for `run-at-time'.
16140
16141         * mm-url.el: Require timer-funcs at compile time when in XEmacs
16142         for `with-timeout'.
16143
16144         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
16145         the same as for XEmacs 21.4.
16146         No need to ignore `run-with-idle-timer', this function exists in
16147         XEmacs now in timer-funcs.el in the xemacs-base package.
16148         (dgnushack-compile): No need to delete
16149         run-at-time.el from the list of files to compile because it
16150         doesn't exist anymore.
16151
16152 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16153
16154         * mml.el (mml-generate-mime-1): Convert string into unibyte when
16155         inserting " *mml*" buffer's contents into a unibyte temp buffer.
16156
16157 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
16158
16159         * mail-source.el (mail-source-fetch-imap): Search for ^From case
16160         sensitively.
16161
16162 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
16163
16164         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
16165
16166 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16167
16168         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
16169         which will be inserted according to the multibyteness of a buffer
16170         rather than the type of contents.  Suggested by ARISAWA Akihiro
16171         <ari@mbf.ocn.ne.jp>.
16172
16173         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
16174         of string which old xml.el may return rather than a string.
16175
16176 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16177
16178         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
16179
16180 2005-01-16  Simon Josefsson  <jas@extundo.com>
16181
16182         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
16183         idn/idna.el isn't available.
16184         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
16185         <michael@waxrat.com>.
16186
16187         * hashcash.el: Remove non-FSF copyright header.
16188
16189         * hashcash.el (hashcash-extra-generate-parameters): New variable.
16190         (hashcash-generate-payment): Use it.
16191         (hashcash-generate-payment-async): Use it.
16192
16193 2005-01-15  Simon Josefsson  <jas@extundo.com>
16194
16195         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
16196         Suggested by Raymond Scholz <ray-2005@zonix.de>.
16197
16198         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
16199         gnus-summary-idna-message.
16200         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
16201         (gnus-summary-idna-message): New function.
16202
16203 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
16204
16205         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
16206         gnus-novice-user.
16207
16208 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16209
16210         * nnrss.el (nnrss-request-delete-group): Delete entries in
16211         nnrss-group-alist as well.
16212         (nnrss-save-server-data): Insert newline.
16213
16214 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
16215
16216         * gnus.el (gnus-user-agent): Use list of symbols instead of
16217         symbols.  Display full version number for (S)XEmacs.
16218         Optionally display (S)XEmacs codename.
16219
16220         * gnus-util.el (gnus-emacs-version): Update for new
16221         `gnus-user-agent'.
16222
16223         * gnus-msg.el (gnus-extended-version): Make it possible to omit
16224         Gnus version.
16225
16226 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
16227
16228         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
16229         which is unreadable in some setups.
16230
16231 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16232
16233         * gnus-spec.el (gnus-update-format-specifications): Flush the
16234         group format spec cache if it doesn't support decoded group names.
16235
16236 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
16237
16238         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
16239         Allow to apply decay on score files matching a regexp.
16240
16241 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16242
16243         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
16244         compatibility in %g and %c.
16245
16246 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16247
16248         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
16249         name for only %g and %c.
16250         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
16251         of gnus-tmp-group to decoded group name.
16252         (gnus-group-make-rss-group): Exclude `/'s from group names.
16253
16254 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16255
16256         * nnrss.el (nnrss-get-encoding): Fix regexp.
16257
16258 2004-12-27  Simon Josefsson  <jas@extundo.com>
16259
16260         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
16261         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
16262         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
16263
16264 2004-12-17  Kim F. Storm  <storm@cua.dk>
16265
16266         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
16267
16268         * gnus-sum.el (gnus-summary-mode-map): Likewise.
16269
16270 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
16271
16272         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
16273
16274 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16275
16276         * nnrss.el: Require rfc2047 and mml.
16277         (nnrss-file-coding-system): New variable.
16278         (nnrss-format-string): Redefine it as an inline function.
16279         (nnrss-decode-group-name): New function.
16280         (nnrss-string-as-multibyte): Remove.
16281         (nnrss-retrieve-headers): Decode group name; don't use
16282         nnrss-format-string.
16283         (nnrss-request-group): Decode group name.
16284         (nnrss-request-article): Decode group name; allow a Message-ID as
16285         well as an article number; don't use nnrss-format-string; encode a
16286         Message-ID string which may contain non-ASCII characters; use
16287         mml-to-mime to compose a MIME article.
16288         (nnrss-request-expire-articles): Decode group name.
16289         (nnrss-request-delete-group): Decode group name.
16290         (nnrss-fetch): Clarify error message.
16291         (nnrss-read-server-data): Use insert-file-contents instead of load;
16292         bind file-name-coding-system; use multibyte buffer.
16293         (nnrss-save-server-data): Bind coding-system-for-write to the
16294         value of nnrss-file-coding-system; bind file-name-coding-system;
16295         add coding cookie.
16296         (nnrss-read-group-data): Use insert-file-contents instead of load;
16297         bind file-name-coding-system; use multibyte buffer.
16298         (nnrss-save-group-data): Bind coding-system-for-write to the
16299         value of nnrss-file-coding-system; bind file-name-coding-system.
16300         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
16301         make it work with non-ASCII text.
16302         (nnrss-find-el): Make it work with old xml.el as well.
16303
16304 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
16305
16306         * nnrss.el (nnrss-get-encoding): New function.
16307         (nnrss-fetch): Use unibyte buffer initially; bind
16308         coding-system-for-read while performing mm-url-insert; remove ^Ms;
16309         decode contents according to the encoding attribute.
16310         (nnrss-save-group-data): Add coding cookie.
16311         (nnrss-mime-encode-string): New function.
16312         (nnrss-check-group): Use it to encode subject and author.
16313
16314 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
16315
16316         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
16317         imaginary variable.
16318
16319 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16320
16321         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
16322         correctly even if there are wide characters.
16323
16324 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
16325
16326         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
16327         downcased symbol names; make a new cache instead of reusing
16328         bbdb-hashtable.
16329
16330 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16331
16332         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
16333         concatenating segments rather than before concatenating them.
16334         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
16335
16336         * message.el (message-get-reply-headers): Bind `extra'.
16337
16338 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16339
16340         * message.el (message-extra-wide-headers): New variable.
16341         (message-get-reply-headers): Use it.
16342
16343 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16344
16345         * gnus-agent.el (gnus-agent-group-path): Decode group name.
16346         (gnus-agent-group-pathname): Ditto.
16347
16348         * gnus-cache.el (gnus-cache-file-name): Decode group name.
16349
16350         * gnus-group.el (gnus-group-make-group): Decode group name.
16351         (gnus-group-make-rss-group): Register the group data after opening
16352         the nnrss group.
16353
16354 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
16355
16356         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
16357         by expiry now get marked as read.
16358
16359 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16360
16361         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
16362
16363 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
16364
16365         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
16366         unify Latin characters in XEmacs.
16367         (mm-find-mime-charset-region): Use it.
16368
16369 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16370
16371         * gnus-util.el (gnus-delete-directory): New function.
16372
16373         * gnus-agent.el (gnus-agent-delete-group): Use it.
16374
16375         * gnus-cache.el (gnus-cache-delete-group): Use it.
16376
16377 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16378
16379         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
16380         names.
16381
16382 2004-12-16  Simon Josefsson  <jas@extundo.com>
16383
16384         * hashcash.el (hashcash-payment-alist): Fix custom :type.
16385
16386 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16387
16388         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
16389
16390         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
16391         (gnus-group-set-current-level): Decode group name.
16392
16393 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
16394
16395         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
16396         failed.
16397
16398 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16399
16400         * gnus-group.el (gnus-group-delete-group): Decode group name.
16401         (gnus-group-make-rss-group): Encode group name.
16402         (gnus-group-catchup-current): Decode group name.
16403         (gnus-group-kill-group): Decode group name.
16404
16405 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
16406
16407         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
16408
16409 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16410
16411         * gnus-group.el (gnus-group-make-rss-group):
16412         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
16413
16414         * gnus-start.el (gnus-setup-news): Honor user's setting to
16415         gnus-message-archive-method.  Suggested by Lute Kamstra
16416         <lute@gnu.org>.
16417
16418 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
16419
16420         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
16421         global counterparts of the buffer-local variables.
16422
16423 2004-11-16  Romain Francoise  <romain@orebokech.com>
16424
16425         * gnus-sum.el (gnus-summary-exit): Don't clear the global
16426         counterparts of the buffer-local variables.
16427
16428 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
16429
16430         * message.el (message-forbidden-properties): Fix typo in doc
16431         string.
16432
16433 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
16434
16435         * gnus-util.el (gnus-replace-in-string): Add doc string.
16436
16437         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
16438         to avoid problems when splitting mails with many recipients.
16439
16440 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16441
16442         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
16443         pop-to-buffer, covered by the subsequent gnus-configure-windows.
16444
16445 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
16446
16447         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
16448         if there is no hashtable in memory or file modification time is
16449         newer than cached timestamp.
16450
16451 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
16452
16453         * gnus-sum.el (gnus-summary-limit-to-recipient):
16454         Implement not-matching option.
16455
16456 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
16457
16458         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
16459         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
16460         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
16461         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
16462         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
16463         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
16464
16465 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16466
16467         * message.el (message-forward-make-body-mml): Remove headers
16468         according to message-forward-ignored-headers if a message is decoded.
16469
16470 2004-12-02  Romain Francoise  <romain@orebokech.com>
16471
16472         * message.el (message-forward-make-body-plain): Always remove
16473         headers according to message-forward-ignored-headers.
16474
16475 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
16476
16477         * spam.el (spam-summary-prepare-exit): Remove the
16478         gnus-summary-limit pop for now, it has problems with ham marks for
16479         me.
16480
16481 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
16482
16483         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
16484         correctly.
16485
16486 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
16487
16488         * format-spec.el (format-spec): Message the char.
16489
16490 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
16491
16492         * gnus-art.el (gnus-split-methods): Reformat comments.
16493
16494         * spam.el (spam-summary-prepare-exit): Remove article limits
16495         before exiting the summary buffer.
16496
16497 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16498
16499         * lpath.el: Remove bbdb-create-internal, bbdb-records,
16500         spam-BBDB-register-routine and spam-enter-ham-BBDB.
16501
16502         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
16503         order to silence the byte compiler.
16504
16505         * spam.el: Fix the way to silence the byte compiler, which
16506         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
16507         bbdb-search-simple, spam-BBDB-register-routine,
16508         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
16509         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
16510         spam-stat-buffer-is-spam, spam-stat-load,
16511         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
16512         spam-stat-save and spam-stat-split-fancy.
16513
16514 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16515
16516         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
16517         which may confuse users.
16518         (canlock-password-for-verify): Ditto.
16519
16520         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
16521
16522         * gnus-art.el (gnus-emphasis-alist): Ditto.
16523
16524         * gnus-registry.el (gnus-registry-max-entries): Ditto.
16525
16526         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
16527
16528         * gnus-start.el (gnus-save-killed-list): Ditto.
16529
16530         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
16531         (gnus-sum-thread-tree-root): Ditto.
16532         (gnus-sum-thread-tree-false-root): Ditto.
16533         (gnus-sum-thread-tree-single-indent): Ditto.
16534
16535         * message.el (message-courtesy-message): Ditto.
16536         (message-archive-note): Ditto.
16537         (message-subscribed-address-file): Ditto.
16538         (message-user-fqdn): Ditto.
16539
16540         * spam-report.el (spam-report-gmane-regex): Ditto.
16541
16542         * spam.el (spam-blackhole-good-server-regex): Ditto.
16543
16544 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16545
16546         * mml.el (mml-preview): Widen the message buffer before copying
16547         the contents to the preview buffer; sort headers before previewing.
16548
16549         * message.el (message-hidden-headers): Fix the way to avoid a bug
16550         in the `repeat' widget in Emacs 21.3 or earlier.
16551
16552 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16553
16554         * message.el (message-hidden-headers): Default to "^References:".
16555         Improve customization type.  Suggested by Reiner Steib
16556         <Reiner.Steib@gmx.de>.
16557
16558 2004-11-25  Romain Francoise  <romain@orebokech.com>
16559
16560         * message.el (message-strip-forbidden-properties): Remove check for
16561         obsolete `message-hidden' text property, hidden headers are not
16562         accessible in the buffer anymore.
16563
16564 2004-11-22  Romain Francoise  <romain@orebokech.com>
16565
16566         * message.el (message-header-format-alist): Add `From' in list
16567         so that it can be sorted.
16568         (message-fix-before-sending): Widen and sort headers before
16569         sending.
16570         (message-hide-headers): Use narrowing to hide headers by moving
16571         them to the top of the buffer and narrowing to the region
16572         underneath.
16573
16574 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16575
16576         * message.el (message-strip-forbidden-properties):
16577         Bind buffer-read-only (etc) to nil.
16578
16579 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16580
16581         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
16582         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
16583
16584 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
16585
16586         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
16587
16588 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16589
16590         * dns.el (query-dns): Use sit-for to time instead of
16591         accept-process-output, since that doesn't seem to work on udp
16592         sockets.
16593
16594 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16595
16596         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
16597
16598 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
16599
16600         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
16601         doc string.  Improve doc string.
16602
16603 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16604
16605         * nntp.el (nntp-request-update-info): Return nil if
16606         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
16607         may not call gnus-activate-group which uselessly issues the GROUP
16608         commands for all nntp groups and wastes time.  Reported by Romain
16609         Francoise <romain@orebokech.com>.
16610
16611         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
16612
16613 2004-11-15  Simon Josefsson  <jas@extundo.com>
16614
16615         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
16616         headers separately.
16617         (gnus-button-openpgp): New function, inspired by Jochen Küpper
16618         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
16619
16620 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
16621
16622         * gnus-start.el (gnus-convert-old-newsrc):
16623         Assign legacy-gnus-agent to 5.10.7.
16624
16625 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16626
16627         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
16628         start of the lines.
16629
16630 2004-11-14  Magnus Henoch  <mange@freemail.hu>
16631
16632         * hashcash.el (hashcash-default-payment): Change default to 20.
16633         (hashcash-default-accept-payment): Change default to 20.
16634         (hashcash-process-alist): New variable.
16635         (hashcash-generate-payment-async): Add.
16636         (hashcash-already-paid-p): Add.
16637         (hashcash-insert-payment): Don't generate payments twice.
16638         (hashcash-insert-payment-async): Add.
16639         (hashcash-insert-payment-async-2): Add.
16640         (hashcash-cancel-async): Add.
16641         (hashcash-wait-async): Add.
16642         (hashcash-processes-running-p): Add.
16643         (hashcash-wait-or-cancel): Add.
16644         (mail-add-payment): New optional argument.  Conditionally start
16645         asynchronous calculation.
16646         (mail-add-payment-async): Add.
16647
16648         * message.el (message-send-mail): Wait for asynchronous hashcash
16649         results.  Don't clobber existing X-Hashcash headers.
16650         (message-setup-1): Call mail-add-payment-async when
16651         message-generate-hashcash is non-nil.
16652
16653 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
16654
16655         * message.el (message-use-alternative-email-as-from): Examine the
16656         From header as well; use message-make-from in order to include a
16657         user's full name.
16658
16659 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16660
16661         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
16662         default; improve customization type.
16663         (gnus-emphasis-custom-with-format): New macro.
16664         (gnus-emphasis-custom-value-to-external): New function.
16665         (gnus-emphasis-custom-value-to-internal): New function.
16666
16667 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16668
16669         * dns.el (query-dns): Resolve reverse addresses.
16670
16671 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16672
16673         * gnus-group.el (gnus-group-get-new-news): Use it.
16674
16675         * gnus-start.el (gnus-check-reasonable-setup): New function.
16676
16677 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16678
16679         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
16680         "Args out of range" error.  Reported by Arnaud Giersch
16681         <arnaud.giersch@free.fr>.
16682
16683 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
16684
16685         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
16686
16687 2004-11-04  Richard M. Stallman  <rms@gnu.org>
16688
16689         * spam.el (spam group): Add :version.
16690
16691         * pgg-def.el (pgg group): Add :version.
16692
16693 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16694
16695         * gnus-art.el (gnus-article-edit-article): Don't associate the
16696         article buffer with a draft file.  This is a temporary measure
16697         against the 2004-08-22 change to gnus-article-edit-mode.
16698
16699 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16700
16701         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
16702         (html2text-format-tags): Remove unused variable `attr'.
16703
16704 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
16705
16706         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
16707
16708         * tls.el (tls-process-connection-type, tls-success)
16709         (tls-certtool-program): Add :version.
16710
16711         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
16712         (starttls-extra-arguments, starttls-process-connection-type)
16713         (starttls-connect, starttls-failure, starttls-success): Add :version.
16714
16715         * spam-stat.el (spam-stat): Add :version.
16716
16717         * sieve.el (sieve): Add :version.
16718
16719         * sha1.el (sha1): Add :version.
16720         (sha1-use-external): Remove redundant version.
16721
16722         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
16723         (nnmail-cache-ignore-groups, nnmail-spool-hook)
16724         (nnmail-split-fancy-match-partial-words)
16725         (nnmail-split-lowercase-expanded): Add :version.
16726
16727         * nndiary.el (nndiary): Add :version.
16728
16729         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
16730
16731         * mml-sec.el (mml-default-sign-method)
16732         (mml-default-encrypt-method, mml-signencrypt-style-alist):
16733         Add :version.
16734
16735         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
16736
16737         * mm-url.el (mm-url-use-external, mm-url-program)
16738         (mm-url-arguments): Add :version.
16739
16740         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
16741         (mm-attachment-file-modes, mm-decrypt-option)
16742         (mm-w3m-safe-url-regexp): Add :version.
16743
16744         * message.el (message-cite-prefix-regexp)
16745         (message-sendmail-envelope-from, message-minibuffer-local-map)
16746         (message-user-fqdn, message-completion-alist): Add :version.
16747
16748         * gnus-win.el (gnus-configure-windows-hook)
16749         (gnus-use-frames-on-any-display): Add :version.
16750
16751         * gnus-art.el (gnus-article-address-banner-alist)
16752         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
16753         (gnus-treat-from-picon, gnus-treat-mail-picon)
16754         (gnus-treat-x-pgp-sig): Add :version.
16755
16756         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
16757         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
16758         (gnus-summary-article-delete-hook)
16759         (gnus-summary-display-while-building): Add :version.
16760
16761         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
16762         (gnus-get-top-new-news-hook): Add :version.
16763
16764         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
16765         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
16766
16767         * gnus-registry.el (gnus-registry): Add :version.
16768
16769         * gnus-spec.el (gnus-use-correct-string-widths)
16770         (gnus-make-format-preserve-properties): Add :version.
16771
16772         * gnus.el (gnus-group-charter-alist)
16773         (gnus-group-fetch-control-use-browse-url)
16774         (gnus-install-group-spam-parameters): Add :version.
16775
16776         * gnus-diary.el (gnus-diary): Add :version.
16777
16778         * gnus-delay.el (gnus-delay): Add :version.
16779
16780         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
16781         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
16782         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
16783         Add :version.
16784
16785         * gnus-agent.el (gnus-agent-max-fetch-size)
16786         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
16787         (gnus-agent-prompt-send-queue): Add :version.
16788
16789         * deuglify.el (gnus-outlook-deuglify): Add :version.
16790
16791         * html2text.el: Beautify code.  Improve doc strings.
16792         Some checkdoc cleanup.
16793         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
16794
16795 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
16796
16797         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
16798
16799 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
16800
16801         * gnus-registry.el (gnus-registry-hashtb): Create the registry
16802         when package is loaded.
16803
16804         * spam.el (spam-summary-score-preferred-header): Add global preference
16805         for people who want to override the default SpamAssassin over
16806         Bogofilter preference (when both are set).
16807         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
16808         (spam-user-format-function-S):
16809         Check spam-summary-score-preferred-header.
16810         (spam-extra-header-to-number): Add X-Bogosity header parsing.
16811         (spam-user-format-function-S): Format the score correctly.
16812
16813 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16814
16815         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
16816         signature file.  Suggested by Manoj Srivastava
16817         <srivasta@golden-gryphon.com>.
16818
16819         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
16820         iso-2022-jp even in the Japanese language environment.
16821         Suggested by Jason Rumney <jasonr@gnu.org>.
16822
16823 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16824
16825         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
16826         use the same characters as the dummy marks; make it free from
16827         getting affected by the language environment.
16828         (gnus-summary-read-group-1): Update mark positions only when the
16829         format spec is updated.
16830
16831         * gnus-spec.el (gnus-update-format-specifications): Return a list
16832         of updated types.
16833
16834 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
16835
16836         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
16837         of boundp to check if display-warning is available.
16838
16839 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
16840
16841         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
16842
16843 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16844
16845         * nnspool.el (nnspool-spool-directory): Use news-path if the
16846         news-directory variable is not bound.
16847
16848         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
16849         function instead of display-warning if it is not available.
16850
16851 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
16852
16853         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
16854         v5-10: Use `point-at-bol'.
16855
16856 2004-10-26  Simon Josefsson  <jas@extundo.com>
16857
16858         * hashcash.el: Fix URL in comment, reported by Cheng Gao
16859         <chenggao@gmail.com>.
16860
16861 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
16862
16863         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
16864         instead.
16865
16866 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
16867
16868         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
16869         to remove a server from the nnimap-server-buffer-alist.
16870         (nnimap-open-connection, nnimap-close-server): Use it.
16871
16872         * gnus-encrypt.el: Remove file in favor of encrypt.el.
16873
16874 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16875
16876         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
16877         running the major-mode function.
16878
16879 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16880
16881         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
16882         dummy marks in the right way.
16883
16884 2004-10-18  David Edmondson  <dme@dme.org>
16885
16886         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
16887         excessively.
16888
16889 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
16890
16891         * gnus-util.el (gnus-split-references): Accept a nil references
16892         string and go on blissfully.
16893
16894         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
16895         cases where the references string is non-nil but has no references.
16896
16897         * encrypt.el: Add autoload tags.
16898
16899         * spam.el (spam-resolve-registrations-routine): Remove article
16900         from unregistration list too.  Reported by David Hanak
16901         <dhanak@isis.vanderbilt.edu>
16902
16903 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
16904
16905         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
16906         nil.  Change custom type.
16907
16908 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
16909
16910         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
16911
16912         * gnus-sum.el (gnus-summary-move-article): Use it.
16913
16914 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
16915
16916         * encrypt.el: Add autoload cookies.
16917
16918         * spam.el (spam-backend-article-list-property)
16919         (spam-backend-get-article-todo-list)
16920         (spam-backend-put-article-todo-list)
16921         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
16922         Resolve registrations separately.
16923         (spam-register-routine): Format comments.
16924         (spam-unregister-routine, spam-register-routine): Always call with
16925         specific-articles, no default list.
16926         (spam-summary-prepare-exit): Use the spam-classifications function.
16927
16928         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
16929         gnus-encrypt.el.
16930
16931         * encrypt.el: Copied from gnus-encrypt.el.
16932
16933         * gnus-encrypt.el: Commented that it's obsolete.
16934
16935 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
16936
16937         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
16938         (gnus-score-save): Use it.
16939
16940         * message.el (message-bury): Use `window-dedicated-p'.
16941
16942 2004-10-15  Simon Josefsson  <jas@extundo.com>
16943
16944         * pop3.el (top-level): Don't require nnheader.
16945         (pop3-read-timeout): Add.
16946         (pop3-accept-process-output): Add.
16947         (pop3-read-response, pop3-retr): Use it.
16948
16949 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
16950
16951         * spam.el (spam-register-routine): Move comment.
16952         (spam-verify-bogofilter): Use 'unknown for the initial
16953         spam-bogofilter-valid state, not 'never.
16954
16955         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
16956         for netrc-machine.
16957
16958         * nnimap.el (nnimap-open-connection):
16959         Use netrc-machine-user-or-password.
16960
16961 2004-10-17  Richard M. Stallman  <rms@gnu.org>
16962
16963         * gnus-registry.el (gnus-registry-unload-hook):
16964         Set as a variable with add-hook.
16965
16966         * nnspool.el (nnspool-spool-directory): Use news-directory instead
16967         of news-path.
16968
16969         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
16970
16971         * spam.el: Delete duplicate `provide'.
16972         (spam-unload-hook): Set as a variable with add-hook.
16973
16974 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
16975
16976         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
16977         in the doc string.
16978
16979         * message.el (message-ignored-news-headers)
16980         (message-ignored-supersedes-headers)
16981         (message-ignored-resent-headers)
16982         (message-forward-ignored-headers): Improve custom type.
16983
16984 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16985
16986         * message.el (message-tokenize-header): Fix 2004-09-06 change
16987         which used point-min in the wrong place.
16988
16989 2004-10-12  Simon Josefsson  <jas@extundo.com>
16990
16991         * tls.el (tls-certtool-program): New variable.
16992         (tls-certificate-information): New function, based on
16993         ssl-certificate-information.
16994
16995 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16996
16997         * compface.el: Move the version of ELisp-based uncompface program
16998         to the contrib directory because of the copyright problem.
16999
17000 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
17001
17002         * message.el (message-kill-buffer): Raise the current frame.
17003
17004 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
17005
17006         * gnus-sum.el: Mention that multibyte characters don't work as marks.
17007
17008         * gnus.el (message-y-or-n-p): Autoload.
17009
17010         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
17011         (pop3-password-required, pop3-authentication-scheme)
17012         (pop3-leave-mail-on-server): Make customizable.
17013         (pop3): New custom group.
17014         (pop3-retr): Remove `sleep-for' statements.
17015         Suggested by Dave Love <fx@gnu.org>.
17016
17017         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
17018         Windows/DOS.
17019
17020         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
17021         (imap-parse-body): Fix incorrect use of `assert'.
17022         Suggested by Dave Love <fx@gnu.org>.
17023
17024         * mml.el (mml-minibuffer-read-disposition): Require match.
17025         Suggested by Dave Love <fx@gnu.org>.
17026
17027 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
17028
17029         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
17030         doc string.
17031
17032 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
17033
17034         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
17035
17036 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17037
17038         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
17039         instead of calling `mm-insert-inline', to decode text/* parts
17040         before displaying them.
17041
17042 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
17043
17044         * mm-uu.el (mm-uu-text-plain-type): New variable.
17045         (mm-uu-pgp-signed-extract-1): Use it.
17046         (mm-uu-pgp-encrypted-extract-1): Use it.
17047         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
17048         bind mm-uu-text-plain-type with that value.
17049         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
17050         mm-uu-dissect.
17051
17052 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17053
17054         * gnus-group.el (gnus-update-group-mark-positions):
17055         * gnus-sum.el (gnus-update-summary-mark-positions):
17056         * message.el (message-check-news-body-syntax):
17057         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
17058         of string-as-multibyte.
17059
17060 2004-10-05  Juri Linkov  <juri@jurta.org>
17061
17062         * gnus-group.el (gnus-update-group-mark-positions):
17063         * gnus-sum.el (gnus-update-summary-mark-positions):
17064         * message.el (message-check-news-body-syntax):
17065         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
17066         8-bit unibyte values to a multibyte string for search functions.
17067
17068 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17069
17070         * mm-uu.el (mm-uu-dissect): Allow optional arg.
17071         (mm-uu-dissect-text-parts): New function.
17072
17073         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
17074         dissect text parts.
17075
17076         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
17077         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
17078
17079         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
17080
17081         * gnus-topic.el (gnus-topic-hierarchical-parameters):
17082         Use gnus-current-topics instead of gnus-current-topic.
17083
17084 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
17085
17086         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
17087
17088 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
17089
17090         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
17091         where approriate.
17092
17093         * nnml.el (nnml-generate-active-info): do.
17094
17095         * nndiary.el (nndiary-generate-active-info): do.
17096
17097         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
17098         (gnus-topic-move): do.
17099
17100         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
17101         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
17102
17103         * gnus-srvr.el (gnus-server-prepare)
17104         (gnus-server-open-all-servers): do.
17105
17106         * gnus-msg.el (gnus-summary-cancel-article)
17107         (gnus-summary-resend-message)
17108         (gnus-summary-mail-crosspost-complaint): do.
17109
17110         * gnus-move.el (gnus-change-server): do.
17111
17112         * gnus-group.el (gnus-group-unmark-all-groups)
17113         (gnus-group-set-current-level): do.
17114
17115 2004-10-04  Simon Josefsson  <jas@extundo.com>
17116
17117         * message.el (message-generate-hashcash): Doc fix.
17118
17119 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
17120
17121         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
17122         avoid infinite recursion via gnus-get-function.
17123
17124 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
17125
17126         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
17127
17128         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
17129
17130         * nnmail.el (nnmail-split-history): do.
17131
17132         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
17133         (nnml-request-delete-group): do.
17134
17135         * nnslashdot.el (nnslashdot-read-groups): do.
17136
17137         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
17138         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
17139
17140         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
17141         (nnspool-sift-nov-with-sed): Use last.
17142         (nnspool-retrieve-headers-with-nov): Use mapc.
17143         (nnspool-request-newgroups): Use dolist.
17144         (nnspool-request-group): Use last.
17145
17146         * nntp.el (nntp-read-server-type): Use dolist.
17147
17148         * nnvirtual.el (nnvirtual-create-mapping)
17149         (nnvirtual-update-read-and-marked): Use dolist.
17150         (nnvirtual-convert-headers): Simplify.
17151
17152 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
17153
17154         * gnus-agent.el (gnus-agent-synchronize-group-flags):
17155         Add support for sync'ing tick marks.
17156
17157 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
17158
17159         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
17160         there's no visible header.
17161
17162 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
17163
17164         * gnus-agent.el (gnus-agent-synchronize-group-flags):
17165         When necessary, pass full group name to gnus-request-set-marks.
17166
17167 2004-10-01  Simon Josefsson  <jas@extundo.com>
17168
17169         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
17170         acroread.
17171
17172 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17173
17174         * spam-report.el (spam-report-gmane): Fix interactive.
17175
17176         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
17177
17178         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
17179         when writing file.
17180         (gnus-agent-synchronize-flags): Don't default to being
17181         interactive.
17182
17183 2004-09-30  Simon Josefsson  <jas@extundo.com>
17184
17185         * message.el (message-generate-hashcash): Add.
17186         (message-send-mail): Use it, call mail-add-payment.
17187
17188 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
17189
17190         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
17191
17192 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
17193
17194         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
17195         gnus-requst-update-info with explicit code to sync the in-memory
17196         info read flags with the marks being sync'd to the backend.
17197
17198         *gnus-util.el (gnus-pp): Add optional stream to match pp API.
17199
17200 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
17201
17202         * spam.el (spam-verify-bogofilter): Add new function.
17203         (spam-check-bogofilter)
17204         (spam-bogofilter-register-with-bogofilter): Use it.
17205         (spam-verify-bogofilter): Add small fixes.
17206
17207 2004-09-28  Simon Josefsson  <jas@extundo.com>
17208
17209         * hashcash.el (hashcash-generate-payment): Revert.
17210
17211 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
17212
17213         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
17214         Use gnus-extract-references instead of gnus-split-references.
17215
17216         * gnus-util.el (gnus-extract-references): Add new function, analogous
17217         to gnus-split-references but extracts only the message-ID without
17218         anything extra.
17219
17220         * hashcash.el (hashcash-generate-payment)
17221         (hashcash-check-payment): Do the right thing if hashcash-path is
17222         nil (because the hashcash program could not be found).
17223
17224         * spam.el (spam-use-hashcash): Remove comment.
17225
17226 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
17227
17228         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
17229         (gnus-cache-enter-article, gnus-cache-remove-article)
17230         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
17231
17232         * gnus-async.el (gnus-async-prefetch-remove-group): do.
17233
17234         * gnus-art.el (article-hide-boring-headers)
17235         (article-translate-strings, article-display-face)
17236         (gnus-article-mime-match-handle-first)
17237         (gnus-article-highlight-headers)
17238         (gnus-article-add-buttons-to-head): do.
17239
17240 2004-09-27  Simon Josefsson  <jas@extundo.com>
17241
17242         * hashcash.el: New version, from
17243         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
17244         ../contrib/.
17245
17246 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17247
17248         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
17249
17250 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
17251
17252         * gnus-dup.el (gnus-dup-open): Use mapc.
17253         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
17254
17255         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
17256         Reported by Stefan Wiens <s.wi@gmx.net>.
17257
17258         * gnus.el (gnus-shutdown): Use dolist.
17259
17260         * gnus-undo.el (gnus-undo): Use mapc.
17261
17262         * nnrss.el (nnrss-generate-active): do.
17263
17264         * message.el (message-cite-original-without-signature)
17265         (message-cite-original): Use mapc.
17266         (message-do-actions, message-make-forward-subject): Use dolist.
17267
17268 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
17269
17270         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
17271         deletion to remove entire duplicate line.  Fixes merged article
17272         number bug.
17273
17274 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
17275
17276         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
17277         servers that are offline.  Avoids having gnus-agent-toggle-plugged
17278         first ask if you want to open a server and then, even when you
17279         responded with no, asking if you want to synchronize the server's
17280         flags.
17281         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
17282         multi-line expressions.
17283         (gnus-agent-synchronize-group-flags): New internal function.
17284         Updates marks in memory (in the info structure) AND in the
17285         backend.
17286
17287         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
17288
17289         * nnagent.el (nnagent-request-set-mark):
17290         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
17291         method, to ensure that synchronization updates marks in the
17292         backend and in the info (in memory) structure.
17293
17294 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17295
17296         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
17297         convention fully; don't miss the root article of a thread; make
17298         the X-Draft-From header with correct article numbers.
17299
17300 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
17301
17302         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
17303         unless plugged.  Disable the agent so that an open failure causes
17304         an error.
17305
17306         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
17307         Revert 2004-09-21 change.  The backend must be opened while
17308         synchronizing flags even when the backend stores the flags
17309         locally.
17310
17311 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
17312
17313         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
17314         in `header' match.  Reported by Svend Tollak Munkejord.
17315
17316         * message.el (message-cite-original): Fix use of
17317         `message-cite-articles-with-x-no-archive'.
17318
17319 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17320
17321         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
17322         (gnus-window-to-buffer): Ditto.
17323
17324         * mml.el (mml-preview-buffer): New variable.
17325         (mml-preview): Manage window layout with gnus-buffer-configuration.
17326
17327         * gnus-msg.el (gnus-setup-message): Put article numbers into the
17328         X-Draft-From header even if those articles aren't quoted.
17329
17330 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
17331
17332         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
17333         (gnus-request-set-mark, gnus-request-update-mark): Use new
17334         g-s-t-u-l-m to decide to use backend even when unplugged.
17335
17336 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
17337
17338         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
17339         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
17340
17341 2004-09-20  Simon Josefsson  <jas@extundo.com>
17342
17343         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
17344         "utf-16-le".
17345
17346 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17347
17348         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
17349
17350 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
17351
17352         * uudecode.el (uudecode-use-external): Add :version.
17353
17354         * smime.el (smime-CA-file, smime-encrypt-cipher)
17355         (smime-dns-server): Add :version.
17356
17357         * smiley.el (gnus-smiley-file-types): Add :version.
17358
17359         * sha1.el (sha1-use-external): Add :version.
17360
17361         * pgg-def.el (pgg-query-keyserver): Add :version.
17362
17363         * nnmail.el (nnmail-fancy-expiry-targets)
17364         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
17365         Add :version.
17366
17367         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
17368         (nnimap-retrieve-groups-asynchronous): Add :version.
17369         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
17370
17371         * mml.el (mml-content-disposition-parameters)
17372         (mml-insert-mime-headers-always): Add :version.
17373
17374         * mm-util.el (mm-coding-system-priorities): Add :version.
17375
17376         * mm-decode.el (mm-inline-text-html-with-images)
17377         (mm-keep-viewer-alive-types, mm-external-terminal-program)
17378         (mm-verify-option): Add :version.
17379         (mm-text-html-renderer): Change :version.
17380
17381         * message.el (message-fcc-externalize-attachments)
17382         (message-required-headers, message-draft-headers)
17383         (message-subject-trailing-was-query)
17384         (message-subject-trailing-was-ask-regexp)
17385         (message-subject-trailing-was-regexp, message-mark-insert-begin)
17386         (message-mark-insert-end, message-archive-header)
17387         (message-archive-note, message-cross-post-default)
17388         (message-cross-post-note, message-followup-to-note)
17389         (message-cross-post-note-function, message-use-mail-followup-to)
17390         (message-subscribed-address-functions)
17391         (message-subscribed-address-file, message-subscribed-addresses)
17392         (message-subscribed-regexps, message-allow-no-recipients)
17393         (message-yank-cited-prefix, message-signature-insert-empty-line)
17394         (message-hidden-headers, message-hierarchical-addresses)
17395         (message-mail-user-agent, message-use-idna)
17396         (message-valid-fqdn-regexp)
17397         (message-strip-special-text-properties, message-header-synonyms)
17398         (message-beginning-of-line, message-tab-body-function): Add :version.
17399         (message-insert-canlock, message-wide-reply-confirm-recipients):
17400         Change :version.
17401
17402         * mail-source.el (mail-source-ignore-errors): Add :group, :type
17403         and :version.
17404         (mail-source-delete-old-incoming-confirm)
17405         (mail-source-movemail-program): Add :version.
17406
17407         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
17408         (gnus-agent-cache, gnus-agent): Change :version.
17409
17410         * gnus-util.el (gnus-use-byte-compile): Change :version.
17411
17412         * gnus-sum.el (gnus-summary-make-false-root-always)
17413         (gnus-summary-default-high-score)
17414         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
17415         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
17416         (gnus-read-all-available-headers, gnus-article-emulate-mime)
17417         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
17418         (gnus-sum-thread-tree-single-indent)
17419         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
17420         (gnus-sum-thread-tree-leaf-with-other)
17421         (gnus-sum-thread-tree-single-leaf): Add :version.
17422         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
17423         (gnus-article-loose-mime): Change :version.
17424
17425         * gnus-start.el (gnus-backup-startup-file)
17426         (gnus-save-startup-file-via-temp-buffer): Add :version.
17427
17428         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
17429         (gnus-server-offline-face): Add :version.
17430
17431         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
17432
17433         * gnus-msg.el (gnus-gcc-externalize-attachments)
17434         (gnus-debug-files, gnus-debug-exclude-variables)
17435         (gnus-discouraged-post-methods): Change :version.
17436         (gnus-confirm-mail-reply-to-news)
17437         (gnus-confirm-treat-mail-like-news): Add :version.
17438
17439         * gnus-int.el (gnus-server-unopen-status): Add :version.
17440
17441         * gnus-group.el (gnus-group-jump-to-group-prompt)
17442         (gnus-large-ephemeral-newsgroup)
17443         (gnus-fetch-old-ephemeral-headers): Add :version.
17444
17445         * gnus-fun.el (gnus-x-face-directory)
17446         (gnus-convert-pbm-to-x-face-command)
17447         (gnus-convert-image-to-x-face-command)
17448         (gnus-convert-image-to-face-command): Add :version.
17449
17450         * gnus-delay.el (gnus-delay-default-hour): Add :version.
17451
17452         * gnus-cite.el (gnus-cite-blank-line-after-header)
17453         (gnus-article-boring-faces): Add :version.
17454
17455         * gnus-art.el (gnus-buttonized-mime-types)
17456         (gnus-inhibit-mime-unbuttonizing)
17457         (gnus-treat-display-face)
17458         (gnus-treat-body-boundary): Change :version.
17459         (gnus-body-boundary-delimiter, gnus-picon-databases)
17460         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
17461         (gnus-treat-date-english, gnus-treat-fold-headers)
17462         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
17463         (gnus-treat-mail-picon, gnus-treat-wash-html)
17464         (gnus-article-encrypt-protocol)
17465         (gnus-use-idna, gnus-article-over-scroll)
17466         (gnus-mime-display-multipart-alternative-as-mixed)
17467         (gnus-mime-display-multipart-related-as-mixed)
17468         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
17469         (gnus-ctan-url, gnus-button-ctan-handler)
17470         (gnus-button-handle-ctan-bogus-regexp)
17471         (gnus-button-ctan-directory-regexp)
17472         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
17473         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
17474         (gnus-button-man-level, gnus-button-emacs-level)
17475         (gnus-button-message-level, gnus-button-browse-level): Add :version.
17476
17477         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
17478         (gnus-agent-go-online): Change :version.
17479         (gnus-agent-expire-unagentized-dirs)
17480         (gnus-agent-auto-agentize-methods): Add :version.
17481
17482         * flow-fill.el (fill-flowed-display-column)
17483         (fill-flowed-encode-column): Add :version.
17484
17485         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
17486         (gnus-outlook-deuglify-unwrap-max)
17487         (gnus-outlook-deuglify-cite-marks)
17488         (gnus-outlook-deuglify-unwrap-stop-chars)
17489         (gnus-outlook-deuglify-no-wrap-chars)
17490         (gnus-outlook-deuglify-attrib-cut-regexp)
17491         (gnus-outlook-deuglify-attrib-verb-regexp)
17492         (gnus-outlook-deuglify-attrib-end-regexp)
17493         (gnus-outlook-display-hook): Add :version.
17494
17495         * binhex.el (binhex-use-external): Add :version.
17496
17497 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
17498
17499         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
17500         and `invisible'.
17501
17502 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
17503
17504         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
17505         in gnus-registry-trim.
17506
17507 2004-09-13  Simon Josefsson  <jas@extundo.com>
17508
17509         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
17510
17511         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
17512
17513         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
17514         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
17515         <yamaoka@jpl.org>.
17516         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
17517         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
17518         <yamaoka@jpl.org>.
17519
17520         * sieve.el (sieve-manage-mode): Ditto.
17521
17522 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
17523
17524         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
17525
17526 2004-09-11  Simon Josefsson  <jas@extundo.com>
17527
17528         * dns-mode.el: Add.
17529
17530         * mm-view.el (mm-display-dns-inline): Add.
17531
17532         * mm-decode.el (mm-inline-media-tests): Add text/dns.
17533         (mm-automatic-display): Ditto.
17534
17535         * mailcap.el (mailcap-mime-data): Add text/dns.
17536         (mailcap-mime-extensions): Map .soa to text/dns.
17537
17538 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
17539
17540         * gnus-art.el (article-decode-mime-words, article-babel)
17541         (gnus-article-highlight-signature, gnus-article-add-buttons)
17542         (gnus-signature-toggle): Remove unnecessary bindings of
17543         `inhibit-read-only' inherited from v5.10 merge.
17544
17545 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
17546
17547         * nntp.el (nntp): New customization group.
17548         (nntp-authinfo-file): Add customization group.
17549
17550         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
17551
17552         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
17553
17554         * gnus.el (to-address, to-list, subscribed)
17555         (large-newsgroup-initial): Ditto.
17556
17557         * flow-fill.el (fill-flowed-display-column)
17558         (fill-flowed-encode-column): Ditto.
17559
17560 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
17561
17562         * message.el (message-tokenize-header, message-send-mail-with-qmail):
17563         Use point-min rather than 1.
17564         (message-send-mail): Use buffer-size rather than point-max.
17565
17566         * gnus-sum.el (gnus-summary-search-article-forward):
17567         Signal a specific `search-failed' rather than a generic `error'.
17568
17569         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
17570         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
17571         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
17572
17573 2004-09-10  Simon Josefsson  <jas@extundo.com>
17574
17575         * nndb.el (require): Remove tcp and duplicate cl.
17576
17577 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
17578
17579         * gnus-agent.el (directory-files-and-attributes): Move forward.
17580
17581 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
17582
17583         * gnus-agent.el (directory-files-and-attributes):
17584         Optionally defined to support XEmacs.
17585
17586 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
17587
17588         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
17589         to avoid run-time CL dependencies.
17590         (gnus-agent-unfetch-articles): New function.
17591         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
17592         article numbers even when local .overview file is missing.
17593         (gnus-agent-read-article-number): New function.  Only accepts
17594         27-bit article numbers.
17595         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
17596         Use gnus-agent-read-article-number.
17597         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
17598         from backend while recognizing that article numbers in .overview
17599         must be valid.
17600         (gnus-agent-update-files-total-fetched-for):
17601         Use directory-files-and-attributes to improve performance.
17602         * gnus-int.el (gnus-request-move-article):
17603         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
17604         improve performance.
17605
17606         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
17607         some users confused by references to .newsrc when they only have a
17608         .newsrc.eld file.
17609         (gnus-convert-mark-converter-prompt)
17610         (gnus-convert-converter-needs-prompt): Fix use of property list.
17611         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
17612         New function.  Used internally to only display 'gnus converting
17613         files' message when actually necessary.
17614
17615         * gnus-sum.el (): Remove (require 'gnus-agent) as required
17616         methods now autoloaded.
17617
17618 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
17619
17620         * gnus-sum.el (gnus-summary-insert-subject): Remove list
17621         identifiers.
17622
17623 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
17624
17625         * gnus-picon.el: Fix indentation and closing parenthesis.
17626
17627 2004-09-01  Simon Josefsson  <jas@extundo.com>
17628
17629         * message.el (message-canlock-generate): Require sha1, not
17630         sha1-el.  (Can we get rid of this require altogether?  It is ugly
17631         to require within a function.  Sadly, if sha1.el isn't loaded, the
17632         let binding in m-c-g will hide the defcustom definition, which is
17633         bad.)
17634
17635         * canlock.el: Require sha1, not sha1-el.
17636
17637         * message.el: Don't autoload sha1 (there is a autoload cookie in
17638         sha1.el).
17639
17640         * sha1-el.el: Rename to sha1.el.
17641
17642 2004-08-30  Juanma Barranquero  <lektu@terra.es>
17643
17644         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
17645
17646 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
17647
17648         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
17649
17650 2004-08-30  Kim F. Storm  <storm@cua.dk>
17651
17652         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
17653
17654         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
17655         Add :group 'nnimap.
17656
17657 2004-08-30  Andreas Schwab  <schwab@suse.de>
17658
17659         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
17660         ?* and ?\;.
17661
17662         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
17663         and ?\' to symbol instead of whitespace.
17664
17665 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
17666
17667         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
17668
17669         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
17670         instead of re-search-forward.
17671
17672         * gnus-uu.el (gnus-uu-save-article): Ditto.
17673         (gnus-uu-post-encode-uuencode): Ditto.
17674
17675         * html2text.el (html2text-clean-list-items): Ditto.
17676         (html2text-clean-dtdd): Ditto.
17677         (html2text-format-tags): Ditto.
17678
17679         * message.el (message-send-mail-with-sendmail): Fix regexp.
17680         (message-fill-field-general): Use search-forward instead of
17681         re-search-forward.
17682         (unbold-region): Ditto.
17683
17684         * nnrss.el (nnrss-request-article): Ditto.
17685
17686         * nnslashdot.el (nnslashdot-request-article): Ditto.
17687
17688         * nnweb.el (nnweb-gmane-wash-article): Ditto.
17689
17690         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
17691         "Unrecognized menu descriptor" error in XEmacs.
17692
17693 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
17694
17695         * gnus-sum.el (gnus-read-header): Don't remove a header for the
17696         parent article of a sparse article in the thread hashtb.
17697
17698 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
17699
17700         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
17701         (nnmail-expand-newtext): Lowercase expanded entries if
17702         nnmail-split-lowercase-expanded is non-nil.
17703
17704 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17705
17706         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
17707
17708         * gnus-group.el (gnus-group-line-format-alist): Convert the value
17709         of gnus-tmp-news-method into string under XEmacs.  It will be
17710         passed to gnus-correct-length which takes only a string argument.
17711
17712 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17713
17714         * gnus-util.el (gnus-bind-print-variables): New macro.
17715         (gnus-prin1): Use it.
17716         (gnus-prin1-to-string): Use it.
17717         (gnus-pp): New function.
17718         (gnus-pp-to-string): New function.
17719
17720         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
17721         Replace pp-to-string with gnus-pp-to-string.
17722         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
17723         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
17724         * gnus-msg.el (gnus-debug): Ditto.
17725         * gnus-score.el (gnus-score-save): Ditto.
17726         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
17727         gnus-pp-to-string.
17728         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
17729         with gnus-pp.
17730         * score-mode.el (gnus-score-pretty-print): Ditto.
17731         * webmail.el (webmail-debug): Ditto.
17732
17733 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17734
17735         * gnus-art.el (article-display-face, article-display-x-face):
17736         Use buffer-read-only.
17737
17738 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17739
17740         * gnus-art.el (article-hide-list-identifiers):
17741         Bind inhibit-read-only as t.
17742
17743 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
17744
17745         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
17746
17747 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
17748
17749         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
17750         (gnus-narrow-to-page): Don't assume point-min == 1.
17751         (gnus-article-edit-mode): Derive from message-mode.
17752
17753         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
17754         point-min == 1.
17755
17756         * imap.el (imap-parse-address-list, imap-parse-body-ext):
17757         Disable incorrect use of `assert'.
17758
17759         * message.el (message-mode): Set comment-start-skip.
17760
17761
17762 2004-08-22  Sam Steingold  <sds@gnu.org>
17763
17764         * pop3.el (pop3-leave-mail-on-server): New user variable.
17765         (pop3-movemail): Delete mail only when it is nil.
17766
17767 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
17768
17769         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
17770
17771         * mml.el (mml-preview): Use `pop-to-buffer'.
17772
17773         * message.el (message-goto-mail-followup-to): Insert after "To".
17774         (message-carefully-insert-headers): Add comment.
17775
17776         * gnus.el: Remove unused variable `gnus-article-check-size'.
17777
17778         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
17779
17780         * gnus-art.el (gnus-button-alist):
17781         Improve `gnus-button-handle-library' entry.
17782
17783 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
17784
17785         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
17786         Use downcase, since XEmacs capitalizes error messages differently.
17787
17788 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
17789
17790         * nntp.el: Add (require 'gnus) due to reference to
17791         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
17792
17793 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
17794
17795         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
17796         Bind `mm-fill-flowed'.
17797
17798         * mm-decode.el (mm-dissect-singlepart): Check it.
17799
17800 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
17801
17802         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
17803         'imap' for netrc parsing.
17804
17805 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
17806
17807         * mailcap.el (mailcap-mime-data): Mark as risky.
17808
17809 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17810
17811         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
17812         may be included in the encoded word.
17813         (rfc2047-encode): Don't append a space if the encoded word
17814         includes close parenthesis.
17815
17816 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17817
17818         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
17819         of text within parentheses.
17820
17821 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
17822
17823         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
17824         (gnus-encrypt-write-file-contents): Make the password key the file
17825         name PLUS the cipher, not just the cipher.  Also remove failed
17826         passwords from the cache.
17827
17828 2004-08-06  Simon Josefsson  <jas@extundo.com>
17829
17830         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
17831         Doc fix.
17832
17833 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
17834
17835         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
17836         LWSP.
17837
17838 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
17839
17840         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
17841         Try to append in-reply-to: data to the references: header.
17842
17843         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
17844         (netrc-parse): Use gnus-encrypt.el functions.
17845
17846         * gnus-encrypt.el: Add new file for encryption support; currently
17847         does only a few GPG ciphers and an internal XOR cipher.
17848
17849         * password.el: Add comments on using password-read-and-add.
17850         (password-read-and-add): Add function to read and add the
17851         password to the cache at once.
17852
17853 2004-07-28  Simon Josefsson  <jas@extundo.com>
17854
17855         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
17856         parameter (but don't use it, for now).
17857
17858         * imap.el (imap-ssl-open): Use imap-process-connection-type,
17859         instead of hard coding to nil.
17860
17861 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17862
17863         * mm-view.el (mm-inline-image-emacs): Open lines under an image
17864         as mm-inline-image-xemacs does.
17865
17866 2004-07-26  Simon Josefsson  <jas@extundo.com>
17867
17868         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
17869         Revert part of 2004-07-17 change below.
17870
17871 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17872
17873         * rfc2047.el (rfc2047-encode-region): Don't infloop.
17874         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
17875
17876 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17877
17878         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
17879         quotes that actually start with ">" at the beginning of the
17880         lines.
17881
17882 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17883
17884         * rfc2047.el (rfc2047-encode-region): Fix last change.
17885         (rfc2047-encode-parameter): Remove useless concat.
17886
17887 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17888
17889         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
17890         encode special characters; fix some kind of misconfigured headers;
17891         signal a real error if debug-on-quit or debug-on-error is non-nil.
17892         (rfc2047-encode-max-chars): New variable.
17893         (rfc2047-encode-1): Use it.
17894         (rfc2047-encode-parameter): New function.
17895
17896         * mml.el (mml-insert-parameter): Remove an excessive space.
17897
17898 2004-07-17  Simon Josefsson  <jas@extundo.com>
17899
17900         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
17901         Kai Grossjohann <kai@emptydomain.de>.
17902         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
17903         (gnus-group-make-menu-bar): Ditto.
17904
17905         * gnus-util.el (gnus-group-server): Add.
17906
17907 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
17908
17909         * message.el (message-clone-locals): Clone sendmail and smtp
17910         variables.
17911
17912 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17913
17914         * rfc2047.el (rfc2047-encode-region): Fix last change.
17915
17916 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17917
17918         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
17919         characters as non-special.
17920
17921 2004-07-09  Simon Josefsson  <jas@extundo.com>
17922
17923         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
17924         Users will lose all flag changes made while unplugged with
17925         e.g. nntp unless flag synchronization happens, thus `nil' is not a
17926         good default.  See numerous reports on ding mailing list.
17927
17928 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17929
17930         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
17931         add generate-head-function and generate-article-function to the
17932         rfc822-forward entry.
17933         (nndoc-rfc822-forward-generate-article): New function.
17934         (nndoc-rfc822-forward-generate-head): New function.
17935
17936         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
17937
17938 2004-07-06  Dan Christensen  <jdc@uwo.ca>
17939
17940         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
17941         respect display group parameter and gnus-summary-expunge-below.
17942         (gnus-articles-to-read): Remove unused reference to display group
17943         parameter.
17944
17945 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17946
17947         * nnheader.el (nnheader-uniquify-message-id): New experimental
17948         variable.
17949         (nnheader-nov-read-message-id): Use it.
17950
17951         * spam-report.el (spam-report-gmane): Add interactive.
17952
17953 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
17954
17955         * mm-encode.el (mm-content-transfer-encoding-defaults):
17956         Use qp-or-base64 for the application/* types.
17957
17958 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
17959
17960         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
17961
17962 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
17963
17964         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
17965         trim value.
17966
17967 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
17968
17969         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
17970         New macro and function.
17971         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
17972
17973 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17974
17975         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
17976         after-load-alist.
17977
17978 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17979
17980         * gnus-group.el (gnus-group-get-new-news-this-group):
17981         Don't update info that isn't there.
17982
17983 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
17984
17985         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
17986         entry.
17987
17988 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17989
17990         * mm-view.el (mm-inline-render-with-function): Use multibyte
17991         buffer; decode html source by charset.
17992
17993         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
17994
17995         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
17996         Mule-UCS is loaded under XEmacs.
17997         (mm-mime-mule-charset-alist): Avoid duplicated entries.
17998
17999 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
18000
18001         * nnheader.el (nnheader-max-head-length): Increase to 8192.
18002
18003 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18004
18005         * mm-util.el (mm-coding-system-p): Return a coding-system.
18006         (mm-mime-mule-charset-alist): Use shift_jis instead of
18007         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
18008         entries for the mime charsets iso-2022-jp-3 and shift_jis.
18009         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
18010         instead of japanese-shift-jis and iso-latin-1 respectively in
18011         order to share the default value with both Emacs and XEmacs-mule.
18012         (mm-mule-charset-to-mime-charset):
18013         Make mm-coding-system-priorities effective.
18014         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
18015         while predicating of candidates upon the priorities.
18016
18017 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
18018
18019         * gnus-sum.el (gnus-summary-make-menu-bar):
18020         Add gnus-uu-invert-processable.
18021
18022         * gnus.el: Autoload gnus-uu-invert-processable.
18023
18024 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18025
18026         * mm-util.el (mm-with-multibyte-buffer): New macro.
18027
18028         * rfc2047.el (rfc2047-encode-string): Use it.
18029         (rfc2047-encode-region): Move point to the end of the region after
18030         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
18031
18032 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18033
18034         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
18035         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
18036
18037 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18038
18039         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
18040         (gnus-cite-parse): Ignore quoted envelope From_.
18041         Suggested by Karl Chen <quarl@nospam.quarl.org>.
18042
18043 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
18044
18045         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
18046         invalid addresses.
18047
18048 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
18049
18050         * spam.el: Change section markers, revise TODO list.
18051         (spam-backends): Make new master list of all installed backends.
18052         (spam-summary-exit-behavior): Add new variable to determine how
18053         messages moves are done at summary exit.
18054         (spam-move-spam-nonspam-groups-only)
18055         (spam-process-ham-in-nonham-groups)
18056         (spam-process-ham-in-spam-groups): Remove variables, the
18057         spam-summary-exit-behavior variable should be used to manage this
18058         behavior.
18059         (spam-old-ham-articles, spam-old-spam-articles): Remove.
18060         (spam-old-articles): Add variable, replacing spam-old-ham-articles
18061         and spam-old-spam-articles.
18062         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
18063         Add empty variables, placeholders for the backends they represent.
18064         (spam-set-difference): Move, unchanged.
18065         (spam-list-of-processors): Declare OBSOLETE, not used anymore
18066         unless the user has a processor variable.
18067         (spam-classifications, spam-classification-valid-p)
18068         (spam-backend-properties, spam-backend-property-valid-p)
18069         (spam-backend-function-type-valid-p)
18070         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
18071         (spam-report-articles-gmane, spam-report-articles-resend):
18072         Remove functions, they are not needed.
18073         (spam-install-backend-super, spam-backend-list)
18074         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
18075         (spam-backend-function, spam-backend-ham-registration-function)
18076         (spam-backend-spam-registration-function)
18077         (spam-backend-ham-unregistration-function)
18078         (spam-backend-spam-unregistration-function)
18079         (spam-backend-statistical-p, spam-backend-mover-p)
18080         (spam-install-backend-alias, spam-install-checkonly-backend)
18081         (spam-install-mover-backend, spam-install-nocheck-backend)
18082         (spam-install-backend, spam-install-statistical-backend)
18083         (spam-install-statistical-checkonly-backend): Add backend installation
18084         support.
18085         (spam-summary-prepare-exit): Rewrite to use the new backend code.
18086         (spam-group-processor-p): Use the new backend code and respect the
18087         summary exit behavior.
18088         (spam-mark-spam-as-expired-and-move-routine): Remove.
18089         (spam-summary-prepare): Change to use the new spam-old-articles
18090         variable.
18091         (spam-copy-or-move-routine, spam-copy-spam-routine)
18092         (spam-move-spam-routine, spam-copy-ham-routine)
18093         (spam-move-ham-routine): Add code to copy/move ham or spam.
18094         (spam-fetch-field-fast): Improve doc and code, plus allow the
18095         'number request.
18096         (spam-list-of-checks, spam-list-of-statistical-checks):
18097         Remove variables.
18098         (spam-split, spam-find-spam): Use the new backend code.
18099         (spam-registration-functions): Remove variable.
18100         (spam-unregister-routine): Add convenience wrapper.
18101         (spam-log-undo-registration, spam-register-routine)
18102         (spam-log-processing-to-registry)
18103         (spam-log-unregistration-needed-p): Rename "check" to "backend"
18104         where possible.
18105         (spam-check-gmane-xref, spam-check-regex-headers)
18106         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
18107         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
18108         (spam-check-bogofilter-headers, spam-check-spamoracle)
18109         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
18110         (spam-check-crm114-headers): Use the spam-split-group that
18111         spam-split prepares, no need to determine it every time.
18112
18113         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
18114         to the nnheader-parse-naked-head call.
18115
18116         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
18117
18118         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
18119         the nnheader-nov-read-message-id call.
18120
18121 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
18122
18123         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
18124         gnus-activate-group twice.  Suggested by Markus Peter
18125         <warp@spin.de>.
18126
18127 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
18128
18129         * gnus-art.el (gnus-article-time-format): Exchange the order of
18130         day and month in the default value; fix customization type.
18131         (article-date-ut): Use add-text-properties.
18132         (article-make-date-line): Use message-make-date instead of
18133         current-time-string.
18134
18135         * message.el (message-fetch-field): Don't use set-text-properties.
18136         (message-make-date): Simplify.
18137
18138         * messagexmas.el (message-xmas-make-date): New function.
18139         (message-xmas-redefine): Defalias message-make-date to it.
18140
18141 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18142
18143         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
18144         (rfc2047-encode-region): Treat text within parentheses as special;
18145         show the original text when error has occurred.
18146
18147         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
18148         already-computed method to gnus-activate-group.
18149
18150         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
18151         same select-methods identical Lisp objects.
18152
18153         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
18154         object when modifying the info.
18155
18156 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18157
18158         * gnus-srvr.el (gnus-server-set-info): Remove the server from
18159         gnus-opened-servers since it has never been opened with the new
18160         configuration yet.
18161
18162 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18163
18164         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
18165         arg to nnheader-generate-fake-message-id.
18166
18167 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
18168
18169         * nnheader.el (nnheader-generate-fake-message-id): Accept a
18170         number and build a fake message ID localized to a group and
18171         article number (so it's repeatable from that point on).
18172         (nnheader-fake-message-id-p): Change regex to accomodate new fake
18173         ID format.
18174
18175         * gnus-sum.el (gnus-get-newsgroup-headers):
18176         Call nnheader-generate-fake-message-id with the article number.
18177
18178 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
18179
18180         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
18181         end-of-buffer.
18182
18183 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18184
18185         * message.el (message-ignored-supersedes-headers): Add Approved.
18186
18187 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
18188
18189         * rfc2047.el (rfc2047-encode-message-header): Remove useless
18190         goto-char.
18191         (rfc2047-encode): Fold the line before encoding.
18192
18193 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18194
18195         * rfc2047.el (rfc2047-encode-message-header): Disabled header
18196         folding -- not all headers can be folded, and this should be done
18197         by the message composition mode.  Probably.  I think.
18198
18199 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18200
18201         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
18202         fast.
18203
18204         * gnus-ems.el (gnus-remove-image): Don't use
18205         message-text-with-property; remove only the image found first.
18206
18207         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
18208         found first.
18209
18210 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
18211
18212         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
18213
18214 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18215
18216         * message.el (message-text-with-property): Make it fast and accept
18217         optional arguments.
18218         (message-strip-forbidden-properties): Use it.
18219         (message-fix-before-sending): Follow the m-t-w-p change.
18220
18221         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
18222
18223 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18224
18225         * gnus-art.el (article-hide-headers): Don't change the buffer
18226         mistakenly when performing mml-preview even if
18227         gnus-single-article-buffer is nil.
18228
18229 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
18230
18231         * message.el (message-expand-name-databases): New user option.
18232         (message-expand-name): Use it.
18233
18234 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
18235
18236         * spam.el (spam-report-articles-resend)
18237         (spam-report-resend-register-routine): Allow ham reporting.
18238         (spam-report-resend-register-ham-routine): Add wrapper.
18239         (spam-registration-functions): Add ham resending functions.
18240         (spam-list-of-processors): Add ham resend processor.
18241
18242         * gnus.el (ham-resend-to): Add new group parameter.
18243         (spam-process): Add ham resend option.
18244
18245         * spam-report.el (spam-report-resend): Allow reporting ham.
18246         (spam-report-resend-ham): Add wrapper.
18247
18248 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18249
18250         * message.el (message-cite-articles-with-x-no-archive):
18251         New variable.
18252         (message-cite-original): Use it.
18253
18254 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18255
18256         * message.el (message-cite-original): Respect X-No-Archive.
18257
18258 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18259
18260         * gnus-art.el (article-hide-headers): Refer to the values for
18261         gnus-ignored-headers and gnus-visible-headers in the summary
18262         buffer since a user may have set them as group parameters.
18263
18264 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
18265
18266         * assistant.el (assistant-node-name): Add convenience function.
18267         (assistant-render-text, assistant-render-node): Add error handling,
18268         plus handle multiple next nodes.
18269         (assistant-find-next-node): Comment out for now.
18270         (assistant-find-next-nodes): Add function, returns list of next
18271         nodes.
18272
18273 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
18274
18275         * mail-source.el (mail-source-directory): Fix doc-string.
18276
18277 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
18278
18279         * assistant.el (assistant-render-text, assistant-eval): Add :set
18280         widget type, which is different because it takes and returns a
18281         list.  Much hilarity ensues.
18282
18283 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
18284
18285         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
18286
18287         * gnus-group.el (gnus-group-get-new-news-this-group):
18288         Add doc-string.
18289
18290         * gnus-start.el (gnus-activate-group): Add doc-string.
18291
18292 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18293
18294         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
18295
18296 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
18297
18298         * assistant.el (assistant-render-text): Try to add a :set
18299         widget, more to come.
18300
18301         * spam.el (spam-group-spam-contents-p): Handle empty groupname
18302         strings.
18303         (spam-report-articles-resend)
18304         (spam-register-routine): Do registration iff any articles warrant
18305         it.
18306         (spam-summary-prepare-exit): Change log message for nil group
18307         destinations.
18308
18309 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
18310
18311         * spam.el (spam-report-resend-register-routine):
18312         Allow spam-report-resend-to to be a group parameter or a global value.
18313
18314 2004-05-26  Simon Josefsson  <jas@extundo.com>
18315
18316         * starttls.el: Merge with my GNUTLS based starttls.el.
18317         (starttls-gnutls-program, starttls-use-gnutls)
18318         (starttls-extra-arguments, starttls-process-connection-type)
18319         (starttls-connect, starttls-failure, starttls-success):
18320         New variables.
18321         (starttls-program, starttls-extra-args): Doc fix.
18322         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
18323         New functions.
18324         (starttls-negotiate, starttls-open-stream):
18325         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
18326         function if it is set.
18327
18328 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18329
18330         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
18331         structured fields.
18332
18333 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18334
18335         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
18336
18337 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
18338
18339         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
18340         Add variable.
18341         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
18342         assigning the spam-mark to new messages.
18343
18344 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
18345
18346         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
18347
18348 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18349
18350         * dgnushack.el: Autoload customize-set-variable for XEmacs.
18351
18352         * rfc2047.el (rfc2047-encodable-p): Don't move point.
18353         (rfc2047-decode): Treat the ascii coding-system as raw-text by
18354         default.
18355
18356 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
18357
18358         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
18359         correct data.
18360
18361 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
18362
18363         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
18364         (spam-group-processor-p): Fix function.
18365         (spam-group-processor-multiple-p)
18366         (spam-group-spam-processor-report-gmane-p)
18367         (spam-group-spam-processor-report-resend-p)
18368         (spam-group-spam-processor-bogofilter-p)
18369         (spam-group-spam-processor-blacklist-p)
18370         (spam-group-spam-processor-ifile-p)
18371         (spam-group-ham-processor-ifile-p)
18372         (spam-group-spam-processor-spamoracle-p)
18373         (spam-group-spam-processor-crm114-p)
18374         (spam-group-ham-processor-bogofilter-p)
18375         (spam-group-spam-processor-stat-p)
18376         (spam-group-ham-processor-stat-p)
18377         (spam-group-ham-processor-whitelist-p)
18378         (spam-group-ham-processor-BBDB-p)
18379         (spam-group-ham-processor-spamoracle-p)
18380         (spam-group-ham-processor-copy-p): Remove functions with some
18381         prejudice against unneeded code.
18382         (spam-report-articles-resend)
18383         (spam-report-resend-register-routine): Allow the group/topic
18384         spam-resend-to value to override spam-report-resend-to.
18385         (spam-summary-prepare-exit): Invoke spam-group-processor-p
18386         properly now.
18387
18388         * gnus.el (spam-resend-to): Add group/topic parameter.
18389         (spam-process): Move the OBSOLETE processors to the end of the
18390         choices.
18391
18392 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
18393
18394         * spam-report.el (spam-report-resend-to, spam-report-resend):
18395         Start with resend-to set to nil, and then ask the user if necessary.
18396         (spam-report-resend): spam-report-resend takes a list of articles, not
18397         separate article numbers.
18398
18399 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18400
18401         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
18402         addition to emacs-w3m.
18403
18404 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18405
18406         * assistant.el (assistant-authinfo-data): New function.
18407         (assistant-eval): Eval for entire assistant.
18408
18409         * netrc.el (netrc-services-file): New variable.
18410         (netrc-parse-services): New function.
18411         (netrc-find-service-name): New function.
18412         (netrc-find-service-number): New function.
18413         (netrc-port-equal): New function.
18414         (netrc-machine): Use it.
18415
18416         * nnimap.el (nnimap-open-connection): Use netrc.
18417
18418         * gnus-util.el (gnus-netrc-get): Remove aliases.
18419
18420         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
18421
18422         * assistant.el (wid-edit): Fix compilation.
18423
18424         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
18425
18426 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
18427
18428         * gnus-util.el (gnus-set-file-modes): New function.  (small
18429         patch).
18430
18431 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18432
18433         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
18434
18435         * assistant.el (assistant-render-node): Fix up rendering and
18436         read-only text.
18437         (assistant-render-node): Reset.
18438         (assistant-make-read-only): Not sticky.
18439
18440 2004-05-20  Danny Siu  <dsiu@adobe.com>
18441
18442         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
18443         centered even when gnus-auto-center-summary is t.
18444
18445 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18446
18447         * dns.el (dns-get-txt-answer): New function.
18448         (dns-read-txt): Ditto.
18449         (query-dns): Use it.
18450
18451 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
18452
18453         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
18454         active for foreign groups even if the group level is higher than
18455         the specified value.
18456
18457 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18458
18459         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
18460         non-active groups.
18461
18462         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
18463
18464 2004-05-20  Magnus Henoch  <mange@freemail.hu>
18465
18466         * dns.el (dns-read-type): Add support for SVR.  (small patch)
18467
18468 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
18469
18470         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
18471         (spam-crm114-header, spam-crm114-spam-switch)
18472         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
18473         (spam-crm114-positive-spam-header)
18474         (spam-crm114-database-directory, spam-list-of-processors)
18475         (spam-group-spam-processor-crm114-p)
18476         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
18477         (spam-generic-score, spam-list-of-checks)
18478         (spam-list-of-statistical-checks, spam-registration-functions)
18479         (spam-check-crm114-headers, spam-crm114-score)
18480         (spam-check-crm114, spam-crm114-register-with-crm114)
18481         (spam-crm114-register-spam-routine)
18482         (spam-crm114-unregister-spam-routine)
18483         (spam-crm114-register-ham-routine)
18484         (spam-crm114-unregister-ham-routine): Add CRM114 support.
18485         From asjo@koldfront.dk (Adam Sjøgren).
18486
18487         * gnus.el: Add spam-use-crm114.
18488
18489         * spam.el (spam-list-of-processors, spam-registration-functions):
18490         Add spam-use-resend.
18491         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
18492         (spam-report-articles-gmane): Add doc fix.
18493         (spam-report-articles-resend, spam-report-resend-register-routine):
18494         Add wrappers around spam-report-resend-to.
18495
18496         * spam-report.el (spam-report-resend-to, spam-report-resend):
18497         Add support for resending spam.
18498         (spam-report-gmane): Fix line length >80.
18499
18500         * gnus.el (spam-process): Add spam-use-resend.
18501
18502 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18503
18504         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
18505         number of processed spam messages.
18506         (spam-ham-copy-or-move-routine): Return the number of processed
18507         ham messages.
18508         (spam-summary-prepare-exit): Use the above values to decide
18509         whether status messages shouled be displayed.
18510
18511 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18512
18513         * rfc2047.el (rfc2047-encode-function-alist): Rename from
18514         `rfc2047-encoding-function-alist' in order to avoid conflicting
18515         with the old version.
18516         (rfc2047-encode-region): Concatenate words containing non-ASCII
18517         characters in structured fields; don't encode space-delimited
18518         ASCII words even in unstructured fields; don't break words at
18519         char-category boundaries.
18520         (rfc2047-encode-1): New function.
18521         (rfc2047-encode): Use it; encode text so that it occupies the
18522         maximum width within 76-column; work correctly on Q encoding for
18523         iso-2022-* charsets.
18524         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
18525         sure not to break a line just after the header name.
18526         (rfc2047-b-encode-region): Remove.
18527         (rfc2047-b-encode-string): New function.
18528         (rfc2047-q-encode-region): Remove.
18529         (rfc2047-q-encode-string): New function.
18530
18531         * mm-util.el (mm-replace-in-string): New function.
18532
18533 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18534
18535         * gnus-msg.el (gnus-inews-make-draft-meta-information):
18536         Really get it right.
18537         (gnus-inews-make-draft): Really.
18538
18539 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
18540
18541         * nnmh.el (nnmh-request-list-1): Don't check the link count
18542         before descending.  (small patch)
18543
18544 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18545
18546         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
18547         stuff.
18548
18549         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
18550         Match on real group name.
18551
18552         * gnus-art.el (gnus-signature-limit): Doc fix.
18553
18554         * gnus-msg.el (gnus-inews-make-draft): Quote list.
18555
18556         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
18557
18558 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
18559
18560         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
18561         isn't a string.
18562
18563 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18564
18565         * gnus-draft.el (gnus-draft-send):
18566         Bind rfc2047-encode-encoded-words.
18567
18568         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
18569         (rfc2047-encodable-p): Say that =? needs encoding.
18570         (rfc2047-encode-encoded-words): New variable.
18571
18572         * gnus-group.el (gnus-group-select-group): Doc fix.
18573
18574         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
18575
18576         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
18577         to nil.
18578
18579         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
18580
18581         * nnheader.el (nnheader-get-lines-and-char): New function.
18582
18583 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
18584
18585         * gnus-msg.el (gnus-summary-followup-with-original):
18586         Document yanking of region when active.
18587
18588 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18589
18590         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
18591         groups if the group level is higher than the specified value.
18592
18593 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
18594
18595         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
18596         (gnus-group-jump-to-group): Add prefix argument using
18597         `gnus-group-jump-to-group-prompt'.  Query before jumping to
18598         non-active group.
18599
18600         * compface.el (uncompface): Be verbose when changing
18601         `uncompface-use-external'.
18602
18603         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
18604         handle manual section.
18605
18606 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18607
18608         * gnus-art.el (gnus-button-alist): Revert previous change.
18609
18610 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
18611
18612         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
18613
18614 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18615
18616         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
18617         whether backend can accept message.
18618
18619         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
18620
18621 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
18622
18623         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
18624         Avoid creating directory when nntp-marks-is-evil is true.
18625         Reported by Reiner Steib.
18626
18627 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
18628
18629         * gnus-picon.el (gnus-picon-style): New variable.
18630         (gnus-picon-insert-glyph): Add optional `nostring' argument.
18631         (gnus-picon-transform-address): Support `gnus-picon-style'.
18632         From Jesper Harder <harder@ifa.au.dk>.
18633
18634 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18635
18636         * message.el (message-fill-field): Return point.
18637         (message-generate-headers): Go to end of field.
18638
18639         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
18640         stuff for non-living groups.
18641
18642 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
18643
18644         * gnus-art.el (gnus-article-followup-with-original)
18645         (gnus-article-reply-with-original): gnus-mark-active-p ->
18646         gnus-region-active-p.
18647
18648 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
18649
18650         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
18651         only when there is spam or ham to be processed.
18652
18653 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18654
18655         * mail-source.el (mail-source-delete-crash-box): Refactor.
18656         (mail-source-fetch): Use it.
18657         (mail-source-fetch-file): Ditto.
18658         (mail-source-fetch-directory): Run postscript in loop.
18659         (mail-source-fetch-pop): Delete.
18660         (mail-source-fetch-maildir): Ditto.
18661         (mail-source-fetch-imap): Ditto.
18662
18663         * imap.el (imap-authenticators): Comment out sasl.
18664
18665         * message.el (message-skip-to-next-address): New function.
18666         (message-fill-header-address): Refactor.
18667         (message-fill-address): Use it.
18668         (message-delete-address): Use it.
18669         (message-fill-header-general): Refactor.
18670         (message-fill-field-address): Rename.
18671         (message-narrow-to-field): Find the start of the header.
18672         (message-header-format-alist): Don't pre-fill.
18673         (message-fill-header): Remove.
18674         (message-insert-header): New function.
18675         (message-shorten-references): Use it.
18676
18677         * rfc2047.el (rfc2047-field-value): Strip props.
18678
18679         * mail-parse.el (mail-header-make-address): New alias.
18680
18681         * ietf-drums.el (ietf-drums-make-address): New function.
18682
18683         * imap.el: Add compiler directives.
18684
18685         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
18686
18687         * gnus-art.el (article-decode-idna-rhs): Don't use
18688         message-idna-inside-rhs-p.
18689
18690 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18691
18692         * message.el (message-idna-inside-rhs-p): Remove.
18693         (message-idna-to-ascii-rhs-1): Use proper address parsing.
18694
18695         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
18696         false positives.
18697
18698 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
18699
18700         * imap.el (imap-sasl-make-mechanisms): Use sasl.
18701
18702 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18703
18704         * nneething.el (nneething-file-name): Don't create spurious
18705         files.
18706
18707         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
18708         (gnus-inews-do-gcc): Remove sleep.
18709
18710         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
18711         part under point.
18712
18713         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
18714         (gnus-agent-regenerate-group): Using nil messages aren't valid.
18715
18716 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
18717
18718         * spam.el (spam-summary-prepare-exit): Fix (length).
18719
18720 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
18721
18722         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
18723         as expired without moving it" message when there are spam
18724         messages left.
18725
18726 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
18727
18728         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
18729         header is not nil.
18730
18731 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
18732
18733         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
18734         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
18735         (nntp-marks-changed-p): New arg SERVER.
18736         (nntp-request-update-info): Adjust caller.
18737
18738 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
18739
18740         * nntp.el (nntp-save-marks): Pass missing arg.
18741
18742 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
18743
18744         * nntp.el: Support marks.
18745         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
18746         (nntp-marks-modtime, nntp-marks-directory): New variables.
18747         (nntp-request-set-mark, nntp-request-update-info)
18748         (nntp-possibly-create-directory, nntp-marks-changed-p)
18749         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
18750         New functions.
18751
18752 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
18753
18754         * gnus-xmas.el (gnus-xmas-select-lowest-window)
18755         (gnus-xmas-redefine): Rename.
18756
18757         * gnus-score.el (gnus-score-insert-help):
18758         Use gnus-select-lowest-window.
18759
18760         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
18761         appt-select-lowest-window and rename to gnus-select-lowest-window.
18762
18763         * gnus.el: do.
18764
18765 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18766
18767         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
18768         encodings of MIME-encoded words, in order to improve
18769         interoperability with several broken MUAs.
18770
18771 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18772
18773         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
18774         tags, only when charsets are not specified in headers.
18775         (mm-inline-text-html-render-with-w3m): Ditto.
18776
18777         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
18778         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
18779
18780 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18781
18782         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
18783         instead of MIME-decoded from fields when checking
18784         `gnus-article-address-banner-alist'.
18785
18786 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
18787
18788         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
18789         description rather than subject.
18790
18791 2004-05-02  Steve Youngs  <steve@youngs.au.com>
18792
18793         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
18794
18795 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18796
18797         * gnus.el (gnus-version-number): Bump.
18798
18799 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
18800
18801         * gnus.el: No Gnus v0.2 is released.
18802
18803 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18804
18805         * gnus-agent.el (gnus-agent-read-agentview):
18806         Inline gnus-uncompress-range.
18807
18808 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18809
18810         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
18811         `exec-installed-p'.
18812
18813 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18814
18815         * gnus.el (spam-process, spam-autodetect-methods):
18816         Add bsfilter and bsfilter-headers.
18817
18818         * spam.el (spam-bsfilter): New customize group.
18819         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
18820         (spam-bsfilter-header, spam-bsfilter-probability-header)
18821         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
18822         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
18823         (spam-bsfilter-database-directory): New options.
18824         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
18825         (spam-list-of-statistical-checks, spam-registration-functions):
18826         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
18827         (spam-bsfilter-score): New command.
18828         (spam-check-bsfilter-headers, spam-check-bsfilter)
18829         (spam-bsfilter-register-with-bsfilter)
18830         (spam-bsfilter-register-spam-routine)
18831         (spam-bsfilter-unregister-spam-routine)
18832         (spam-bsfilter-register-ham-routine)
18833         (spam-bsfilter-unregister-ham-routine): New functions.
18834         (spam-generic-score): Support bsfilter; Accept an optional argument
18835         to recalcurate spam score even if scoring header has already been
18836         added.
18837         (spam-bogofilter-score, spam-spamassassin-score): Accept an
18838         optional argument to recalcurate spam score even if scoring header
18839         has already been added.
18840
18841 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
18842
18843         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
18844         strings!  Reported by David D. Smith <davidsmith@acm.org>.
18845         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
18846         link is missing.
18847
18848 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
18849
18850         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
18851         (html2text-get-attr): Rewrite.
18852
18853         * message.el (message-setup-1): Remove redundant put-text-property
18854         on mail-header-separator.
18855
18856 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
18857
18858         * gnus-registry.el (gnus-registry-cache-whitespace)
18859         (gnus-registry-action, gnus-registry-spool-action)
18860         (gnus-registry-split-fancy-with-parent): Change message levels
18861         from 5 to 3 or 7, as needed.
18862
18863         * spam.el (spam-summary-prepare-exit)
18864         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
18865         (spam-split, spam-find-spam, spam-log-undo-registration)
18866         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
18867         level from 5 to 6.
18868
18869 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18870
18871         * gnus-ems.el: Autoload appt-select-lowest-window (revert
18872         2004-03-04 change).
18873
18874 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
18875
18876         * sieve-manage.el (sieve-manage-open):
18877         * nnweb.el (nnweb-insert-html):
18878         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
18879         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
18880         * nnspool.el (nnspool-request-group):
18881         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
18882         * nnml.el (nnml-request-update-info):
18883         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
18884         (nnmh-request-create-group, nnmh-update-gnus-unreads):
18885         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
18886         (nnimap-request-set-mark):
18887         * nnfolder.el (nnfolder-request-update-info):
18888         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
18889         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
18890         * gnus-uu.el (gnus-uu-find-articles-matching):
18891         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
18892         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
18893         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
18894         * gnus-nocem.el (gnus-nocem-scan-groups):
18895         * gnus-int.el (gnus-start-news-server):
18896         * gnus-group.el (gnus-group-make-kiboze-group)
18897         (gnus-group-browse-foreign-server):
18898         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
18899         Use mapc when appropriate.
18900
18901 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
18902
18903         FIXME: Make separate entries for each person.
18904
18905         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
18906         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
18907         <shields@msrl.com>:
18908
18909         * spam.el (spam-necessary-extra-headers): Get the extra headers we
18910         may need for spam sorting and scoring.
18911         (spam-user-format-function-S): Add user format function suitable for
18912         general use.
18913         (spam-article-sort-by-spam-status): Add sorting function for summary
18914         sorting.
18915         (spam-extra-header-to-number): Add function to get a score from a
18916         header.
18917         (spam-summary-score): Add function to get a numeric score from the
18918         headers.
18919         (spam-generic-score): Fix function doc, was in wrong place.
18920         (spam-initialize): Take symbols when it's run, and install the
18921         extra headers that spam-necessary-extra-headers thinks we need.
18922
18923 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
18924
18925         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
18926         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
18927
18928 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
18929
18930         * gnus-sum.el (gnus-set-global-variables)
18931         (gnus-build-all-threads, gnus-get-newsgroup-headers)
18932         (gnus-article-get-xrefs, gnus-summary-best-group)
18933         (gnus-summary-next-article, gnus-summary-enter-digest-group)
18934         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
18935         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
18936         Use with-current-buffer.
18937
18938 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
18939
18940         * spam.el (spam-summary-prepare-exit): Simplify logic.
18941         (spam-fetch-article-header): Read the article header if it's not
18942         available.
18943         (spam-list-articles): Simplify logic.
18944         (spam-filelist-register-routine): Fix bug with unregister-list.
18945
18946         * gnus-registry.el: Fix comments at beginning.
18947
18948 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
18949
18950         * message.el (message-cater-to-broken-inn): Remove.
18951         (message-shorten-references): Make sure the total folded length of
18952         References is shorter than 998 characters to cater to a bug in INN
18953         2.3.  Also, don't pretend that references aren't folded -- this
18954         hasn't worked for a while.
18955
18956 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18957
18958         * gnus-agent.el (gnus-agentize):
18959         gnus-agent-send-mail-real-function no longer set to current value
18960         of message-send-mail-function but rather a lambda that calls
18961         message-send-mail-function.  The change makes the agent real-time
18962         responsive to user changes to message-send-mail-function.
18963
18964 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
18965
18966         * legacy-gnus-agent.el
18967         (gnus-agent-convert-to-compressed-agentview): Fix typos with
18968         help from Florian Weimer <fw@deneb.enyo.de>
18969
18970 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18971
18972         * nnmail.el (nnmail-cache-insert): Revert last change.
18973
18974 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18975
18976         * nnmail.el (nnmail-cache-insert): Always check whether
18977         nnmail-cache-ignore-groups matches a group name.
18978
18979 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
18980
18981         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
18982         (spam-find-spam, spam-log-processing-to-registry)
18983         (spam-log-registered-p, spam-log-unregistration-needed-p)
18984         (spam-log-undo-registration): Use gnus-message instead of
18985         gnus-error, none of these errors are fatal.
18986
18987         * gnus-registry.el (gnus-registry-clean-empty-function)
18988         (gnus-registry-clean-empty): Remove only empty entries without
18989         extra data.
18990
18991 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
18992
18993         * spam-stat.el (spam-stat-buffer-change-to-spam)
18994         (spam-stat-buffer-change-to-non-spam): Change (error) to
18995         (gnus-message 8) invocation.
18996
18997 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18998
18999         * nntp.el (nntp-via-netcat-command): New variable.
19000         (nntp-via-netcat-switches): New variable.
19001         (nntp-open-via-rlogin-and-netcat): New function.
19002         (nntp-open-connection-function): Doc fix.
19003         (nntp-telnet-command): Doc fix.
19004         (nntp-end-of-line): Doc fix.
19005         (nntp-via-rlogin-command): Doc fix.
19006         (nntp-via-user-name): Doc fix.
19007         (nntp-via-address): Doc fix.
19008
19009 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19010
19011         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
19012         error in Emacs 21.1.
19013
19014 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
19015
19016         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
19017
19018 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19019
19020         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
19021         (gnus-agent-with-refreshed-group): New macro.
19022         (gnus-agent-rename-group): New function.
19023         (gnus-agent-delete-group): New function.
19024         (gnus-agent-save-group-info): Use gnus-command-method when
19025         `method' parameter is nil.  Don't write nil entries into the
19026         active file.
19027         (gnus-agent-get-group-info): New function.
19028         (gnus-agent-fetch-articles):
19029         Use gnus-agent-update-files-total-fetched-for to increment disk space
19030         used.
19031         (gnus-agent-fetch-headers, gnus-agent-save-alist):
19032         Use gnus-agent-update-view-total-fetched-for to increment disk space
19033         used.
19034         (gnus-agent-get-local): Add optional parameters to avoid calling
19035         gnus-group-real-name and gnus-find-method-for-group.
19036         (gnus-agent-set-local): Delete stored entry if either min, or max,
19037         are nil.
19038         (gnus-agent-fetch-session): Reworded error/quit messages.
19039         On quit, use gnus-agent-regenerate-group to record existance of any
19040         articles fetched to disk before the quit occurred.
19041         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
19042         gnus-agent-update-view-total-fetched-for, and
19043         gnus-agent-update-files-total-fetched-for to decrement disk space
19044         used.
19045         (gnus-agent-retrieve-headers):
19046         Use gnus-agent-update-view-total-fetched-for to increment disk space
19047         used.
19048         (gnus-agent-regenerate-group): Replace gnus-group-update-group
19049         with gnus-agent-update-files-total-fetched-for to decrement disk
19050         space and fresh group buffer.
19051         (gnus-agent-inhibit-update-total-fetched-for): New variable.
19052         (gnus-agent-need-update-total-fetched-for): New variable.
19053         (gnus-agent-update-files-total-fetched-for): New function.
19054         (gnus-agent-update-view-total-fetched-for): New function.
19055         (gnus-agent-total-fetched-for): New function.
19056
19057         * gnus-cache.el (gnus-cache-save-buffers):
19058         Use gnus-cache-update-overview-total-fetched-for to change disk space
19059         used by this group.
19060         (gnus-cache-possibly-enter-article):
19061         Use gnus-cache-update-file-total-fetched-for to increment disk space
19062         used by this group.
19063         (gnus-cache-possibly-remove-article):
19064         Use gnus-cache-update-file-total-fetched-for to decrement disk space
19065         used by this group.
19066         (gnus-cache-generate-nov-databases): Purge total fetched cache.
19067         (gnus-cache-rename-group): New function.
19068         (gnus-cache-delete-group): New function.
19069         (gnus-cache-inhibit-update-total-fetched-for): New variable.
19070         (gnus-cache-need-update-total-fetched-for): New variable.
19071         (gnus-cache-with-refreshed-group): New macro.
19072         (gnus-cache-update-file-total-fetched-for): New function.
19073         (gnus-cache-update-overview-total-fetched-for): New function.
19074         (gnus-cache-rename-group-total-fetched-for): New function.
19075         (gnus-cache-delete-group-total-fetched-for): New function.
19076         (gnus-cache-total-fetched-for): New function.
19077
19078         * gnus-group.el: Require gnus-sum and autoload functions to
19079         resolve warnings when gnus-group.el compiled alone.
19080         (gnus-group-line-format): Documented new %F.
19081         (size of Fetched data) group line format; identifies disk space
19082         used by agent and cache.
19083         (gnus-group-line-format-alist): Defined new F format.
19084         (gnus-total-fetched-for): New function.
19085         (gnus-group-delete-group): No longer update
19086         gnus-cache-active-altered as gnus-request-delete-group now keeps
19087         the cache in sync.
19088         (gnus-group-list-active): Let the agent store a server's active
19089         list if currently plugged.
19090
19091         * gnus-int.el (gnus-request-delete-group):
19092         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
19093         local disk in sync with the server.
19094         (gnus-request-rename-group):
19095         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
19096         local disk in sync with the server.
19097
19098         * gnus-start.el (gnus-get-unread-articles):
19099         Cosmetic simplification to logic.
19100
19101         * gnus-util.el (gnus-rename-file): New function.
19102
19103 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
19104
19105         * mm-util.el (mm-image-load-path): Handle nil in load-path.
19106
19107 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
19108
19109         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
19110         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
19111
19112 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
19113
19114         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
19115         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
19116
19117 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
19118
19119         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
19120
19121 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
19122
19123         * spam.el (spam-set-difference): Add function to replace
19124         gnus-set-difference in spam.el.
19125         (spam-summary-prepare-exit): Use spam-set-difference.
19126
19127 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
19128
19129         * gnus-registry.el (gnus-registry-cache-file): Update to use
19130         gnus-dribble-directory OR gnus-home-directory OR ~.
19131         (gnus-registry-split-fancy-with-parent): Fix doc.
19132
19133 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19134
19135         * message.el (message-exchange-point-and-mark):
19136         Use message-mark-active-p.  Suggested by Jesper Harder
19137         <harder@ifa.au.dk>.
19138
19139 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19140
19141         * message.el (message-exchange-point-and-mark): Don't activate
19142         region if it was inactive.  Suggested by Hiroshi Fujishima
19143         <pooh@nature.tsukuba.ac.jp>.
19144
19145 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19146
19147         * gnus-art.el (article-display-face): Display Faces in the same
19148         order as X-Faces.
19149
19150 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19151
19152         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
19153
19154 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19155
19156         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
19157         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
19158         (gnus-article-mime-hierarchy): Remove.
19159         (gnus-article-mime-hierarchy-next): Remove.
19160         (gnus-article-mode): Revert 2004-03-19 change.
19161         (gnus-article-setup-buffer): Revert 2004-03-19 change.
19162         (gnus-insert-mime-button): Revert 2004-03-19 change.
19163         (gnus-mime-accumulate-hierarchy): Remove.
19164         (gnus-mime-enter-multipart): Remove.
19165         (gnus-mime-leave-multipart): Remove.
19166         (gnus-mime-display-part): Revert 2004-03-19 change.
19167         (gnus-mime-display-alternative): Revert 2004-03-19 change.
19168
19169         * mml.el (mml-preview): Revert 2004-03-19 change.
19170
19171 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
19172
19173         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
19174
19175 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19176
19177         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
19178         t while entering a file name using the mm-with-multibyte macro.
19179         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
19180
19181         * mm-util.el (mm-with-multibyte): New macro.
19182
19183 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19184
19185         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
19186         New user option.
19187         (gnus-mime-multipart-functions): Doc and customization fix.
19188         (gnus-article-mime-hierarchy): New variable.
19189         (gnus-article-mime-hierarchy-next): New variable.
19190         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
19191         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
19192         gnus-article-mime-hierarchy-next to nil.
19193         (gnus-insert-mime-button): Show hierarchy numbers.
19194         (gnus-mime-accumulate-hierarchy): New function.
19195         (gnus-mime-enter-multipart): New function.
19196         (gnus-mime-leave-multipart): New function.
19197         (gnus-mime-display-part): Recompute hierarchical MIME structure.
19198         (gnus-mime-display-alternative): Show hierarchy numbers.
19199
19200         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
19201         gnus-article-mime-hierarchy-next to nil.
19202
19203 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
19204
19205         * dns.el: Don't require gnus-xmas.
19206
19207 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
19208
19209         * mml.el (mml-generate-mime-1): Don't use format=flowed with
19210         inline PGP.
19211         (mml-menu): Disable mml-quote-region if mark is inactive.
19212
19213 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19214
19215         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
19216         when the group's active is not available.
19217
19218 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
19219
19220         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
19221         error.
19222
19223 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
19224
19225         * imap.el (imap-store-password): New variable.
19226         (imap-interactive-login): Use it.
19227         Suggested by Mark Plaksin <happy@mcplaksin.org>.
19228
19229 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19230
19231         * gnus-art.el (gnus-article-read-summary-keys): Restore new
19232         window-start and hscroll to summary window.
19233
19234 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19235
19236         * gnus-start.el (gnus-convert-old-newsrc): Only write the
19237         conversion message to newsrc-dribble when an actual conversion is
19238         performed.
19239
19240 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
19241
19242         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
19243
19244 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19245
19246         * mm-decode.el (mm-complicated-handles): New function reviving
19247         former definition of mm-multiple-handles.
19248
19249         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
19250         (gnus-mime-delete-part): Use it.
19251
19252 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19253
19254         * gnus-agent.el (gnus-agent-read-local):
19255         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
19256         avoid the implicit assumption that they will always be equal.
19257         (gnus-agent-save-local): Bind buffer-file-coding-system, not
19258         coding-system-for-write, as the with-temp-file macro first prints
19259         to a buffer then saves the buffer.
19260
19261 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19262
19263         * gnus-art.el (gnus-article-edit-part): New function.
19264         (gnus-mime-save-part-and-strip): Use it; do query instead of
19265         signaling an error; don't use mm-multiple-handles.
19266         (gnus-mime-delete-part): Ditto.
19267
19268 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19269
19270         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
19271         old file versions.
19272         (gnus-group-prepare-hook): Remove function that converted list
19273         form of gnus-agent-expire-days to group properties.
19274
19275         * gnus-int.el: Autoload gnus-agent-regenerate-group.
19276         (gnus-request-accept-article): Re-indented.
19277
19278         * gnus-start.el (gnus-convert-old-newsrc): Registered new
19279         converters to handle old agent file formats.  Add logic for a
19280         "backup before upgrading warning".
19281         (gnus-convert-mark-converter-prompt): Developers can mark
19282         functions as needing (default), or not needing,
19283         gnus-convert-old-newsrc's "backup before upgrading warning".
19284         (gnus-convert-converter-needs-prompt): Tests whether the user
19285         should be protected from potentially irreversable changes by the
19286         function.
19287
19288         * legacy-gnus-agent.el: New.  Provides converters that are only
19289         loaded when gnus-convert-old-newsrc needs to call them.
19290
19291 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
19292
19293         * mail-source.el (mail-source-touch-pop): Doc fix.
19294
19295         * message.el (message-smtpmail-send-it): Doc fix.
19296
19297 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
19298
19299         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
19300
19301         * nnmail.el (nnmail-split-fancy): do.
19302
19303         * gnus-kill.el (gnus-kill, gnus-execute): do.
19304
19305 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
19306
19307         * gnus-sum.el (gnus-widget-reversible-match)
19308         (gnus-widget-reversible-to-internal)
19309         (gnus-widget-reversible-to-external): New functions.
19310         (gnus-widget-reversible): New widget.
19311         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
19312
19313 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
19314
19315         * gnus-sum.el (gnus-thread-sort-functions)
19316         (gnus-article-sort-functions): Document `(not F)' items.
19317
19318 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
19319
19320         * spam.el (spam-use-gmane-xref): Add new backend.
19321         (spam-gmane-xref-spam-group): Add variable to control the name of the
19322         Gmane spam group.
19323         (spam-blackhole-servers, spam-blackhole-good-server-regex)
19324         (spam-regex-headers-spam, spam-regex-headers-ham)
19325         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
19326         (spam-list-of-checks): Add spam-use-gmane-xref to list of
19327         backends and checks.
19328         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
19329
19330         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
19331         an autodetect method.
19332
19333 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19334
19335         * gnus-int.el (gnus-request-accept-article): Inform the agent that
19336         articles are being added to a group.
19337         (gnus-request-replace-article): Inform the agent that articles
19338         need to be uncached as the cached contents are no longer valid.
19339
19340 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19341
19342         * binhex.el: Don't autoload executable-find.
19343
19344         * canlock.el: Don't autoload mail-fetch-field.
19345
19346         * dgnushack.el: Autoload c-mode for XEmacs.
19347
19348         * gnus-ems.el: Don't autoload appt-select-lowest-window.
19349
19350         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
19351         rmail-dont-reply-to and rmail-output.
19352
19353         * gnus-score.el: Don't autoload ffap-string-at-point.
19354
19355         * gnus-setup.el: Don't autoload sc-cite-original.
19356
19357         * imap.el: Don't autoload base64-decode-string,
19358         base64-encode-string and md5.
19359
19360         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
19361         and rmail-msg-restore-non-pruned-header.
19362
19363         * mm-decode.el: Don't autoload executable-find.
19364
19365         * mm-url.el: Don't autoload executable-find.
19366
19367         * mm-view.el: Don't autoload diff-mode.
19368
19369         * nndb.el: Don't autoload news-reply-mode, news-setup,
19370         cancel-timer and telnet.
19371
19372         * password.el: Don't autoload run-at-time for Emacs.
19373
19374         * sha1-el.el: Don't autoload executable-find.
19375
19376         * sieve-mode.el: Don't autoload c-mode.
19377
19378         * uudecode.el: Don't autoload executable-find.
19379
19380 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19381
19382         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
19383         (gnus-agent-possibly-alter-active): Avoid null in numeric
19384         comparison.
19385         (gnus-agent-set-local): Refuse to save null in local object table.
19386         (gnus-agent-regenerate-group): The REREAD parameter can now be a
19387         list of articles that will be marked as unread.
19388
19389 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19390
19391         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
19392
19393 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
19394
19395         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
19396         language tags.
19397
19398 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
19399
19400         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
19401         Don't bind "obarray".
19402
19403         * gnus-sum.el (gnus-thread-sort-functions):
19404         Add `gnus-thread-sort-by-most-recent-number' and
19405         `gnus-thread-sort-by-most-recent-date'.
19406         Reported by Kai Grossjohann <kai@emptydomain.de>.
19407
19408 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
19409
19410         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
19411
19412 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19413
19414         * gnus-cus.el (gnus-agent-customize-category):
19415         Remove ignore-errors macro reference that required cl to be loaded at
19416         run-time.
19417
19418         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
19419         single-interval range of the form (min . max).  Previously the
19420         range had to look like ((min . max)).  Likewise, return
19421         (min . max) rather than ((min . max)).
19422         (gnus-range-map): Use gnus-range-normalize to accept
19423         single-interval range.
19424
19425         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
19426         the cache, but not the agent, now appear with their usual face.
19427
19428         * dgnushack.el (loaddir): New variable that is bound to the
19429         directory containing the dgnushack.el file. Use loaddir, rather
19430         than srcdir, to update load-path. Change lets dgnushack compile
19431         code in directories other than GNUS/lisp.
19432
19433 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19434
19435         * lpath.el: Don't bind w3m-safe-url-regexp.
19436
19437         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
19438         w3m-safe-url-regexp variable buffer-local.
19439
19440         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
19441
19442 2004-02-27  Simon Josefsson  <jas@extundo.com>
19443
19444         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
19445         gnus-group-real-prefix.
19446         (gnus-summary-move-article): Use it, instead of
19447         gnus-group-real-prefix.
19448
19449 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19450
19451         * lpath.el: Bind w3m-safe-url-regexp.
19452
19453         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
19454         w3m-safe-url-regexp variable buffer-local and set it as the value
19455         of mm-w3m-safe-url-regexp.
19456
19457         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
19458
19459         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
19460         parsing gnus-posting-styles when the message is not for replying.
19461
19462         * dgnushack.el: Autoload sgml-mode for XEmacs.
19463
19464         * nnrss.el (nnrss-opml-export):
19465         Use mm-set-buffer-file-coding-system instead of
19466         set-buffer-file-coding-system.
19467
19468 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
19469
19470         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
19471         of checkdoc.el).
19472         * nnrss.el: do.
19473         * gnus-mlspl.el: do.
19474         * gnus-ml.el: do.
19475         * gnus-srvr.el: do.
19476
19477         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
19478
19479 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
19480
19481         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
19482         Corrections to custom-manual links.
19483
19484         * gnus-art.el (gnus-article): Ditto.
19485
19486         * mm-decode.el (mime-display, mime-security): Ditto.
19487
19488 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
19489
19490         * flow-fill.el: Typo.
19491
19492 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
19493
19494         * spam-wash.el: New file.
19495
19496 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
19497
19498         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
19499
19500 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
19501
19502         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
19503         to be run with new-articles as LIST1, not LIST2.
19504         (spam-registration-functions): Add spam-use-ham-copy as a nil
19505         registration backend.
19506
19507 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
19508
19509         * spam-stat.el (spam-stat-washing-hook): New option.
19510         (spam-stat-buffer-words): Use it.
19511         (spam-stat-process-directory, spam-stat-test-directory):
19512         Use insert-file-contents-literally.
19513         (spam-stat-coding-system): New variable.
19514         (spam-stat-load, spam-stat-save): Use it.
19515
19516 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19517
19518         * spam-report.el (spam-report-plug-agent):
19519         Quote spam-report-url-to-file and spam-report-url-ping-plain.
19520
19521 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
19522
19523         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
19524         Allow / in mailto URLs.
19525
19526 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
19527
19528         * spam-report.el (spam-report-process-queue): Fix interactive use.
19529         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
19530         (spam-report-unplug-agent): Doc fixes.
19531         (spam-report-url-ping-mm-url, spam-report-url-to-file)
19532         (spam-report-agentize, spam-report-deagentize): Autoload.
19533
19534 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19535
19536         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
19537
19538         * message.el (message-setup-fill-variables): Add mml tags to
19539         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
19540         <ajk@iu.edu>.
19541         (message-mode): Don't modify paragraph-separate there.
19542
19543 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19544
19545         * compface.el (uncompface-use-external): Default to undecided.
19546         (uncompface-use-external-threshold): New variable.
19547         (uncompface-float-time): New macro.
19548         (uncompface): Determine whether to use the external decoder if
19549         uncompface-use-external is undecided.
19550
19551 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19552
19553         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
19554         after images.
19555
19556         * gnus-art.el (gnus-mime-display-single): Remove dead code.
19557
19558 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
19559
19560         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
19561
19562         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
19563
19564         * gnus-sum.el (gnus-summary-limit-to-age)
19565         (gnus-summary-limit-children): do.
19566
19567         * gnus-int.el (gnus-request-scan): do.
19568
19569         * gnus-group.el (gnus-group-suspend): do.
19570
19571         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
19572
19573         * gnus-cite.el (gnus-cite-parse-attributions): do.
19574
19575         * gnus-agent.el (gnus-summary-set-agent-mark)
19576         (gnus-agent-regenerate-group): do.
19577
19578         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
19579
19580         * binhex.el (binhex-decode-region-internal): do.
19581
19582 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19583
19584         * gnus-fun.el (gnus-face-properties-alist): New user option.
19585         (gnus-display-x-face-in-from): Use it.
19586
19587         * gnus-art.el (article-display-face): Ditto.
19588
19589         * compface.el (uncompface-use-external): Default to nil.
19590
19591 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
19592
19593         * nntp.el (nntp-erase-buffer): New function.
19594         (nntp-retrieve-data, nntp-send-command)
19595         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
19596         (nntp-possibly-change-group): Use it.
19597
19598         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
19599         Use with-current-buffer.
19600
19601 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
19602
19603         * compface.el: Merge the ELisp-based uncompface program.
19604         (compface): New customization group.
19605         (uncompface-use-external): New user option.
19606         (uncompface): Call uncompface-internal if uncompface-use-external
19607         is nil.
19608         (uncompface-internal): New function.  Note that there are also
19609         some other functions and variables added for this function.
19610
19611 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
19612
19613         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
19614         if necessary.
19615
19616 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
19617
19618         * spam-report.el (spam-report-unplug-agent)
19619         (spam-report-plug-agent, spam-report-deagentize)
19620         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
19621         Add support for the Agent in spam-report: when unplugged, report to a
19622         file; when plugged, submit all the requests.
19623
19624         * spam.el (spam-register-routine): Fix message about
19625         registration.
19626
19627 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
19628
19629         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
19630         dependencies.
19631         (rfc2047-encode): Use it.
19632
19633         * gnus-art.el (gnus-button-marker-list): Move before first
19634         reference.
19635
19636         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
19637         (imap-parse-body): Fix format string mismatch.
19638
19639         * gnus-score.el (gnus-summary-increase-score): do.
19640
19641         * nnrss.el (nnrss-close): New function.
19642
19643 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
19644
19645         * nnrss.el (nnrss-make-filename): New function.
19646         (nnrss-request-delete-group, nnrss-read-server-data)
19647         (nnrss-save-server-data, nnrss-read-group-data)
19648         (nnrss-save-group-data): Use it.
19649         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
19650         (nnrss-read-server-data, nnrss-read-group-data): Use load.
19651         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
19652
19653 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
19654
19655         * mml.el (mml-compute-boundary-1): Don't uncompress files.
19656
19657 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
19658
19659         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
19660         files.
19661
19662         * message.el (message-generate-headers-first): Don't quote nil
19663         and t in docstrings.
19664
19665         * imap.el (imap-id): do.
19666
19667         * gnus-agent.el (gnus-agent-consider-all-articles)
19668         (gnus-agent-queue-mail): do.
19669
19670 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
19671
19672         * spam-report.el (spam-report-process-queue): New function.
19673         Process requests from `spam-report-requests-file'.
19674         (spam-report-process-queue): Doc fix.
19675
19676 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
19677
19678         * spam.el (spam-register-routine)
19679         (spam-log-processing-to-registry, spam-log-registered-p)
19680         (spam-log-unregistration-needed-p, spam-log-undo-registration):
19681         Change "check" to "spam-check" for semi-clarity.
19682
19683 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
19684
19685         * pop3.el: Require nnheader.
19686
19687         * mml-smime.el: Require cl.  Autoload message-fetch-field.
19688
19689         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
19690
19691         * gnus-picon.el: Require cl.
19692
19693         * gnus-fun.el: Require gnus-ems and gnus-util.
19694
19695         * gnus.el (gnus-method-to-server): Move defsubst before first use.
19696
19697         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
19698
19699         * gnus-art.el (gnus-article-edit-mode): Define before first
19700         reference.
19701
19702 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
19703
19704         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
19705         (gnus-uu-post-encoded): Use point-at-bol.
19706
19707         * gnus-topic.el (gnus-group-active-topic-p): do.
19708
19709         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
19710
19711         * gnus-group.el (gnus-group-kill-region): do.
19712
19713         * gnus-art.el (article-date-ut): do.
19714
19715         * message.el (message-fetch-field): Remove redundant
19716         case-fold-search binding.
19717         (message-narrow-to-field): Simplify.
19718
19719 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
19720
19721         * spam.el (spam-directory): Derive from `gnus-directory'.
19722
19723         * spam-report.el (spam-report-url-to-file)
19724         (spam-report-requests-file): New function and variable for offline
19725         reporting.
19726         (spam-report-url-ping-function): Add `spam-report-url-to-file'
19727         and user defined function.
19728         (spam-report-url-ping-mm-url): Remove doubled slash.
19729
19730 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
19731
19732         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
19733
19734 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
19735
19736         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
19737         Fix format string mismatch.
19738
19739         * sieve.el (sieve-deactivate-all): do.
19740
19741         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
19742
19743         * nnlistserv.el (nnlistserv-kk-wash-article): do.
19744
19745         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
19746
19747         * mm-bodies.el (mm-7bit-chars): Don't include \r.
19748
19749 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
19750
19751         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
19752         the list of checks.
19753
19754 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
19755
19756         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
19757         padding.
19758
19759 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
19760
19761         * mm-view.el (mm-fill-flowed): New variable.
19762         (mm-inline-text): Use it.
19763
19764 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
19765
19766         * spam.el (spam-spamassassin-register-ham-routine)
19767         (spam-spamassassin-register-spam-routine): Fix function names.
19768
19769 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19770
19771         * gnus.el (gnus-tmp-grouplens): Remove.
19772         (gnus-summary-line-format): Remove grouplens.
19773
19774         * gnus-group.el (gnus-group-line-format): Ditto.
19775
19776         * gnus-spec.el (gnus-format-specs): Ditto.
19777         (gnus-update-format-specifications): Flush the group format spec
19778         cache if there's the grouplens stuff.
19779         (gnus-parse-simple-format): Replace %l with the empty string.
19780
19781 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
19782
19783         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
19784         omission.
19785
19786 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19787
19788         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
19789         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
19790
19791 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
19792
19793         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
19794         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
19795         New macros and functions.
19796         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
19797         Handle > NLINK_MAX messages.
19798         * nnmaildir.el (nnmaildir-request-set-mark):
19799         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
19800
19801 2004-01-25  Alex Schroeder  <alex@gnu.org>
19802
19803         * spam-stat.el (spam-stat-process-directory-age): New option.
19804         (spam-stat-process-directory): Use it.
19805
19806 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
19807
19808         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
19809         (spam-stat-save): Accept prefix argument.
19810
19811 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
19812
19813         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
19814         links" error.
19815
19816 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19817
19818         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
19819         the rest of the and/or forms.
19820
19821 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
19822
19823         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
19824         compatibility with old .newsrc.eld files.
19825
19826         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
19827
19828         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
19829
19830         * gnus-start.el (gnus-1): do.
19831
19832         * gnus-group.el (gnus-group-line-format-alist): do.
19833
19834         * gnus.el (gnus-use-grouplens, gnus-visual): do.
19835
19836         * gnus-gl.el: Remove.
19837
19838 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19839
19840         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
19841         marks consisting of a single range {for example, (3 . 5)} rather
19842         than a list of a single range { ((3 . 5)) }.
19843
19844 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
19845
19846         * spam-stat.el (spam-stat-store-gnus-article-buffer):
19847         Use with-current-buffer.
19848         (spam-stat-store-current-buffer): Use insert-buffer-substring to
19849         avoid consing a string.
19850
19851         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
19852         Remove obsolete entries for big5 and gb2312.
19853
19854 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19855
19856         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
19857         uncompressed list.
19858
19859 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
19860
19861         * spam-stat.el (spam-stat-strip-xref): New function.
19862         (spam-stat-process-directory): Use it.
19863
19864         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
19865         here -- it's done in message-fetch-field.
19866
19867 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19868
19869         * gnus-agent.el (gnus-agent-queue-mail)
19870         (gnus-agent-prompt-send-queue): New variables.
19871         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
19872         * gnus-draft.el (gnus-group-send-queue): Pass the group name
19873         "nndraft:queue" along to gnus-draft-send.
19874         Use gnus-agent-prompt-send-queue.
19875         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
19876         is "nndraft:queue".  Suggested by Gaute Strokkenes
19877         <gs234@srcf.ucam.org>
19878
19879         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
19880         (agent-enable-undownloaded-faces): Add.
19881         (gnus-agent-cat-groups): Use eval-and-compile, not
19882         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
19883         method of gnus-agent-cat-groups even when the buffer has been
19884         evaled.
19885         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
19886         delete gnus-agent-save-active-1.
19887         (gnus-agent-save-groups): Delete.  Identical to
19888         gnus-agent-save-active.
19889         (gnus-agent-write-active): No longer adjust agent's copy of active
19890         file as agent's adjustments are now stored in their own
19891         file.  Remove optional parameter.
19892         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
19893         servers.  Add use of min/max range limits from server's local
19894         file.
19895         (gnus-agent-save-alist): Remove unused optional argument.
19896         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
19897         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
19898         (gnus-agent-set-local): A per-server file that keeps min/max range
19899         limits for articles known to the agent.  Provides a fast mechanism
19900         for altering many active ranges.
19901         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
19902         active file (local makes it unnecessary).
19903         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
19904
19905         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
19906         (agent-enable-undownloaded-faces): Add.
19907
19908         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
19909         disable it when sending to "nndraft:queue".
19910         (gnus-group-send-queue): Add safety check to avoid sending queue
19911         when unplugged.
19912
19913         * gnus-group.el (gnus-group-catchup): Use new
19914         gnus-sequence-of-unread-articles, not
19915         gnus-list-of-unread-articles, to avoid exhausting memory with huge
19916         numbers of articles.  Use gnus-range-map to avoid having to
19917         uncompress the unread list.
19918         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
19919         Fix invalid ange-ftp reference.
19920
19921         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
19922         (gnus-sorted-range-intersection): Intersection of two ranges
19923         without requiring that they first be uncompressed.
19924
19925         * gnus-start.el (gnus-activate-group): Unless blocked by the
19926         caller, possibly expand the active range to include both cached
19927         and agentized articles.
19928         (gnus-convert-old-newsrc): Rewrote in anticipation of having
19929         multiple version-dependent converters.
19930         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
19931         gnus-agent-save-active.
19932         (gnus-save-newsrc-file): Save dirty agent range limits.
19933
19934         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
19935         gnus-agent-possibly-alter-active.
19936         (gnus-adjust-marked-articles): Faster handling of simple lists.
19937
19938 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
19939
19940         * spam-stat.el (spam-stat-test-directory): New optional argument
19941         displays a list of files detected.  Suggested by Andrew Cohen
19942         <cohen@andy.bu.edu>.
19943         (spam-stat-buffer-words-with-scores): Don't narrow and change
19944         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
19945
19946 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
19947
19948         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
19949         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
19950         (spam-spamassassin-arguments)
19951         (spam-spamassassin-spam-flag-header)
19952         (spam-spamassassin-positive-spam-flag-header)
19953         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
19954         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
19955         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
19956         (spam-list-of-processors, spam-list-of-checks)
19957         (spam-list-of-statistical-checks, spam-registration-functions)
19958         (spam-check-spamassassin-headers, spam-check-spamassassin)
19959         (spam-spamassassin-score)
19960         (spam-spamassassin-register-with-sa-learn)
19961         (spam-spamassassin-register-spam-routine)
19962         (spam-spamassassin-register-ham-routine)
19963         (spam-assassin-register-spam-routine)
19964         (spam-assassin-register-ham-routine): Add SpamAssassin support.
19965         (spam-bogofilter-score): Fix to show article before scoring.
19966
19967 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
19968
19969         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
19970         default scoring function.
19971         (spam-generic-score): Call spam-spamassassin-score if
19972         spam-use-spamassassin or spam-use-spamassassin-headers is on;
19973         spam-bogofilter-score otherwise.
19974
19975         * gnus.el (spam-process, spam-autodetect-methods):
19976         Add spamassassin and spamassassin-headers.
19977
19978 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
19979
19980         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
19981         Suppress unnecessary messages.
19982
19983 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
19984
19985         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
19986         make-hash-table.
19987
19988 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19989
19990         * canlock.el (base64-encode-string): Don't autoload it.
19991
19992 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19993
19994         * run-at-time.el: Remove useless (require 'itimer),
19995         eval-and-compile and (featurep 'xemacs).
19996
19997 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
19998
19999         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
20000         GROUP is a virtual group.
20001
20002 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
20003
20004         * gnus.el: Autoload `message-y-or-n-p'.
20005
20006 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
20007
20008         * pgg-parse.el: Remove unnecessary (require 'custom).
20009
20010         * pgg-def.el: do.
20011
20012         * nnmail.el: do.
20013
20014         * gnus-undo.el: do.
20015
20016         * gnus-picon.el: do.
20017
20018         * gnus-util.el: do.
20019
20020 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
20021
20022         * gnus-sum.el (gnus-pick-line-number): Add autoload.
20023
20024 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
20025
20026         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
20027         handle, as well as a list.
20028
20029         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
20030         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
20031         (mm-w3m-cid-retrieve): Simplify.
20032
20033 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
20034
20035         * message.el (message-kill-to-signature): Allow prefix arg to
20036         specify number of lines to keep before signature.
20037
20038 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
20039
20040         * message.el (message-kill-to-signature): Change docstring.
20041
20042 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20043
20044         * canlock.el: Always require sha1-el.
20045         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
20046
20047         * message.el: Autoload sha1 only when compiling.
20048
20049         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
20050         eudc-expand-inline for XEmacs.
20051
20052 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20053
20054         * message.el (message-canlock-generate): Require sha1-el.
20055
20056 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
20057
20058         * message.el (message-expand-name): Silence the byte compiler.
20059
20060         * lpath.el: Add detect-coding-system.
20061
20062         * dgnushack.el (dgnushack-compile): Remove obsolete check for
20063         cus-edit.
20064
20065 2004-01-13  Simon Josefsson  <jas@extundo.com>
20066
20067         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
20068         Invoke gnus-score-mode.
20069         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
20070
20071         * gnus-range.el (gnus-compress-sequence): Doc fix.
20072         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
20073
20074 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
20075
20076         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
20077
20078 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
20079
20080         * spam.el (spam-get-article-as-string): Update to use
20081         gnus-request-article-this-buffer, much simpler.
20082         (spam-get-article-as-buffer): Remove.
20083
20084 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
20085
20086         * message.el (message-expand-name): Use EUDC if the user uses that.
20087
20088 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
20089
20090         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
20091         character for the encoding to avoid consing a string.
20092
20093         * rfc2047.el (rfc2047-decode-string): Don't cons a string
20094         unnecessarily.
20095
20096         * mm-util.el (mm-replace-chars-in-string): Remove.
20097
20098         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
20099         of mm-replace-chars-in-string.
20100
20101 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
20102
20103         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
20104
20105         * mm-util.el (mm-subst-char-in-string): Support inplace.
20106
20107         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
20108         a new string in every iteration.  Use shy groups.
20109
20110 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
20111
20112         * gnus-srvr.el (gnus-browse-unsubscribe-group):
20113         * gnus-soup.el (gnus-soup-group-brew):
20114         * gnus-msg.el (gnus-put-message):
20115         * gnus-move.el (gnus-group-move-group-to-server):
20116         * gnus-kill.el (gnus-batch-score):
20117         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
20118         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
20119         (gnus-group-update-group, gnus-group-read-group)
20120         (gnus-group-make-group, gnus-group-make-help-group)
20121         (gnus-group-make-archive-group, gnus-group-make-directory-group)
20122         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
20123         (gnus-group-sort-by-unread, gnus-group-catchup)
20124         (gnus-group-unsubscribe-group, gnus-group-kill-group)
20125         (gnus-group-yank-group, gnus-group-set-info)
20126         (gnus-group-list-groups):
20127         * gnus.el (gnus-generate-new-group-name):
20128         * gnus-delay.el (gnus-delay-send-queue):
20129         * nnvirtual.el (nnvirtual-catchup-group):
20130         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
20131         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
20132         (gnus-group-prepare-topics, gnus-topic-check-topology):
20133         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
20134         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
20135         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
20136         (gnus-group-make-articles-read):
20137         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
20138         (gnus-group-change-level, gnus-kill-newsgroup)
20139         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
20140         (gnus-get-unread-articles, gnus-make-articles-unread)
20141         (gnus-make-ascending-articles-unread): Use accessor
20142         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
20143         to get group information for improved readability.
20144
20145
20146 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
20147
20148         * gnus-art.el (article-decode-mime-words, article-babel)
20149         (gnus-article-highlight-signature, gnus-article-add-buttons)
20150         (gnus-signature-toggle): Use gnus-with-article-buffer.
20151
20152         * gnus-art.el (gnus-article-highlight-headers)
20153         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
20154
20155         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
20156         (gnus-article-set-globals, gnus-request-article-this-buffer)
20157         (gnus-button-message-id, gnus-article-maybe-hide-headers)
20158         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
20159         (gnus-mime-display-alternative): Use with-current-buffer.
20160
20161 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
20162
20163         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
20164         also under 80 char limit, and call gnus-error if needed.
20165         (spam-fetch-article-header): Fix - it was a
20166         buffer-local variable (gnus-newsgroup-data).
20167         (spam-find-spam): Use spam-generate-fake-headers, forget about
20168         spam-insert-fake-headers.
20169         (spam-insert-fake-headers): Remove.
20170
20171 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
20172
20173         * deuglify.el (gnus-article-outlook-unwrap-lines)
20174         (gnus-outlook-rearrange-article)
20175         (gnus-outlook-repair-attribution-outlook)
20176         (gnus-outlook-repair-attribution-block)
20177         (gnus-outlook-repair-attribution-other): Remove redundant
20178         save-excursion.
20179
20180 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
20181
20182         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
20183         (spam-fetch-field-subject-fast)
20184         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
20185         (spam-fetch-article-header): Add functions to deal with Gnus
20186         internals for fast retrieval of article header data.
20187         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
20188
20189 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
20190
20191         * pop3.el (pop3-md5): Remove.
20192         (pop3-apop): Replace pop3-md5 with md5.
20193
20194         * mm-bodies.el: base64 is always built-in.
20195
20196         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
20197         Use with-current-buffer.
20198
20199 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
20200
20201         * canlock.el (canlock-insert-header): Remove excessive grouping in
20202         regexp.
20203
20204         * gnus-sum.el (gnus-summary-read-document): Ditto.
20205
20206         * gnus-uu.el (gnus-uu-part-number): Ditto.
20207
20208         * html2text.el (html2text-remove-tags): Ditto.
20209         (html2text-format-tags): Ditto.
20210         (html2text-format-single-elements): Ditto.
20211
20212         * mml.el (mml-parse-1): Ditto.
20213
20214 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
20215
20216         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
20217
20218         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
20219
20220         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
20221
20222         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
20223
20224 2003-11-15  Simon Josefsson  <jas@extundo.com>
20225
20226         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
20227         (pgg-gpg-lookup-key): Use regexp match instead of
20228         split-string (split-string is different between emacs 21.2 and
20229         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
20230
20231 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
20232
20233         * gnus-art.el (gnus-mime-view-all-parts)
20234         (gnus-article-part-wrapper, gnus-article-view-part):
20235         Use with-current-buffer.
20236
20237 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
20238
20239         * spam.el (spam-disable-spam-split-during-ham-respool)
20240         (spam-spamoracle-database, spam-cache-lookups)
20241         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
20242         (spam-group-ham-mark-p, spam-group-spam-mark-p)
20243         (spam-group-ham-marks, spam-group-spam-marks)
20244         (spam-group-spam-contents-p, spam-group-ham-contents-p)
20245         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
20246         also add spam-use-blackholes to the statistical checks.
20247         (spam-fetch-field-fast): Add interface to fetching fields, may
20248         become a macro.
20249         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
20250         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
20251         (spam-insert-fake-headers): Fake an article when needed.
20252         (spam-find-spam): Fake article when possible.
20253         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
20254         (spam-check-bogofilter-headers): Use message-fetch-field instead
20255         of nnmail-fetch-field.
20256
20257 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
20258
20259         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
20260
20261 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
20262
20263         * spam.el (spam-split): Do not require spam-use-CHECK to be
20264         enabled if that check is passed to spam-split explicitly; also
20265         fix so 'spam doesn't get converted to spam-split-group when
20266         spam-split-symbolic-return is t.
20267         (spam-find-spam): Find registrations of the article and use those
20268         instead of re-running spam-split to find the spam/ham
20269         classification of the article.
20270         (spam-log-processing-to-registry, spam-log-registered-p)
20271         (spam-log-unregistration-needed-p, spam-log-undo-registration):
20272         Use gnus-error instead of gnus-message.
20273         (spam-log-registration-type): Add function to determine the
20274         classification of a message based on registry entries; will
20275         return nil if both 'spam and 'ham are found.
20276         (spam-check-BBDB): Expand all the BBDB macros here so we can have
20277         a reasonably fast local cache without the loading errors.
20278         (spam-cache-lookups): Set to t by default.
20279         (spam-find-spam): Don't try to guess spam-cache-lookups.
20280         (spam-enter-whitelist, spam-enter-blacklist): Clear the
20281         spam-caches entry.
20282         (spam-filelist-build-cache, spam-filelist-check-cache):
20283         Fix caching of whitelist/blacklist entries.
20284         (spam-check-whitelist, spam-check-blacklist):
20285         Invoke spam-from-listed-p with a type, not a cache variable.
20286         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
20287
20288 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
20289
20290         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
20291
20292         * nnmail.el (nnmail-split-fancy): do.
20293
20294         * mml.el (mml-parse): do.
20295
20296         * gnus-score.el (gnus-enter-score-words-into-hashtb)
20297         (gnus-score-adaptive): do.
20298
20299 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20300
20301         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
20302         (gnus-mime-button-map): Don't set keymap parent.
20303         (gnus-button-ctan-directory-regexp): Use shy grouping.
20304         (gnus-prev-page-map): Don't set keymap parent.
20305         (gnus-prev-page-map): Remove duplicated one.
20306         (gnus-next-page-map): Don't set keymap parent.
20307         (gnus-mime-security-button-map): Ditto.
20308
20309         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
20310         version number.
20311
20312         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
20313
20314 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20315
20316         * canlock.el (canlock-sha1-function): Remove.
20317         (canlock-sha1-function-for-verify): Remove.
20318         (canlock-openssl-program): Remove.
20319         (canlock-openssl-args): Remove.
20320         (canlock-ignore-errors): Remove.
20321         (canlock-sha1-with-openssl): Remove.
20322         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
20323         (canlock-verify): Don't use canlock-ignore-errors.
20324
20325         * sha1-el.el (sha1-string-external): Make it can return a string
20326         in binary form.
20327         (sha1-region-external): Ditto.
20328         (sha1-string-internal): Ditto.
20329         (sha1-region-internal): Ditto.
20330         (sha1-region): Ditto.
20331         (sha1-string): Ditto.
20332         (sha1): Ditto.
20333
20334 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20335
20336         * spam.el (spam-report-articles-gmane): New command.
20337
20338 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20339
20340         * gnus.el: Don't make unnecessary *Group* buffer when loading.
20341
20342         * run-at-time.el (run-at-time-saved): Remove.
20343         (run-at-time): Doc fix.
20344
20345 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
20346
20347         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
20348         (gnus-summary-limit-map): Add it.
20349         (gnus-summary-make-menu-bar): do.
20350
20351 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
20352
20353         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
20354         Make attempt at some caching support (done for BBDB only now).
20355         (spam-find-spam): Set spam-cache-lookups if there are more than 2
20356         addresses to be checked.
20357         (spam-clear-cache-BBDB): Add function, to be invoked by
20358         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
20359         (spam-check-BBDB): Check and use the caches, if
20360         spam-cache-lookups is on, remove superfluous (provide).
20361
20362 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
20363
20364         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
20365
20366 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
20367
20368         * run-at-time.el (run-at-time-saved): Move to after the definition
20369         of `run-at-time'.
20370
20371         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
20372
20373 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20374
20375         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
20376         mm-w3m-local-map-property.
20377
20378         * mm-view.el (mm-w3m-mode-map): Remove.
20379         (mm-w3m-local-map-property): Remove.
20380         (mm-inline-text-html-render-with-w3m): Don't use
20381         mm-w3m-local-map-property.
20382
20383 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20384
20385         * run-at-time.el: New file.
20386
20387         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
20388         under Emacs.
20389
20390         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
20391         of gnus-set-text-properties.
20392
20393         * gnus-uu.el (gnus-uu-save-article): Ditto.
20394
20395         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
20396
20397         * gnus-cite.el (gnus-cite-parse): Ditto.
20398
20399         * gnus-art.el (gnus-button-push): Use set-text-properties instead
20400         of gnus-.
20401
20402         * gnus-xmas.el (run-at-time): Require run-at-time.
20403
20404         * gnus.el: Change calls to nnheader-run-at-time and
20405         password-run-at-time throughout to use run-at-time directly.
20406
20407         * password.el: Remove definition of run-at-time.
20408
20409         * nnheaderxm.el: Remove definition of run-at-time.
20410
20411 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
20412
20413         * mml.el (mml-minibuffer-read-disposition): Show attachment type
20414         in prompt.
20415
20416 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
20417
20418         * messagexmas.el (message-xmas-redefine): Alias
20419         `message-make-caesar-translation-table' to
20420         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
20421         version.
20422
20423         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
20424         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
20425         `gnus-xmas-set-text-properties'.
20426         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
20427         `gnus-xmas-completing-read'.
20428         (gnus-xmas-completing-read): Removed.
20429         (gnus-xmas-open-network-stream): Removed.
20430
20431         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
20432         XEmacs version.
20433
20434         * dns.el (dns-make-network-process): Use `open-network-stream'
20435         instead of `gnus-xmas-open-network-stream'.
20436
20437         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
20438
20439         * .cvsignore: Add auto-autoloads.el, custom-load.el.
20440
20441 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
20442
20443         * gnus-art.el (gnus-mime-display-alternative)
20444         (gnus-insert-mime-button, gnus-insert-mime-security-button)
20445         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
20446         Don't use gnus-local-map-property.
20447
20448         * gnus-util.el (gnus-local-map-property): Remove.
20449
20450         * mm-view.el (mm-view-pkcs7-decrypt):
20451         Replace gnus-completing-read-maybe-default with completing-read.
20452
20453         * gnus-util.el (gnus-completing-read): do.
20454         (gnus-completing-read-maybe-default): Remove.
20455
20456 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
20457
20458         * password.el: Only autoload `run-at-time' if not XEmacs.
20459         Only autoload the itimer functions if XEmacs.
20460
20461 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20462
20463         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
20464         XEmacsen.
20465
20466         * dgnushack.el: Autoload executable-find for XEmacs.
20467
20468 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
20469
20470         * gnus-art.el (gnus-read-string): Remove.
20471         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
20472         read-string.
20473
20474 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
20475
20476         * netrc.el: Autoload password-read.
20477         (netrc): Add configuration group.
20478         (netrc-encoding-method, netrc-openssl-path):
20479         Add variables for encoding and decoding of files with symmetric
20480         ciphers.
20481         (netrc-encode): Add assistant function to encode a file with
20482         netrc-encoding-method.
20483         (netrc-parse): Add interactive parameter, added optional
20484         decoding if netrc-encoding-method is non-nil but otherwise
20485         behavior is standard.
20486         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
20487         Do s/encode/encrypt/ everywhere.
20488
20489         * spam.el: Remove executable-find autoload.
20490
20491 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
20492
20493         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
20494
20495         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
20496
20497 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
20498
20499         * gnus-art.el (gnus-treat-ansi-sequences)
20500         (article-treat-ansi-sequences): New variable and function.
20501         Suggested by Dan Jacobson <jidanni@jidanni.org>.
20502
20503         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
20504         Use it.
20505
20506 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
20507
20508         * mm-util.el (mm-quote-arg): Remove.
20509
20510         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
20511         shell-quote-argument.
20512
20513         * gnus-uu.el (gnus-uu-command): do.
20514
20515         * gnus-sum.el (gnus-summary-insert-pseudos): do.
20516
20517         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
20518         with make-char.
20519
20520         * mm-util.el (mm-make-char): Remove.
20521
20522         * mml.el (mml-mode): Replace gnus-add-minor-mode with
20523         add-minor-mode.
20524
20525         * gnus-undo.el (gnus-undo-mode): do.
20526
20527         * gnus-topic.el (gnus-topic-mode): do.
20528
20529         * gnus-sum.el (gnus-dead-summary-mode): do.
20530
20531         * gnus-start.el (gnus-slave-mode): do.
20532
20533         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
20534
20535         * gnus-ml.el (gnus-mailing-list-mode): do.
20536
20537         * gnus-gl.el (gnus-grouplens-mode): do.
20538
20539         * gnus-draft.el (gnus-draft-mode): do.
20540
20541         * gnus-dired.el (gnus-dired-mode): do.
20542
20543         * gnus-ems.el (gnus-add-minor-mode): Remove.
20544
20545         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
20546         Replace gnus-char-width with char-width.
20547
20548         * gnus-ems.el (gnus-char-width): Remove.
20549
20550         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
20551         Replace gnus-char-width with char-width.
20552
20553         * gnus-ems.el (gnus-char-width): Remove.
20554
20555         * spam-stat.el (with-syntax-table): Remove with-syntax-table
20556         definition.
20557         Remove Emacs 20 hash table compatibility code.
20558
20559         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
20560         20 compatibility code.
20561
20562         * spam.el (spam-point-at-eol): Replace with point-at-eol.
20563
20564         * smime.el (smime-point-at-eol): Replace with point-at-eol.
20565
20566         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
20567         Replace with point-at-{eol,bol}.
20568
20569         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
20570
20571         * imap.el (imap-point-at-eol): Replace with point-at-eol.
20572
20573         * flow-fill.el (fill-flowed-point-at-bol)
20574         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
20575
20576         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
20577         Replace with point-at-{eol,bol} throughout all files.
20578
20579 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20580
20581         * ntlm.el (ntlm-string-as-unibyte): New macro.
20582         (ntlm-build-auth-response): Use it.
20583
20584         Remove Emacs 20 stuff:
20585         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
20586         (butlast, mapc, remove): Remove the compiler macros.
20587         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
20588         of delq and copy-sequence.
20589         * gnus-art.el (popup-menu): Remove the compiler macro.
20590         * nnmail.el (nnmail-split-fancy): Don't support customizing with
20591         Emacs 20.
20592
20593 2004-01-05  Simon Josefsson  <jas@extundo.com>
20594
20595         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
20596         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
20597         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
20598         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
20599         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
20600         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
20601         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
20602         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
20603         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
20604         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
20605         ntlm-string-permute, string-lshift into ntlm-string-lshift,
20606         string-xor into ntlm-string-xor.
20607         Suggested by Jesper Harder <harder@myrealbox.com>.
20608
20609         * ntlm.el: Don't include poem.
20610
20611         * md4.el (print-int32, print-string-hexa): Remove.
20612         Suggested by Jesper Harder <harder@myrealbox.com>.
20613
20614         * sasl-ntlm.el, ntlm.el, md4.el: New files.
20615
20616         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
20617         probably breaks emacs with DL patch, but do we care? Is anyone
20618         still using the DL stuff?)
20619
20620         * sieve-manage.el: Use the password package.
20621         (sieve-manage-read-passwd): Remove.
20622         (sieve-manage-interactive-login): Use password.  Re-add
20623         condition-case around loop.
20624
20625         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
20626         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
20627         Use the password package.
20628
20629 2003-02-19  Simon Josefsson  <jas@extundo.com>
20630
20631         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
20632         token.
20633
20634 2002-08-07  Simon Josefsson  <jas@extundo.com>
20635
20636         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
20637         (sieve-manage-authenticators):
20638         (sieve-manage-authenticator-alist): Add some SASL mechs.
20639         (sieve-sasl-auth): New function.
20640         (sieve-manage-cram-md5-auth):
20641         (sieve-manage-plain-auth): Rewrite using SASL library.
20642         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
20643         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
20644         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
20645         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
20646
20647 2004-01-05  Simon Josefsson  <jas@extundo.com>
20648
20649         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
20650         New files.
20651
20652 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20653
20654         * gnus-group.el (gnus-no-groups-message): Update.
20655
20656         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
20657
20658 2003-11-09  Simon Josefsson  <jas@extundo.com>
20659
20660         * imap.el: Support for ID IMAP extension (RFC 2971).
20661         (imap-local-variables): Add imap-id.
20662         (imap-id): New variable.
20663         (imap-id): New function.
20664         (imap-parse-response): Parse untagged ID response.
20665         * nnimap.el (nnimap-id): New variable.
20666         (nnimap-open-connection): Use it.
20667
20668 2003-12-28  Simon Josefsson  <jas@extundo.com>
20669
20670         * gnus-score.el (gnus-score-edit-all-score): New.
20671         * gnus-group.el (gnus-group-score-map): Bind it to W e.
20672
20673 2004-01-04  Simon Josefsson  <jas@extundo.com>
20674
20675         * password.el: Add.
20676
20677 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
20678
20679         * dns.el (dns-query-types): Fix typo.
20680         (dns-query-types): New function.
20681         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
20682         PTR and SOA replies, see RFC 1035.
20683
20684 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20685
20686         * gnus.el (gnus-logo-color-style): Change colors to `no'.
20687
20688         * Move to Changelog.2.
20689
20690 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20691
20692         * gnus.el (gnus-version-number): Bump version.
20693
20694 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
20695
20696         * gnus.el: No Gnus v0.1 is released.
20697
20698 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
20699
20700         * gnus.el: No Gnus v0.0 is released.
20701
20702 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20703
20704         * gnus.el (gnus-version-number): Bump.
20705         (gnus-version): No.
20706
20707 See ChangeLog.2 for earlier changes.
20708
20709   Copyright (C) 2004-2011  Free Software Foundation, Inc.
20710
20711   This file is part of GNU Emacs.
20712
20713   GNU Emacs is free software: you can redistribute it and/or modify
20714   it under the terms of the GNU General Public License as published by
20715   the Free Software Foundation, either version 3 of the License, or
20716   (at your option) any later version.
20717
20718   GNU Emacs is distributed in the hope that it will be useful,
20719   but WITHOUT ANY WARRANTY; without even the implied warranty of
20720   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20721   GNU General Public License for more details.
20722
20723   You should have received a copy of the GNU General Public License
20724   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
20725
20726 ;; Local Variables:
20727 ;; coding: utf-8
20728 ;; fill-column: 79
20729 ;; add-log-time-zone-rule: t
20730 ;; End: