Enable `auth-source-debug' by default. Add and use `auth-source-do-warn'.
[gnus] / lisp / ChangeLog
1 2011-02-15  Teodor Zlatanov  <tzz@lifelogs.com>
2
3         * auth-source.el (auth-source-debug): Enable by default and don't
4         mention the obsolete `auth-source-hide-passwords'.
5         (auth-source-do-warn): New function to debug unconditionally.
6         (auth-source-do-debug): Use it.
7         (auth-source-backend-parse): Use it for invalid `auth-sources' entries
8         and for Secrets API entries when the secrets.el library is not
9         available.
10
11 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
12
13         * gnus-sum.el (gnus-propagate-marks): Default to nil.
14         (gnus-summary-exit): Kill the correct article buffer on exit from a
15         `C-d' group.
16
17         * gnus-start.el (gnus-use-backend-marks): Removed, since it duplicates
18         gnus-propagate-marks.
19
20         * gnus-sum.el (gnus-summary-exit-no-update): Restore the group conf
21         before killing the buffers so that a non-full window conf gets handled
22         correctly.
23         (gnus-summary-exit): Ditto.
24         (gnus-summary-read-group-1): Ditto.
25
26         * nntp.el (nntp-retrieve-group-data-early): Reinstate the two-part
27         async code again so that we can debug it properly.
28
29         * message.el (message-reply): Take an optional switch-buffer parameter
30         so that Gnus window confs are respected better.
31
32 2011-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
33
34         * auth-source.el (auth-source-backend-parse-parameters): Don't rely on
35         `plist-get' to accept non-list parameters (XEmacs issue).  Fix
36         docstring.
37         (auth-source-secrets-search): Use `delete-dups', `append mapcar', and
38         `butlast' instead of `remove-duplicates', `mapcan', and `subseq'.
39         (auth-sources, auth-source-backend-parse, auth-source-secrets-search):
40         Login collection is "Login" and not "login".
41
42 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
43
44         * gnus-art.el (article-update-date-lapsed): Don't bug out when updating
45         multiple headers.
46
47         * nnimap.el (nnimap-inhibit-logging): New variable.
48         (nnimap-log-command): Don't log login commands.
49
50         * auth-source.el (auth-source-netrc-search): The asserts seem to want
51         to have more parameters.
52
53         * nnimap.el (nnimap-send-command): Mark the command time for each
54         command, so that we don't get NOOPs stepping on our toes.
55
56         * gnus-art.el (article-date-ut): Get the date from the Date header on
57         `t'.
58
59 2011-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
60
61         * auth-source.el (auth-source-search): Use copy-sequence instead of
62         the cl.el copy-list.
63
64 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
65
66         * imap.el: Bring it back (revert
67         84d800cd31de3064f0ed39617d725709a2f8f42f).
68
69 2011-02-13  Adam Sjøgren  <asjo@koldfront.dk>
70
71         * gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
72         Improve prompt.
73
74 2011-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
75
76         * gnus-art.el (gnus-article-mode-line-format): Remove the article
77         washing status from the default format.  It isn't very informative.
78
79 2011-02-13  Tassilo Horn  <tassilo@member.fsf.org>  (tiny change)
80
81         * nnimap.el (nnimap-request-accept-article, nnimap-process-quirk): Fix
82         Gcc processing on imap.
83
84 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
85
86         * imap.el: Remove file.  All the functionality is in nnimap.el.
87
88 2011-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
89
90         * message.el (message-bury): Don't pop up a new window when selected
91         window is dedicated.
92
93 2011-02-10  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
94
95         * gnus-sum.el (gnus-summary-save-parts): Use read-directory-name.
96
97 2011-02-10  Teodor Zlatanov  <tzz@lifelogs.com>
98
99         * sieve-manage.el: Autoload `auth-source-search'.
100         (sieve-sasl-auth): Use it.
101
102 2011-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
103
104         * nnimap.el: Autoload `auth-source-forget+'.
105         (nnimap-open-connection-1): Use it if the connection fails.
106
107         * auth-source.el: Require `password-cache'.
108         (auth-source-hide-passwords, auth-source-cache): Remove and mark
109         obsolete.
110         (auth-source-magic): Marker for `password-cache' keys.
111         (auth-source-do-cache): Update docstring.
112         (auth-source-search): Use and check cache.
113         (auth-source-forget-all-cached, auth-source-remember)
114         (auth-source-recall, auth-source-forget, auth-source-forget+)
115         (auth-source-specmatchp): Caching support functions.
116         (auth-source-forget-user-or-password, auth-source-forget-all-cached):
117         Remove and obsolete.
118         (auth-source-user-or-password): Remove caching to further discourage
119         using it.  Always hide passwords.
120
121         * password-cache.el (password-cache-remove): Accept secrets that are
122         not strings.
123
124 2011-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
125
126         * nntp.el (nntp-retrieve-group-data-early-disabled): Disable the async
127         code for now, since it doesn't work for all users.
128
129 2011-02-09  Julien Danjou  <julien@danjou.info>
130
131         * message.el (message-options): Make message-options really buffer
132         local.
133
134 2011-02-08  Teodor Zlatanov  <tzz@lifelogs.com>
135
136         * mail-source.el: Autoload `auth-source-search'.
137         (mail-source-keyword-map): Note order matters.
138         (mail-source-set-1): Get all the mail-source source values and
139         defaults and search auth-source on those if needed.  This can all
140         probably be simplified.
141
142         * nnimap.el: Autoload `auth-source-search'.
143         (nnimap-credentials): Use it.
144         (nnimap-open-connection-1): Ask for the virtual server and physical
145         address in one shot.
146
147         * nntp.el: Autoload `auth-source-search'.
148         (nntp-send-authinfo): Use it.  Note TODO.
149
150 2011-02-08  Julien Danjou  <julien@danjou.info>
151
152         * shr.el (shr-tag-body): Add support for text attribute in body
153         markups.
154
155         * message.el (message-options): Make message-options a local variable.
156
157 2011-02-07  Teodor Zlatanov  <tzz@lifelogs.com>
158
159         * auth-source.el (auth-source-secrets-search)
160         (auth-source-user-or-password): Use `append' instead of `nconc'.
161         (auth-source-user-or-password): Build return list better and protect
162         against nil :secret.
163
164 2011-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
165
166         * nnimap.el (nnimap-update-info): Refactor slightly.
167         (nnimap-update-info): Tell Gnus whether there are any \Recent messages.
168         (nnimap-update-info): Clean up slightly.
169         (nnimap-quirk): Add quirk for Gmail IMAP which bugs out on NUL
170         characters.
171         (nnimap-process-quirk): Rename function to avoid collision.
172         (nnimap-update-info): Fix macrology bug-out.
173         (nnimap-update-info): Simplify split history test.
174
175 2011-02-06  Michael Albinus  <michael.albinus@gmx.de>
176
177         * auth-source.el (top): Require 'eieio unconditionally.  Autoload
178         `secrets-get-attributes' instead of `secrets-get-attribute'.
179         (auth-source-secrets-search): Limit search when `max' is greater than
180         number of results.
181
182 2011-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
183
184         * nntp.el (nntp-finish-retrieve-group-infos): Protect against the first
185         part not returning any data.
186
187         * proto-stream.el (open-protocol-stream): Document the return value.
188
189 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
190
191         * auth-source.el (auth-source-secrets-search): Add examples.
192
193 2011-02-06  Julien Danjou  <julien@danjou.info>
194
195         * message.el (message-setup-1): Handle message-generate-headers-first
196         set to t.
197
198 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
199
200         * auth-source.el (auth-sources): Allow for simpler defaults for Secrets
201         API with a string "secrets:collection-name" and with 'default.
202         (auth-source-backend-parse): Parse "secrets:collection-name" and
203         'default.  Recurse on parses instead of repeating code.  Use the
204         Secrets API is the source is not nil and 'ignore otherwise.  Emit a
205         message when ignoring a source.
206         (auth-source-search): List ignored search keys at the top level.
207         (auth-source-netrc-create): Use `case' instead of `cond'.
208         (auth-source-secrets-search): Created with TODOs.
209         (auth-source-secrets-create): Created with TODOs.
210         (auth-source-retrieve, auth-source-create, auth-source-delete)
211         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
212         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
213         (auth-source-user-or-password-sftp)
214         (auth-source-user-or-password-smtp): Removed.
215         (auth-source-user-or-password): Deprecated and modified to be a wrapper
216         around `auth-source-search'.  Not tested thoroughly.
217
218 2011-02-04  Teodor Zlatanov  <tzz@lifelogs.com>
219
220         * auth-source.el: Bring in assoc and eioeio libraries.
221         (secrets-enabled): New variable to track the status of the Secrets API.
222         (auth-source-backend): New EIOEIO class to represent a backend.
223         (auth-source-creation-defaults): New variable to set prompt defaults
224         during token creation (see the `auth-source-search' docstring for
225         details).
226         (auth-sources): Simplify to allow a simple string as a netrc backend
227         spec.
228         (auth-source-backend-parse): Parse a backend from an `auth-sources' spec.
229         (auth-source-backend-parse-parameters): Fill in the backend parameters.
230         (auth-source-search): Main auth-source API entry point.
231         (auth-source-delete): Wrapper around `auth-source-search' for deletion.
232         (auth-source-search-collection): Helper function for searching.
233         (auth-source-netrc-parse, auth-source-netrc-normalize)
234         (auth-source-netrc-search, auth-source-netrc-create): Netrc backend.
235         Supports search, create, and delete.
236         (auth-source-secrets-search, auth-source-secrets-create): Secrets API
237         backend stubs.
238         (auth-source-user-or-password): Call `auth-source-search' but it's not
239         ready yet.
240
241 2011-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
242
243         * message.el (message-setup-1): Remove the read-only stuff, since it
244         doesn't work under XEmacs, for some reason.
245
246         * gnus-sum.el (gnus-user-date): Rename back from
247         gnus-summary-user-date since user code refers to it.
248
249         * shr.el (shr-render-td): Store the actual background colour used.
250
251         * message.el (message-setup-1): Don't bind the constant
252         -forbidden-properties.
253         (message-setup-1): Revert previous change, since it needs to bind the
254         props to insert them.
255         (message-resend): Allow removing the read-only separator line.
256
257 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
258
259         * nnimap.el (nnimap-request-accept-article): Give an error message if
260         the APPEND wasn't successful.
261
262 2011-02-03  Adam Sjøgren  <asjo@koldfront.dk>
263
264         * gnus-start.el (gnus-get-unread-articles): Fix the call to methods
265         that have no groups.
266
267 2011-02-03  Julien Danjou  <julien@danjou.info>
268
269         * gnus-draft.el: Remove progn around gnus-draft-setup.
270
271 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
272
273         * gnus-start.el (gnus-read-active-for-groups): This function is never
274         called with a nil `infos', so clean that up.
275         (gnus-get-unread-articles): Request active files from primary/secondary
276         methods that have no groups (yet).
277
278 2011-02-03  Julien Danjou  <julien@danjou.info>
279
280         * message.el (message-setup-1): Always generate References first.
281         (message-mail): Return the return value of message-setup, not always t.
282         (message-setup-1): Insert mail-header-separator with read-only and
283         intangible properties set.
284
285         * gnus.el (gnus-summary-line-format): Add missing semi-colon for
286         user-date in docstring.
287
288         * gnus-art.el (gnus-article-jump-to-part): Remove useless sit-for.
289
290         * gnus.el (gnus-summary-line-format): Mention &user-date format in
291         docstring.
292
293         * gnus.el (gnus-user-date-format-alist): Change default value. Use
294         defcustom, with type and group. Move from gnus-util.el. Rename to
295         gnus-summary-user-date-format-alist.
296
297 2011-02-03  Glenn Morris  <rgm@gnu.org>
298
299         * nnimap.el (gnus-fetch-headers): Declare.
300
301         * nnheader.el (gnus-range-add, gnus-remove-from-range): Autoload.
302
303 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
304
305         * message.el (message-forward-make-body-digest-plain)
306         (message-followup, message-reply): Clean up things noted by Stefan.
307
308         * gnus-art.el (gnus-article-setup-buffer): Stop the date timer if
309         gnus-article-update-date-headers is nil.
310         (gnus-article-date-headers): Rip out the old -treat-date-* stuff, since
311         it didn't really work with defcustom.
312         (article-update-date-lapsed): Make sure the window start doesn't move,
313         either.
314
315 2011-02-01  Julien Danjou  <julien@danjou.info>
316
317         * mm-uu.el (mm-uu-type-alist): Add support for git format-patch diff
318         format.
319
320         * mm-decode.el (mm-inline-media-tests): Do not check for diff-mode it's
321         standard in Emacs nowadays.
322
323         * color.el (color-gradient): Add a color-gradient function.
324
325 2011-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
326
327         * message.el (message-expand-name): Don't trust the return value of
328         bbdb-complete-name.
329         (message-check-news-header-syntax): Remove unused var `start'.
330         (message-idna-to-ascii-rhs-1): Remove unused vars `rhs' and `address'.
331         (message-inhibit-body-encoding): Move to before first use.
332         (mail-abbrev-mode-regexp, Expires, User-Agent, Lines, Distribution)
333         (To, References, In-Reply-To, Newsgroups, Subject, Path, From)
334         (Organization, Message-ID, Date, mh-previous-window-config):
335         Defvar the vars using dynamic scoping.
336
337 2011-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
338
339         * shr.el (shr-render-td): Only do colours at the final rendering.
340         Should be slightly faster.
341         (shr-insert-table): Fix up TD background colours when doing the
342         vertical padding.
343
344         * gnus-art.el (article-date-ut): Protect against articles with no Date
345         header.
346         (article-update-date-lapsed): Don't use current-column to find the
347         horizontal position.  It's fragile in the presence of \003 characters.
348
349         * gnus-start.el (gnus-read-active-file-1): Remove dead parameter infos.
350
351 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
352
353         * gnus-art.el (article-transform-date): Rewrite to still work when
354         there are several rfc2822 parts.
355         (article-transform-date): Fix infinite recursion.
356         (article-date-ut): Replace infinitely many Date headers with a single
357         one when called interactively.
358
359         * nnimap.el (nnimap-wait-for-response): Wait for results in a more
360         secure manner.
361
362         * gnus-art.el (article-update-date-lapsed): Try to avoid having point
363         move around by not using save-window-excursion.  It seems to work...
364
365 2011-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
366
367         * gnus-art.el (article-make-date-line): Work for user-defined format.
368
369 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
370
371         * nntp.el (nntp-retrieve-group-data-early)
372         (nntp-finish-retrieve-group-infos): Implement the asynchronous data
373         fetching functions.
374
375         * gnus-start.el (gnus-read-active-for-groups): Read the active files
376         thoroughly for all backends that have no known groups.  This should
377         allow new nnml methods to retrieve mail.
378
379         * gnus-group.el (gnus-group-jump-to-group): Allow jumping to groups
380         that Gnus doesn't know exists again.
381
382         * gnus-art.el (gnus-article-date-lapsed-new-header): Removed.
383         (gnus-treat-date-ut): Ditto.
384         (gnus-article-update-date-header): Renamed.
385         (gnus-treat-date-local): Removed.
386         (gnus-treat-date-english): Removed.
387         (gnus-treat-date-lapsed): Removed.
388         (gnus-treat-date-combined-lapsed): Removed.
389         (gnus-treat-date-original): Removed.
390         (gnus-treat-date-iso8601): Removed.
391         (gnus-treat-date-user-defined): Removed.
392         (gnus-article-date-headers): New variable to control all the date
393         header options.
394         (article-date-ut): Rewrite to allow using the new way to format date
395         headers(s).
396
397 2011-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
398
399         * nnmail.el (nnmail-article-group): Check for a direct fancy split
400         method.
401         (nnmail-article-group): A better test for fanciness.
402
403         * nnimap.el (nnimap-request-head): Protect against not finding the
404         article by Message-ID.
405
406 2011-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
407
408         * gnus-art.el (article-update-date-lapsed): Try a better way to really
409         keep point at the "same place".
410
411 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
412
413         * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active
414         data if the group is unactivated.
415
416 2011-01-28  Julien Danjou  <julien@danjou.info>
417
418         * gnus-win.el: Remove dead function gnus-window-configuration-element.
419         (gnus-all-windows-visible-p): Remove old compatibility code.
420         (gnus-window-top-edge): Add docstring.
421
422         * gnus-group.el (gnus-group-jump-to-group): Set must match to t.
423
424 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
425
426         * gnus-int.el (gnus-request-marks): Call *-request-marks instead of the
427         older request-update-info.
428
429         * gnus-art.el (article-make-date-line): Limit the length a bit more.
430
431 2011-01-28  Daiki Ueno  <ueno@unixuser.org>
432
433         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt):
434         Give mml2015-signers higher precedence over mml2015-sign-with-sender.
435
436 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
437
438         * gnus-group.el (gnus-group-refresh-group): Refresh even non-visible
439         groups.  This makes the nndraft:queue group pop up if it's not already
440         there.
441
442         * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no
443         messages" logic, which was reversed.
444
445         * gnus-art.el (article-update-date-lapsed): Ensure that point stays at
446         the "same place" even if point is on the line being replaced.
447         (article-update-date-lapsed): Allow updating both the combined lapsed
448         and the lapsed headers.
449         (article-update-date-lapsed): Skip past all the X-Sent/Date headers.
450         (article-make-date-line): Limit the number of segments dynamically to
451         avoid too-long lines.
452
453 2011-01-27  Julien Danjou  <julien@danjou.info>
454
455         * mml2015.el (mml2015-epg-sign): Add and use mml2015-sign-with-sender.
456         (mml2015-epg-encrypt): Use mml2015-sign-with-sender.
457
458 2011-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
459
460         * shr.el (shr-expand-newlines, shr-previous-newline-padding-width):
461         Use plist-get instead of the cl function getf.
462
463 2011-01-27  Glenn Morris  <rgm@gnu.org>
464
465         * gnus-util.el (float-time): Get rid of compiler warning, again.
466
467 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
468
469         * shr.el (shr-put-color): Special-case background colours: Do put them
470         at the blank parts at the front of the lines.
471
472         * gnus-draft.el (gnus-draft-clear-marks): New function to be run as an
473         exit hook to nix out all data on readedness on group exit.
474
475         * gnus-util.el (float-time): If float-time is bound, always use it on
476         all Emacsen.  It's unclear why the subrp check was there.
477         (time-date): Require to make some autoload issues on XEmacs go away.
478
479         * shr.el (shr-put-color): Don't do the box padding in tables, since
480         they're already padded.
481
482 2011-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
483
484         * gnus-art.el (gnus-article-next-page): When the last line of the
485         article is displayed, scroll down once more instead of going to the
486         next article at once.
487         (article-lapsed-string): Refactor out and allow specifying how many
488         segments you want.
489         (gnus-article-setup-buffer): Start updating the lapsed header directly.
490         (gnus-article-update-lapsed-header): New variable.
491
492         * shr.el: Revert change that made headings use different-sized faces.
493         The Emacs display engine isn't advanced enough that, for instance,
494         tables can comfortably use differntly-sized faces.
495
496 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
497
498         * nnimap.el (nnimap-open-connection-1): Store the actual stream type
499         used.
500         (nnimap-login): Prefer plain LOGIN if it's enabled (since it requires
501         fewer round trips than CRAM-MD5, and it's less likely to be buggy), and
502         we're using an encrypted connection.
503
504         * proto-stream.el: Alter the interface functions to also return the
505         actual stream type used: network or tls.
506
507 2011-01-25  Julien Danjou  <julien@danjou.info>
508
509         * mm-view.el (mm-display-shell-script-inline): Fix typo in docstring.
510         (mm-display-javascript-inline): New function.
511
512         * mm-decode.el (mm-inline-media-tests): Add application/javascript
513         viewing function.
514
515 2011-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
516
517         * shr.el (shr-expand-newlines): Fix variable name.
518
519 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
520
521         * shr.el (shr-expand-newlines): Make nested boxes work.
522
523 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
524
525         * shr.el (shr-expand-newlines): Proof of concept implemantation of boxy
526         backgrounds.
527         (shr-expand-newlines): Switch to using overlays to enable kill'n'yank
528         in a more sensible manner.
529
530 2011-01-24  Teodor Zlatanov  <tzz@lifelogs.com>
531
532         * mml-smime.el (mml-smime-use): Make it a defcustom and default to 'epg
533         if EPG is loaded.
534
535 2011-01-24  Julien Danjou  <julien@danjou.info>
536
537         * shr.el: Use defface to create shr-tag-h[1-6] faces to fontify h[1-6]
538         tags.
539
540 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
541
542         * gnus-art.el (gnus-article-read-summary-keys): Don't call disabled
543         commands.
544
545         * gnus-gravatar.el (gnus-gravatar-insert): Don't move point around
546         in the article buffer.
547         (gnus-gravatar-insert): Use blank space from the current buffer to
548         avoid breaking text properties.  This makes X-Sent updating work again.
549
550         * gravatar.el (gravatar-retrieve): Be silent when retrieving.
551
552 2011-01-23  Lars Ingebrigtsen  <larsi@gnus.org>
553
554         * gnus-html.el (gnus-html-image-fetched): Kill the buffer anyway, and
555         fix the bug in url-http.el instead.
556
557         * shr.el (shr-image-fetched): Ditto.
558
559         * shr.el (shr-image-fetched): Avoid having point move in the article
560         buffer.
561
562         * gnus-html.el (gnus-html-image-fetched): Don't kill the temporary
563         buffer after being called.  It's apparently being killed by url.el, and
564         killing it made point move to end-of-buffer in a random buffer.
565
566         * shr.el (shr-image-fetched): Ditto.
567
568 2011-01-23  Julien Danjou  <julien@danjou.info>
569
570         * mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org.
571
572         * mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to
573         text/x-org.
574
575 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
576
577         * gnus-sum.el (gnus-summary-move-article): Protect against backends
578         (i.e., nnimap) returning nil as the article number.
579
580 2011-01-22  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
581
582         * flow-fill.el (fill-flowed): Make `delete-space' option correspond to
583         "DelSp" parameter in RFC3676.
584
585 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
586
587         * message.el (message-check-recipients): Display the encoded version of
588         the bogus address if they differ.
589
590         * gnus-draft.el (gnus-group-send-queue): Really refresh the queue group
591         after sending.
592
593         * gnus-agent.el (gnus-agent-send-mail): Ditto.
594
595         * gnus-group.el (gnus-group-refresh-group): New convenience function.
596
597         * gnus-draft.el (gnus-group-send-queue): Update the queue group in the
598         group buffer after sending the queue.
599
600         * gnus-agent.el (gnus-agent-send-mail): Ditto.
601
602 2011-01-22  Julien Danjou  <julien@danjou.info>
603
604         * mailcap.el (mailcap-mime-extensions): Rename text/org to text/x-org.
605
606 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
607
608         * mm-decode.el (mm-preferred-alternative-precedence): Don't bug out on
609         nested related parts.
610
611         * nnfolder.el (nnfolder-request-expire-articles): Return the list of
612         unexpired articles.  This fixes the regression that led expiry marks to
613         disappear from nnfolder groups.
614
615 2011-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
616
617         * gnus-art.el (gnus-button-alist, gnus-button-handle-info-keystrokes):
618         Don't confuse the "ret" of "retrograde" with RET.
619
620 2011-01-21  Julien Danjou  <julien@danjou.info>
621
622         * gnus-art.el (gnus-mime-display-single): Use mm-display-inline rather
623         than mm-insert-inline.
624
625 2011-01-21  Katsumi Yamaoka  <yamaoka@jpl.org>
626
627         * gnus-art.el (gnus-article-remove-images, gnus-article-show-images):
628         Widen article buffer.
629
630 2011-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
631
632         * mm-util.el (mm-find-buffer-file-coding-system): Don't forget to kill
633         the temp buffer.
634         * message.el (message-mailer-swallows-blank-line): Use with-temp-buffer.
635
636 2011-01-20  Julien Danjou  <julien@danjou.info>
637
638         * mm-decode.el (mm-inline-media-tests): Add text/x-sh.
639
640         * gnus-art.el (gnus-mime-inline-part): Use mm-display-inline rather
641         than mm-insert-inline to insert inline part: this respect
642         mm-inline-media-tests displayers.
643
644         * mm-view.el (mm-display-shell-script-inline): New function.
645
646         * mm-decode.el (mm-inline-media-tests): Add x-shellscript and x-sh.
647
648         * mm-uu.el (mm-uu-type-alist): Add org block.
649         (mm-uu-org-src-code-block-extract): New function.
650
651         * mm-view.el (mm-display-org-inline): New function.
652
653         * mm-decode.el (mm-automatic-display): Add text/org.
654
655         * mailcap.el (mailcap-mime-extensions): Add .org.
656
657 2011-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
658
659         * gnus-art.el (gnus-article-highlight): Remove argument passed to
660         gnus-article-add-buttons.
661
662 2011-01-19  Tom Rauchenwald  <sehnsucht.nach.unendlichkeit@quantentunnel.de>  (tiny change)
663
664         * spam.el (spam-spamassassin-register-with-sa-learn): Insert a full
665         From header with a date and "nobody" as the sender.
666
667 2011-01-19  Julien Danjou  <julien@danjou.info>
668
669         * gnus-art.el (gnus-article-add-buttons): Simplify condition.
670         (gnus-button-push): Remove gnus-button-entry function, it fails heavily
671         if you have the same regexp several times.
672         (gnus-button-push): Fix matching when regexp is symbol.
673
674 2011-01-15  Glenn Morris  <rgm@gnu.org>
675
676         * message.el (message-mail): A compose-mail function should
677         accept headers as strings.
678
679 2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
680
681         * message.el (message-tool-bar-gnome): Tweak tool-bar items.
682         Add :vert-only tags.
683         (message-mail): New arg RETURN-ACTION.
684         (message-return-action): New var.
685         (message-bury): Use it.
686         (message-mode): Make it buffer-local.
687         (message-send-and-exit): Always call message-bury.
688
689         * gnus-msg.el (gnus-msg-mail): New arg RETURN-ACTION.  Pass it to
690         message-mail.
691
692 2011-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
693
694         * nnimap.el (nnimap-convert-partial-article): Protect against
695         zero-length body parts.
696
697         * mm-decode.el (mm-preferred-alternative-precedence):
698         Discourage showing empty parts.
699
700         * gnus-int.el (gnus-request-accept-article): Don't try to update marks
701         and stuff if the backend didn't return the article number.  This fixes
702         an Exchange-related nnimap bug.
703
704         * gnus-sum.el (gnus-summary-next-article): Remove hack to reselect
705         group window, because it does the wrong thing when a separate frame
706         displays the group buffer.
707
708         * proto-stream.el (open-protocol-stream): Protect against the low-level
709         transport functions returning nil.
710
711 2011-01-07  Daiki Ueno  <ueno@unixuser.org>
712
713         * mml2015.el (epg-sub-key-fingerprint): Autoload.
714         (mml2015-epg-find-usable-secret-key): New function.
715         (mml2015-epg-sign): Use mml2015-epg-find-usable-secret-key instead of
716         mml2015-epg-find-usable-key (Bug#7797).
717         (mml2015-epg-encrypt): Ditto.
718
719 2011-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
720
721         * dgnushack.el (rot13-string): Fix the way to get the argument.
722
723 2011-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
724
725         * flow-fill.el (fill-flowed-encode): Do encoding citation-aware.
726
727 2011-01-03  Glenn Morris  <rgm@gnu.org>
728
729         * sieve-manage.el (sieve-manage-open): Correctly set sieve-manage-port.
730
731         * sieve.el (sieve-open-server): Give a more explicit error if
732         sieve-manage-open returns nil.  (Bug#7720)
733
734 2011-01-02  Karl Fogel  <kfogel@red-bean.com>
735
736         * gnus-msg.el (gnus-message-replyencrypt): Default to `t'.
737
738 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
739
740         * nnimap.el (nnimap-login): Prefer AUTH=CRAM-MD5, if it's available.
741         This avoids sending passwords in plain text over non-encrypted
742         channels.
743
744         * shr.el (shr-rescale-image): Display all GIF images as animated images.
745
746         * nnimap.el (nnimap-login): Refactored out into own function, and
747         implement CRAM-MD5.
748         (nnimap-wait-for-line): Refactored out.
749
750         * mm-view.el (mml-smime): Require.
751
752 2010-12-20  David Engster  <deng@eml.cc>
753
754         * mm-view.el (mm-view-pkcs7-decrypt): If mml-smime-use is set to 'epg,
755         use EPG to decrypt S/MIME messages instead of openssl.
756
757 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
758
759         * nnimap.el (nnimap-request-group): Avoid double SELECT on `M-g'.
760
761         * gnus-group.el (gnus-group-kill-group): Don't try to update the group
762         status is the group clearly is unreachable.
763
764         * auth-source.el (auth-source-create): Add the optional second
765         parameter to `local-variable-p' to be compatible with XEmacs.
766
767 2011-01-02  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
768
769         * nnml.el (nnml-request-article): Allow requesting by Message-ID to
770         work when using a compressed nnml folder.
771
772 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
773
774         * gnus-sum.el (gnus-select-newsgroup): Don't propagate marks to
775         backends after sanitising on entry, because this never makes sense:
776         If the articles have gone missing, then the data no longer exists on
777         the backend, and if they haven't, then Gnus is wrong, and shouldn't
778         overwrite anything anyway.
779
780         * shr.el (shr-insert-document): Bind shr-width dynamically to
781         window-width if it's nil.
782
783 2010-12-30  Tassilo Horn  <tassilo@member.fsf.org>
784
785         * shr.el (shr-width, shr-insert-document): Allow nil as shr-width value
786         with the meaning of using the full emacs window width for rendering.
787
788 2010-12-27  Daiki Ueno  <ueno@unixuser.org>
789
790         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Take care the
791         case when sender is not given.
792
793 2010-12-23  Julien Danjou  <julien@danjou.info>
794
795         * gnus-gravatar.el (gnus-gravatar-transform-address): Set
796         `mail-extr-ignore-realname-equals-mailbox-name' to nil when extracting
797         the addresses, otherwise we might misplaced the gravatar.
798
799 2010-12-21  Daiki Ueno  <ueno@unixuser.org>
800
801         * mml1991.el (pgg-sign-region, pgg-encrypt-region):
802         * gnus-art.el (pgg-snarf-keys-region): Autoload since PGG is now
803         obsolete in Emacs.
804
805 2010-12-20  Julien Danjou  <julien@danjou.info>
806
807         * gnus-util.el (gnus-rescale-image): Revert last change.
808
809 2010-12-17  Chong Yidong  <cyd@stupidchicken.com>
810
811         * binhex.el: Improve commentary (Bug#7482).
812
813 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
814
815         * gnus-group.el (gnus-group-delete-articles): New command.
816
817 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
818
819         * nnir.el (nnir-mode): Make sure 'gnus-registry-install is bound.
820
821 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
822
823         * gnus-sum.el (gnus-get-newsgroup-headers): Revert the last change
824         here, since it's up to the backends to do CRLF removal if their
825         protocol has it.
826
827         * nnimap.el (nnimap-retrieve-headers): Remove CRLF from the headers.
828
829 2010-12-17  Julien Danjou  <julien@danjou.info>
830
831         * gnus-util.el (gnus-rescale-image): Allow to resize images even if
832         they are from file. Can also scale up.
833
834 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
835
836         * gnus-sum.el (gnus-summary-refer-thread): Simplify code. Restore
837         gnus-use-agent.
838         (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
839
840         * nnir.el (nnir-get-active): Ignore nnir-ignored-newsgroups if null.
841
842 2010-12-17  Julien Danjou  <julien@danjou.info>
843
844         * gravatar.el (gravatar-retrieve-synchronously): New function.
845         (gravatar-get-data): Make more robust.
846
847 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
848
849         * lpath.el: Bind epa-file-encrypt-to for Emacs 22 and XEmacs.
850
851 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
852
853         * nnimap.el (nnimap-wait-for-response): Fix the end-point calculation
854         to really consider the last line.
855
856 2010-12-16  Daiki Ueno  <ueno@unixuser.org>
857
858         * auth-source.el (auth-source-gpg-encrypt-to): New variable to set the
859         list of recipient keys, or use symmetric encryption if not a list.
860         (auth-source-create): Use it to make `epa-file-encrypt-to' local for an
861         EPA override, replacing the call to `netrc-store-data'.
862
863 2010-12-16  Dan Davison  <dandavison7@gmail.com>  (tiny change)
864
865         * gnus-srvr.el: Avoid passing nil regexp argument to
866         delete-matching-lines.
867
868 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
869
870         * gnus-html.el (gnus-html-schedule-image-fetching): Make sure the HTML
871         fetching stops when Gnus exits.
872
873         * nnfolder.el (nnfolder-save-all-buffers): Refactor out into its own
874         function.
875         (nnfolder-request-expire-articles): Save all the buffers after doing
876         expiry.
877
878         * nnmail.el (nnmail-expiry-target-group): Revert the "all articles are
879         the last article", since that led to serious performance regressions
880         when expiring nnml groups.
881
882 2010-12-16  Andrew Cohen  <cohen@andy.bu.edu>
883
884         * nnir.el: Improve customizations.
885
886 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
887
888         * gnus-start.el (gnus-subscribe-newsgroup): Notify the backend.
889
890         * gnus-group.el (gnus-group-kill-group): Notify the backend that the
891         group has been killed.
892         (gnus-group-yank-group): Ditto.
893
894         * gnus-srvr.el (gnus-browse-unsubscribe-group): Ditto.
895
896         * nnimap.el (nnimap-request-update-group-status): New function.
897
898         * gnus-int.el (gnus-request-update-group-status): New interface
899         function.
900
901         * gnus-sum.el (gnus-summary-push-marks-to-backend): Fix the logic for
902         copying read-ness to the backends.
903
904         * nnimap.el (nnimap-quirk): New function.
905         (nnimap-retrieve-group-data-early): Use it.
906         (nnimap-quirks): New alist.
907
908 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
909
910         * shr.el (shr-insert): Set shr-start after deleting trailing space;
911         don't delete it within indentation.
912
913 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
914
915         * nnimap.el (nnimap-wait-for-response): Always look (at least) at the
916         previous line.
917
918 2010-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
919
920         * nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the
921         QRESYNC command by deleting a superfluous space which broke Cyrus
922         servers.  This change will break other servers that are buggy the other
923         way around.
924
925 2010-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
926
927         * spam.el: Reindent and fix long lines.
928         (spam-copy-or-move-routine): Exclude invalid move destinations.
929
930 2010-12-14  Andrew Cohen  <cohen@andy.bu.edu>
931
932         * nnir.el (nnir-mode): Don't install registry hooks if user hasn't
933         installed the registry.
934
935 2010-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
936
937         * dgnushack.el (rot13-string): New macro for XEmacs.  netrc.el uses it.
938
939 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
940
941         * nnir.el (nnir-run-gmane): Better check for gmane groups: error out if
942         groupname doesn't contain "gmane".
943
944 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
945
946         * netrc.el (netrc-point-at-eol): Remove the unused netrc-point-at-old
947         and netrc-bound-and-true-p bindings.
948         (netrc-parse): Cache the netrc contents.
949
950         * gnus-start.el (gnus-matches-options-n): Fix typo in last change.
951         (gnus-1): Don't create the nndrafts group twice.
952         (gnus-setup-news): There's no need to read the active file here, since
953         that's done again later on a per-backend basis.
954         (gnus-start-draft-setup): Make sure that the new group is started out
955         empty.
956
957         * gnus-agent.el (gnus-agentize): Don't create the queue group
958         automatically on startup.  It'll be created later, if needed.
959
960         * gnus-start.el (gnus-auto-subscribed-groups): Add nnimap to the list
961         of automatically subscribed groups.
962         (gnus-auto-subscribed-categories): New variable.
963         (gnus-matches-options-n): Use it.
964         (gnus-default-subscribed-newsgroups): Remove unused variable.
965         (gnus-start-draft-setup): Message a bit less.
966
967 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
968
969         * nnir.el (nnir-run-imap): Return article list in order of increasing
970         UID.
971
972 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
973
974         * gnus-sum.el (gnus-summary-enter-digest-group):
975         Mention gnus-auto-select-on-ephemeral-exit.
976
977         * proto-stream.el (proto-stream-open-network-only): Fix the calling
978         convention of the network-only option.
979
980 2010-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
981
982         * proto-stream.el (proto-stream-open-network-only): New function to
983         have a way to specify non-STARTTLS upgrade connections.
984
985 2010-12-10  Julien Danjou  <julien@danjou.info>
986
987         * gnus-gravatar.el (gnus-gravatar-transform-address): Fix error when
988         email address is nil.
989
990         * message.el (message-bogus-recipient-p): Set address to "" if nil.
991
992 2010-12-10  Andrew Cohen  <cohen@andy.bu.edu>
993
994         * nnir.el (nnir-request-expire-articles): Ignore expiry except for
995         deletion.
996         (nnir-run-imap): Only need to parse list once.
997
998 2010-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
999
1000         * shr.el (shr-tag-script): Ignore <script>.
1001         (shr-tag-label): Add <label> support.
1002
1003 2010-12-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1004
1005         * mm-util.el (mm-ucs-to-char): Use eval-and-compile.
1006
1007         * shr.el (shr-image-displayer): Work for images lined side by side.
1008
1009 2010-12-08  Robert Pluim  <rpluim@gmail.com>
1010
1011         * gnus-demon.el (gnus-demon-init): Call run-with-timer with an integer
1012         parameter, since XEmacs doesn't accept t as a parameter.
1013
1014 2010-12-08  Andrew Cohen  <cohen@andy.bu.edu>
1015
1016         * nnir.el (nnir-retrieve-headers): Use rassq when comparing article
1017         ids.
1018         (nnir-run-gmane): Simplify groupspec formatting.
1019         (nnir-request-expire-articles): New function.
1020
1021 2010-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1022
1023         * nnimap.el (nnimap-parse-flags): Tweak VANISHED regexp to avoid regexp
1024         overflow, possibly.
1025
1026         * shr.el (shr-tag-table-1): Use bg/gfcolor specs on tables.
1027         (shr-render-td): Handle td style="" better.
1028         (shr-tag-table): Use the color from the style sheet.
1029         (shr-render-td): Make sure we copy over all the overlays, too.
1030
1031 2010-12-07  Andrew Cohen  <cohen@andy.bu.edu>
1032
1033         * nnir.el (nnir-run-gmane): Restore sub-optimal test for gmane server.
1034         (nnir-request-article): Improve article retrieval.
1035
1036 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1037
1038         * mm-util.el (mm-extra-numeric-entities): New variable.
1039
1040         * mm-url.el (mm-url-decode-entities):
1041         * mm-decode.el (mm-shr): Use it to decode extra numeric entities.
1042
1043         * lpath.el: Fbind completion-at-point for Emacs 22 and XEmacs.
1044
1045 2010-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1046
1047         * message.el: Use completion-at-point.
1048         (message-completion-function): New fun, extracted from message-tab.
1049         (message-mode): Use it for completion-at-point-functions.
1050         (message-tab): Use it and completion-at-point.
1051
1052 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1053
1054         * shr.el (shr-find-fill-point): Don't break a line after a kinsoku-bol
1055         character if a non-breakable character follows.
1056
1057 2010-12-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1058
1059         * proto-stream.el (proto-stream-open-tls): Return nil if we don't get
1060         any stream.
1061
1062         * shr.el (shr-tag-font): Colorize the region.
1063         (shr-tag-body): Ditto.
1064         (shr-tag-font): Actually let the styles be inherited instead of
1065         overwriting them.
1066         (shr-tag-font): Get the background color right.
1067         (shr-tag-style): Ignore all <style> tags for the moment.
1068
1069         * gnus-int.el (gnus-request-thread): Rework to take a header instead of
1070         a Message-ID to avoid having nnimap depend on gnus-sum.
1071
1072         * shr.el (shr-descend): Only colorize something if we have a node that
1073         sets colors.
1074
1075 2010-12-06  Julien Danjou  <julien@danjou.info>
1076
1077         * shr.el (shr-render-td): Render td content with shr-descend, so style
1078         will be applied to <td> too.
1079         (shr-colorize-region): Colorize region even if we only have a background.
1080         (shr-tag-body): Fix color and background color inheritance.
1081         Do not recolorize after shr-generic.
1082         (shr-tag-font): Let shr-generic colorize via inheritance.
1083
1084 2010-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1085
1086         * shr.el (shr-find-fill-point): Don't regard apostrophe as kinsoku-bol.
1087
1088 2010-12-06  Andrew Cohen  <cohen@andy.bu.edu>
1089
1090         * nnir.el (nnir-request-move-article): Remove obsolete code.
1091
1092 2010-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1093
1094         * gnus-util.el (gnus-macroexpand-all): Use eval-and-compile.
1095
1096 2010-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1097
1098         * gnus-sum.el (gnus-summary-respool-article): The completion function
1099         expects a list instead of an alist.
1100
1101         * nntp.el (nntp-snarf-error-message): nnheader-report takes a format
1102         string as the parameter.
1103
1104         * gnus.el (gnus-valid-select-methods): Allow nnimap to respool.
1105
1106         * shr.el (shr-stylesheet): New dynamic variable for cascading the
1107         styles.
1108         (shr-colorize-region): New function.
1109         (shr-insert-background-overlay): Remove.
1110         (shr-render-td): Background setting should be taken care of on a higher
1111         level.
1112         (shr-tag-body): Use post-hoc colorizations.
1113         (shr-tag-body): Set up a style sheet based on bgcolor/fgcolor.
1114         (shr-put-color-1): Don't overwrite old colors.
1115         (shr-colorize-region): When the background color isn't explicit, use
1116         a fixed background.
1117
1118         * gnus-util.el (gnus-output-to-mail): Require nnmail before using
1119         nnmail variables.
1120
1121 2010-12-05  Bjørn Mork  <bjorn@mork.no>
1122
1123         * nnimap.el (nnimap-process-expiry-targets): Avoid downloading articles
1124         unless necessary.
1125
1126 2010-12-05  Andrew Cohen  <cohen@andy.bu.edu>
1127
1128         * nnir.el (nnir-run-gmane): Use more careful test for gmane nntp
1129         server.
1130
1131 2010-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1132
1133         * gnus-html.el (gnus-html-put-image): Use widget instead of local maps
1134         so that TAB works.
1135
1136         * gnus-sum.el (gnus-summary-show-article): Reverse the meanings of `C-u
1137         C-u g' and `C-u g' so that `C-u g' does what it traditionally did.
1138
1139         * shr.el (shr-urlify): Show the URL before the title to avoid
1140         misleading URLs.
1141
1142 2010-12-04  Adam Sjøgren  <asjo@koldfront.dk>
1143
1144         * shr.el (shr-urlify): Display the title in <a> tags.
1145
1146 2010-12-04  Andrew Cohen  <cohen@andy.bu.edu>
1147
1148         * nnir.el (nnir-categorize): Replace mapcar with mapc.
1149
1150 2010-12-03  Andrew Cohen  <cohen@andy.bu.edu>
1151
1152         * nnir.el: Rearrange code to allow macros to be autoloaded by
1153         gnus-sum.el.
1154         (nnir-retrieve-headers-override-function): Make this variable
1155         customizable.
1156         (nnir-retrieve-headers): Remove obsolete subject-mangling code.
1157
1158         * gnus-sum.el (nnir-article-group,nnir-article-rsv): Autoload macros
1159         from nnir.el.
1160
1161 2010-12-03  Julien Danjou  <julien@danjou.info>
1162
1163         * gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
1164
1165 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1166
1167         * gnus-util.el (gnus-macroexpand-all): Don't modify argument;
1168         allow optional argument `environment'.
1169
1170 2010-12-03  Glenn Morris  <rgm@gnu.org>
1171
1172         * mm-extern.el (message-goto-body): Update declaration.
1173
1174 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1175
1176         * gnus-util.el (gnus-macroexpand-all): New function.
1177
1178         * gnus-sum.el (gnus-summary-line-format-alist): Use gnus-macroexpand-all
1179         instead of macroexpand-all that is unavailable in XEmacs.
1180
1181 2010-12-02  Andrew Cohen  <cohen@andy.bu.edu>
1182
1183         * nnir.el (nnir-summary-line-format): New variable.
1184         (nnir-mode): Use it.
1185         (nnir-artlist-*,nnir-aritem-*): Reimplement as macros.
1186         (nnir-article-ids): Reimplement as defsubst.
1187         (nnir-retrieve-headers): Don't mangle the subject header.
1188         (nnir-run-imap): Use 100 as RSV score.
1189         (nnir-run-find-grep): Fix for full server searching.
1190         (nnir-run-gmane): Better restriction to gmane groups.
1191
1192         * gnus-sum.el (gnus-summary-line-format-alist): Add specs for nnir
1193         summary buffers.
1194
1195 2010-12-02  Julien Danjou  <julien@danjou.info>
1196
1197         * gnus-win.el (gnus-configure-frame): Remove old compatibility code.
1198
1199         * gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
1200
1201         * gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting
1202         support.
1203
1204 2010-12-01  Andrew Cohen  <cohen@andy.bu.edu>
1205
1206         * nnir.el: Update to handle the registry better.
1207         (autoload): Silence byte-compiler.
1208         (nnir-open-server): Add a hook for nnir groups.
1209         (nnir-request-move-article): Don't mangle the header. Better to use
1210         formating variables (which will be added in the future).
1211         (nnir-registry-action): Update the registry using the original article
1212         group name.
1213         (nnir-mode): Install nnir-specific hooks for updating the registry.
1214
1215         * gnus-sum.el
1216         (gnus-article-original-subject,gnus-newsgroup-original-name):
1217         Remove obsolete variables.
1218         (gnus-summary-move-article): Remove use of obsolete variables.
1219         (gnus-summary-local-variables): Make move and delete hooks local to
1220         summary buffers.
1221
1222 2010-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1223
1224         * rtree.el: New file.
1225
1226 2010-12-01  Julien Danjou  <julien@danjou.info>
1227
1228         * message.el (message-user-organization): Do not use
1229         gnus-local-organization.
1230
1231         * gnus.el: Remove gnus-local-organization.
1232
1233         * gnus-msg.el: Remove nastygram thing.
1234
1235 2010-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
1236
1237         * nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark
1238         funcall.
1239
1240 2010-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1241
1242         * gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of
1243         names.
1244
1245         * shr.el (shr-find-fill-point): Don't break line between kinsoku-bol
1246         characters.
1247
1248         * gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding
1249         to t of inhibit-read-only since it is inside gnus-with-article-headers.
1250         Suggested by Štěpán Němec <stepnem@gmail.com>.
1251         (gnus-gravatar-transform-address): Use mail-extract-address-components
1252         that supports non-ASCII names rather than mail-header-parse-addresses.
1253
1254 2010-11-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1255
1256         * proto-stream.el (open-protocol-stream): All starttls connections are
1257         handled by the network handler.
1258
1259 2010-11-30  Julien Danjou  <julien@danjou.info>
1260
1261         * nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
1262         (nnimap-open-connection-1): Fix PREAUTH.
1263
1264         * gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
1265
1266 2010-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1267
1268         * shr.el (shr-char-breakable-p, shr-char-nospace-p)
1269         (shr-char-kinsoku-bol-p, shr-char-kinsoku-eol-p): New macros.
1270         (shr-insert): Use them.
1271         (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
1272
1273 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
1274
1275         * nnir.el (nnir-request-move-article): Bail out if original group
1276         doesn't support article moves.
1277         (nnir-get-active): Improve active list retrieval.
1278
1279 2010-11-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1280
1281         * shr.el (shr-find-fill-point): Don't break before apostrophes.
1282
1283 2010-11-29  Binjo  <binjo.cn@gmail.com>  (tiny change)
1284
1285         * nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't
1286         seem to accept strings-with-numbers as port numbers,
1287
1288 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
1289
1290         * gnus-sum.el (gnus-summary-delete-article): If delete fails don't
1291         change the registry.
1292
1293 2010-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
1294
1295         * nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of
1296         delete-dups that is not available in XEmacs 21.4.
1297
1298         * mm-util.el (mm-delete-duplicates): Add comment.
1299
1300 2010-11-28  Andrew Cohen  <cohen@andy.bu.edu>
1301
1302         * nnir.el (nnir-ignored-newsgroups): New variable.
1303         (nnir-get-active): Use it.
1304
1305 2010-11-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1306
1307         * proto-stream.el (proto-stream-open-network): Add some comments.
1308
1309         * nntp.el (nntp-open-connection): Provide a :success condition.
1310
1311         * nnimap.el (nnimap-open-connection-1): Ditto.
1312
1313         * proto-stream.el (proto-stream-open-network): See what the response to
1314         the STARTTLS command is.
1315
1316         * nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for
1317         backwards compatibility).
1318         (nnimap-open-connection-1): Really respect nnimap-server-port.
1319
1320         * proto-stream.el (proto-stream-open-network): When doing opportunistic
1321         TLS upgrades we don't really care about the identity of the peer.
1322         (proto-stream-open-network): Force starttls.el to use gnutls-cli, since
1323         that what we've checked for.
1324         (proto-stream-always-use-starttls): Only default to t if
1325         open-gnutls-stream exists.
1326         (proto-stream-open-network): If STARTTLS failed, then just open a
1327         normal connection.
1328         (proto-stream-open-network): Wait until the greeting before doing
1329         STARTTLS.
1330
1331         * nntp.el (nntp-open-connection): Report what the connection error is.
1332
1333         * proto-stream.el (open-protocol-stream): Rename from
1334         open-proto-stream.
1335
1336 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1337
1338         * nnimap.el (nnimap-stream): Change default to `undecided'.
1339         (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl
1340         first, and then network.
1341         (nnimap-open-connection-1): Respect nnimap-server-port.
1342         (nnimap-open-connection): Be more backwards-compatible.
1343
1344         * proto-stream.el (proto-stream-always-use-starttls): New variable.
1345         (proto-stream-open-starttls): De-duplicate the starttls code.
1346         (proto-stream-open-starttls): Folded back into the main function.
1347         (proto-stream-open-network): Fix typo in the gnutls path.
1348         (proto-stream-command): Refactor out.
1349
1350         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
1351
1352         * proto-stream.el (proto-stream-open-starttls): Actually implement the
1353         starttls.el STARTTLS.
1354
1355         * color.el (color-lab->srgb): Fix function call name.
1356
1357         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
1358         if we're using tls.el.
1359         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
1360         built in, then don't try to establish a STARTTLS connection.
1361
1362         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
1363         servers.
1364
1365         * proto-stream.el (open-proto-stream): Use network, not stream.
1366         (open-proto-stream): Add a way to specify what the end of a command is.
1367
1368         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
1369         connections types.
1370         (nntp-open-network-stream): Remove.
1371         (nntp-open-ssl-stream): Remove.
1372         (nntp-open-tls-stream): Remove.
1373         (nntp-ssl-program): Remove.
1374
1375         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
1376
1377 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
1378
1379         * nnir.el: Fix typos.
1380         (nnir-retrieve-headers-override-function): Rename variable to reflect
1381         new semantics.
1382         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
1383         macros.
1384         (nnir-request-article, nnir-request-move-article): Use them.
1385         (nnir-categorize): New function.
1386         (nnir-run-query): Use it.
1387         (nnir-retrieve-headers): Rewrite to batch header retrieval.
1388         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
1389         sorted.
1390         (nnir-group-full-name): Use gnus-group-full-name instead.
1391         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
1392         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
1393
1394 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1395
1396         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
1397
1398         * proto-stream.el: New library to provide protocol-specific
1399         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
1400         protocols.
1401         (open-proto-stream): Complete the documentation.
1402         (proto-stream-open-network): Fix some typos.
1403
1404         * nnimap.el (nnimap-open-connection): Use it.
1405
1406 2010-11-27  Yuri Karaban  <tech@askold.net>  (tiny change)
1407
1408         * pop3.el (pop3-open-server): Read server greeting before starting TLS
1409         negotiation.
1410
1411 2010-11-26  Julien Danjou  <julien@danjou.info>
1412
1413         * color.el: Rename various rgb functions to srgb.
1414
1415 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1416
1417         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
1418         names.
1419
1420 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
1421
1422         * shr.el (shr-insert): Revert last change.
1423         (shr-find-fill-point): Never leave point being at bol;
1424         relax the kinsoku limitation when rendering tables.
1425
1426 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1427
1428         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
1429         results from -accept-article.
1430
1431         * shr-color.el: Require cl when compiling.
1432
1433         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
1434         checkin.
1435
1436         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
1437
1438         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
1439
1440         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
1441         'add and 'delete to set backend marks.
1442
1443         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
1444
1445         * nnheader.el (nnheader-update-marks-actions): Refactor out.
1446
1447         * nntp.el (nntp-request-set-mark): Use it.
1448
1449         * nnfolder.el (nnfolder-request-set-mark): Ditto.
1450
1451         * nnml.el (nnml-request-set-mark): Ditto.
1452
1453         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
1454         introduces regressions in article selection.
1455         (nnimap-find-uid-response): New function.
1456         (nnimap-request-accept-article): Use the UID returned, if any.
1457         (nnimap-request-move-article): Use the UID returned, if any.
1458         (nnimap-get-groups): Reimplement to work with folded lines.
1459         (nnimap-find-uid-response): The UID is the last element in the list.
1460         (nnimap-request-set-mark): Extend syntax with 'set.
1461
1462         * nnml.el (nnml-request-set-mark): Ditto.
1463
1464         * nnfolder.el (nnfolder-request-set-mark): Ditto.
1465
1466         * nntp.el (nntp-request-set-mark): Ditto.
1467
1468 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1469
1470         * message.el (message-called-interactively-p): A temporary macro.
1471         (message-goto-body): Use it temporarily.
1472
1473 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1474
1475         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
1476         (nnimap-last-response-string): Unfold quoted lines, if they exist.
1477         (nnimap-last-response-string): Fix last unfolding fix.
1478
1479 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1480
1481         * shr.el (shr-insert): Fix the way to fold lines.
1482
1483 2010-11-25  Julien Danjou  <julien@danjou.info>
1484
1485         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex
1486
1487         * color.el: Rename from color-lab.el
1488         (color-rgb->hex): Add.
1489         (color-complement): Add.
1490         (color-complement-hex): Add.
1491
1492         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
1493
1494 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1495
1496         * shr-color.el (shr-color-visible): Don't bug out if the colour names
1497         don't exist.
1498
1499 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1500
1501         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
1502         assuming that article displaying or another mml-preview may be
1503         interrupted for an error or for the like.
1504
1505         * shr.el (shr-get-background): Fix argument name.
1506
1507 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1508
1509         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
1510
1511         * gnus-sum.el (gnus-summary-include-articles): New function.
1512
1513         * message.el (message-goto-body): called-interactively-p needs a
1514         parameter, so use `any'.
1515
1516         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
1517         clear marks before moving, since they're synced from the Gnus side
1518         first.
1519
1520         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
1521         (gnus-summary-move-article): Copy over all marks before moving, so that
1522         IMAP doesn't think a new article has arrived.
1523
1524 2010-11-24  Julien Danjou  <julien@danjou.info>
1525
1526         * shr.el (shr-insert-background-overlay): Fix typo.
1527         (shr-render-td): Copy the background before rendering.
1528
1529         * shr-color.el (shr-color-visible): Fix docstring.
1530
1531         * shr.el (shr-tag-table): Add bgcolor support.
1532         (shr-render-td): Add bgcolor support.
1533         (shr-get-background): Add.
1534         (shr-insert-foreground-overlay): Use shr-get-background.
1535
1536         * message.el (message-goto-body): Use called-interactively-p.
1537         (message-in-body-p): message-goto-body returns point.
1538
1539 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1540
1541         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
1542         Fixes something or other in Emacs 23, and is backwards compatible.
1543
1544         * message.el (message-goto-body): Remove the <#secure special-casing,
1545         which is too special.
1546
1547         * shr.el (shr-parse-style): Drop !important from styles.
1548
1549 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
1550
1551         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
1552         this function to return incorrect results when calling it with an
1553         explicit article argument different from
1554         (gnus-summary-article-number).
1555
1556 2010-11-24  Julien Danjou  <julien@danjou.info>
1557
1558         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
1559         (shr-tag-body): Add background support.
1560         (shr-descend): Add background support.
1561         (shr-tag-title): Add.
1562
1563         * shr-color.el (shr-color-visible): Really return original background
1564         if fixed.
1565
1566 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1567
1568         * shr.el (shr-color-check): Protect against non-existant colour names.
1569
1570 2010-11-24  Julien Danjou  <julien@danjou.info>
1571
1572         * color-lab.el: Require 'cl when compiling.
1573
1574         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
1575
1576         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
1577         matched part.
1578
1579         * color-lab.el: Fix all expt calls to use float type.
1580
1581 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
1582
1583         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
1584         expression to shr-color-check as is.
1585
1586         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
1587
1588         * color-lab.el: Add coding cookie.
1589         (float-pi): Use eval-and-compile.
1590
1591         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
1592         compiled for Emacsen having no `libxml-parse-html-region' support.
1593
1594 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1595
1596         * shr.el (shr-insert-color-overlay): Split stuff like
1597         "#444444 !important" to find the real colour.
1598         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
1599         parse <font color="red"> entries.
1600
1601 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
1602
1603         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
1604         point when parsing headers.
1605
1606         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
1607         is positioned properly when parsing headers.
1608
1609 2010-11-23  Julien Danjou  <julien@danjou.info>
1610
1611         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
1612
1613         * shr-color.el (shr-color->hexadecimal): Add support for color names.
1614
1615         * shr.el (shr-parse-style): Replace \n with space in style parsing.
1616
1617         * shr-color.el (shr-color-hsl-to-rgb-fractions):
1618         Use shr-color-hue-to-rgb.
1619         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
1620
1621 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1622
1623         * shr.el (shr-color->hexadecimal): Autoload.
1624         (shr-descend): Add color to all tags.
1625
1626 2010-11-22  Julien Danjou  <julien@danjou.info>
1627
1628         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
1629         shr-color->hexadecimal.
1630
1631         * shr-color.el (shr-color->hexadecimal): Add converting functions for
1632         RGB() or HSL() color representation.
1633
1634         * shr.el (shr-tag-font): Add.
1635         (shr-tag-color-check): New function to get better colors.
1636         (shr-tag-insert-color-overlay): Factorize code between tag-font and
1637         tag-span.
1638
1639         * shr-color.el: New file.
1640
1641         * color-lab.el: New file.
1642
1643         * gnus-art.el (gnus-url-mailto): Do not downcase args.
1644
1645 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
1646
1647         * nnir.el: Fix typo in comments.
1648         (nnir-run-imap): Simplify code. No need to reverse artlist.
1649         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
1650
1651 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1652
1653         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
1654
1655         * nnimap.el (nnimap-get-capabilities): Refactor out.
1656         (nnimap-open-connection): Re-request capabilities after STARTTLS.
1657
1658 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
1659
1660         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
1661         appearing when `mm-uu-hide-markers' is nil.
1662
1663 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1664
1665         * nnimap.el (nnimap-unselect-group): Make into its own function.
1666         (nnimap-request-rename-group): Unselect group before renaming.
1667         This had gotten lost somewhere.
1668         (nnimap-request-accept-article): Keep track of examined groups, and
1669         unselect the group before APPENDing to read-only groups.
1670         (nnimap-request-move-article): Clear flags before moving so that they
1671         can be re-set later.
1672
1673 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1674
1675         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
1676         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
1677
1678 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1679
1680         * gnus-art.el (gnus-mime-display-single)
1681         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images)
1682         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
1683         parameter.
1684
1685 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1686
1687         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
1688         (shr-table-vertical-line): New variable.
1689         (shr-insert-table): Use it.
1690
1691 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1692
1693         * gnus-html.el (gnus-html-wash-images): Don't display images if
1694         gnus-inhibit-images is non-nil; register displayer for cid images.
1695         (gnus-html-display-image): Work for cid image.
1696         (gnus-html-insert-image): Allow arguments.
1697         (gnus-html-put-image): Inhibit read-only.
1698         (gnus-html-prefetch-images): Don't prefetch images if
1699         gnus-inhibit-images is non-nil.
1700
1701 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1702
1703         * shr.el (shr-put-image): Break lines when inserting big pictures.
1704
1705 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
1706
1707         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
1708         sender, thanks Katsumi Yamaoka.
1709
1710 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
1711
1712         * nnir.el (nnir-run-imap): Reverse the article list for each group
1713         rather than the whole list.
1714
1715 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1716
1717         * shr.el (shr-image-displayer): Protect function against non-existent
1718         image source.
1719
1720         * gnus-art.el (gnus-inhibit-images): New user option.
1721         (gnus-mime-display-single): Don't display image if it is non-nil.
1722
1723         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
1724         gnus-inhibit-images.
1725
1726         * shr.el (shr-image-displayer): New function.
1727         (shr-tag-img): Use it.
1728
1729 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
1730
1731         * mml2015.el (mml2015-epg-sign): Use From header.
1732
1733 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1734
1735         * gnus-html.el (gnus-html-wash-images): Register a displayer.
1736
1737         * gnus-util.el (gnus-find-text-property-region): Return markers.
1738
1739         * shr.el (shr-tag-img): Put a displayer in the text property.
1740
1741         * gnus-util.el (gnus-find-text-property-region): New utility function.
1742
1743         * gnus-html.el (gnus-html-display-image): Make the alt optional.
1744         (gnus-html-show-images): Remove.
1745
1746         * gnus-art.el (gnus-article-show-images): New, more general function.
1747
1748         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
1749         image url text properties.
1750
1751         * shr.el: Ditto.
1752
1753         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
1754         gnus-agent-auto-agentize-methods is set.  Which it isn't.
1755
1756 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1757
1758         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
1759         work for two or more articles.
1760
1761 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1762
1763         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
1764         divide an image that's in an html article to two or more when washing
1765         non-ASCII characters in alt text of it.
1766
1767 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1768
1769         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
1770         smime-decrypt-region using function argument.
1771         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
1772
1773         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
1774
1775         * smime.el (smime-decrypt-region): Catch it.
1776
1777 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1778
1779         * smime.el (smime-mode-map): Move initialization into declaration.
1780         (gnus-run-mode-hooks): Don't autoload.
1781         (smime-mode): Use define-derived-mode.
1782
1783 2010-11-11  Glenn Morris  <rgm@gnu.org>
1784
1785         * smime.el (from): Restrict declaration to XEmacs.
1786
1787         * nnir.el (gnus-group-topic-name): Autoload.
1788
1789 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1790
1791         * shr.el (shr-insert): Don't break long line if it is because of
1792         kinsoku-bol characters in the line end.
1793
1794 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
1795
1796         * nnir.el (nnir-request-move-article): Fix to provide original group
1797         and subject.
1798         (nnir-warp-to-article): Don't fail on articles whose headers haven't
1799         been retrieved.
1800
1801         * gnus-sum.el (gnus-summary-move-article): Use original group and
1802         subject for virtual articles such as those in an nnir summary buffer.
1803
1804 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1805
1806         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
1807         least 21.5).
1808
1809         * smime.el (from): Declare it again for XEmacs.
1810
1811 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1812
1813         * message.el (message-resend): Don't disable encoding unless it's
1814         already encoded.
1815
1816         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
1817         low-numbered articles.
1818
1819 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1820
1821         * rfc2047.el (rfc2047-syntax-table): Simplify.
1822
1823         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
1824
1825         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
1826         set-char-table-range for XEmacs.
1827
1828 2010-11-10  Glenn Morris  <rgm@gnu.org>
1829
1830         * time-date.el (time-to-seconds): Always an alias on Emacs,
1831         never a real function.
1832         (with-no-warnings): Remove compat stub, now unused.
1833         (time-less-p): Doc fix.
1834         (time-to-number-of-days): Simplify.
1835
1836         * smime.el (from): Remove unused declaration.
1837
1838         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
1839         (gnus-float-time): On Emacs, always an alias.
1840
1841         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
1842         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
1843
1844 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1845
1846         * dgnushack.el: Don't use ignore-errors in the top level form since it
1847         is unavailable in XEmacs even if cl is loaded.
1848
1849         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
1850
1851 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1852
1853         * shr.el (browse-url-mailto): Autoload.
1854
1855         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
1856
1857         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
1858         regexp doesn't need quoting.
1859
1860 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
1861
1862         * message.el (message-subject-trailing-was-ask-regexp)
1863         (message-subject-trailing-was-regexp): Match was: in addition to was.
1864
1865 2010-11-09  Glenn Morris  <rgm@gnu.org>
1866
1867         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
1868         (nnbabyl-check-mbox): Use point-at-bol.
1869
1870 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1871
1872         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
1873
1874         * message.el (message-mailto): New function.
1875         (message-mailto): Should accept other parameters.
1876         (message-mailto): Remove since it duplicates browse-url-mailto
1877         functionality.
1878
1879 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1880
1881         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
1882         methods.
1883         (gnus-read-active-file): Ditto.
1884
1885         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
1886         ": " from the prompt.
1887         (gnus-group-make-group): Ditto.
1888
1889 2010-11-07  Glenn Morris  <rgm@gnu.org>
1890
1891         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
1892         (gnus-bookmark-kill-line): Use point-at-eol.
1893
1894 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1895
1896         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
1897         asterisks in From header.
1898
1899 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1900
1901         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
1902         string to avoid making the From headers syntactically invalid.
1903
1904         * message.el (message-send-mail): Don't insert courtesy messages if the
1905         message already has List-Post and List-ID messages.
1906
1907 2010-11-06  Glenn Morris  <rgm@gnu.org>
1908
1909         * gnus-art.el (gnus-treat-article): Give dynamic local variables
1910         `condition', `type', `length' a prefix.
1911         (gnus-treat-predicate): Update for above name changes.
1912
1913 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
1914
1915         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
1916         binding.  Handled by `gnus-summary-refer-thread' instead.
1917         (nnir-warp-to-article): New backend function.
1918
1919         * nnimap.el (nnimap-request-thread): Force dependency updating.
1920
1921         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
1922         (gnus-summary-refer-thread): Rework to improve thread-referral.
1923
1924         * gnus-int.el (gnus-warp-to-article): New function.
1925
1926         * gnus-sum.el (gnus-summary-article-map): Bind it.
1927
1928 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
1929
1930         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
1931         gnus-summary-refer-thread.
1932
1933         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
1934         headers.
1935         (gnus-summary-limit-include-thread): Prevent articles in thread from
1936         being cut in gnus-cut-threads.
1937         (gnus-summary-refer-thread): Limit retrieved headers to those in
1938         thread.
1939
1940 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1941
1942         * message.el (message-send-mail): Use the value of
1943         message-courtesy-message from the message buffer.
1944
1945         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
1946
1947         * shr.el (shr-browse-url): Implement mailto: URLs.
1948
1949         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
1950         "raw".
1951
1952         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
1953         if it's already selected.
1954
1955         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
1956
1957 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
1958
1959         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
1960         to measure the length and truncate alt text.
1961
1962 2010-11-03  Glenn Morris  <rgm@gnu.org>
1963
1964         * nndiary.el (nndiary-generate-nov-databases-1)
1965         (nndiary-generate-active-info): Rename dynamic variable `files' to
1966         something less generic.
1967
1968 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
1969
1970         * nnir.el (nnir-request-move-article): Call the underlying backend to
1971         move articles from nnir.
1972
1973 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1974
1975         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
1976
1977 2010-11-02  Julien Danjou  <julien@danjou.info>
1978
1979         * nnir.el: Remove wais support.
1980
1981 2010-11-02  Glenn Morris  <rgm@gnu.org>
1982
1983         * gnus-html.el: Reorder requirements to quieten compiler.
1984
1985 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1986
1987         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
1988         properly for XEmacs as well.
1989         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
1990         (gnus-article-natural-long-line-p): Use window-width rather than
1991         frame-width.
1992
1993 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
1994
1995         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
1996         (nnir-read-parms): Don't modify query.
1997         (nnir-run-query): Add ability to search topic on current line.
1998         (nnir-get-active): Clean up.
1999
2000 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2001
2002         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
2003         degenerate articles.
2004
2005         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
2006         (gnus-print-buffer): Just print the buffer as is, without any copying
2007         to a buffer and then re-highlighting.
2008
2009         * nnimap.el (nnimap-request-group): Store the new updated info.
2010         (nnimap-request-group): Select the group when we don't know whether it
2011         exists or not.
2012
2013         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
2014         groups.
2015
2016         * gnus-group.el (gnus-group-find-new-groups): Display all the new
2017         groups.
2018
2019         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
2020         groups.
2021
2022         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
2023         long-lines case by only filling the long lines.
2024
2025         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
2026         (bug #7311).
2027
2028 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2029
2030         * shr.el: No need to declare `declare-function' since shr.el is for
2031         only Emacsen that provide `libxml-parse-html-region'.
2032
2033         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
2034         effective only in a file it is referred to.
2035
2036 2010-11-01  Glenn Morris  <rgm@gnu.org>
2037
2038         * mm-util.el (gnus-completing-read): Autoload.
2039         (mm-read-coding-system): Simplify Emacs definition.
2040
2041         * nnmail.el (gnus-activate-group):
2042         * nnimap.el (gnutls-negotiate):
2043         * nntp.el (netrc-parse): Fix declarations.
2044
2045 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2046
2047         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
2048         string-match-p in Emacs >=23.
2049
2050         * gnus-msg.el (gnus-configure-posting-styles)
2051         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
2052
2053 2010-11-01  Glenn Morris  <rgm@gnu.org>
2054
2055         * nnir.el (declare-function): Add compat stub.
2056         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
2057         (nnir-run-gmane): Require 'mm-url.
2058
2059         * mm-util.el (mm-string-to-multibyte): Simplify.
2060
2061         * shr.el (declare-function): Add compat stub.
2062         (url-cache-create-filename): Declare.
2063         (mm-disable-multibyte, widget-convert-button): Autoload.
2064
2065         * smime.el (ldap-search): Declare.
2066         (smime-cert-by-ldap-1): Require ldap on Emacs.
2067
2068         * nnimap.el: Require nnmail, and gnus-sum when compiling.
2069         (nnimap-keepalive): Use gnus-float-time.
2070
2071         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
2072         (mail-source-delete-crash-box): Use gnus-float-time.
2073
2074         * gnus-dired.el (gnus-completing-read): Autoload.
2075
2076         * mm-view.el (gnus-rescale-image): Autoload.
2077
2078         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
2079
2080         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
2081
2082         * sieve-manage.el: Require 'cl when compiling.
2083
2084         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
2085         (gnus-iswitchb-completing-read): Require iswitchb.
2086         (gnus-select-frame-set-input-focus): Silence compiler.
2087
2088 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2089
2090         * message.el (message-subject-trailing-was-query): Change default to t,
2091         since I think that's what most people want.
2092
2093         * nnimap.el (nnimap-request-accept-article): Erase buffer before
2094         appending for easier debugging.
2095         (nnimap-wait-for-connection): Take a regexp.
2096         (nnimap-request-accept-article): Wait for the continuation line before
2097         sending anything unless we're streaming.
2098
2099         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
2100         leave the header washing to take place.
2101
2102 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
2103
2104         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
2105         regular expression match and replace in posting styles.
2106
2107 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
2108
2109         * nnir.el (gnus-group-make-nnir-group,nnir-run-query): Allow searching
2110         an entire server.
2111         (nnir-get-active): New function.
2112         (nnir-run-imap): Use it.
2113         (nnir-run-gmane): Who knew, gmane search returns an article score!
2114
2115         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
2116         server on the current line with nnir.
2117
2118 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2119
2120         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
2121         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
2122         left edge.
2123         (gnus-article-foldable-buffer): Skip past the prefix when determining
2124         raggedness.
2125
2126         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
2127         the raw article, and change `C-u g' to show the article without doing
2128         treatments.
2129
2130         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
2131         on to `gnus-treat-article'.
2132         (gnus-inhibit-article-treatments): New variable.
2133
2134         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
2135
2136         * gnus-art.el (gnus-treatment-function-alist): Have
2137         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
2138         (gnus-treat-fill-long-lines): Change default to fill all text/plain
2139         sections.
2140
2141         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
2142         parameter.
2143         (gnus-article-fill-cited-long-lines): New function.
2144         (gnus-article-fill-cited-article): Allow filling only long sections.
2145
2146         * shr.el (shr-find-fill-point): Don't break lines between punctuation
2147         and non-punctuation (like after the apostrophe in "'We").
2148
2149         * gnus-sum.el (gnus-summary-select-article): Make sure
2150         gnus-original-article-buffer is alive.
2151
2152         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
2153         reflect the order they're in in the digest.
2154
2155         * gnus.el (gnus-group-startup-message): Move point to the start of the
2156         buffer.
2157
2158         * nnimap.el (nnimap-capability): New function.
2159         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
2160         is set.
2161
2162 2010-10-31  David Engster  <dengste@eml.cc>
2163
2164         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
2165         conform with changes to gnus-completing-read.
2166
2167 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2168
2169         * shr.el (shr-tag-img): Output "*" instead of "[img]".
2170
2171 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
2172
2173         * nnir.el: Move defvar, defcustom around to keep file organized
2174         and keep byte-compiler quiet.
2175         (nnir-read-parms): Accept search-engine as arg.
2176         (nnir-run-query): Pass search-engine as arg.
2177         (nnir-search-engine): Remove.
2178
2179 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2180
2181         * shr.el (shr-generic): The text nodes should be text, not :text.
2182
2183         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
2184         later in the file.
2185
2186 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
2187
2188         * nnir.el: General clean up.  Allow searching with multiple engines.
2189         Allow separate extra-parameters for each engine.
2190         Batch queries when possible.
2191         (nnir-imap-default-search-key,nnir-method-default-engines):
2192         Add customize interface.
2193         (nnir-run-gmane): New engine.
2194         (nnir-engines): Use it.  Qualify all prompts with engine name.
2195         (nnir-search-engine): Remove global variable.
2196         (nnir-run-hyrex): Restore for now.
2197         (nnir-extra-parms,nnir-search-history): New variables.
2198         (gnus-group-make-nnir-group): Use them.
2199         (nnir-group-server): Remove in favor of gnus-group-server.
2200         (nnir-request-group): Avoid searching twice.
2201         (nnir-sort-groups-by-server): New function.
2202
2203 2010-10-30  Julien Danjou  <julien@danjou.info>
2204
2205         * gnus-group.el: Remove gnus-group-fetch-control.
2206
2207         * gnus-start.el (gnus-find-new-newsgroups):
2208         Remove gnus-check-first-time-used.
2209
2210         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
2211
2212 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
2213
2214         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
2215         set on groups that don't have \* permanentflags.
2216
2217 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2218
2219         * shr.el (shr-tag-span): Drop colorisation of regions since we don't
2220         control the background color.
2221         (shr-tag-img): Ignore very small web bug type images.
2222         (shr-put-image): Add help-echo alt texts to the images.
2223         (shr-tag-video): Show the video poster image.
2224
2225 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2226
2227         * shr.el (shr-table-depth): New variable.
2228         (shr-tag-table-1): Only insert the images after the top-level table.
2229
2230         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
2231
2232         * gnus-util.el (gnus-list-memq-of-list): New function.
2233
2234         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
2235         selected.
2236         (nnimap-unsplittable-articles): New slot.
2237         (nnimap-new-articles): Use it.
2238
2239 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
2240
2241         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
2242         move to the previous line on `M-g'.
2243
2244 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2245
2246         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
2247         *-request-group, which seems unnecessary.
2248
2249         * nnimap.el (nnimap-quote-specials): Function copied over from
2250         imap.el.
2251         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
2252         they support that.  Suggested by Tom Regner.
2253
2254 2010-10-29  Julien Danjou  <julien@danjou.info>
2255
2256         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
2257         defalias.
2258         (gnus-summary-delete-marked-with): Remove obsolete defalias.
2259
2260         * gnus.el: Remove `gnus-nntp-service' variable.
2261         (gnus-secondary-servers): Make obsolete.
2262         (gnus-nntp-server): Make obsolete.
2263
2264         * gnus-start.el (gnus-1): Remove x-splash calls.
2265
2266         * gnus-ems.el (gnus-x-splash): Remove.
2267
2268         * gnus.el (gnus-group-startup-message): Simplify/update code.
2269
2270         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
2271         definition.
2272
2273         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
2274         capability before doing anything.
2275         (gnus-group-insert-group-line): Remove useless
2276         gnus-group-remove-excess-properties.
2277
2278 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2279
2280         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
2281
2282 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2283
2284         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
2285         config after reselecting.
2286
2287 2010-10-28  Julien Danjou  <julien@danjou.info>
2288
2289         * shr.el (shr-put-image): Use point even if only inserting text.
2290         (shr-put-image): Save excursion when inserting alt text on non-graphic
2291         display, so the behaviour is the same when we are on a graphic display.
2292
2293         * nnir.el (nnir-run-swish-e): Remove hyrex support.
2294
2295 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2296
2297         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
2298         (gnus-mime-copy-part): Check coding system, not charset.
2299         (gnus-mime-view-part-externally): Never remove part.
2300         (gnus-mime-view-part-internally): Don't remove part here.
2301         (gnus-article-part-wrapper): Make sure MIME tag is visible.
2302         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
2303         multipart/alternative.
2304
2305         * mm-decode.el (mm-display-part): Take optional arg `force'.
2306
2307 2010-10-26  Julien Danjou  <julien@danjou.info>
2308
2309         * gnus-group.el (gnus-group-default-list-level): Add this function to
2310         compute the default list level.
2311         (gnus-group-default-list-level): Add possibility to use a function.
2312
2313 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2314
2315         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
2316
2317         * gnus-group.el (gnus-group-completing-read)
2318         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
2319         gnus-replace-in-string.
2320
2321 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2322
2323         * shr.el (shr-tag-div): Add.
2324
2325         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
2326
2327 2010-10-25  Julien Danjou  <julien@danjou.info>
2328
2329         * gnus-util.el: Remove `gnus-with-local-quit'.
2330
2331         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
2332
2333 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2334
2335         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
2336         the original article buffer.
2337
2338 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2339
2340         * nnimap.el (nnimap-request-head): New function.
2341         (nnimap-request-move-article): Try to be slighly faster by not
2342         requesting the entire message when moving.
2343         (nnimap-transform-headers): Don't bug out on bodiless articles.
2344         (nnimap-send-command): Have no outstanding messages if the IMAP server
2345         doesn't support streaming.
2346         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
2347
2348 2010-10-24  Julien Danjou  <julien@danjou.info>
2349
2350         * message.el (message-default-headers): Fix type.
2351
2352 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2353
2354         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
2355         prefetching images.
2356
2357         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
2358         backend for unknown groups.  This is mainly useful for nnimap groups.
2359
2360         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
2361         group isn't covered by the agent.
2362
2363 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
2364
2365         * nnir.el (nnir-method-default-engines): New variable.
2366         (nnir-run-query): Use it.
2367         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
2368         (gnus-summary-nnir-goto-thread): Change group if needed.
2369
2370         * gnus-group.el (gnus-group-group-map): Add key binding for
2371         gnus-group-make-nnir-group.
2372
2373 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2374
2375         * shr.el (shr-tag-object): Add.
2376
2377         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
2378         original article buffer live.
2379         (gnus-summary-select-article-buffer):
2380         Mention gnus-widen-article-buffer.
2381
2382 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2383
2384         * shr.el (shr-tag-strong): Add.
2385
2386 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2387
2388         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
2389         group names.  They mess up the group buffer badly.
2390
2391         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
2392
2393         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
2394         instead of the summary one.
2395
2396 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2397
2398         * mml.el (mml-preview): Work properly when editing article.
2399
2400         * gnus-start.el (gnus-read-active-file-1): Don't add method to
2401         gnus-have-read-active-file if it's already been in.
2402
2403 2010-10-22  Tom Tromey  <tromey@redhat.com>
2404
2405         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
2406         gnus-group-completing-read.
2407
2408 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2409
2410         * message.el (message-mode-map): Don't bind M-; to comment region, to
2411         allow the global comment-dwim to work.
2412
2413 2010-10-21  Julien Danjou  <julien@danjou.info>
2414
2415         * message.el (message-setup-1): Allow message-default-headers to be a
2416         function.
2417
2418 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2419
2420         * shr.el (shr-tag-table): Simplify.
2421
2422 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2423
2424         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
2425         to avoid trying to snarf invalid stuff.
2426
2427         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
2428
2429         * gnus.el (gnus-message-archive-group): Quote value.
2430         (gnus-message-archive-group): Mark as changed.
2431
2432         * shr.el (shr-add-font): Don't put the font properties on the newline
2433         or the indentation.
2434
2435         * message.el (message-fix-before-sending): Change options when sending
2436         non-printable characters.
2437
2438         * gnus.el (gnus-message-archive-method): Change the default to
2439         monthly outgoing groups.
2440
2441         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
2442         that have gotten new numbers.
2443
2444         * nnimap.el (nnimap-request-replace-article): New function.
2445
2446 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2447
2448         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
2449         (nnrss-request-article): Don't use special html washing code.
2450
2451 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
2452
2453         * shr.el (shr-tag-table): Remove useless nconc.
2454
2455 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2456
2457         * gnus-art.el (article-wash-html): Simplify and remove the charset
2458         stuff.  Use the normal html rendering code instead of the special html
2459         washing code.
2460
2461         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
2462         `gnus-w3m' symbols.
2463         (mm-text-html-washer-alist): Remove.
2464
2465         * mm-decode.el (mm-inline-text-html-renderer): Remove.
2466         (mm-inline-media-tests): Remove use.
2467         (mm-text-html-renderer): Change default to the `shr' symbol.
2468
2469         * mm-view.el (mm-inline-text-html): Remove use.
2470
2471         * gnus-art.el (gnus-blocked-images): New function.  Allow the
2472         `gnus-blocked-images' to be a function.
2473         (gnus-article-wash-function): Remove.
2474
2475 2010-10-20  Julien Danjou  <julien@danjou.info>
2476
2477         * spam.el (spam-list-of-processors): Mark as obsolete.
2478
2479         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
2480         (nnimap-insert-partial-structure): Fix boundary detection.
2481
2482 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
2483
2484         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
2485         run file-truename on remote files.  This can be expensive and even
2486         prevent one from editing drafts if some unrelated buffer has a stale
2487         connection.
2488
2489 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
2490
2491         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
2492         kinsoku-eol regardless of shr-kinsoku-shorten.
2493         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
2494         (shr-tag-table): Support caption, thead, and tfoot.
2495
2496 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2497
2498         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
2499         lines.
2500         (shr-save-contents): New command and keystroke.
2501
2502         * nndoc.el (nndoc-type-alist): Add git support.
2503         (nndoc-git-type-p): New function.
2504         (nndoc-transform-git-article): Ditto.
2505         (nndoc-transform-git-headers): Ditto.
2506         (nndoc-transform-git-headers): Generate Subject headers.
2507
2508         * shr.el (shr-parse-style): New function.
2509         (shr-tag-span): Ditto.
2510
2511         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
2512         to `G G' to avoid collisions.
2513
2514 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
2515
2516         * shr.el: Load kinsoku if necessary.
2517         (shr-kinsoku-shorten): New internal variable.
2518         (shr-find-fill-point): Make kinsoku shorten text line if
2519         shr-kinsoku-shorten is bound to non-nil.
2520         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
2521         shr-indentation too when testing if table is wider than frame width.
2522         (shr-insert-table): Use `string-width' instead of `length' to measure
2523         text width.
2524         (shr-insert-table-ruler): Make sure indentation is done at bol.
2525
2526 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2527
2528         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
2529         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
2530         undecoded network data.
2531
2532 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2533
2534         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
2535         name in the mode line spec so that the mode line menu works
2536         (bug #2431).
2537
2538         * message.el (message-get-reply-headers): If we're fed `to-address',
2539         then always use that.
2540
2541         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
2542         aren't so wide as to need to switch off the edit menu.
2543
2544         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
2545         binding.  Suggested by Leo <sdl.web@gmail.com> (bug #6613).
2546
2547         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
2548         `M-g'.
2549         (nnimap-update-info): Update flags/read marks even if \* isn't part of
2550         the permanent marks.
2551
2552 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
2553
2554         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
2555         Splitting according to references/in-reply-to obeys the ignore-groups
2556         variable, while splitting by sender and subject do not.
2557
2558 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2559
2560         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
2561         alist, so that we can look for non-Unicode chars.
2562         (article-translate-strings): Allow both character and string maps.
2563
2564 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2565
2566         * shr.el (shr-insert): Don't insert space behind a wide character
2567         categorized as kinsoku-bol, or between characters both categorized as
2568         nospace.
2569
2570 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
2571
2572         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
2573         headers to gnus-newsgroup-headers.
2574
2575 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2576
2577         * shr.el (shr-tag-img): Don't align images -- since we're not
2578         rescaling, this often leads to ugly displays.
2579
2580 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
2581
2582         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
2583         duplicates.
2584
2585 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
2586
2587         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
2588         call.
2589
2590 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2591
2592         * gnus.el: Autoload gnus-html-show-images.
2593
2594         * nnimap.el: Use nnheader-message throughout.
2595
2596         * shr.el (shr-tag-img): Ignore images with no data.
2597
2598 2010-10-15  Julien Danjou  <julien@danjou.info>
2599
2600         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
2601         a possibility to disable format=flow encoding when using hard newlines.
2602
2603 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2604
2605         * shr.el (shr-insert): Remove space inserted before or after a
2606         breakable character or at the beginning or the end of a line.
2607         (shr-find-fill-point): Do kinsoku; find the second best point or give
2608         it up if there's no breakable point.
2609
2610 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2611
2612         * nnimap.el (nnimap-open-connection): Message when opening connection
2613         for debugging purposes.
2614
2615         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
2616         on every setup buffer call to allow this to change from article to
2617         article.
2618
2619         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
2620         buffers where we have a wide table.
2621
2622 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
2623
2624         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
2625         uses *-request-thread.
2626
2627 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2628
2629         * nnimap.el (nnimap-open-connection): Remove %s from openssl
2630         incantation, which is no longer valid.
2631
2632 2010-10-14  Julien Danjou  <julien@danjou.info>
2633
2634         * shr.el: Fix defcustom type (char -> character).
2635
2636 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2637
2638         * nnimap.el (nnimap-open-connection): tls-program should be a list of
2639         programs.
2640
2641 2010-10-14  Julien Danjou  <julien@danjou.info>
2642
2643         * shr.el (shr-tag-a): Use url-link as widget type.
2644
2645         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
2646         `gnus-group-get-icon'.
2647
2648 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2649
2650         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
2651         This should make server editing work better.
2652
2653         * shr.el (shr-find-fill-point): Don't inloop on indented text.
2654
2655         * tls.el (tls-program): Remove spurious %s from openssl.
2656
2657         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
2658         (nnimap-parse-flags): Fix regexp.
2659
2660         * shr.el (shr-find-fill-point): Use a filling algorithm that should
2661         probably work for CJVK text, too.
2662
2663         * nnimap.el (nnimap-extend-tls-programs): Remove.
2664         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
2665
2666         * tls.el (tls-starttls-switches): Remove starttls hack.
2667         (open-tls-stream): Ditto.
2668         (tls-find-starttls-argument): Ditto.
2669
2670 2010-10-13  Julien Danjou  <julien@danjou.info>
2671
2672         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
2673         responses.
2674
2675 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2676
2677         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
2678
2679         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
2680         anything in Emacs.
2681
2682         * shr.el (shr-current-column): Remove buggy and unnecessary function.
2683
2684 2010-10-13  Julien Danjou  <julien@danjou.info>
2685
2686         * shr.el (shr-width): Make shr-width a defcustom with default to
2687         fill-column.
2688         (shr-tag-img): Use shr-width rather than fill-column.
2689
2690 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2691
2692         * dgnushack.el (byte-optimize-apply)
2693         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
2694
2695         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
2696         position when (X-)Faces exist.
2697         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
2698         avatars when called interactively.
2699
2700 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2701
2702         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
2703         gnus-article-x-face-too-ugly is bound.
2704
2705 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2706
2707         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
2708
2709         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
2710         mailbox that doesn't exist.
2711
2712 2010-10-12  Julien Danjou  <julien@danjou.info>
2713
2714         * shr.el (shr-tag-img): Encode URL properly when retrieving.
2715         (shr-get-image-data): Encode URL properly when fetching from cache.
2716         (shr-tag-img): Use aligned-to spaces to align correctly images.
2717
2718         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
2719         before inserting the Gravatar.
2720
2721         * shr.el (shr-tag-img): Add align attribute support for <img>.
2722
2723 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2724
2725         * gnus-gravatar.el (gnus-art): Require.
2726
2727         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
2728         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
2729         Remove long obsoleted functions.
2730
2731 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2732
2733         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
2734
2735         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
2736
2737         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
2738         * gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
2739         * hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
2740         * mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
2741         * mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
2742         * nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
2743         * sieve-manage.el, smime.el, spam.el:
2744         Fix comment for declare-function.
2745
2746 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2747
2748         * nnimap.el (nnimap-request-rename-group): Select group read-only
2749         before renaming it.
2750
2751         * shr.el (shr-insert): Fix up the white space only regexp.
2752
2753         * nnimap.el (nnimap-transform-split-mail): Not all articles have
2754         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
2755
2756         * shr.el (shr-current-column): New function.
2757         (shr-find-fill-point): New function.
2758
2759 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
2760
2761         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
2762         numbers.
2763
2764 2010-10-11  Julien Danjou  <julien@danjou.info>
2765
2766         * shr.el (shr-hr-line): Add.
2767         (shr-tag-hr): Use shr-hr-line to specify which character to use to
2768         display hr lines.
2769         (shr-max-columns): Do not change state to nil if we just inserting
2770         spaces.
2771
2772 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2773
2774         * gnus-topic.el (gnus-topic-read-group): If after the last group,
2775         select the last group.
2776
2777 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
2778
2779         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
2780
2781 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
2782
2783         * dig.el (dig-mode-map): Declare and define in one step.
2784
2785 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2786
2787         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
2788         for Gnus.
2789         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
2790         (nnimap-update-qresync-info): Mark \Seen articles as read.
2791
2792         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
2793         non-variable, too.
2794
2795         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
2796         available.
2797         (nnimap-update-info): Rely more on the current active than the param
2798         active to avoid marking articles as read too much.
2799
2800         * auth-source.el (auth-source-create): Use (user-login-name) for the
2801         user name default.
2802
2803         * nnimap.el (nnimap-update-info): If the server doesn't return any
2804         useful info, just use the previous info.
2805         (nnimap-update-info): Prefer old info over start-article.
2806         (nnimap-update-qresync-info): Finish implementing QRESYNC.
2807
2808 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
2809
2810         * nnir.el (autoload): Clean up autoloads.
2811         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
2812         Use key rather than value.
2813         (nnir-imap-search-other): New variable.
2814         (nnir-read-parm): Use it.
2815         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
2816         (gnus-summary-nnir-goto-thread): Modify to work with imap.
2817
2818 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2819
2820         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
2821         the process, too.
2822
2823 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2824
2825         * spam.el (gnus-summary-mode-map): Bind to "$".
2826         Suggested by Russ Allbery.
2827
2828         * shr.el: Rework the way things are indented by <li> slightly.
2829
2830         * gnus.el (gnus-group-set-parameter): Fix typo.
2831
2832         * nnimap.el: Start implementing QRESYNC support.
2833
2834 2010-10-09  Julien Danjou  <julien@danjou.info>
2835
2836         * nnir.el (nnir-engines): Fix too many arguments.
2837
2838 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2839
2840         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
2841         group is the "last", so that the backends like nnfolder actually save
2842         their folders.
2843
2844         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
2845         try to use that for the tls stream.
2846         (nnimap-retrieve-group-data-early): Rework the marks code to heed
2847         UIDVALIDITY and find out which groups are read-only and not.
2848         (nnimap-get-flags): Use the same marks parsing code as the rest of
2849         nnimap.
2850
2851 2010-10-09  Julien Danjou  <julien@danjou.info>
2852
2853         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
2854
2855         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
2856         retrieving gravatars.
2857
2858         * shr.el (shr-table-corner): Add.
2859         (shr-table-line): Add.
2860         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
2861
2862 2010-10-08  Julien Danjou  <julien@danjou.info>
2863
2864         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
2865
2866 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
2867
2868         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
2869
2870         * gnus-sum.el (gnus-mark-article-as-unread)
2871         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
2872         (gnus-summary-set-bookmark): Use it.
2873
2874         * gnus-msg.el (gnus-setup-message): Use it.
2875
2876         * gnus-demon.el (gnus-demon-remove-handler): Use it.
2877
2878         * gnus.el (gnus-group-remove-parameter): Use it.
2879
2880         * gnus-group.el (gnus-group-make-web-group): Use it.
2881
2882         * gnus-demon.el (gnus-demon-remove-handler): Use it.
2883
2884         * nnregistry.el: Update docs to mention manual.
2885
2886         * gnus-registry.el: Update docs to mention nnregistry.el.
2887         (gnus-registry-initialize): Don't install nnregistry refer method
2888         automatically.
2889         (gnus-registry-install-nnregistry): Remove it.
2890
2891 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2892
2893         * shr.el (shr-insert): Don't insert double spaces.
2894
2895 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2896
2897         * gnus-gravatar.el (gnus-treat-from-gravatar)
2898         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
2899         called interactively.
2900
2901         * gnus-art.el (gnus-mime-view-part-externally)
2902         (gnus-mime-view-part-internally): Make predicate function passed to
2903         gnus-mime-view-part-as-type assume argument is a mime type, not a list
2904         of a mime type.
2905
2906         * shr.el (shr-table-widths): Don't use cl function `reduce'.
2907
2908 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2909
2910         * shr.el (require): Require cl when compiling.
2911         (shr-tag-hr): New function.
2912
2913         * nnimap.el (nnimap-update-info): Remove double setting of high.
2914         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
2915         This makes nnimap work properly on Courier again.
2916
2917         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
2918         the variable for backwards compatability.
2919
2920         * mm-decode.el (mm-save-part): If given a non-directory result, expand
2921         the file name before using to avoid setting mm-default-directory to
2922         nil.
2923
2924         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
2925         bidning gnus-agent variables.
2926
2927         * shr.el (shr-render-td): Use a cache for the table rendering function
2928         to avoid getting an exponential rendering behaviour in nested tables.
2929         (shr-insert): Rework the line-breaking algorithm.
2930         (shr-insert): Don't leave trailing spaces.
2931         (shr-insert-table): Also insert empty TDs.
2932         (shr-tag-blockquote): Ensure paragraphs after </ul>.
2933
2934 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2935
2936         * gnus-sum.el (gnus-number): Rename from `number'.
2937         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
2938         (gnus-summary-limit-children): Update uses correspondingly.
2939
2940 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2941
2942         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
2943         (gnus-gravatar-transform-address): Don't show avatars of people of
2944         which mail addresses match gnus-gravatar-too-ugly.
2945
2946 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2947
2948         * shr.el (shr-table-widths): Expand TD elements to fill available
2949         space.
2950
2951 2010-10-07  Julien Danjou  <julien@danjou.info>
2952
2953         * nnimap.el (nnimap-request-rename-group): Add this method.
2954
2955 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2956
2957         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
2958         name from XEmacs' function-arglist.
2959
2960         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
2961         gravatar under XEmacs.
2962
2963 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
2964
2965         * auth-source.el: Update docs with TODO items.
2966
2967         * gnus-sync.el: Update docs to explain state and plans.
2968
2969         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
2970         Hooks for mark updates.
2971         (gnus-request-set-mark, gnus-request-update-mark): Use them.
2972
2973         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
2974         hooks with arguments, which is needed for mark update hooks.
2975
2976 2010-10-06  Julien Danjou  <julien@danjou.info>
2977
2978         * gnus.el (gnus-expand-group-parameter): Only return and act on what
2979         was matched.
2980
2981         * sieve-manage.el: Update example in `Commentary'.
2982
2983         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
2984
2985         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
2986         not 2000.
2987         (sieve-manage-authenticate): Re-add function.
2988
2989 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2990
2991         * shr.el (shr-insert): Get 'space transition right.
2992         (shr-render-td): Only delete space at the end of the TD.
2993
2994         * nnimap.el (nnimap-open-connection): Prepare to support
2995         open-gnutls-stream.
2996
2997         * shr.el: Rearrange function order to be more logical.
2998
2999 2010-10-06  Julien Danjou  <julien@danjou.info>
3000
3001         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
3002         (nnrss-discover-feed): Remove 404 URL in docstring.
3003
3004         * nnir.el: Fix Swish-E URL.
3005         Fix Namazu URL.
3006
3007         * message.el (message-change-subject): Remove 404 URL in a comment.
3008
3009 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3010
3011         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
3012         called interactively.
3013
3014         * gnus-util.el (gnus-remove-if): Allow hash table.
3015         (gnus-remove-if-not): New function.
3016
3017         * gnus-art.el (gnus-mime-view-part-as-type)
3018         * gnus-score.el (gnus-summary-score-effect)
3019         * gnus-sum.el (gnus-read-move-group-name):
3020         Replace remove-if-not with gnus-remove-if-not.
3021
3022         * gnus-group.el (gnus-group-completing-read):
3023         Regard collection as a hash table if it is not a list.
3024
3025 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3026
3027         * shr.el (shr-render-td): Allow blank/missing <TD>s.
3028
3029         * shr.el: Document the table-rendering algorithm.
3030
3031 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3032
3033         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
3034         for Emacsen having no `libxml-parse-html-region' support.
3035
3036 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3037
3038         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
3039         invalid URLs.
3040
3041         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
3042         line-broken.
3043         (shr-tag-img): Ignore image fetching errors.
3044         (shr-overlays-in-region): Compute overlay positions correctly.
3045
3046         * mm-decode.el (mm-shr): Require shr.
3047
3048         * gnus-art.el (gnus-blocked-images): Move variable here.
3049
3050         * shr.el (shr-insert-table): Bind free variable.
3051
3052         * mm-decode.el (mm-shr): Bind shr-content-function.
3053
3054         * shr.el (shr-content-function): New variable.
3055
3056         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
3057         added for symmetry.
3058
3059         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
3060
3061         * gnus-group.el (gnus-group-make-group): Doc fix.
3062
3063         * nnimap.el (nnimap-request-newgroups): Return success.
3064
3065         * shr.el (shr-find-elements): New function.
3066         (shr-tag-table): Put all the images after the table.
3067         (shr-tag-table): Really inhibit images inside the table.
3068         (shr-collect-overlays): Copy over overlays from the TD elements to the
3069         main document.
3070
3071         * mm-decode.el (mm-shr): Bind shr-blocked-images to
3072         gnus-blocked-images.
3073
3074 2010-10-05  Julien Danjou  <julien@danjou.info>
3075
3076         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
3077
3078         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
3079         (gnus-html-maximum-image-size): Add this function.
3080         (gnus-html-put-image): Use gnus-html-maximum-image-size.
3081
3082         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
3083         server-value of the capability is nil.
3084
3085 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3086
3087         * shr.el (shr-tag-em): Add <EM> tag.
3088
3089 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
3090
3091         * sieve-manage.el (sieve-manage-default-stream): Make default stream
3092         customizable.
3093
3094         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
3095         handing broken links to browse-url.
3096
3097 2010-10-05  Julien Danjou  <julien@danjou.info>
3098
3099         * gnus-util.el (gnus-emacs-completing-read)
3100         (gnus-iswitchb-completing-read): Use autoload rather than require.
3101
3102 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3103
3104         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
3105         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
3106         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
3107         iswitchb-temp-buflist for XEmacs.
3108
3109         * gnus-util.el (gnus-completing-read-function): Exclude
3110         gnus-icompleting-read and gnus-ido-completing-read from candidates for
3111         XEmacs since iswitchb.el is very old and ido.el is unavailable in
3112         XEmacs.
3113
3114         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
3115         not to use `delete-dups' that is unavailable in XEmacs 21.4.
3116
3117         * gnus-html.el: Don't require help-fns under XEmacs.
3118         (gnus-html-schedule-image-fetching): Work for XEmacs.
3119
3120         * mm-decode.el (mm-shr): Decode contents by charset.
3121
3122 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3123
3124         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
3125         unknown.
3126
3127         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
3128         (shr-get-image-data): Ensure against the cache file missing.
3129
3130         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
3131         for data.
3132
3133         * spam-report.el (spam-report-url-ping-plain): Don't query about
3134         killing the process.
3135
3136         * shr.el (shr-render-td): Protect against too-wide text.
3137
3138 2010-10-04  Julien Danjou  <julien@danjou.info>
3139
3140         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
3141         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
3142
3143         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
3144         retrieved.
3145
3146 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3147
3148         * shr.el (browse-url): Require.
3149         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
3150         lines.
3151         (shr-show-alt-text, shr-browse-image): New commands.
3152         (shr-browse-url, shr-copy-url): New commands.
3153
3154         * gnus-sum.el (gnus-widen-article-window): New variable.
3155         (gnus-summary-select-article-buffer): Use it.
3156
3157         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
3158         without @ signs.
3159
3160 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
3161
3162         * nnir.el (nnir-run-imap): Remove spurious space in search string.
3163
3164 2010-10-04  Julien Danjou  <julien@danjou.info>
3165
3166         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
3167         for XEmacs.
3168
3169 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3170
3171         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
3172
3173         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
3174         (nnimap-close-server): Implement.
3175
3176         * dgnushack.el (iswitchb): Require to shut up the compiler.
3177
3178         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
3179         (shr-insert): Tweak line breaking.
3180         (shr-insert): Handle <pre> better.
3181         (shr-tag-li): Get <li> indentation right.
3182         (shr-tag-li): Get <li> indentation even righter.
3183         (shr-tag-blockquote): Ensure paragraph start.
3184         (shr-make-table): Tweak table generation.
3185         (shr-make-table): Fix typo.
3186
3187         * shr.el: Implement table rendering.
3188
3189 2010-10-04  Julien Danjou  <julien@danjou.info>
3190
3191         * gnus-html.el (gnus-html-put-image): Fix resize image code.
3192
3193 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3194
3195         * shr.el (shr-insert): Use string anchors instead of line anchors.
3196
3197 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3198
3199         * shr.el: Add headings.
3200         (shr-ensure-paragraph): Actually work.
3201         (shr-tag-li): Make <ul> prettier.
3202         (shr-insert): Get white space at the beginning/end of elements right.
3203         (shr-tag-p): Collapse subsequent <p>s.
3204         (shr-ensure-paragraph): Don't insert double line feeds after blank
3205         lines.
3206         (shr-insert): \t is also space.
3207         (shr-tag-s): Fix "s" tag name function.
3208         (shr-tag-s): Fix face prop name.
3209
3210 2010-10-03  Julien Danjou  <julien@danjou.info>
3211
3212         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
3213
3214         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
3215         gnus-window-inside-pixel-edges.
3216
3217         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
3218         gnus-ems.
3219
3220         * mm-view.el (mm-inline-image-emacs): Support image resizing.
3221
3222         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
3223         function.
3224
3225         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
3226         resize choice.
3227
3228 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3229
3230         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
3231         beginning of the buffer.
3232
3233         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
3234         article buffer again.
3235
3236         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
3237
3238         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
3239         when it's at the start of the buffer.
3240
3241         * shr.el (shr-tag-blockquote): Convert name.
3242         (shr-rescale-image): Use the right image-size variant.
3243
3244         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
3245         buffer isn't shown, then select the current article first instead of
3246         bugging out.
3247         (gnus-summary-select-article-buffer): Show both the article and summary
3248         buffers again.
3249
3250         * shr.el (shr-fontize-cont): Protect against regions with no text.
3251         Rename tag functions to shr-tag-* for enhanced security.
3252         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
3253
3254 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
3255
3256         * shr.el (shr-insert):
3257         * pop3.el (pop3-movemail):
3258         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
3259         loaded.
3260
3261 2010-10-03  Glenn Morris  <rgm@gnu.org>
3262
3263         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
3264
3265         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
3266
3267         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
3268
3269         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
3270
3271         * gnus-util.el (gnus-make-local-hook): Simplify.
3272
3273 2010-10-02  Julien Danjou  <julien@danjou.info>
3274
3275         * gnus-util.el (gnus-iswitchb-completing-read): New function.
3276         (gnus-ido-completing-read): New function.
3277         (gnus-emacs-completing-read): New function.
3278         (gnus-completing-read): Use gnus-completing-read-function.
3279         Add gnus-completing-read-function.
3280
3281 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3282
3283         * shr.el (shr-insert-document): Autoload.
3284         (shr-img): Be silent.
3285         (shr-insert): Add a newline after every picture before text.
3286         (shr-add-font): Use overlays for combining faces.
3287         (shr-insert): Pass upwards the text start point.
3288
3289         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
3290         possible.
3291         (mm-shr): New function.
3292
3293 2010-10-02  Julien Danjou  <julien@danjou.info>
3294
3295         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
3296         should go backward.
3297
3298 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
3299
3300         * shr.el (shr): Fix typo in provide call.
3301
3302 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3303
3304         * shr.el: New file.
3305
3306         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
3307
3308         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
3309         completing read.
3310
3311 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3312
3313         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
3314         we're being queried about.  Suggested by Dan Jacobson.
3315
3316         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
3317         Suggested by Jason Eisner.
3318
3319         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
3320         table, too.  Suggested by Stefan Wiens.
3321         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
3322         the table unnecessary.  Suggested by Stefan Wiens.
3323
3324         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
3325         longer needed, and probably doesn't work either, as pointed out by
3326         Stefan Wiens.
3327         (gnus-summary-exit): Remove call to the clearing function.
3328         (gnus-summary-exit-no-update): Ditto.
3329
3330         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
3331         instead of gnus-eval-in-buffer-window to avoid popping up frames.
3332         Reported by Stefan Monnier.
3333         (gnus-summary-save-in-rmail): Ditto.
3334
3335         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
3336         article buffer, instead of both the article buffer and the summary
3337         buffer.  Sort of suggested by Dan Jacobson.
3338
3339         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
3340
3341         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
3342         Suggested by Dan Jacobson.
3343
3344         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
3345         documentation clearer.
3346
3347         * message.el (message-shorten-references): Comment on the number "21".
3348         Suggested by Stefan Monnier.
3349
3350         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
3351         Suggested by Dan Jacobson.
3352
3353         * gnus.el (gnus-large-newsgroup):
3354         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
3355
3356         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
3357         externalize attachments.  Bug reported by Steve Wen.
3358
3359         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
3360         really message anything to the user.
3361
3362         * nnmail.el (nnmail-article-group): Allow using the fancy split method
3363         directly.
3364
3365         * nnimap.el (nnimap-request-group): Low higher than high to signal no
3366         messages in empty groups.
3367
3368 2010-10-01  Ted Zlatanov  <tzz@lifelogs.com>
3369
3370         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
3371         non-UIDNEXT group.
3372
3373 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3374
3375         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
3376         not the value from the collection.
3377
3378         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
3379         values.  This sometimes happens on some groups that have no info.
3380         (nnimap-request-newgroups): New function.
3381
3382 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
3383
3384         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
3385         check into `gnus-registry-initialize'.
3386         (gnus-registry-initialize): Ditto.
3387         Fix and extend header docs.
3388
3389 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3390
3391         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
3392         regexp backtrace overflows.
3393
3394         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
3395         for starttls that tls.el implements; i.e. openssl.
3396
3397         * tls.el (tls-starttls-switches): Give up on using starttls with
3398         gnutls-cli.
3399         (tls-program): Add --insecure to be consistent with the defaults from
3400         openssl s_client.  Now all three commands are insecure.
3401
3402 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
3403
3404         * lpath.el: Bind completion-styles-alist for XEmacs.
3405
3406         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
3407         (gravatar-create-image): New function that's an alias to
3408         gnus-xmas-create-image, gnus-create-image, or create-image.
3409         (gravatar-data->image): Use it.
3410
3411 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
3412
3413         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
3414         install the nnregistry refer method.
3415         (gnus-registry-install-hooks): Use it.
3416         (gnus-registry-unfollowed-groups): Add nnmairix to the default
3417         unfollowed groups.
3418
3419 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
3420
3421         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
3422         expanding threads.
3423
3424 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3425
3426         * nnir.el: Use the server names without suffixes (bug #7009).
3427
3428         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
3429         unencrypted to STARTTLS, if possible.
3430
3431 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
3432
3433         * message.el (message-ignored-supersedes-headers): Strip Injection-*
3434         headers before superseding.
3435
3436 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3437
3438         * nnrss.el (nnrss-use-local): Add documentation.
3439
3440         * nnimap.el (nnimap-extend-tls-programs): New function.
3441         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
3442         (nnimap-wait-for-connection): Accept the greeting from the stupid
3443         output from openssl s_client -starttls, too.
3444
3445         * tls.el (tls-starttls-switches): New variable.
3446         (tls-find-starttls-argument): Use it.
3447         (open-tls-stream): Ditto.
3448
3449         * netrc.el (netrc-credentials): Return the value of the "default" entry.
3450         (netrc-machine): Ditto.
3451
3452         * nnimap.el (nnimap-find-article-by-message-id): Really return the
3453         article number.
3454         (nnimap-split-fancy): New variable.
3455         (nnimap-split-incoming-mail): Use it.
3456
3457         * nntp.el (nntp-server-list-active-group): Document.
3458
3459         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
3460         SELECT to get the message-id.
3461
3462         * mail-source.el (mail-sources): Remove webmail support.
3463         (defvar): Ditto.
3464         (mail-source-fetcher-alist): Ditto.
3465         (mail-source-fetch-webmail): Remove.
3466
3467         * webmail.el: Remove -- doesn't seem relevant any more.
3468
3469         * gnus.el: Fix up make-obsolete-variable declarations throughout.
3470
3471         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
3472         the \r.
3473
3474 2010-09-30  Julien Danjou  <julien@danjou.info>
3475
3476         * gnus-agent.el (gnus-agent-add-group): Fix call to
3477         gnus-completing-read.
3478
3479 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3480
3481         * nndoc.el (nndoc-retrieve-groups): New function.
3482
3483         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
3484         `default', use nnmail-split-methods.
3485         (nnimap-request-article): Downcase the NILs so that they are nil.
3486
3487         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
3488         symbol.
3489
3490         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
3491         code, since if the user has requested network, that's what they ought
3492         to get.
3493         (nnimap-request-set-mark): Erase the buffer before issuing commands.
3494         (nnimap-split-rule): Mark as obsolete.
3495
3496         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
3497         New variable.
3498
3499         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
3500         correct slot, too.
3501
3502 2010-09-29  Julien Danjou  <julien@danjou.info>
3503
3504         * gnus.el (gnus-local-domain): Declare variable obsolete.
3505
3506         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
3507         Fix history computing.
3508         (gnus-ido-completing-read): Require ido.
3509
3510 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3511
3512         * gnus-registry.el: Don't prompt on load, which makes it impossible to
3513         build Gnus.
3514
3515         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
3516         when interpreting the structures.
3517         (nnimap-request-accept-article): Add \r\n to the lines to make this
3518         work with Cyrus.
3519
3520         * nndraft.el (nndraft-request-expire-articles): Use the group name
3521         instead if "nndraft".  Fix found by Nils Ackermann.
3522
3523 2010-09-29  Ludovic Courtes  <ludo@gnu.org>
3524
3525         * nnregistry.el: Add.
3526
3527 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3528
3529         * nnmail.el (group, group-art-list, group-art):
3530         Remove unneeded directives.
3531
3532 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
3533
3534         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
3535         (mm-mime-charset)
3536         * rfc2047.el (rfc2047-syntax-table)
3537         * utf7.el (utf7-utf-16-coding-system): Comment fix.
3538
3539         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
3540         rather than `insert-file-contents' and `eval-region'.
3541
3542         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
3543         construction.
3544
3545         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
3546
3547         * time-date.el: No need to require cl for Emacs 21.
3548
3549 2010-09-29  Julien Danjou  <julien@danjou.info>
3550
3551         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
3552         replacement of `gnus-gravatar-relief' to mimic
3553         `gnus-faces-properties-alist'.
3554         Add :version property.
3555
3556 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
3557
3558         * mail-source.el (mail-source-report-new-mail)
3559         * message.el (message-default-mail-headers)
3560         * mm-decode.el (mm-valid-image-format-p): Comment fix.
3561
3562         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
3563
3564 2010-09-28  Julien Danjou  <julien@danjou.info>
3565
3566         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
3567         mail-address contains the same string as real-name.
3568
3569         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
3570         non-blank in header, otherwise it'll get stripped.
3571
3572         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
3573         real-name, and then for mail address rather than doing : or , search.
3574
3575 2010-09-27  Julien Danjou  <julien@danjou.info>
3576
3577         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
3578         right completing-read function.
3579         (gnus-use-ido): New variable
3580         (gnus-completing-read-with-default): Remove.
3581         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
3582         (gnus-agent-add-group):
3583         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
3584         * mm-view.el (mm-view-pkcs7-decrypt):
3585         * mm-util.el (mm-codepage-setup):
3586         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
3587         * mml-smime.el (mml-smime-openssl-sign-query):
3588         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
3589         (mml-insert-multipart):
3590         * gnus-msg.el (gnus-summary-yank-message):
3591         * gnus-int.el (gnus-start-news-server):
3592         * mm-decode.el (mm-interactively-view-part):
3593         * gnus-dired.el (gnus-dired-attach):
3594         * gnus.el (gnus-read-method):
3595         * gnus-bookmark.el (gnus-bookmark-jump):
3596         * gnus-art.el (gnus-mime-view-part-as-type)
3597         (gnus-mime-action-on-part, gnus-article-encrypt-body):
3598         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
3599         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
3600         * nnmairix.el (nnmairix-create-server-and-default-group)
3601         (nnmairix-update-groups, nnmairix-get-server)
3602         (nnmairix-backend-to-server, nnmairix-goto-original-article)
3603         (nnmairix-get-group-from-file-path):
3604         * nnrss.el (nnrss-find-rss-via-syndic8):
3605         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
3606         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
3607         (gnus-group-browse-foreign-server):
3608         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
3609         (gnus-summary-execute-command, gnus-summary-respool-article)
3610         (gnus-read-move-group-name):
3611         * gnus-score.el (gnus-summary-increase-score)
3612         (gnus-summary-score-effect):
3613         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
3614
3615 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
3616
3617         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
3618         x-focus-frame.
3619
3620         * nnimap.el (auth-source-forget-user-or-password)
3621         (auth-source-user-or-password): Autoload.
3622
3623         * message.el (message-from-style, message-interactive)
3624         (message-cite-prefix-regexp, message-sendmail-envelope-from)
3625         (message-yank-prefix, message-indentation-spaces, message-signature)
3626         (message-signature-file): Add comment.
3627
3628 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3629
3630         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
3631         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
3632         new articles.
3633
3634         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
3635         parts.
3636         (nnimap-request-article): Work with the t setting, too.
3637
3638         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
3639         that you don't get flashes of other buffers.
3640         (gnus-summary-show-complete-article): Intern before setting.
3641
3642 2010-09-27  David Engster  <dengste@eml.cc>
3643
3644         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
3645         well as HEADERS.
3646         (nnmairix-retrieve-headers): Provide new argument for the above.
3647
3648 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3649
3650         * gnus-sum.el (gnus-summary-move-article): Don't alter
3651         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
3652         group.
3653
3654         * nnimap.el (nnimap-update-info): Don't destructively alter active.
3655
3656         * message.el (message-cite-prefix-regexp): Revert my last edit.
3657
3658         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
3659         variable instead of the Gnus variable.
3660
3661         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
3662
3663         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
3664
3665         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
3666         since some servers don't like it.
3667         (nnimap-open-connection): Forget credentials if the server says the
3668         password was wrong.
3669         (nnimap-parse-line): Protect against invalid data.
3670
3671         * gnus-sum.el (gnus-summary-move-article): Add comment.
3672         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
3673         nothing alters it while scanning for new messages.
3674
3675         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
3676         which may or may not help.
3677         (nnimap-open-connection): If we're doing a stream connection, and then
3678         discover we're on a STARTTLS-capable server, then open a STARTTLS
3679         connection instead.
3680
3681 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3682
3683         * nnimap.el (utf7): Require.
3684
3685         * message.el (message-cite-prefix-regexp): Remove "}" from citation
3686         prefix.
3687
3688 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
3689
3690         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
3691
3692 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3693
3694         * nnimap.el (nnimap-request-accept-article): Message the error on
3695         error.
3696
3697 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3698
3699         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
3700
3701 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3702
3703         * nndoc.el (nndoc-request-list): Return success always.
3704
3705         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
3706         `fetch-old' -- we only want to fetch the articles we've requested.
3707         The rest are in the agent, probably.
3708         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
3709         disappeared server" to something low.  It's not important.
3710
3711         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
3712         arrived before the FETCH data.
3713
3714         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
3715         target here, because we don't know the Gnus name of the group.
3716
3717         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
3718         for the correct group.
3719
3720         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
3721
3722         * gnus.el (gnus): Give a final warning after startup.
3723
3724         * gnus-util.el (gnus-action-message-log): New variable.
3725         (gnus-message): Use it.
3726         (gnus-final-warning): New function.
3727
3728         * nnimap.el (nnimap-open-connection): Record the greeting.
3729         (nnimap): Add greeting.
3730
3731 2010-09-26  Julien Danjou  <julien@danjou.info>
3732
3733         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
3734         arguments.
3735         (gnus-html-wash-images): Fix spec computing to include start/end.
3736
3737         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
3738
3739 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3740
3741         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
3742         deletion.
3743         (nnimap-retrieve-headers): Don't select the group, because that's
3744         already done by nnimap-possibly-change-group.
3745
3746         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
3747         (gnus-picon-transform-address): Use it.
3748
3749         * mail-source.el (mail-source-value): Revert previous patch.
3750
3751         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
3752         on failure.
3753         (nnimap-open-connection): Look up both virtual and physical server name
3754         credentials.
3755
3756         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
3757
3758 2009-02-07  Dave Love  <fx@gnu.org>
3759
3760         * tls.el (open-tls-stream): Don't query killing process.
3761
3762 2009-02-08  Dave Love  <fx@gnu.org>
3763
3764         * gnus-win.el (gnus-window-to-buffer-helper)
3765         (gnus-all-windows-visible-p): Function needn't be a symbol.
3766
3767         * mail-source.el (mail-source-value): Function needn't be a symbol.
3768
3769 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3770
3771         * message.el (message-cite-prefix-regexp): Remove } from the cite
3772         prefix.
3773
3774         * gnus-art.el (gnus-treatment-function-alist): Do picons before
3775         highlight again, so that the highlight is correct.
3776
3777         * gnus-picon.el (gnus-picon): Remove again.
3778         (gnus-picon-create-glyph): Set the background XPM colour explicitly.
3779
3780         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
3781         doing the header highlightling, so that the background colour of the
3782         picon is correct.
3783
3784         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
3785         (gnus-picon): Ditto.
3786         (gnus-picon): Reinstate.  The background colour for picons is white.
3787         (gnus-picon-insert-glyph): Make the background white.
3788
3789         * nnml.el (nnml-open-nov): Don't return dead buffers.
3790
3791         * auth-source.el (auth-source-create): Query the user for whether to
3792         store the credentials.
3793
3794         * netrc.el (netrc-store-data): New function.
3795
3796         * auth-source.el (auth-source-user-or-password): Use the existing auth
3797         sources, if any, for creation.
3798
3799         * gnus.el (gnus-group-fast-parameter): Return the last matching
3800         parameter instead of the first matching parameter.
3801
3802 2010-09-26  Julien Danjou  <julien@danjou.info>
3803
3804         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
3805
3806 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3807
3808         * mml2015.el (mml2015-use): Remove gpg support.
3809
3810         * mml1991.el (mml1991-function-alist): Remove gpg function.
3811         (mml1991-gpg-sign): Remove.
3812
3813 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
3814
3815         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
3816         (gnus-browse-unsubscribe-current-group): Document it.
3817         (gnus-browse-unsubscribe-group): Use it.
3818
3819 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3820
3821         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
3822         address to the To list for easier response.
3823
3824         * gnus.el (gnus-play-startup-jingle): Remove.
3825         (gnus-splash): Don't play jingle.
3826         (gnus): Silence gnus-load message.
3827
3828         * gnus-art.el (gnus-treat-play-sounds): Remove.
3829
3830         * gnus.el (gnus-play-jingle): Remove audio support.
3831
3832         * gnus-cus.el (gnus-score-customize): Remove audio reference.
3833
3834         * earcon.el: Remove -- no users.
3835
3836         * gnus-audio.el: Remove -- no users of this package.
3837
3838         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
3839
3840         * gnus-start.el (gnus-setup-news): Remove nocem support.
3841
3842         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
3843
3844         * gnus.el (gnus-use-nocem): Remove.
3845
3846         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
3847         Remove.
3848
3849         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
3850         uses NoCeM any more.
3851
3852         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
3853         (gnus-button-ctan-handler): Ditto.
3854         (gnus-button-handle-ctan-bogus-regexp): Ditto.
3855         (gnus-button-ctan-directory-regexp): Ditto.
3856         (gnus-button-handle-ctan): Ditto.
3857         (gnus-button-tex-level): Ditto.
3858         (gnus-button-alist): Remove CTAN stuff.
3859
3860 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3861
3862         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
3863         nnimap-streaming test.
3864
3865         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
3866         servers twice.
3867
3868         * nnimap.el (nnimap-open-connection): Add more error reporting when
3869         nnimap fails early.
3870
3871         * nnheader.el (nnheader-get-report-string): New function.
3872         (nnheader-get-report): Use it.
3873
3874         * gnus-int.el (gnus-check-server): Say what the error was when opening
3875         failed.
3876
3877         * nnimap.el (nnimap-wait-for-response): Search further when we're not
3878         using streaming.
3879
3880 2010-09-25  Julien Danjou  <julien@danjou.info>
3881
3882         * gnus-html.el (gnus-html-rescale-image): Use our defalias
3883         gnus-window-inside-pixel-edges.
3884
3885 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3886
3887         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
3888
3889         * mm-decode.el (mm-save-part): Allow saving to other directories the
3890         normal Emacs way.
3891
3892         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
3893         Suggested by Jay Berkenbilt.
3894
3895         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
3896         there isn't a single byte.
3897
3898         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
3899         just do it.  It doesn't really seem to matter what the user responds
3900         here, I think, so it's just a confusing question.
3901
3902         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
3903         non-streaming case.
3904
3905         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
3906         (gnus-article-encrypt-body): Use it.
3907
3908         * gnus-sum.el (gnus-summary-show-complete-article): New command and
3909         keystroke.
3910
3911         * nnimap.el (nnimap-find-wanted-parts-1):
3912         Use gnus-fetch-partial-articles.
3913
3914         * gnus-art.el (gnus-fetch-partial-articles): New variable.
3915
3916         * nnimap.el (nnimap-insert-partial-structure): New function.
3917         (nnimap-get-partial-article): New function.
3918         (nnimap-request-article): Use it.
3919         (nnimap-wait-for-response): Return whether the wait was successful.
3920         (nnimap-finish-retrieve-group-infos): Don't do anything if the
3921         retrieval wasn't successful.
3922         (nnimap-retrieve-group-data-early): Allow throttling servers.
3923         (nnimap-streaming): New variable.
3924         (nnimap-fetch-partial-articles): Remove.
3925
3926         * mm-decode.el (mm-with-part): Protect against killed buffers.
3927
3928         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
3929         for prettier summary display.
3930
3931 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
3932
3933         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
3934
3935 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3936
3937         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
3938         apparently third-party libraries depend on it.
3939
3940         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
3941         before starting negotiation.
3942
3943         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
3944         privacy reasons.
3945         (gnus-treat-mail-gravatar): Ditto.
3946
3947         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
3948         buffer when inserting images.  Inserting text into the headers, for
3949         instance, can make them invalid.
3950
3951 2010-09-25  Julien Danjou  <julien@danjou.info>
3952
3953         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
3954         variables.
3955
3956         * nnheader.el: Remove useless variables news-reply-yank-from and
3957         news-reply-yank-message-id.
3958
3959         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
3960         variables.
3961
3962         * mml1991.el: Remove useless mml1991-verbose.
3963
3964         * gnus.el: Remove useless variable gnus-use-generic-from.
3965         Remove obsolete variable gnus-topic-indentation.
3966
3967         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
3968
3969         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
3970
3971         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
3972
3973         * gnus-group.el: Remove useless gnus-group-icon-cache.
3974         Remove useless gnus-ephemeral-group-server.
3975
3976         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
3977
3978         * mml2015.el: Remove useless mml2015-verbose.
3979
3980         * mml-smime.el: Remove useless mml-smime-verbose.
3981
3982         * gnus.el: Remove useless gnus-local-domain.
3983
3984         * gnus-gravatar.el (gnus-gravatar-transform-address):
3985         Use gnus-gravatar-size.
3986
3987         * gnus-art.el: Remove useless gnus-treat-translate.
3988
3989 2010-09-24  Julien Danjou  <julien@danjou.info>
3990
3991         * gnus-sum.el: Add support for Gravatars.
3992
3993         * gnus-art.el: Add support for Gravatars.
3994
3995         * gnus-gravatar.el: Add this file.
3996
3997         * gravatar.el: Add this file.
3998
3999 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4000
4001         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
4002
4003         * gnus-group.el (gnus-group-fetch-faq): Remove.
4004
4005         * gnus.el (gnus-group-faq-directory): Remove.
4006
4007         * gnus-group.el (gnus-group-fetch-charter): Remove.
4008
4009         * gnus.el (gnus-group-charter-alist): Remove.
4010
4011         * gnus-group.el (gnus-group-archive-directory): Remove.
4012         (gnus-group-recent-archive-directory): Ditto.
4013         (gnus-group-make-archive-group): Remove.
4014
4015         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
4016
4017         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
4018         use the same article number for all the cached articles.
4019
4020         * nnimap.el (nnimap-command): Register the last command time so
4021         that we can use it for idling NOOPs.
4022         (nnimap-open-connection): Start the keeplive timer.
4023         (nnimap-make-process-buffer): Store all the process buffers.
4024         (nnimap-keepalive): New function.
4025
4026         * starttls.el (starttls-open-stream): Add autoload cookie.
4027
4028 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
4029
4030         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
4031         handling.
4032
4033 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4034
4035         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
4036         its data structures.
4037
4038         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
4039         instead of the cl.el copy-list.
4040         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
4041         equalp.
4042
4043 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4044
4045         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
4046         and tool-bar-local-item-from-menu.
4047
4048         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
4049         mode-line-highlight face for Emacs.
4050
4051         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
4052         loading gnus-sum.elc; fix comment for canlock-verify.
4053         (gnus-article-jump-to-part): Use read-number.
4054         (gnus-insert-mime-button, gnus-insert-mime-security-button):
4055         Remove Emacs pre-21 compatible code for help-echo.
4056         (gnus-article-next-page-1): No need to adjust the number of lines.
4057         (gnus-article-describe-bindings): Always use help-buffer.
4058
4059         * gnus-audio.el (gnus-audio-inline-sound)
4060         * gnus-cus.el (gnus-custom-mode)
4061         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
4062
4063         * gnus-sum.el (gnus-remove-overlays): Doc fix.
4064
4065         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
4066         compatible code.
4067
4068 2010-09-24  Glenn Morris  <rgm@gnu.org>
4069
4070         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
4071         visiting the fcc file in rmail-mode.
4072
4073         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
4074
4075 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
4076
4077         * nnir.el: Silence the byte compiler.
4078
4079         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
4080         alias to browse-url-url-encode-chars if any.
4081         (gnus-html-encode-url): Use it.
4082
4083 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4084
4085         * gnus-start.el (gnus-use-backend-marks): New variable.
4086         (gnus-get-unread-articles-in-group): Use it.
4087
4088         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
4089         makeover.
4090
4091 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
4092
4093         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
4094
4095 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4096
4097         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
4098         Remove.
4099         (gnus-setup-news-hook):
4100         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
4101
4102         * gnus-int.el (gnus-request-update-info): Protect against backends not
4103         having the function.
4104
4105         * nnimap.el (nnimap-stream): Mention starttls.
4106         (nnimap-open-connection): Add starttls support.
4107
4108 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
4109
4110         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
4111
4112 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4113
4114         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
4115         BODYSTRUCTUREs.
4116         (nnimap-transform-headers): Unfold quoted {42} headers.
4117
4118         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
4119         the info.
4120         (gnus-get-unread-articles): Only call updatep on backends that support
4121         it.
4122
4123         * nnweb.el (nnweb-request-update-info): NOOP.
4124
4125         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
4126
4127         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
4128         since it only deals with marks.
4129
4130         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
4131         gnus-request-marks, and make a new gnus-request-update-info.
4132
4133         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
4134         the active instead of the high number, which is usually too low.
4135
4136 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
4137
4138         * netrc.el (netrc-parse): Remove encrypt.el mentions.
4139         * encrypt.el: Remove.
4140
4141 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4142
4143         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
4144         server in symbolic form.
4145
4146         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
4147
4148 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4149
4150         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
4151         (nnimap-update-info): Fix up code slightly.
4152
4153         * gnus-int.el (gnus-open-server): Add tracing for performance
4154         debugging.
4155
4156         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
4157         (gnus-group-insert-group-line): Pass the real group name so that it
4158         gets the right data.
4159
4160         * gnus-start.el (gnus-get-unread-articles): Don't have
4161         `gnus-get-unread-articles-in-group' update info, since that can be
4162         really slow and doesn't seem to be needed?
4163
4164 2010-09-22  Dan Christensen  <jdc@uwo.ca>
4165
4166         * time-date.el (date-to-time): Try using parse-time-string first before
4167         using the slower timezone-make-date-arpa-standard.
4168
4169 2010-09-22  Julien Danjou  <julien@danjou.info>
4170
4171         * gnus-group.el (gnus-group-insert-group-line):
4172         Call gnus-group-highlight-line.
4173         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
4174         default hook list.
4175         (gnus-group-update-eval-form): Add new function.
4176         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
4177         (gnus-group-get-icon): Use gnus-group-update-eval-form.
4178
4179 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4180
4181         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
4182         immediate, then expire all articles.
4183         (nnimap-update-info): Fix off-by-one errors.
4184         (nnimap-flags-to-marks): Would return no marks lists for group with no
4185         flags.  Instead return the other data.
4186
4187 2010-09-22  Julien Danjou  <julien@danjou.info>
4188
4189         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
4190         Only return an icon.
4191         (gnus-group-insert-group-line): Compute icon to return.
4192
4193         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
4194         (gnus-html-image-fetched): Only cache if
4195         gnus-html-image-automatic-caching is set.
4196         (gnus-html-image-fetched): Check for errors.
4197
4198 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4199
4200         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
4201         once per method on `g'.  This ensures that backends like nnfolder don't
4202         open all their folders.
4203
4204         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
4205         (nnimap-request-list): Nix out group in the correct buffer.
4206         (nnimap-parse-flags): Implement by using `read' instead of
4207         hand-parsing.
4208         (nnimap-flags-to-marks): Pass on permanent-flags.
4209         (nnimap-make-process-buffer): Record the server name.
4210         (nnimap-parse-flags): Fix typo.
4211         (nnimap-request-scan): Run split on the server in general, not just a
4212         single group.
4213
4214         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
4215         parameter, and propagate this downwards.
4216
4217         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
4218         since EXAMINE changes it on the server.
4219
4220         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
4221         this command might take a while.
4222
4223 2010-09-22  Julien Danjou  <julien@danjou.info>
4224
4225         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
4226         harmful if you have 2 images side-by-side, they can't be properly
4227         update on text deletion.  Using text-property is safer here.
4228         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
4229         data.
4230
4231 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4232
4233         * nnimap.el (nnimap-expunge-inbox): Remove.
4234         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
4235         (nnimap-expunge): Flip default to t.
4236
4237         * gnus.el (gnus-method-to-server): Don't push things to the cache
4238         unless it's unique.
4239         (gnus-server-to-method): Ditto.
4240
4241 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
4242
4243         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
4244
4245 2010-09-22  Julien Danjou  <julien@danjou.info>
4246
4247         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
4248         get the start of data.
4249         (gnus-html-encode-url): Add this function to encode special chars in
4250         URL.
4251         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
4252         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
4253
4254         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
4255         default.
4256         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
4257
4258         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
4259         images alt-text.
4260         (gnus-html-put-image): Put alt-text as help-echo.
4261
4262 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
4263
4264         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes)
4265         * mm-util.el (mm-decompress-buffer)
4266         * nnir.el (nnir-run-find-grep)
4267         * pop3.el (pop3-list): Use 3rd arg of split-string.
4268
4269         * time-date.el (format-seconds): Comment fix.
4270
4271         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
4272         and byte-optimize-form-code-walker.
4273         (dgnushack-make-auto-load): Don't advise make-autoload.
4274
4275         * lpath.el: Remove Emacs 21 stuff.
4276
4277 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4278
4279         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
4280         outside the active range.  Suggested by Dan Christensen.
4281
4282         * gnus-start.el (gnus-get-unread-articles): Get the extended method
4283         slightly later to avoid double-getting it.
4284
4285         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
4286         previous patch.
4287
4288         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
4289
4290 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
4291
4292         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
4293
4294 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4295
4296         * gnus-int.el (gnus-open-server): Give a better error message in the
4297         "go offline" case.
4298
4299         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
4300         marks for nnimap, which is seldom the right thing to do.
4301
4302         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
4303         (gnus-same-method-different-name): New function.
4304
4305         * nnimap.el (parse-time): Require.
4306
4307         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
4308         method in the presence of many similar methods.
4309
4310         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
4311
4312         * nnimap.el (nnimap-find-expired-articles): Don't refer to
4313         nnml-inhibit-expiry.
4314
4315         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
4316         find out whether methods are equal.
4317
4318         * nnimap.el (nnimap-find-expired-articles): New function.
4319         (nnimap-process-expiry-targets): New function.
4320         (nnimap-request-move-article): Request the article before looking at
4321         what the Message-ID is.  Fix found by Andrew Cohen.
4322         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
4323
4324         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
4325         for oldness in addition to being a predicate.
4326
4327         * nnimap.el (nnimap-request-group): When we have zero articles, return
4328         the right data to Gnus.
4329         (nnimap-request-expire-articles): Only delete articles immediately if
4330         the target is 'delete.
4331
4332         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
4333         method, this would bug out.
4334
4335         * gnus-group.el (gnus-group-expunge-group): Rename from
4336         gnus-group-nnimap-expunge, and implemented as a normal interface
4337         function.
4338
4339         * gnus-int.el (gnus-request-expunge-group): New function.
4340
4341         * nnimap.el (nnimap-request-create-group): Implement.
4342         (nnimap-request-expunge-group): New function.
4343
4344 2010-09-21  Julien Danjou  <julien@danjou.info>
4345
4346         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
4347         (gnus-html-cache-expired): Add new function.
4348         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
4349         wethever we should display image for fetch it.
4350         Compute alt-text earlier to pass it to the fetching function too.
4351         (gnus-html-schedule-image-fetching): Change function argument to only
4352         get one image at a time, not a list.
4353         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
4354         cache.
4355         (gnus-html-get-image-data): New function to retrieve image data from
4356         cache.
4357         (gnus-html-put-image): Change buffer argument to use image data rather
4358         than file, and place image above region rather than inserting a new
4359         one.  Do not take alt-text as argument, since it's useless now: we place
4360         the image above alt-text.
4361         (gnus-html-prune-cache): Remove.
4362         (gnus-html-show-images): Start to fetch image when we find one, do not
4363         push into a temporary list.
4364         (gnus-html-prefetch-images): Only fetch image if they have expired.
4365         (gnus-html-browse-image): Fix, use 'gnus-image-url.
4366         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
4367
4368 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4369
4370         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
4371
4372 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4373
4374         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
4375         spec inser "*" if the group isn't active instead of 0.
4376
4377         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
4378         opening the server.
4379         (nnimap-request-delete-group): Implement group deletion.
4380         (nnimap-transform-headers): Return the size of the entire message in
4381         the Bytes header, not just the size of the first part.
4382         (nnimap-request-move-article): When moving an article from nnimap,
4383         request the article first so the accepting form has an article to
4384         accept.  Reported by Dan Christensen.
4385         (nnimap-command): Make sure that the error message doesn't error out.
4386
4387 2010-09-20  David Edmondson  <dme@dme.org>  (tiny change)
4388
4389         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
4390         we haven't requested anything.
4391
4392 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4393
4394         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
4395         "".  Fix found by Andrew Cohen.
4396
4397         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
4398         instead of -encode-string.
4399
4400 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4401
4402         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
4403
4404         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
4405         by mm-subst-char-in-string.
4406
4407 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4408
4409         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
4410         waiting for the connection string.
4411
4412         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
4413         arriving.
4414
4415         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
4416         bogus characters.  This allows selecting certain Gmail groups.
4417
4418         * nnimap.el (nnimap-find-wanted-parts-1): New function.
4419         (nnimap-fetch-partial-articles): New variable.
4420         (nnimap-open-connection): When looking for credentials, also use the
4421         nnimap-server-port.
4422         (nnimap-request-article): Return the group/article number, so that Gnus
4423         `^' works as expected.
4424         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
4425
4426         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
4427         comments.
4428         (gnus-methods-sloppily-equal): New function.
4429         (gnus): When using the development version of Gnus, load the gnus-load
4430         file.
4431
4432         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
4433         `gnus-open-server' on each method before trying to scan them etc.
4434         This ensures that all the backend parameters are set correctly.
4435
4436         * nnimap.el (nnimap-authenticator): New variable.
4437         (nnimap-open-connection): Allow anonymous login.
4438         (nnimap-transform-headers): The chars header is called Chars not Bytes.
4439         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
4440
4441         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
4442         patch, found by Knut Anders Hatlen.
4443
4444 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
4445
4446         * gnus-agent.el (gnus-agent-batch-confirmation)
4447         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
4448         to gnus-message.
4449         * gnus-art.el (gnus-article-describe-briefly): Likewise.
4450         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
4451         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
4452         * gnus-int.el (gnus-open-server): Likewise.
4453         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
4454         (gnus-score-check-syntax): Likewise.
4455         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
4456         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
4457         Likewise.
4458         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
4459
4460 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4461
4462         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
4463         calling conventions so that prefetch doesn't bug out.
4464
4465 2010-09-19  Julien Danjou  <julien@danjou.info>
4466
4467         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
4468         rather than `subst-char-in-region' in order to be able to replace ASCII
4469         char by UTF-8 ones.
4470
4471         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
4472         than curl.
4473         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
4474         the right URL and ALT text on images.
4475         (gnus-html-wash-tags): Fix tag case.
4476         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
4477         (gnus-article-html): Add -o display_ins_del=2 option.
4478         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
4479
4480 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4481
4482         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
4483         the extra mail headers, which sometimes seem to happen for unknown
4484         reasons.
4485
4486         * mail-parse.el (mail-header-encode-parameter): Define as
4487         rfc2045-encode-string instead of as rfc2231-encode-string, since some
4488         (or most, perhaps?) mail readers don't understand the latter, but do
4489         understand the former.
4490
4491         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
4492         to nil, so that no methods are automatically agentized.  I think this
4493         is probably what most users want.
4494
4495         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
4496         from url-retrieve, for instance about invalid URLs.
4497
4498         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
4499         groups that have no articles.
4500         (nnimap-request-article): Check that we really got an article when we
4501         requested one.
4502
4503         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
4504         doesn't exist.
4505
4506         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
4507         nntp buffer so the agent can save it.
4508         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
4509         that CRLF doesn't get translated to \n.
4510         (nnimap-open-connection): Don't make 'shell commands only send \n.
4511
4512 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4513
4514         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
4515         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
4516         Update var name.
4517         (nnml-generate-nov-file): Use dolist.
4518         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
4519         Use with-current-buffer.
4520
4521 2010-09-18  Julien Danjou  <julien@danjou.info>
4522
4523         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
4524         parallel.
4525
4526 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4527
4528         * nnimap.el (nnimap-update-info): When doing partial marks update, get
4529         the range update right.
4530         (nnimap-request-group): Don't make `M-g' bug out on group with no
4531         marks.
4532         (nnoo): Require, so that other packages can require nnimap.
4533         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
4534         command we're looking for.  This helps when the server sends more
4535         responses after we've gotten everything we expected.
4536         (nnimap): Add a `newlinep' field to keep track of end-of-line
4537         conventions.
4538         Don't send CRLF to things that don't want it.
4539         (nnimap-request-accept-article): Ditto.
4540
4541 2010-09-18  Julien Danjou  <julien@danjou.info>
4542
4543         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
4544         than curl to retrieve images.
4545
4546 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4547
4548         * nnimap.el (nnimap-update-info): Extend the info so that we can set
4549         the marks.
4550         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
4551         (nnimap-wait-for-connection): New function.
4552         (nnimap-open-connection): If we have PREAUTH, don't query for login
4553         credentials.
4554         (nnimap-update-info): Fix off-by-one error when concatenating ranges
4555         when doing a partial update.
4556
4557 2010-09-18  Julien Danjou  <julien@danjou.info>
4558
4559         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
4560         tags.
4561
4562 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4563
4564         * nnimap.el (nnimap-credentials): New function.
4565         (nnimap-open-connection): Use the new function to look for credentials
4566         also on the numeric equivalents of "imap" and "imaps".
4567
4568         * gnus-start.el (gnus-activate-group): Send the info to
4569         gnus-request-group.
4570
4571         * nnimap.el (nnimap-request-group): Have the "check" version of the
4572         function parse flags and update the info, so that a `M-g' get a total
4573         resync of all flags from the group.
4574
4575         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
4576         to allow backends to alter the info on group selection.  Also alter all
4577         the backend -request-group functions to take the parameter.
4578
4579         * nnimap.el (nnimap-store-info): New function.
4580         (nnimap-update-info): Store the info for later usage.
4581         (nnimap-request-group): Use the stored info for the dont-check case, so
4582         that we don't retrieve all marks when we enter a group.
4583
4584         * nnimap.el: Use deffoo instead of defun for interface functions.
4585
4586         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
4587         update the group info.  This makes the nndraft groups, for instance, go
4588         back to their old behaviour.
4589
4590         * gnus-sum.el (gnus-select-newsgroup): Indent.
4591
4592         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
4593         in.
4594         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
4595         nothing.
4596
4597         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
4598         from methods that are denied.
4599
4600         * gnus-int.el (gnus-method-denied-p): New function.
4601
4602         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
4603         store the password instead of netrc.
4604         (nnimap-open-connection): Don't error out when we can't make a
4605         connections.
4606
4607         * auth-source.el (auth-source-create): In the password prompt, say what
4608         we're querying for.  Also prompt for user name if that hasn't been
4609         given.
4610
4611         * nnimap.el (nnimap-with-process-buffer): Remove.
4612
4613 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4614
4615         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
4616         method when we're reading from the agent.
4617
4618         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
4619
4620         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
4621         that's probably most useful for users.
4622
4623         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
4624         "failed" all the time.
4625
4626         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
4627         ...)) with (with-current-buffer ... ).
4628
4629         * nntp.el (nntp-open-server): Return whether the open was successful or
4630         not.
4631
4632         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
4633         select an unread unseen article first.
4634
4635         * nnimap.el (nnimap-open-connection): If the user doesn't have a
4636         /etc/services, supply some sensible port defaults.
4637
4638         * dgnushack.el: Define netrc-credentials.
4639
4640 2010-09-17  Julien Danjou  <julien@danjou.info>
4641
4642         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
4643
4644 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
4645
4646         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
4647         doesn't have any parameters.
4648
4649 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4650
4651         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
4652         only upcased checks.
4653
4654         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
4655
4656         * nnimap.el (nnimap-open-shell-stream): New function.
4657         (nnimap-open-connection): Use it.
4658         (nnimap-transform-headers): Get the number of lines in each message.
4659         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
4660         number of lines.
4661         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
4662         problem.
4663
4664         * utf7.el (utf7-encode): Autoload.
4665
4666         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
4667         to allow the mail splitting to not return a default group.  This is
4668         useful for nnimap, which will leave unmatched mail in the inbox.
4669
4670         * nnimap.el: Rewritten.
4671
4672         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
4673         nnimap usage.
4674
4675         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
4676         if the move is internal, so that nnimap can do fast internal moves.
4677
4678         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
4679         data.
4680         (gnus-read-active-for-groups): Support finishing the early retrieval of
4681         data.
4682
4683         * gnus-range.el (gnus-range-nconcat): New function.
4684
4685         * gnus-int.el (gnus-finish-retrieve-group-infos)
4686         (gnus-retrieve-group-data-early): New functions.
4687
4688 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4689
4690         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
4691         (nnrss-retrieve-groups):
4692         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
4693         (pop3-quit): Use with-current-buffer.
4694
4695 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4696
4697         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
4698         instead of nnheader-accept-process-output.
4699
4700         * dgnushack.el (dgnushack-compile): Add comment.
4701
4702         * lpath.el: No need to fbind propertize for XEmacs 21.4.
4703
4704         * gnus-html.el (gnus-html-schedule-image-fetching)
4705         (gnus-html-prefetch-images): Replace process-kill-without-query by
4706         gnus-set-process-query-on-exit-flag.
4707
4708 2010-09-16  Romain Francoise  <romain@orebokech.com>
4709
4710         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
4711
4712 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4713
4714         * gnus-registry.el (gnus-registry-install-shortcuts): The second
4715         parameter to unintern is mandatory-ish in Emacs 24.
4716
4717         * gnus-html.el (gnus-html-schedule-image-fetching)
4718         (gnus-html-prefetch-images): Check for curl before using it.
4719
4720         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
4721         depend on curl, which isn't essential.
4722
4723         * imap.el: Revert back to version
4724         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
4725         seem problematic.
4726
4727 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
4728
4729         * gnus-registry.el (gnus-registry-install-shortcuts):
4730         Explicitly pass `obarray' to `unintern' to avoid a warning.
4731
4732 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4733
4734         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
4735         change.
4736
4737         * nnrss.el (nnrss-request-list): Remove this function and related
4738         functions, including the moreover stuff.
4739
4740 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4741
4742         * nnrss.el (nnrss-retrieve-groups): New function.
4743
4744 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
4745
4746         * .dir-locals.el: Add no-byte-compile cookie.
4747
4748 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4749
4750         * time-date.el (format-seconds): Comment fix.
4751
4752         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
4753         for back end that doesn't support request-scan.
4754
4755 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4756
4757         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
4758         then do request scans from the backends.
4759
4760         * netrc.el (netrc-credentials): New conveniency function.
4761
4762         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
4763         avoid running a hook per line, since this takes a lot of time,
4764         profiling shows.
4765         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
4766         directly if gnus-visual-p is true.
4767
4768 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4769
4770         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
4771         groups; replace mapcar with dolist which is a bit faster; pass groups
4772         info to gnus-read-active-file-1.
4773         (gnus-read-active-file-1): Scan only specified groups if the new
4774         optional arg `infos' is given.
4775
4776 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4777
4778         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
4779
4780         * pop3.el (pop3-movemail): Remove.
4781         (pop3-streaming-movemail): Rename to pop3-movemail.
4782
4783         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
4784         don't restrict end-tag searches to the end of the line.
4785
4786 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4787
4788         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
4789         articles of every unchecked group to t, which means unknown since the
4790         server has never been opened.
4791
4792 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4793
4794         * gnus-html.el (gnus-html-show-alt-text): New command.
4795         (gnus-html-browse-image): Ditto.
4796         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
4797         to browse the image directly.
4798         (gnus-html-wash-tags): Search for images first, so that <a><img> works
4799         better.
4800
4801         * gnus-async.el (gnus-async-article-callback):
4802         Call `gnus-html-prefetch-images' unconditionally.
4803
4804         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
4805         before feeding URLs to curl.
4806
4807 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4808
4809         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
4810         internal images as deletable by `W D D'.
4811
4812         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
4813         (gnus-async-article-callback): Fix typo.
4814
4815 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4816
4817         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
4818         current line to work around bugs in the output from w3m.
4819
4820         * gnus-async.el (gnus-async-article-callback): Always prefetch images
4821         for groups that want that.
4822
4823         * nntp.el (nntp-wait-for-string): Supply a timeout for
4824         accept-process-output to ensure progress.
4825
4826         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
4827         level to get unread articles from, then use that for foreign groups,
4828         too.
4829
4830         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
4831         confuses the rest of the function.
4832
4833         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
4834         for the methods that support -retrieve-groups, too.
4835
4836         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
4837
4838 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4839
4840         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
4841         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
4842
4843         * pop3.el: Require cl when compiling.
4844         (pop3-number-of-responses): Search for "+OK", not "+OK ".
4845
4846 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4847
4848         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
4849         that aren't going to be activated.
4850         (gnus-get-unread-articles): Fix up the last commit.
4851
4852         * gnus-html.el (gnus-article-html): Allow calling without specifying
4853         the handle.  In that case, dissect the buffer first.
4854
4855         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
4856
4857         * nnimap.el (nnimap-open-connection): Revert the change that would look
4858         into authinfo for imaps instead of imap.
4859
4860         * gnus-start.el (gnus-activate-group): Take an optional parameter to
4861         say that you don't want to call gnus-request-group with don-check, but
4862         do check the reponse.  This is for virtual groups only.
4863         (gnus-get-unread-articles): Count the archive groups as secondary, so
4864         that they're activated the same way as before.
4865
4866         * imap.el (imap-message-map): Removed optional buffer parameter, since
4867         no callers use it.
4868         (imap-message-get): Ditto.
4869         (imap-message-put): Ditto.
4870         (imap-mailbox-map): Ditto.
4871         (imap-mailbox-put): Ditto.
4872         (imap-mailbox-get): Ditto.
4873         (imap-mailbox-get): Revert last change for this function.
4874
4875         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
4876         case-insensitively.
4877         (nnimap-debug): Remove.
4878
4879         * imap.el (imap-fetch-safe): Removed function, and altered all callers
4880         to use `imap-fetch' instead.  According to the comments, this should be
4881         safe, since all other IMAP clients use the 1:* syntax.
4882         (imap-enable-exchange-bug-workaround): Removed.
4883         (imap-debug): Removed -- doesn't seem very useful.
4884
4885         * mail-source.el (mail-source-fetch): Don't message if we're fetching
4886         mail from a file, and the file doesn't exist.
4887
4888         * imap.el (imap-log): New convenience function used throughout instead
4889         of repeating the same code all over the place.
4890
4891         * pop3.el (pop3-streaming-movemail): Return t for success.
4892
4893         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
4894         .authinfo if we're using ssl connection.
4895
4896         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
4897         already have if we're in a main Gnus `g' run.
4898
4899         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
4900
4901 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4902
4903         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
4904
4905         * nnmh.el (nnmh-request-list-1): Bind `file'.
4906
4907         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
4908         alias to set-process-query-on-exit-flag or process-kill-without-query.
4909         (pop3-open-server): Use it.
4910
4911 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4912
4913         * mail-source.el (mail-source-delete-crash-box): Always move the crash
4914         box to the Incoming file.  Fixes mistake in previous checkin.
4915
4916         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
4917         request loop (for debugging purposes) removed.
4918
4919         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
4920         culprit is more visible.
4921         (nnml-save-incremental-nov, nnml-open-incremental-nov)
4922         (nnml-add-incremental-nov): New functions to do "incremental" nov
4923         updates, where we just append to the end of the existing nov files
4924         without reading/writing them in full.
4925
4926         * mail-source.el (mail-source-delete-crash-box): Really only check the
4927         incoming files once in a while.
4928
4929         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
4930
4931         * mail-source.el (mail-source-delete-crash-box): Only check the
4932         incoming files for deletion once per day to save a lot of file
4933         accesses.
4934
4935         * pop3.el (pop3-logon): Fix up unbound variable typo.
4936
4937         * mail-source.el (pop3-streaming-movemail): Autoload.
4938
4939         * pop3.el (pop3-streaming-movemail):
4940         Respect pop3-leave-mail-on-server.
4941
4942         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
4943         retrieval.
4944
4945         * pop3.el (pop3-process-filter): Remove unused function.
4946         (pop3-streaming-movemail, pop3-send-streaming-command)
4947         (pop3-wait-for-messages, pop3-write-to-file)
4948         (pop3-number-of-responses): New functions for streaming pop3
4949         retrieval.
4950
4951         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
4952         come from no known methods.
4953         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
4954         list.
4955
4956         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
4957         message sizes.
4958         (pop3-movemail): Use erase-buffer instead of looping and deleting
4959         regions, which seems rather odd.
4960
4961         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
4962         file once per `g' run.
4963
4964         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
4965         directories.  This makes the draft queue directory work.
4966
4967         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
4968         data from the backends, so that we only request the list of groups from
4969         each method once.  This should speed things up considerably.
4970
4971         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
4972         detect that it's not implemented.
4973
4974         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
4975         we actually do recurse down into the tree, but don't stat all leaf
4976         nodes.
4977
4978         * gnus-html.el (gnus-html-show-images): If there are no images to show,
4979         then say so instead of bugging out.
4980
4981         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
4982         files exist before trying to read them.
4983
4984         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
4985         around <pre_int>.
4986
4987         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
4988
4989         * nnmh.el (nnmh-request-list-1): Optimize for speed.
4990
4991 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4992
4993         * mm-util.el (mm-image-load-path): Just return the image directories,
4994         not all directories in the path in addition to the image directories.
4995         (mm-image-load-path): Maintain a cache of the image directories so that
4996         the `g' command in Gnus doesn't have to stat dozens of directories each
4997         time.
4998
4999         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
5000         (gnus-html-wash-tags): Add a new `i' command to insert images.
5001         (gnus-html-insert-image): New command and keystroke.
5002         (gnus-html-redisplay-with-images): New command and keystroke.
5003         (gnus-html-show-images): Rename command.
5004         (gnus-html-wash-tags): Remove more white space before <pre_int> image
5005         spacers.
5006         (gnus-html-wash-tags): Decode entities at the end, so that entities
5007         inside the tags don't mess up the rest of the "parsing".
5008
5009         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
5010         so that nnimap methods aren't agentized by default.  There's apparently
5011         many problems related to agent/imap behaviour.
5012
5013         * gnus-art.el (gnus-article-copy-string): New command and key binding.
5014
5015         * gnus-html.el: Doc fix.
5016
5017 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5018
5019         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
5020         specifier-spec-list for Emacs 21.
5021
5022         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
5023         glyph-width and glyph-height instead of display-graphic-p and
5024         image-size; make avoidance of displaying small images work for XEmacs.
5025
5026         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
5027         for XEmacs.
5028
5029         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
5030         of symbol that holds plist data.
5031         (gnus-process-plist): Remove plist of process after getting it.
5032
5033 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5034
5035         * message.el (message-generate-hashcash): Change default to
5036         'opportunistic if hashcash is installed.
5037
5038         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
5039         (gnus-html-put-image): Only call image-size once, since it's somewhat
5040         time-consuming on remote X servers.
5041
5042 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5043
5044         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
5045         type on data, not a file name.
5046
5047         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
5048         window-pixel-edges for Emacs 21.
5049
5050         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
5051         decoded contents.
5052         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
5053
5054 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5055
5056         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
5057         group line format, since it isn't very interesting.
5058
5059         * gnus-agent.el (gnus-agent-short-article),
5060         (gnus-agent-long-article): Increase values for these two variables,
5061         since most people are likely to have more network connection and
5062         storage than before.
5063
5064         * gnus.el (gnus-refer-article-method): Change default to 'current.
5065         When referring an article, the common behaviour is to refer it from the
5066         current select method, not the native select method.  The chances of
5067         the native select method having the message in question is rather slim
5068         these days.
5069
5070         * gnus-sum.el (gnus-auto-select-subject): Change default to
5071         `unseen-or-unread'.  I think it's likely that most people want to
5072         select an unseen article over a previously seen, but unread one.
5073
5074         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
5075         means that in the article buffer none of the minor mode elements will
5076         be shown, usually, and this is not desirable in most cases.
5077
5078         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
5079         that commands like `d' (and the like) go to the next line in the
5080         buffer, instead of the next unread article.  I think this is the
5081         behaviour that is most natural for most users.
5082         (gnus-single-article-buffer): Change default to nil, so that people can
5083         have as many article buffers open as they have summary buffer.  I think
5084         this is the most natural way for the groups to behave.
5085
5086         * message.el (message-generate-new-buffers): Change default to
5087         `unsent', so that all new message buffers start their names with the
5088         string "*unsent", and it's easier to find the buffers if you move from
5089         them.
5090
5091 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5092
5093         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
5094         small.  They're probably tracking images.
5095         (gnus-html-wash-tags): Remove all <pre_int> place holders.
5096         (gnus-html-rescale-image): Yet another try at getting the image sizing
5097         right.
5098
5099         * nntp.el (nntp-request-set-mark): Refuse to do marks if
5100         nntp-marks-file-name is nil.
5101
5102 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
5103
5104         * gnus-html.el (gnus-html-wash-tags)
5105         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
5106         Better logging.
5107
5108 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5109
5110         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
5111
5112         * gnus-html.el (gnus-html-wash-tags): Check the value of
5113         gnus-blocked-images in the summary buffer.
5114
5115 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
5116
5117         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
5118
5119 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5120
5121         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
5122         like "a", it seems like.
5123         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
5124         since it needs to be picked from the correct buffer.
5125
5126         * nnwfm.el: Remove.
5127
5128         * nnlistserv.el: Remove.
5129
5130 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
5131
5132         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
5133         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
5134
5135 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5136
5137         * nnkiboze.el: Remove.
5138
5139         * nndb.el: Remove.
5140
5141         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
5142         alt text.
5143         (gnus-html-rescale-image): Try to get the rescaling logic right for
5144         images that are just wide and not tall.
5145
5146         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
5147         overshadow variable bindings.
5148
5149 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
5150
5151         * gnus-html.el (gnus-html-wash-tags)
5152         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
5153         Add extra logging.
5154
5155 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5156
5157         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
5158         (gnus-max-image-proportion): New variable.
5159         (gnus-html-rescale-image): New function.
5160         (gnus-html-put-image): Rescale images.
5161
5162 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5163
5164         Fix up some byte-compiler warnings.
5165         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
5166         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
5167         (gnus-article-fill-cited-article, gnus-article-hide-citation)
5168         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
5169         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
5170         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
5171         (gnus-group-update-group): Use save-excursion and with-current-buffer.
5172
5173 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5174
5175         * gnus-html.el (gnus-article-html): Decode contents by charset.
5176
5177 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5178
5179         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
5180         (gnus-html-frame-width, gnus-blocked-images)
5181         * message.el (message-prune-recipient-rules): Add custom version.
5182         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
5183
5184         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
5185         functions.
5186
5187         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
5188         gnus-process-get.
5189
5190 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
5191
5192         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
5193         instead of lsub directly.
5194
5195 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5196
5197         * nnwarchive.el: Remove.
5198
5199         * gnus-soup.el: Remove.
5200
5201         * nnsoup.el: Remove.
5202
5203         * nnultimate.el: Remove.
5204
5205         * gnus-html.el (gnus-blocked-images): New variable.
5206
5207         * message.el (message-prune-recipients): New function.
5208         (message-prune-recipient-rules): New variable.
5209
5210         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
5211         guess whether a long line is natural text or not.
5212
5213         * gnus-html.el (gnus-html-schedule-image-fetching):
5214         Use gnus-process-plist and friends for compatibility.
5215
5216 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5217
5218         * gnus-html.el: Require packages that define macros used in this file.
5219         (gnus-article-mouse-face): Declare to silence byte-compiler.
5220         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
5221         process-get.
5222         (gnus-html-put-image): Use plist-get to avoid getf.
5223         (gnus-html-prefetch-images): Use with-current-buffer.
5224
5225 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5226
5227         * gnus-ems.el: Provide compatibility functions for
5228         gnus-set-process-plist.
5229
5230         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
5231         header-line-format for XEmacs 21.4.
5232
5233         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
5234         * gnus.el (gnus-valid-select-methods)
5235         * message.el (message-send-mail-partially-limit)
5236         * mm-decode.el (mm-text-html-renderer)
5237         * mml.el (mml-insert-mime-headers-always)
5238         * smiley.el (smiley-regexp-alist): Bump custom version.
5239
5240 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5241
5242         * gnus-html.el: require mm-url.
5243         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
5244         with the url to `url'.
5245         (gnus-html-wash-tags): Support cid: URLs/images.
5246
5247 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5248
5249         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
5250         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
5251         bindings, as they aren't useful at all.  `w' is moved to `W w'.
5252
5253         * gnus-move.el: Remove file, since it doesn't really work.
5254
5255         * gnus-html.el (gnus-article-html): Tell w3m that the input is
5256         UTF-8.  This seems to fix problems with some German web feeds.
5257
5258         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
5259         at the top so that the proper colours are applied.
5260
5261         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
5262         don't have dots in their names.
5263
5264         * gnus-art.el (gnus-article-view-part): Doc fix.
5265
5266         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
5267         XEmacs-compatible.
5268         (gnus-html-put-image): Don't do images on non-graphic displays.
5269
5270         * nnslashdot.el: Remove this unused backend.
5271
5272         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
5273         actions.
5274         (gnus-undo-register-1): Revert last change.
5275
5276         * gnus-group.el (gnus-group-completing-read): Protect against not
5277         having completion-styles bound.
5278
5279         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
5280         make broken recipients happier.
5281
5282         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
5283
5284         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
5285         point parameter.
5286
5287         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
5288
5289         * gnus-group.el (gnus-group-completing-read): Add 'substring to
5290         completion-styles for group selection.
5291
5292 2009-02-04  Andreas Schwab  <schwab@suse.de>
5293
5294         * gnus-score.el (gnus-score-string): Fix regex for matching extra
5295         headers and regexp-quote the match if necessary.
5296
5297 2009-03-24  Miles Bader  <miles@gnu.org>
5298
5299         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
5300         the blinking smiley.
5301
5302 2009-03-24  Simon Josefsson  <simon@josefsson.org>
5303
5304         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
5305         blink smiley.
5306
5307 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5308
5309         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
5310         where the dribbel file lives exists.
5311
5312         * message.el (message-send-mail-partially-limit): Change the default to
5313         nil, since most people don't want this.
5314
5315         * mm-url.el (mm-url-decode-entities): Also decode entities like
5316         &#x3212.
5317
5318 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
5319
5320         * gnus-sum.el (gnus-summary-idna-message):
5321         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
5322         Hyperlink urls in docstrings with URL `...'.
5323
5324 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
5325
5326         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
5327         functions.
5328
5329 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5330
5331         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
5332         say what the mouseover text should be.
5333
5334         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
5335         version of the mm-w3m-safe-url-regexp variable to only download images
5336         in the groups where we want that to happen.
5337
5338         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
5339
5340         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
5341         easier debugging.
5342         (gnus-article-beginning-of-window): Add kludge to allow spacing past
5343         big pictures in the article buffer.
5344
5345         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
5346         gnus-article-html.
5347         (mm-text-html-renderer): gnus-article-html needs curl in addition to
5348         w3m.
5349
5350         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
5351
5352 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5353
5354         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
5355         which doesn't exist.
5356
5357         * message.el (message-inhibit-ecomplete): New variable to allow some
5358         function to inhibit ecomplete address storage.
5359         (message-resend): Disable ecomplete message storage when resending
5360         messages.
5361
5362         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
5363
5364 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5365
5366         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
5367         Save excursion while copying, moving, and deleting articles in order to
5368         prevent the cursor from jumping to unforeseen place.
5369
5370 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5371
5372         * lpath.el: No need to bind bookmark-current-buffer,
5373         bookmark-yank-point and bookmark-make-record-function.
5374
5375 2010-08-17  Glenn Morris  <rgm@gnu.org>
5376
5377         * gnus-sync.el: Require gnus components whose functions are used.
5378
5379         * gnus-art.el (bookmark-make-record-function):
5380         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
5381         Declare for compiler.
5382
5383         * mm-url.el (mml-compute-boundary): Autoload.
5384
5385 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5386
5387         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
5388
5389 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
5390
5391         Typo fix "hoo4a" -> "hook".
5392
5393         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
5394
5395 2010-08-14  Glenn Morris  <rgm@gnu.org>
5396
5397         * gnus-sync.el (gnus-sync): Fix defgroup version.
5398
5399 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
5400
5401         Doc fixes and keep unknown groups (ammended for nunion bug fix).
5402
5403         * gnus-sync.el: Fix docs.
5404         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
5405         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
5406
5407 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
5408
5409         Optimizations for gnus-sync.el.
5410
5411         * gnus-sync.el: Add docs about gnus-sync-backend
5412         possibilities.
5413         (gnus-sync-save): Remove unnecessary message.
5414         (gnus-sync-read): Optimize and show what groups were skipped.
5415
5416 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
5417
5418         Minor bug fixes for gnus-sync.el.
5419
5420         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
5421         Don't read the sync on get-new-news.
5422
5423         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
5424         quiet.
5425
5426         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
5427         (fix typo).
5428
5429 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
5430
5431         Make saving and restoring of hidden threads work with overlays.
5432         Patch applied by Ted Zlatanov.
5433
5434         * gnus-sum.el (gnus-hidden-threads-configuration)
5435         (gnus-restore-hidden-threads-configuration): Update to deal with text
5436         properties, rather than searching for a magic character.
5437
5438 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
5439
5440         New gnus-sync.el library for synchronization of marks.
5441
5442         * gnus-sync.el: New library for synchronization of marks.
5443
5444         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
5445         renamed from `gnus-registry-grep-in-list'.
5446
5447         * gnus-registry.el (gnus-registry-follow-group-p):
5448         Use `gnus-grep-in-list'.
5449
5450         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
5451
5452 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5453
5454         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
5455         determining charset of text fails.
5456
5457 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5458
5459         * nnmail.el (nnmail-get-new-mail-1): Revert.
5460
5461         * nnml.el (nnml-active-number): Make sure names of newly created groups
5462         in nnml-group-alist are encoded.
5463
5464 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5465
5466         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
5467         containing non-ASCII characters in active file for nnml back end.
5468
5469 2010-07-24  David Engster  <dengste@eml.cc>
5470
5471         * mml-smime.el (mml-smime-epg-verify): Also accept the older
5472         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
5473
5474 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
5475
5476         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
5477         tag (Bug#6654).
5478
5479 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5480
5481         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
5482         the article buffer, not the summary buffer.
5483
5484 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5485
5486         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
5487         Emacs 23 as well.
5488
5489 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5490
5491         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
5492         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
5493
5494 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5495
5496         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
5497         Patch applied by Karl Fogel.
5498
5499         * gnus-sum.el (gnus-summary-bookmark-make-record):
5500         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
5501
5502 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5503
5504         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
5505         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
5506         C-w still not working correctly from Article buffers; Thierry's
5507         patch to fix that will be applied after this.
5508
5509         * gnus-art.el (bookmark-make-record-function): New local variable.
5510
5511         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
5512         article buffer.
5513         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
5514
5515 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
5516
5517         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
5518         on changes in bookmark.el.
5519
5520 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5521
5522         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
5523         `no-log' instead of message not to log prompt string.
5524
5525 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
5526
5527         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
5528         the *other* type of HTML form submission.
5529
5530 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
5531
5532         * auth-source.el (auth-source-pick): If choice does not contain a
5533         questioned keyword, set the check to t.
5534
5535 2010-06-12  Romain Francoise  <romain@orebokech.com>
5536
5537         * gnus-util.el (gnus-date-get-time): Move up before first use.
5538
5539 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5540
5541         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
5542         (gnus-article-edit-part): Bind it to make last part that is substituted
5543         or deleted visible.
5544         (gnus-mime-display-single): Buttonize part of which id equals to
5545         gnus-mime-buttonized-part-id.
5546
5547 2010-06-10  Dan Christensen  <jdc@uwo.ca>
5548
5549         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
5550         (gnus-dd-mmm): Use gnus-date-get-time.
5551         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
5552         simplify logic.
5553         (gnus-summary-limit-to-age): Use gnus-date-get-time.
5554         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
5555
5556 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
5557
5558         * auth-source.el (top): Autoload `secrets-list-collections',
5559         `secrets-create-item', `secrets-delete-item'.
5560         (auth-sources): Fix tag string.
5561         (auth-get-source, auth-source-retrieve, auth-source-create)
5562         (auth-source-delete): New defuns.
5563         (auth-source-pick): Rewrite in order to avoid 2 passes.
5564         (auth-source-forget-user-or-password): New parameter USERNAME.
5565         (auth-source-user-or-password): New parameters CREATE-MISSING and
5566         DELETE-EXISTING.  Retrieve password interactively, if needed.
5567
5568 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
5569
5570         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
5571         deleting unused directories when gnus-expert-user is t.
5572
5573 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5574
5575         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
5576         for each temp file when gnus-article-browse-delete-temp is ask.
5577
5578 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5579
5580         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
5581         Lisp calls to delete-backward-char by calls to delete-char.
5582
5583 2010-05-20  Kevin Ryde  <user42@zip.com.au>
5584
5585         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
5586
5587 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
5588
5589         * password-cache.el (password-cache-remove): Fix docstring.
5590
5591 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5592
5593         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
5594         article unless decoding article to be saved.
5595
5596 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5597
5598         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
5599         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
5600         generated within the mm-with-unibyte-current-buffer macro.
5601
5602 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5603
5604         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
5605         to nil when we're in a mml-preview buffer and no group is selected.
5606
5607 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
5608
5609         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
5610         when catching the `C-g'.  Reported by "Leo".
5611
5612 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5613
5614         * message.el (message-forward-make-body-plain)
5615         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
5616         multibyte-string-p.
5617
5618         * lpath.el: Revert.
5619
5620 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5621
5622         * message.el (message-forward-make-body-mml): Assume original message
5623         is multibyte string; error on unibyte.
5624         (message-forward-make-body-plain): Ditto; don't add excessive newline
5625         in body end.
5626
5627         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
5628
5629 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
5630
5631         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
5632         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
5633
5634 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5635
5636         * mm-extern.el (mm-extern-url): Don't use
5637         mm-with-unibyte-current-buffer.
5638         (mm-extern-cache-contents): Use with-current-buffer instead of
5639         save-excursion + set-buffer.
5640
5641 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5642
5643         * mm-util.el (mm-emacs-mule): Remove.
5644
5645 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
5646
5647         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
5648         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
5649         change.
5650
5651 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5652
5653         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
5654         bind the default value of enable-multibyte-characters to nil.
5655
5656 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5657
5658         * message.el (message-forward-make-body-plain)
5659         (message-forward-make-body-mml):
5660         Don't use mm-with-unibyte-current-buffer.
5661
5662 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5663
5664         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
5665
5666 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
5667
5668         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
5669         (Bug#5592).
5670
5671 2010-05-07  Julien Danjou  <julien@danjou.info>
5672
5673         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
5674         it to mm-pipe-part.
5675
5676         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
5677         it is given.
5678
5679 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5680
5681         * binhex.el (binhex-decode-region-internal)
5682         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
5683         (dns-query)
5684         * nnweb.el (nnweb-gmane-search)
5685         * pgg-parse.el (pgg-parse-armor)
5686         * pgg.el (pgg-verify-region)
5687         * sha1.el (sha1-string-external)
5688         * uudecode.el (uudecode-decode-region-internal)
5689         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
5690         XEmacs.
5691
5692         * gnus-art.el (gnus-article-browse-html-parts)
5693         * gnus-group.el (gnus-read-ephemeral-gmane-group)
5694         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
5695         make-temp-file.
5696
5697         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
5698         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
5699         compiling.
5700
5701         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
5702         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
5703         XEmacs when compiling.
5704
5705         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
5706         gnus-pick-mode-off-hook for XEmacs when compiling.
5707         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
5708         gnus-binary-mode-off-hook for XEmacs when compiling.
5709
5710         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
5711         Return nil if char-charset is not available.
5712
5713         * imap.el (imap-disable-multibyte)
5714         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
5715         macros.
5716
5717         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
5718         instead of encode-coding-string.
5719
5720         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
5721         'xemacs) instead of mm-emacs-mule to switch function definitions.
5722         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
5723
5724         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
5725         bind temporary-file-directory for XEmacs;
5726         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
5727         timer-set-function for XEmacs 21.4 and SXEmacs;
5728         bind timer-list for XEmacs 21.4 and SXEmacs;
5729         fbind char-charset and find-charset-region for non-Mule XEmacs;
5730         fbind decode-coding-region, decode-coding-string, detect-coding-region,
5731         encode-coding-region and encode-coding-string for XEmacs having no
5732         file-coding feature.
5733
5734 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
5735
5736         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
5737
5738 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5739
5740         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
5741         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
5742
5743 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
5744
5745         * mm-util.el (mm-decompress-buffer): Use `delete-file';
5746         alias `jka-compr-delete-temp-file' no longer exists.
5747
5748 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5749
5750         Use define-minor-mode in Gnus where applicable.
5751         * mml.el (mml-mode): Use define-minor-mode.
5752         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
5753         (gnus-undo-mode): Use define-minor-mode.
5754         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
5755         (gnus-dead-summary-mode): Use define-minor-mode.
5756         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
5757         Initialize in declaration.
5758         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
5759         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
5760         (gnus-mailing-list-mode): Use define-minor-mode.
5761         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
5762         (gnus-draft-mode): Use define-minor-mode.
5763         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
5764         (gnus-dired-mode): Use define-minor-mode.
5765
5766 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
5767
5768         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
5769         handles on recursive mml-to-mime translation and check them for
5770         boundary delimiter collisions.  Reported by Greg Troxel.
5771
5772 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
5773
5774         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
5775
5776 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5777
5778         * mm-util.el (mm-find-buffer-file-coding-system):
5779         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
5780
5781 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
5782
5783         * message.el (message-generate-headers): Record insertion of optional
5784         headers as well.  Otherwise the check to prevent repeated insertion of
5785         optional headers is a no-op.
5786
5787 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
5788
5789         * smime.el: Don't mention CVS.
5790
5791         * nnrss.el (nnrss-fetch): Don't mention CVS.
5792
5793         * nnir.el: Don't mention CVS.
5794
5795 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5796
5797         * gnus-sum.el (gnus-summary-bookmark-make-record):
5798         Add `location' field.
5799
5800 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5801
5802         * lpath.el: Fbind bookmark-default-handler,
5803         bookmark-get-bookmark-record, bookmark-make-record-default,
5804         bookmark-prop-get for Emacs <23 and XEmacs.
5805
5806 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5807
5808         * gnus-sum.el: Add bookmark declarations to silence the compiler.
5809         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
5810         Use with-current-buffer to silence the byte-compiler.
5811         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
5812         bother to require `gnus'.
5813         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
5814
5815 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
5816
5817         * gnus-sum.el (gnus-summary-bookmark-make-record)
5818         (gnus-summary-bookmark-jump): New functions.
5819         (gnus-summary-mode): Setup bookmark support.
5820
5821 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
5822
5823         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
5824         if set.
5825
5826 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5827
5828         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
5829         gnus-article-browse-html-save-cid-image; make it work recursively for
5830         forwarded messages as well.
5831         (gnus-article-browse-html-parts): Work when prefix arg is given.
5832         (gnus-article-browse-html-article): Doc fix.
5833
5834 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
5835
5836         * message.el (message-default-mail-headers):
5837         (message-default-headers): Carry the value mail-default-headers over
5838         into message-default-mail-headers, rather than message-default-headers.
5839
5840 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
5841
5842         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
5843         charset.
5844
5845         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
5846         charset into the <meta> tag when the article is encoded to utf-8.
5847
5848 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5849
5850         * gnus-art.el (gnus-article-browse-delete-temp-files):
5851         Delete directories as well.
5852         (gnus-article-browse-html-parts): Work for images that do not specify
5853         file names; delete temp directory when quitting; insert header at the
5854         right place; use file: scheme for image files.
5855
5856 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
5857
5858         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
5859         (gnus-article-browse-html-parts): Use it to make temporary cid image
5860         files in addition to html file so that browser may display them.
5861
5862 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5863
5864         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
5865
5866 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
5867
5868         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
5869
5870 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
5871
5872         * auth-source.el (auth-sources): Change default to be simpler.
5873         Explain about Secret Service API sources.  Improve Customize options.
5874         (auth-source-pick): Change to accept any number of search parameters.
5875         Implement fallbacks iteratively, not recursively.  Add scoring on the
5876         second pass and sort by score.  Call Secret Service API when needed.
5877         (auth-source-user-or-password): Use it.  Call Secret Service API
5878         directly when needed to get the user name and the password.
5879
5880 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
5881
5882         * message.el (message-interactive): Doc fix.
5883         (message-qmail-inject-args): Reflow.
5884         (message-kill-to-signature): Fix typo in docstring.
5885
5886         * smiley.el (smiley-buffer): Fix typo in docstring.
5887
5888 2010-03-24  Glenn Morris  <rgm@gnu.org>
5889
5890         * mail-source.el (gnus-message): Declare.
5891         (mail-source-delete-old-incoming): Require gnus-util.
5892
5893 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5894
5895         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
5896
5897         * message.el (ecomplete-setup): Autoload it for Emacs <23.
5898
5899         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
5900         password-cache's default if it is not bound.
5901         (mml-secure-passphrase-cache-expiry): Default to 16 that is
5902         password-cache-expiry's default if it is not bound.
5903
5904         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
5905         available in Emacs 21.
5906
5907         * lpath.el: Suppress compiler warnings for:
5908         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
5909         XEmacs;
5910         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
5911         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
5912         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
5913
5914 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
5915
5916         * auth-source.el (auth-sources): Fix up definition so extra parameters
5917         are always inline.
5918
5919 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
5920
5921         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
5922         wasn't updated after mismatch.  Clear cached mailbox info correctly
5923         when uidvalidity changes.
5924         (nnimap-group-prefixed-name): New function to avoid some code
5925         duplication.
5926         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
5927         (nnimap-request-group): Use it.
5928         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
5929         (nnimap-update-unseen): Significantly improved speed of Gnus startup
5930         with many imap folders.  This is done by caching the group status from
5931         the imap server persistently in a group parameter `imap-status'.  (This
5932         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
5933         but not persistently, so every Gnus startup was still very slow.)
5934
5935 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
5936
5937         * assistant.el (assistant-render-text): Run `widget-setup' and don't
5938         delete the extra newline.  Otherwise editing of :string and :number
5939         types don't work.
5940
5941 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
5942
5943         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
5944         secrets.el dependency.
5945         (auth-sources): Add optional user name.  Add secrets.el configuration
5946         choice (unused right now).
5947
5948 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
5949
5950         * gnus-sum.el (gnus-summary-make-menu-bar):
5951         Let `gnus-registry-install-shortcuts' fill in the functions.
5952
5953         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
5954         warnings.
5955         (gnus-registry-misc-menus): Variable to hold registry mark menus.
5956         (gnus-registry-install-shortcuts): Populate and use it in a
5957         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
5958
5959 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
5960
5961         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
5962         In-place substitutions for the group name encoding/decoding.
5963         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
5964         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
5965         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
5966         (nnimap-update-unseen, nnimap-request-list)
5967         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
5968         (nnimap-request-set-mark, nnimap-split-to-groups)
5969         (nnimap-split-articles, nnimap-request-newgroups)
5970         (nnimap-request-create-group, nnimap-request-accept-article)
5971         (nnimap-request-delete-group, nnimap-request-rename-group)
5972         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
5973         `encoded-mbx' for consistency.
5974         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
5975         variable `imap-current-mailbox'.
5976
5977         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
5978         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
5979
5980 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
5981
5982         * pop3.el (pop3-display-message-size-flag): Display message size byte
5983         counts during POP3 download.
5984         (pop3-movemail): Use it.
5985         (pop3-list): Implement listing of available messages.
5986
5987 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
5988
5989         * nnir.el (nnir-get-article-nov-override-function): New function to
5990         override the normal NOV retrieval.
5991         (nnir-retrieve-headers): Use it.
5992
5993 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
5994
5995         * auth-source.el (netrc-machine-user-or-password): Autoload.
5996
5997 2010-03-19  Glenn Morris  <rgm@gnu.org>
5998
5999         Stop message.el from loading about 40 libraries it doesn't always need.
6000         The general approach is to autoload rather than require, and to
6001         require in the specific functions rather than the file.  (Bug#5642)
6002
6003         * gmm-utils.el: Don't require wid-edit.
6004         (widget-create-child-value, widget-convert, widget-default-get):
6005         Autoload.
6006
6007         * gnus-util.el: Don't require time-date, netrc.
6008         (message-fetch-field, gnus-group-name-decode): Declare rather than
6009         autoloading.
6010         (gnus-fetch-field): Require message.
6011         (gnus-decode-newsgroups): Require gnus-group.
6012
6013         * ietf-drums.el: Don't require time-date.
6014
6015         * message.el: Don't require hashcash, canlock, ecomplete.
6016         Do require mail-utils.  Require nnheader only when compiling.
6017         (smtpmail-default-smtp-server): Remove declaration.
6018         (message-send-mail-function): Check smtpmail-default-smtp-server
6019         is bound rather than requiring smtpmail.
6020         (message-auto-save-directory, message-insert-signature):
6021         Use expand-file-name rather than nnheader-concat.
6022         (nnheader-insert-file-contents): Autoload.
6023         (hashcash-wait-async): Declare.
6024         (message-send-mail): Only call gnus-setup-posting-charset if
6025         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
6026         (message-send-mail-with-sendmail): Require sendmail.
6027         (canlock-password, canlock-password-for-verify): Declare.
6028         (message-canlock-password): Require canlock.
6029         (nnheader-get-report): Autoload.
6030         (gnus-setup-posting-charset): Declare.
6031         (message-send-news): Require gnus-msg.
6032         (message-make-references, message-make-in-reply-to): Use mail-header-id
6033         rather than the alias mail-header-message-id.
6034         (ecomplete-add-item, ecomplete-save): Declare.
6035         (message-put-addresses-in-ecomplete): Require ecomplete.
6036         (ecomplete-display-matches): Autoload.
6037
6038         * mm-decode.el: Don't require mailcap, gnus-util.
6039         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
6040         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
6041         Autoload.
6042         (mailcap-mime-extensions): Declare.
6043
6044         * mm-encode.el: Don't require mailcap.
6045         (mailcap-extension-to-mime): Autoload.
6046
6047         * mml-sec.el: Don't require password-cache.
6048
6049         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
6050         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
6051         (mml-minibuffer-read-type): Require mailcap.
6052         (mml-preview): Require gnus-msg.
6053
6054         * mml1991.el: Require password-cache.
6055         (password-cache-expiry): Remove declaration.
6056
6057         * mml2015.el: Require password-cache.
6058         (password-cache-expiry): Remove declaration.
6059
6060         * nneething.el (mailcap): Require mailcap.
6061
6062         * nnheader.el (declare-function): Add compatibility stub.
6063         (message-remove-header): Declare rather than autoload.
6064         (nnheader-replace-header): Require message.
6065
6066         * nnimap.el (declare-function): Add compatibility stub.
6067         (netrc-parse, netrc-machine-user-or-password): Declare.
6068         (nnimap-open-connection): Require netrc.
6069
6070         * nntp.el (declare-function): Add compatibility stub.
6071         (netrc-parse, netrc-machine, netrc-get): Declare.
6072         (nntp-send-authinfo): Require netrc.
6073
6074         * rfc2047.el: Don't require qp.
6075         (quoted-printable-encode-region, quoted-printable-decode-string):
6076         Autoload.
6077
6078         * sieve-mode.el: Don't require easymenu.
6079         (easy-menu-add-item): Autoload it.
6080
6081         * spam-stat.el (time-to-number-of-days): Autoload it.
6082
6083 2010-03-19  Glenn Morris  <rgm@gnu.org>
6084
6085         * password-cache.el (password-cache, password-cache-expiry): Autoload.
6086
6087 2010-03-18  Glenn Morris  <rgm@gnu.org>
6088
6089         * hashcash.el (declare-function): Remove duplicate definition.
6090
6091 2010-03-17  Kevin Ryde  <user42@zip.com.au>
6092
6093         * mml.el (mml-read-tag): Unquote values with `read' to reverse
6094         prin1 in mml-insert-tag (just stripping the quotes gave wrong
6095         value if any backslash escapes).
6096
6097 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6098
6099         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
6100         if it is available.  (bug#5647)
6101
6102         * lpath.el: Suppress compiler warning for coding-system-from-name for
6103         Emacs 21 and XEmacs.
6104
6105 2010-03-14  Juri Linkov  <juri@jurta.org>
6106
6107         * hmac-def.el:
6108         * hmac-md5.el:
6109         * netrc.el: Fix keywords.
6110
6111 2010-02-26  Glenn Morris  <rgm@gnu.org>
6112
6113         * message.el (message-send-mail-function): Change the default, so that
6114         it inherits from a customized send-mail-function.  (Bug#5643)
6115
6116 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6117
6118         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
6119         shell-command-to-string signals an error (bug#5299).
6120
6121 2010-02-24  Glenn Morris  <rgm@gnu.org>
6122
6123         * message.el (message-smtpmail-send-it)
6124         (message-send-mail-with-mailclient): Doc fixes.
6125
6126 2010-02-16  Glenn Morris  <rgm@gnu.org>
6127
6128         * message.el (message-default-mail-headers): Change the default value
6129         to ease the transition from mail-mode to message-mode.  (Bug#5555)
6130
6131 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6132
6133         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
6134         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
6135
6136 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
6137
6138         * time-date.el (date-to-time): Doc fix (Bug#5408).
6139
6140 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
6141
6142         * message.el (message-mail): Just pass yank-action on to message-setup.
6143         (message-setup): Handle (FUN . ARGS) form of yank-action.
6144         (message-with-reply-buffer, message-widen-reply)
6145         (message-yank-original): Handle non-buffer values of
6146         message-reply-buffer (Bug#4080).
6147         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
6148
6149 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
6150
6151         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
6152         Fix typo in docstring.
6153
6154 2010-01-08  Jason Rumney  <jasonr@gnu.org>
6155
6156         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
6157         response.
6158
6159 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6160
6161         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
6162
6163         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
6164
6165         * message.el (message-check-news-header-syntax): Protect against a
6166         string that `rfc822-addresses' returns when parsing fails.
6167
6168 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6169
6170         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
6171         (gnus-previous-char-property-change): New functions.
6172
6173         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
6174
6175 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
6176
6177         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
6178         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
6179
6180 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
6181
6182         * message.el (message-exchange-point-and-mark): Rework last change to
6183         avoid using optional arg of exchange-point-and-mark, for backward
6184         compatibility.
6185
6186 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
6187
6188         * message.el (message-exchange-point-and-mark):
6189         Call exchange-point-and-mark with an argument rather than setting
6190         mark-active by hand (Bug#5175).
6191
6192 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6193
6194         * nntp.el (nntp-service-to-port): Work for service expressed with
6195         numeric string; replace [:digit:] with [0-9] for XEmacs.
6196
6197 2009-12-17  Glenn Morris  <rgm@gnu.org>
6198
6199         * gnus-group.el (gnus-bug-group-download-format-alist):
6200         Change emacs entry to debbugs.gnu.org.  Bump :version.
6201
6202 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
6203
6204         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
6205
6206 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
6207
6208         * message.el (message-info): Explain why we use `Info-goto-node'.
6209
6210 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
6211
6212         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
6213
6214 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6215
6216         * message.el (message-completion-in-region): New compatibility function.
6217         (message-expand-group): Use it.
6218
6219 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
6220
6221         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
6222         with no unread article should be listed if the 2nd arg `predicate' is
6223         given.
6224
6225 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6226
6227         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
6228
6229 2009-11-29  Juri Linkov  <juri@jurta.org>
6230
6231         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
6232         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
6233         on `gnus-recenter'.  (Bug#4698, Bug#4981)
6234
6235 2009-11-26  Kevin Ryde  <user42@zip.com.au>
6236
6237         * sha1.el (sha1-string-external): default-directory "/" in case
6238         otherwise non-existent.  process-connection-type pipe for touch of
6239         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
6240
6241 2009-11-25  Kevin Ryde  <user42@zip.com.au>
6242
6243         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
6244         it's comms related and sgml-mode.el has "comm" on that basis too.
6245
6246 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6247
6248         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
6249         containing tspecial characters if they have been already quoted.
6250
6251 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
6252
6253         * dns-mode.el (auto-mode-alist): Purecopy string.
6254
6255 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6256
6257         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
6258
6259 2009-10-24  Glenn Morris  <rgm@gnu.org>
6260
6261         * gnus-art.el (help-xref-stack-item): Define for compiler.
6262
6263 2009-10-21  Kevin Ryde  <user42@zip.com.au>
6264
6265         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
6266
6267 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6268
6269         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
6270
6271 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6272
6273         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
6274         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
6275
6276 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6277
6278         * gnus.el (gnus-overlay-get): New alias to overlay-get.
6279         (gnus-overlays-in): New alias to overlays-in.
6280
6281         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
6282         gnus-overlay-get, and gnus-delete-overlay.
6283         (gnus-summary-show-thread): Make it work as well for systems in which
6284         next-single-char-property-change is not available.
6285         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
6286
6287         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
6288         (gnus-overlay-get): New alias to extent-property.
6289         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
6290
6291         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
6292         SXEmacs.
6293
6294         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
6295         SXEmacs.
6296
6297 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
6298
6299         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
6300
6301 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
6302
6303         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
6304         and XEmacs that don't have `remove-overlays'.
6305
6306 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6307
6308         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
6309         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
6310         selective display.  Use overlays instead.
6311
6312 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
6313
6314         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
6315
6316 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
6317
6318         * spam-stat.el (spam-stat-load): Fix typo in message.
6319
6320 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
6321
6322         * dig.el (dig-invoke): Fix typo in docstring.
6323         (query-dig): Reflow docstring.
6324
6325 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
6326
6327         * gnus-art.el (gnus-article-encrypt-body):
6328         * message.el (message-check-recipients):
6329         * mm-util.el (mm-codepage-setup):
6330         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
6331         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
6332
6333 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
6334
6335         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
6336         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
6337         keys from the menu if mm-{sign,encrypt}-option is 'guided.
6338         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
6339         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
6340
6341 2009-09-21  Kevin Ryde  <user42@zip.com.au>
6342
6343         * dig.el: Add "Keywords: comm", as per net-utils.el.
6344
6345 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6346
6347         * dig.el (dig-mode): Use define-derived-mode.
6348
6349 2009-09-19  Glenn Morris  <rgm@gnu.org>
6350
6351         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
6352
6353 2009-09-18  Glenn Morris  <rgm@gnu.org>
6354
6355         * gnus-diary.el (gnus-diary-check-message):
6356         * message.el (message-insert-formatted-citation-line):
6357         * nnbabyl.el (top-level):
6358         * nndiary.el (nndiary-schedule):
6359         Fix typos in condition-case handlers.
6360
6361 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6362
6363         * gnus-art.el (gnus-article-edit-part): Work for the buffer
6364         configuration that provides the sole article window in a frame;
6365         position point correctly after deleting a part.
6366
6367 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
6368
6369         * spam.el (spam-unregister-on-reregister): Add boolean variable.
6370         (spam-resolve-registrations-routine): Use it to unregister articles
6371         that change status.
6372
6373 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6374
6375         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
6376         with XEmacs.
6377         (parse-time-string-chars): Use it.
6378
6379 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
6380
6381         * imap.el (imap-interactive-login): Better messages.
6382         (imap-open): Fix bug with renamed buffer on reconnect.
6383         (imap-authenticate): Add buffer-local imap-last-authenticator variable
6384         for easier debugging and cleaner code.  On successful (guessed based on
6385         server capabilities) secondary authentication, set imap-state
6386         correctly.
6387         (imap-last-authenticator): Define imap-last-authenticator as a variable
6388         to avoid warnings.
6389
6390 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6391
6392         * nnrss.el (nnrss-request-article): Remove binding of
6393         default-enable-multibyte-characters that has gotten needless by
6394         the 2007-07-13 change in rfc2047-encode-message-header.
6395
6396         * mml.el (mml-insert-multipart): Error on the message header.
6397         (mml-insert-part): Error on the message header; position point at
6398         the end of a MIME tag.
6399
6400 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6401
6402         * time-date.el (autoload): Expand define-obsolete-function-alias into
6403         defalias and make-obsolete for old Emacsen that Gnus supports.
6404         (with-no-warnings): Define it for old Emacsen.
6405         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
6406         is available.
6407         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
6408         float-time is available; suppress compile warning for time-to-seconds.
6409
6410         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
6411         (gnus-float-time): Alias to float-time if it exists.
6412
6413         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
6414         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
6415         float-time is available; suppress compile warning for time-to-seconds.
6416
6417         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
6418         XEmacs.
6419
6420 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
6421
6422         * imap.el (imap-message-map): Docstring fix.
6423
6424 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6425
6426         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
6427         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
6428         Add the optional argument `encoding' that overrides the default.
6429
6430         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
6431         mm-encode-buffer.
6432
6433 2009-09-04  Glenn Morris  <rgm@gnu.org>
6434
6435         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
6436         mm-disable-multibyte, rather than default-enable-multibyte-characters.
6437         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
6438         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
6439         * mm-util.el (mm-with-unibyte-current-buffer)
6440         (mm-find-buffer-file-coding-system):
6441         * yenc.el (yenc-decode-region): Use default-value rather than
6442         default-enable-multibyte-characters.
6443
6444 2009-09-03  Glenn Morris  <rgm@gnu.org>
6445
6446         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
6447         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
6448         than default-enable-multibyte-characters.
6449
6450 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
6451
6452         * gnus-art.el (gnus-article-read-summary-keys):
6453         Fix gnus-buffer-configuration's value temporarily used.
6454
6455 2009-09-02  Glenn Morris  <rgm@gnu.org>
6456
6457         * gnus-util.el (gnus-float-time): New function.
6458         * gnus-delay.el (gnus-delay-article):
6459         * gnus-sum.el (gnus-thread-latest-date):
6460         * gnus-util.el (gnus-user-date): Use gnus-float-time.
6461         * nnspool.el (nnspool-request-newgroups):
6462         Use gnus-float-time rather than time-to-seconds.
6463         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
6464
6465         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
6466         (gnus-header-subject-face, gnus-header-newsgroups-face)
6467         (gnus-header-name-face, gnus-header-content-face):
6468         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
6469         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
6470         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
6471         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
6472         (gnus-cite-face-11):
6473         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
6474         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
6475         (gnus-server-closed-face, gnus-server-denied-face)
6476         (gnus-server-offline-face):
6477         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
6478         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
6479         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
6480         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
6481         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
6482         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
6483         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
6484         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
6485         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
6486         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
6487         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
6488         (gnus-summary-selected-face, gnus-summary-cancelled-face)
6489         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
6490         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
6491         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
6492         (gnus-summary-high-undownloaded-face)
6493         (gnus-summary-low-undownloaded-face)
6494         (gnus-summary-normal-undownloaded-face)
6495         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
6496         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
6497         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
6498         (gnus-splash-face):
6499         * message.el (message-header-to-face, message-header-cc-face)
6500         (message-header-subject-face, message-header-newsgroups-face)
6501         (message-header-other-face, message-header-name-face)
6502         (message-header-xheader-face, message-separator-face)
6503         (message-cited-text-face, message-mml-face):
6504         * sieve-mode.el (sieve-control-commands-face)
6505         (sieve-action-commands-face, sieve-test-commands-face)
6506         (sieve-tagged-arguments-face):
6507         * spam.el (spam-face):
6508         Mark face aliases with "-face" in the name as obsolete.
6509
6510 2009-09-01  Glenn Morris  <rgm@gnu.org>
6511
6512         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
6513         than goto-line.
6514
6515 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
6516
6517         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
6518         Don't move point if the command is invoked inside the message header.
6519
6520 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6521
6522         * imap.el (imap-send-command): Simplify.
6523         (imap-wait-for-tag): point-max -> buffer-size.
6524
6525 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6526
6527         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
6528         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
6529         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
6530         * nnir.el (nnir-swish-e-index-file):
6531         * gnus-sum.el (gnus-summary-delete-marked-as-read)
6532         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
6533         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
6534         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
6535         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
6536         (gnus-treat-display-xface): Add Emacs version of obsolescence.
6537
6538 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6539
6540         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
6541         Don't save excursion.
6542
6543 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6544
6545         * nnheader.el (nnheader-find-file-noselect):
6546         * mm-util.el (mm-insert-file-contents):
6547         Use (default-value 'major-mode) instead of default-major-mode.
6548
6549 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6550
6551         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
6552
6553 2009-08-26  Glenn Morris  <rgm@gnu.org>
6554
6555         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
6556         than placing in files.el.
6557
6558 2009-08-25  Glenn Morris  <rgm@gnu.org>
6559
6560         * nnir.el (top-level): Don't require cl at run-time.
6561         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
6562         Replace cl-function substitute with gnus-replace-in-string.
6563         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
6564         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
6565         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
6566         simplified expansions.
6567
6568 2009-08-25  Kevin Ryde  <user42@zip.com.au>
6569
6570         * dig.el (dig): Add autoload cookie.
6571
6572 2009-08-22  Glenn Morris  <rgm@gnu.org>
6573
6574         * gnus-art.el (gnus-button-patch): Use forward-line rather than
6575         goto-line.
6576
6577 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
6578
6579         * parse-time.el (parse-time-string-chars): Save match data.
6580
6581 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
6582
6583         * parse-time.el (parse-time-string-chars): Compute using character
6584         classes, to handle non-ascii characters (Bug#3190).
6585
6586 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
6587
6588         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
6589
6590         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
6591         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
6592         (gnus-mm-display-part, gnus-mime-display-single)
6593         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
6594         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
6595
6596         * gnus-sum.el
6597         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
6598         (gnus-summary-move-article): Add expirable mark to articles copied or
6599         moved to group that has auto-expire turned on if the option is non-nil.
6600
6601 2009-07-24  Glenn Morris  <rgm@gnu.org>
6602
6603         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
6604         Fix typo.  (Bug#3903)
6605
6606 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
6607
6608         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
6609         gnus-article-read-summary-keys rather than gnus-summary-edit-article
6610         that should not be used for draft articles.
6611         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
6612         that has no concern in minor mode keys.
6613         (gnus-article-summary-command, gnus-article-summary-command-nosave):
6614         Abolish.
6615
6616 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6617
6618         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
6619         article without making inquiry to a user for unknown encoding.
6620
6621         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
6622         (nnmaildir--scan): Assume i-node and device number that file-attributes
6623         returns might be cons-cell.
6624
6625         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
6626
6627         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
6628
6629 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
6630
6631         * auth-source.el: Remove docs now in auth.texi.  Don't use
6632         `gnus-message' for logging.  Add new variables `auth-source-debug' and
6633         `auth-source-hide-passwords' and use them.
6634
6635 2009-07-15  Glenn Morris  <rgm@gnu.org>
6636
6637         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
6638
6639 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6640
6641         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
6642         excessive whitespace from the default values of title and description.
6643
6644 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6645
6646         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
6647         mail-fetch-field to fetch Content-Description header in order to
6648         exclude newlines.
6649
6650 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
6651
6652         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
6653         format used by GnuPG 2.0.11.
6654
6655 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6656
6657         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
6658         to deleted part.
6659
6660 2009-05-30  David Engster  <dengste@eml.cc>
6661
6662         * nnmairix.el: Remove old documentation in the commentary block.
6663         (nnmairix-request-group): Do not update active file for nnml back ends.
6664         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
6665         end so that overview files are ignored.
6666         (nnmairix-update-groups): Make updating the groups more robust by using
6667         marks.
6668         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
6669         with dollar characters in message-id.
6670
6671 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
6672
6673         * spam.el: Use dns-query instead of query-dns.  Was renamed on
6674         2008-12-25 in dns.el.
6675
6676 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6677
6678         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
6679         could happen if the text is only composed of spaces and/or tabs.
6680
6681 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
6682
6683         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
6684         when sending a queued message to avoid extra mml tags.
6685
6686 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
6687
6688         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
6689
6690 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6691
6692         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
6693         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
6694         rmail-toggle-header for XEmacs;
6695         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
6696
6697 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6698
6699         * gnus-dired.el: Remove autoload for gnus-setup-message.
6700         (gnus-dired-attach): Fake this-command value to prevent Gnus from
6701         displaying Gnus logo; always use compose-mail.
6702
6703 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
6704
6705         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
6706
6707 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6708
6709         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
6710         (gnus-nocem-issuers): List currently active issuers; fix custom type.
6711         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
6712         available.
6713         (gnus-nocem-epg-verify): New function.
6714
6715 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
6716
6717         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
6718
6719 2009-02-15  Glenn Morris  <rgm@gnu.org>
6720
6721         * gnus-util.el (rmail-insert-rmail-file-header)
6722         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
6723         autoloads.
6724         (rmail-default-rmail-file): Remove unnecessary declaration.
6725         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
6726
6727 2009-02-14  Glenn Morris  <rgm@gnu.org>
6728
6729         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
6730         variable (only used in gnus-util, which declares it anyway).
6731         (rmail-output-to-rmail-file): Remove autoload of deleted function,
6732         which was only needed by gnus-art (changed to not use it any more).
6733         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
6734         only used in gnus-util, which autoloads it itself.
6735         (rmail-update-summary): Fix autoload.
6736
6737         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
6738         rather than rmail-output-to-rmail-file.
6739
6740 2009-02-07  Glenn Morris  <rgm@gnu.org>
6741
6742         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
6743         autoload of function that no longer exists.
6744         (rmail-toggle-header): Declare.
6745         (message-forward-rmail-make-body): Handle mbox Rmail.
6746
6747 2009-01-31  Glenn Morris  <rgm@gnu.org>
6748
6749         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
6750         2009-01-09 change.
6751
6752 2009-01-31  Dave Love  <fx@gnu.org>
6753
6754         * imap.el (imap-fetch-safe): Bind debug-on-error.
6755         (imap-debug): Add imap-fetch-safe.
6756
6757 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
6758
6759         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
6760         (auth-source-forget-all-cached): New convenience function.
6761         (auth-source-user-or-password): Accept list of modes or a single mode.
6762
6763         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
6764         auth-source modes.
6765
6766         * netrc.el (netrc-machine-user-or-password): Use list of
6767         auth-source modes.
6768
6769         * nnimap.el (nnimap-open-connection): Use list of
6770         auth-source modes.
6771
6772         * nntp.el (nntp-send-authinfo): Use list of
6773         auth-source modes.
6774
6775 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
6776
6777         * auth-source.el: Update docs to reflect epa-file-enable is to be used
6778         now.
6779
6780 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6781
6782         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
6783         coding system in XEmacs; add a workaround for XEmacs.
6784
6785         * lpath.el: Fbind coding-system-aliasee.
6786
6787 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6788
6789         * mm-util.el (mm-coding-system-priorities): Protect against nil value
6790         of current-language-environment.
6791
6792 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
6793
6794         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
6795         available at runtime.
6796
6797 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6798
6799         * gnus-art.el (article-date-ut): Fix end point of narrowing.
6800
6801 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
6802
6803         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
6804         the greatest positive fixnum value doesn't work under an XEmacs with
6805         bignum support; use the most-positive-fixnum constant instead,
6806         available since Emacs 21.1 with cl and XEmacs 21.1.
6807
6808 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6809
6810         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
6811         XEmacs gets not to work.
6812
6813 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6814
6815         * mm-util.el (mm-coding-system-priorities): Allow the value like
6816         "Japanese (UTF-8)" of current-language-environment.
6817
6818 2009-01-09  Glenn Morris  <rgm@gnu.org>
6819
6820         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
6821         with last-command-event.
6822
6823 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
6824
6825         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
6826         in the doc string.
6827
6828         * message.el (message-fix-before-sending): Amend comment.
6829
6830 2009-01-08  Dave Love  <fx@gnu.org>
6831
6832         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
6833
6834 2009-01-07  David Engster  <dengste@eml.cc>
6835
6836         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
6837         simplified server definitions by converting it via
6838         gnus-server-to-method.
6839
6840 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
6841
6842         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
6843         parameter's operands.
6844
6845 2009-01-06  David Engster  <dengste@eml.cc>
6846
6847         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
6848         primary select method (for gnus-group-mark-article-as-read).
6849
6850 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
6851
6852         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
6853         `(gnus)Face', not `(gnus)X-Face'.
6854
6855 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
6856
6857         * mm-util.el (mm-ucs-to-char): New function.
6858
6859         * mm-url.el (mm-url-decode-entities): Use it.
6860
6861         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
6862         unicode-to-char.
6863
6864 2009-01-05  Dave Love  <fx@gnu.org>
6865
6866         * time-date.el: Require cl for `declare'.
6867
6868 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
6869
6870         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
6871         Dave Love.
6872
6873 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
6874
6875         * message.el (message-fix-before-sending): Add `eight-bit' to
6876         illegible-text check.
6877
6878 2009-01-03  Michael Olson  <mwolson@gnu.org>
6879
6880         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
6881         `headers' is nil.  This can occur if the IMAP server does not have
6882         permissions to read messages from a folder, but can write new messages
6883         to the folder.
6884         (nnimap-request-article-part): Do not insert `data' if it is nil.
6885
6886         * imap.el (imap-parse-fetch): Courier can insert spurious blank
6887         characters which will confuse `read', so skip past them.
6888
6889 2009-01-01  Dave Love  <fx@gnu.org>
6890
6891         * imap.el (imap-string-to-integer): Fix typo.
6892         (imap-fetch-safe): New function.
6893         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
6894
6895         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
6896
6897         * imap.el (imap-process-connection-type, imap-debug, imap-open):
6898         (imap-parse-greeting): Fix doc strings.
6899         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
6900         (imap-parse-flag-list): Make messages unique.
6901         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
6902
6903         * nnimap.el: Fix author email.
6904         (nnimap-split-rule): Add FIXME comment.
6905         (nnimap-debug): Fix doc string.
6906
6907 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6908
6909         * dns.el (dns-set-servers): Check "Address".  Fix typo.
6910
6911 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
6912
6913         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
6914         nslookup if resolv.conf isn't available.
6915         (dns-query): Rename from query-dns.
6916         (dns-query-cached): Rename from query-dns-cached.
6917
6918 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6919
6920         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
6921         overlay-arrow-position and overlay-arrow-string buffer-local; no need
6922         to check if those variables exist (first appeared in Emacs 18.50).
6923
6924 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6925
6926         * mm-util.el (mm-line-number-at-pos): New function.
6927
6928         * spam-report.el (spam-report-process-queue): Use it.
6929
6930 2008-12-24  David Engster  <dengste@eml.cc>
6931
6932         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
6933         parameters that haven't existed as variables as buffer-local variables.
6934
6935 2008-12-23  Dave Love  <fx@gnu.org>
6936
6937         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
6938         cadar.
6939
6940         * sieve-manage.el (sieve-manage-starttls-p): Rename from
6941         imap-starttls-p.
6942         (sieve-manage-starttls-open): Rename from imap-starttls-open.
6943
6944 2008-12-22  Dave Love  <fx@gnu.org>
6945
6946         * imap.el: Fix author email.  Doc fixes.
6947         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
6948         reply.
6949
6950 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
6951
6952         * spam-report.el (spam-report-gmane-max-requests): New constant.
6953         (spam-report-gmane-wait): New variable.
6954         (spam-report-gmane-ham, spam-report-gmane-spam)
6955         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
6956         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
6957         the server.
6958
6959         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
6960         Add explanations.
6961
6962         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
6963         nnheader-accept-process-output and nnheader-read-timeout if available.
6964         (pop3-movemail): Use it.
6965
6966         * message.el (message-check-news-body-syntax): Fix signature check if
6967         there's an attachment.
6968
6969 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6970
6971         * mm-util.el: Add comments to the mm- emulating functions.
6972
6973 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
6974
6975         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
6976         Reported by Stephen Berman <stephen.berman@gmx.net>.
6977
6978 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6979
6980         * mm-util.el (mm-substring-no-properties): New function.
6981         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
6982         (mm-special-display-p): Enable those lambda forms to be byte compiled.
6983         (mm-string-to-multibyte): Doc fix.
6984
6985         * mml.el (mml-attach-file): Use mm-substring-no-properties.
6986
6987 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
6988
6989         * mml.el (mml-attach-file): Strip text properties from file name.
6990         (Bug#1574)
6991
6992 2008-12-16  Glenn Morris  <rgm@gnu.org>
6993
6994         * mm-util.el (mm-charset-override-alist): Declare for compiler.
6995
6996 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6997
6998         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
6999         knows since the charset specified might be a bogus alias that
7000         mm-charset-synonym-alist provides.
7001
7002 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
7003
7004         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
7005         "ISO_8859-1".
7006
7007         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
7008
7009 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
7010
7011         * mm-util.el (mm-charset-eval-alist):
7012         Define it before mm-charset-to-coding-system.
7013         (mm-charset-to-coding-system): Add optional argument `silent';
7014         define it before mm-charset-override-alist.
7015         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
7016         default value if it can be used in Emacs currently running;
7017         silence mm-charset-to-coding-system.
7018
7019 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7020
7021         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
7022         `allow-override' which says whether to use `mm-charset-override-alist'.
7023         (rfc2047-decode-encoded-words): Use it.
7024
7025         * mm-util.el (mm-charset-override-alist): Fix custom type;
7026         add `(gb2312 . gbk)' to choices.
7027
7028 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7029
7030         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
7031         fast.
7032
7033         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
7034
7035         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
7036
7037 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
7038
7039         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
7040         on links.
7041
7042         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
7043
7044 2008-12-03  Lute Kamstra  <lute@gnu.org>
7045
7046         * sha1.el: Remove leading * from docstrings of defcustoms,
7047         deffaces, defconsts and defuns.
7048
7049 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7050
7051         * message.el (message-idna-to-ascii-rhs-1): Protect against local
7052         users' addresses that don't have domain parts.
7053         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
7054         rather than message-narrow-to-head since there will be the message
7055         header separator.
7056
7057 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7058
7059         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
7060         since the result is inserted in a unibyte buffer anyway.
7061         (nnimap-demule-use-string-to-multibyte): Remove.
7062         (nnimap-demule): Alias it to mm-string-to-multibyte.
7063
7064 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
7065
7066         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
7067         variable for debugging bug#464 and bug#1174.
7068         (nnimap-demule): Use it.
7069
7070 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
7071
7072         * gnus-score.el (gnus-score-find-trace): Handle default score in total
7073         score calculation correctly.
7074
7075 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7076
7077         * message.el (message-send-mail): Just set the buffer to unibyte
7078         rather than use mm-with-unibyte-current-buffer which does a lot more.
7079         (message-send-mail-partially): Don't bother with
7080         mm-with-unibyte-current-buffer since it's already been made unibyte by
7081         message-send-mail.
7082
7083 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
7084
7085         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
7086
7087 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
7088
7089         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
7090
7091 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7092
7093         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
7094         require itself and to remove `with-no-warnings'.
7095
7096 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
7097
7098         * starttls.el (starttls-any-program-available): Get the name of the
7099         available TLS layer program.
7100         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
7101         well as the host name in the "opening" message.
7102
7103         * auth-source.el (auth-source-cache, auth-source-do-cache)
7104         (auth-source-user-or-password): Cache passwords and logins by default,
7105         allow override with `auth-source-do-cache'.
7106         (auth-source-forget-user-or-password): Allow users to remove cache
7107         entries if needed.
7108
7109 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
7110
7111         * md4.el (md4-buffer): Fix typo in docstring.
7112         (md4, md4-64): Doc fixes.
7113         (md4-pack-int32): Reflow docstring.
7114
7115 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
7116
7117         * ietf-drums.el (ietf-drums-remove-comments): Localize second
7118         condition-case to only the forward-sexp call.
7119
7120 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
7121
7122         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
7123         quotes contained.  Make it more robust regardless by an extra
7124         condition-case wrapper.
7125
7126 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7127
7128         * lpath.el: No need to fbind codepage-setup for Emacs 23.
7129
7130 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7131
7132         * nnml.el (nnml-request-expire-articles): Check if the function set to
7133         `nnmail-expiry-target' returns the symbol `delete'.
7134
7135         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
7136
7137         * nnmail.el (nnmail-expiry-target): Fix custom type.
7138
7139 2008-10-02  Glenn Morris  <rgm@gnu.org>
7140
7141         * mm-util.el (mm-codepage-setup): Tweak codepage error.
7142         Silence compiler warning.
7143
7144 2008-10-01  Magnus Henoch  <mange@freemail.hu>
7145
7146         * tls.el (open-tls-stream): Show the actual command being
7147         executed, instead of the format string.
7148
7149 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7150
7151         * lpath.el: Fbind codepage-setup for Emacs 23.
7152
7153 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
7154
7155         * mml.el (mml-menu): Don't assume mml2015 is bound.
7156
7157 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7158
7159         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
7160         exists.
7161
7162 2008-09-27  Glenn Morris  <rgm@gnu.org>
7163
7164         * gnus-util.el (mail-header-remove-comments): Autoload it.
7165
7166 2008-09-27  Andreas Schwab  <schwab@suse.de>
7167
7168         * gnus-util.el (gnus-split-references): Strip comments.
7169         (gnus-parent-id): Likewise.
7170
7171 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
7172
7173         * message.el (message-confirm-send): Fix version.
7174
7175 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7176
7177         * message.el (message-idna-to-ascii-rhs-1): Use
7178         mail-extract-address-components rather than mail-header-parse-addresses
7179         that is an alias by default to ietf-drums-parse-addresses that does not
7180         support non-ASCII names in headers' contents.
7181
7182 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
7183
7184         * message.el (message-confirm-send): Fix variable documentation to
7185         avoid the "y/n" wording.
7186
7187 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
7188
7189         * message.el (message-set-auto-save-file-name): Save to a different
7190         filename so multiple messages (especially drafts) can be recovered.
7191
7192 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
7193
7194         * message.el (message-confirm-send): Add appropriate version.
7195
7196 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
7197
7198         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
7199         defvar.
7200
7201 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
7202
7203         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
7204         (mm-pkcs7-enveloped-magic): Ditto.
7205
7206 2008-09-17  Simon Josefsson  <simon@josefsson.org>
7207
7208         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
7209         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
7210
7211 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
7212
7213         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
7214         default, it's better.
7215
7216 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
7217
7218         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
7219         summary line gnus-number property and ignore them (with a warning
7220         message).
7221
7222 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7223
7224         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
7225         macro caddr in the interactive form since it won't be expanded.
7226
7227 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7228
7229         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
7230         `charset'; fix name of function called recursively.
7231         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
7232
7233 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7234
7235         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
7236         (gnus-mime-set-charset-parameters): New function.
7237         (gnus-mime-view-part-as-charset): Use it to correctly display part
7238         specifying wrong charset.
7239
7240 2008-09-08  David Engster  <dengste@eml.cc>
7241
7242         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
7243         in completing-read for back end server.
7244
7245 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
7246
7247         * message.el (message-confirm-send): New variable to confirm sending a
7248         message.
7249         (message-send): Use it.
7250
7251 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
7252
7253         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
7254
7255 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7256
7257         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
7258
7259 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
7260
7261         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
7262         prevent tracking too many groups.
7263         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
7264         Use it.
7265
7266 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
7267
7268         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
7269         moving point to the bottom of the window in order to avoid recentering.
7270
7271 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7272
7273         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
7274
7275         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
7276         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
7277         (gnus-article-beginning-of-window): Fix calculation.
7278
7279 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
7280
7281         * gnus-msg.el (gnus-summary-supersede-article)
7282         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
7283         value of gnus-newsgroup-charset to decode non-MIME encoded text in
7284         message header.
7285
7286 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
7287
7288         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
7289         pending output coming after the status change.
7290
7291 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
7292
7293         * message.el:
7294         * gnus-start.el:
7295         * gnus-registry.el: Remove VMS support.
7296
7297 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7298
7299         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
7300         macro.
7301         (rfc2104-hash): Use it.
7302
7303 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
7304
7305         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
7306         (gnus-summary-sort-by-most-recent-date): New commands.
7307         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
7308         and menu entries.
7309
7310 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7311
7312         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
7313         don't redisplay article for raw contents; remove plural articles stuff.
7314
7315         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
7316         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
7317         on gnus-summary-save-article; display results properly.
7318
7319 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7320
7321         * lpath.el: No need to fbind ns-focus-frame.
7322
7323 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7324
7325         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
7326
7327 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7328
7329         * gnus-art.el (gnus-summary-save-in-pipe):
7330         Consider gnus-save-all-headers.
7331
7332 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
7333
7334         * gnus-util.el (ns-focus-frame): Remove declaration.
7335         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
7336         like x.
7337
7338 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
7339
7340         * rfc2104.el (rfc2104-zero): Delete defconst.
7341         (rfc2104-hex-alist): Likewise.
7342         (rfc2104-hex-to-int): Delete func.
7343         (rfc2104-hexstring-to-bitstring): Likewise.
7344         (rfc2104-nybbles): New defconst.
7345         (rfc2104-hash): Rewrite for speed.
7346
7347 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7348
7349         * tls.el (open-tls-stream): Make it work with the 2nd argument
7350         BUFFER that is a string but does not exist as a buffer object, as
7351         mentioned in the doc-string.
7352
7353 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7354
7355         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
7356         SXEmacs.
7357
7358 2008-07-16  Glenn Morris  <rgm@gnu.org>
7359
7360         * gnus-util.el (ns-focus-frame): Declare for compiler.
7361
7362 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
7363
7364         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
7365         set as a group parameter.
7366         (gnus-summary-save-in-pipe): Work when it is called independently.
7367         (gnus-summary-pipe-to-muttprint): Don't modify
7368         gnus-summary-pipe-output-default-command.
7369
7370 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7371
7372         * message.el (message-send-mail-with-sendmail):
7373         Display the error message.
7374
7375 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
7376
7377         * gnus-art.el (gnus-default-article-saver):
7378         Add gnus-summary-save-in-pipe to choices.
7379         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
7380         gnus-summary-pipe-output-default-command as the default command.
7381         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
7382         instead of gnus-last-shell-command.
7383
7384         * gnus-sum.el (gnus-summary-pipe-output-default-command):
7385         New user option.
7386         (gnus-summary-muttprint-program): Mention the value will be changed.
7387         (gnus-summary-save-article): Force showing of all headers.
7388         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
7389
7390 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
7391
7392         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
7393
7394 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
7395
7396         * nnimap.el (nnimap-id):
7397         * sieve-manage.el (sieve-manage-open): Doc fixes.
7398
7399 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
7400
7401         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
7402         if available.
7403
7404 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7405
7406         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
7407
7408         * nnkiboze.el (nnkiboze-generate-group):
7409         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
7410
7411         * nnmairix.el: Require CL.
7412
7413 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7414
7415         * dgnushack.el: Autoload get-display-table and put-display-table for
7416         XEmacs 21.5.
7417
7418         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
7419         21.4 and SXEmacs.
7420
7421 2008-06-15  David Engster  <dengste@eml.cc>
7422
7423         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
7424
7425 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
7426
7427         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
7428         New macros that expand to an `aset'/`aref' call under Emacs, and to a
7429         runtime choice under XEmacs.
7430
7431         * gnus-sum.el (gnus-summary-set-display-table):
7432         Use `gnus-put-display-table', `gnus-get-display-table',
7433         `gnus-set-display-table' for the display table, instead of `aset'.
7434
7435         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
7436         Use `gnus-put-display-table', `gnus-get-display-table',
7437         `gnus-set-display-table' for the display table.
7438
7439 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
7440
7441         * nnmairix.el: Add autoloads.
7442
7443 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
7444
7445         * nnmairix.el (nnmairix-delete-recreate-group)
7446         (nnmairix-update-and-clear-marks): Fix error messages.
7447
7448 2008-06-14  David Engster  <dengste@eml.cc>
7449
7450         * nnmairix.el: Upgrade to version 0.6.
7451         (nnmairix-group-toggle-propmarks-this-group)
7452         (nnmairix-group-toggle-readmarks-this-group)
7453         (nnmairix-group-delete-recreate-this-group)
7454         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
7455         (nnmairix-remove-tick-mark-original-article): New commands.
7456         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
7457         (nnmairix-propagate-marks-to-nnmairix-groups)
7458         (nnmairix-only-use-registry, nnmairix-allowfast-default)
7459         (nnmairix-marks-cache, nnmairix-version-output): New variables.
7460         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
7461         functions needed for marks propagation and manipulation of read marks.
7462         (nnmairix-update-groups): New function.
7463         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
7464         (nnmairix-determine-original-group-from-registry)
7465         (nnmairix-determine-original-group-from-path)
7466         (nnmairix-get-group-from-file-path, nnmairix-map-range)
7467         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
7468         New helper functions.
7469         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
7470         keystrokes for new commands.
7471         (nnmairix-delete-and-create-on-change): Doc string cleanup.
7472         (nnmairix-request-group): Check allow-fast group parameter.
7473         (nnmairix-request-create-group): Set allow-fast group parameter if
7474         nnmairix-allowfast-default is set.
7475         (nnmairix-close-group): Propagate marks upon closing if needed.
7476         (nnmairix-group-toggle-threads-this-group): Use new.
7477         nnmairix-group-toggle-parameter helper function.
7478         (nnmairix-search): Better check for empty search result.
7479         (nnmairix-goto-original-article): Use new helper functions for
7480         determining original article.
7481         (nnmairix-show-original-article): Make sure message-id is in brackets.
7482         (nnmairix-call-mairix-binary): Change variable name.
7483         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
7484         helper function.
7485         (nnmairix-widget-toggle-activate): Fix doc string.
7486
7487 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7488
7489         * nnir.el: Require edmacro when compiling with XEmacs.
7490         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
7491         available in Emacs 21.
7492
7493 2008-06-11  Glenn Morris  <rgm@gnu.org>
7494
7495         * gnus-util.el (x-focus-frame):
7496         * gnus.el (image-size):
7497         * mm-decode.el (image-size): Declare.
7498
7499         * gnus-picon.el (declare-function): Add compat definition.
7500         (image-size): Declare.
7501
7502         * gnus-group.el (tool-bar-map):
7503         * gnus-sum.el (tool-bar-map): Define for compiler.
7504
7505         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
7506
7507         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
7508
7509         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
7510         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
7511         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
7512         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
7513         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
7514         * sieve-manage.el, spam-report.el, spam.el:
7515         Remove unnecessary eval-and-compile of autoloads.
7516
7517 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
7518
7519         * auth-source.el: Precise Tramp doc.
7520
7521 2008-06-07  Glenn Morris  <rgm@gnu.org>
7522
7523         * nnmairix.el: Remove unnecessary eval-when-compile.
7524
7525 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7526
7527         * lpath.el: Fbind propertize for XEmacs 21.4.
7528
7529 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
7530
7531         * nnir.el: Move here from ../contrib.
7532
7533 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7534
7535         * gnus-util.el (gnus-read-shell-command): New function.
7536         * mm-decode.el (mm-pipe-part):
7537         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
7538
7539 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7540
7541         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
7542
7543 2008-06-03  Glenn Morris  <rgm@gnu.org>
7544
7545         * pop3.el (nnheader-accept-process-output): Autoload it.
7546
7547 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7548
7549         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
7550         are not 2-digit hexadecimal characters that follow `%'s.
7551
7552 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7553
7554         * message.el (message-bogus-recipient-p): Fix type in doc string.
7555         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
7556         (message-bogus-addresses): Rename from message-bogus-address-regexp.
7557         Improve custom options.
7558         (message-bogus-recipient-p): Adjust accordingly.
7559
7560 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
7561
7562         * parse-time.el (parse-time-months, parse-time-weekdays): Add
7563         long-form month and day names.
7564
7565 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7566
7567         * dgnushack.el: Autoload debug, eudc-expand-inline and
7568         pgg-snarf-keys-region for XEmacs.
7569
7570         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
7571
7572         * nnmairix.el: Require edmacro when compiling with XEmacs.
7573
7574 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
7575
7576         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
7577         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
7578
7579 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
7580
7581         * auth-source.el: Add more docs.
7582
7583         * netrc.el (netrc-machine): Always match if the port is not given.
7584
7585 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7586
7587         * nnheader.el (nnheader-read-timeout): Change the default timeout from
7588         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
7589         retrieval faster in some cases, but might make CPU usage larger.
7590         If this has any bad side effects, we might revert this change.
7591
7592         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
7593         seems to make mail retrieval much, much faster.
7594         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
7595         unconditionally.
7596
7597         * gnus-draft.el (gnus-group-send-queue):
7598         Bind message-send-mail-partially-limit to nil to avoid being prompted.
7599
7600 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
7601
7602         * mml.el (mml-attach-buffer): Prompt for `disposition'.
7603
7604         * message.el (message-bogus-address-regexp): Fix and improve custom
7605         type.
7606         (message-setup-hook): Add message-check-recipients as custom option.
7607
7608 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
7609
7610         * message.el (message-cite-function): Remove bogus autoload which crept
7611         in during merge from v5-10.
7612
7613 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
7614
7615         * nnimap.el (nnimap-open-connection): Fix login/password bug.
7616
7617         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
7618
7619         * auth-source.el: Preliminary Tramp docs.
7620         (auth-sources): Change the default auth-sources to use
7621         EPA .gpg files.
7622
7623 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
7624
7625         * nntp.el: Autoload `auth-source-user-or-password'.
7626         (nntp-send-authinfo): Use it.
7627
7628         * nnimap.el: Autoload `auth-source-user-or-password'.
7629         (nnimap-open-connection): Use it.
7630
7631         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
7632         for the gnus-message function.
7633         (auth-source-user-or-password): Use it.
7634
7635 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7636
7637         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
7638         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
7639         (rfc2104-hash): Use it.
7640
7641 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
7642
7643         * gnus-art.el (gnus-article-toggle-truncate-lines):
7644         Don't use `iff' in docstring.
7645
7646 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
7647
7648         * gnus-registry.el: Adjusted copyright dates and added a keyword.
7649
7650         * gnus-util.el (gnus-extract-address-component-name)
7651         (gnus-extract-address-component-email): Convenience functions around
7652         `gnus-extract-address-components'.
7653
7654         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
7655         Use `gnus-extract-address-component-email' to fix bug of comparing full
7656         sender name to `user-mail-address'.
7657
7658 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
7659
7660         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
7661         catch/throw to optimize.
7662         (gnus-registry-find-keywords): Just use member to find a keyword.
7663
7664 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7665
7666         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
7667         is current before calling gnus-server-prepare.
7668         (gnus-server-setup-buffer, gnus-server-update-server)
7669         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
7670
7671 2008-05-04  Juri Linkov  <juri@jurta.org>
7672
7673         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
7674         (mailcap-file-default-commands): Use mailcap-replace-in-string
7675         instead of replace-regexp-in-string, and mailcap-delete-duplicates
7676         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
7677
7678 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
7679
7680         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
7681
7682 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7683
7684         * gnus.el: Bump version to 0.11.
7685
7686 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7687
7688         * gnus.el: No Gnus v0.10 is released.
7689
7690 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7691
7692         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
7693         hooks.
7694         (gnus-update-read-articles): Speed up non-marks-using users.
7695         (gnus-use-marks): Define gnus-use-marks.
7696         (gnus-propagate-marks): Rename variable to something more sensible.
7697
7698 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
7699
7700         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
7701         (gmm-image-load-path-for-library): Fix typos in docstrings.
7702         (gmm-message): Reflow docstring.
7703
7704 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
7705
7706         * mail-source.el (mail-source-set-1, mail-source-bind):
7707         Move auth-source code out of the macro to clean it up and fix bugs.
7708
7709 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
7710
7711         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
7712         by sender if it's equal to user-mail-address, it's likely to be
7713         useless.
7714
7715         * mail-source.el (mail-source-bind): Don't use user or password if they
7716         are not bound.  Unintern them if they are nil.  Don't use server unless
7717         it's bound, and default it to empty string otherwise.
7718
7719 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
7720
7721         * mail-source.el: Load auth-source.el.
7722         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
7723         get user name or password, if auth-sources is set up.
7724
7725         * gnus-registry.el (gnus-registry-split-strategy): New variable for
7726         strategy of splitting with parent.
7727         (gnus-registry-split-fancy-with-parent)
7728         (gnus-registry-post-process-groups): Use it and fix prior
7729         bug (returning a list as the split result).
7730
7731         * auth-source.el (auth-sources): Remove server parameter.
7732         (auth-source-pick, auth-source-user-or-password)
7733         (auth-source-user-or-password-imap)
7734         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
7735         (auth-source-user-or-password-sftp)
7736         (auth-source-user-or-password-smtp): Remove server parameter.
7737
7738 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
7739
7740         * smime.el (smime-sign-region, smime-encrypt-region)
7741         (smime-decrypt-region):
7742         Remove redundant calls to `generate-new-buffer-name'.
7743
7744 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
7745
7746         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
7747         Don't use QP for message/rfc822.
7748         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
7749
7750 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7751
7752         * sieve-manage.el (sieve-string-bytes): Remove.
7753         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
7754         correct byte-length only if the process's coding-system is the same as
7755         the one used internally by Emacs to represent strings.
7756
7757 2008-04-22  Juri Linkov  <juri@jurta.org>
7758
7759         * mailcap.el (mailcap-file-default-commands): New function.
7760
7761 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
7762
7763         * message.el (message-signature-separator, message-cite-function):
7764         Change custom version.
7765
7766 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
7767
7768         * tls.el (tls-program): Add -ign_eof argument to call the openssl
7769         commands.
7770         (tls-checktrust): Ditto.
7771
7772 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
7773
7774         * mm-decode.el (mm-display-external): Make temp file read-only.
7775
7776 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
7777
7778         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
7779         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
7780         `C-c C-f d'.
7781
7782 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
7783
7784         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
7785
7786 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
7787
7788         * gnus.el: Bump version to 0.9.
7789
7790 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
7791
7792         * gnus.el: No Gnus v0.8 is released.
7793
7794 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7795
7796         * mail-source.el (mail-source-value):
7797         Prefer fboundp to functionp so it works with macros as well.
7798
7799 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7800
7801         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
7802         Fix last change in case the element is not even a symbol.
7803
7804 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7805
7806         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
7807         Prefer fboundp to functionp so it works with macros as well.
7808
7809 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
7810
7811         * auth-source.el: Add docs.
7812         (auth-sources): Modify format to support server.
7813         (auth-source-pick, auth-source-user-or-password)
7814         (auth-source-user-or-password-imap)
7815         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
7816         (auth-source-user-or-password-sftp)
7817         (auth-source-user-or-password-smtp): Add server parameter.
7818
7819 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
7820
7821         * gnus-registry.el: Initialize the registry when gnus-registry-install
7822         is t.
7823
7824 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
7825
7826         * compface.el (uncompface): Make buffer unibyte.
7827
7828 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7829
7830         * mail-source.el (mail-source-value):
7831         Prefer fboundp to functionp so it works with macros as well.
7832
7833 2008-04-05  Glenn Morris  <rgm@gnu.org>
7834
7835         * gnus-ems.el (mm-disable-multibyte): Autoload it.
7836
7837 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7838
7839         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
7840         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
7841
7842         * nnheader.el (nnheader-init-server-buffer): Change buffer's
7843         multibyteness after rather than before erasing it.
7844
7845         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
7846         mm-with-multibyte.
7847         (gnus-request-article-this-buffer): Make sure the proper decoding is
7848         used if gnus-original-article-buffer happens to be unibyte.
7849
7850         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
7851         default-enable-multibyte-characters.
7852
7853         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
7854         default-enable-multibyte-characters.
7855
7856         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
7857
7858         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
7859
7860 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7861
7862         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
7863         Fix last change in case the element is not even a symbol.
7864
7865 2008-04-02  Simon Josefsson  <simon@josefsson.org>
7866
7867         * imap.el (imap-enable-exchange-bug-workaround): New variable.
7868         (imap-message-copyuid-1): Use it.
7869         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
7870         J. Williams in
7871         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
7872
7873         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
7874         imap-enable-exchange-bug-workaround.
7875         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
7876
7877 2008-04-01  Simon Josefsson  <simon@josefsson.org>
7878
7879         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
7880         a 100 byte status-checks into a 2-3MB transfer for each group.
7881         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
7882         to enable bug workaround or not.
7883         (nnimap-find-minmax-uid): Only enable workaround conditionally.
7884
7885 2008-03-31  Glenn Morris  <rgm@gnu.org>
7886
7887         * message.el (mml2015-use): Declare for compiler.
7888         (message-info): Require mml2015 when appropriate.
7889
7890 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7891
7892         * Makefile.in (EMACS_COMP): Quote directory name that might contain
7893         whitespace.
7894
7895 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
7896
7897         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
7898         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
7899         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
7900         (nntp-service-to-port): New function.
7901         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
7902         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
7903         (nntp-open-netcat-stream): New function.
7904         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
7905
7906 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
7907
7908         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
7909
7910 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7911
7912         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
7913
7914 2008-03-28  Magnus Henoch  <mange@freemail.hu>
7915
7916         * dns.el (dns-write): Use set-buffer-multibyte.
7917
7918 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
7919
7920         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
7921
7922 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
7923
7924         * message.el (message-signature-separator): Change default.
7925         Improve custom type.
7926         (message-cite-function): Change default to
7927         message-cite-original-without-signature.
7928
7929         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
7930         toggle.
7931
7932         * message.el (message-check-news-body-syntax): Fix signature check.
7933         (message-setup-1): Mark buffer as unmodified _after_ running
7934         message-setup-hook and handling message-alternative-emails.
7935         (message-shorten-references): Be more strict when building list of
7936         valid references to comply with GNKSA.
7937
7938         * gnus-group.el (gnus-read-ephemeral-bug-group)
7939         (gnus-read-ephemeral-debian-bug-group)
7940         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
7941
7942         * message.el (message-info): Don't use booleanp which isn't supported
7943         in Emacs 21 and XEmacs.
7944
7945 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
7946
7947         * gnus-group.el (gnus-gmane-group-download-format): Rename from
7948         gnus-group-gmane-group-download-format.
7949         (gnus-group-read-ephemeral-gmane-group): Rename from
7950         gnus-group-read-ephemeral-gmane-group.
7951         (gnus-read-ephemeral-gmane-group-url): Rename from
7952         gnus-group-read-ephemeral-gmane-group-url.
7953         (gnus-bug-group-download-format-alist): New variable.
7954         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
7955         (gnus-read-ephemeral-emacs-bug-group): New commands.
7956
7957 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
7958
7959         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
7960         (gnus-visible-headers): Improve custom type.
7961
7962 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
7963
7964         * mml.el (mml-menu): Add workarounds for XEmacs.
7965
7966         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
7967         X-Boundary header.
7968
7969         * message.el (message-simplify-recipients): Fix previous commit.
7970
7971 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7972
7973         * mm-util.el (mm-set-buffer-multibyte): New function.
7974         * mm-decode.el (mm-copy-to-buffer): Use it.
7975
7976         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
7977         Prefer fboundp to functionp so it works with macros as well.
7978
7979 2008-03-19  Glenn Morris  <rgm@gnu.org>
7980
7981         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
7982         Accidentally removed in the sync process with Emacs.
7983
7984 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
7985
7986         * message.el (message-alter-recipients-discard-bogus-full-name):
7987         New function.
7988         (message-alter-recipients-function): New variable.
7989         (message-get-reply-headers): Use it.
7990         (message-replace-header): New helper function.
7991         (message-recipients-without-full-name): New variable.
7992         (message-simplify-recipients): New command.
7993
7994         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
7995
7996         * message.el (message-info): Handle EasyPG manual.
7997
7998         * mml.el (mml-menu): Add entry for EasyPG.
7999
8000 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
8001
8002         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
8003         parameter.
8004
8005         * message.el (message-disassociate-draft): Specify drafts group name
8006         fully.
8007
8008 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
8009
8010         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
8011         Eliminate unnecessary duplicates from the match list.
8012
8013 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8014
8015         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
8016
8017         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
8018
8019         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
8020         args of `how-many' of which the XEmacs version doesn't take; declare
8021         Info-index-next as function.
8022
8023 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
8024
8025         * gnus-score.el (gnus-score-headers): Fix handling of
8026         gnus-inhibit-slow-scoring.
8027
8028         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
8029         string.
8030         (gnus-button-url-regexp): Improve handling of parenthesis.
8031         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
8032         (gnus-button-handle-info-keystrokes): Handle index entries.
8033
8034 2008-03-15  Glenn Morris  <rgm@gnu.org>
8035
8036         * parse-time.el (parse-time-string): Simplify.
8037
8038 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8039
8040         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
8041         Incoming* files.
8042
8043 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
8044
8045         * auth-source.el (auth-sources): Rename from auth-source-choices.
8046         (auth-source-pick): Use it.
8047
8048 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8049
8050         * binhex.el (binhex-decode-region-internal):
8051         * uudecode.el (uudecode-decode-region-internal):
8052         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
8053         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
8054         setting default-enable-multibyte-characters.
8055
8056 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
8057
8058         * auth-source.el (auth-source-protocols)
8059         (auth-source-protocols-customize, auth-source-choices): Add and
8060         modified variable customizations and defaults.
8061         (auth-source-pick, auth-source-user-or-password)
8062         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
8063         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
8064         (auth-source-user-or-password-sftp)
8065         (auth-source-user-or-password-smtp): Use new variables and provide an
8066         interface to netrc.el.
8067
8068 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8069
8070         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
8071         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
8072         Make sure the nntp port to specify is a string.
8073
8074 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8075
8076         * nntp.el: Use with-current-buffer.
8077         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
8078         dubious mm-with-unibyte-current-buffer.
8079         (nntp-with-open-group-function): New function extracted from
8080         nntp-with-open-group macro.
8081         (nntp-with-open-group): Use the function, so it's easier to debug.
8082         Add indentation and debugging info.
8083         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
8084         Recommend the use of the netcat alternatives.
8085
8086         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
8087         Avoid mm-string-as-multibyte as well.
8088
8089         * nnweb.el (nnweb-insert-html):
8090         Remove use of nnheader-string-as-multibyte.
8091
8092         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
8093         (nnheader-string-as-multibyte): Remove.
8094
8095         * mm-view.el: Use inhibit-read-only.
8096         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
8097         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
8098         or unibyte-string.
8099
8100         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
8101         (mm-uu-yenc-extract): Use with-current-buffer.
8102
8103         * gnus-soup.el (gnus-soup-send-packet): Don't use
8104         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
8105
8106         * nnmh.el: Use with-current-buffer.
8107         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
8108         mm-string-as-multibyte on the output of mm-encode-coding-string.
8109
8110         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
8111         (nnimap-request-move-article): Use with-current-buffer.
8112
8113         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
8114         inserting the handle-buffer's text, so the implicit multibyte->unibyte
8115         conversion uses string-make-unibyte rather than string-as-unibyte.
8116
8117         * gnus-msg.el: Use with-current-buffer.
8118
8119         * message.el (message-ignored-resent-headers): Add "Delivered-To".
8120
8121 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
8122
8123         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
8124         string for caching if it is 'PIN.
8125
8126 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8127
8128         * lpath.el: Consider the case without Emacs/W3.
8129
8130 2008-03-08  Glenn Morris  <rgm@gnu.org>
8131
8132         * time-date.el (date-to-time, time-subtract, time-add)
8133         (safe-date-to-time): Doc fixes.
8134
8135 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
8136
8137         * mail-source.el (mail-source-delete-old-incoming-confirm):
8138         Change default to nil.
8139         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
8140
8141 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8142
8143         * lpath.el: Rearrange.
8144
8145         * gnus-art.el (gnus-narrow-to-page): Position point properly.
8146         (gnus-article-goto-prev-page): Work for articles having ^L's.
8147
8148         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
8149
8150         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
8151
8152 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
8153
8154         * gnus-bookmark.el: Adjust for renames in bookmark.el.
8155         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
8156         (gnus-bookmark-jump): Adjust some variable names.
8157
8158 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
8159
8160         * auth-source.el: New package.
8161         (auth-source-choices): Add customization entry point variable.
8162
8163         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
8164         bug.
8165
8166 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
8167
8168         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
8169         (gnus-registry-initialize, gnus-registry-install-p): Use it.
8170         (gnus-registry-install-shortcuts): Rename from
8171         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
8172         the `gnus-registry-mark-map' keymap dynamically from
8173         `gnus-registry-marks'.  The generated functions update the summary line
8174         when a registry mark is added or deleted, and will call
8175         `gnus-registry-install-p' (see the comments in the code).
8176         (gnus-registry-user-format-function-M): Use concat intelligently.
8177
8178         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
8179         the registry mark functions.
8180
8181 2008-03-05  Glenn Morris  <rgm@gnu.org>
8182
8183         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
8184         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
8185         gnus-art.
8186         (top-level): No need to load own source when compiling.
8187
8188 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
8189
8190         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
8191         Suggested by <chris.anderton@zetnet.co.uk>.
8192
8193 2008-03-04  Glenn Morris  <rgm@gnu.org>
8194
8195         * gnus-sum.el (top-level): No need to require gnus when compiling,
8196         since unconditionally required near start of file.
8197         (gnus-summary-display-while-building): Move definition before use.
8198
8199 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
8200
8201         * gnus-registry.el (gnus-registry-user-format-function-M):
8202         Add formatting function.
8203
8204 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
8205
8206         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
8207         with plists.
8208         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
8209         Use new format.
8210
8211 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8212
8213         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
8214         `where-is-internal' that returns a range of key sequences.
8215
8216 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8217
8218         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
8219
8220         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
8221         (gnus-summary-jump-to-group): Consider windows on other displayed
8222         frames as well.  Similar changes might be needed elsewhere, but that's
8223         the one I've bumped into during my use.
8224
8225         * nndoc.el (nndoc-oe-dbx-type-p):
8226         * gnus-msg.el (gnus-debug):
8227         * gnus-group.el (gnus-update-group-mark-positions):
8228         Use mm-string-to-multibyte.
8229
8230 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8231
8232         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
8233         doesn't handle NotDashEscaped.
8234
8235         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
8236         (mml-dnd-attach-options): Fix typo in custom choice.
8237
8238         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
8239         Change nndoc-article-type to mbox.
8240         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
8241
8242         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
8243         to nil, instead of html2text.
8244
8245         * imap.el (imap-debug): Add `imap-ping-server'.
8246
8247         * gnus-bookmark.el: Add FIXMEs.
8248
8249         * message.el (message-form-letter-separator)
8250         (message-send-form-letter-delay): New variables.
8251         (message-send-form-letter): Use them.  New command to send form
8252         letters.  Requested by Uwe Siart.
8253         (message-send-mail-function): Doc fix.  Add "Other" custom option.
8254
8255 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
8256
8257         * Update copyright years.
8258
8259 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
8260
8261         Sync from EMACS_22_BASE.
8262
8263         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
8264
8265 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
8266
8267         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
8268         empty author.
8269
8270 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
8271
8272         * gnus-registry.el (gnus-registry-marks): Add variable for
8273         customization of marks and their appearance.
8274         (gnus-registry-read-mark): Use it.
8275         (gnus-registry-do-marks): Add utility function to loop through
8276         `gnus-registry-marks'.
8277         (gnus-registry-install-shortcuts-and-menus): Add function to install
8278         shortcuts and menus.
8279         (gnus-registry-initialize): Use it.
8280         (gnus-registry-default-mark): Clarify documentation.
8281
8282 2008-02-29  Glenn Morris  <rgm@gnu.org>
8283
8284         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
8285         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
8286         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
8287         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
8288         Change defcustom :version from 23.0 to 23.1.
8289
8290 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
8291
8292         * gnus-registry.el (gnus-registry-follow-group-p)
8293         (gnus-registry-post-process-groups): Add functions to aid registry
8294         splitting and improve logging.  Clarify behavior in function
8295         documentation.
8296         (gnus-registry-split-fancy-with-parent): Use them.
8297
8298 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8299
8300         * gnus-art.el: Use with-current-buffer.
8301
8302 2008-02-27  David Engster  <dengste@eml.cc>
8303
8304         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
8305         Express real group name in the response.
8306
8307 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
8308
8309         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
8310         (nnmairix-last-server, nnmairix-current-server): Defvar them.
8311         (nnmairix-goto-original-article): Defvar gnus-registry-install and
8312         autoload gnus-registry-fetch-group when compiling.
8313         (nnmairix-request-group-with-article-number-correction):
8314         Remove unreferenced argument passed to nnmairix-call-backend.
8315
8316 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
8317
8318         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
8319         (mm-uu-extract): Improve face for low color ttys.
8320         Reported by Sascha Wilde.
8321
8322 2008-02-27  Glenn Morris  <rgm@gnu.org>
8323
8324         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
8325         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
8326         variables to defconsts.  Convert comments to doc-strings.
8327         (nnmairix-last-server, nnmairix-current-server): Convert from free
8328         variables to defvars.  Convert comments to doc-strings.
8329         (gnus-registry-fetch-group): Autoload.
8330         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
8331         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
8332         (nnmairix-widget-build-editable-fields): Use car cddr rather than
8333         caddr.
8334         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
8335         nnmairix-request-group-with-article-number-correction call.
8336         (nnmairix-fast, nnmairix-group): New, less general names, for free
8337         variables passed from nnmairix-request-group to
8338         nnmairix-request-group-with-article-number-correction.  Declare.
8339         (nnmairix-request-group-with-article-number-correction):
8340         Use nnmairix-fast, nnmairix-group rather than fast, group.
8341
8342 2008-02-26  David Engster  <dengste@eml.cc>
8343
8344         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
8345         version 0.5.
8346
8347 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
8348
8349         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
8350         instead of making an extra function call.  Don't add the current group
8351         to articles only when they have the group.  Use
8352         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
8353         Reported by David <de_bb@arcor.de>.
8354
8355 2008-02-24  Miles Bader  <miles@gnu.org>
8356
8357         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
8358         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
8359         (mm-find-mime-charset-region):
8360         * mm-bodies.el (mm-encode-body):
8361         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
8362
8363 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8364
8365         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
8366         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
8367
8368 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
8369
8370         * mail-source.el (mail-source-delete-incoming): Change default.
8371         Supplement doc string.
8372
8373         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
8374
8375 2008-02-14  Glenn Morris  <rgm@gnu.org>
8376
8377         * time-date.el (format-seconds): New function.
8378
8379 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
8380
8381         * nnmail.el (nnmail-message-id-cache-file): Derive from
8382         `gnus-home-directory'.
8383
8384 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
8385
8386         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
8387         Document negative prefix.
8388
8389         * gnus-group.el (gnus-group-read-group): Document negative prefix.
8390
8391 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8392
8393         * message.el (message-unsent-separator): Add the Exim bounce
8394         separator.
8395
8396 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
8397
8398         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
8399         list.
8400         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
8401         recipient/signer list.
8402
8403 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8404
8405         * Makefile.in (datarootdir): Define.
8406         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
8407         name that might contain whitespace.
8408
8409 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
8410
8411         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
8412         fbound (Emacs 23 unicode), signal an error.
8413
8414 2008-02-08  Glenn Morris  <rgm@gnu.org>
8415
8416         * gnus-art.el (pgg-display-output-buffer): Declare as function.
8417
8418 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
8419
8420         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
8421         ports to the calls to `netrc-machine-user-or-password' in addition to
8422         "imap" and "imaps".
8423
8424 2008-02-01  Zhang Wei  <id.brep@gmail.com>
8425
8426         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
8427
8428         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
8429
8430 2008-02-01  Kenichi Handa  <handa@m17n.org>
8431
8432         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
8433         rfc2104-hexstring-to-bitstring and changed to return a byte list.
8434         (rfc2104-hash): Convert the result of concat to unibyte string.
8435
8436 2008-02-01  Dave Love  <fx@gnu.org>
8437
8438         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
8439         coding-system-for-read.
8440         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
8441
8442 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
8443
8444         * gnus.el (gnus-group-startup-message): Add `find-image' call before
8445         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
8446         <hanche@math.ntnu.no>.
8447
8448 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8449
8450         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
8451
8452         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
8453
8454 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
8455
8456         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
8457         * message.el (message-beginning-of-line): Use featurep instead of bound
8458         tests in order to resolve conditionals at compile time.
8459
8460 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
8461
8462         * mail-source.el (mail-sources): Add `group' choice.
8463
8464         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
8465         parameter `in-group' to control into which group the articles go.
8466         Add treatment of `group' mail-source.
8467
8468 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8469
8470         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
8471
8472         * mm-decode.el (mm-dissect-buffer): Decode description.
8473
8474         * mml.el (mml-to-mime): Encode message header first.
8475
8476 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8477
8478         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
8479         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
8480
8481         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
8482         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
8483
8484 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
8485
8486         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
8487
8488 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8489
8490         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
8491         prefix keys.
8492         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
8493         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
8494         gnus-xmas.el.
8495
8496         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
8497         (gnus-xmas-article-describe-bindings): New function.
8498         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
8499         gnus-xmas-article-describe-bindings.
8500
8501         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
8502
8503 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
8504
8505         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
8506         Add new variables for article mark management.
8507         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
8508         list of extra data entries which, when present, will indicate that the
8509         article ID should not be trimmed from the registry.
8510         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
8511         functions.
8512         (gnus-registry-read-mark): New function to read a mark name from the
8513         user.
8514         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
8515         (gnus-registry-set-article-mark-internal): New functions to add and
8516         remove marks.
8517         (gnus-registry-get-article-marks): New function to show the marks for
8518         an article, or retrieve them for further use.
8519
8520 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8521
8522         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
8523         keys when no argument is given.
8524
8525 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
8526
8527         * imap.el (imap-ping-server): New variable.
8528         (imap-opened): On add extra ping if imap-ping-server is non-nil.
8529         (imap-ping-server): Minor doc string fixes.
8530
8531 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
8532
8533         * imap.el (imap-ping-server): New function.
8534         (imap-opened): Call imap-ping-server.
8535
8536 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
8537
8538         * gnus-sum.el (gnus-article-sort-by-random)
8539         (gnus-thread-sort-by-random): Fix doc strings.
8540         Reported by jidanni@jidanni.org.
8541
8542 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8543
8544         * gnus-art.el (gnus-article-describe-bindings): New function.
8545         (gnus-article-read-summary-keys): Use it.
8546         (gnus-article-mode-map): Bind `C-h b' to it.
8547
8548 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8549
8550         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
8551         XEmacs.
8552         (gnus-article-describe-key, gnus-article-describe-key-briefly):
8553         Protect against non-character events.
8554
8555         * lpath.el: Fbind map-keymap for Emacs 21.
8556
8557 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
8558
8559         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
8560         New command.
8561         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
8562         instead of END.  Change name of the temp file.
8563         (gnus-group-gmane-group-download-format): Add doc string.  Make it
8564         customizable.
8565
8566 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8567
8568         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
8569         bind `S W' to gnus-article-wide-reply-with-original; set default
8570         binding to gnus-article-read-summary-send-keys.
8571         (gnus-article-read-summary-keys): Fix the order of keys; display
8572         continuation keys correctly in the echo area; describe bindings
8573         correctly when keys end with `C-h'.
8574         (gnus-article-read-summary-send-keys): New function.
8575         (gnus-article-describe-key, gnus-article-describe-key-briefly):
8576         Work for gnus-article-read-summary-send-keys; display continuation keys
8577         correctly in the echo area.
8578         (gnus-article-reply-with-original): Ignore prefix argument.
8579         (gnus-article-wide-reply-with-original): New function.
8580
8581         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
8582         Emacs 21.
8583
8584 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8585
8586         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
8587         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
8588
8589 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
8590
8591         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
8592         (gnus-group-read-ephemeral-gmane-group): New command.
8593
8594 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
8595
8596         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
8597
8598 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
8599
8600         * message.el (message-send-mail-function): Increase custom version.
8601
8602         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
8603         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
8604
8605 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
8606
8607         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
8608         for the cases where imap-authenticate is called with a nil buffer
8609         parameter.
8610
8611 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8612
8613         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
8614         html parts correctly; support forwarded messages.
8615         (gnus-article-browse-html-article): Remove work buffers.
8616
8617         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
8618         compiling.
8619         (netrc-bound-and-true-p): New macro.
8620         (netrc-parse): Use it instead of bound-and-true-p that is not available
8621         in XEmacs 21.4.
8622
8623 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
8624
8625         * gnus-registry.el (gnus-registry-mark-article)
8626         (gnus-registry-article-marks): Add functionality to mark articles
8627         through the Gnus registry.
8628
8629         * encrypt.el: Clarify documentation for the new pgg method.
8630         (encrypt-file-alist): Add PGG option.
8631         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
8632         functionality.  Abstract password key and messaging to external
8633         functions.
8634         (encrypt-password-key, encrypt-get-passphrase-if-needed)
8635         (encrypt-message-method-and-cipher): Add new convenience external
8636         functions.
8637         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
8638         (encrypt-pgg-process-buffer): Add PGG functionality glue.
8639
8640         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
8641         (netrc-parse): Use encrypt-file-alist to determine if
8642         encrypt-find-model or encrypt-insert-file-contents should be used.
8643
8644         * encrypt.el: Clarify documentation.  Load password-cache or
8645         password, whichever one is found first, instead of autoloading.
8646
8647 2007-12-19  Glenn Morris  <rgm@gnu.org>
8648
8649         * mml.el (message-options-set, message-narrow-to-head)
8650         (message-in-body-p, message-mail-p, message-encode-message-body):
8651         Autoload.
8652         (message-remove-header, message-narrow-to-headers-or-head)
8653         (message-subscribed-p, message-make-mail-followup-to)
8654         (message-position-on-field, message-news-p)
8655         (message-options-set-recipient, message-generate-headers)
8656         (message-sort-headers): Declare as functions.
8657
8658 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
8659
8660         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
8661         convention in doc string.
8662
8663 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8664
8665         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
8666         title to html parts.
8667         (gnus-article-browse-html-article): Pass message header to it.
8668
8669         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
8670
8671 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
8672
8673         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
8674         or password compatible with XEmacs.
8675
8676 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
8677
8678         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
8679         format document.
8680         (gnus-mime-delete-part): Don't write description line if empty.
8681         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
8682
8683 2007-12-14  Johan Bockgård  <bojohan@gnu.org>
8684
8685         * gnus-sum.el (gnus-summary-mark-unread-as-read)
8686         (gnus-summary-mark-read-and-unread-as-read)
8687         (gnus-summary-mark-current-read-and-unread-as-read)
8688         (gnus-summary-mark-unread-as-ticked): Doc fix.
8689         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
8690
8691 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
8692
8693         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
8694         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
8695
8696 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
8697
8698         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
8699         yes-or-no-p.
8700
8701 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8702
8703         * mm-decode.el (mm-add-meta-html-tag): New function.
8704         (mm-save-part-to-file, mm-pipe-part): Use it.
8705
8706         * gnus-art.el (gnus-article-browse-delete-temp-files):
8707         Use gnus-y-or-n-p instead of y-or-n-p.
8708         (gnus-article-browse-html-parts): Work with message/external-body; use
8709         mm-add-meta-html-tag.
8710
8711 2007-12-11  Glenn Morris  <rgm@gnu.org>
8712
8713         * gnus-cache.el: Require gnus-sum not just when compiling.
8714
8715         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
8716
8717         * gnus-int.el (gnus-server-opened, gnus-status-message):
8718         Move definitions before use.
8719
8720         * mm-decode.el: Require gnus-util.
8721         (mm-remove-part): Only call delete-annotation on XEmacs.
8722
8723         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
8724
8725         * nnmail.el: Require gnus-int.
8726
8727         * spam.el: Move `require's before `eval-when-compile's.
8728
8729         * gnus-ems.el (gnus-alive-p):
8730         * gnus-fun.el (message-goto-eoh):
8731         * gnus-util.el (gnus-group-name-decode):
8732         * mail-source.el (gnus-compress-sequence):
8733         * message.el (Info-goto-node, format-spec):
8734         * mm-bodies.el (message-options-get):
8735         * mm-decode.el (mm-view-pkcs7):
8736         * mm-util.el (gmm-write-region):
8737         * mml-smime.el (mml-compute-boundary)
8738         (gnus-completing-read-with-default):
8739         * mml.el (widget-button-press, gnus-make-hashtable):
8740         * mml1991.el (mm-decode-content-transfer-encoding)
8741         (mm-encode-content-transfer-encoding)
8742         (message-options-get, message-options-set):
8743         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
8744         * nnfolder.el (gnus-request-group):
8745         * nnheader.el (ietf-drums-unfold-fws):
8746         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
8747         * smime.el (gnus-run-mode-hooks):
8748         * spam-stat.el (gnus-message): Autoload.
8749
8750         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
8751         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
8752         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
8753         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
8754         Add declare-function compatibility definition.
8755
8756         * gnus-cache.el (nnvirtual-find-group-art):
8757         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
8758         (gnus-add-image, gnus-add-wash-type):
8759         * gnus-group.el (nnkiboze-score-file):
8760         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
8761         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
8762         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
8763         (message-tokenize-header, gnus-get-buffer-create)
8764         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
8765         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
8766         * gnus.el (gnus-group-decoded-name):
8767         * mail-source.el (imap-capability):
8768         * mm-bodies.el (message-options-set):
8769         * mm-decode.el (gnus-configure-windows):
8770         * mm-extern.el (message-goto-body):
8771         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
8772         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
8773         (epg-sub-key-validity, message-options-set):
8774         * mml.el (widget-event-point, gnus-configure-windows):
8775         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
8776         * mml2015.el (epg-check-configuration, epg-configuration)
8777         (message-options-set):
8778         * nndb.el (nndb-request-article):
8779         * nnfolder.el (gnus-request-create-group):
8780         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
8781         * nnmaildir.el (gnus-group-mark-article-read):
8782         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
8783         * rfc1843.el (message-fetch-field):
8784         * spam.el (gnus-extract-address-components):
8785         Declare as functions.
8786
8787 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8788
8789         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
8790
8791         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
8792
8793         * lpath.el: Fbind run-mode-hooks for Emacs 21;
8794         bind show-trailing-whitespace for XEmacs.
8795
8796 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
8797
8798         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
8799         new no-op macro for backward compatibility.
8800
8801         * imap.el (imap-string-to-integer): New function.
8802
8803 2007-12-09  Glenn Morris  <rgm@gnu.org>
8804
8805         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
8806
8807         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
8808         * message.el, mm-view.el, sieve-manage.el, smime.el:
8809         Add declare-function compatibility definition.
8810
8811         * gnus-art.el (w3-region, w3m-region, Info-menu):
8812         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
8813         * gnus-sum.el (gnus-get-predicate):
8814         * gnus-util.el (mm-append-to-file, w32-focus-frame):
8815         * message.el (mail-abbrev-in-expansion-header-p):
8816         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
8817         (w3m-detect-meta-charset, w3m-region):
8818         * sieve-manage.el (password-read, password-cache-add)
8819         (password-cache-remove):
8820         * smime.el (password-read-and-add): Declare as functions.
8821
8822 2007-12-08  David Kastrup  <dak@gnu.org>
8823
8824         * gnus-sum.el (gnus-summary-simplify-subject-query):
8825         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
8826         `message'.
8827
8828 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8829
8830         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
8831         it to bind idna-program, installation-directory, defined-colors, and
8832         face-attribute for XEmacs of the version that compiles defcustom forms.
8833
8834 2007-12-07  Glenn Morris  <rgm@gnu.org>
8835
8836         * gnus-art.el (article-make-date-line): Revert previous change.
8837
8838 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
8839
8840         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
8841
8842 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
8843
8844         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
8845         Call gnus-add-to-range ranges only once with a prepared article-list.
8846
8847 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
8848
8849         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
8850         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
8851         group names with backslashes.
8852         Reported by Tassilo Horn <tassilo@member.fsf.org>.
8853
8854 2007-12-06  Deepak Goel  <deego3@gmail.com>
8855
8856         * gnus-art.el (article-make-date-line):
8857         * gnus-start.el (gnus-load):
8858         * pop3.el (pop3-read-response): Fix buggy call to `error'.
8859
8860 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8861
8862         * gnus-art.el (gnus-use-idna)
8863         * gnus-start.el (gnus-site-init-file)
8864         * message.el (message-use-idna)
8865         * mm-uu.el (mm-uu-hide-markers)
8866         * smiley.el (smiley-style): Revert changes that suppress warnings.
8867
8868 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8869
8870         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
8871         specify charset to html source.
8872         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
8873
8874 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8875
8876         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
8877         idna-program in order to suppress byte compile warning issued by XEmacs
8878         that came to byte compile the default value section of defcustom forms
8879         recently.
8880
8881         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
8882         value of installation-directory.
8883
8884         * message.el (message-use-idna): Don't directly refer to the value of
8885         idna-program.
8886
8887         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
8888
8889         * smiley.el (smiley-style): Don't directly call face-attribute.
8890
8891 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
8892
8893         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
8894
8895         * gnus-dired.el: Reduce Gnus dependencies.
8896         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
8897         Don't require.  Use autoloads instead.
8898         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
8899         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
8900         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
8901         (gnus-dired-mode): Adjust doc string.
8902         (gnus-dired-mail-mode): New variable.
8903         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
8904         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
8905         (gnus-dired-mail-buffers): New function.  Return mail or message
8906         composition buffers.
8907         (gnus-dired-attach): Use it.
8908         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
8909         NO-DECODE.
8910         (gnus-dired-print): Use `gnus-print-buffer' depending on
8911         `gnus-dired-mail-mode'.
8912
8913 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8914
8915         * rfc2047.el (rfc2047-encoded-word-regexp)
8916         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
8917         explaining what regexp patterns are for.
8918
8919 2007-12-04  Glenn Morris  <rgm@gnu.org>
8920
8921         * password.el: Move to password-cache.el.
8922
8923         * mml1991.el (password-read, password-cache-add, password-cache-remove):
8924         * mml2015.el (password-read, password-cache-add, password-cache-remove):
8925         * mml-smime.el (password-read, password-cache-add)
8926         (password-cache-remove):
8927         No need to autoload, since mml-sec requires password.
8928
8929         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
8930         * message.el (gnus-extract-address-components):
8931         * mml-smime.el (gnus-extract-address-components): Define for compiler.
8932
8933         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
8934         password.
8935
8936 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
8937
8938         * mailcap.el: Reduce dependencies.
8939         (mail-header-parse-content-type): Autoload.
8940         (mailcap-delete-duplicates): New alias.
8941         (mailcap-mime-info): Add optional argument NO-DECODE.
8942         (mailcap-mime-types): Use mailcap-delete-duplicates.
8943
8944         * message.el (message-ignored-supersedes-headers): Add "X-ID".
8945
8946 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
8947
8948         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
8949         (imap-parse-status): Upcase status-att for servers that sends them
8950         lower-case (e.g., MS Exchange 2007).
8951
8952 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8953
8954         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
8955         function.
8956
8957         * gnus-uu.el (gnus-uu-decode-yenc): New command.
8958         (gnus-uu-yenc-article): New function.
8959
8960         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
8961
8962         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
8963
8964 2007-12-02  Glenn Morris  <rgm@gnu.org>
8965
8966         * binhex.el (binhex): New custom group.
8967         (binhex-decoder-program, binhex-decoder-switches)
8968         (binhex-use-external): Move to the binhex custom group.
8969
8970         * uudecode.el (uudecode): New custom group.
8971         (uudecode-decoder-program, uudecode-decoder-switches)
8972         (uudecode-use-external): Move to the uudecode custom group.
8973
8974         * netrc.el (top-level): Don't load `encrypt' features.
8975         (netrc-parse): Don't use encrypt.
8976         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
8977
8978         * encrypt.el: Remove file.
8979
8980 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
8981
8982         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
8983         matches on patches.
8984
8985         * gnus-art.el (gnus-article-browse-html-article):
8986         Mention `mm-text-html-renderer' in the doc string.
8987
8988         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
8989         string.  Add comments.
8990
8991         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
8992         if rhs is ASCII.
8993
8994 2007-12-01  Glenn Morris  <rgm@gnu.org>
8995
8996         * mail-source.el (top-level): Require format-spec before
8997         eval-when-compile.
8998
8999 2007-11-30  Glenn Morris  <rgm@gnu.org>
9000
9001         * encrypt.el: Require password, rather than autoloading password-read.
9002
9003 2007-11-29  Glenn Morris  <rgm@gnu.org>
9004
9005         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
9006         (sasl-make-client, sasl-next-step, sasl-step-data)
9007         (sasl-step-set-data): Declare as functions.
9008
9009 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
9010
9011         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
9012
9013 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
9014
9015         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
9016         certs should be verified and what is to be done in the event of a
9017         verification failure.
9018
9019         * gnus.el (gnus-method-to-server): Add an optional parameter so the
9020         caller can indicate whether the cache should be disregarded for this
9021         call.  This way the result of the call is reproducible at all times and
9022         can be considered a canonical server name for the supplied method.
9023         (gnus-agent-method-p): Canonicalize server names by pushing their
9024         method through `gnus-method-to-server' using the no-cache argument.
9025
9026         * gnus-srvr.el (gnus-server-insert-server-line):
9027         Call `gnus-method-to-server' with `no-cache' argument.
9028
9029         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
9030         gnus-agent-possibly-synchronize-flags as this should be called when the
9031         server is actually being opened.
9032         (gnus-agent-possibly-synchronize-flags)
9033         (gnus-agent-possibly-synchronize-flags-server): Move check for the
9034         flags file of an agentized server to the latter function.
9035
9036         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
9037         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
9038         after a connection has been established successfully.
9039
9040 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9041
9042         * gnus-art.el (article-display-face): Force to display face if called
9043         interactively; check if gnus-article-x-face-too-ugly matches author.
9044         (article-display-x-face): Display face even if From header is missing
9045         as article-display-face does.
9046
9047 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
9048
9049         * hashcash.el (message-narrow-to-headers-or-head)
9050         (message-fetch-field, message-goto-eoh)
9051         (message-narrow-to-headers): Declare as functions.
9052
9053 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
9054
9055         * mail-source.el (mail-sources): Default to fetch from file for
9056         compatibility with default of nnmail-spool-file.
9057
9058 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9059
9060         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
9061         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
9062         to look for encoded word that should be encoded again.
9063         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
9064         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
9065         encoding pattern.
9066         (rfc2047-decode-region): Switch strict regexp and loose one according
9067         to rfc2047-allow-irregular-q-encoded-words.
9068
9069 2007-11-25  Romain Francoise  <romain@orebokech.com>
9070
9071         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
9072
9073 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
9074
9075         * tls.el (tls-program): Provide more custom choices from
9076         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
9077         (tls-process-connection-type, tls-success): Remove "*" in doc string.
9078
9079 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
9080
9081         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
9082         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
9083
9084         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
9085         `nnmail-spool-file'.
9086
9087         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
9088         `nnmail-spool-file'.
9089
9090         * gnus-move.el (gnus-change-server): Ditto.
9091
9092         * gnus-kill.el (gnus-batch-score): Ditto.
9093
9094         * gnus-cache.el (gnus-jog-cache): Ditto.
9095
9096         * gnus-msg.el (gnus-summary-reply):
9097         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
9098
9099 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
9100
9101         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
9102         version.  Minor improvement to doc strings.
9103         (tls-program): Add comment.
9104
9105 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
9106
9107         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
9108         (tls-checktrust): New variable.  Check if GNU TLS complained about a
9109         mismatch between the hostname provided in the certificate and the name
9110         of the host connnecting to.
9111         (open-tls-stream): Use them.  Check certificates against trusted root
9112         certificates.
9113
9114 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
9115
9116         * gnus-cache.el (gnus-cache-generate-nov-databases):
9117         Use nnml-generate-nov-databases-directory instead of
9118         nnml-generate-nov-databases-1.
9119
9120 2007-11-24  Glenn Morris  <rgm@gnu.org>
9121
9122         * message.el (message-tool-bar-retro): Update for rename
9123         mail_send.xpm->mail-send.xpm.
9124
9125 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
9126
9127         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
9128         `smime-ldap-search' for Emacs 22 and up.
9129
9130 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9131
9132         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
9133
9134         * message.el (message-send-mail-function): Fix error convention.
9135         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
9136         (message-widen-reply, message-send-mail, message-talkative-question)
9137         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
9138         (message-clone-locals, message-send-news): Use with-current-buffer.
9139         (message-insert-or-toggle-importance): Remove unused var `valid'.
9140         (message-make-references): Remove unused var `new-references'.
9141         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
9142
9143 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
9144
9145         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
9146         (spam-split-symbolic-return-positive): Reflow docstring.
9147         (spam-backends, spam-summary-exit-behavior)
9148         (spam-mark-ham-unread-before-move-from-spam-group)
9149         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
9150         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
9151         (spam-clear-cache, spam-backend-check, spam-install-backend)
9152         (spam-install-statistical-backend, spam-list-of-processors)
9153         (spam-group-processor-p, spam-split, spam-bogofilter-score)
9154         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
9155         (spam-check-crm114, spam-initialize, spam-unload-hook):
9156         Fix typos in docstrings.
9157
9158 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9159
9160         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
9161         been checked if they have never been read and those group levels are
9162         higher than the one that a user specified.
9163
9164 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9165
9166         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
9167         foreign groups unless a group level is specified by a user.
9168         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
9169
9170 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
9171
9172         * message.el (message-send-mail-function): Require sendmail.
9173
9174 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
9175
9176         * message.el (message-send-mail-function): Check for smtpmail too.
9177
9178         * utf7.el (utf7-encode, utf7-decode): Use coding system
9179         `utf-7'/`utf-7-imap' from utf-7.el' if available.
9180
9181         * message.el (message-send-mail-function): New function.
9182         (message-send-mail-function): Set default using
9183         message-send-mail-function.  Adjust doc string.
9184         (message-send-mail-with-mailclient): New function.
9185
9186 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
9187
9188         * smime.el (from):
9189         * rfc2047.el (message-posting-charset):
9190         * qp.el (mm-use-ultra-safe-encoding):
9191         * pop3.el (parse-time-months):
9192         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
9193         * nnml.el (files):
9194         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
9195         (jka-compr-compression-info-list, ange-ftp-path-format)
9196         (efs-path-regexp):
9197         * nndiary.el (files):
9198         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
9199         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
9200         (epg-digest-algorithm-alist, inhibit-redisplay)
9201         (password-cache-expiry):
9202         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
9203         (pgg-output-buffer, password-cache-expiry):
9204         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
9205         (efs-path-regexp):
9206         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
9207         (inhibit-redisplay):
9208         * mm-uu.el (file-name, start-point, end-point, entry)
9209         (gnus-newsgroup-name, gnus-newsgroup-charset):
9210         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
9211         (latin-unity-ucs-list):
9212         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
9213         (mm-uu-binhex-decode-function):
9214         * message.el (gnus-message-group-art, gnus-list-identifiers)
9215         (rmail-enable-mime-composing, gnus-local-organization)
9216         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
9217         (gnus-read-active-file, facemenu-add-face-function)
9218         (facemenu-remove-face-function, gnus-article-decoded-p)
9219         (tool-bar-mode):
9220         * mail-source.el (display-time-mail-function):
9221         * gnus-util.el (nnmail-pathname-coding-system)
9222         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
9223         (gnus-original-article-buffer, gnus-user-agent)
9224         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
9225         (xemacs-codename, sxemacs-codename, emacs-program-version):
9226         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
9227         * gnus-start.el (gnus-agent-covered-methods)
9228         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
9229         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
9230         (gnus-newsgroup-headers, gnus-group-list-mode)
9231         (gnus-group-mark-positions, gnus-newsgroup-data)
9232         (gnus-newsgroup-unreads, nnoo-state-alist)
9233         (gnus-current-select-method, mail-sources)
9234         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
9235         (nnmail-spool-file, gnus-cache-active-hashtb):
9236         * gnus-mh.el (mh-lib-progs):
9237         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
9238         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
9239         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
9240         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
9241         (gnus-group-buffer):
9242         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
9243         (font-lock-set-defaults):
9244         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
9245         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
9246         (gnus-summary-post-menu, total-parts, type, condition, length):
9247         * gnus-agent.el (gnus-agent-read-agentview):
9248         * flow-fill.el (show-trailing-whitespace):
9249         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
9250         eval-and-compile wrappers for byte compiler pacifiers.
9251
9252         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
9253         (mm-display-inline-fontify): Check for featurep 'xemacs not
9254         extent-list.
9255
9256         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
9257         itimer-list.
9258         (mm-create-image-xemacs): Only do something for XEmacs.
9259         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
9260
9261         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
9262
9263         * gnus-registry.el (gnus-adaptive-word-syntax-table):
9264         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
9265
9266 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
9267
9268         * nnimap.el (nnimap-split-download-body):
9269         * gnus-demon.el (gnus-demon):
9270         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
9271
9272 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9273
9274         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
9275         New macros.
9276         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
9277         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
9278         copy data from unibyte buffer to multibyte current buffer.
9279         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
9280         to copy data from unibyte current buffer to multibyte buffer.
9281         (nntp-make-process-buffer): Make process buffer unibyte.
9282
9283         * pop3.el (pop3-open-server): Fix typo in Lisp code.
9284
9285 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
9286
9287         * pop3.el (pop3-open-server): Accept and process data more robustly at
9288         connexion start to avoid spurious "POP SSL connexion failed" errors.
9289
9290 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9291
9292         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
9293         read group names.
9294
9295 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
9296
9297         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
9298
9299 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9300
9301         * nnmail.el (nnmail-parse-active): Make group names unibyte.
9302         (nnmail-save-active): Use a unibyte buffer when saving active file,
9303         which may contain non-ASCII group names.
9304
9305         * nnml.el (nnml-request-group): Decode group names in messages.
9306
9307 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
9308
9309         * message.el (message-citation-line-function)
9310         (message-insert-formatted-citation-line): Fix spelling of
9311         `message-insert-formated-citation-line'.
9312
9313 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
9314
9315         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
9316
9317 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9318
9319         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
9320         nnmail-pathname-coding-system.
9321
9322         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
9323         that a user enters; decode group names in messages.
9324
9325         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
9326
9327 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
9328
9329         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
9330
9331         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
9332
9333         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
9334         risky local variable.
9335
9336         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
9337
9338 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
9339
9340         * encrypt.el: Improve documentation to fix function name typo.
9341         Reported by Daiki Ueno <ueno@unixuser.org>.
9342
9343 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9344
9345         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
9346         even if the point is not in the last page of an article.
9347         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
9348         back to the previous page.
9349
9350 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
9351
9352         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
9353
9354 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9355
9356         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
9357
9358 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9359
9360         * message.el (message-check-news-body-syntax):
9361         Avoid mm-string-as-multibyte.
9362         (message-hide-headers): Don't assume (point-min)==1.
9363
9364 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9365
9366         * message.el (message-remove-blank-cited-lines): Fix if remove is
9367         given.
9368         (message-bogus-address-regexp): New variable.
9369         (message-bogus-recipient-p): New function.
9370         (message-check-recipients): New command.
9371         (message-syntax-checks): Add `bogus-recipient'.
9372         (message-fix-before-sending): Add `bogus-recipient'.
9373
9374         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
9375         (gnus-treat-body-boundary): Don't test window-system.
9376
9377 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
9378
9379         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
9380
9381 2007-10-28  Miles Bader  <miles@gnu.org>
9382
9383         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
9384         at compile-time too.
9385
9386 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
9387
9388         * gnus-msg.el (gnus-message-setup-hook):
9389         Add `message-remove-blank-cited-lines' to options.
9390
9391 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9392
9393         * message.el (message-remove-blank-cited-lines): New function.
9394         Suggested by Karl Plästerer.
9395
9396 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9397
9398         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
9399         mapc.
9400
9401         * imap.el (imap-open): Replace mapcar called for effect with mapc.
9402         (top-level): Use mapc to set functions to be traced for debugging.
9403
9404         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
9405         called for effect with while loop.
9406
9407         * message.el (message-talkative-question): Replace mapcar called for
9408         effect with mapc.
9409
9410         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
9411         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
9412         called for effect with dolist.
9413
9414         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
9415
9416         * nndiary.el: Use dolist instead of mapcar to add diary headers to
9417         gnus-extra-headers and nnmail-extra-headers.
9418
9419         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
9420         called for effect with dolist.
9421         (top-level): Use mapc to set functions to be traced for debugging.
9422
9423         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
9424         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
9425         dolist.
9426
9427         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
9428         Replace mapcar called for effect with mapc.
9429         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
9430         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
9431         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
9432         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
9433
9434         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
9435         remove-if that's a cl function.
9436
9437         * webmail.el (webmail-debug): Replace mapcar called for effect with
9438         dolist.
9439
9440         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
9441         with mapc.
9442
9443 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9444
9445         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
9446         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
9447         with while loop.
9448
9449         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
9450         functions from article-* functions.
9451         (gnus-multi-decode-header): Replace mapcar called for effect with
9452         dolist.
9453
9454         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
9455         (gnus-bookmark-show-details): Replace mapcar called for effect with
9456         while loop.
9457
9458         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
9459         called for effect with while loop.
9460
9461         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
9462         with dolist.
9463
9464         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
9465         Replace mapcar called for effect with dolist.
9466
9467         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
9468
9469         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
9470         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
9471         Replace mapcar called for effect with dolist.
9472         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
9473         mapc.
9474
9475         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
9476         Replace mapcar called for effect with dolist.
9477         (gnus-topic-list): Replace mapcar called for effect with mapc.
9478
9479         * gnus.el: Use mapc instead of mapcar to add autoloads.
9480
9481 2007-10-23  Richard Stallman  <rms@gnu.org>
9482
9483         * gnus-group.el (gnus-group-highlight): Mark as risky.
9484
9485 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9486
9487         * gnus.el (gnus-server-to-method): Return method found first in
9488         gnus-newsrc-alist.
9489
9490         * gnus-art.el (gnus-article-highlight-signature)
9491         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
9492         button overlay without the front stickiness.
9493
9494 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
9495
9496         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
9497         overview buffer needed a catch to receive its throw.
9498         (gnus-agent-flush-cache): Declare as interactive to make this function
9499         easier to use.
9500
9501 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
9502
9503         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
9504         `next-line'.
9505
9506 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9507
9508         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
9509         exclude address matching message-dont-reply-to-names.
9510
9511 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9512
9513         * gnus-util.el (gnus-string<): New function.
9514
9515         * gnus-sum.el (gnus-article-sort-by-author)
9516         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
9517
9518 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9519
9520         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
9521         the frame-focus tag is set in gnus-buffer-configuration.
9522
9523 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9524
9525         * gnus-art.el (gnus-article-add-button): Make a button overlay without
9526         the front stickiness.
9527
9528 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9529
9530         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
9531         url pattern; remove duplicate one.
9532         (gnus-article-extend-url-button): New function.
9533         (gnus-article-add-buttons): Use it.
9534         (gnus-button-push): Use concatenated url that it makes.
9535
9536 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
9537
9538         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
9539
9540 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9541
9542         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
9543         Don't hardcode point-min==1.
9544
9545 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
9546
9547         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
9548         Fix comment about "iso8859-1".
9549
9550 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
9551
9552         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
9553         ones returned from the verify-function.
9554
9555         * mm-uu.el (mm-uu-pgp-signed-extract-1):
9556         Call mml2015-extract-cleartext-signature if extraction failed.
9557
9558 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
9559
9560         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
9561         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
9562         failed.
9563
9564 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
9565
9566         * Relicense "GPLv2 or later" files to "GPLv3 or later".
9567
9568 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
9569
9570         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
9571         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
9572         recommends to use EasyPG instead of PGG.
9573
9574         * pgg.el: Revert to revision 6.23.2.16.
9575
9576         * pgg-def.el: Revert to revision 6.6.2.14.
9577
9578         * pgg-gpg.el: Revert to revision 6.23.2.34.
9579
9580 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
9581
9582         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
9583         to mark a thread as expirable.  Add variable `hide' to handle hiding of
9584         thread for both the null and zero (kill/expire thread) universal prefix
9585         cases.
9586         (gnus-summary-expire-thread): Add new function to expire a thread,
9587         using gnus-summary-kill-thread.
9588         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
9589         shortcuts for gnus-summary-expire-thread.
9590         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
9591         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
9592
9593 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
9594
9595         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
9596         extras value, so an extras entry can be deleted.
9597         (gnus-registry-delete-extra-entry): Use it.
9598         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
9599         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
9600         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
9601         storage through the gnus-registry, and provide an appropriate API for
9602         it.
9603
9604 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9605
9606         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
9607         Suggested by Leo <sdl.web@gmail.com>.
9608
9609         * gnus.el: Do.
9610
9611 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9612
9613         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
9614         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
9615
9616         * gnus-agent.el (gnus-agent-fetch-headers): Do.
9617
9618         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
9619         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
9620
9621 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9622
9623         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
9624         newline.
9625         (nnmbox-request-accept-article): Don't change article in source buffer;
9626         narrow to header to use message-fetch-field rather than
9627         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
9628         (nnmbox-request-replace-article): Quote lines that'll be misidentified
9629         as delimiters; make sure article ends with newline.
9630         (nnmbox-delete-mail): Correct last position of article to be deleted;
9631         ignore X-Gnus-Newsgroup header in article body.
9632         (nnmbox-save-mail): Quote lines looking like delimiters at the right
9633         positions; make sure article ends with newline.
9634
9635         * message.el (message-display-abbrev): Don't infloop when a user
9636         inserts SPC in the beginning of header.
9637
9638         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
9639         coding-system-for-read and coding-system-for-write for XEmacs having no
9640         file-coding feature.
9641
9642         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
9643
9644 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
9645
9646         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
9647         list of groups not followed by default.  Fix type to be regexp.
9648         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
9649
9650 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
9651
9652         * hmac-def.el (define-hmac-function): Switch from old-style to
9653         new-style backquotes.
9654
9655         * md4.el (md4-make-step): Likewise.
9656
9657 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
9658
9659         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
9660         raw-text coding system when saving .newsrc file, which may contain
9661         non-ASCII group names.
9662
9663 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9664
9665         * gnus-cus.el (gnus-score-extra): New widget.
9666         (gnus-score-extra-convert): New function.
9667         (gnus-score-customize): Use it for Extra.
9668
9669 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
9670
9671         * mml2015.el (mml2015-extract-cleartext-signature): New function.
9672         (mml2015-mailcrypt-clear-verify): Use it.
9673         (mml2015-gpg-clear-verify): Use it.
9674         (mml2015-pgg-clear-verify): Use it.
9675         (mml2015-epg-clear-verify): Replace the current part with the output
9676         from GnuPG; don't extract the plaintext by itself.
9677
9678         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
9679         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
9680         mml2015-clear-verify-function; don't touch the armor headers or
9681         dash-escaped text here.
9682
9683 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9684
9685         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
9686         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
9687         parts, or application/octet-stream as a last resort.
9688         (gnus-mime-view-part-as-type): Don't toggle display.
9689         (gnus-mime-view-part-as-charset): Don't turn off display before
9690         querying charset.
9691
9692         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
9693         stuff to undisplayer function in Emacs.
9694         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
9695
9696         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
9697         text/calendar parts.
9698
9699 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9700
9701         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
9702         decoding text/calendar parts.
9703
9704         * message.el (message-forward-make-body-mime): Always mark body as
9705         having no illegible text; remove signed-or-encrypted argument.
9706         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
9707
9708         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
9709         (mml-generate-mime-1): Don't encode body if it is specified to be in
9710         raw form; don't make buffer be unibyte when inserting multibyte string.
9711
9712 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
9713
9714         * sha1.el: Fix up comment style.
9715         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
9716         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
9717
9718         * hex-util.el: Fix up comment style.
9719         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
9720
9721         * gnus-salt.el: Use with-current-buffer.
9722         (gnus-pick-setup-message): Fix long-standing typo.
9723
9724 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9725
9726         * imap.el (imap-logout-timeout): New variable.
9727         (imap-logout, imap-logout-wait): New functions.
9728         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
9729
9730         * nnimap.el (nnimap-logout-timeout): New server variable.
9731         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
9732         nnimap-logout-timeout.
9733
9734         * gnus-art.el (gnus-article-summary-command-nosave)
9735         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
9736
9737 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9738
9739         * gnus.el (gnus-maximum-newsgroup): New variable.
9740
9741         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
9742         according to gnus-maximum-newsgroup.
9743
9744         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
9745         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
9746         Limit the range of articles according to gnus-maximum-newsgroup.
9747
9748 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
9749
9750         * gnus-art.el (gnus-sticky-article): Fix problems described in
9751         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
9752         Don't perform gnus-configure-windows here; reuse existing sticky
9753         article buffer.
9754
9755         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
9756         it doesn't exist in gnus-article-mode.
9757
9758 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9759
9760         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
9761         (gnus-agent-decoded-group-name): New function.
9762         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
9763         (gnus-agent-expire-group-1): Use it; decode group name in messages.
9764
9765 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
9766
9767         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
9768         Add binding for gnus-sticky-article.
9769         (gnus-summary-exit): Don't kill sticky article buffers.
9770
9771         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
9772         article buffer.
9773         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
9774         (gnus-kill-sticky-article-buffers): New commands.
9775
9776 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9777
9778         * nntp.el (nntp-xref-number-is-evil): New server variable.
9779         (nntp-find-group-and-number): If it is non-nil, don't trust article
9780         numbers in the Xref header.
9781
9782 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9783
9784         * gnus-agent.el (gnus-agent-read-group): New function.
9785         (gnus-agent-flush-group, gnus-agent-expire-group)
9786         (gnus-agent-regenerate-group): Use it.
9787         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
9788         nnmail-pathname-coding-system.
9789
9790 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
9791
9792         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
9793
9794         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
9795         that are unread as unread, and also as selected so that information of
9796         marks having been changed by a user may be updated when exiting group.
9797
9798 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
9799
9800         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
9801
9802 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
9803
9804         * gnus-art.el (gnus-mime-display-single): Pass part number that is
9805         calculated ignoring signature parts to gnus-treat-article.
9806
9807 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9808
9809         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
9810         a point here in order to keep the window start.
9811         (gnus-insert-mime-security-button): Make a button overlay without the
9812         front stickiness.
9813         (gnus-mime-display-security): Goto the end of a button.
9814
9815         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
9816
9817 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9818
9819         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
9820         group-name-at-point.
9821         (gnus-group-completing-read): New function that offers decoded
9822         non-ASCII group names for completion.
9823         (gnus-fetch-group, gnus-group-read-ephemeral-group)
9824         (gnus-group-jump-to-group, gnus-group-make-group-simple)
9825         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
9826         (gnus-group-fetch-control): Use it.
9827         (gnus-fetch-group): Use group-name-at-point for the initial value
9828         rather than the default value; use gnus-alive-p.
9829
9830         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
9831         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
9832         (gnus-summary-post-news): Use gnus-group-completing-read.
9833
9834         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
9835         (gnus-read-move-group-name): Decode group name for completion.
9836
9837 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
9838
9839         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
9840         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
9841         Yamaoka slightly modified the code).
9842
9843 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9844
9845         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
9846         (nnmail-split-incoming): Bind it.
9847
9848         * nnml.el (nnml-group-name-charset): New function.
9849         (nnml-decoded-group-name): Use it; don't decode group name if
9850         nnmail-group-names-not-encoded-p is non-nil.
9851         (nnml-encoded-group-name): New function.
9852         (nnml-group-pathname): Inline nnml-decoded-group-name.
9853         (nnml-request-expire-articles): Decode group name in message.
9854         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
9855         nnmail-pathname-coding-system.
9856         (nnml-save-mail, nnml-active-number): Work with decoded group names and
9857         not decoded ones according to nnmail-group-names-not-encoded-p.
9858         (nnml-generate-active-info): Use nnml-encoded-group-name.
9859
9860 2007-08-08  Glenn Morris  <rgm@gnu.org>
9861
9862         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
9863         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
9864         doc-strings and comments.
9865
9866 2007-07-25  Glenn Morris  <rgm@gnu.org>
9867
9868         * Relicense all FSF files to GPLv3 or later.
9869
9870 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9871
9872         * gnus-sum.el (gnus-summary-move-article):
9873         Make gnus-summary-respool-article work.
9874
9875 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
9876
9877         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
9878         string.
9879
9880 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
9881
9882         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
9883         that should be ignored when comparing distant RSS articles with local
9884         ones.
9885         (nnrss-make-hash-index): New function.  Create a hash index according
9886         to the ignored fields.
9887         (nnrss-check-group): Use it.
9888
9889 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9890
9891         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
9892
9893         * gnus-art.el (article-decode-group-name): Decode Xref header too.
9894
9895         * gnus-group.el (gnus-group-make-group): Encode group name here unless
9896         the new optional argument ENCODED is non-nil.
9897         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
9898         coding system for encoding group name.
9899         (gnus-group-make-rss-group): Pass un-encoded group name to
9900         gnus-group-make-group.
9901         (gnus-group-set-info): Tell gnus-group-make-group that group name is
9902         encoded.
9903
9904         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
9905         Encode group name to which articles are moved or copied.
9906         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
9907         coding system for encoding Newsgroup, Followup-To and Xref headers.
9908
9909         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
9910         marks; use nnheader-file-coding-system to write a file.
9911         (nnagent-retrieve-headers): Bind file-name-coding-system to
9912         nnmail-pathname-coding-system.
9913
9914         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
9915
9916         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
9917         (nnml-request-article, nnml-request-create-group)
9918         (nnml-request-rename-group, nnml-find-id)
9919         (nnml-possibly-change-directory, nnml-possibly-create-directory)
9920         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
9921         (nnml-save-marks): Use nnml-group-pathname instead of
9922         nnmail-group-pathname.
9923
9924         (nnml-request-create-group, nnml-request-expire-articles)
9925         (nnml-request-move-article, nnml-request-delete-group)
9926         (nnml-deletable-article-p, nnml-possibly-create-directory)
9927         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
9928         (nnml-open-marks): Bind file-name-coding-system to
9929         nnmail-pathname-coding-system.
9930
9931         (nnml-request-article): Pass server argument to nnml-find-group-number.
9932         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
9933         Pass server argument to nnml-possibly-create-directory.
9934         (nnml-request-accept-article): Pass server argument to
9935         nnml-active-number and nnml-save-mail.
9936         (nnml-find-group-number): Pass server argument to nnml-find-id.
9937         (nnml-request-update-info): Pass server argument to
9938         nnml-marks-changed-p.
9939
9940         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
9941         (nnml-save-mail, nnml-active-number): Add server argument.
9942
9943         (nnml-request-delete-group): Warn if group is missing.
9944         (nnml-get-nov-buffer): Decode group name.
9945         (nnml-generate-active-info): Encode group name.
9946         (nnml-open-marks): Decode group name in messages.
9947
9948 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9949
9950         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
9951         if it is not specified.
9952         (gnus-article-pipe-part, gnus-article-save-part)
9953         (gnus-article-interactively-view-part, gnus-article-copy-part)
9954         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
9955         (gnus-article-inline-part, gnus-article-save-part-and-strip)
9956         (gnus-article-replace-part, gnus-article-delete-part)
9957         (gnus-article-view-part-as-type): Pass raw prefix argument to
9958         gnus-article-part-wrapper.
9959
9960 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9961
9962         * gnus-agent.el (gnus-agent-save-active):
9963         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
9964
9965         * gnus-cache.el (gnus-cache-save-buffers)
9966         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
9967         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
9968         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
9969         (gnus-cache-braid-nov, gnus-cache-braid-heads)
9970         (gnus-cache-generate-active, gnus-cache-rename-group)
9971         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
9972         (gnus-cache-update-overview-total-fetched-for):
9973         Bind file-name-coding-system to nnmail-pathname-coding-system.
9974         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
9975         New variables.
9976         (gnus-cache-decoded-group-name): New function.
9977         (gnus-cache-file-name): Use it.
9978         (gnus-cache-generate-active): Use non-decoded group name for active.
9979
9980         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
9981         right place.
9982         (gnus-write-active-file): Don't break non-ASCII group names.
9983
9984         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
9985         nnmail-pathname-coding-system.
9986
9987         * lpath.el: Bind default-file-name-coding-system,
9988         file-name-coding-system and language-info-alist for XEmacs.
9989
9990         * gnus-uu.el (gnus-uu-decode-save): Typo.
9991
9992 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9993
9994         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
9995
9996 2007-07-14  David Kastrup  <dak@gnu.org>
9997
9998         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
9999         finishing actions if we did not edit the article.
10000
10001 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10002
10003         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
10004         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
10005         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
10006         (gnus-agent-flush-group, gnus-agent-flush-cache)
10007         (gnus-agent-fetch-headers, gnus-agent-load-alist)
10008         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
10009         (gnus-agent-retrieve-headers, gnus-agent-request-article)
10010         (gnus-agent-regenerate-group)
10011         (gnus-agent-update-files-total-fetched-for)
10012         (gnus-agent-update-view-total-fetched-for):
10013         Bind file-name-coding-system to nnmail-pathname-coding-system.
10014         (gnus-agent-group-pathname): Don't encode file names by
10015         nnmail-pathname-coding-system.
10016         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
10017         coding-system-for-write instead of buffer-file-coding-system to
10018         gnus-agent-file-coding-system.
10019
10020         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
10021         Decode group name.
10022
10023         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
10024
10025         * gnus-start.el (gnus-update-active-hashtb-from-killed)
10026         (gnus-read-newsrc-el-file): Make group names unibyte.
10027
10028         * nnmail.el (nnmail-group-pathname): Don't encode file names by
10029         nnmail-pathname-coding-system.
10030
10031         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
10032         (nnrss-request-delete-group): Bind file-name-coding-system to
10033         nnmail-pathname-coding-system.
10034         (nnrss-read-server-data, nnrss-read-group-data):
10035         Bind file-name-coding-system correctly.
10036         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
10037
10038         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
10039         (nntp-server-to-method-cache): New variable.
10040         (nntp-group-pathname): New function that decodes non-ASCII group names.
10041         (nntp-possibly-create-directory, nntp-marks-changed-p)
10042         (nntp-save-marks, nntp-open-marks): Use it.
10043         (nntp-possibly-create-directory, nntp-open-marks):
10044         Bind file-name-coding-system to nnmail-pathname-coding-system.
10045         (nntp-open-marks): Decode group names when bootstrapping marks.
10046
10047         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
10048         Newsgroups and Folowup-To headers.
10049
10050 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10051
10052         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
10053         (gnus-server-closed-face, gnus-server-denied-face)
10054         (gnus-server-offline-face): Remove variable.
10055         (gnus-server-font-lock-keywords): Use faces that are not aliases.
10056
10057         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
10058         of modifying message-stack directly for XEmacs.
10059
10060         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
10061         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
10062         if the coding-system argument is nil for XEmacs.
10063
10064         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
10065         mm-charset-override-alist.
10066
10067         * rfc2047.el: Don't require base64; require rfc2045 for the function
10068         rfc2045-encode-string.
10069         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
10070         to quote the parameter value.
10071
10072 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10073
10074         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
10075         form in gnus-group-name-charset-method-alist.
10076
10077         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
10078         overrides the default layout edit-form.
10079
10080         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
10081
10082         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
10083
10084 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10085
10086         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
10087         as unfetched articles.
10088
10089 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
10090
10091         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
10092
10093 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10094
10095         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
10096         original back end that keeps marks in the local system.
10097
10098 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10099
10100         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
10101         arg of pop-to-buffer for XEmacs.
10102         (gnus-article-read-summary-keys): Ditto; don't restore window
10103         configuration if summary command ends up with neither article buffer
10104         nor summary buffer; describe bindings if summary keys end with C-h.
10105
10106 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
10107
10108         * message.el (message-fix-before-sending): Skip raw message part to be
10109         forwarded while checking illegible text.
10110         (message-forward-make-body-mime, message-forward-make-body):
10111         Mark signed or encrypted raw message as having no illegible text.
10112
10113 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10114
10115         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
10116         (gnus-message-with-timestamp-1): New macro.
10117         (gnus-message-with-timestamp): New function.
10118         (gnus-message): Use them.
10119
10120         * nnheader.el (nnheader-message): Use them.
10121
10122 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
10123
10124         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
10125         .newsrc.eld file.
10126
10127 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10128
10129         * gnus-agent.el (gnus-agent-fetch-headers)
10130         (gnus-agent-retrieve-headers):
10131         Bind gnus-decode-encoded-address-function to identity.
10132
10133         * nntp.el (nntp-send-xover-command): Recognize an xover command is
10134         available also when the server returns simply a dot.
10135
10136         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
10137
10138 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
10139
10140         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
10141
10142 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10143
10144         * gnus-ems.el (gnus-x-splash): Make it work.
10145
10146         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
10147         from being used.
10148
10149         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
10150
10151 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10152
10153         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
10154         4th and the 5th arguments.
10155
10156         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
10157         the front stickiness.
10158         (gnus-article-summary-command-nosave): Correct the order of the
10159         arguments passed to pop-to-buffer.
10160         (gnus-article-read-summary-keys): Ditto; make it work properly when the
10161         summary command ends up with the article buffer.
10162
10163         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
10164         the same faces.
10165
10166 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
10167
10168         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
10169
10170 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
10171
10172         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
10173         * gnus-sum.el (gnus-summary-highlight):
10174         * pgg.el (pgg-sign-region, pgg-sign):
10175         * mail-source.el (mail-source-delete-old-incoming-confirm):
10176         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
10177
10178 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10179
10180         * gnus-art.el (gnus-mime-view-part-externally)
10181         (gnus-mime-view-part-internally): Fix predicate function passed to
10182         completing-read.
10183
10184         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
10185
10186         * gnus.el (gnus-update-message-archive-method): Add :version.
10187
10188 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10189
10190         * gnus.el (gnus-update-message-archive-method): New variable.
10191
10192         * gnus-start.el (gnus-setup-news): Update saved "archive" method
10193         according to gnus-message-archive-method if
10194         gnus-update-message-archive-method is non-nil.
10195
10196 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10197
10198         * gnus-sum.el (gnus-summary-limit-to-address): New function.
10199         Suggested by Loic Dachary <loic@dachary.org>.
10200         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
10201
10202 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10203
10204         * message.el (message-pop-to-buffer): Add switch-function argument.
10205         (message-mail): Pass switch-function argument to it.
10206
10207 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
10208
10209         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
10210         Improve doc string.
10211
10212 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10213
10214         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
10215         (gnus-header-content)
10216         * gnus-cite.el (gnus-cite-10)
10217         * gnus-srvr.el (gnus-server-closed)
10218         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
10219         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
10220         (gnus-group-mail-3-empty, gnus-group-mail-low)
10221         (gnus-group-mail-low-empty, gnus-splash)
10222         * message.el (message-header-to, message-header-cc)
10223         (message-header-subject, message-header-other, message-header-name)
10224         (message-header-xheader, message-separator, message-cited-text)
10225         (message-mml): Lighten colors of faces used for dark background.
10226
10227 2007-05-24  Simon Josefsson  <simon@josefsson.org>
10228
10229         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
10230         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
10231
10232 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10233
10234         * message.el (message-narrow-to-headers-or-head):
10235         Ignore mail-header-separator in the body.
10236
10237 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
10238
10239         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
10240         same as window size.
10241
10242 2007-05-22  Kevin Ryde  <user42@zip.com.au>
10243
10244         * message.el (message-font-lock-keywords): Use message-header-xheader
10245         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
10246         ahead of the anything pattern, to get it recognised.
10247
10248 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
10249
10250         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
10251         spam.el loads uses it in the compiled defadvice form.
10252
10253 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
10254
10255         * gnus-sum.el (gnus-articles-to-read)
10256         (gnus-summary-insert-old-articles): Don't truncate group name for
10257         `read-string'.
10258
10259         * gnus-util.el (gnus-limit-string): Delete this function.
10260
10261         * gnus-sum.el (gnus-simplify-subject-fully):
10262         Use `truncate-string-to-width' instead.
10263
10264 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
10265
10266         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
10267         Tell if, on summary exit, the next group has to be selected.
10268         (gnus-summary-exit): Use it.
10269
10270 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
10271
10272         * gnus-art.el (gnus-article-mode): Fix comment about displaying
10273         non-break space.
10274
10275 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10276
10277         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
10278         Check if group is not a directory.
10279         (nnfolder-request-expire-articles): Don't delete articles if the target
10280         group is not available.
10281
10282         * nnml.el (nnml-request-create-group): Properly check if group is not a
10283         file.
10284         (nnml-request-expire-articles): Don't delete articles if the target
10285         group is not available.
10286
10287         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
10288         Don't quote characters that are within parentheses.
10289
10290 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10291
10292         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
10293         (gnus-handle-ephemeral-exit): Select article according to it.
10294
10295 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
10296
10297         * message.el (message-insert-formated-citation-line): Remove newline.
10298         (message-citation-line-format): Add final \n here so that the user can
10299         avoid a blank line.
10300
10301 2007-05-03  Dan Christensen  <jdc@uwo.ca>
10302
10303         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
10304         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
10305         Update lanl/arXiv support.
10306
10307 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
10308
10309         * gnus.el: Bump version number.
10310
10311 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10312
10313         * gnus.el (gnus-version-number): Bump version.
10314
10315 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
10316
10317         * gnus.el: No Gnus v0.6 is released.
10318
10319 2007-04-27  Didier Verna  <didier@xemacs.org>
10320
10321         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
10322         * gmm-utils.el (gmm-regexp-concat): ... here.
10323         * message.el: Don't require 'gnus-util.
10324         (message-dont-reply-to-names): Handle name change above.
10325         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
10326
10327 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10328
10329         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
10330         since the initial value varies according to the system.
10331
10332 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10333
10334         * mm-util.el (mm-charset-synonym-alist): Defcustom.
10335
10336 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
10337
10338         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
10339
10340 2007-04-24  Didier Verna  <didier@xemacs.org>
10341
10342         Improve the type of gnus-ignored-from-addresses.
10343         * gnus-util.el (gnus-orify-regexp): New function.
10344         * message.el (gnus-util): Require it.
10345         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
10346         * gnus-sum.el (gnus-ignored-from-addresses): New function.
10347         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
10348
10349 2007-04-24  Didier Verna  <didier@xemacs.org>
10350
10351         * gnus-sum.el:
10352         * gnus-utils.el: Fix some trailing whitespaces.
10353
10354 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
10355
10356         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
10357         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
10358         article's Message-ID; refer parent article in summary buffer.
10359
10360         * message.el (message-bounce): Call mime-to-mml.
10361
10362         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
10363         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
10364         optimize and/or forms properly.
10365
10366 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
10367
10368         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
10369         URL.
10370
10371 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10372
10373         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
10374
10375 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10376
10377         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
10378         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
10379         displayed of multipart/alternative part if it is invoked from summary
10380         buffer.
10381
10382         * mm-view.el (mm-inline-text-html-render-with-w3m)
10383         (mm-inline-text-html-render-with-w3m-standalone)
10384         (mm-inline-render-with-function): Use mail-parse-charset by default.
10385
10386 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
10387
10388         * parse-time.el (parse-time-string-chars): Check if CHAR
10389         is less than the length of parse-time-syntax.
10390
10391 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
10392
10393         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
10394         from gnus-newsgroup-processable.
10395
10396 2007-04-16  Didier Verna  <didier@xemacs.org>
10397
10398         * gnus-msg.el (gnus-configure-posting-styles):
10399         Handle message-signature-directory properly with :file syntax.
10400         Reported by "Leo".
10401
10402 2007-04-11  Didier Verna  <didier@xemacs.org>
10403
10404         New user option: message-signature-directory.
10405         * gnus-msg.el (gnus-configure-posting-styles): Support it.
10406         * message.el (message-insert-signature): Ditto.
10407         * message.el (message-signature-file): Doc update.
10408         * message.el (message-signature-directory): New.
10409
10410 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
10411
10412         * gnus-msg.el (gnus-inews-yank-articles):
10413         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
10414
10415 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10416
10417         * message.el (message-yank-original): Make sure cited text ends with
10418         newline; don't exchange point and mark.
10419
10420 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
10421
10422         * tls.el (open-tls-stream): Properly handle case where there
10423         is no associated buffer.
10424
10425 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
10426
10427         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
10428         message-yank-original, make sure (< mark TEXT point).
10429
10430 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
10431
10432         * message.el (message-fill-column): New variable.
10433         (message-mode): Use it.  Add comment on a possible new hook.
10434
10435         * nnmail.el (nnmail-spool-file): Mark as obsolete.
10436         (nnmail-get-new-mail): Reformat.
10437
10438         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
10439
10440         * gmm-utils.el: Fix Commentary.
10441         (gmm-tool-bar-from-list): Fix typo in doc string.
10442
10443 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
10444
10445         * message.el (message-yank-original): Don't switch point and mark
10446         unnecessarily to put point and mark as documented.
10447
10448 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10449
10450         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
10451         from the message heads.
10452
10453 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
10454
10455         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
10456         article buffer does not have a window.  This may not be the best
10457         solution but is certainly better than setting the start of the null,
10458         that is the current, window.
10459
10460 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
10461
10462         * gnus-draft.el (gnus-draft-setup-hook): New hook.
10463         (gnus-draft-setup): Run it.
10464
10465         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
10466         gnus-score-fast-scoring.  Allow regexp.
10467         (gnus-score-headers): Use it.
10468
10469         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
10470         XEmacs.
10471
10472         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
10473         string.
10474         (gnus-button-alist): Also catch `<f1> k ...'.
10475         (gnus-treat-display-x-face): Fix doc string.
10476
10477 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10478
10479         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
10480         evaluation of gnus-extended-version to ensure correct generation of the
10481         User-Agent header when message-generate-headers-first is used.
10482
10483 2007-03-24  Simon Josefsson  <simon@josefsson.org>
10484
10485         * hashcash.el (hashcash-generate-payment-async): Don't crash if
10486         hashcash-path is nil.  Don't call callback with incorrect number of
10487         parameters if val is 0.
10488
10489 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10490
10491         * message.el (message-required-news-headers):
10492         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
10493
10494 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
10495
10496         * tls.el (open-tls-stream): In handshake-waiting loop,
10497         don't wait more if there is output available to process.
10498
10499 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
10500
10501         * tls.el (tls-program): Doc fix.
10502
10503 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10504
10505         * message.el (message-generate-new-buffers): Change the meaning of the
10506         nil value; add `standard' to the choices; treat t as `unique'; improve
10507         doc string.
10508         (gnus-select-frame-set-input-focus): Autoload.
10509         (message-buffer-name): Search for the existing message buffer if
10510         message-generate-new-buffers is nil or `standard'; treat the value t of
10511         message-generate-new-buffers as `unique'.
10512         (message-pop-to-buffer): Raise the frame already displaying the message
10513         buffer; clear the echo area after querying.
10514         (message-setup): Pass the `continue' argument to compose-mail.
10515         (message-mail): Prefer `switch-function' if it is given; search for the
10516         existing message buffer if the `continue' argument is non-nil; pass
10517         continue and switch-function arguments to compose-mail by way of
10518         message-setup.
10519         (message-mail-other-window): Adjust argument of message-setup.
10520         (message-mail-other-frame): Ditto.
10521
10522 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10523
10524         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
10525         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
10526         to turn font-lock on when turning gnus-message-citation-mode on.
10527
10528 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
10529
10530         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
10531         (mml-smime-function-alist): New variable; add epg as the backend.
10532         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
10533         mml-smime- functions instead.
10534         * mm-view.el: Require smime.
10535
10536 2007-03-05  Didier Verna  <didier@xemacs.org>
10537
10538         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
10539         instead of just inheritance for posting styles.
10540         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
10541
10542 2007-02-24  Chris Moore  <dooglus@gmail.com>
10543
10544         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
10545         * pgg-pgp.el (pgg-pgp-encrypt-region):
10546         * pgg-gpg.el (pgg-gpg-encrypt-region):
10547         Check pgg-encrypt-for-me if no other recipients.
10548
10549 2007-02-24  John Paul Wallington  <jpw@pobox.com>
10550
10551         * tls.el (tls-certtool-program): Fix custom type.
10552
10553 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10554
10555         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
10556         and point-at-eol instead of line-(beginning|end)-position.
10557
10558         * assistant.el (assistant-parse-buffer): Ditto.
10559
10560         * netrc.el (netrc-parse-services): Ditto.
10561
10562 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
10563
10564         * mml2015.el (mml2015-epg-find-usable-key): New function.
10565         (mml2015-epg-sign): Use it.
10566         (mml2015-epg-encrypt): Use it.
10567
10568 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10569
10570         * message.el (message-make-in-reply-to): Quote name containing
10571         non-ASCII characters.  It will make the RFC2047 encoder cause an error
10572         if there are special characters.  Reported by NAKAJI Hiroyuki
10573         <nakaji@jp.freebsd.org>.
10574
10575 2007-02-27  Didier Verna  <didier@xemacs.org>
10576
10577         Include the group parameters as well as the topic ones in the
10578         inheritance filter process.
10579         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
10580         argument GROUP-PARAMS-LIST.
10581         * gnus-topic.el (gnus-group-topic-parameters): Use it.
10582
10583 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10584
10585         * nntp.el (nntp-never-echoes-commands)
10586         (nntp-open-connection-functions-never-echo-commands): New variables.
10587         (nntp-send-command): Use them.
10588
10589 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
10590
10591         * mml2015.el (mml2015-epg-verify): Simplify.
10592
10593 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10594
10595         * mml.el (mml-content-disposition-alist): New user option.
10596         (mml-content-disposition): New function.
10597         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
10598         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
10599
10600 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
10601
10602         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
10603         verification.
10604
10605 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10606
10607         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
10608         articles posted in the last 24 hours.
10609
10610 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
10611
10612         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
10613
10614 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
10615
10616         * nntp.el (nntp-send-command): Don't wait for echoes when
10617         nntp-open-ssl-stream is used.
10618
10619 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10620
10621         * gnus-cite.el (gnus-test-font-lock-add-keywords)
10622         (gnus-message-add-citation-keywords)
10623         (gnus-message-remove-citation-keywords): Remove.
10624         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
10625         directly, make the variables in font-lock-defaults buffer-local, add
10626         gnus-message-citation-keywords to them and then update the value of
10627         font-lock-keywords.
10628
10629 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10630
10631         * message.el (message-cite-original-1): Don't call
10632         gnus-article-highlight-citation.
10633
10634         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
10635         citations; fix line count.
10636
10637 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
10638
10639         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
10640         (gnus-message-add-citation-keywords)
10641         (gnus-message-remove-citation-keywords): Use it; fix the emulating
10642         versions of font-lock-add-keywords and font-lock-remove-keywords to
10643         work with XEmacs correctly.
10644
10645 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10646
10647         * gnus-cite.el (gnus-cite-face-list): Set the values of
10648         gnus-message-max-citation-depth and gnus-message-citation-keywords.
10649         (gnus-message-max-citation-depth): Use defvar rather than defconst.
10650         (gnus-message-cite-prefix-regexp): New variable.
10651         (gnus-message-search-citation-line): Use it; protect against long
10652         citation prefix; fill match data with nil rather than 0 for XEmacs; set
10653         the 0th match data for Emacs.
10654         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
10655         (gnus-message-add-citation-keywords): Append keywords rather than
10656         prepending; emulate font-lock-add-keywords if it is not available.
10657         (gnus-message-remove-citation-keywords):
10658         Emulate font-lock-remove-keywords if it is not available.
10659
10660         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
10661
10662         * message.el (message-cite-prefix-regexp): Set the value of
10663         gnus-message-cite-prefix-regexp.
10664
10665 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10666
10667         * nnweb.el (nnweb-google-parse-1): Update parser.
10668
10669 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
10670
10671         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
10672
10673 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10674
10675         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
10676         regexp.
10677
10678 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10679
10680         * uudecode.el (uudecode-string-to-multibyte): New function emulating
10681         string-to-multibyte.
10682         (uudecode-decode-region-internal): Use it.
10683
10684         * lpath.el: Fbind string-as-multibyte for XEmacs.
10685
10686 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
10687
10688         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
10689         Fix custom choice.
10690
10691         * gnus-art.el (gnus-signature-limit): Fix custom choice.
10692
10693 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
10694
10695         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
10696
10697         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
10698         `write-region' to respect `mm-inhibit-file-name-handlers'.
10699
10700 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
10701
10702         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
10703         Use gnus-home-directory instead of "~/" or "$HOME".
10704
10705 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
10706
10707         * encrypt.el (encrypt-insert-file-contents): Add better prompt
10708         to mention filename.
10709         Add comments at beginning regarding usage.
10710         (encrypt-write-file-contents): Change interactive so a string is
10711         acceptable.  If the file has no associated model, show an error instead
10712         of a nonsense prompt.
10713
10714 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10715
10716         * spam.el (spam-bsfilter-ham-switch): Fix typo.
10717         Thanks to Yoshihiko Yamada for kind notification of this typo.
10718
10719 2007-01-12  Kenichi Handa  <handa@m17n.org>
10720
10721         * uudecode.el (uudecode-decode-region-internal): Make it work in a
10722         multibyte buffer.
10723
10724 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
10725
10726         * gnus-score.el (gnus-score-fast-scoring): New variable.
10727         (gnus-score-headers): Use it.
10728
10729         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
10730
10731         * message.el (message-cite-original-1):
10732         Call gnus-article-highlight-citation if requested.
10733         (message-make-from): Allow name and address as optional arguments.
10734
10735         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
10736
10737         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
10738         bugs to doc string.
10739         (gnus-button-alist): Add mid\\|message-id.
10740         (gnus-button-fetch-group): Extend for use in
10741         `browse-url-browser-function'.
10742         (gnus-button-url-regexp): Try to catch paired parentheses like in
10743         Wikipedia URLs.
10744
10745         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
10746         Suggested by Simon Krahnke <overlord@gmx.li>.
10747
10748 2007-01-13  Romain Francoise  <romain@orebokech.com>
10749
10750         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
10751         Update copyright.
10752
10753 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
10754
10755         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
10756
10757 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
10758
10759         * gnus-registry.el (gnus-registry-unfollowed-groups)
10760         (gnus-registry-split-fancy-with-parent): Fix documentation.
10761
10762 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10763
10764         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
10765         from nnweb groups.
10766
10767 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10768
10769         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
10770         Xref urls.  Erase buffer before requesting head.
10771
10772         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
10773
10774 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
10775
10776         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
10777         customizable.
10778
10779 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
10780
10781         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
10782         no signing key is found.
10783         (mml2015-epg-encrypt): Ask user whether to skip or abort if
10784         no encrypting and/or signing key is found.
10785
10786 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
10787
10788         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
10789
10790 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10791
10792         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
10793         headers read from disk with the ones newly found in the current search.
10794         This should no longer cause problems, because the article numbers in
10795         Gmane's `nov.php' output are ignored since the previous change.
10796
10797 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10798
10799         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
10800
10801 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10802
10803         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
10804         replace-regexp-in-string; bind url-version; fbind display-images-p and
10805         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
10806         find-face and set-itimer-function for Emacs; bind itimer-list for
10807         Emacs.
10808
10809         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
10810
10811 2007-01-01  Romain Francoise  <romain@orebokech.com>
10812
10813         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
10814
10815 2006-12-31  Steve Youngs  <steve@sxemacs.org>
10816
10817         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
10818         `define-minor-mode' macro definition expanded properly.
10819         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
10820         exclude it there.
10821
10822         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
10823         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
10824         `fboundp' test.
10825         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
10826         This is OK to autoload in (S)XEmacs now.
10827
10828 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10829
10830         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
10831         keystroke.
10832         (gnus-summary-limit-to-singletons): Fix typo.
10833
10834         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
10835         else fails.
10836
10837 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10838
10839         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
10840         docstring.
10841
10842         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
10843         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
10844         (gnus-summary-insert-dormant-articles): Fix typo in message.
10845
10846 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
10847
10848         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
10849         nil for XEmacs.
10850         (gnus-message-citation-mode): Don't autoload in XEmacs.
10851
10852         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
10853
10854 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
10855
10856         * nnimap.el (nnimap-expunge-search-string):
10857         Mention nnimap-search-uids-not-since-is-evil in docstring.
10858
10859 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
10860
10861         * spam.el: Revert to make-obsolete-variable because
10862         define-obsolete-variable-alias is not supported in Emacs 21.
10863
10864         * spam.el (spam-ifile-path, spam-ifile-database-path)
10865         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
10866         make-obsolete-variable.
10867         (spam-bsfilter-path, spam-bsfilter-program)
10868         (spam-spamassassin-path, spam-spamassassin-program)
10869         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
10870         Don't use "path" inappropriately.
10871         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
10872         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
10873         variable names.
10874
10875 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
10876
10877         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
10878         summary buffer.
10879
10880         * password.el (password-cache-remove): Use clear-string to burn
10881         password, if available.
10882
10883 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
10884
10885         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
10886
10887         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
10888
10889         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
10890         (gnus-message-highlight-citation): Move defcustom here from
10891         gnus-cite.el.
10892         (gnus-message-citation-mode): Autoload.
10893
10894         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
10895         checks to make it compile with XEmacs.
10896         (gnus-message-citation-mode): New minor mode.
10897         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
10898         (gnus-message-highlight-citation): New variables.
10899         (gnus-message-search-citation-line)
10900         (gnus-message-add-citation-keywords)
10901         (gnus-message-remove-citation-keywords)
10902         (turn-on-gnus-message-citation-mode)
10903         (turn-off-gnus-message-citation-mode): New functions.
10904
10905 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
10906
10907         * gnus-cite.el: Enable highlighting of different citation levels in
10908         message-mode.
10909
10910 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
10911
10912         * message.el (message-make-fqdn): Fix comment.
10913         (message-bogus-system-names): Add ".local".
10914
10915         * spam.el (spam-ifile-path, spam-ifile-program)
10916         (spam-ifile-database-path, spam-ifile-database)
10917         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
10918         Don't use "path" inappropriately.
10919         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
10920         strings.
10921         (spam-check-ifile, spam-ifile-register-with-ifile)
10922         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
10923         Use new variable names.
10924
10925         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
10926         (gnus-treat-display-smileys): Simplify using
10927         gnus-image-type-available-p.
10928
10929         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
10930         available.
10931
10932         * gnus-xmas.el (gnus-xmas-image-type-available-p):
10933         Use `display-images-p' if available.
10934
10935 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
10936
10937         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
10938         one after turning on the buffer's multibyteness instead of decoding
10939         them directly in the unibyte buffer that causes unexpected conversion
10940         in Emacs 23 (unicode).
10941
10942 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10943
10944         * message.el (message-generate-hashcash): Fix custom type.
10945
10946 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
10947
10948         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
10949
10950 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
10951
10952         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
10953         disconnect icons.  Add help text.
10954
10955 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
10956
10957         * spam.el (spam-extra-header-to-number): CRM114 spam score is
10958         negated to be consistent with the others we handle.
10959
10960 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10961
10962         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
10963         version of gnus-summary-buffer to something, so that we can use two
10964         article buffers at the same time.
10965
10966 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
10967
10968         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
10969         trigger all the extra headers.
10970         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
10971         sorting.
10972
10973 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
10974
10975         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
10976         solid groups.
10977
10978 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
10979
10980         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
10981
10982 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
10983
10984         * legacy-gnus-agent.el: Add Copyright notice.
10985
10986 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
10987
10988         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
10989
10990 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10991
10992         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
10993
10994         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
10995         to make it work reliably in CVS Emacs.
10996         (gnus-summary-limit-strange-charsets-predicate)
10997         (gnus-summary-limit-to-predicate): New functions.
10998
10999 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
11000
11001         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
11002         specifying array size.
11003         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
11004         array if it is too small.
11005         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
11006         (gnus-sort-threads-loop): New function.
11007
11008 2006-12-06  Chris Moore  <dooglus@gmail.com>
11009
11010         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
11011         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
11012
11013 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
11014
11015         * mm-url.el (mm-url-predefined-programs): Call curl with correct
11016         options.
11017
11018 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11019
11020         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
11021         DOS-ing the recipient.
11022
11023         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
11024         the headers when creating the mapping to avoid mismappings.
11025         (nnweb-gmane-create-mapping): Always nix out old mapping.
11026
11027 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11028
11029         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
11030         and mm-verify-option to never.
11031
11032 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11033
11034         * message.el (message-signed-or-encrypted-p): New function.
11035         (message-forward-make-body): Use it.
11036
11037         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
11038         Replace encode-coding-string with mm-encode-coding-string.
11039
11040 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11041
11042         * nneething.el (nneething-decode-file-name):
11043         Replace decode-coding-string with mm-decode-coding-string.
11044
11045         * gnus-int.el (gnus-open-server): Say failed server's name.
11046
11047 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
11048
11049         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
11050         strings to a single string.  Quote `errors-file-name'.
11051         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
11052         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
11053         Adjust calls.  Use `shell-quote-argument'.
11054
11055 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
11056
11057         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
11058         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
11059
11060         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
11061         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
11062         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
11063         (gnus-group-make-directory-group, gnus-group-transpose-groups):
11064         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
11065         (gnus-subscribe-newsgroup, gnus-1):
11066         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
11067         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
11068         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
11069         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
11070
11071 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11072
11073         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
11074         keystroke.
11075         (gnus-summary-limit-to-bodies): Implement headersp.
11076
11077 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11078
11079         * dns.el (query-dns): Protect against "Process dns deleted" strings.
11080
11081 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
11082
11083         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
11084
11085 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11086
11087         * message.el (message-generate-hashcash): Expand range of values to
11088         include `opportunistic'.
11089         (message-send-mail): Use it.
11090
11091 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11092
11093         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
11094         and comment it.
11095
11096         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
11097
11098 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
11099
11100         * gnus-util.el (gnus-extract-address-components): Improve comment.
11101
11102 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11103
11104         * gnus-util.el (gnus-extract-address-components): Work with address in
11105         which the name portion contains @.
11106
11107         * lpath.el: Fbind custom-autoload.
11108
11109 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
11110
11111         * gnus.el (gnus-start): Move custom group up.
11112         (gnus-select-method): Don't autoload, but make it available for
11113         `customize-variable'.
11114         (gnus-getenv-nntpserver): Don't autoload.
11115
11116 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
11117
11118         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
11119
11120 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
11121
11122         * message.el (message-sendmail-extra-arguments): New variable.
11123         (message-send-mail-with-sendmail): Use it.
11124
11125 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11126
11127         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
11128         mm-with-unibyte-current-buffer to make string unibyte.
11129
11130         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
11131         mm-string-as-multibyte.
11132
11133 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
11134
11135         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
11136         Reported by Werner Koch <wk@gnupg.org>.
11137
11138 2006-11-14  Daiki Ueno  <ueno@p360>
11139
11140         * mml2015.el: Autoload epa-select-keys when compiling.
11141
11142 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
11143
11144         * mml2015.el (mml2015-epg-sign): Save the signing keys in
11145         message-options.
11146         (mml2015-epg-encrypt): Save the recipient keys in message-options.
11147
11148 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
11149
11150         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
11151         EasyPG (< 0.0.6).
11152         (mml2015-always-trust): New user option.
11153         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
11154         prompt.
11155
11156 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11157
11158         * nntp.el (nntp-authinfo-force): New variable.
11159         (nntp-send-authinfo): Use it.
11160
11161 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
11162
11163         * message.el (message-strip-subject-encoded-words): Allow _not_ to
11164         decode encoded words.  Improve prompt.  Add comment about forwarding.
11165         (message-replacement-char): Move up.
11166
11167 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
11168
11169         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
11170         instead of gnus-intersection because arguments of gnus-sorted-nunion
11171         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
11172
11173 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
11174
11175         * message.el (message-strip-subject-encoded-words): Reformat prompt.
11176         (message-simplify-subject-functions):
11177         Enable message-strip-subject-encoded-words by default.
11178
11179 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
11180
11181         * message.el (message-strip-subject-encoded-words): New function.
11182         (message-simplify-subject-functions): New variable.
11183         (message-simplify-subject): Use it.  Fix typo in doc string.
11184         Support message-strip-subject-encoded-words.
11185
11186 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
11187
11188         * gnus-diary.el (gnus-diary-delay-format-function):
11189         * nndiary.el (nndiary-reminders):
11190         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
11191
11192 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
11193
11194         * gnus-art.el (article-hide-boring-headers): Fetch date from
11195         gnus-original-article-buffer to avoid problems with localized date
11196         strings.
11197
11198 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11199
11200         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
11201
11202 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
11203
11204         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
11205         New variables.
11206         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
11207         (mm-charset-synonym-alist): Move some entries to
11208         mm-codepage-iso-8859-list.
11209         (mm-charset-synonym-alist, mm-charset-override-alist):
11210         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
11211
11212 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11213
11214         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
11215
11216 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
11217
11218         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
11219         with Emacs 21 and XEmacs.
11220
11221 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
11222
11223         * spam.el (spam-parse-address): New function for better parsing,
11224         catching errors, etc.
11225         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
11226
11227 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
11228
11229         * mm-view.el: Add interactive arg to html2text autoload.
11230
11231 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11232
11233         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
11234
11235 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
11236
11237         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
11238         New variables.
11239         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
11240         (mm-charset-synonym-alist): Move some entries to
11241         mm-codepage-iso-8859-list.
11242
11243         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
11244
11245 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
11246
11247         * message.el (message-citation-line-format)
11248         (message-insert-formated-citation-line): Fix implementation of %E, %N
11249         and %n according to the doc string.
11250
11251 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
11252
11253         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
11254         Use car-safe to avoid bad parses.
11255
11256 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11257
11258         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
11259         names.
11260
11261         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
11262
11263 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11264
11265         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
11266         header.
11267
11268         * message.el (message-draft-headers): Add Date.
11269         (message-headers-to-generate): Fix typo in docstring.
11270
11271         * nndraft.el (nndraft-required-headers): New variable.
11272         (nndraft-generate-headers): Use it.
11273
11274         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
11275
11276 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
11277
11278         * gnus-registry.el (gnus-registry-wash-for-keywords)
11279         (gnus-registry-find-keywords): New functions to allow easy searching of
11280         articles that are in the registry.
11281
11282 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
11283
11284         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
11285         Use ietf-drums-parse-address instead of gnus-extract-address-components.
11286         Reported by Damien Elmes <damien@repose.cx>.
11287
11288 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
11289
11290         * gnus.el (gnus-mime): Remove unused custom group.
11291
11292 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11293
11294         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
11295         "blank line" when searching for end of armor headers.
11296
11297 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11298
11299         * gmm-utils.el (gmm-write-region): Fix variable name.
11300
11301 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
11302
11303         * gmm-utils.el (gmm-write-region): New function based on compatibility
11304         code from `mm-make-temp-file'.
11305
11306         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
11307
11308         * nnmaildir.el (nnmaildir--update-nov)
11309         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
11310         Use `gmm-write-region'.
11311
11312 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
11313
11314         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
11315         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
11316
11317         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
11318
11319         * message.el (message-replacement-char): New variable.
11320         (message-fix-before-sending): Use it.
11321         (message-simplify-subject): New function to remove duplicate code.
11322         (message-reply, message-followup): Use it.
11323
11324         * gnus-sum.el (gnus-summary-make-menu-bar):
11325         Clarify gnus-summary-limit-to-articles.
11326
11327 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11328
11329         * gnus-util.el (gnus-with-local-quit): New macro.
11330
11331         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
11332
11333 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
11334
11335         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
11336         ignore non-string data.
11337
11338 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
11339
11340         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
11341         non-string data (needs to be done in the registry too).
11342
11343 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
11344
11345         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
11346         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
11347         (gnus-registry-split-fancy-with-parent)
11348         (gnus-registry-fetch-simplified-message-subject-fast)
11349         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
11350         Remove text properties on ingress into the registry and when it's saved.
11351         (gnus-registry-clean-empty-function): Fix bug with cleaning the
11352         registry from entries with no groups.
11353
11354 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
11355
11356         * gnus-util.el (gnus-string-remove-all-properties): Add utility
11357         function to remove string properties.
11358
11359 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
11360
11361         * gmm-utils.el (gmm): Adjust custom version.
11362
11363         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
11364         Adjust custom version.
11365
11366         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
11367
11368 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
11369
11370         * gnus-art.el (gnus-insert-prev-page-button)
11371         (gnus-insert-next-page-button): Simplify.  Reformat.
11372
11373 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
11374
11375         * gnus-art.el (gnus-insert-prev-page-button)
11376         (gnus-insert-next-page-button): Apply gnus-article-button-face.
11377
11378 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
11379
11380         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
11381
11382 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
11383
11384         * gnus-art.el (gnus-insert-mime-button)
11385         (gnus-insert-mime-security-button):
11386         Apply gnus-article-button-face to MIME and security buttons.
11387
11388 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
11389
11390         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
11391         readable.
11392
11393 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11394
11395         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
11396
11397 2006-09-20  Steve Youngs  <steve@sxemacs.org>
11398
11399         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
11400         `browse-url-of-file' instead of `browse-url'.
11401
11402 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11403
11404         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
11405         regexp.  Articles containing quotation were cut prematurely.
11406
11407 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11408
11409         * message.el (message-cite-original-1): Use nobody by default for the
11410         value of From header.
11411         (message-reply): Ditto.
11412
11413 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
11414
11415         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
11416         to the gnus-info.  This fixes a bug of inline-PGP message verification.
11417         Reported by Michael Piotrowski <mxp@dynalabs.de>.
11418
11419 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
11420
11421         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
11422         mails in the doc string.  Add some URLs in comment.
11423         (pop3-movemail): Warn about pop3-leave-mail-on-server.
11424
11425 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11426
11427         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
11428         backslashes handling and the way to find boundaries of quoted strings.
11429
11430 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
11431
11432         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
11433         mml1991-encrypt-to-self is set and mml1991-signers is not set.
11434         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
11435         mml2015-encrypt-to-self is set and mml2015-signers is not set.
11436
11437 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
11438
11439         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
11440         doc string.
11441         (gnus-button-regexp, gnus-button-last): Remove unused variables.
11442
11443 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11444
11445         * lpath.el: Fbind epg-check-configuration.
11446
11447 2006-09-06  Simon Josefsson  <jas@extundo.com>
11448
11449         * mml2015.el (mml2015-use): Doc fix, mention epg.
11450
11451 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
11452
11453         * mml2015.el (mml2015-use): Default to epg, if available.
11454
11455 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
11456
11457         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
11458         message-sender.
11459         (mml1991-epg-encrypt): Ditto.
11460         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
11461         message-sender.
11462         (mml2015-epg-encrypt): Ditto.
11463
11464 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
11465
11466         * message.el (message-send-mail-with-sendmail): Look for sendmail in
11467         several common directories.
11468
11469 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
11470
11471         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
11472         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
11473
11474 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
11475
11476         * gnus-art.el (article-decode-encoded-words): Make it fast.
11477
11478 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
11479
11480         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
11481
11482         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
11483         in quoted string into `\'.
11484
11485 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11486
11487         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
11488         Use standard-syntax-table.
11489
11490 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11491
11492         * gnus-art.el (gnus-decode-address-function): New variable.
11493         (article-decode-encoded-words): Use it to decode headers which are
11494         assumed to contain addresses.
11495         (gnus-mime-delete-part): Remove useless `or'.
11496
11497         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
11498         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
11499         (gnus-nov-parse-line): Use it to decode From header.
11500         (gnus-get-newsgroup-headers): Ditto.
11501         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
11502
11503         * mail-parse.el (mail-decode-encoded-address-region): New alias.
11504         (mail-decode-encoded-address-string): New alias.
11505
11506         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
11507         New function.
11508         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
11509         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
11510         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
11511         (rfc2047-decode-string): Ditto.
11512         (rfc2047-decode-address-region): New function.
11513         (rfc2047-decode-address-string): New function.
11514
11515 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
11516
11517         * message.el (message-caesar-buffer-body): Allow rotating headers.
11518
11519         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
11520
11521         * message.el (message-insert-formated-citation-line): Fix %f.
11522         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
11523
11524 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11525
11526         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
11527         (gnus-bookmark-mouse-available-p): New macro.
11528         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
11529         (gnus-bookmark-bmenu-show-infos): Use it.
11530         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
11531         (gnus-bookmark-bmenu-hide-infos): Ditto.
11532         (gnus-bookmark-remove-properties): New function.
11533         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
11534         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
11535         (gnus-bookmark-write-file): Bind coding-system-for-write.
11536         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
11537         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
11538         group before selecting it.
11539         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
11540         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
11541         quit-window if it is not available; use gnus-mouse-2 and bind it to
11542         gnus-bookmark-bmenu-select-by-mouse.
11543         (gnus-bookmark-show-details): Remove unused variable `details-list'.
11544         (gnus-bookmark-bmenu-select-by-mouse): New function.
11545
11546 2006-08-13  Romain Francoise  <romain@orebokech.com>
11547
11548         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
11549         space.
11550
11551 2006-08-10  Romain Francoise  <romain@orebokech.com>
11552
11553         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
11554         (dns-mode-soa-auto-increment-serial): New user option.
11555         (dns-mode-soa-maybe-increment-serial): New function.
11556         (dns-mode): Add the latter to `write-contents-functions'.
11557
11558 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11559
11560         * compface.el (uncompface): Use binary rather than raw-text-unix.
11561
11562 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11563
11564         * compface.el (uncompface): Make sure the eol conversion doesn't take
11565         place when communicating with the external programs.
11566         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
11567
11568 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
11569
11570         * nnheader.el (nnheader-insert-head): Fix typo in comment.
11571
11572 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11573
11574         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
11575         Make it more robust by parsing author and date independently.
11576
11577 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11578
11579         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
11580
11581 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
11582
11583         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
11584         first matching secret key.
11585         (mml2015-epg-encrypt): Ditto.
11586
11587         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
11588         first matching secret key.
11589         (mml1991-epg-encrypt): Ditto.
11590
11591         * mml2015.el (mml2015-encrypt-to-self): New user option.
11592         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
11593         mml2015-epg-encrypt-to-self is set.
11594
11595         * mml1991.el (mml1991-encrypt-to-self): New variable.
11596         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
11597         mml1991-epg-encrypt-to-self is set.
11598
11599         * mml2015.el (mml2015-signers): New user option.
11600         (mml2015-epg-sign): Reflect the value of mml2015-signers.
11601         (mml2015-epg-encrypt): Allow to select signing keys.
11602
11603         * mml1991.el (mml1991-signers): New variable.
11604         (mml1991-epg-sign): Reflect the value of mml1991-signers.
11605         (mml1991-epg-encrypt): Allow to select signing keys.
11606
11607 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11608
11609         * nnheader.el (nnheader-insert-head): Make it work even if the file
11610         uses CRLF for the line-break code.
11611
11612 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
11613
11614         * mml2015.el: Require mml-sec instead of password.
11615         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
11616         (mml2015-cache-passphrase): Inherit the default value from
11617         mml-secure-cache-passphrase.
11618         (mml2015-passphrase-cache-expiry): Inherit the default value from
11619         mml-secure-passphrase-cache-expiry.
11620
11621         * mml1991.el: Require mml-sec instead of password.
11622         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
11623         (mml1991-cache-passphrase): Inherit the default value from
11624         mml-secure-cache-passphrase.
11625         (mml1991-passphrase-cache-expiry): Inherit the default value from
11626         mml-secure-passphrase-cache-expiry.
11627
11628         * mml-sec.el: Require password.
11629         (mml-secure-verbose): New user option.
11630         (mml-secure-cache-passphrase): New user option.
11631         (mml-secure-passphrase-cache-expiry): New user option.
11632
11633 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
11634
11635         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
11636         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
11637         andreas@altroot.de (Andreas Vögele).
11638
11639         FIXME: Use `tiny change'?
11640
11641 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11642
11643         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
11644         workaround for the url package included with Emacs.
11645
11646         * nnweb.el (nnweb-google-create-mapping): Update regexp.
11647
11648 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11649
11650         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
11651         correctly.  This fixes a bug caused by the 2006-05-12 change.
11652
11653 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
11654
11655         * nnmail.el (nnmail-article-group): If splitting raises an error, give
11656         some information about the error when saying that the `bogus' mail
11657         group will be used.
11658
11659 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
11660
11661         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
11662         string.
11663
11664 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
11665
11666         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
11667
11668 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11669
11670         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
11671
11672 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
11673
11674         * mml1991.el (mml1991-function-alist): Add epg.
11675         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
11676         (mml1991-epg-encrypt): New functions.
11677
11678 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
11679
11680         * mml2015.el (mml2015-verbose): New variable.
11681         (mml2015-cache-passphrase): Ditto.
11682         (mml2015-passphrase-cache-expiry): Ditto.
11683         (mml2015-function-alist): Add epg.
11684         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
11685         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
11686         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
11687         New functions.
11688
11689 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11690
11691         * message.el (message-cite-original-1): Preserve region when removing
11692         quoted text due to X-No-Archive in order to avoid bogus attribution
11693         when citing multiple messages.
11694
11695 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11696
11697         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
11698         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
11699
11700 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
11701
11702         * gnus-diary.el (gnus-user-format-function-d)
11703         (gnus-user-format-function-D): Autoload.
11704
11705         * imap.el (Commentary): Fix typo.
11706
11707         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
11708         2006-04-22 contribution.
11709
11710 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11711
11712         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
11713         It didn't really fix the bogosity I'm seeing with solid web groups.
11714
11715 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11716
11717         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
11718         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
11719         created using server names.  If we use the feature without declaring
11720         it, Gnus does not properly manage server and group state.
11721
11722         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
11723         bound.
11724
11725 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11726
11727         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
11728         looking up the method using GROUP's prefix before inventing a new one.
11729         It is used on killed/unknown groups in various places where returning
11730         an all-new method isn't expected by the caller.
11731
11732         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
11733         and match semantics of gnus-group-real-prefix.
11734
11735 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
11736
11737         * nnmail.el (nnmail-broken-references-mailers): New variable.
11738         (nnmail-ignore-broken-references): New function generalizing
11739         nnmail-fix-eudora-headers.
11740         (nnmail-fix-eudora-headers): Now obsolete.
11741
11742         * gnus-art.el (gnus-button-handle-custom):
11743         Support `customize-apropos*'.
11744
11745 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11746
11747         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
11748
11749         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
11750         articles.
11751
11752 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
11753
11754         * message.el (message-cite-reply-above): New variable.
11755         (message-yank-original): Use it.
11756
11757 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11758
11759         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
11760
11761 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
11762
11763         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
11764         as read.
11765
11766         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
11767
11768 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
11769
11770         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
11771         (gnus-bookmark-default-file): Use gnus-directory.
11772         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
11773         Remove "*" in doc string.
11774         (gnus-bookmark-write-file): Simplify.
11775         (gnus-bookmark-maybe-sort-alist): Use `when'.
11776         (gnus-bookmark-get-bookmark): Fix typo in doc string.
11777         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
11778         Add FIXME about Emacs 21 and XEmacs compatibility.
11779         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
11780         compatibility.
11781         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
11782         compatibility.
11783         (gnus-bookmark-menu-heading): Fix version.
11784
11785 2006-06-19  Bastien Guerry  <bzg@altern.org>
11786
11787         * gnus-bookmark.el: New file.
11788
11789 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11790
11791         * message.el (message-syntax-checks): Doc fix.
11792
11793 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11794
11795         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
11796         unsubscribed groups as if they were killed ones.  It causes duplicate
11797         entries in gnus-newsrc-alist.
11798
11799 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11800
11801         * message.el (message-syntax-checks): Doc fix.
11802         (message-send-mail): Add check for continuation headers.
11803         (message-check-news-header-syntax): Fix regexp used to check for
11804         continuation headers.
11805
11806 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11807
11808         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
11809
11810 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
11811
11812         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
11813
11814 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11815
11816         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
11817         default-truncate-lines.
11818
11819 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11820
11821         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
11822         to fill the utf-8 entry.
11823
11824         * lpath.el: Fbind unicode-precedence-list.
11825
11826 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11827
11828         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
11829
11830 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
11831
11832         * gnus-agent.el (directory-files-and-attributes): Move all the way
11833         forward (the third and final move).
11834         (gnus-agent-read-agentview): Trap reconstruction errors due to
11835         nonexistent directory.  Handle by returning nil.
11836
11837 2006-05-30  Didier Verna  <didier@xemacs.org>
11838
11839         * message.el (message-dont-reply-to-names): Update the custom type.
11840         * message.el (message-dont-reply-to-names): New defsubst: potentially
11841         convert a list of regexps into a single one.
11842         * message.el (message-get-reply-headers): Use it.
11843         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
11844
11845 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11846
11847         * gnus-agent.el (directory-files-and-attributes): Move forward.
11848
11849 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
11850
11851         * gnus-ml.el (gnus-mailing-list-subscribe)
11852         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
11853         (gnus-mailing-list-message): Fix doc strings.
11854
11855 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
11856
11857         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
11858         of doing it manually.
11859
11860 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
11861
11862         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
11863         comment.
11864
11865 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
11866
11867         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
11868         (gnus-agent-read-agentview): Fix handling of end-of-file error.
11869         (gnus-agent-read-local): All symbols allocated in my-obarray.
11870         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
11871         (gnus-agent-regenerate-group): Check numeric names to see if they are
11872         messages or groups.
11873         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
11874         better way of do this...)
11875
11876         * gnus-cache.el (gnus-agent-total-fetched-for):
11877         Ignore 'dummy.group' (there should be a better way of do this...)
11878
11879 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11880
11881         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
11882         (gnus-saved-headers): Ditto.
11883         (gnus-default-article-saver): Mention functions may have properties.
11884         (gnus-article-save): Override gnus-save-all-headers and
11885         gnus-saved-headers by :headers property which saver function may have.
11886         (gnus-summary-save-in-file): Add :headers property.
11887         (gnus-summary-write-to-file): Ditto.
11888
11889         * gnus-sum.el (gnus-summary-save-article): Bind
11890         gnus-prompt-before-saving to t when saving many articles in a file;
11891         always show all headers.
11892
11893         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
11894
11895 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
11896
11897         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
11898         marks.
11899
11900         * message.el (message-indent-citation): Add optional arguments to allow
11901         using it outside of message buffers.
11902
11903         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
11904         (gnus-article-treat-unfold-headers): Use it.
11905         (gnus-article-truncate-lines): New variable.
11906         (gnus-article-mode): Use it.
11907         (gnus-article-toggle-truncate-lines): New function.
11908
11909         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
11910         Add gnus-article-toggle-truncate-lines.
11911
11912         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
11913         coding system in XEmacs, use binary.
11914
11915 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
11916
11917         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
11918         after-load-alist.
11919
11920         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
11921         this function should save decoded articles.
11922         (gnus-summary-write-to-file): Use property to specify this function
11923         should save decoded articles and specify gnus-summary-save-in-file
11924         should be used to save articles other than the first one when saving
11925         many articles.
11926         (gnus-summary-save-body-in-file): Use property to specify this
11927         function should save decoded articles.
11928         (gnus-summary-write-body-to-file): Use property to specify this
11929         function should save decoded articles and specify
11930         gnus-summary-save-body-in-file should be used to save articles other
11931         than the first one when saving many articles.
11932
11933         * gnus-sum.el (gnus-summary-save-article): Simplify.
11934
11935 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11936
11937         * gnus-art.el (gnus-default-article-saver):
11938         Add gnus-summary-write-body-to-file.
11939         (gnus-article-save-coding-system): Don't use coding system object
11940         in XEmacs.
11941         (gnus-read-save-file-name): Add optional `dir-var' argument which
11942         specifies directory in which files are saved; work even if optional
11943         `variable' argument is not specified.
11944         (gnus-summary-write-to-file): Read file name.
11945         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
11946         (gnus-summary-write-body-to-file): New function.
11947
11948         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
11949         (gnus-summary-local-variables): Add it.
11950         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
11951         (gnus-summary-save-article): Remove optional `decode' argument;
11952         determine whether to decode articles by the value of
11953         gnus-default-article-saver; when saving many files using
11954         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
11955         it first and use gnus-summary-save-in-file or
11956         gnus-summary-save-body-in-file thereafter unless
11957         gnus-prompt-before-saving is always; move point to article which
11958         will be saved.
11959         (gnus-summary-save-article-file): Revert.
11960         (gnus-summary-write-article-file): Revert.
11961         (gnus-summary-save-article-body-file): Revert.
11962         (gnus-summary-write-article-body-file): New function.
11963
11964 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11965
11966         * gnus-art.el (gnus-default-article-saver): Doc fix.
11967         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
11968         from gnus-summary-save-article-coding-system, and default to a
11969         certain coding system.
11970         (gnus-output-to-file): Add coding cookie and encode text according
11971         to gnus-article-save-coding-system; don't use mm-append-to-file.
11972
11973         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
11974         gnus-art.el and rename to gnus-article-save-coding-system.
11975         (gnus-summary-save-article): Require gnus-art; don't show all
11976         headers if it decodes articles; don't add coding cookie here;
11977         don't bind mm-text-coding-system-for-write.
11978         (gnus-summary-save-article-file): Save decoded articles.
11979         (gnus-summary-write-article-file): When saving many files, use
11980         gnus-summary-write-to-file first and gnus-summary-save-in-file
11981         thereafter unless gnus-prompt-before-saving is always.
11982         (gnus-summary-save-article-body-file): Save decoded articles.
11983
11984         * lpath.el: Fbind select-safe-coding-system for XEmacs.
11985
11986 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
11987
11988         * nnrss.el (nnrss-check-group): Bind hash-index.
11989
11990 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
11991
11992         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
11993         its hash index.  Store this hash in `nnrss-group-data'.
11994         (nnrss-read-group-data): Update accordingly.
11995
11996 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
11997
11998         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
11999         entry.
12000
12001         * gnus-sum.el (gnus-summary-make-menu-bar):
12002         Add gnus-article-browse-html-article.
12003
12004 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
12005
12006         * gnus-sum.el (gnus-summary-mime-map):
12007         Add gnus-article-browse-html-article.
12008
12009         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
12010
12011 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
12012
12013         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
12014         suitable coding systems in customize.
12015
12016 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
12017
12018         * mail-source.el (mail-sources): Fix custom type.
12019
12020 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
12021
12022         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
12023         (gnus-summary-expire-articles-now): Shorten prompt.
12024
12025         * gmm-utils.el (wid-edit): Require.
12026         (defun-gmm): Rename from `gmm-defun-compat'.
12027         (gmm-image-search-load-path): Use it.
12028         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
12029
12030 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12031
12032         * gnus-sum.el (gnus-summary-save-article-coding-system):
12033         New variable.
12034         (gnus-summary-save-article): Add optional `decode' argument.
12035         If it is set and gnus-summary-save-article-coding-system is non-nil,
12036         save decoded article.
12037         (gnus-summary-write-article-file): Save decoded article if
12038         gnus-summary-save-article-coding-system is non-nil.
12039
12040         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
12041         type.
12042
12043 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12044
12045         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
12046
12047 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12048
12049         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
12050         first to test gnus-single-article-buffer which may be buffer-local.
12051
12052         * gnus-sum.el (gnus-summary-setup-buffer):
12053         Make gnus-single-article-buffer buffer-local and nil in ephemeral
12054         group; make gnus-article-buffer, gnus-article-current, and
12055         gnus-original-article-buffer always buffer-local.
12056         (gnus-summary-exit): Kill article buffer belonging to ephemeral
12057         group.
12058         (gnus-handle-ephemeral-exit): Don't move to next summary line.
12059
12060 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
12061
12062         * nnml.el (nnml-request-compact-group): Compressed files might not
12063         have .gz extension.
12064
12065 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12066
12067         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
12068         (mm-copy-to-buffer): Use with-current-buffer.
12069         (mm-display-part): Simplify.
12070         (mm-inlinable-p): Add optional arg `type'.
12071
12072 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12073
12074         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
12075         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
12076         Try harder to show the attachment internally or externally using
12077         gnus-mime-view-part-as-type.
12078
12079 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
12080
12081         * message.el (message-from-style, message-signature-separator)
12082         (message-user-organization-file, message-send-mail-function)
12083         (message-citation-line-function, message-yank-prefix)
12084         (message-indent-citation-function, message-signature)
12085         (message-signature-file, message-signature-insert-empty-line):
12086         Remove autoloads.
12087
12088         * gnus-art.el (gnus-buttonized-mime-types):
12089         Remove "multipart/signed".  Revert 2006-04-26 change.
12090
12091 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12092
12093         * gnus.el (gnus-version-number): Bump version.
12094
12095 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
12096
12097         * gnus.el: No Gnus v0.5 is released.
12098
12099 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12100
12101         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
12102         fetching articles by message-id.
12103
12104 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12105
12106         * message.el (hashcash): Require hashcash as normal.
12107
12108         * ecomplete.el (ecomplete-highlight-match-line):
12109         Use point-at-eol.
12110         (ecomplete-highlight-match-line): Use `highlight', because that
12111         face exists in both Emacs and XEmacs.
12112
12113         * message.el (message-display-abbrev): Use point-at-bol.
12114
12115         * mail-source.el: Don't require timer/timer-funcs.
12116
12117         * gnus-async.el: Ditto.
12118
12119         * password.el: Ditto.
12120
12121         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
12122
12123         * mm-url.el: Ditto.
12124
12125         * gnus-xmas.el: Don't require timer-funcs.
12126
12127         * mm-util.el: Require timer/timer-funcs.
12128
12129 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12130
12131         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
12132         Close.
12133
12134 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12135
12136         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
12137         unibyte after clear-decrypt function runs.
12138
12139         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
12140         returns as a unibyte string.
12141
12142 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12143
12144         * lpath.el: Revert.
12145
12146         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
12147         (pgg-gpg-process-sentinel): Revert.
12148
12149         * pgg-pgp.el (pgg-pgp-process-region): Revert.
12150         (pgg-pgp-lookup-key): Revert.
12151
12152         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
12153         (pgg-pgp5-lookup-key): Revert.
12154
12155         * pgg.el (pgg-fetch-key): Revert.
12156
12157 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12158
12159         * lpath.el: Fbind string-as-multibyte for XEmacs.
12160
12161         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
12162         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
12163         (mml1991-pgg-encrypt): Ditto.
12164
12165         * pgg-gpg.el (pgg-string-to-multibyte): New function.
12166         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
12167         a multibyte buffer.
12168
12169         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
12170         (pgg-pgp-lookup-key): Ditto.
12171
12172         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
12173         (pgg-pgp5-lookup-key): Ditto.
12174
12175         * pgg.el (pgg-fetch-key): Ditto.
12176
12177 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
12178
12179         * message.el (message-user-organization-file): Check several
12180         locations of the organization file.
12181
12182         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
12183         Add gnus-article-view-part-as-type.
12184
12185         * gnus-art.el (gnus-article-view-part-as-type): New function.
12186
12187         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
12188         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
12189
12190         * mml.el: Simplify autoload.
12191         (mml-mode): defvar dnd-protocol-alist instead of using
12192         symbol-value.
12193         (mml-default-directory): New variable.
12194         (mml-minibuffer-read-file): Use it.
12195         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
12196
12197         * message.el (message-citation-line-format): New variable.
12198         (message-insert-formated-citation-line): New function.
12199         (message-citation-line-function):
12200         Add `message-insert-formated-citation-line' to custom type.
12201
12202         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
12203         to doc string.
12204
12205         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
12206         depending on mm-verify-option.
12207
12208 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12209
12210         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
12211         binding pgg-* variables; reimplement the section which prevents
12212         MIME header from being signed.
12213         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
12214         pgg-text-mode; remove a blank line at the top of body.
12215
12216         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
12217         lines at the top of body; use gnus-newsgroup-charset if there's no
12218         Charset header.
12219
12220 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12221
12222         * message.el (message-self-insert-commands): Doc fix.
12223
12224         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
12225         (mm-uu-pgp-encrypted-test): Ditto.
12226         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
12227         between header and body; return application/pgp-encrypted handle
12228         if decryption failed; decode decrypted body by charset.
12229
12230         * mm-decode.el (mm-automatic-display): Don't make application/pgp
12231         element match to application/pgp-*.
12232
12233 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12234
12235         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
12236         HTML.
12237
12238 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12239
12240         * mail-source.el (mail-source-call-script): Message the error
12241         string.
12242
12243 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12244
12245         * gnus-util.el (gnus-byte-compile): Use it.
12246
12247 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
12248
12249         * gnus-util.el (kill-empty-logs): New function.
12250
12251 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12252
12253         * message.el (message-mail-alias-type): Doc fix.
12254         (message-mail-alias-type-p): New function.
12255         (message-send): Use it.
12256         (message-mode): Ditto.
12257         (message-strip-forbidden-properties): Ditto.
12258
12259         * ecomplete.el (ecomplete-database-file-coding-system):
12260         New variable.
12261         (ecomplete-save): Use it.
12262         (ecomplete-setup): Use it.
12263
12264 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12265
12266         * message.el (message-self-insert-commands): New variable.
12267         (message-strip-forbidden-properties): Use it.
12268
12269 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12270
12271         * message.el (message-put-addresses-in-ecomplete): Use a regexp
12272         that doesn't make XEmacs choke.
12273
12274 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
12275
12276         * gnus-util.el (gnus-replace-in-string):
12277         Prefer replace-regexp-in-string over of replace-in-string.
12278
12279 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12280
12281         * gnus-util.el (gnus-select-frame-set-input-focus):
12282         Use select-frame-set-input-focus if it is available in XEmacs; use
12283         definition defined in Emacs 22 for old Emacsen.
12284
12285         * dgnushack.el: Autoload unmorse-region for XEmacs.
12286
12287         * lpath.el: Bind cursor-in-non-selected-windows and
12288         select-frame-set-input-focus for XEmacs.
12289
12290 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12291
12292         * mm-view.el (mm-inline-text): Use equal instead of equalp.
12293
12294 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
12295
12296         * gnus-registry.el (gnus-registry-cache-save): Remove text
12297         properties when saving via the temp buffer.
12298
12299 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
12300
12301         * message.el (message-generate-hashcash): Honor custom type.
12302
12303 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12304
12305         * message.el (message-generate-hashcash): Default to non-nil when
12306         hashcash is found.
12307
12308         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
12309         (gnus-refer-thread-limit): Increase default to 500.
12310
12311         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
12312
12313         * flow-fill.el (fill-flowed): Allow delete-space.
12314
12315 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
12316
12317         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
12318         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
12319         Remove autoloads.
12320
12321 2006-04-18  Simon Josefsson  <jas@extundo.com>
12322
12323         * message.el (message-generate-hashcash): Default to.
12324
12325 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
12326
12327         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
12328         concatenating segments rather than before concatenating them.
12329
12330 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
12331
12332         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
12333
12334 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12335
12336         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
12337
12338         * message.el (message-forward-make-body-plain):
12339         Allow message-forward-ignored-headers to be a list.
12340         (message-remove-ignored-headers): Factor out into function.
12341         (message-forward-make-body-mml): Use it.
12342
12343         * imap.el (imap-quote-specials): New function.
12344         (imap-login-auth): Quote specials.
12345
12346         * rfc2231.el (rfc2231-parse-string): Remove dead code.
12347         (rfc2231-parse-string): Allow concatanation of parameters that
12348         aren't contiguous.  The test case is
12349           (mail-header-parse-content-type "message/external-body;
12350             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
12351             access-type=LOCAL-FILE;
12352             name*1*=plugh%2fhello-sailor%2fbing.pdf")
12353
12354 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12355
12356         * nntp.el (nntp-accept-process-output): Return the value of
12357         `nnheader-accept-process-output'.
12358
12359 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12360
12361         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
12362         (gnus-button-alist): Recognize more diff formats.
12363         (gnus-button-patch): Strip directory.
12364
12365 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
12366
12367         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
12368         Emacs 22 when setting focus.
12369
12370 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12371
12372         * gnus-art.el (gnus-article-treat-types): Do treatment of
12373         text/x-verbatim parts.
12374         (gnus-button-patch): New command.
12375
12376         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
12377         addresses that contain invalid characters.
12378
12379 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12380
12381         * message.el (message-put-addresses-in-ecomplete):
12382         Use gnus-replace-in-string.
12383         (message-is-yours-p): Use the more correct
12384         mail-header-parse-address instead of
12385         mail-extract-address-components.
12386         (message-put-addresses-in-ecomplete): Fix typo.
12387
12388         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
12389         keystroke.
12390
12391         * gnus-art.el (gnus-treatment-function-alist): Change order of
12392         newsgroups/generic header folding to avoid double-folding.
12393
12394         * message.el (message-hidden-headers): Add X-Draft-From.
12395
12396         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
12397         New command.
12398         (gnus-summary-repeat-search-article-backward): New command.
12399
12400         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
12401         groups in the parent topic.
12402
12403 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
12404
12405         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
12406         (spam-extra-header-to-number): Return the CRM114 number as a
12407         number instead of a string.
12408
12409 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12410
12411         * gnus-art.el (gnus-face-properties-alist): Move here from
12412         gnus-fun.
12413
12414         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
12415
12416 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12417
12418         * message.el (message-strip-forbidden-properties): Only display on
12419         self-insert-command.
12420
12421         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
12422         reindent.
12423         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
12424
12425 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
12426
12427         * smiley.el (smiley-style): Fix typo.
12428
12429 2006-03-23  Kenichi Handa  <handa@m17n.org>
12430
12431         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
12432         instead of set-buffer-multibyte.
12433
12434 2006-03-23  Kenichi Handa  <handa@m17n.org>
12435
12436         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
12437         buffer and then decode the buffer text if necessary.
12438         (rfc2231-encode-string): Be sure to work on multibyte buffer at
12439         first, and after mm-encode-body, change the buffer to unibyte.
12440
12441 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12442
12443         * hashcash.el (hashcash-insert-payment-async-2):
12444         Use message-goto-eoh instead of doing it manually.
12445         (mail-add-payment): Use message-narrow-to-header instead of trying
12446         to do the same itself.
12447
12448         * message.el (message-hidden-headers): Add Face.
12449
12450         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
12451         reparenting code.
12452         (gnus-summary-reparent-children): Refactored out code.
12453         (gnus-summary-thread-map): New keystroke.
12454         (gnus-summary-reparent-children): Make into command.
12455
12456         * smiley.el (smiley-style): Default to `medium' if using a large
12457         font.
12458
12459         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
12460         does it itself.
12461
12462         * message.el (message-point-in-header-p): Simplify definition.
12463
12464 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12465
12466         * nnagent.el (nnagent-request-set-mark): Silence log file
12467         writing.
12468         (nnagent-request-set-mark): Use write-region instead of
12469         append-to-file.
12470
12471         * gnus-sum.el (gnus-read-header): Fudge article number if using a
12472         strange select method.
12473
12474         * ecomplete.el (ecomplete-display-matches): Get highlightling
12475         right.
12476         (ecomplete-display-matches): Use literals.
12477         (ecomplete-display-matches): Disable message logging.
12478
12479         * message.el (message-display-abbrev): Small optimization.
12480
12481         * ecomplete.el (ecomplete-display-matches): Allow automatic
12482         display.
12483
12484         * message.el (message-strip-forbidden-properties):
12485         Display abbrevs.
12486         (message-display-abbrev): Get automatic display right.
12487
12488         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
12489         keystrokes.
12490
12491 2006-04-13  Romain Francoise  <romain@orebokech.com>
12492
12493         TODO: Backport to v5-10!
12494
12495         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
12496         Move here (and rename) from gnus-registry.el.
12497
12498         * gnus-registry.el: Require gnus-util.
12499         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
12500
12501 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12502
12503         * gnus-group.el (gnus-group-catchup-current):
12504         Change if-then-else-if-then-else into cond.
12505         (gnus-group-catchup): Indent.
12506         (group-name-at-point): New function.
12507         (gnus-fetch-group): Provide default from thing at point.
12508
12509 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12510
12511         * message.el (message-display-abbrev): Fix regexp.
12512
12513         * ecomplete.el (ecomplete-highlight-match-line):
12514         Reimplement choosing.
12515         (ecomplete-highlight-match-line): Fix up code rewrite, remove
12516         dead variables.
12517
12518         * message.el (message-newline-and-indent): Remove debugging.
12519         (message-display-abbrev): Use new implementation.
12520
12521 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
12522
12523         * gnus-art.el (gnus-article-mode):
12524         Set cursor-in-non-selected-windows to nil.
12525
12526         * smiley.el: Revert previous change.
12527         (smiley-data-directory): defvar it before using it in the
12528         defcustom of `smiley-style'.
12529
12530 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12531
12532         * message.el (message-newline-and-indent): New function.
12533
12534         * ecomplete.el: Implement more bits.
12535
12536         * message.el (message-put-addresses-in-ecomplete): Clean up the
12537         string.
12538
12539         * ecomplete.el (ecomplete-add-item): Chop off decimals.
12540
12541         * gnus-sum.el (gnus-summary-save-parts):
12542         Bind gnus-summary-save-parts-counter and use it to make unique file
12543         names.
12544
12545         * gnus-art.el (gnus-ignored-headers): Add some more headers.
12546
12547         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
12548         parameter to say whether to actually parse the individual
12549         addresses.
12550
12551         * message.el (message-put-addresses-in-ecomplete): New function.
12552         (ecomplete): Require.
12553         (message-mail-alias-type): Add ecomplete as an option.
12554
12555 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
12556
12557         * flow-fill.el (fill-flowed): Remove trailing space from blank
12558         quoted lines.
12559
12560 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12561
12562         * smiley.el (smiley-style): Move definition later to avoid a
12563         compilation warning.
12564
12565 2006-04-12  Kenichi Handa  <handa@m17n.org>
12566
12567         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
12568         buffer and then decode the buffer text if necessary.
12569         (rfc2231-encode-string): Be sure to work on multibyte buffer at
12570         first, and after mm-encode-body, change the buffer to unibyte.
12571         Use mm-disable-multibyte instead of set-buffer-multibyte.
12572
12573 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12574
12575         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
12576         Content-Type header instead of Content-Disposition header.
12577         (gnus-mime-inline-part): Ditto.
12578         (gnus-mime-view-part-as-charset): Ignore charset that the part
12579         specifies.
12580
12581         * mm-decode.el (mm-display-part): Work with external parts and
12582         usual parts similarly.
12583
12584         * mm-extern.el (mm-inline-external-body): Use mm-display-part
12585         instead of gnus-display-mime.
12586
12587         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
12588         instead of with-temp-buffer.
12589
12590         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
12591         tag to summarized topics part in order to encode non-ASCII text.
12592
12593 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
12594
12595         * smiley.el (smiley-style): New variable.
12596         (smiley-directory): New function.
12597         (smiley-data-directory): Derive from `smiley-style' using
12598         `smiley-directory'.
12599         (smiley-regexp-alist): Add new entries.
12600
12601         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
12602         (gnus-article-browse-delete-temp): Add :version.
12603
12604 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
12605
12606         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
12607         the sieve region.
12608
12609 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12610
12611         * gnus.el (gnus-version-number): Bump version.
12612
12613 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
12614
12615         * gnus.el: No Gnus v0.4 is released.
12616
12617 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12618
12619         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
12620         layout.
12621
12622         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
12623         unknown charset.
12624
12625         * message.el (message-header-synonyms): Add Original-To to the
12626         default.
12627
12628         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
12629         optional parameter.
12630
12631 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
12632
12633         * gnus-fun.el (gnus): Require it for gnus-directory.
12634
12635 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12636
12637         * gnus-fun.el (gnus-face-properties-alist): Add :version.
12638
12639 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
12640
12641         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
12642
12643 2006-04-05  Simon Josefsson  <jas@extundo.com>
12644
12645         * password.el (password-reset): New function.
12646
12647 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
12648
12649         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
12650         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
12651
12652 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12653
12654         * nnweb.el (nnweb-google-create-mapping): Update regexp.
12655         Some whitespace was matched into the url, which broke browsing hits
12656         > 100 when mm-url-use-external was nil.
12657
12658 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
12659
12660         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
12661         Check gnus-extra-headers for 'Newsgroups.
12662
12663         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
12664         bound.
12665
12666 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
12667
12668         * pgg-gpg.el: Clean up process buffers every time gpg processes
12669         complete.
12670
12671 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
12672
12673         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
12674         doc string.
12675
12676 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
12677
12678         * pgg-gpg.el (pgg-gpg-process-filter)
12679         (pgg-gpg-wait-for-completion): Check if buffer is alive.
12680
12681         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
12682         lines, temporary fix.
12683
12684 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
12685
12686         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
12687
12688 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
12689
12690         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
12691         default-enable-multibyte-characters.  This reverts the change from
12692         revision 6.17 which is no longer necessary because the passphrase
12693         is sent separately now.  GnuPG messages are unreadable under
12694         multibyte locales with default-enable-multibyte-characters set to
12695         nil.
12696
12697 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
12698
12699         * message.el (message-tool-bar-gnome): Move "spell".
12700
12701 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
12702
12703         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
12704         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
12705         instead.
12706
12707 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
12708
12709         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
12710         Improve newsgroups handling for NNTP overviews which don't include
12711         Newsgroups.
12712
12713 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12714
12715         * message.el (message-resend): Bind message-generate-hashcash to nil.
12716
12717 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12718
12719         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
12720         when searching for already-paid recipients.
12721
12722 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
12723
12724         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
12725         passphrases when it is not needed.
12726         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
12727         passphrase stuff from gpg, should only be necessary when you use
12728         gpg with a smartcard.
12729
12730 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12731
12732         * mml.el (mml-insert-mime): Ignore cached contents of
12733         message/external-body part.
12734
12735         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
12736         (mm-insert-part): Ditto.
12737
12738 2006-03-23  Simon Josefsson  <jas@extundo.com>
12739
12740         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
12741         Reiner.
12742         (pgg-gpg-use-agent-p): Use it again.
12743
12744 2006-03-23  Simon Josefsson  <jas@extundo.com>
12745
12746         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
12747         older emacsen.
12748         (pgg-gpg-use-agent-p): Don't use it.
12749
12750 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
12751
12752         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
12753         if we can.
12754
12755 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
12756
12757         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
12758         (pgg-gpg-update-agent): New function.
12759         (pgg-gpg-use-agent-p): New function.
12760         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
12761         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
12762         (pgg-gpg-sign-region): Use it.
12763
12764 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12765
12766         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
12767         Reported by Ralf Wachinger <rwachinger@gmx.de>.
12768
12769 2006-03-21  Simon Josefsson  <jas@extundo.com>
12770
12771         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
12772         <wilde@sha-bang.de>.
12773         (pgg-gpg-use-agent): New variable.
12774         (pgg-gpg-process-region): Use it.
12775         (pgg-gpg-encrypt-region): Likewise.
12776         (pgg-gpg-encrypt-symmetric-region): Likewise.
12777         (pgg-gpg-decrypt-region): Likewise.
12778         (pgg-gpg-sign-region): Likewise.
12779         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
12780
12781 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
12782
12783         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
12784
12785         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
12786         Add comment on version.
12787
12788 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
12789
12790         * smiley.el: Add missing test smiley.
12791
12792 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12793
12794         * mm-decode.el (mm-with-part): New macro.
12795         (mm-get-part): Use it; work with message/external-body as well.
12796         (mm-save-part): Treat name and filename equally.
12797
12798         * mm-extern.el (mm-extern-cache-contents): New function.
12799         (mm-inline-external-body): Use it; force the part to be displayed;
12800         move undisplayer added to the cached handle to the parent.
12801
12802         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
12803         (gnus-mime-view-part-as-type): Work with message/external-body.
12804
12805         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
12806
12807 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
12808
12809         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
12810         images in image-load-path.  [Sync with image.el, revision 1.60, in
12811         Emacs.]
12812
12813 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
12814
12815         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
12816         path rather than symbol.  Always return list of directories.
12817         Guarantee that image directory comes first.  [Sync with image.el,
12818         revision 1.59, in Emacs.]
12819
12820         * message.el (message-make-tool-bar): Adjust to new API of
12821         `gmm-image-load-path-for-library'.
12822
12823         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
12824
12825         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
12826
12827 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
12828
12829         * gnus-art.el (gnus-article-only-boring-p):
12830         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
12831         intangible text.
12832         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
12833
12834 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
12835
12836         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
12837         Use `defun' instead of `gmm-defun-compat'.
12838
12839 2006-03-14  Simon Josefsson  <jas@extundo.com>
12840
12841         * message.el (message-unique-id): Don't use message-number-base36
12842         if (user-uid) is a float.
12843         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
12844
12845 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12846
12847         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
12848
12849         * gnus-art.el (gnus-mime-display-single): Make sure there is an
12850         empty line between a part and a message part.
12851
12852 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
12853
12854         * smiley.el: Add more test smileys.
12855         (smiley-data-directory, smiley-regexp-alist)
12856         (gnus-smiley-file-types): Fix doc strings.
12857         (smiley-update-cache): Clear smiley-cached-regexp-alist before
12858         adding new elements.
12859         (smiley-mouse-map): Unused code.  Make it a comment.
12860
12861 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12862
12863         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
12864         scan latest NoCeM messages instead of old ones.
12865         (gnus-nocem-check-article): Fix regexps so as to match to PGP
12866         delimiters that are recently used.
12867         (gnus-nocem-load-cache): Add autoload cookie.
12868
12869         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
12870
12871         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
12872         level which is larger than gnus-use-nocem is specified.
12873
12874         * gnus-group.el (gnus-group-get-new-news): Ditto.
12875
12876 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
12877
12878         * gnus-util.el (gnus-tool-bar-update): New function.
12879
12880         * gnus-group.el (gnus-group-update-tool-bar): New variable.
12881         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
12882
12883         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
12884
12885         * gnus-group.el (gnus-group-redraw-when-idle)
12886         (gnus-group-redraw-check): Remove.
12887         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
12888
12889 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12890
12891         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
12892         if optional last element is specified in splits (FIELD VALUE...).
12893
12894 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
12895
12896         * message.el (message-make-tool-bar): Rename gmm-image-load-path
12897         to gmm-image-load-path-for-library.  Call with no-error argument.
12898         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
12899
12900         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
12901
12902         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
12903
12904         * gmm-utils.el (gmm-image-load-path): Remove alias.
12905
12906 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
12907
12908         * gmm-utils.el (gmm-image-load-path): Add alias.
12909
12910         * nnml.el (nnml-generate-nov-databases-directory): Rename from
12911         nnml-generate-nov-databases-1.
12912         (nnml-generate-nov-databases): Use it.
12913         (nnml-generate-nov-databases-directory): Document no-active
12914         argument.
12915
12916         * gmm-utils.el (gmm-image-load-path-for-library): Return single
12917         directory if path is t.  Add no-error.
12918
12919         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
12920         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
12921
12922         * gnus-art.el (gnus-article-browse-delete-temp-files):
12923         Simplify resetting gnus-article-browse-html-temp-list.
12924
12925         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
12926         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
12927         Add example to docstring.  Rename local variables.  Move error
12928         checks to default case in cond and simplify.
12929
12930 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12931
12932         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
12933         handle is multipart when calling it recursively.
12934         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
12935
12936 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
12937
12938         * nnimap.el (nnimap-request-update-info-internal): Optimize.
12939         Don't `gnus-uncompress-range' to avoid excessive memory usage.
12940
12941 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12942
12943         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
12944         is loaded.
12945
12946         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
12947         loaded.
12948
12949 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
12950
12951         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
12952         to "Emacs 23 (unicode)" in doc string.
12953
12954         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
12955         "Emacs 23 (unicode)" in comment.
12956
12957 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12958
12959         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
12960
12961         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
12962         characters 160 through 255 in Emacs 23.
12963
12964 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
12965
12966         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
12967         gnus-article-browse-html-temp.
12968         (gnus-article-browse-delete-temp): Make it customizable.
12969         Add `file'.  Adjust doc string.
12970         (gnus-article-browse-delete-temp-files): Add argument.
12971         Allow query for each file.  Adjust doc string.
12972         (gnus-article-browse-html-parts):
12973         Add `gnus-article-browse-delete-temp-files' to
12974         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
12975
12976 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
12977
12978         * gnus-art.el (gnus-article-browse-html-temp)
12979         (gnus-article-browse-delete-temp): New variables.
12980         (gnus-article-browse-delete-temp-files): New function.
12981         (gnus-article-browse-html-parts): Use it.
12982
12983 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
12984
12985         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
12986
12987         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
12988         string.
12989
12990         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
12991         gnus-summary-insert-new-articles when unplugged.
12992         Remove gnus-summary-search-article-forward.
12993
12994         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
12995         display-visual-class instead of display-color-cells.
12996
12997 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12998
12999         * dgnushack.el: Autoload customize-group for XEmacs.
13000
13001         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
13002         message/* containing non-ASCII text properly.
13003
13004 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
13005
13006         * message.el: Require gmm-utils, remove autoloads.
13007         (message-tool-bar): Set default based on
13008         gmm-tool-bar-style.
13009         (message-tool-bar-gnome): Add gmm-customize-mode.
13010
13011         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
13012         gmm-tool-bar-style.
13013         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
13014
13015         * gnus-group.el (gnus-group-tool-bar): Set default based on
13016         gmm-tool-bar-style.
13017         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
13018
13019         * gmm-utils.el (gmm-image-directory): Rename variable from
13020         gmm-image-load-path.
13021         (gmm-image-load-path): Use gmm-image-directory.
13022         (gmm-customize-mode): New function.
13023         (gmm-tool-bar-style): New variable.
13024
13025         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
13026         gnus-group-redraw-line-number.
13027         (gnus-group-redraw-check): Simplify.
13028         (gnus-group-tool-bar-update): Remove redraw check.
13029         (gnus-group-make-tool-bar): Add redraw check.
13030
13031 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
13032
13033         * gnus-art.el (gnus-button): Add missing parentheses.
13034
13035 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13036
13037         * lpath.el: Fbind line-number-at-pos.
13038
13039 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13040
13041         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
13042
13043 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
13044
13045         * gnus-art.el (gnus-button): New face.
13046         (gnus-article-button-face): Use it.
13047
13048         * gnus-sum.el (gnus-summary-tool-bar-gnome):
13049         Add gnus-summary-next-page.  Re-order.
13050
13051         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
13052         next-node are now included.
13053         (gnus-group-redraw-line-number): New internal variable.
13054         (gnus-group-redraw-check): Helper function for updating the tool
13055         bar.
13056         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
13057
13058         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
13059
13060         * spam.el (spam-spamassassin-score-regexp): New internal variable.
13061         (spam-extra-header-to-number, spam-check-spamassassin-headers):
13062         Use it to match format of Spamassassin 3.0 and later.
13063         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
13064         (spam-check-bogofilter)
13065         (spam-bogofilter-register-with-bogofilter): Fix args of
13066         `gnus-error' calls.
13067
13068 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
13069
13070         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
13071         unnecessary interaction when sending queued mails.
13072         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
13073
13074 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
13075
13076         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
13077         first or last are nil.
13078
13079 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
13080
13081         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
13082
13083 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13084
13085         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
13086
13087 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13088
13089         * dns.el (query-dns): Protect more against buggy tcp output.
13090
13091 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
13092
13093         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
13094         nov.php.
13095
13096 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
13097
13098         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
13099         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
13100         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
13101         output on the server side.
13102         (nnweb-google-create-mapping): Update regexps and add some
13103         progress indication.
13104
13105 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
13106
13107         * gnus-group.el (gnus-group-tool-bar-gnome):
13108         Fix gnus-agent-toggle-plugged.  Re-order icons.
13109         (gnus-group-tool-bar-gnome):
13110         Add gnus-group-{prev,next}-unread-group.
13111         (gnus-group-tool-bar-gnome): Re-order icons.
13112
13113         * gnus-sum.el (gnus-summary-tool-bar-gnome):
13114         Move gnus-summary-insert-new-articles.
13115
13116         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
13117         Fix comments.
13118
13119         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
13120         also available in Emacs 21.3.
13121
13122         * message.el (message-fix-before-sending): Change "Emacs 22" to
13123         "Emacs 23 (unicode)" in comment.
13124
13125         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
13126         "Emacs 23 (unicode)" in comment.
13127
13128         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
13129         comment.
13130         (mm-coding-system-p): Add comment about no-MULE XEmacs.
13131
13132         * mm-view.el (mm-fill-flowed): Add :version.
13133
13134 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13135
13136         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
13137         and load-path.
13138
13139 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
13140
13141         * message.el: Autoload gmm-image-load-path.
13142         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
13143         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
13144         consitency.
13145
13146         * gmm-utils.el (gmm-image-load-path): Also search in
13147         "../etc/images".  Don't set gmm-image-load-path if we don't find
13148         the image.
13149
13150 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13151
13152         * gmm-utils.el (gmm-image-load-path): Don't make
13153         `gmm-image-load-path' include subdirectories which the second arg
13154         `image' might specify.
13155
13156         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
13157         subdirectory to icon file names.
13158
13159         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
13160
13161 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
13162
13163         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
13164         gmm-image-load-path calls.
13165
13166         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
13167
13168         * message.el (message-make-tool-bar): Ditto.
13169
13170         * mml.el (mml-preview): Add comment concerning tool bar icons.
13171
13172         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
13173         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
13174
13175         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
13176         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
13177
13178         * message.el (message-tool-bar-gnome): Use new icon names.
13179         (message-make-tool-bar): Use `gmm-image-load-path'.
13180
13181         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
13182         New functions from MH-E.
13183         (gmm-image-load-path): New variable from MH-E.
13184         (gmm-image-load-path): New function from MH-E.  Add arguments
13185         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
13186         *-image-load-path-called-flag.
13187
13188 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
13189
13190         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
13191
13192 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
13193
13194         * nnimap.el (nnimap-request-move-article): Change folder back to
13195         source group before deleting.
13196
13197 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
13198
13199         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
13200
13201         * gnus-art.el (mm-url-insert-file-contents-external):
13202         Autoload mm-url.
13203
13204         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
13205
13206 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13207
13208         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
13209         coding system which mm-charset-to-coding-system returns for a
13210         given charset is valid.
13211
13212 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
13213
13214         * html2text.el (html2text-remove-tag-list):
13215         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
13216
13217 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
13218
13219         * gnus-cus.el: Revert 2005-10-17 change.
13220
13221 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13222
13223         * gnus-art.el (article-strip-banner):
13224         Call article-really-strip-banner only when the regexp match is made.
13225
13226 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13227
13228         * gnus-art.el (article-strip-banner):
13229         Use gnus-extract-address-components instead of
13230         mail-header-parse-addresses to make it work with non-ASCII text;
13231         remove mail-encode-encoded-word-string.
13232
13233         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
13234         values which are surrounded with \"...\"; make it never cause a
13235         Lisp error; give up parsing of parameters if it failed in
13236         extracting type.
13237
13238 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
13239
13240         * smime.el (smime-cert-by-ldap-1): Fix bug where
13241         `smime-ldap-search' returns results without userCertificates.
13242
13243 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13244
13245         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
13246
13247 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
13248
13249         * spam.el (spam-check-spamassassin-headers): Adapt format for
13250         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
13251         <ari@mbf.ocn.ne.jp>.
13252         (spam-list-of-processors): Add spam-use-gmane.
13253
13254 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13255
13256         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
13257         make-temp-file; make it work with XEmacs as well.
13258
13259         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
13260         mm-make-temp-file.
13261
13262         * mm-decode.el (mm-display-external): Use the 3rd arg of
13263         mm-make-temp-file.
13264         (mm-create-image-xemacs): Ditto.
13265
13266 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13267
13268         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
13269         with message-narrow-to-headers.
13270         (gnus-draft-setup): Narrow to header to run message-fetch-field.
13271         (gnus-draft-check-draft-articles): New function.
13272         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
13273
13274 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
13275
13276         * gnus-art.el (gnus-article-browse-html-parts):
13277         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
13278         Don't use suffix argument for mm-make-temp-file for Emacs 21
13279         compatibility.  Remove useless `format'.
13280
13281 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
13282
13283         * nnweb.el (nnweb-google-wash-article): Update regexps.
13284         (nnweb-group-alist): Use defvoo instead of defvar.
13285
13286 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13287
13288         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
13289         re-loading nn* modules.
13290
13291 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
13292
13293         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
13294         for `tool-bar-mode' and don't check it's default-value.
13295
13296         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
13297
13298         * message.el (message-make-tool-bar): Ditto.
13299
13300         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
13301         `substring'.  Shorten tmp-file name.
13302
13303         * gnus.el: Remove bogus comment.
13304
13305 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
13306
13307         * gnus-art.el (gnus-article-browse-html-parts): New function.
13308         (gnus-article-browse-html-article): New function for viewing html
13309         articles with a browser.
13310
13311 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
13312
13313         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
13314         in elisp.
13315         (pgg-gpg-encrypt-symmetric-region): Ditto.
13316         (pgg-gpg-sign-region): Ditto.
13317
13318         * pgg-def.el (pgg-text-mode): New variable.
13319
13320         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
13321         (mml2015-pgg-encrypt): Ditto.
13322
13323         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
13324         (mml1991-pgg-encrypt): Ditto.
13325
13326 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13327
13328         * nnfolder.el (nnfolder-insert-newsgroup-line):
13329         Use message-make-date instead of current-time-string.
13330
13331         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
13332         to gnus-decoded which mm-uu might set.
13333
13334 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13335
13336         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
13337         don't decode quoted parameters; remove misimported Emacs code.
13338         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
13339         (rfc2231-decode-encoded-string): Don't use split-string which
13340         behaves differently according to Emacs version; use
13341         mm-decode-coding-region to convert charset to coding-system.
13342         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
13343         (rfc2231-encode-string): Remove misimported Emacs code.
13344
13345 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13346
13347         * gnus-art.el (article-decode-charset): Don't use ignore-errors
13348         when calling mail-header-parse-content-type.
13349         (article-de-quoted-unreadable): Ditto.
13350         (article-de-base64-unreadable): Ditto.
13351         (article-wash-html): Ditto.
13352
13353         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
13354         calling mail-header-parse-content-type and
13355         mail-header-parse-content-disposition.
13356         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
13357         mail-header-parse-content-type.
13358
13359         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
13360         insert charset and format parameters; encode description after
13361         inserting it to buffer.
13362         (mml-insert-parameter): Fold lines properly even if a parameter is
13363         segmented into two or more lines; change the max column to 76.
13364
13365         * rfc1843.el (rfc1843-decode-article-body): Don't use
13366         ignore-errors when calling mail-header-parse-content-type.
13367
13368         * rfc2231.el (rfc2231-parse-string): Return at least type if
13369         possible; don't cause an error even if it fails in parsing of
13370         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
13371         (rfc2231-encode-string): Don't break lines at the beginning, leave
13372         it to mml-insert-parameter.
13373
13374         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
13375         calling mail-header-parse-content-type.
13376
13377 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
13378
13379         * spam-report.el (spam-report-gmane-use-article-number):
13380         Improve doc string.
13381         (spam-report-gmane-internal): Check if a suitable header was found
13382         in the article.
13383
13384 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
13385
13386         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
13387         (rfc2231-encode-string): Make param*=value always begin with LWSP.
13388
13389 2006-02-05  Romain Francoise  <romain@orebokech.com>
13390
13391         Update copyright notices of all files in the gnus directory.
13392
13393 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
13394
13395         * nnweb.el (nnweb-request-group): Avoid growing overview files.
13396
13397 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13398
13399         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
13400         segmented lines of parameter value to cope with Thunderbird 1.5
13401         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
13402         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
13403         (rfc2231-encode-string): Don't make lines exceeding 76 column.
13404
13405 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
13406
13407         * mml.el (mml-generate-mime-1): Correct the order of inline signed
13408         parts.
13409
13410 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
13411
13412         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
13413         there's only one active file for all servers.
13414         (nnweb-request-scan): Make sure nnweb-articles is initialized on
13415         solid groups.  Gnus might have used a FAST request to select the group.
13416         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
13417         and nnweb-search redundantly in the active file.
13418         (nnweb-request-list): Don't list bogus groups.  There can only be one.
13419         (nnweb-request-create-group): Don't use ARGS.
13420         (nnweb-possibly-change-server, nnweb-request-group): Remove some
13421         initialisations.  Let nnoo do the work.
13422
13423 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13424
13425         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
13426         Say the part has been decoded.
13427
13428         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
13429
13430 2006-01-31  Kevin Ryde  <user42@zip.com.au>
13431
13432         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
13433         mailcap-viewer-test-cache when there's no 'test clause, since that
13434         will invert the meaning of a "nil" test previously determined by
13435         mailcap-mailcap-entry-passes-test.
13436
13437 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13438
13439         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
13440         compiling.
13441
13442         * gnus-sum.el: Ditto.
13443
13444         * message.el: Don't bind tool-bar-map when compiling.
13445
13446 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
13447
13448         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
13449
13450 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
13451
13452         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
13453         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
13454         current Google Groups.
13455
13456 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
13457
13458         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
13459         and tool-bar-mode.
13460
13461         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
13462         and tool-bar-mode.
13463
13464         * message.el (message-tool-bar-update): Simplify.
13465         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
13466
13467         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
13468         gnus-summary-buffer.
13469         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
13470         gnus-summary-reply.
13471
13472         * gmm-utils.el (gmm): Add :version.
13473
13474 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13475
13476         * Makefile.in (clean): New rule.
13477         (distclean): Use it.
13478
13479 2006-01-26  Steve Youngs  <steve@sxemacs.org>
13480
13481         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
13482         Don't autoload.
13483
13484 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13485
13486         * gmm-utils.el (gmm-verbose): Add :group.
13487
13488 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
13489
13490         * message.el: Change some comments WRT tool-bars.
13491
13492         * gnus-sum.el (gnus-summary-tool-bar)
13493         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
13494         (gnus-summary-tool-bar-zap-list): New variables.
13495         (gnus-summary-make-tool-bar): Complete rewrite using
13496         `gmm-tool-bar-from-list'.
13497
13498         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
13499         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
13500         New variables.
13501         (gnus-group-make-tool-bar): Complete rewrite using
13502         `gmm-tool-bar-from-list'.
13503         (gnus-group-tool-bar-update): New function.
13504
13505         * message.el (message-mode-field-menu): Add "Show hidden Headers".
13506
13507 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13508
13509         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
13510         is dissected into a single part of which the type is the same as
13511         the given one; decode charset.
13512
13513 2006-01-21  Kevin Ryde  <user42@zip.com.au>
13514
13515         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
13516         into alists as symbol not string, since that's what
13517         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
13518         look for.
13519
13520 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
13521
13522         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
13523         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
13524
13525         * message.el (message-tool-bar-gnome): Use gmm-ignore.
13526
13527 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13528
13529         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
13530         (gnus-xmas-mime-security-button-menu): New function.
13531
13532         * gnus-art.el (gnus-mime-security-button-commands): New variable.
13533         (gnus-mime-security-button-menu): New definition.
13534         (gnus-mime-security-button-map): Use them.
13535         (gnus-mime-security-button-menu): New function.
13536         (gnus-insert-mime-security-button): Addition to help echo.
13537         (gnus-mime-security-run-function, gnus-mime-security-save-part)
13538         (gnus-mime-security-pipe-part): New functions.
13539
13540         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
13541         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
13542
13543         * mm-decode.el (mm-handle-set-disposition): Remove.
13544         (mm-handle-set-description): Remove.
13545
13546 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13547
13548         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
13549         (mm-w3m-standalone-supports-m17n-p): New function.
13550         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
13551         w3m usage.
13552
13553         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
13554         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
13555
13556 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
13557
13558         * message.el (message-tool-bar-zap-list):
13559         Use gmm-tool-bar-zap-list as custom type.
13560         (message-tool-bar-update): New function.
13561         (message-tool-bar, message-tool-bar-gnome)
13562         (message-tool-bar-retro): Add message-tool-bar-update.
13563         (message-tool-bar-gnome): Add flyspell-buffer.
13564
13565         * gnus-util.el (gnus-error): Describe `args'.
13566
13567         * gmm-utils.el (gmm-error): Describe `args'.
13568         (gmm-tool-bar-zap-list): New widget.
13569         (gmm-tool-bar-from-list): Improve description of `zap-list'.
13570
13571 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13572
13573         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
13574         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
13575         the number of recursive calls.
13576
13577         * mm-decode.el (mm-handle-set-disposition): New macro.
13578         (mm-handle-set-description): New macro.
13579
13580 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13581
13582         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
13583         encoding.
13584
13585 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
13586
13587         * message.el (message-tool-bar-zap-list, message-tool-bar)
13588         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
13589         (message-tool-bar-local-item-from-menu): Remove.
13590         (message-tool-bar-map): Replace by `message-make-tool-bar'.
13591         (message-make-tool-bar): New function.
13592         (message-mode): Use `message-make-tool-bar'.
13593
13594         * gmm-utils.el: New file.
13595         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
13596         (gmm-lazy): New widget copied from `nnmail.el'.
13597         (gmm-tool-bar-from-list): New function for creating customizable
13598         tool bars.
13599         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
13600         output.
13601         (gmm): Add :prefix to defgroup.
13602
13603 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
13604
13605         * gmm-utils.el (gmm-widget-p): New function.
13606
13607 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
13608
13609         * mml.el (mml-attach-file): Describe `description' in doc string.
13610         (mml-menu): Add Emacs MIME manual and PGG manual.
13611
13612 2006-01-20  Richard M. Stallman  <rms@gnu.org>
13613
13614         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
13615
13616 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
13617
13618         * nntp.el (nntp-end-of-line): Doc fix.
13619
13620 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
13621
13622         * imap.el (imap-open): Handle case where buffer is a buffer
13623         object.
13624
13625 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13626
13627         * gnus-delay.el (gnus-delay): Don't autoload.
13628         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
13629         to be re-loaded when customizing the `gnus-delay' group.
13630
13631 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
13632
13633         * message.el (message-insert-citation-line): Use newlines.
13634
13635 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
13636
13637         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
13638         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
13639         these routines, so the passphrase can be managed externally and
13640         passed in to the system.
13641         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
13642         pgg-add-passphrase-to-cache function.
13643
13644         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
13645         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
13646         these routines, so the passphrase can be managed externally and
13647         passed in to the system.
13648         (pgg-pgp5-sign-region): Use new name of
13649         pgg-add-passphrase-to-cache function.
13650
13651 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
13652
13653         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
13654         part of the decoded armor to find the key-identifier.
13655         (pgg-gpg-lookup-key-owner): New function to return the
13656         human-readable identifier of a key owner.
13657         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
13658         itself.
13659         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
13660         the key value) if we have a key and can match it against a secret
13661         key.  Also, added a note pointing out fact that the prompt only
13662         indicates the first matching key.
13663
13664         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
13665         pgg-decrypt-region.
13666         (pgg-add-passphrase-to-cache): Rename from
13667         `pgg-add-passphrase-cache' to reduce confusion (all callers
13668         changed).
13669         (pgg-remove-passphrase-from-cache): Rename from
13670         `pgg-remove-passphrase-cache' to reduce confusion (all callers
13671         changed).
13672         (pgg-read-passphrase, pgg-add-passphrase-cache)
13673         (pgg-remove-passphrase-cache): Add informative docstrings.
13674         (pgg-decrypt): Convey provided passphrase in subordinate call to
13675         pgg-decrypt-region.
13676
13677 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
13678
13679         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
13680         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
13681         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
13682         'passphrase' argument, so the passphrase can be managed externally
13683         and then passed in to the system.
13684
13685         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
13686         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
13687         so the passphrase cache can be used reliably with identifiers
13688         besides a pgp packet's key id.
13689
13690         * pgg-gpg.el (pgg-gpg-encrypt-region)
13691         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
13692         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
13693         these routines, so the passphrase can be managed externally and
13694         passed in to the system.
13695
13696         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
13697         'notruncate' argument, so the passphrase cache can be used
13698         reliably with identifiers besides a pgp packet's key id.
13699
13700 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
13701
13702         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
13703         symmetric encryption.
13704         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
13705         encrypted session key.
13706         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
13707         message ask for the passphrase in a proper way.
13708
13709         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
13710         New user commands for symmetric encryption.
13711
13712 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
13713
13714         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
13715
13716         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
13717
13718 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
13719
13720         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
13721
13722 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13723
13724         * mm-decode.el (mm-inlined-types): Add application/pgp.
13725         (mm-automatic-display): Ditto.
13726
13727         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
13728         part as text.
13729
13730 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13731
13732         * nnrss.el: Update copyright.
13733         (nnrss-opml-import): Query whether to subscribe to each entry.
13734
13735         * gnus-art.el:
13736         * gnus-sum.el:
13737         * gnus-xmas.el:
13738         * messagexmas.el:
13739         * mm-uu.el:
13740         * mm-view.el: Update copyright.
13741
13742 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
13743
13744         * message.el (message-info): New function.
13745         (message-mode-menu): Add it.
13746         Update copyright.
13747
13748         * ChangeLog: Fix and update copyright.
13749
13750 2006-01-13  Romain Francoise  <romain@orebokech.com>
13751
13752         * message.el (message-forward-subject-name-subject): Prefer the
13753         address to 'nowhere' if the sender has no name.
13754         Fix typo.  Update copyright year.
13755
13756 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13757
13758         * gnus-art.el (article-wash-html):
13759         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
13760         (gnus-article-wash-html-with-w3m-standalone): New function.
13761
13762         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
13763         mm-inline-text-html-render-with-w3m-standalone.
13764         (mm-text-html-washer-alist): Map w3m-standalone to
13765         gnus-article-wash-html-with-w3m-standalone.
13766         (mm-inline-text-html-render-with-w3m-standalone): New function.
13767
13768 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
13769
13770         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
13771         Improve LaTeX.
13772
13773 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13774
13775         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
13776         (nnrss-request-article): Render text/plain parts as HTML.
13777
13778         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
13779         the buffer.
13780
13781 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
13782
13783         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
13784         custom definition of `gnus-posting-styles'.
13785
13786         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
13787         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
13788
13789 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
13790
13791         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
13792         Use nntp for bug archive.
13793
13794 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13795
13796         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
13797         parts.
13798         (nnrss-normalize-date): New function converts ISO 8601 date into
13799         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
13800         (nnrss-check-group): Use it.
13801
13802 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13803
13804         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
13805
13806         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
13807         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
13808         (nnrss-insert-w3): Ditto.
13809
13810 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13811
13812         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
13813         the articles to be forwarded including the case where neither a
13814         number of articles nor a region is specified.
13815
13816 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13817
13818         * nnrss.el (nnrss-request-article): Fix last change; fill
13819         text/plain parts.
13820
13821 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13822
13823         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
13824         in text/plain part.
13825         (nnrss-check-group): Don't add excessive newline to dc:subject.
13826
13827 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
13828
13829         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
13830         article.
13831
13832 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
13833
13834         * nnml.el: Don't require gnus-bcklg.  Autoload it.
13835         (nnml-use-compressed-files, nnml-save-mail): Support other
13836         comression programs such as bzip2.
13837
13838 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13839
13840         * dns.el (query-dns): Make sure we check the buffer size before
13841         removing tcp headers.
13842
13843 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13844
13845         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
13846         remove MIME buttons associated with multipart/alternative parts.
13847         (gnus-mime-display-alternative): Tag buttons using `article-type'
13848         text property.
13849
13850         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
13851         associated with multipart/alternative parts.
13852
13853         * gnus-art.el (gnus-signature-separator): Fix custom type.
13854
13855         * mm-decode.el (mm-inlined-types): Fix custom type.
13856         (mm-keep-viewer-alive-types): Ditto.
13857         (mm-automatic-display): Ditto.
13858         (mm-attachment-override-types): Ditto.
13859         (mm-inline-override-types): Ditto.
13860         (mm-automatic-external-display): Ditto.
13861
13862 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
13863
13864         * spam-report.el (spam-report-user-mail-address)
13865         (spam-report-user-agent): New variables.
13866         (spam-report-url-ping-plain): Use spam-report-user-agent.
13867
13868 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
13869
13870         * gnus-art.el (gnus-button-handle-custom): Do not just use
13871         `customize-apropos' for any "M-x customize-*" button but the
13872         function called for.  Accept both the function name and its
13873         argument in order to achieve this.
13874         (gnus-button-alist): Remove support for "custom:" URL's.
13875         Pass function name to `gnus-button-handle-custom' in case of "M-x
13876         customize-*" buttons.
13877
13878 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13879
13880         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
13881         multipart/alternative and add xref to mm-discouraged-alternatives
13882         in doc string.
13883
13884         * mm-decode.el (mm-discouraged-alternatives): Add xref to
13885         gnus-buttonized-mime-types in doc string.
13886
13887 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
13888
13889         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
13890         Suggest image/.* in the doc string.
13891
13892 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
13893
13894         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
13895         message-marks (Debian bug #342521).
13896
13897 2005-12-12  Simon Josefsson  <jas@extundo.com>
13898
13899         * password.el (password-read-from-cache): Add.
13900         (password-read): Use it.
13901
13902 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13903
13904         * rfc2047.el (rfc2047-charset-to-coding-system):
13905         Recognize us-ascii as a MIME charset.
13906
13907         * mm-bodies.el (mm-decode-content-transfer-encoding):
13908         Protect against the case where the 2nd arg TYPE is nil.
13909
13910 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
13911
13912         * pop3.el (pop3-stream-type): Fix custom version.
13913
13914         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
13915
13916 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
13917
13918         * mm-decode.el (mm-display-external): Add missing cdr.
13919
13920 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13921
13922         * mm-decode.el (mm-display-external): Use nametemplate (defined in
13923         RFC1524) if it is in mailcap or add a suffix according to
13924         mailcap-mime-extensions when generating a temp filename; postpone
13925         deleting a temp file for 2 seconds for some wrappers, shell
13926         scripts, and so on, which might exit right after having started a
13927         viewer command as a background job.
13928
13929 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
13930
13931         * nntp.el (nntp-marks-directory): Fix custom group.
13932
13933         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
13934         steps when < 10.
13935
13936         * gnus-start.el (gnus-no-server-1):
13937         Mention `gnus-level-default-subscribed' in doc string.
13938
13939 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
13940
13941         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
13942         parens.
13943
13944 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13945
13946         * gnus-xmas.el (gnus-use-toolbar): Revert.
13947         (gnus-xmas-setup-toolbar): Use global default-toolbar if
13948         gnus-use-toolbar is default.
13949
13950         * messagexmas.el (message-use-toolbar): Revert.
13951         (message-setup-toolbar): Use global default-toolbar if
13952         message-use-toolbar is default.
13953
13954 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13955
13956         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
13957         according to default-toolbar-visible-p.
13958
13959         * messagexmas.el (message-use-toolbar): Ditto.
13960
13961 2005-11-26  Dave Love  <fx@gnu.org>
13962
13963         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
13964         (tls-program, tls-success): Provide openssl alternative.
13965
13966         * starttls.el: Doc fixes.
13967         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
13968         SERVICE to PORT.
13969
13970         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
13971         port null or service name.
13972         (starttls-negotiate): Autoload.
13973
13974 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13975
13976         * message.el (message-kill-to-signature): Fix interactive spec.
13977
13978 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13979
13980         * pop3.el (pop3-open-server): Recognize a string as a service name.
13981
13982 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
13983
13984         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
13985
13986 2005-11-23  Dave Love  <fx@gnu.org>
13987
13988         Add pop3s, pop3/starttls.
13989
13990         * pop3.el (pop3-authentication-scheme): Clarify doc.
13991         (open-tls-stream, starttls-open-stream): Autoload.
13992         (pop3-stream-type): New.
13993         (pop3-open-server): Use it.
13994
13995         * mail-source.el (mail-sources): Fix some :types.  Add stream type
13996         for POP.
13997         (mail-source-keyword-map): Add :stream for POP.
13998         (mail-source-fetch-pop): Use pop3-stream-type.
13999
14000 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14001
14002         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
14003         of current-time-string.
14004
14005 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
14006
14007         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
14008         date header.
14009
14010 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
14011
14012         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
14013         it can seriously impact performance as it bypasses the agent's
14014         local caches.
14015
14016 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
14017
14018         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
14019         must be explicitly online rather than "not explicitly offline" for
14020         its flags to be synchronized.
14021
14022         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
14023         that gnus-uu-unmark-thread will function correctly.
14024
14025         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
14026         1024K is instead displayed as 1M.
14027
14028 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14029
14030         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
14031
14032 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
14033
14034         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
14035
14036 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
14037
14038         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
14039         error message to display actual error condition.
14040         (gnus-agent-save-local): Avoid saving symbols that are bound to
14041         nil as they simply result in a warning message in
14042         gnus-agent-read-local.
14043
14044 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14045
14046         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
14047         rather than make-variable-buffer-local for file-precious-flag.
14048
14049 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
14050
14051         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
14052         for duplicates which are removed.  The invalid sort check then
14053         triggers a rescan after the sort as sorting may have moved
14054         duplicate entries such that they can be cheaply detected.
14055
14056 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14057
14058         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
14059
14060 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
14061
14062         * gnus-agent.el (gnus-agent-article-alist-save-format):
14063         Change internal variable to a custom variable.  Change default value
14064         from compressed(2) to uncompressed(1).
14065         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
14066         support for uncompressed agentview files.  Taken together, reading
14067         the agentview file should now be 6-7 times faster.
14068
14069 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
14070
14071         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
14072         as a buffer-local variable.  This avoids creating truncated
14073         dribble files as a result of a hang up, eg.
14074
14075 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
14076
14077         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
14078         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
14079         XEmacs.
14080
14081 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
14082
14083         * gnus-start.el (gnus-start-draft-setup):
14084         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
14085
14086         * gnus.el (gnus-splash): Change custom group.
14087         (gnus-group-get-parameter, gnus-group-parameter-value):
14088         Describe allow-list argument.
14089
14090         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
14091         string.
14092
14093 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
14094
14095         * gnus-art.el (gnus-default-article-saver): Add user-defined
14096         `function' to custom type.
14097
14098 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
14099
14100         * imap.el (imap-open): Handle case where buffer is a buffer
14101         object.
14102
14103 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
14104
14105         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
14106         long lines.
14107         (gnus-cache-delete-group): Wrap doc strings.
14108
14109         * gnus-agent.el (gnus-agent-rename-group)
14110         (gnus-agent-delete-group): Wrap doc strings.
14111
14112 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14113
14114         * messagexmas.el (message-use-toolbar): Change the valid values
14115         into default, top, bottom, left, and right.
14116         (message-toolbar-thickness): New variable.
14117         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
14118         well.
14119         (message-setup-toolbar): Make it work.
14120
14121         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
14122         (gnus-use-toolbar): Change the valid values into default, top,
14123         bottom, left, and right.
14124         (gnus-toolbar-thickness): New variable.
14125         (gnus-xmas-setup-toolbar): New function.
14126         (gnus-xmas-setup-group-toolbar): Use it.
14127         (gnus-xmas-setup-summary-toolbar): Use it.
14128
14129 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14130
14131         * gnus-start.el (gnus-1): Add "native" to
14132         gnus-predefined-server-alist.
14133
14134         * gnus.el (gnus-method-to-server): Don't add "native" to the
14135         lists here, because that leads to problems when
14136         gnus-select-method is bound.
14137
14138 2005-11-09  Simon Josefsson  <jas@extundo.com>
14139
14140         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
14141         use (not sort-by-date) instead.
14142
14143 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14144
14145         * gnus-delay.el (gnus-delay-group): Don't autoload.
14146         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
14147         to be re-loaded when customizing the `gnus-delay' group.
14148
14149 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
14150
14151         * message.el: Revert last changes.
14152         (message-insert-citation-line): Use newlines.
14153
14154 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
14155
14156         * message.el (message-courtesy-message)
14157         (message-mark-insert-begin, message-mark-insert-end)
14158         (message-elide-ellipsis, message-cancel-message)
14159         (message-add-header, message-change-subject)
14160         (message-cross-post-followup-to-header)
14161         (message-cross-post-insert-note, message-reduce-to-to-cc)
14162         (message-widen-reply, message-delete-not-region)
14163         (message-kill-to-signature, message-insert-signature)
14164         (message-insert-importance-high, message-insert-importance-low)
14165         (message-insert-or-toggle-importance)
14166         (message-insert-disposition-notification-to)
14167         (message-indent-citation, message-yank-original)
14168         (message-cite-original-without-signature, message-cite-original)
14169         (message-insert-citation-line, message-position-on-field)
14170         (message-fix-before-sending, message-send-mail-partially)
14171         (message-send-mail, message-send-mail-with-sendmail)
14172         (message-send-mail-with-qmail, message-send-news)
14173         (message-check-news-header-syntax, message-generate-headers)
14174         (message-insert-courtesy-copy, message-fill-address)
14175         (message-fill-header, message-shorten-references)
14176         (message-setup-1, message-cancel-news)
14177         (message-forward-make-body-plain, message-forward-make-body-mime)
14178         (message-forward-make-body-mml, message-encode-message-body)
14179         (message-forward-make-body-digest-plain)
14180         (message-forward-make-body-digest-mime)
14181         (message-use-alternative-email-as-from): Insert `hard-newline'
14182         instead of ordinary newlines.
14183
14184 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14185
14186         * message.el (message-generate-headers): Downcase the argument
14187         given to message-check-element.
14188
14189 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
14190
14191         * nntp.el (nntp-authinfo-rejected): New error condition.
14192         (nntp-wait-for): Use new error condition to signal authentication
14193         error.
14194         (nntp-retrieve-data): Rethrow new error condition to break out of
14195         recursive call to nntp-send-authinfo.
14196
14197 2005-11-08  Romain Francoise  <romain@orebokech.com>
14198
14199         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
14200         (gnus-summary-exit-map): Bind to `Z p'.
14201         (gnus-summary-make-menu-bar): Add menu item.
14202
14203 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
14204
14205         * gnus-art.el (gnus-article-treat-custom): Add `first'.
14206         (gnus-treat-*): Add `first' in all doc strings.
14207
14208         * gnus-group.el (gnus-group-compact-group): Fix typo.
14209
14210 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14211
14212         * gnus.el (gnus-parameters-case-fold-search): New variable.
14213         (gnus-parameters-get-parameter): Use it.
14214
14215         * gnus-score.el (gnus-home-score-file): Doc fix.
14216
14217 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
14218
14219         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
14220
14221 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
14222
14223         * mm-util.el (mm-special-display-p): New function.
14224
14225         * mml.el (mml-preview): Use it; doc fix.
14226
14227 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
14228
14229         * imap.el (imap-open): Handle case where buffer is a buffer object.
14230
14231 2005-10-29  Romain Francoise  <romain@orebokech.com>
14232
14233         * message.el (message-fix-before-sending): Fix comment.
14234
14235 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
14236
14237         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
14238
14239 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
14240
14241         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
14242         Used in gnus-score.el.
14243
14244 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
14245
14246         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
14247
14248 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
14249
14250         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
14251         whitespace removed in revision 7.8.  Use concatenated string to
14252         protect trailing whitespace.
14253
14254 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
14255
14256         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
14257         (nnimap-request-expire-articles): Use it to avoid sending 'UID
14258         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
14259         Courier IMAP ("some version from 2004").  Mostly based on similar
14260         code in the same function.
14261
14262 2005-10-26  Didier Verna  <didier@xemacs.org>
14263
14264         * gnus-group.el (gnus-group-compact-group): Invalidate original
14265         article buffer.
14266         * gnus-srvr.el (gnus-server-compact-server): Ditto.
14267         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
14268         NOV database and in article itself.
14269         Invalidate article backlog.
14270
14271 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
14272
14273         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
14274
14275 2005-10-26  Simon Josefsson  <jas@extundo.com>
14276
14277         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
14278         part of 2004-07-25 change.
14279
14280 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14281
14282         * message.el (message-display-completion-list): New function.
14283         (message-expand-group): Use it; make sure the Completions buffer
14284         is modifiable.
14285 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
14286
14287         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
14288         user-mail-name is an empty string.
14289
14290 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
14291
14292         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
14293         depending on gnus-score-decay-constant.
14294
14295         * encrypt.el (encrypt-insert-file-contents)
14296         (encrypt-write-file-contents): Don't use `gnus-message'.
14297
14298         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
14299         arguments.
14300         (mm-uu-type-alist): Add message-marks and insert-marks.
14301         Pass arguments to mm-uu-verbatim-marks-extract.
14302         (mm-uu-hide-markers): New variable.
14303         (mm-uu-extract): Use face similar to `gnus-cite-3'.
14304
14305         * gnus-fun.el (gnus-convert-image-to-x-face-command)
14306         (gnus-convert-image-to-face-command): Use "convert" by default to
14307         allow other input image formats.
14308         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
14309         accordingly.
14310
14311 2005-10-23  Simon Josefsson  <jas@extundo.com>
14312
14313         * imap.el (imap-gssapi-program): Align command line parameters
14314         with latest GNU SASL.
14315         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
14316
14317 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14318
14319         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
14320         HTML.
14321         (nnslashdot-request-article): Ditto.
14322
14323         * lpath.el (featurep): Add nobreak-char-display.
14324
14325 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
14326
14327         * mail-source.el (mail-source-fetch-pop): Require pop3.
14328         (mail-source-check-pop): Ditto.
14329
14330 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14331
14332         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
14333         errors.
14334
14335 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
14336
14337         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
14338         (gnus-treat-strip-leading-blank-lines): Improve doc string.
14339
14340         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
14341
14342         * mm-bodies.el (mm-decode-string):
14343         Call `mm-charset-to-coding-system' with allow-override argument.
14344
14345 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14346
14347         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
14348         (rfc2047-charset-to-coding-system): New function.
14349         (rfc2047-decode-encoded-words): New function.
14350         (rfc2047-decode-region): Use them.
14351         (rfc2047-decode-cte): Remove.
14352         (rfc2047-parse-and-decode): Remove.
14353         (rfc2047-decode): Remove.
14354
14355 2005-10-15  Kenichi Handa  <handa@m17n.org>
14356
14357         * rfc2047.el (rfc2047-decode-cte): New function.
14358         (rfc2047-decode-region): Change the way to decode successive
14359         encoded-words: decode B- or Q-encoding in each encoded-word,
14360         concatenate them, and decode it as charset.
14361
14362 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14363
14364         * lpath.el: Fbind codepage-setup for XEmacs.
14365
14366 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
14367
14368         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
14369         widget-move-and-invoke.
14370         (gnus-custom-mode): Use gnus-custom-map.
14371
14372 2005-10-15  Bill Wohler  <wohler@newt.com>
14373
14374         * message.el (message-tool-bar-map): Rename image file from
14375         mail_send to mail/send.
14376
14377 2005-10-16  Masatake YAMATO  <jet@gyve.org>
14378
14379         * message.el (message-expand-group): Pass the common
14380         prefix substring of completion to `display-completion-list'.
14381
14382 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
14383
14384         * mml-sec.el (mml-secure-method): New internal variable.
14385         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
14386         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
14387         New functions using mml-secure-method.
14388
14389         * mml.el (mml-mode-map): Add key bindings for those functions.
14390         (mml-menu): Simplify security menu entries.  Suggested by Jesper
14391         Harder <harder@myrealbox.com>.
14392         (mml-attach-file, mml-attach-buffer, mml-attach-external):
14393         Goto end of message if point is the headers of the message.
14394
14395         * message.el (message-in-body-p): New function.
14396
14397         * assistant.el: Autoload gnus-util and netrc.
14398
14399         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
14400         Use `mm-charset-override-alist' only when decoding.
14401
14402         * mm-bodies.el (mm-decode-body):
14403         Call `mm-charset-to-coding-system' with allow-override argument.
14404
14405         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
14406         `filename' from Content-Disposition if Content-Type doesn't
14407         provide `name'.
14408         (gnus-mime-view-part-as-type): Set default instead of
14409         initial-input.
14410
14411 2005-10-09  Daniel Brockman  <daniel@brockman.se>
14412
14413         * format-spec.el (format-spec): Propagate text properties of % spec.
14414
14415 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
14416
14417         * gnus-art.el (gnus-treat-predicate): Add `first'.
14418
14419 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
14420
14421         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
14422         (mm-charset-override-alist): New variable.
14423         (mm-charset-to-coding-system): Use it.
14424         (mm-codepage-setup): New helper function.
14425         (mm-charset-eval-alist): New variable.
14426         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
14427         Warn about unknown charsets.
14428
14429         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
14430
14431 2005-10-04  David Hansen  <david.hansen@gmx.net>
14432
14433         * nnrss.el (nnrss-request-article): Add support for the comments tag.
14434         (nnrss-check-group): Ditto.
14435
14436 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
14437
14438         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
14439         Rename x-gnus-verbatim to x-verbatim.
14440         (mm-uu-type-alist): Fix regexp for verbatim-marks.
14441
14442         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
14443         x-verbatim.
14444
14445         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
14446
14447         * gnus-util.el (gnus-remove-duplicates): Remove.
14448
14449         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
14450         instead of gnus-remove-duplicates.
14451
14452         * message.el (message-remove-duplicates): Remove.
14453         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
14454         message-remove-duplicates.
14455
14456         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
14457         available, else use implementation from `delete-dups'.
14458
14459         * message.el (message-insert-expires): New function.
14460         (message-mode-map): Add key binding.
14461         (message-mode-field-menu): Add menu entry.
14462         (message-mode): Document it.
14463         (message-make-expires-date): Use `message-make-date'.
14464
14465 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
14466
14467         * message.el (message-make-expires-date): New function.
14468
14469 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14470
14471         * Makefile.in (list-installed-shadows): New entry.
14472         (install): Use it.
14473         (remove-installed-shadows): New entry.
14474
14475         * dgnushack.el (dgnushack-default-load-path): New variable.
14476         (dgnushack-find-lisp-shadows): New function.
14477         (dgnushack-remove-lisp-shadows): New function.
14478
14479 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14480
14481         * Makefile.in (install-el-elc): New entry.
14482         (install): Use it so that .el files are necessarily installed.
14483
14484 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14485
14486         * time-date.el: Autoload parse-time-string, XEmacs needs it.
14487
14488 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14489
14490         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
14491         function rather than the diff-mode.el package.
14492         (mm-display-external): Use with-current-buffer.
14493         (mm-viewer-completion-map, mm-viewer-completion-map):
14494         Move initialization inside declaration.
14495
14496 2005-09-29  Simon Josefsson  <jas@extundo.com>
14497
14498         * spam.el: Load hashcash when compiling, to avoid warnings.
14499         Don't autoload mail-check-payment.
14500         (spam-check-hashcash): Define unconditionally, since hashcash.el
14501         is part of Gnus now.  Ignore errors from payment checking.
14502
14503 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
14504
14505         * message.el (message-bold-region, message-unbold-region):
14506         Rename from `bold-region' and `unbold-region'.
14507
14508         * message.el: Remove useless autoloads.
14509
14510 2005-09-28  Simon Josefsson  <jas@extundo.com>
14511
14512         * message.el (message-use-idna): Default to t.
14513         (message-use-idna): Test whether encoding works too.  Doc fix.
14514
14515 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14516
14517         * nntp.el (nntp-warn-about-losing-connection): Remove.
14518
14519 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
14520
14521         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
14522         customizable.  Change default value.
14523         (mm-uu-diff-groups-regexp): Change default value.
14524         (mm-uu-type-alist): Add doc string.
14525         (mm-uu-configure): Add doc string.  Make it interactive.
14526         (mm-uu-tex-groups-regexp): New variable.
14527         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
14528         (mm-uu-type-alist): Add LaTeX documents.
14529         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
14530         of "text/verbatim".
14531         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
14532
14533         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
14534         instead of "text/verbatim".
14535
14536         * message.el (message-mark-inserted-region)
14537         (message-mark-insert-file): Use slrn style marks when called with
14538         prefix argument.
14539
14540 2005-09-27  Simon Josefsson  <jas@extundo.com>
14541
14542         * message.el (message-idna-to-ascii-rhs-1): Reformat.
14543
14544 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
14545
14546         * message.el (message-remove-duplicates): New function.
14547         Implementation borrowed from `gnus-remove-duplicates'.
14548         (message-idna-to-ascii-rhs): Also encode idna addresses in
14549         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
14550         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
14551         only ask about the same idna domain once per header and also tell
14552         in what header to replace the idna domain.
14553
14554         * gnus-art.el (article-decode-idna-rhs): Also decode idna
14555         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
14556         (article-decode-idna-rhs): Fix regexp so that all idna-address in
14557         a header is decoded and not just the last one.
14558
14559 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14560
14561         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
14562         has been decoded.
14563
14564         * mm-decode.el (mm-automatic-display): Add text/verbatim.
14565         (mm-insert-part): Don't modify text if it has been decoded.
14566
14567         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
14568         decoded.
14569
14570         * mm-view.el (mm-inline-text): Don't strip text props unless
14571         decoding enriched or richtext parts.
14572
14573 2005-09-25  Romain Francoise  <romain@orebokech.com>
14574
14575         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
14576         * gnus-start.el (gnus-subscribe-interactively):
14577         * gnus-uu.el (gnus-uu-grab-articles):
14578         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
14579         space.
14580
14581 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
14582
14583         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
14584         * mm-view.el (mm-view-pkcs7-decrypt):
14585         * gnus-sum.el (gnus-summary-limit-to-extra)
14586         (gnus-summary-respool-article, gnus-read-move-group-name):
14587         * gnus-score.el (gnus-summary-increase-score):
14588         * gnus-util.el (gnus-completing-read-with-default):
14589         * gnus-art.el (gnus-read-save-file-name)
14590         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
14591         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
14592         * message.el (message-check-news-header-syntax):
14593         Follow convention for reading with the minibuffer.
14594
14595 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
14596
14597         * spam-report.el (spam-report-url-ping-plain):
14598         Use gnus-extended-version as User-Agent.
14599
14600         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
14601         default value is nil.
14602
14603         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
14604         (mm-uu-verbatim-marks-extract): New function.
14605         (mm-uu-extract): New face.
14606         (mm-uu-copy-to-buffer): Use it.
14607
14608         * spam-report.el (spam-report-gmane-ham): Rename from
14609         `spam-report-gmane-unspam'.
14610         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
14611         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
14612
14613         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
14614         Autoload.
14615         (spam-report-gmane-unregister-routine):
14616         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
14617
14618 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
14619
14620         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
14621         (spam-report-gmane-unregister-routine): Add support for gmane
14622         unregistration.
14623
14624         * spam-report.el (spam-report-gmane-unspam)
14625         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
14626         (spam-report-gmane): Change to take a single article and do unspam
14627         registration.
14628
14629 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
14630
14631         * mm-url.el (mm-url-decode-entities): Fix regexp.
14632
14633 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14634
14635         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
14636         default to nil, to be able to use Gnus at all.  If the default
14637         switches to something else, then the function should be fixed not
14638         be exceedingly slow.
14639
14640 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
14641
14642         * gnus-start.el (gnus-activate-group): If the server is nil, don't
14643         fail hard.
14644
14645         * spam-report.el: Add better Keywords line.
14646
14647         * spam.el: Add Maintainer and better Keywords line.
14648
14649 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
14650
14651         * gnus-art.el (gnus-article-replace-part)
14652         (gnus-mime-replace-part): New functions.
14653         (gnus-mime-action-alist, gnus-mime-button-commands)
14654         (gnus-mime-save-part-and-strip): Add file argument.
14655         (gnus-article-part-wrapper): Add interactive argument.
14656
14657         * gnus-sum.el (gnus-summary-mime-map):
14658         Add `gnus-article-replace-part'.
14659
14660 2005-09-19  Didier Verna  <didier@xemacs.org>
14661
14662         The nnml compaction feature:
14663         * nnml.el (nnml-request-compact-group): New function.
14664         * nnml.el (nnml-request-compact): New function.
14665         * gnus-int.el (gnus-request-compact-group): New function.
14666         * gnus-int.el (gnus-request-compact): New function.
14667         * gnus-group.el (gnus-group-compact-group): New function.
14668         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
14669         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
14670         * gnus-srvr.el (gnus-server-compact-server): New function.
14671         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
14672         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
14673
14674 2005-09-18  Deepak Goel  <deego@gnufans.org>
14675
14676         * sieve.el (sieve-help): Fix `message' call: first arg should be a
14677         format spec.
14678
14679 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14680
14681         * gnus.el (gnus-group-startup-message): Bind image-load-path.
14682
14683 2005-09-15  Romain Francoise  <romain@orebokech.com>
14684
14685         * message.el (message-fill-paragraph): Clarify docstring.
14686
14687 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14688
14689         * gnus-art.el (gnus-mime-display-part): Protect against broken
14690         MIME messages.
14691
14692 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14693
14694         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
14695         before parsing header.
14696
14697 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
14698
14699         * html2text.el (html2text-replace-list): Add new entities.
14700
14701 2005-09-11  Romain Francoise  <romain@orebokech.com>
14702
14703         * message.el (message-alternative-emails): Improve docstring.
14704         (message-setup-1): Call `message-use-alternative-email-as-from'
14705         after `message-setup-hook' to give it precedence over posting
14706         styles, etc.
14707         (message-use-alternative-email-as-from): Add docstring.
14708         Remove the original From header if present.
14709
14710         * nnml.el (nnml-compressed-files-size-threshold): New variable.
14711         (nnml-save-mail): Use it.
14712
14713         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
14714         articles.  Add new argument `silent'.
14715         (gnus-uu-mark-all): Report the total number of marked articles.
14716
14717 2005-09-10  Romain Francoise  <romain@orebokech.com>
14718
14719         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
14720         (gnus-uu-mark-series): Likewise.
14721
14722 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
14723
14724         * spam-report.el (spam-report-gmane): Fix generation of spam
14725         report URL.
14726
14727 2005-09-10  Simon Josefsson  <jas@extundo.com>
14728
14729         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
14730         t, based on discussion on the ding list with Robert Epprecht
14731         <epprecht@solnet.ch>.
14732
14733 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
14734
14735         * spam-report.el (spam-report-gmane): Make it work without
14736         X-Report-Spam header.  Gmane now only provides Archived-At.
14737         This is only used if `spam-report-gmane-use-article-number' is nil.
14738         (spam-report-gmane-spam-header): Remove.  Not used anymore.
14739
14740         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
14741         make `gnus-summary-sort-by-recipient' work with threading.
14742
14743         * nnweb.el (nnweb-google-wash-article): Print a message if article
14744         is not available.
14745
14746 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14747
14748         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
14749         change.  Decode text/* parts content before displaying.
14750
14751 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
14752
14753         * mml-smime.el: Remove defvar of gnus-extract-address-components.
14754
14755 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14756
14757         * mm-view.el (mm-display-inline-fontify): Disable support modes.
14758
14759         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
14760         url-package-name, url-package-version,
14761         w3m-cid-retrieve-function-alist, w3m-current-buffer,
14762         w3m-display-inline-images, and w3m-minor-mode-map.
14763
14764 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
14765
14766         * message.el (message-tab-body-function): Fix mismatched custom type.
14767
14768         * gnus.el (gnus-group-change-level-function): Ditto.
14769
14770         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
14771
14772         * gnus-art.el (gnus-signature-limit)
14773         (gnus-article-mime-part-function): Ditto.
14774
14775 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14776
14777         * mml.el (mml-mode): Silence the byte compiler.
14778
14779         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
14780         using `(sit-for 0)' before moving the point to the specified part;
14781         skip unbuttonized parts.
14782         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
14783         return to the summary window if gnus-auto-select-part is non-nil.
14784
14785 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
14786
14787         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
14788         New variables.
14789         (mml-dnd-attach-file, mml-mode): Use them.
14790
14791         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
14792         Make fetching article by MID work again for Google Groups.
14793         Add FIXME concerning gnus-group-make-web-group.
14794
14795         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
14796         Don't depend on Gnus by using mail-extract-address-components if
14797         gnus-extract-address-components is not bound.
14798
14799 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14800
14801         * gnus-art.el (gnus-mime-display-security): Don't display the
14802         signature, but only the signed part.
14803
14804 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14805
14806         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
14807
14808         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
14809         list, not listp.
14810
14811 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
14812
14813         * mm-encode.el (mm-encode-content-transfer-encoding):
14814         Likewise when encoding.
14815
14816         * mm-bodies.el (mm-decode-content-transfer-encoding):
14817         De-canonicalize CRLF for all text content types, not just
14818         text/plain.
14819
14820 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14821
14822         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
14823         valid article; point arrow and cursor at the MIME button.
14824
14825 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14826
14827         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
14828         Suggested by Dan Christensen <jdc@uwo.ca>.
14829
14830         * mm-decode.el (mm-save-part): Enable change of prompt.
14831
14832 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
14833
14834         * gnus-msg.el (gnus-inews-add-send-actions):
14835         Make `message-post-method' lambda parameter ARG `&optional'.
14836
14837 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
14838
14839         * gnus-sum.el (gnus-summary-mime-map):
14840         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
14841         gnus-article-jump-to-part.
14842
14843         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
14844         (gnus-article-edit-part): Use it.
14845         (gnus-article-part-wrapper): Add no-handle argument.
14846         (gnus-article-save-part-and-strip, gnus-article-delete-part):
14847         New functions.
14848
14849 2005-08-29  Romain Francoise  <romain@orebokech.com>
14850
14851         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
14852         docstring.
14853         (gnus-face-from-file): Likewise.
14854
14855 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
14856
14857         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
14858         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
14859         non-nil.
14860         (gnus-auto-select-part): New variable.
14861         (gnus-article-jump-to-part): New function.
14862         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
14863         (gnus-mime-delete-part): Allow selecting specified part after
14864         deleting or stripping parts.
14865         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
14866         part if argument is bogus.
14867
14868 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
14869
14870         * gnus-art.el (w3m-minor-mode-map):
14871         * gnus-spec.el (gnus-newsrc-file-version):
14872         * gnus-util.el (nnmail-active-file-coding-system)
14873         (gnus-original-article-buffer, gnus-user-agent):
14874         * gnus.el (gnus-ham-process-destinations)
14875         (gnus-parameter-ham-marks-alist)
14876         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
14877         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
14878         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
14879         * mm-decode.el (gnus-current-window-configuration):
14880         * mm-extern.el (gnus-article-mime-handles):
14881         * mm-url.el (url-current-object, url-package-name)
14882         (url-package-version):
14883         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
14884         (smime-keys, w3m-cid-retrieve-function-alist)
14885         (w3m-current-buffer, w3m-display-inline-images)
14886         (w3m-minor-mode-map):
14887         * mml-smime.el (gnus-extract-address-components):
14888         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
14889         (gnus-newsrc-hashtb, message-default-charset)
14890         (message-deletable-headers, message-options)
14891         (message-posting-charset, message-required-mail-headers)
14892         (message-required-news-headers):
14893         * mml1991.el (mc-pgp-always-sign):
14894         * mml2015.el (mc-pgp-always-sign):
14895         * nnheader.el (nnmail-extra-headers):
14896         * rfc1843.el (gnus-decode-encoded-word-function)
14897         (gnus-decode-header-function, gnus-newsgroup-name):
14898         * spam-stat.el (gnus-original-article-buffer): Add defvars.
14899
14900 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
14901
14902         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
14903         the end of the date treatments.
14904
14905 2005-08-15  Simon Josefsson  <jas@extundo.com>
14906
14907         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
14908         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
14909         Capello and Romain Francoise.
14910         (pgg-fetch-key-function): Remove, not used?
14911         (pgg-insert-url-with-w3): Require url, to get
14912         url-insert-file-contents regardless of where it is defined.
14913
14914 2005-08-13  Romain Francoise  <romain@orebokech.com>
14915
14916         * message.el (message-cite-original-1): New function.
14917         (message-cite-original): Use it.
14918         (message-cite-original-without-signature): Ditto.
14919
14920 2005-08-08  Romain Francoise  <romain@orebokech.com>
14921
14922         * message.el (message-yank-empty-prefix): New variable.
14923         (message-indent-citation): Use it.
14924         (message-cite-original-without-signature): Respect X-No-Archive.
14925
14926 2005-08-08  Simon Josefsson  <jas@extundo.com>
14927
14928         * pgg.el: Autoload url-insert-file-contents instead of loading
14929         w3/url.
14930         (pgg-insert-url-with-w3): Don't load url here.
14931
14932 2005-08-07  Jesper Harder  <harder@phys.au.dk>
14933
14934         * message.el (message-kill-to-signature): Don't insert newline at
14935         bol.
14936         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
14937
14938 2005-08-06  Romain Francoise  <romain@orebokech.com>
14939
14940         * message.el (message-user-fqdn): Fix typo in docstring.
14941
14942 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
14943
14944         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
14945
14946         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
14947
14948 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14949
14950         * mm-bodies.el (mm-encode-body): Use coding system rather than
14951         charset to encode text.
14952
14953         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
14954         number of charsets if utf-8 is available (XEmacs).
14955
14956 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
14957
14958         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
14959         taken from `gnus-button-mid-or-mail-regexp'.
14960         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
14961         (gnus-button-alist): Improve regexp for domain part of the MIDs
14962         for news:localpart@domain buttons.
14963         (gnus-button-ctan-directory-regexp): Update.
14964
14965 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14966
14967         * sieve-manage.el (sieve-manage-interactive-login):
14968         Use make-local-variable rather than make-variable-buffer-local.
14969         (sieve-manage-open): Ditto.
14970         (sieve-manage-authenticate): Ditto.
14971
14972         * mml.el (mml-generate-mime-1): Make the content type default to
14973         text/plain if the filename is not specified.
14974
14975 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14976
14977         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
14978         instead of insert-buffer.
14979
14980         * message.el (message-yank-original): Ditto; set the mark at the
14981         end of the yanked message.
14982
14983 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
14984
14985         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
14986         lines to scroll rather than to stop it.
14987
14988         * mml.el (mml-generate-default-type): Add doc string.
14989         (mml-generate-mime-1): Use mm-default-file-encoding or make it
14990         default to application/octet-stream when determining the content
14991         type if it is not specified for the part or the mml contents; add
14992         a comment about mml-generate-default-type.
14993
14994 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
14995
14996         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
14997         make it default to application/octet-stream when determining the
14998         content type if it is not specified for the external contents.
14999
15000 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15001
15002         * rfc2231.el (rfc2231-parse-string): Take care that not only a
15003         segmented parameter but also other parameters might be there.
15004
15005 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15006
15007         * mm-decode.el (mm-display-external): Delete temp file, directory
15008         and buffer immediately if the external process is exited.
15009
15010 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15011
15012         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
15013         fewer lines than that of scroll-margin.
15014         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
15015
15016 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15017
15018         * gnus-art.el (gnus-article-next-page): Revert.
15019         (gnus-article-beginning-of-window): New macro.
15020         (gnus-article-next-page-1): Use it.
15021         (gnus-article-prev-page): Ditto.
15022         (gnus-article-edit-part): Use insert-buffer-substring instead of
15023         insert-buffer.
15024         (gnus-article-edit-exit): Ditto.
15025
15026         * gnus-util.el (gnus-beginning-of-window): Remove.
15027         (gnus-end-of-window): Remove.
15028
15029         * lpath.el: Don't bind header-line-format and scroll-margin.
15030
15031 2005-07-25  Simon Josefsson  <jas@extundo.com>
15032
15033         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
15034         to have the url package without w3.  Reported by Daiki Ueno
15035         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
15036
15037 2005-07-20  Didier Verna  <didier@xemacs.org>
15038
15039         * gnus-diary.el: Remove the description comment (nndiary is now
15040         properly documented in the Gnus manual).
15041         Fix the spelling of "Back End".
15042         * nndiary.el: Ditto.
15043         Fix the copyright notice.
15044
15045 2005-07-18  Romain Francoise  <romain@orebokech.com>
15046
15047         * gnus-sum.el (gnus-summary-to-prefix)
15048         (gnus-summary-newsgroup-prefix): New variables.
15049         (gnus-summary-from-or-to-or-newsgroups): Use them.
15050
15051 2005-07-17  Romain Francoise  <romain@orebokech.com>
15052
15053         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
15054         space as it's generally not especially interesting to the user.
15055
15056 2005-07-16  Romain Francoise  <romain@orebokech.com>
15057
15058         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
15059         nil to avoid prompting and file modification if one of the
15060         messages at the top of the nnfolder file contains a copyright
15061         notice.
15062         Update copyright notice.
15063
15064         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
15065         instead of `current-time-string' as the latter creates a time
15066         string that is not RFC 2822 compliant (it lacks the zone).
15067         Update copyright notice.
15068
15069 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
15070
15071         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
15072         for text/rtf.  Display default in prompt.  Pass default for M-n.
15073
15074         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
15075
15076 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15077
15078         * gnus-msg.el (gnus-button-mailto):
15079         Remove save-selected-window-window hackery because it relies on
15080         save-selected-window internals.
15081
15082 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15083
15084         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
15085         (gnus-article-next-page-1): Use gnus-beginning-of-window.
15086         (gnus-article-prev-page): Ditto.
15087
15088         * gnus-util.el (gnus-beginning-of-window): New function.
15089         (gnus-end-of-window): New function.
15090
15091         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
15092
15093 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
15094
15095         * gnus-score.el (gnus-score-edit-all-score):
15096         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
15097         gnus-message.
15098
15099 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15100
15101         * gnus-msg.el (gnus-button-mailto):
15102         Remove save-selected-window-window hackery because it relies on
15103         save-selected-window internals.
15104
15105 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15106
15107         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
15108         add-minor-mode.
15109         (gnus-binary-mode): Ditto.
15110
15111         * gnus-topic.el (gnus-topic-mode): Ditto.
15112
15113 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
15114
15115         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
15116         (gnus-article-prev-page): Take scroll-margin into consideration.
15117
15118 2005-07-04  Lute Kamstra  <lute@gnu.org>
15119
15120         Update FSF's address in GPL notices.
15121
15122 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
15123
15124         * gnus.el (gnus-exit):
15125         * gnus-group.el (gnus-group-icons):
15126         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
15127
15128         * gnus-nocem.el (gnus-nocem):
15129         * message.el (message-various, message-buffers, message-sending)
15130         (message-interface, message-forwarding, message-insertion)
15131         (message-headers, message-news, message-mail):
15132         * pgg-gpg.el (pgg-gpg):
15133         * pgg-parse.el (pgg-parse):
15134         * pgg-pgp.el (pgg-pgp):
15135         * pgg-pgp5.el (pgg-pgp5):
15136         * pop3.el (pop3): Finish `defgroup' description with period.
15137
15138 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15139
15140         * gnus-art.el (article-display-face): Improve the efficiency.
15141         (article-display-x-face): Ditto; remove grey x-face stuff.
15142
15143 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
15144
15145         * gnus-art.el (article-display-face): Correct the position in
15146         which Faces are inserted.
15147
15148 2005-06-29  Didier Verna  <didier@xemacs.org>
15149
15150         * gnus-art.el (article-display-face): Display faces in correct
15151         order.
15152
15153 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
15154
15155         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
15156         (gnus-fill-real-hashtb): Use hash table instead of obarray.
15157         (gnus-nocem-check-article): Fetch the Type header.
15158         (gnus-nocem-message-wanted-p): Fix the way to examine types.
15159         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
15160         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
15161         make sure gnus-nocem-hashtb is initialized.
15162         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
15163         (gnus-nocem-unwanted-article-p): Ditto.
15164
15165         * pgg.el (pgg-verify): Return the verification result.
15166
15167 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15168
15169         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
15170         is ascii.
15171
15172 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
15173
15174         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
15175         `show-nonbreak-escape'.
15176
15177 2005-06-23  Lute Kamstra  <lute@gnu.org>
15178
15179         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
15180
15181         * dig.el (dig-mode):
15182         * smime.el (smime-mode): Use gnus-run-mode-hooks.
15183
15184 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
15185
15186         * nnimap.el (nnimap-split-download-body): Fix spellings.
15187
15188 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
15189
15190         * gnus-art.el (gnus-article-encrypt-body):
15191         * gnus-cus.el (gnus-score-customize):
15192         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
15193         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
15194
15195 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
15196
15197         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
15198         header by looking for magic "MII" at the beginnig.
15199
15200 2005-06-16  Miles Bader  <miles@gnu.org>
15201
15202         * gnus-xmas.el (gnus-xmas-group-startup-message):
15203         Use renamed gnus-splash face.
15204
15205         * assistant.el (assistant-field): Remove "-face" suffix from face name.
15206         (assistant-field-face): New backward-compatibility alias for renamed
15207         face.
15208         (assistant-render-text): Use renamed assistant-field face.
15209
15210         * spam.el (spam): Remove "-face" suffix from face name.
15211         (spam-face): New backward-compatibility alias for renamed face.
15212         (spam-face, spam-initialize): Use renamed spam face.
15213
15214         * message.el (message-header-to, message-header-cc)
15215         (message-header-subject, message-header-newsgroups)
15216         (message-header-other, message-header-name)
15217         (message-header-xheader, message-separator, message-cited-text)
15218         (message-mml): Remove "-face" suffix from face names.
15219         (message-header-to-face, message-header-cc-face)
15220         (message-header-subject-face, message-header-newsgroups-face)
15221         (message-header-other-face, message-header-name-face)
15222         (message-header-xheader-face, message-separator-face)
15223         (message-cited-text-face, message-mml-face):
15224         New backward-compatibility aliases for renamed faces.
15225         (message-font-lock-keywords): Use renamed message faces.
15226
15227         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
15228         (sieve-test-commands, sieve-tagged-arguments):
15229         Remove "-face" suffix from face names.
15230         (sieve-control-commands-face, sieve-action-commands-face)
15231         (sieve-test-commands-face, sieve-tagged-arguments-face):
15232         New backward-compatibility aliases for renamed faces.
15233         (sieve-control-commands-face, sieve-action-commands-face)
15234         (sieve-test-commands-face, sieve-tagged-arguments-face):
15235         Use renamed sieve faces.
15236
15237         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
15238         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
15239         (gnus-group-news-3-empty, gnus-group-news-4)
15240         (gnus-group-news-4-empty, gnus-group-news-5)
15241         (gnus-group-news-5-empty, gnus-group-news-6)
15242         (gnus-group-news-6-empty, gnus-group-news-low)
15243         (gnus-group-news-low-empty, gnus-group-mail-1)
15244         (gnus-group-mail-1-empty, gnus-group-mail-2)
15245         (gnus-group-mail-2-empty, gnus-group-mail-3)
15246         (gnus-group-mail-3-empty, gnus-group-mail-low)
15247         (gnus-group-mail-low-empty, gnus-summary-selected)
15248         (gnus-summary-cancelled, gnus-summary-high-ticked)
15249         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
15250         (gnus-summary-high-ancient, gnus-summary-low-ancient)
15251         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
15252         (gnus-summary-low-undownloaded)
15253         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
15254         (gnus-summary-low-unread, gnus-summary-normal-unread)
15255         (gnus-summary-high-read, gnus-summary-low-read)
15256         (gnus-summary-normal-read, gnus-splash):
15257         Remove "-face" suffix from face names.
15258         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
15259         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
15260         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
15261         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
15262         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
15263         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
15264         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
15265         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
15266         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
15267         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
15268         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
15269         (gnus-summary-selected-face, gnus-summary-cancelled-face)
15270         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
15271         (gnus-summary-normal-ticked-face)
15272         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
15273         (gnus-summary-normal-ancient-face)
15274         (gnus-summary-high-undownloaded-face)
15275         (gnus-summary-low-undownloaded-face)
15276         (gnus-summary-normal-undownloaded-face)
15277         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
15278         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
15279         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
15280         (gnus-splash-face):
15281         New backward-compatibility aliases for renamed faces.
15282         (gnus-group-startup-message): Use renamed gnus faces.
15283
15284         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
15285         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
15286         (gnus-server-agent): Remove "-face" suffix from face names.
15287         (gnus-server-agent-face, gnus-server-opened-face)
15288         (gnus-server-closed-face, gnus-server-denied-face)
15289         (gnus-server-offline-face):
15290         New backward-compatibility aliases for renamed faces.
15291         (gnus-server-agent-face, gnus-server-opened-face)
15292         (gnus-server-closed-face, gnus-server-denied-face)
15293         (gnus-server-offline-face): Use renamed gnus faces.
15294
15295         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
15296         Remove "-face" suffix from face names.
15297         (gnus-picon-xbm-face, gnus-picon-face):
15298         New backward-compatibility aliases for renamed faces.
15299
15300         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
15301         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
15302         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
15303         (gnus-cite-11): Remove "-face" suffix from face names.
15304         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
15305         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
15306         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
15307         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
15308         New backward-compatibility aliases for renamed faces.
15309         (gnus-cite-attribution-face, gnus-cite-face-list)
15310         (gnus-article-boring-faces): Use renamed gnus faces.
15311
15312         * gnus-art.el (gnus-signature, gnus-header-from)
15313         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
15314         (gnus-header-content): Remove "-face" suffix from face names.
15315         (gnus-signature-face, gnus-header-from-face)
15316         (gnus-header-subject-face, gnus-header-newsgroups-face)
15317         (gnus-header-name-face, gnus-header-content-face):
15318         New backward-compatibility aliases for renamed faces.
15319         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
15320
15321         * gnus-sum.el (gnus-summary-selected-face)
15322         (gnus-summary-highlight): Use renamed gnus faces.
15323         * gnus-group.el (gnus-group-highlight): Likewise.
15324
15325 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
15326
15327         * gnus-sieve.el (gnus-sieve-article-add-rule):
15328         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
15329         * spam-stat.el (spam-stat-buffer-change-to-spam)
15330         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
15331
15332         * message.el (message-is-yours-p):
15333         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
15334
15335 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15336
15337         * mm-view.el (mm-inline-text): Withdraw the last change.
15338
15339 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15340
15341         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
15342         executing enriched-decode.
15343
15344 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15345
15346         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
15347         charset of tar files.
15348
15349 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
15350
15351         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
15352
15353 2005-06-04  Lute Kamstra  <lute@gnu.org>
15354
15355         * nnfolder.el (nnfolder-read-folder): Make sure that undo
15356         information is never recorded.
15357
15358 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15359
15360         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
15361
15362 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15363
15364         * pop3.el (pop3-apop): Run md5 in the binary mode.
15365
15366         * starttls.el (starttls-set-process-query-on-exit-flag):
15367         Use eval-and-compile.
15368
15369 2005-05-31  Simon Josefsson  <jas@extundo.com>
15370
15371         * smime.el (smime-replace-in-string): Define.
15372         (smime-cert-by-ldap-1): Use it.
15373
15374 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
15375
15376         * gnus-art.el (article-display-x-face): Replace
15377         process-kill-without-query by gnus-set-process-query-on-exit-flag.
15378
15379         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
15380         set-process-query-on-exit-flag or process-kill-without-query.
15381
15382         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
15383         loop instead of replace-regexp.
15384
15385         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
15386         instead of process-kill-without-query if it is available.
15387
15388         * lpath.el: Fbind ldap-search-entries.
15389
15390         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
15391         instead of find-file-hooks if it is available.
15392
15393         * mml1991.el: Bind pgg-default-user-id when compiling.
15394
15395         * mml2015.el: Bind pgg-default-user-id when compiling.
15396
15397         * nndraft.el (nndraft-request-associate-buffer):
15398         Use write-contents-functions instead of write-contents-hooks if it is
15399         available.
15400
15401         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
15402         instead of find-file-hooks if it is available.
15403
15404         * nntp.el (nntp-open-connection): Replace
15405         process-kill-without-query by gnus-set-process-query-on-exit-flag.
15406         (nntp-open-ssl-stream): Ditto.
15407         (nntp-open-tls-stream): Ditto.
15408
15409         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
15410         set-process-query-on-exit-flag or process-kill-without-query.
15411         (starttls-open-stream-gnutls): Use it instead of
15412         process-kill-without-query.
15413         (starttls-open-stream): Ditto.
15414
15415 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
15416
15417         * smime.el (smime-cert-by-ldap-1): Don't use
15418         replace-regexp-in-string.
15419
15420 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
15421
15422         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
15423
15424         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
15425         in PEM format.  Adjust to the XEmacs compability.
15426
15427 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
15428
15429         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
15430         by `string-to-number'.
15431         * gnus-agent.el (gnus-agent-regenerate-group)
15432         (gnus-agent-fetch-articles): Ditto.
15433         * gnus-art.el (gnus-button-fetch-group): Ditto.
15434         * gnus-cache.el (gnus-cache-generate-active)
15435         (gnus-cache-articles-in-group): Ditto.
15436         * gnus-group.el (gnus-group-set-current-level)
15437         (gnus-group-insert-group-line): Ditto.
15438         * gnus-score.el (gnus-score-set-expunge-below)
15439         (gnus-score-set-mark-below, gnus-summary-score-effect)
15440         (gnus-summary-score-entry): Ditto.
15441         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
15442         (gnus-soup-pack): Ditto.
15443         * gnus-spec.el (gnus-xmas-format): Ditto.
15444         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
15445         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
15446         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
15447         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
15448         * nndb.el (nndb-get-remote-expire-response): Ditto.
15449         * nndiary.el (nndiary-parse-schedule-value)
15450         (nndiary-string-to-number, nndiary-request-replace-article)
15451         (nndiary-request-article): Ditto.
15452         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
15453         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
15454         * nneething.el (nneething-make-head): Ditto.
15455         * nnfolder.el (nnfolder-request-article)
15456         (nnfolder-retrieve-headers): Ditto.
15457         * nnheader.el (nnheader-file-to-number): Ditto.
15458         * nnkiboze.el (nnkiboze-request-article): Ditto.
15459         * nnmail.el (nnmail-process-unix-mail-format)
15460         (nnmail-process-babyl-mail-format): Ditto.
15461         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
15462         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
15463         (nnmh-request-create-group, nnmh-request-list-1)
15464         (nnmh-request-group, nnmh-request-article): Ditto.
15465         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
15466         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
15467         * nnsoup.el (nnsoup-make-active): Ditto.
15468         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
15469         * nntp.el (nntp-find-group-and-number)
15470         (nntp-retrieve-headers-with-xover): Ditto.
15471         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
15472         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
15473         (pgg-format-key-identifier): Ditto.
15474         * pop3.el (pop3-last, pop3-stat): Ditto.
15475         * qp.el (quoted-printable-decode-region): Ditto.
15476
15477         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
15478         of concat.
15479
15480 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
15481
15482         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
15483
15484         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
15485
15486         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
15487
15488         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
15489
15490         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
15491
15492         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
15493
15494         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
15495         (gnus-carpal-mode): Ditto.
15496
15497         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
15498         (gnus-browse-mode): Ditto.
15499
15500         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
15501
15502         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
15503
15504 2005-05-29  Richard M. Stallman  <rms@gnu.org>
15505
15506         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
15507
15508 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15509
15510         * gnus-util.el (gnus-run-mode-hooks): New function.
15511
15512         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
15513
15514         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
15515         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
15516
15517 2005-05-27  Lute Kamstra  <lute@gnu.org>
15518
15519         * dns-mode.el (dns-mode): Specify customization group.
15520
15521 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
15522
15523         * gnus-agent.el (gnus-agent-make-mode-line-string):
15524         Use mode-line-highlight as mouse-face.
15525
15526 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15527
15528         * canlock.el (canlock): Change the parent group to news.
15529
15530         * deuglify.el (gnus-outlook-deuglify): Add :group.
15531
15532         * dig.el (dig): Add :group.
15533
15534         * dns-mode.el (dns-mode): Add :group.
15535
15536         * encrypt.el (encrypt): Add :group.
15537
15538         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
15539         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
15540         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
15541         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
15542         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
15543
15544         * gnus-diary.el (gnus-diary): Add :group.
15545
15546         * gnus.el (gnus-group-news-1-face): Add :group.
15547         (gnus-group-news-1-empty-face): Ditto.
15548         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
15549         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
15550         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
15551         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
15552         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
15553         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
15554         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
15555         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
15556         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
15557         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
15558         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
15559         (gnus-summary-high-ticked-face): Ditto.
15560         (gnus-summary-low-ticked-face): Ditto.
15561         (gnus-summary-normal-ticked-face): Ditto.
15562         (gnus-summary-high-ancient-face): Ditto.
15563         (gnus-summary-low-ancient-face): Ditto.
15564         (gnus-summary-normal-ancient-face): Ditto.
15565         (gnus-summary-high-undownloaded-face): Ditto.
15566         (gnus-summary-low-undownloaded-face): Ditto.
15567         (gnus-summary-normal-undownloaded-face): Ditto.
15568         (gnus-summary-high-unread-face): Ditto.
15569         (gnus-summary-low-unread-face): Ditto.
15570         (gnus-summary-normal-unread-face): Ditto.
15571         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
15572         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
15573
15574         * hashcash.el (hashcash): New custom group.
15575         (hashcash-default-payment): Add :group.
15576         (hashcash-payment-alist): Ditto.
15577         (hashcash-default-accept-payment): Ditto.
15578         (hashcash-accept-resources): Ditto.
15579         (hashcash-path): Ditto.
15580         (hashcash-extra-generate-parameters): Ditto.
15581         (hashcash-double-spend-database): Ditto.
15582         (hashcash-in-news): Ditto.
15583
15584         * message.el (message-minibuffer-local-map): Add :group.
15585
15586         * netrc.el (netrc): Add :group.
15587
15588         * sieve-manage.el (sieve-manage-log): Add :group.
15589         (sieve-manage-default-user): Diito.
15590         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
15591         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
15592         (sieve-manage-authenticators): Ditto.
15593         (sieve-manage-authenticator-alist): Ditto.
15594         (sieve-manage-default-port): Ditto.
15595
15596         * sieve-mode.el (sieve-control-commands-face): Add :group.
15597         (sieve-action-commands-face): Ditto.
15598         (sieve-test-commands-face): Ditto.
15599         (sieve-tagged-arguments-face): Ditto.
15600
15601         * smime.el (smime): Add :group.
15602
15603         * spam-report.el (spam-report): Add :group.
15604
15605         * spam.el (spam, spam-face): Add :group.
15606
15607 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15608
15609         * nntp.el (nntp-next-result-arrived-p): Some news servers may
15610         return \n.\n.\n at the end of articles.  Protect against that.
15611         (nntp-with-open-group): Allow debugging.
15612
15613         * nnheader.el (mail-header-set-extra): Make into a function
15614         because I just could't understand how to quote the list properly.
15615
15616         * dns.el (query-dns-cached): New function.
15617
15618 2005-05-26  Lute Kamstra  <lute@gnu.org>
15619
15620         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
15621
15622 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15623
15624         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
15625
15626         * gnus-art.el: Don't autoload mail-extract-address-components.
15627
15628         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
15629         eval-and-compile to evaluate it.
15630
15631         * hashcash.el: Don't autoload executable-find.
15632
15633         * nndb.el: Don't declare the nndb back end two or more times; don't
15634         autoload news-reply-mode, news-setup, cancel-timer and telnet.
15635
15636         * nntp.el: Autoload format-spec instead of format; use
15637         eval-and-compile to evaluate autoload forms.
15638
15639 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
15640
15641         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
15642
15643 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15644
15645         * gnus.el (gnus-version-number): Bump version.
15646
15647 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15648
15649         * gnus.el: No Gnus v0.3 is released.
15650
15651 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15652
15653         * lpath.el (featurep): Bind show-nonbreak-escape.
15654
15655 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15656
15657         * gnus-art.el (gnus-article-edit-part): Disable undo.
15658
15659 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15660
15661         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
15662         gnus-article-date-lapsed-new-header is t if date timer is active;
15663         skip headers in which the original date value is empty.
15664         (gnus-article-save-original-date): Redefine it as a macro.
15665         (gnus-display-mime): Use it.
15666
15667 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15668
15669         * gnus-art.el (article-date-ut): Support converting date in
15670         forwarded parts as well.
15671         (gnus-article-save-original-date): New function.
15672         (gnus-display-mime): Use it.
15673
15674 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
15675
15676         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
15677         enclosure element of <item>.
15678
15679 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
15680
15681         * message.el (message-kill-buffer-query): Rename from
15682         `message-kill-buffer-query-if-modified'.  Add :version.
15683
15684 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15685
15686         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
15687         window layout.
15688
15689 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15690
15691         * mml.el: Autoload dnd when compiling.
15692
15693 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
15694
15695         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
15696         x-dnd-*.
15697
15698 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15699
15700         * qp.el (quoted-printable-encode-region): Save excursion.
15701
15702 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
15703
15704         * message.el (message-kill-buffer-query-if-modified): Add new variable
15705         so the user can kill a modified message buffer quickly.
15706         (message-kill-buffer): Use it.
15707
15708 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15709
15710         * lpath.el: Fbind display-time-event-handler; don't fbind
15711         string-to-multibyte.
15712
15713         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
15714
15715 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15716
15717         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
15718         contained in text because xml.el decodes entities) with LFs.
15719
15720 2005-04-11  Lute Kamstra  <lute@gnu.org>
15721
15722         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
15723         differently.
15724
15725 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15726
15727         * mm-util.el (mm-detect-coding-region): Typo.
15728
15729 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
15730
15731         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
15732
15733 2005-04-06  Deepak Goel  <deego@gnufans.org>
15734
15735         * spam-stat.el (spam-stat-score-buffer): Add a call to a
15736         user-function allow user modifications of the scores.
15737         (spam-stat-score-buffer-user): New function, to allow
15738         user-computed modifications to the score.
15739         (spam-stat-score-buffer-user-functions): List of additional
15740         scoring functions.
15741         (spam-stat-error-holder): Global temporary error holder.
15742         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
15743         variable.
15744
15745 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
15746
15747         * gnus-registry.el (gnus-registry-clean-empty-function)
15748         (gnus-registry-trim, gnus-registry-fetch-groups)
15749         (gnus-registry-delete-group): Groups that match
15750         `gnus-registry-ignored-groups' are removed from the registry
15751         entries, not just ignored for splitting.  This helps clean up the
15752         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
15753         to get all the groups a message ID is in.
15754
15755         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
15756         (spam-stat-split-fancy): Change "threshhold" to "threshold".
15757         (spam-stat-score-buffer-user-functions): Add :number custom type.
15758
15759 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15760
15761         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
15762         argument in XEmacs.
15763
15764         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
15765         (nnrss-request-group): Decode group name first.
15766         (nnrss-request-article): Make a text/plain article if mml-to-mime
15767         failed.
15768         (nnrss-get-encoding): Return a compatible encoding according to
15769         nnrss-compatible-encoding-alist.
15770         (nnrss-find-el): Use consp instead of listp.
15771         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
15772
15773 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15774
15775         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
15776         which Emacs 20 doesn't support.
15777         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
15778
15779 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
15780
15781         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
15782         silence the byte compiler inside the defun.
15783
15784         * gnus-demon.el (parse-time-string): Add autoload.
15785
15786         * gnus-delay.el (parse-time-string): Add autoload.
15787
15788         * gnus-art.el (parse-time-string): Add autoload.
15789
15790         * nnultimate.el (parse-time): Require for `parse-time-string'.
15791
15792 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
15793
15794         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
15795
15796         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
15797
15798         * smime.el (smime-ldap-host-list): Add :version.
15799
15800 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
15801
15802         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
15803         pass it to `gnus-browse-read-group'.
15804         (gnus-browse-read-group): Add NUMBER argument and pass it to
15805         `gnus-group-read-ephemeral-group'.
15806
15807         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
15808         argument and pass it to `gnus-group-read-group'.
15809
15810 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
15811
15812         * mm-util.el (mm-xemacs-find-mime-charset): Only call
15813         mm-xemacs-find-mime-charset-1 if we have the mule feature
15814         available at runtime.
15815
15816 2005-03-25  Werner Lemberg  <wl@gnu.org>
15817
15818         * nnmaildir.el: Replace `illegal' with `invalid'.
15819
15820 2005-03-23  Lute Kamstra  <lute@gnu.org>
15821
15822         * time-date.el: Add comment on time value formats.
15823         Don't require parse-time.
15824         (with-decoded-time-value): New macro.
15825         (encode-time-value): New function.
15826         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
15827         (days-to-time): Return a valid time value when arg is huge.
15828         (time-since): Use time-subtract.
15829         (time-to-number-of-days): Use time-to-seconds.
15830
15831 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
15832
15833         * gnus-start.el (gnus-display-time-event-handler):
15834         Check display-time-timer at runtime rather than only at load time
15835         in case display-time-mode is turned off in the mean time.
15836
15837 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
15838
15839         * nnimap.el (nnimap-open-connection): Print which authinfo file is
15840         used.
15841
15842         * nneething.el (nneething-map-file-directory): Derive from
15843         `gnus-directory'.
15844
15845         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
15846         the To/Cc button.
15847
15848 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
15849
15850         * nnmaildir.el (nnmaildir-request-accept-article):
15851         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
15852
15853 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
15854
15855         * gnus-async.el: Require timer-funcs at compile time when in
15856         XEmacs for `run-with-idle-timer'.
15857
15858 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
15859
15860         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
15861         autoloaded function.
15862
15863 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15864
15865         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
15866
15867 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
15868
15869         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
15870
15871 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15872
15873         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
15874         Add gnus-expert-user to default.
15875
15876 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
15877
15878         * nnimap.el (nnimap-open-server): Ditto.
15879
15880         * imap.el (imap-authenticate): Fix typo.
15881
15882 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
15883
15884         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
15885         buffer (since IMAP server might return FETCH response out of
15886         order, and the nntp buffer must be sorted).
15887
15888 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
15889
15890         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
15891         comparison on string.
15892
15893         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
15894         (gnus-agent-score): Rename category keywords to match gnus-cus.
15895         (gnus-agent-summary-fetch-series): Modify to protect against
15896         gnus-agent-summary-fetch-group clearing processable flags.
15897         (gnus-agent-synchronize-group-flags): Update live group buffer as
15898         synchronization may occur due to the user toggle the plugged
15899         status.
15900         (gnus-agent-fetch-group-1): Clear downloadable flag when article
15901         successfully downloaded.
15902         (gnus-agent-expire-group-1): Avoid using markers when the overview
15903         is in ascending order; greatly improves performance.
15904         (gnus-agent-regenerate-group):
15905         Use gnus-agent-synchronize-group-flags to reset read status in both
15906         gnus and server.
15907         (gnus-agent-update-files-total-fetched-for): Fix initial size.
15908
15909 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
15910
15911         * message.el: Don't autoload former message-utils variables.
15912         (message-strip-subject-trailing-was): Change doc string.
15913
15914         * nnweb.el: Fixes for `gnus-group-make-web-group'.
15915         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
15916         (nnweb-google-search): Add "hl=en" here.
15917         (nnweb-google-parse-1, nnweb-google-create-mapping):
15918         Don't hardcode URL.
15919
15920 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
15921
15922         * message.el (message-get-reply-headers, message-followup):
15923         Mention related variables `message-use-followup-to' and
15924         `message-use-mail-followup-to', in the information buffer.
15925
15926         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
15927         of broken groups(-beta).google.com.
15928
15929 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
15930
15931         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
15932         parameter to invoked gnus-request-move-article; remove the
15933         redundant gnus-sum-hint-move-is-internal variable; apply the marks
15934         all at once instead of once per article.
15935         (gnus-summary-remove-process-mark): Accept a list of articles as
15936         well as a single article for processing.
15937
15938         * gnus-int.el (gnus-request-move-article): Add move-is-internal
15939         parameter.
15940
15941         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
15942
15943         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
15944
15945         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
15946         parameter.
15947
15948         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
15949         parameter.
15950
15951         * nnimap.el (nnimap-request-move-article): Add move-is-internal
15952         parameter and remove the gnus-sum-hint-move-is-internal variable.
15953
15954         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
15955         parameter.
15956
15957         * nndraft.el (nndraft-request-move-article): Add move-is-internal
15958         parameter.
15959
15960         * nndiary.el (nndiary-request-move-article): Add move-is-internal
15961         parameter.
15962
15963         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
15964
15965         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
15966         parameter.
15967
15968         * nnagent.el (nnagent-request-move-article): Add move-is-internal
15969         parameter.
15970
15971 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
15972
15973         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
15974         a more conservative way.
15975
15976 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
15977
15978         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
15979         buffer, so it moves the window's cursor.
15980
15981 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
15982
15983         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
15984         `mm-dissect-multipart' and receive the from field as an (optional)
15985         argument from `mm-dissect-multipart'.
15986         (mm-dissect-multipart): Receive the from field as an argument and
15987         pass it on when we call `mm-dissect-buffer' on MIME parts.
15988         Fixes verification/decryption of signed/encrypted MIME parts.
15989
15990 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
15991
15992         * gnus-sum.el (gnus-summary-move-article):
15993         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
15994         whatever it calls (right now, only nnimap-request-move article
15995         respects it).
15996
15997         * nnimap.el (nnimap-request-move-article):
15998         When gnus-sum-hint-move-is-internal is set, don't do the extra
15999         nnimap-request-article.
16000
16001 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
16002
16003         * nnheader.el (nnheader-find-file-noselect): Add doc string.
16004
16005         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
16006         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
16007
16008         * gnus-sum.el (gnus-summary-caesar-message):
16009         Apply `gnus-treat-article' after rotation.
16010
16011         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
16012         doc string.
16013
16014 2005-02-22  Simon Josefsson  <jas@extundo.com>
16015
16016         * encrypt.el (encrypt-password-cache-expiry): Remove (use
16017         `password-cache-expiry' instead).  Reported by Arne Jørgensen
16018         <arne@arnested.dk>.
16019         (encrypt): Add password-cache and password-cache-expiry as group
16020         members.
16021
16022 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
16023
16024         * smime.el (smime-ldap-host-list): Doc fix.
16025         (smime-ask-passphrase): Use `password-read-and-add' to read (and
16026         cache) password.
16027         (smime-sign-region): Use it.
16028         (smime-decrypt-region): Use it.
16029         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
16030         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
16031         fails.
16032         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
16033         certificate from DER to PEM format rather than calling openssl.
16034
16035         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
16036
16037         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
16038         for signing/encryption.
16039
16040         * mml.el (mml-parse-1): Use them.
16041
16042 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
16043
16044         * nnrss.el (nnrss-verbose): Remove.
16045         (nnrss-request-group): Use `nnheader-message' instead.
16046
16047 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
16048
16049         * nnrss.el (nnrss-verbose): New variable.
16050         (nnrss-request-group): Make it say nnrss is requesting a group.
16051
16052 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
16053
16054         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
16055         Handle news URL with given port correctly.
16056
16057 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16058
16059         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
16060         containing special characters.
16061
16062         * gnus-sum.el (gnus-summary-edit-article): Ditto.
16063
16064         * mml.el (mime-to-mml): Ditto.
16065
16066         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
16067         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
16068         (rfc2047-decode-region): Quote decoded words containing special
16069         characters when rfc2047-quote-decoded-words-containing-tspecials
16070         is non-nil.
16071
16072 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
16073
16074         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
16075
16076         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
16077
16078 2005-02-15  Simon Josefsson  <jas@extundo.com>
16079
16080         * nnimap.el (nnimap-debug): Doc fix.
16081
16082         * imap.el (imap-debug): Doc fix.
16083
16084 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16085
16086         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
16087
16088 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
16089
16090         * gnus.el (spam-contents): Improve docs for spam-contents
16091         parameter in its variable incarnation.
16092
16093 2005-02-14  Simon Josefsson  <jas@extundo.com>
16094
16095         * smime-ldap.el: Use require instead of load-library for ldap.
16096         (smime-ldap-search): Indent.
16097         (smime-ldap-search-internal): Shorten line.
16098
16099         * smime.el (smime-cert-by-dns): Add doc-string.
16100         (smime-cert-by-ldap-1): Indent.
16101
16102         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
16103         mml-smime-get-dns-ldap.
16104         (mml-smime-encrypt-query): Use new function.  Default to ldap.
16105
16106 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
16107
16108         * smime.el: Require smime-ldap.
16109         (smime-ldap-host-list): New variable.
16110         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
16111
16112         * mml-smime.el (mml-smime-encrypt-query): New function.
16113         (mml-smime-encrypt-query): Use it.
16114
16115         * smime-ldap.el: New file.
16116
16117 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16118
16119         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
16120
16121 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
16122
16123         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
16124         argument in doc string.  Make query for type more clear.
16125
16126 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
16127
16128         * gnus.el (gnus-group-startup-message): Search for gnus images in
16129         etc/images/gnus.
16130         * mm-util.el (mm-image-load-path): Likewise.
16131         * smiley.el (smiley-data-directory): Search for smilies in
16132         etc/images/smilies.
16133
16134 2005-02-09  Kim F. Storm  <storm@cua.dk>
16135
16136         Change Emacs release version from 21.4 to 22.1 throughout.
16137         Change Emacs development version from 21.3.50 to 22.0.50.
16138
16139 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16140
16141         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
16142
16143         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
16144         non-Mule XEmacs as well.
16145         (mm-decompress-buffer): Signal an error intentionally if it does
16146         not decompress compressed data because auto-compression-mode is
16147         disabled.
16148
16149 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
16150
16151         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
16152         an ID in the registry even if it has no groups.
16153
16154 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16155
16156         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
16157         merge it into mm-decompress-buffer.
16158         (gnus-mime-copy-part): Use the MIME part charset, the value which
16159         a user specified or gnus-newsgroup-charset for decoding, like
16160         gnus-mime-inline-part does; set buffer-file-coding-system to tell
16161         save-buffer what was used.  Suggested by Kevin Ryde
16162         <user42@zip.com.au>.
16163         (gnus-mime-inline-part): Allow the name parameter as well as the
16164         filename parameter; force decompressing of compressed data; always
16165         display contents being not decoded as unibyte.
16166
16167         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
16168         as well as the filename parameter.
16169
16170         * mm-util.el (mm-decompress-buffer):
16171         Merge gnus-mime-jka-compr-maybe-uncompress.
16172         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
16173         of compressed data.
16174
16175 2005-02-08  Simon Josefsson  <jas@extundo.com>
16176
16177         * imap.el (imap-log): Doc fix.
16178
16179 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16180
16181         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
16182         the coding cookies; decompress compressed parts.
16183
16184         * mml.el (mml-generate-mime-1): Add the charset parameter according
16185         to the value which a user specified manually or the coding cookie.
16186
16187         * mm-util.el (mm-string-to-multibyte): New function.
16188         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
16189         (mm-coding-system-to-mime-charset): New function.
16190         (mm-decompress-buffer): New function.
16191         (mm-find-buffer-file-coding-system): New function.
16192
16193         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
16194         (mm-display-inline-fontify): Rewrite for decoding and decompressing
16195         parts.
16196
16197 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
16198
16199         * mm-view.el (mm-display-inline-fontify): Decode a part according
16200         to the charset parameter.
16201
16202 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
16203
16204         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
16205         prefix arg is neither nil nor a number, as info specifies.
16206
16207 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16208
16209         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
16210         timestamps.
16211
16212 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
16213
16214         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
16215         groups error checking and notify user.
16216
16217 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
16218
16219         * message.el (message-send-mail-function): Check existence of
16220         sendmail-program first before using default value
16221         `message-send-mail-with-sendmail'.  Otherwise use more generic
16222         `smtpmail-send-it'.
16223
16224 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16225
16226         * nntp.el (nntp-request-update-info): Always return nil.
16227
16228 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
16229
16230         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
16231
16232 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
16233
16234         * message.el (message-beginning-of-line): Change the behavior when
16235         invoked between BOL and : so that it first moves backward.
16236
16237 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16238
16239         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
16240         article buffer when editing of the article is discarded.
16241         (gnus-article-prepare): Revert.
16242
16243 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16244
16245         * gnus-art.el (gnus-article-prepare):
16246         Remove message-strip-forbidden-properties from the local hook.
16247
16248 2005-01-27  Simon Josefsson  <jas@extundo.com>
16249
16250         * password.el (password-cache-add): Only start one timer per key.
16251         Reported by Derek Atkins <warlord@MIT.EDU>.
16252
16253 2005-01-26  Steve Youngs  <steve@sxemacs.org>
16254
16255         * run-at-time.el: Remove.  It is no longer needed as
16256         timer-funcs.el in the xemacs-base package has a working version of
16257         `run-at-time'.
16258
16259         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
16260
16261         * password.el: Require timer-funcs instead of run-at-time in
16262         XEmacs.
16263         Remove `password-run-at-time' macro.
16264         (password-cache-add): Use `run-at-time' instead of
16265         `password-run-at-time'.
16266
16267         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
16268         Remove `nnheader-cancel-function-timers' alias,
16269         `cancel-function-timers' exists in XEmacs in timer-funcs.
16270
16271         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
16272         for `run-with-idle-timer'.
16273
16274         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
16275         for `run-at-time'.
16276
16277         * mm-url.el: Require timer-funcs at compile time when in XEmacs
16278         for `with-timeout'.
16279
16280         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
16281         the same as for XEmacs 21.4.
16282         No need to ignore `run-with-idle-timer', this function exists in
16283         XEmacs now in timer-funcs.el in the xemacs-base package.
16284         (dgnushack-compile): No need to delete
16285         run-at-time.el from the list of files to compile because it
16286         doesn't exist anymore.
16287
16288 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16289
16290         * mml.el (mml-generate-mime-1): Convert string into unibyte when
16291         inserting " *mml*" buffer's contents into a unibyte temp buffer.
16292
16293 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
16294
16295         * mail-source.el (mail-source-fetch-imap): Search for ^From case
16296         sensitively.
16297
16298 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
16299
16300         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
16301
16302 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16303
16304         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
16305         which will be inserted according to the multibyteness of a buffer
16306         rather than the type of contents.  Suggested by ARISAWA Akihiro
16307         <ari@mbf.ocn.ne.jp>.
16308
16309         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
16310         of string which old xml.el may return rather than a string.
16311
16312 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16313
16314         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
16315
16316 2005-01-16  Simon Josefsson  <jas@extundo.com>
16317
16318         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
16319         idn/idna.el isn't available.
16320         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
16321         <michael@waxrat.com>.
16322
16323         * hashcash.el: Remove non-FSF copyright header.
16324
16325         * hashcash.el (hashcash-extra-generate-parameters): New variable.
16326         (hashcash-generate-payment): Use it.
16327         (hashcash-generate-payment-async): Use it.
16328
16329 2005-01-15  Simon Josefsson  <jas@extundo.com>
16330
16331         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
16332         Suggested by Raymond Scholz <ray-2005@zonix.de>.
16333
16334         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
16335         gnus-summary-idna-message.
16336         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
16337         (gnus-summary-idna-message): New function.
16338
16339 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
16340
16341         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
16342         gnus-novice-user.
16343
16344 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16345
16346         * nnrss.el (nnrss-request-delete-group): Delete entries in
16347         nnrss-group-alist as well.
16348         (nnrss-save-server-data): Insert newline.
16349
16350 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
16351
16352         * gnus.el (gnus-user-agent): Use list of symbols instead of
16353         symbols.  Display full version number for (S)XEmacs.
16354         Optionally display (S)XEmacs codename.
16355
16356         * gnus-util.el (gnus-emacs-version): Update for new
16357         `gnus-user-agent'.
16358
16359         * gnus-msg.el (gnus-extended-version): Make it possible to omit
16360         Gnus version.
16361
16362 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
16363
16364         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
16365         which is unreadable in some setups.
16366
16367 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16368
16369         * gnus-spec.el (gnus-update-format-specifications): Flush the
16370         group format spec cache if it doesn't support decoded group names.
16371
16372 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
16373
16374         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
16375         Allow to apply decay on score files matching a regexp.
16376
16377 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16378
16379         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
16380         compatibility in %g and %c.
16381
16382 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16383
16384         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
16385         name for only %g and %c.
16386         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
16387         of gnus-tmp-group to decoded group name.
16388         (gnus-group-make-rss-group): Exclude `/'s from group names.
16389
16390 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16391
16392         * nnrss.el (nnrss-get-encoding): Fix regexp.
16393
16394 2004-12-27  Simon Josefsson  <jas@extundo.com>
16395
16396         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
16397         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
16398         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
16399
16400 2004-12-17  Kim F. Storm  <storm@cua.dk>
16401
16402         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
16403
16404         * gnus-sum.el (gnus-summary-mode-map): Likewise.
16405
16406 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
16407
16408         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
16409
16410 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16411
16412         * nnrss.el: Require rfc2047 and mml.
16413         (nnrss-file-coding-system): New variable.
16414         (nnrss-format-string): Redefine it as an inline function.
16415         (nnrss-decode-group-name): New function.
16416         (nnrss-string-as-multibyte): Remove.
16417         (nnrss-retrieve-headers): Decode group name; don't use
16418         nnrss-format-string.
16419         (nnrss-request-group): Decode group name.
16420         (nnrss-request-article): Decode group name; allow a Message-ID as
16421         well as an article number; don't use nnrss-format-string; encode a
16422         Message-ID string which may contain non-ASCII characters; use
16423         mml-to-mime to compose a MIME article.
16424         (nnrss-request-expire-articles): Decode group name.
16425         (nnrss-request-delete-group): Decode group name.
16426         (nnrss-fetch): Clarify error message.
16427         (nnrss-read-server-data): Use insert-file-contents instead of load;
16428         bind file-name-coding-system; use multibyte buffer.
16429         (nnrss-save-server-data): Bind coding-system-for-write to the
16430         value of nnrss-file-coding-system; bind file-name-coding-system;
16431         add coding cookie.
16432         (nnrss-read-group-data): Use insert-file-contents instead of load;
16433         bind file-name-coding-system; use multibyte buffer.
16434         (nnrss-save-group-data): Bind coding-system-for-write to the
16435         value of nnrss-file-coding-system; bind file-name-coding-system.
16436         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
16437         make it work with non-ASCII text.
16438         (nnrss-find-el): Make it work with old xml.el as well.
16439
16440 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
16441
16442         * nnrss.el (nnrss-get-encoding): New function.
16443         (nnrss-fetch): Use unibyte buffer initially; bind
16444         coding-system-for-read while performing mm-url-insert; remove ^Ms;
16445         decode contents according to the encoding attribute.
16446         (nnrss-save-group-data): Add coding cookie.
16447         (nnrss-mime-encode-string): New function.
16448         (nnrss-check-group): Use it to encode subject and author.
16449
16450 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
16451
16452         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
16453         imaginary variable.
16454
16455 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
16456
16457         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
16458         correctly even if there are wide characters.
16459
16460 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
16461
16462         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
16463         downcased symbol names; make a new cache instead of reusing
16464         bbdb-hashtable.
16465
16466 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16467
16468         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
16469         concatenating segments rather than before concatenating them.
16470         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
16471
16472         * message.el (message-get-reply-headers): Bind `extra'.
16473
16474 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16475
16476         * message.el (message-extra-wide-headers): New variable.
16477         (message-get-reply-headers): Use it.
16478
16479 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16480
16481         * gnus-agent.el (gnus-agent-group-path): Decode group name.
16482         (gnus-agent-group-pathname): Ditto.
16483
16484         * gnus-cache.el (gnus-cache-file-name): Decode group name.
16485
16486         * gnus-group.el (gnus-group-make-group): Decode group name.
16487         (gnus-group-make-rss-group): Register the group data after opening
16488         the nnrss group.
16489
16490 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
16491
16492         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
16493         by expiry now get marked as read.
16494
16495 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16496
16497         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
16498
16499 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
16500
16501         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
16502         unify Latin characters in XEmacs.
16503         (mm-find-mime-charset-region): Use it.
16504
16505 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16506
16507         * gnus-util.el (gnus-delete-directory): New function.
16508
16509         * gnus-agent.el (gnus-agent-delete-group): Use it.
16510
16511         * gnus-cache.el (gnus-cache-delete-group): Use it.
16512
16513 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16514
16515         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
16516         names.
16517
16518 2004-12-16  Simon Josefsson  <jas@extundo.com>
16519
16520         * hashcash.el (hashcash-payment-alist): Fix custom :type.
16521
16522 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16523
16524         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
16525
16526         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
16527         (gnus-group-set-current-level): Decode group name.
16528
16529 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
16530
16531         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
16532         failed.
16533
16534 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16535
16536         * gnus-group.el (gnus-group-delete-group): Decode group name.
16537         (gnus-group-make-rss-group): Encode group name.
16538         (gnus-group-catchup-current): Decode group name.
16539         (gnus-group-kill-group): Decode group name.
16540
16541 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
16542
16543         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
16544
16545 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16546
16547         * gnus-group.el (gnus-group-make-rss-group):
16548         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
16549
16550         * gnus-start.el (gnus-setup-news): Honor user's setting to
16551         gnus-message-archive-method.  Suggested by Lute Kamstra
16552         <lute@gnu.org>.
16553
16554 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
16555
16556         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
16557         global counterparts of the buffer-local variables.
16558
16559 2004-11-16  Romain Francoise  <romain@orebokech.com>
16560
16561         * gnus-sum.el (gnus-summary-exit): Don't clear the global
16562         counterparts of the buffer-local variables.
16563
16564 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
16565
16566         * message.el (message-forbidden-properties): Fix typo in doc
16567         string.
16568
16569 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
16570
16571         * gnus-util.el (gnus-replace-in-string): Add doc string.
16572
16573         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
16574         to avoid problems when splitting mails with many recipients.
16575
16576 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16577
16578         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
16579         pop-to-buffer, covered by the subsequent gnus-configure-windows.
16580
16581 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
16582
16583         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
16584         if there is no hashtable in memory or file modification time is
16585         newer than cached timestamp.
16586
16587 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
16588
16589         * gnus-sum.el (gnus-summary-limit-to-recipient):
16590         Implement not-matching option.
16591
16592 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
16593
16594         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
16595         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
16596         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
16597         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
16598         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
16599         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
16600
16601 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16602
16603         * message.el (message-forward-make-body-mml): Remove headers
16604         according to message-forward-ignored-headers if a message is decoded.
16605
16606 2004-12-02  Romain Francoise  <romain@orebokech.com>
16607
16608         * message.el (message-forward-make-body-plain): Always remove
16609         headers according to message-forward-ignored-headers.
16610
16611 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
16612
16613         * spam.el (spam-summary-prepare-exit): Remove the
16614         gnus-summary-limit pop for now, it has problems with ham marks for
16615         me.
16616
16617 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
16618
16619         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
16620         correctly.
16621
16622 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
16623
16624         * format-spec.el (format-spec): Message the char.
16625
16626 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
16627
16628         * gnus-art.el (gnus-split-methods): Reformat comments.
16629
16630         * spam.el (spam-summary-prepare-exit): Remove article limits
16631         before exiting the summary buffer.
16632
16633 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16634
16635         * lpath.el: Remove bbdb-create-internal, bbdb-records,
16636         spam-BBDB-register-routine and spam-enter-ham-BBDB.
16637
16638         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
16639         order to silence the byte compiler.
16640
16641         * spam.el: Fix the way to silence the byte compiler, which
16642         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
16643         bbdb-search-simple, spam-BBDB-register-routine,
16644         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
16645         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
16646         spam-stat-buffer-is-spam, spam-stat-load,
16647         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
16648         spam-stat-save and spam-stat-split-fancy.
16649
16650 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16651
16652         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
16653         which may confuse users.
16654         (canlock-password-for-verify): Ditto.
16655
16656         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
16657
16658         * gnus-art.el (gnus-emphasis-alist): Ditto.
16659
16660         * gnus-registry.el (gnus-registry-max-entries): Ditto.
16661
16662         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
16663
16664         * gnus-start.el (gnus-save-killed-list): Ditto.
16665
16666         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
16667         (gnus-sum-thread-tree-root): Ditto.
16668         (gnus-sum-thread-tree-false-root): Ditto.
16669         (gnus-sum-thread-tree-single-indent): Ditto.
16670
16671         * message.el (message-courtesy-message): Ditto.
16672         (message-archive-note): Ditto.
16673         (message-subscribed-address-file): Ditto.
16674         (message-user-fqdn): Ditto.
16675
16676         * spam-report.el (spam-report-gmane-regex): Ditto.
16677
16678         * spam.el (spam-blackhole-good-server-regex): Ditto.
16679
16680 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16681
16682         * mml.el (mml-preview): Widen the message buffer before copying
16683         the contents to the preview buffer; sort headers before previewing.
16684
16685         * message.el (message-hidden-headers): Fix the way to avoid a bug
16686         in the `repeat' widget in Emacs 21.3 or earlier.
16687
16688 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16689
16690         * message.el (message-hidden-headers): Default to "^References:".
16691         Improve customization type.  Suggested by Reiner Steib
16692         <Reiner.Steib@gmx.de>.
16693
16694 2004-11-25  Romain Francoise  <romain@orebokech.com>
16695
16696         * message.el (message-strip-forbidden-properties): Remove check for
16697         obsolete `message-hidden' text property, hidden headers are not
16698         accessible in the buffer anymore.
16699
16700 2004-11-22  Romain Francoise  <romain@orebokech.com>
16701
16702         * message.el (message-header-format-alist): Add `From' in list
16703         so that it can be sorted.
16704         (message-fix-before-sending): Widen and sort headers before
16705         sending.
16706         (message-hide-headers): Use narrowing to hide headers by moving
16707         them to the top of the buffer and narrowing to the region
16708         underneath.
16709
16710 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16711
16712         * message.el (message-strip-forbidden-properties):
16713         Bind buffer-read-only (etc) to nil.
16714
16715 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16716
16717         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
16718         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
16719
16720 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
16721
16722         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
16723
16724 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16725
16726         * dns.el (query-dns): Use sit-for to time instead of
16727         accept-process-output, since that doesn't seem to work on udp
16728         sockets.
16729
16730 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16731
16732         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
16733
16734 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
16735
16736         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
16737         doc string.  Improve doc string.
16738
16739 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16740
16741         * nntp.el (nntp-request-update-info): Return nil if
16742         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
16743         may not call gnus-activate-group which uselessly issues the GROUP
16744         commands for all nntp groups and wastes time.  Reported by Romain
16745         Francoise <romain@orebokech.com>.
16746
16747         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
16748
16749 2004-11-15  Simon Josefsson  <jas@extundo.com>
16750
16751         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
16752         headers separately.
16753         (gnus-button-openpgp): New function, inspired by Jochen Küpper
16754         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
16755
16756 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
16757
16758         * gnus-start.el (gnus-convert-old-newsrc):
16759         Assign legacy-gnus-agent to 5.10.7.
16760
16761 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16762
16763         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
16764         start of the lines.
16765
16766 2004-11-14  Magnus Henoch  <mange@freemail.hu>
16767
16768         * hashcash.el (hashcash-default-payment): Change default to 20.
16769         (hashcash-default-accept-payment): Change default to 20.
16770         (hashcash-process-alist): New variable.
16771         (hashcash-generate-payment-async): Add.
16772         (hashcash-already-paid-p): Add.
16773         (hashcash-insert-payment): Don't generate payments twice.
16774         (hashcash-insert-payment-async): Add.
16775         (hashcash-insert-payment-async-2): Add.
16776         (hashcash-cancel-async): Add.
16777         (hashcash-wait-async): Add.
16778         (hashcash-processes-running-p): Add.
16779         (hashcash-wait-or-cancel): Add.
16780         (mail-add-payment): New optional argument.  Conditionally start
16781         asynchronous calculation.
16782         (mail-add-payment-async): Add.
16783
16784         * message.el (message-send-mail): Wait for asynchronous hashcash
16785         results.  Don't clobber existing X-Hashcash headers.
16786         (message-setup-1): Call mail-add-payment-async when
16787         message-generate-hashcash is non-nil.
16788
16789 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
16790
16791         * message.el (message-use-alternative-email-as-from): Examine the
16792         From header as well; use message-make-from in order to include a
16793         user's full name.
16794
16795 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16796
16797         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
16798         default; improve customization type.
16799         (gnus-emphasis-custom-with-format): New macro.
16800         (gnus-emphasis-custom-value-to-external): New function.
16801         (gnus-emphasis-custom-value-to-internal): New function.
16802
16803 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16804
16805         * dns.el (query-dns): Resolve reverse addresses.
16806
16807 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16808
16809         * gnus-group.el (gnus-group-get-new-news): Use it.
16810
16811         * gnus-start.el (gnus-check-reasonable-setup): New function.
16812
16813 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16814
16815         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
16816         "Args out of range" error.  Reported by Arnaud Giersch
16817         <arnaud.giersch@free.fr>.
16818
16819 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
16820
16821         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
16822
16823 2004-11-04  Richard M. Stallman  <rms@gnu.org>
16824
16825         * spam.el (spam group): Add :version.
16826
16827         * pgg-def.el (pgg group): Add :version.
16828
16829 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16830
16831         * gnus-art.el (gnus-article-edit-article): Don't associate the
16832         article buffer with a draft file.  This is a temporary measure
16833         against the 2004-08-22 change to gnus-article-edit-mode.
16834
16835 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16836
16837         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
16838         (html2text-format-tags): Remove unused variable `attr'.
16839
16840 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
16841
16842         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
16843
16844         * tls.el (tls-process-connection-type, tls-success)
16845         (tls-certtool-program): Add :version.
16846
16847         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
16848         (starttls-extra-arguments, starttls-process-connection-type)
16849         (starttls-connect, starttls-failure, starttls-success): Add :version.
16850
16851         * spam-stat.el (spam-stat): Add :version.
16852
16853         * sieve.el (sieve): Add :version.
16854
16855         * sha1.el (sha1): Add :version.
16856         (sha1-use-external): Remove redundant version.
16857
16858         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
16859         (nnmail-cache-ignore-groups, nnmail-spool-hook)
16860         (nnmail-split-fancy-match-partial-words)
16861         (nnmail-split-lowercase-expanded): Add :version.
16862
16863         * nndiary.el (nndiary): Add :version.
16864
16865         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
16866
16867         * mml-sec.el (mml-default-sign-method)
16868         (mml-default-encrypt-method, mml-signencrypt-style-alist):
16869         Add :version.
16870
16871         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
16872
16873         * mm-url.el (mm-url-use-external, mm-url-program)
16874         (mm-url-arguments): Add :version.
16875
16876         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
16877         (mm-attachment-file-modes, mm-decrypt-option)
16878         (mm-w3m-safe-url-regexp): Add :version.
16879
16880         * message.el (message-cite-prefix-regexp)
16881         (message-sendmail-envelope-from, message-minibuffer-local-map)
16882         (message-user-fqdn, message-completion-alist): Add :version.
16883
16884         * gnus-win.el (gnus-configure-windows-hook)
16885         (gnus-use-frames-on-any-display): Add :version.
16886
16887         * gnus-art.el (gnus-article-address-banner-alist)
16888         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
16889         (gnus-treat-from-picon, gnus-treat-mail-picon)
16890         (gnus-treat-x-pgp-sig): Add :version.
16891
16892         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
16893         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
16894         (gnus-summary-article-delete-hook)
16895         (gnus-summary-display-while-building): Add :version.
16896
16897         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
16898         (gnus-get-top-new-news-hook): Add :version.
16899
16900         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
16901         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
16902
16903         * gnus-registry.el (gnus-registry): Add :version.
16904
16905         * gnus-spec.el (gnus-use-correct-string-widths)
16906         (gnus-make-format-preserve-properties): Add :version.
16907
16908         * gnus.el (gnus-group-charter-alist)
16909         (gnus-group-fetch-control-use-browse-url)
16910         (gnus-install-group-spam-parameters): Add :version.
16911
16912         * gnus-diary.el (gnus-diary): Add :version.
16913
16914         * gnus-delay.el (gnus-delay): Add :version.
16915
16916         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
16917         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
16918         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
16919         Add :version.
16920
16921         * gnus-agent.el (gnus-agent-max-fetch-size)
16922         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
16923         (gnus-agent-prompt-send-queue): Add :version.
16924
16925         * deuglify.el (gnus-outlook-deuglify): Add :version.
16926
16927         * html2text.el: Beautify code.  Improve doc strings.
16928         Some checkdoc cleanup.
16929         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
16930
16931 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
16932
16933         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
16934
16935 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
16936
16937         * gnus-registry.el (gnus-registry-hashtb): Create the registry
16938         when package is loaded.
16939
16940         * spam.el (spam-summary-score-preferred-header): Add global preference
16941         for people who want to override the default SpamAssassin over
16942         Bogofilter preference (when both are set).
16943         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
16944         (spam-user-format-function-S):
16945         Check spam-summary-score-preferred-header.
16946         (spam-extra-header-to-number): Add X-Bogosity header parsing.
16947         (spam-user-format-function-S): Format the score correctly.
16948
16949 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
16950
16951         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
16952         signature file.  Suggested by Manoj Srivastava
16953         <srivasta@golden-gryphon.com>.
16954
16955         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
16956         iso-2022-jp even in the Japanese language environment.
16957         Suggested by Jason Rumney <jasonr@gnu.org>.
16958
16959 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16960
16961         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
16962         use the same characters as the dummy marks; make it free from
16963         getting affected by the language environment.
16964         (gnus-summary-read-group-1): Update mark positions only when the
16965         format spec is updated.
16966
16967         * gnus-spec.el (gnus-update-format-specifications): Return a list
16968         of updated types.
16969
16970 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
16971
16972         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
16973         of boundp to check if display-warning is available.
16974
16975 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
16976
16977         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
16978
16979 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
16980
16981         * nnspool.el (nnspool-spool-directory): Use news-path if the
16982         news-directory variable is not bound.
16983
16984         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
16985         function instead of display-warning if it is not available.
16986
16987 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
16988
16989         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
16990         v5-10: Use `point-at-bol'.
16991
16992 2004-10-26  Simon Josefsson  <jas@extundo.com>
16993
16994         * hashcash.el: Fix URL in comment, reported by Cheng Gao
16995         <chenggao@gmail.com>.
16996
16997 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
16998
16999         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
17000         instead.
17001
17002 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
17003
17004         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
17005         to remove a server from the nnimap-server-buffer-alist.
17006         (nnimap-open-connection, nnimap-close-server): Use it.
17007
17008         * gnus-encrypt.el: Remove file in favor of encrypt.el.
17009
17010 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
17011
17012         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
17013         running the major-mode function.
17014
17015 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17016
17017         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
17018         dummy marks in the right way.
17019
17020 2004-10-18  David Edmondson  <dme@dme.org>
17021
17022         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
17023         excessively.
17024
17025 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
17026
17027         * gnus-util.el (gnus-split-references): Accept a nil references
17028         string and go on blissfully.
17029
17030         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
17031         cases where the references string is non-nil but has no references.
17032
17033         * encrypt.el: Add autoload tags.
17034
17035         * spam.el (spam-resolve-registrations-routine): Remove article
17036         from unregistration list too.  Reported by David Hanak
17037         <dhanak@isis.vanderbilt.edu>
17038
17039 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
17040
17041         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
17042         nil.  Change custom type.
17043
17044 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
17045
17046         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
17047
17048         * gnus-sum.el (gnus-summary-move-article): Use it.
17049
17050 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
17051
17052         * encrypt.el: Add autoload cookies.
17053
17054         * spam.el (spam-backend-article-list-property)
17055         (spam-backend-get-article-todo-list)
17056         (spam-backend-put-article-todo-list)
17057         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
17058         Resolve registrations separately.
17059         (spam-register-routine): Format comments.
17060         (spam-unregister-routine, spam-register-routine): Always call with
17061         specific-articles, no default list.
17062         (spam-summary-prepare-exit): Use the spam-classifications function.
17063
17064         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
17065         gnus-encrypt.el.
17066
17067         * encrypt.el: Copied from gnus-encrypt.el.
17068
17069         * gnus-encrypt.el: Commented that it's obsolete.
17070
17071 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
17072
17073         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
17074         (gnus-score-save): Use it.
17075
17076         * message.el (message-bury): Use `window-dedicated-p'.
17077
17078 2004-10-15  Simon Josefsson  <jas@extundo.com>
17079
17080         * pop3.el (top-level): Don't require nnheader.
17081         (pop3-read-timeout): Add.
17082         (pop3-accept-process-output): Add.
17083         (pop3-read-response, pop3-retr): Use it.
17084
17085 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
17086
17087         * spam.el (spam-register-routine): Move comment.
17088         (spam-verify-bogofilter): Use 'unknown for the initial
17089         spam-bogofilter-valid state, not 'never.
17090
17091         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
17092         for netrc-machine.
17093
17094         * nnimap.el (nnimap-open-connection):
17095         Use netrc-machine-user-or-password.
17096
17097 2004-10-17  Richard M. Stallman  <rms@gnu.org>
17098
17099         * gnus-registry.el (gnus-registry-unload-hook):
17100         Set as a variable with add-hook.
17101
17102         * nnspool.el (nnspool-spool-directory): Use news-directory instead
17103         of news-path.
17104
17105         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
17106
17107         * spam.el: Delete duplicate `provide'.
17108         (spam-unload-hook): Set as a variable with add-hook.
17109
17110 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
17111
17112         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
17113         in the doc string.
17114
17115         * message.el (message-ignored-news-headers)
17116         (message-ignored-supersedes-headers)
17117         (message-ignored-resent-headers)
17118         (message-forward-ignored-headers): Improve custom type.
17119
17120 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17121
17122         * message.el (message-tokenize-header): Fix 2004-09-06 change
17123         which used point-min in the wrong place.
17124
17125 2004-10-12  Simon Josefsson  <jas@extundo.com>
17126
17127         * tls.el (tls-certtool-program): New variable.
17128         (tls-certificate-information): New function, based on
17129         ssl-certificate-information.
17130
17131 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17132
17133         * compface.el: Move the version of ELisp-based uncompface program
17134         to the contrib directory because of the copyright problem.
17135
17136 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
17137
17138         * message.el (message-kill-buffer): Raise the current frame.
17139
17140 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
17141
17142         * gnus-sum.el: Mention that multibyte characters don't work as marks.
17143
17144         * gnus.el (message-y-or-n-p): Autoload.
17145
17146         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
17147         (pop3-password-required, pop3-authentication-scheme)
17148         (pop3-leave-mail-on-server): Make customizable.
17149         (pop3): New custom group.
17150         (pop3-retr): Remove `sleep-for' statements.
17151         Suggested by Dave Love <fx@gnu.org>.
17152
17153         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
17154         Windows/DOS.
17155
17156         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
17157         (imap-parse-body): Fix incorrect use of `assert'.
17158         Suggested by Dave Love <fx@gnu.org>.
17159
17160         * mml.el (mml-minibuffer-read-disposition): Require match.
17161         Suggested by Dave Love <fx@gnu.org>.
17162
17163 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
17164
17165         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
17166         doc string.
17167
17168 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
17169
17170         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
17171
17172 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17173
17174         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
17175         instead of calling `mm-insert-inline', to decode text/* parts
17176         before displaying them.
17177
17178 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
17179
17180         * mm-uu.el (mm-uu-text-plain-type): New variable.
17181         (mm-uu-pgp-signed-extract-1): Use it.
17182         (mm-uu-pgp-encrypted-extract-1): Use it.
17183         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
17184         bind mm-uu-text-plain-type with that value.
17185         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
17186         mm-uu-dissect.
17187
17188 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17189
17190         * gnus-group.el (gnus-update-group-mark-positions):
17191         * gnus-sum.el (gnus-update-summary-mark-positions):
17192         * message.el (message-check-news-body-syntax):
17193         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
17194         of string-as-multibyte.
17195
17196 2004-10-05  Juri Linkov  <juri@jurta.org>
17197
17198         * gnus-group.el (gnus-update-group-mark-positions):
17199         * gnus-sum.el (gnus-update-summary-mark-positions):
17200         * message.el (message-check-news-body-syntax):
17201         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
17202         8-bit unibyte values to a multibyte string for search functions.
17203
17204 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17205
17206         * mm-uu.el (mm-uu-dissect): Allow optional arg.
17207         (mm-uu-dissect-text-parts): New function.
17208
17209         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
17210         dissect text parts.
17211
17212         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
17213         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
17214
17215         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
17216
17217         * gnus-topic.el (gnus-topic-hierarchical-parameters):
17218         Use gnus-current-topics instead of gnus-current-topic.
17219
17220 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
17221
17222         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
17223
17224 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
17225
17226         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
17227         where approriate.
17228
17229         * nnml.el (nnml-generate-active-info): do.
17230
17231         * nndiary.el (nndiary-generate-active-info): do.
17232
17233         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
17234         (gnus-topic-move): do.
17235
17236         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
17237         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
17238
17239         * gnus-srvr.el (gnus-server-prepare)
17240         (gnus-server-open-all-servers): do.
17241
17242         * gnus-msg.el (gnus-summary-cancel-article)
17243         (gnus-summary-resend-message)
17244         (gnus-summary-mail-crosspost-complaint): do.
17245
17246         * gnus-move.el (gnus-change-server): do.
17247
17248         * gnus-group.el (gnus-group-unmark-all-groups)
17249         (gnus-group-set-current-level): do.
17250
17251 2004-10-04  Simon Josefsson  <jas@extundo.com>
17252
17253         * message.el (message-generate-hashcash): Doc fix.
17254
17255 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
17256
17257         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
17258         avoid infinite recursion via gnus-get-function.
17259
17260 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
17261
17262         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
17263
17264         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
17265
17266         * nnmail.el (nnmail-split-history): do.
17267
17268         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
17269         (nnml-request-delete-group): do.
17270
17271         * nnslashdot.el (nnslashdot-read-groups): do.
17272
17273         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
17274         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
17275
17276         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
17277         (nnspool-sift-nov-with-sed): Use last.
17278         (nnspool-retrieve-headers-with-nov): Use mapc.
17279         (nnspool-request-newgroups): Use dolist.
17280         (nnspool-request-group): Use last.
17281
17282         * nntp.el (nntp-read-server-type): Use dolist.
17283
17284         * nnvirtual.el (nnvirtual-create-mapping)
17285         (nnvirtual-update-read-and-marked): Use dolist.
17286         (nnvirtual-convert-headers): Simplify.
17287
17288 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
17289
17290         * gnus-agent.el (gnus-agent-synchronize-group-flags):
17291         Add support for sync'ing tick marks.
17292
17293 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
17294
17295         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
17296         there's no visible header.
17297
17298 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
17299
17300         * gnus-agent.el (gnus-agent-synchronize-group-flags):
17301         When necessary, pass full group name to gnus-request-set-marks.
17302
17303 2004-10-01  Simon Josefsson  <jas@extundo.com>
17304
17305         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
17306         acroread.
17307
17308 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17309
17310         * spam-report.el (spam-report-gmane): Fix interactive.
17311
17312         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
17313
17314         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
17315         when writing file.
17316         (gnus-agent-synchronize-flags): Don't default to being
17317         interactive.
17318
17319 2004-09-30  Simon Josefsson  <jas@extundo.com>
17320
17321         * message.el (message-generate-hashcash): Add.
17322         (message-send-mail): Use it, call mail-add-payment.
17323
17324 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
17325
17326         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
17327
17328 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
17329
17330         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
17331         gnus-requst-update-info with explicit code to sync the in-memory
17332         info read flags with the marks being sync'd to the backend.
17333
17334         *gnus-util.el (gnus-pp): Add optional stream to match pp API.
17335
17336 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
17337
17338         * spam.el (spam-verify-bogofilter): Add new function.
17339         (spam-check-bogofilter)
17340         (spam-bogofilter-register-with-bogofilter): Use it.
17341         (spam-verify-bogofilter): Add small fixes.
17342
17343 2004-09-28  Simon Josefsson  <jas@extundo.com>
17344
17345         * hashcash.el (hashcash-generate-payment): Revert.
17346
17347 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
17348
17349         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
17350         Use gnus-extract-references instead of gnus-split-references.
17351
17352         * gnus-util.el (gnus-extract-references): Add new function, analogous
17353         to gnus-split-references but extracts only the message-ID without
17354         anything extra.
17355
17356         * hashcash.el (hashcash-generate-payment)
17357         (hashcash-check-payment): Do the right thing if hashcash-path is
17358         nil (because the hashcash program could not be found).
17359
17360         * spam.el (spam-use-hashcash): Remove comment.
17361
17362 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
17363
17364         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
17365         (gnus-cache-enter-article, gnus-cache-remove-article)
17366         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
17367
17368         * gnus-async.el (gnus-async-prefetch-remove-group): do.
17369
17370         * gnus-art.el (article-hide-boring-headers)
17371         (article-translate-strings, article-display-face)
17372         (gnus-article-mime-match-handle-first)
17373         (gnus-article-highlight-headers)
17374         (gnus-article-add-buttons-to-head): do.
17375
17376 2004-09-27  Simon Josefsson  <jas@extundo.com>
17377
17378         * hashcash.el: New version, from
17379         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
17380         ../contrib/.
17381
17382 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17383
17384         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
17385
17386 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
17387
17388         * gnus-dup.el (gnus-dup-open): Use mapc.
17389         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
17390
17391         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
17392         Reported by Stefan Wiens <s.wi@gmx.net>.
17393
17394         * gnus.el (gnus-shutdown): Use dolist.
17395
17396         * gnus-undo.el (gnus-undo): Use mapc.
17397
17398         * nnrss.el (nnrss-generate-active): do.
17399
17400         * message.el (message-cite-original-without-signature)
17401         (message-cite-original): Use mapc.
17402         (message-do-actions, message-make-forward-subject): Use dolist.
17403
17404 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
17405
17406         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
17407         deletion to remove entire duplicate line.  Fixes merged article
17408         number bug.
17409
17410 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
17411
17412         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
17413         servers that are offline.  Avoids having gnus-agent-toggle-plugged
17414         first ask if you want to open a server and then, even when you
17415         responded with no, asking if you want to synchronize the server's
17416         flags.
17417         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
17418         multi-line expressions.
17419         (gnus-agent-synchronize-group-flags): New internal function.
17420         Updates marks in memory (in the info structure) AND in the
17421         backend.
17422
17423         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
17424
17425         * nnagent.el (nnagent-request-set-mark):
17426         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
17427         method, to ensure that synchronization updates marks in the
17428         backend and in the info (in memory) structure.
17429
17430 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17431
17432         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
17433         convention fully; don't miss the root article of a thread; make
17434         the X-Draft-From header with correct article numbers.
17435
17436 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
17437
17438         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
17439         unless plugged.  Disable the agent so that an open failure causes
17440         an error.
17441
17442         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
17443         Revert 2004-09-21 change.  The backend must be opened while
17444         synchronizing flags even when the backend stores the flags
17445         locally.
17446
17447 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
17448
17449         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
17450         in `header' match.  Reported by Svend Tollak Munkejord.
17451
17452         * message.el (message-cite-original): Fix use of
17453         `message-cite-articles-with-x-no-archive'.
17454
17455 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17456
17457         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
17458         (gnus-window-to-buffer): Ditto.
17459
17460         * mml.el (mml-preview-buffer): New variable.
17461         (mml-preview): Manage window layout with gnus-buffer-configuration.
17462
17463         * gnus-msg.el (gnus-setup-message): Put article numbers into the
17464         X-Draft-From header even if those articles aren't quoted.
17465
17466 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
17467
17468         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
17469         (gnus-request-set-mark, gnus-request-update-mark): Use new
17470         g-s-t-u-l-m to decide to use backend even when unplugged.
17471
17472 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
17473
17474         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
17475         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
17476
17477 2004-09-20  Simon Josefsson  <jas@extundo.com>
17478
17479         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
17480         "utf-16-le".
17481
17482 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17483
17484         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
17485
17486 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
17487
17488         * uudecode.el (uudecode-use-external): Add :version.
17489
17490         * smime.el (smime-CA-file, smime-encrypt-cipher)
17491         (smime-dns-server): Add :version.
17492
17493         * smiley.el (gnus-smiley-file-types): Add :version.
17494
17495         * sha1.el (sha1-use-external): Add :version.
17496
17497         * pgg-def.el (pgg-query-keyserver): Add :version.
17498
17499         * nnmail.el (nnmail-fancy-expiry-targets)
17500         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
17501         Add :version.
17502
17503         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
17504         (nnimap-retrieve-groups-asynchronous): Add :version.
17505         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
17506
17507         * mml.el (mml-content-disposition-parameters)
17508         (mml-insert-mime-headers-always): Add :version.
17509
17510         * mm-util.el (mm-coding-system-priorities): Add :version.
17511
17512         * mm-decode.el (mm-inline-text-html-with-images)
17513         (mm-keep-viewer-alive-types, mm-external-terminal-program)
17514         (mm-verify-option): Add :version.
17515         (mm-text-html-renderer): Change :version.
17516
17517         * message.el (message-fcc-externalize-attachments)
17518         (message-required-headers, message-draft-headers)
17519         (message-subject-trailing-was-query)
17520         (message-subject-trailing-was-ask-regexp)
17521         (message-subject-trailing-was-regexp, message-mark-insert-begin)
17522         (message-mark-insert-end, message-archive-header)
17523         (message-archive-note, message-cross-post-default)
17524         (message-cross-post-note, message-followup-to-note)
17525         (message-cross-post-note-function, message-use-mail-followup-to)
17526         (message-subscribed-address-functions)
17527         (message-subscribed-address-file, message-subscribed-addresses)
17528         (message-subscribed-regexps, message-allow-no-recipients)
17529         (message-yank-cited-prefix, message-signature-insert-empty-line)
17530         (message-hidden-headers, message-hierarchical-addresses)
17531         (message-mail-user-agent, message-use-idna)
17532         (message-valid-fqdn-regexp)
17533         (message-strip-special-text-properties, message-header-synonyms)
17534         (message-beginning-of-line, message-tab-body-function): Add :version.
17535         (message-insert-canlock, message-wide-reply-confirm-recipients):
17536         Change :version.
17537
17538         * mail-source.el (mail-source-ignore-errors): Add :group, :type
17539         and :version.
17540         (mail-source-delete-old-incoming-confirm)
17541         (mail-source-movemail-program): Add :version.
17542
17543         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
17544         (gnus-agent-cache, gnus-agent): Change :version.
17545
17546         * gnus-util.el (gnus-use-byte-compile): Change :version.
17547
17548         * gnus-sum.el (gnus-summary-make-false-root-always)
17549         (gnus-summary-default-high-score)
17550         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
17551         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
17552         (gnus-read-all-available-headers, gnus-article-emulate-mime)
17553         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
17554         (gnus-sum-thread-tree-single-indent)
17555         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
17556         (gnus-sum-thread-tree-leaf-with-other)
17557         (gnus-sum-thread-tree-single-leaf): Add :version.
17558         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
17559         (gnus-article-loose-mime): Change :version.
17560
17561         * gnus-start.el (gnus-backup-startup-file)
17562         (gnus-save-startup-file-via-temp-buffer): Add :version.
17563
17564         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
17565         (gnus-server-offline-face): Add :version.
17566
17567         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
17568
17569         * gnus-msg.el (gnus-gcc-externalize-attachments)
17570         (gnus-debug-files, gnus-debug-exclude-variables)
17571         (gnus-discouraged-post-methods): Change :version.
17572         (gnus-confirm-mail-reply-to-news)
17573         (gnus-confirm-treat-mail-like-news): Add :version.
17574
17575         * gnus-int.el (gnus-server-unopen-status): Add :version.
17576
17577         * gnus-group.el (gnus-group-jump-to-group-prompt)
17578         (gnus-large-ephemeral-newsgroup)
17579         (gnus-fetch-old-ephemeral-headers): Add :version.
17580
17581         * gnus-fun.el (gnus-x-face-directory)
17582         (gnus-convert-pbm-to-x-face-command)
17583         (gnus-convert-image-to-x-face-command)
17584         (gnus-convert-image-to-face-command): Add :version.
17585
17586         * gnus-delay.el (gnus-delay-default-hour): Add :version.
17587
17588         * gnus-cite.el (gnus-cite-blank-line-after-header)
17589         (gnus-article-boring-faces): Add :version.
17590
17591         * gnus-art.el (gnus-buttonized-mime-types)
17592         (gnus-inhibit-mime-unbuttonizing)
17593         (gnus-treat-display-face)
17594         (gnus-treat-body-boundary): Change :version.
17595         (gnus-body-boundary-delimiter, gnus-picon-databases)
17596         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
17597         (gnus-treat-date-english, gnus-treat-fold-headers)
17598         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
17599         (gnus-treat-mail-picon, gnus-treat-wash-html)
17600         (gnus-article-encrypt-protocol)
17601         (gnus-use-idna, gnus-article-over-scroll)
17602         (gnus-mime-display-multipart-alternative-as-mixed)
17603         (gnus-mime-display-multipart-related-as-mixed)
17604         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
17605         (gnus-ctan-url, gnus-button-ctan-handler)
17606         (gnus-button-handle-ctan-bogus-regexp)
17607         (gnus-button-ctan-directory-regexp)
17608         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
17609         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
17610         (gnus-button-man-level, gnus-button-emacs-level)
17611         (gnus-button-message-level, gnus-button-browse-level): Add :version.
17612
17613         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
17614         (gnus-agent-go-online): Change :version.
17615         (gnus-agent-expire-unagentized-dirs)
17616         (gnus-agent-auto-agentize-methods): Add :version.
17617
17618         * flow-fill.el (fill-flowed-display-column)
17619         (fill-flowed-encode-column): Add :version.
17620
17621         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
17622         (gnus-outlook-deuglify-unwrap-max)
17623         (gnus-outlook-deuglify-cite-marks)
17624         (gnus-outlook-deuglify-unwrap-stop-chars)
17625         (gnus-outlook-deuglify-no-wrap-chars)
17626         (gnus-outlook-deuglify-attrib-cut-regexp)
17627         (gnus-outlook-deuglify-attrib-verb-regexp)
17628         (gnus-outlook-deuglify-attrib-end-regexp)
17629         (gnus-outlook-display-hook): Add :version.
17630
17631         * binhex.el (binhex-use-external): Add :version.
17632
17633 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
17634
17635         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
17636         and `invisible'.
17637
17638 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
17639
17640         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
17641         in gnus-registry-trim.
17642
17643 2004-09-13  Simon Josefsson  <jas@extundo.com>
17644
17645         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
17646
17647         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
17648
17649         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
17650         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
17651         <yamaoka@jpl.org>.
17652         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
17653         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
17654         <yamaoka@jpl.org>.
17655
17656         * sieve.el (sieve-manage-mode): Ditto.
17657
17658 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
17659
17660         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
17661
17662 2004-09-11  Simon Josefsson  <jas@extundo.com>
17663
17664         * dns-mode.el: Add.
17665
17666         * mm-view.el (mm-display-dns-inline): Add.
17667
17668         * mm-decode.el (mm-inline-media-tests): Add text/dns.
17669         (mm-automatic-display): Ditto.
17670
17671         * mailcap.el (mailcap-mime-data): Add text/dns.
17672         (mailcap-mime-extensions): Map .soa to text/dns.
17673
17674 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
17675
17676         * gnus-art.el (article-decode-mime-words, article-babel)
17677         (gnus-article-highlight-signature, gnus-article-add-buttons)
17678         (gnus-signature-toggle): Remove unnecessary bindings of
17679         `inhibit-read-only' inherited from v5.10 merge.
17680
17681 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
17682
17683         * nntp.el (nntp): New customization group.
17684         (nntp-authinfo-file): Add customization group.
17685
17686         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
17687
17688         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
17689
17690         * gnus.el (to-address, to-list, subscribed)
17691         (large-newsgroup-initial): Ditto.
17692
17693         * flow-fill.el (fill-flowed-display-column)
17694         (fill-flowed-encode-column): Ditto.
17695
17696 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
17697
17698         * message.el (message-tokenize-header, message-send-mail-with-qmail):
17699         Use point-min rather than 1.
17700         (message-send-mail): Use buffer-size rather than point-max.
17701
17702         * gnus-sum.el (gnus-summary-search-article-forward):
17703         Signal a specific `search-failed' rather than a generic `error'.
17704
17705         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
17706         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
17707         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
17708
17709 2004-09-10  Simon Josefsson  <jas@extundo.com>
17710
17711         * nndb.el (require): Remove tcp and duplicate cl.
17712
17713 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
17714
17715         * gnus-agent.el (directory-files-and-attributes): Move forward.
17716
17717 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
17718
17719         * gnus-agent.el (directory-files-and-attributes):
17720         Optionally defined to support XEmacs.
17721
17722 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
17723
17724         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
17725         to avoid run-time CL dependencies.
17726         (gnus-agent-unfetch-articles): New function.
17727         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
17728         article numbers even when local .overview file is missing.
17729         (gnus-agent-read-article-number): New function.  Only accepts
17730         27-bit article numbers.
17731         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
17732         Use gnus-agent-read-article-number.
17733         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
17734         from backend while recognizing that article numbers in .overview
17735         must be valid.
17736         (gnus-agent-update-files-total-fetched-for):
17737         Use directory-files-and-attributes to improve performance.
17738         * gnus-int.el (gnus-request-move-article):
17739         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
17740         improve performance.
17741
17742         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
17743         some users confused by references to .newsrc when they only have a
17744         .newsrc.eld file.
17745         (gnus-convert-mark-converter-prompt)
17746         (gnus-convert-converter-needs-prompt): Fix use of property list.
17747         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
17748         New function.  Used internally to only display 'gnus converting
17749         files' message when actually necessary.
17750
17751         * gnus-sum.el (): Remove (require 'gnus-agent) as required
17752         methods now autoloaded.
17753
17754 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
17755
17756         * gnus-sum.el (gnus-summary-insert-subject): Remove list
17757         identifiers.
17758
17759 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
17760
17761         * gnus-picon.el: Fix indentation and closing parenthesis.
17762
17763 2004-09-01  Simon Josefsson  <jas@extundo.com>
17764
17765         * message.el (message-canlock-generate): Require sha1, not
17766         sha1-el.  (Can we get rid of this require altogether?  It is ugly
17767         to require within a function.  Sadly, if sha1.el isn't loaded, the
17768         let binding in m-c-g will hide the defcustom definition, which is
17769         bad.)
17770
17771         * canlock.el: Require sha1, not sha1-el.
17772
17773         * message.el: Don't autoload sha1 (there is a autoload cookie in
17774         sha1.el).
17775
17776         * sha1-el.el: Rename to sha1.el.
17777
17778 2004-08-30  Juanma Barranquero  <lektu@terra.es>
17779
17780         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
17781
17782 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
17783
17784         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
17785
17786 2004-08-30  Kim F. Storm  <storm@cua.dk>
17787
17788         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
17789
17790         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
17791         Add :group 'nnimap.
17792
17793 2004-08-30  Andreas Schwab  <schwab@suse.de>
17794
17795         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
17796         ?* and ?\;.
17797
17798         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
17799         and ?\' to symbol instead of whitespace.
17800
17801 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
17802
17803         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
17804
17805         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
17806         instead of re-search-forward.
17807
17808         * gnus-uu.el (gnus-uu-save-article): Ditto.
17809         (gnus-uu-post-encode-uuencode): Ditto.
17810
17811         * html2text.el (html2text-clean-list-items): Ditto.
17812         (html2text-clean-dtdd): Ditto.
17813         (html2text-format-tags): Ditto.
17814
17815         * message.el (message-send-mail-with-sendmail): Fix regexp.
17816         (message-fill-field-general): Use search-forward instead of
17817         re-search-forward.
17818         (unbold-region): Ditto.
17819
17820         * nnrss.el (nnrss-request-article): Ditto.
17821
17822         * nnslashdot.el (nnslashdot-request-article): Ditto.
17823
17824         * nnweb.el (nnweb-gmane-wash-article): Ditto.
17825
17826         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
17827         "Unrecognized menu descriptor" error in XEmacs.
17828
17829 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
17830
17831         * gnus-sum.el (gnus-read-header): Don't remove a header for the
17832         parent article of a sparse article in the thread hashtb.
17833
17834 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
17835
17836         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
17837         (nnmail-expand-newtext): Lowercase expanded entries if
17838         nnmail-split-lowercase-expanded is non-nil.
17839
17840 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17841
17842         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
17843
17844         * gnus-group.el (gnus-group-line-format-alist): Convert the value
17845         of gnus-tmp-news-method into string under XEmacs.  It will be
17846         passed to gnus-correct-length which takes only a string argument.
17847
17848 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17849
17850         * gnus-util.el (gnus-bind-print-variables): New macro.
17851         (gnus-prin1): Use it.
17852         (gnus-prin1-to-string): Use it.
17853         (gnus-pp): New function.
17854         (gnus-pp-to-string): New function.
17855
17856         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
17857         Replace pp-to-string with gnus-pp-to-string.
17858         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
17859         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
17860         * gnus-msg.el (gnus-debug): Ditto.
17861         * gnus-score.el (gnus-score-save): Ditto.
17862         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
17863         gnus-pp-to-string.
17864         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
17865         with gnus-pp.
17866         * score-mode.el (gnus-score-pretty-print): Ditto.
17867         * webmail.el (webmail-debug): Ditto.
17868
17869 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17870
17871         * gnus-art.el (article-display-face, article-display-x-face):
17872         Use buffer-read-only.
17873
17874 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17875
17876         * gnus-art.el (article-hide-list-identifiers):
17877         Bind inhibit-read-only as t.
17878
17879 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
17880
17881         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
17882
17883 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
17884
17885         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
17886         (gnus-narrow-to-page): Don't assume point-min == 1.
17887         (gnus-article-edit-mode): Derive from message-mode.
17888
17889         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
17890         point-min == 1.
17891
17892         * imap.el (imap-parse-address-list, imap-parse-body-ext):
17893         Disable incorrect use of `assert'.
17894
17895         * message.el (message-mode): Set comment-start-skip.
17896
17897
17898 2004-08-22  Sam Steingold  <sds@gnu.org>
17899
17900         * pop3.el (pop3-leave-mail-on-server): New user variable.
17901         (pop3-movemail): Delete mail only when it is nil.
17902
17903 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
17904
17905         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
17906
17907         * mml.el (mml-preview): Use `pop-to-buffer'.
17908
17909         * message.el (message-goto-mail-followup-to): Insert after "To".
17910         (message-carefully-insert-headers): Add comment.
17911
17912         * gnus.el: Remove unused variable `gnus-article-check-size'.
17913
17914         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
17915
17916         * gnus-art.el (gnus-button-alist):
17917         Improve `gnus-button-handle-library' entry.
17918
17919 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
17920
17921         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
17922         Use downcase, since XEmacs capitalizes error messages differently.
17923
17924 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
17925
17926         * nntp.el: Add (require 'gnus) due to reference to
17927         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
17928
17929 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
17930
17931         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
17932         Bind `mm-fill-flowed'.
17933
17934         * mm-decode.el (mm-dissect-singlepart): Check it.
17935
17936 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
17937
17938         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
17939         'imap' for netrc parsing.
17940
17941 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
17942
17943         * mailcap.el (mailcap-mime-data): Mark as risky.
17944
17945 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17946
17947         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
17948         may be included in the encoded word.
17949         (rfc2047-encode): Don't append a space if the encoded word
17950         includes close parenthesis.
17951
17952 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17953
17954         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
17955         of text within parentheses.
17956
17957 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
17958
17959         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
17960         (gnus-encrypt-write-file-contents): Make the password key the file
17961         name PLUS the cipher, not just the cipher.  Also remove failed
17962         passwords from the cache.
17963
17964 2004-08-06  Simon Josefsson  <jas@extundo.com>
17965
17966         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
17967         Doc fix.
17968
17969 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
17970
17971         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
17972         LWSP.
17973
17974 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
17975
17976         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
17977         Try to append in-reply-to: data to the references: header.
17978
17979         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
17980         (netrc-parse): Use gnus-encrypt.el functions.
17981
17982         * gnus-encrypt.el: Add new file for encryption support; currently
17983         does only a few GPG ciphers and an internal XOR cipher.
17984
17985         * password.el: Add comments on using password-read-and-add.
17986         (password-read-and-add): Add function to read and add the
17987         password to the cache at once.
17988
17989 2004-07-28  Simon Josefsson  <jas@extundo.com>
17990
17991         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
17992         parameter (but don't use it, for now).
17993
17994         * imap.el (imap-ssl-open): Use imap-process-connection-type,
17995         instead of hard coding to nil.
17996
17997 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17998
17999         * mm-view.el (mm-inline-image-emacs): Open lines under an image
18000         as mm-inline-image-xemacs does.
18001
18002 2004-07-26  Simon Josefsson  <jas@extundo.com>
18003
18004         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
18005         Revert part of 2004-07-17 change below.
18006
18007 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18008
18009         * rfc2047.el (rfc2047-encode-region): Don't infloop.
18010         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
18011
18012 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18013
18014         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
18015         quotes that actually start with ">" at the beginning of the
18016         lines.
18017
18018 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18019
18020         * rfc2047.el (rfc2047-encode-region): Fix last change.
18021         (rfc2047-encode-parameter): Remove useless concat.
18022
18023 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18024
18025         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
18026         encode special characters; fix some kind of misconfigured headers;
18027         signal a real error if debug-on-quit or debug-on-error is non-nil.
18028         (rfc2047-encode-max-chars): New variable.
18029         (rfc2047-encode-1): Use it.
18030         (rfc2047-encode-parameter): New function.
18031
18032         * mml.el (mml-insert-parameter): Remove an excessive space.
18033
18034 2004-07-17  Simon Josefsson  <jas@extundo.com>
18035
18036         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
18037         Kai Grossjohann <kai@emptydomain.de>.
18038         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
18039         (gnus-group-make-menu-bar): Ditto.
18040
18041         * gnus-util.el (gnus-group-server): Add.
18042
18043 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
18044
18045         * message.el (message-clone-locals): Clone sendmail and smtp
18046         variables.
18047
18048 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18049
18050         * rfc2047.el (rfc2047-encode-region): Fix last change.
18051
18052 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18053
18054         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
18055         characters as non-special.
18056
18057 2004-07-09  Simon Josefsson  <jas@extundo.com>
18058
18059         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
18060         Users will lose all flag changes made while unplugged with
18061         e.g. nntp unless flag synchronization happens, thus `nil' is not a
18062         good default.  See numerous reports on ding mailing list.
18063
18064 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18065
18066         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
18067         add generate-head-function and generate-article-function to the
18068         rfc822-forward entry.
18069         (nndoc-rfc822-forward-generate-article): New function.
18070         (nndoc-rfc822-forward-generate-head): New function.
18071
18072         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
18073
18074 2004-07-06  Dan Christensen  <jdc@uwo.ca>
18075
18076         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
18077         respect display group parameter and gnus-summary-expunge-below.
18078         (gnus-articles-to-read): Remove unused reference to display group
18079         parameter.
18080
18081 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18082
18083         * nnheader.el (nnheader-uniquify-message-id): New experimental
18084         variable.
18085         (nnheader-nov-read-message-id): Use it.
18086
18087         * spam-report.el (spam-report-gmane): Add interactive.
18088
18089 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
18090
18091         * mm-encode.el (mm-content-transfer-encoding-defaults):
18092         Use qp-or-base64 for the application/* types.
18093
18094 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
18095
18096         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
18097
18098 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
18099
18100         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
18101         trim value.
18102
18103 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
18104
18105         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
18106         New macro and function.
18107         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
18108
18109 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
18110
18111         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
18112         after-load-alist.
18113
18114 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18115
18116         * gnus-group.el (gnus-group-get-new-news-this-group):
18117         Don't update info that isn't there.
18118
18119 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
18120
18121         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
18122         entry.
18123
18124 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
18125
18126         * mm-view.el (mm-inline-render-with-function): Use multibyte
18127         buffer; decode html source by charset.
18128
18129         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
18130
18131         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
18132         Mule-UCS is loaded under XEmacs.
18133         (mm-mime-mule-charset-alist): Avoid duplicated entries.
18134
18135 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
18136
18137         * nnheader.el (nnheader-max-head-length): Increase to 8192.
18138
18139 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18140
18141         * mm-util.el (mm-coding-system-p): Return a coding-system.
18142         (mm-mime-mule-charset-alist): Use shift_jis instead of
18143         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
18144         entries for the mime charsets iso-2022-jp-3 and shift_jis.
18145         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
18146         instead of japanese-shift-jis and iso-latin-1 respectively in
18147         order to share the default value with both Emacs and XEmacs-mule.
18148         (mm-mule-charset-to-mime-charset):
18149         Make mm-coding-system-priorities effective.
18150         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
18151         while predicating of candidates upon the priorities.
18152
18153 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
18154
18155         * gnus-sum.el (gnus-summary-make-menu-bar):
18156         Add gnus-uu-invert-processable.
18157
18158         * gnus.el: Autoload gnus-uu-invert-processable.
18159
18160 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18161
18162         * mm-util.el (mm-with-multibyte-buffer): New macro.
18163
18164         * rfc2047.el (rfc2047-encode-string): Use it.
18165         (rfc2047-encode-region): Move point to the end of the region after
18166         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
18167
18168 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18169
18170         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
18171         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
18172
18173 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18174
18175         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
18176         (gnus-cite-parse): Ignore quoted envelope From_.
18177         Suggested by Karl Chen <quarl@nospam.quarl.org>.
18178
18179 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
18180
18181         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
18182         invalid addresses.
18183
18184 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
18185
18186         * spam.el: Change section markers, revise TODO list.
18187         (spam-backends): Make new master list of all installed backends.
18188         (spam-summary-exit-behavior): Add new variable to determine how
18189         messages moves are done at summary exit.
18190         (spam-move-spam-nonspam-groups-only)
18191         (spam-process-ham-in-nonham-groups)
18192         (spam-process-ham-in-spam-groups): Remove variables, the
18193         spam-summary-exit-behavior variable should be used to manage this
18194         behavior.
18195         (spam-old-ham-articles, spam-old-spam-articles): Remove.
18196         (spam-old-articles): Add variable, replacing spam-old-ham-articles
18197         and spam-old-spam-articles.
18198         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
18199         Add empty variables, placeholders for the backends they represent.
18200         (spam-set-difference): Move, unchanged.
18201         (spam-list-of-processors): Declare OBSOLETE, not used anymore
18202         unless the user has a processor variable.
18203         (spam-classifications, spam-classification-valid-p)
18204         (spam-backend-properties, spam-backend-property-valid-p)
18205         (spam-backend-function-type-valid-p)
18206         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
18207         (spam-report-articles-gmane, spam-report-articles-resend):
18208         Remove functions, they are not needed.
18209         (spam-install-backend-super, spam-backend-list)
18210         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
18211         (spam-backend-function, spam-backend-ham-registration-function)
18212         (spam-backend-spam-registration-function)
18213         (spam-backend-ham-unregistration-function)
18214         (spam-backend-spam-unregistration-function)
18215         (spam-backend-statistical-p, spam-backend-mover-p)
18216         (spam-install-backend-alias, spam-install-checkonly-backend)
18217         (spam-install-mover-backend, spam-install-nocheck-backend)
18218         (spam-install-backend, spam-install-statistical-backend)
18219         (spam-install-statistical-checkonly-backend): Add backend installation
18220         support.
18221         (spam-summary-prepare-exit): Rewrite to use the new backend code.
18222         (spam-group-processor-p): Use the new backend code and respect the
18223         summary exit behavior.
18224         (spam-mark-spam-as-expired-and-move-routine): Remove.
18225         (spam-summary-prepare): Change to use the new spam-old-articles
18226         variable.
18227         (spam-copy-or-move-routine, spam-copy-spam-routine)
18228         (spam-move-spam-routine, spam-copy-ham-routine)
18229         (spam-move-ham-routine): Add code to copy/move ham or spam.
18230         (spam-fetch-field-fast): Improve doc and code, plus allow the
18231         'number request.
18232         (spam-list-of-checks, spam-list-of-statistical-checks):
18233         Remove variables.
18234         (spam-split, spam-find-spam): Use the new backend code.
18235         (spam-registration-functions): Remove variable.
18236         (spam-unregister-routine): Add convenience wrapper.
18237         (spam-log-undo-registration, spam-register-routine)
18238         (spam-log-processing-to-registry)
18239         (spam-log-unregistration-needed-p): Rename "check" to "backend"
18240         where possible.
18241         (spam-check-gmane-xref, spam-check-regex-headers)
18242         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
18243         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
18244         (spam-check-bogofilter-headers, spam-check-spamoracle)
18245         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
18246         (spam-check-crm114-headers): Use the spam-split-group that
18247         spam-split prepares, no need to determine it every time.
18248
18249         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
18250         to the nnheader-parse-naked-head call.
18251
18252         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
18253
18254         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
18255         the nnheader-nov-read-message-id call.
18256
18257 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
18258
18259         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
18260         gnus-activate-group twice.  Suggested by Markus Peter
18261         <warp@spin.de>.
18262
18263 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
18264
18265         * gnus-art.el (gnus-article-time-format): Exchange the order of
18266         day and month in the default value; fix customization type.
18267         (article-date-ut): Use add-text-properties.
18268         (article-make-date-line): Use message-make-date instead of
18269         current-time-string.
18270
18271         * message.el (message-fetch-field): Don't use set-text-properties.
18272         (message-make-date): Simplify.
18273
18274         * messagexmas.el (message-xmas-make-date): New function.
18275         (message-xmas-redefine): Defalias message-make-date to it.
18276
18277 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18278
18279         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
18280         (rfc2047-encode-region): Treat text within parentheses as special;
18281         show the original text when error has occurred.
18282
18283         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
18284         already-computed method to gnus-activate-group.
18285
18286         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
18287         same select-methods identical Lisp objects.
18288
18289         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
18290         object when modifying the info.
18291
18292 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18293
18294         * gnus-srvr.el (gnus-server-set-info): Remove the server from
18295         gnus-opened-servers since it has never been opened with the new
18296         configuration yet.
18297
18298 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18299
18300         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
18301         arg to nnheader-generate-fake-message-id.
18302
18303 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
18304
18305         * nnheader.el (nnheader-generate-fake-message-id): Accept a
18306         number and build a fake message ID localized to a group and
18307         article number (so it's repeatable from that point on).
18308         (nnheader-fake-message-id-p): Change regex to accomodate new fake
18309         ID format.
18310
18311         * gnus-sum.el (gnus-get-newsgroup-headers):
18312         Call nnheader-generate-fake-message-id with the article number.
18313
18314 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
18315
18316         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
18317         end-of-buffer.
18318
18319 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18320
18321         * message.el (message-ignored-supersedes-headers): Add Approved.
18322
18323 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
18324
18325         * rfc2047.el (rfc2047-encode-message-header): Remove useless
18326         goto-char.
18327         (rfc2047-encode): Fold the line before encoding.
18328
18329 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18330
18331         * rfc2047.el (rfc2047-encode-message-header): Disabled header
18332         folding -- not all headers can be folded, and this should be done
18333         by the message composition mode.  Probably.  I think.
18334
18335 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18336
18337         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
18338         fast.
18339
18340         * gnus-ems.el (gnus-remove-image): Don't use
18341         message-text-with-property; remove only the image found first.
18342
18343         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
18344         found first.
18345
18346 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
18347
18348         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
18349
18350 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18351
18352         * message.el (message-text-with-property): Make it fast and accept
18353         optional arguments.
18354         (message-strip-forbidden-properties): Use it.
18355         (message-fix-before-sending): Follow the m-t-w-p change.
18356
18357         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
18358
18359 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18360
18361         * gnus-art.el (article-hide-headers): Don't change the buffer
18362         mistakenly when performing mml-preview even if
18363         gnus-single-article-buffer is nil.
18364
18365 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
18366
18367         * message.el (message-expand-name-databases): New user option.
18368         (message-expand-name): Use it.
18369
18370 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
18371
18372         * spam.el (spam-report-articles-resend)
18373         (spam-report-resend-register-routine): Allow ham reporting.
18374         (spam-report-resend-register-ham-routine): Add wrapper.
18375         (spam-registration-functions): Add ham resending functions.
18376         (spam-list-of-processors): Add ham resend processor.
18377
18378         * gnus.el (ham-resend-to): Add new group parameter.
18379         (spam-process): Add ham resend option.
18380
18381         * spam-report.el (spam-report-resend): Allow reporting ham.
18382         (spam-report-resend-ham): Add wrapper.
18383
18384 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18385
18386         * message.el (message-cite-articles-with-x-no-archive):
18387         New variable.
18388         (message-cite-original): Use it.
18389
18390 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18391
18392         * message.el (message-cite-original): Respect X-No-Archive.
18393
18394 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18395
18396         * gnus-art.el (article-hide-headers): Refer to the values for
18397         gnus-ignored-headers and gnus-visible-headers in the summary
18398         buffer since a user may have set them as group parameters.
18399
18400 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
18401
18402         * assistant.el (assistant-node-name): Add convenience function.
18403         (assistant-render-text, assistant-render-node): Add error handling,
18404         plus handle multiple next nodes.
18405         (assistant-find-next-node): Comment out for now.
18406         (assistant-find-next-nodes): Add function, returns list of next
18407         nodes.
18408
18409 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
18410
18411         * mail-source.el (mail-source-directory): Fix doc-string.
18412
18413 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
18414
18415         * assistant.el (assistant-render-text, assistant-eval): Add :set
18416         widget type, which is different because it takes and returns a
18417         list.  Much hilarity ensues.
18418
18419 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
18420
18421         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
18422
18423         * gnus-group.el (gnus-group-get-new-news-this-group):
18424         Add doc-string.
18425
18426         * gnus-start.el (gnus-activate-group): Add doc-string.
18427
18428 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18429
18430         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
18431
18432 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
18433
18434         * assistant.el (assistant-render-text): Try to add a :set
18435         widget, more to come.
18436
18437         * spam.el (spam-group-spam-contents-p): Handle empty groupname
18438         strings.
18439         (spam-report-articles-resend)
18440         (spam-register-routine): Do registration iff any articles warrant
18441         it.
18442         (spam-summary-prepare-exit): Change log message for nil group
18443         destinations.
18444
18445 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
18446
18447         * spam.el (spam-report-resend-register-routine):
18448         Allow spam-report-resend-to to be a group parameter or a global value.
18449
18450 2004-05-26  Simon Josefsson  <jas@extundo.com>
18451
18452         * starttls.el: Merge with my GNUTLS based starttls.el.
18453         (starttls-gnutls-program, starttls-use-gnutls)
18454         (starttls-extra-arguments, starttls-process-connection-type)
18455         (starttls-connect, starttls-failure, starttls-success):
18456         New variables.
18457         (starttls-program, starttls-extra-args): Doc fix.
18458         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
18459         New functions.
18460         (starttls-negotiate, starttls-open-stream):
18461         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
18462         function if it is set.
18463
18464 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18465
18466         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
18467         structured fields.
18468
18469 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18470
18471         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
18472
18473 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
18474
18475         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
18476         Add variable.
18477         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
18478         assigning the spam-mark to new messages.
18479
18480 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
18481
18482         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
18483
18484 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18485
18486         * dgnushack.el: Autoload customize-set-variable for XEmacs.
18487
18488         * rfc2047.el (rfc2047-encodable-p): Don't move point.
18489         (rfc2047-decode): Treat the ascii coding-system as raw-text by
18490         default.
18491
18492 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
18493
18494         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
18495         correct data.
18496
18497 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
18498
18499         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
18500         (spam-group-processor-p): Fix function.
18501         (spam-group-processor-multiple-p)
18502         (spam-group-spam-processor-report-gmane-p)
18503         (spam-group-spam-processor-report-resend-p)
18504         (spam-group-spam-processor-bogofilter-p)
18505         (spam-group-spam-processor-blacklist-p)
18506         (spam-group-spam-processor-ifile-p)
18507         (spam-group-ham-processor-ifile-p)
18508         (spam-group-spam-processor-spamoracle-p)
18509         (spam-group-spam-processor-crm114-p)
18510         (spam-group-ham-processor-bogofilter-p)
18511         (spam-group-spam-processor-stat-p)
18512         (spam-group-ham-processor-stat-p)
18513         (spam-group-ham-processor-whitelist-p)
18514         (spam-group-ham-processor-BBDB-p)
18515         (spam-group-ham-processor-spamoracle-p)
18516         (spam-group-ham-processor-copy-p): Remove functions with some
18517         prejudice against unneeded code.
18518         (spam-report-articles-resend)
18519         (spam-report-resend-register-routine): Allow the group/topic
18520         spam-resend-to value to override spam-report-resend-to.
18521         (spam-summary-prepare-exit): Invoke spam-group-processor-p
18522         properly now.
18523
18524         * gnus.el (spam-resend-to): Add group/topic parameter.
18525         (spam-process): Move the OBSOLETE processors to the end of the
18526         choices.
18527
18528 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
18529
18530         * spam-report.el (spam-report-resend-to, spam-report-resend):
18531         Start with resend-to set to nil, and then ask the user if necessary.
18532         (spam-report-resend): spam-report-resend takes a list of articles, not
18533         separate article numbers.
18534
18535 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18536
18537         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
18538         addition to emacs-w3m.
18539
18540 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18541
18542         * assistant.el (assistant-authinfo-data): New function.
18543         (assistant-eval): Eval for entire assistant.
18544
18545         * netrc.el (netrc-services-file): New variable.
18546         (netrc-parse-services): New function.
18547         (netrc-find-service-name): New function.
18548         (netrc-find-service-number): New function.
18549         (netrc-port-equal): New function.
18550         (netrc-machine): Use it.
18551
18552         * nnimap.el (nnimap-open-connection): Use netrc.
18553
18554         * gnus-util.el (gnus-netrc-get): Remove aliases.
18555
18556         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
18557
18558         * assistant.el (wid-edit): Fix compilation.
18559
18560         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
18561
18562 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
18563
18564         * gnus-util.el (gnus-set-file-modes): New function.  (small
18565         patch).
18566
18567 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18568
18569         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
18570
18571         * assistant.el (assistant-render-node): Fix up rendering and
18572         read-only text.
18573         (assistant-render-node): Reset.
18574         (assistant-make-read-only): Not sticky.
18575
18576 2004-05-20  Danny Siu  <dsiu@adobe.com>
18577
18578         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
18579         centered even when gnus-auto-center-summary is t.
18580
18581 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18582
18583         * dns.el (dns-get-txt-answer): New function.
18584         (dns-read-txt): Ditto.
18585         (query-dns): Use it.
18586
18587 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
18588
18589         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
18590         active for foreign groups even if the group level is higher than
18591         the specified value.
18592
18593 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18594
18595         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
18596         non-active groups.
18597
18598         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
18599
18600 2004-05-20  Magnus Henoch  <mange@freemail.hu>
18601
18602         * dns.el (dns-read-type): Add support for SVR.  (small patch)
18603
18604 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
18605
18606         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
18607         (spam-crm114-header, spam-crm114-spam-switch)
18608         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
18609         (spam-crm114-positive-spam-header)
18610         (spam-crm114-database-directory, spam-list-of-processors)
18611         (spam-group-spam-processor-crm114-p)
18612         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
18613         (spam-generic-score, spam-list-of-checks)
18614         (spam-list-of-statistical-checks, spam-registration-functions)
18615         (spam-check-crm114-headers, spam-crm114-score)
18616         (spam-check-crm114, spam-crm114-register-with-crm114)
18617         (spam-crm114-register-spam-routine)
18618         (spam-crm114-unregister-spam-routine)
18619         (spam-crm114-register-ham-routine)
18620         (spam-crm114-unregister-ham-routine): Add CRM114 support.
18621         From asjo@koldfront.dk (Adam Sjøgren).
18622
18623         * gnus.el: Add spam-use-crm114.
18624
18625         * spam.el (spam-list-of-processors, spam-registration-functions):
18626         Add spam-use-resend.
18627         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
18628         (spam-report-articles-gmane): Add doc fix.
18629         (spam-report-articles-resend, spam-report-resend-register-routine):
18630         Add wrappers around spam-report-resend-to.
18631
18632         * spam-report.el (spam-report-resend-to, spam-report-resend):
18633         Add support for resending spam.
18634         (spam-report-gmane): Fix line length >80.
18635
18636         * gnus.el (spam-process): Add spam-use-resend.
18637
18638 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18639
18640         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
18641         number of processed spam messages.
18642         (spam-ham-copy-or-move-routine): Return the number of processed
18643         ham messages.
18644         (spam-summary-prepare-exit): Use the above values to decide
18645         whether status messages shouled be displayed.
18646
18647 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18648
18649         * rfc2047.el (rfc2047-encode-function-alist): Rename from
18650         `rfc2047-encoding-function-alist' in order to avoid conflicting
18651         with the old version.
18652         (rfc2047-encode-region): Concatenate words containing non-ASCII
18653         characters in structured fields; don't encode space-delimited
18654         ASCII words even in unstructured fields; don't break words at
18655         char-category boundaries.
18656         (rfc2047-encode-1): New function.
18657         (rfc2047-encode): Use it; encode text so that it occupies the
18658         maximum width within 76-column; work correctly on Q encoding for
18659         iso-2022-* charsets.
18660         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
18661         sure not to break a line just after the header name.
18662         (rfc2047-b-encode-region): Remove.
18663         (rfc2047-b-encode-string): New function.
18664         (rfc2047-q-encode-region): Remove.
18665         (rfc2047-q-encode-string): New function.
18666
18667         * mm-util.el (mm-replace-in-string): New function.
18668
18669 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18670
18671         * gnus-msg.el (gnus-inews-make-draft-meta-information):
18672         Really get it right.
18673         (gnus-inews-make-draft): Really.
18674
18675 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
18676
18677         * nnmh.el (nnmh-request-list-1): Don't check the link count
18678         before descending.  (small patch)
18679
18680 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18681
18682         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
18683         stuff.
18684
18685         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
18686         Match on real group name.
18687
18688         * gnus-art.el (gnus-signature-limit): Doc fix.
18689
18690         * gnus-msg.el (gnus-inews-make-draft): Quote list.
18691
18692         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
18693
18694 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
18695
18696         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
18697         isn't a string.
18698
18699 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18700
18701         * gnus-draft.el (gnus-draft-send):
18702         Bind rfc2047-encode-encoded-words.
18703
18704         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
18705         (rfc2047-encodable-p): Say that =? needs encoding.
18706         (rfc2047-encode-encoded-words): New variable.
18707
18708         * gnus-group.el (gnus-group-select-group): Doc fix.
18709
18710         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
18711
18712         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
18713         to nil.
18714
18715         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
18716
18717         * nnheader.el (nnheader-get-lines-and-char): New function.
18718
18719 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
18720
18721         * gnus-msg.el (gnus-summary-followup-with-original):
18722         Document yanking of region when active.
18723
18724 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18725
18726         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
18727         groups if the group level is higher than the specified value.
18728
18729 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
18730
18731         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
18732         (gnus-group-jump-to-group): Add prefix argument using
18733         `gnus-group-jump-to-group-prompt'.  Query before jumping to
18734         non-active group.
18735
18736         * compface.el (uncompface): Be verbose when changing
18737         `uncompface-use-external'.
18738
18739         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
18740         handle manual section.
18741
18742 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18743
18744         * gnus-art.el (gnus-button-alist): Revert previous change.
18745
18746 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
18747
18748         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
18749
18750 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18751
18752         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
18753         whether backend can accept message.
18754
18755         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
18756
18757 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
18758
18759         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
18760         Avoid creating directory when nntp-marks-is-evil is true.
18761         Reported by Reiner Steib.
18762
18763 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
18764
18765         * gnus-picon.el (gnus-picon-style): New variable.
18766         (gnus-picon-insert-glyph): Add optional `nostring' argument.
18767         (gnus-picon-transform-address): Support `gnus-picon-style'.
18768         From Jesper Harder <harder@ifa.au.dk>.
18769
18770 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18771
18772         * message.el (message-fill-field): Return point.
18773         (message-generate-headers): Go to end of field.
18774
18775         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
18776         stuff for non-living groups.
18777
18778 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
18779
18780         * gnus-art.el (gnus-article-followup-with-original)
18781         (gnus-article-reply-with-original): gnus-mark-active-p ->
18782         gnus-region-active-p.
18783
18784 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
18785
18786         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
18787         only when there is spam or ham to be processed.
18788
18789 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18790
18791         * mail-source.el (mail-source-delete-crash-box): Refactor.
18792         (mail-source-fetch): Use it.
18793         (mail-source-fetch-file): Ditto.
18794         (mail-source-fetch-directory): Run postscript in loop.
18795         (mail-source-fetch-pop): Delete.
18796         (mail-source-fetch-maildir): Ditto.
18797         (mail-source-fetch-imap): Ditto.
18798
18799         * imap.el (imap-authenticators): Comment out sasl.
18800
18801         * message.el (message-skip-to-next-address): New function.
18802         (message-fill-header-address): Refactor.
18803         (message-fill-address): Use it.
18804         (message-delete-address): Use it.
18805         (message-fill-header-general): Refactor.
18806         (message-fill-field-address): Rename.
18807         (message-narrow-to-field): Find the start of the header.
18808         (message-header-format-alist): Don't pre-fill.
18809         (message-fill-header): Remove.
18810         (message-insert-header): New function.
18811         (message-shorten-references): Use it.
18812
18813         * rfc2047.el (rfc2047-field-value): Strip props.
18814
18815         * mail-parse.el (mail-header-make-address): New alias.
18816
18817         * ietf-drums.el (ietf-drums-make-address): New function.
18818
18819         * imap.el: Add compiler directives.
18820
18821         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
18822
18823         * gnus-art.el (article-decode-idna-rhs): Don't use
18824         message-idna-inside-rhs-p.
18825
18826 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18827
18828         * message.el (message-idna-inside-rhs-p): Remove.
18829         (message-idna-to-ascii-rhs-1): Use proper address parsing.
18830
18831         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
18832         false positives.
18833
18834 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
18835
18836         * imap.el (imap-sasl-make-mechanisms): Use sasl.
18837
18838 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18839
18840         * nneething.el (nneething-file-name): Don't create spurious
18841         files.
18842
18843         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
18844         (gnus-inews-do-gcc): Remove sleep.
18845
18846         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
18847         part under point.
18848
18849         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
18850         (gnus-agent-regenerate-group): Using nil messages aren't valid.
18851
18852 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
18853
18854         * spam.el (spam-summary-prepare-exit): Fix (length).
18855
18856 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
18857
18858         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
18859         as expired without moving it" message when there are spam
18860         messages left.
18861
18862 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
18863
18864         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
18865         header is not nil.
18866
18867 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
18868
18869         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
18870         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
18871         (nntp-marks-changed-p): New arg SERVER.
18872         (nntp-request-update-info): Adjust caller.
18873
18874 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
18875
18876         * nntp.el (nntp-save-marks): Pass missing arg.
18877
18878 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
18879
18880         * nntp.el: Support marks.
18881         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
18882         (nntp-marks-modtime, nntp-marks-directory): New variables.
18883         (nntp-request-set-mark, nntp-request-update-info)
18884         (nntp-possibly-create-directory, nntp-marks-changed-p)
18885         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
18886         New functions.
18887
18888 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
18889
18890         * gnus-xmas.el (gnus-xmas-select-lowest-window)
18891         (gnus-xmas-redefine): Rename.
18892
18893         * gnus-score.el (gnus-score-insert-help):
18894         Use gnus-select-lowest-window.
18895
18896         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
18897         appt-select-lowest-window and rename to gnus-select-lowest-window.
18898
18899         * gnus.el: do.
18900
18901 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18902
18903         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
18904         encodings of MIME-encoded words, in order to improve
18905         interoperability with several broken MUAs.
18906
18907 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18908
18909         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
18910         tags, only when charsets are not specified in headers.
18911         (mm-inline-text-html-render-with-w3m): Ditto.
18912
18913         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
18914         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
18915
18916 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18917
18918         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
18919         instead of MIME-decoded from fields when checking
18920         `gnus-article-address-banner-alist'.
18921
18922 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
18923
18924         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
18925         description rather than subject.
18926
18927 2004-05-02  Steve Youngs  <steve@youngs.au.com>
18928
18929         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
18930
18931 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18932
18933         * gnus.el (gnus-version-number): Bump.
18934
18935 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
18936
18937         * gnus.el: No Gnus v0.2 is released.
18938
18939 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18940
18941         * gnus-agent.el (gnus-agent-read-agentview):
18942         Inline gnus-uncompress-range.
18943
18944 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18945
18946         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
18947         `exec-installed-p'.
18948
18949 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18950
18951         * gnus.el (spam-process, spam-autodetect-methods):
18952         Add bsfilter and bsfilter-headers.
18953
18954         * spam.el (spam-bsfilter): New customize group.
18955         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
18956         (spam-bsfilter-header, spam-bsfilter-probability-header)
18957         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
18958         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
18959         (spam-bsfilter-database-directory): New options.
18960         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
18961         (spam-list-of-statistical-checks, spam-registration-functions):
18962         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
18963         (spam-bsfilter-score): New command.
18964         (spam-check-bsfilter-headers, spam-check-bsfilter)
18965         (spam-bsfilter-register-with-bsfilter)
18966         (spam-bsfilter-register-spam-routine)
18967         (spam-bsfilter-unregister-spam-routine)
18968         (spam-bsfilter-register-ham-routine)
18969         (spam-bsfilter-unregister-ham-routine): New functions.
18970         (spam-generic-score): Support bsfilter; Accept an optional argument
18971         to recalcurate spam score even if scoring header has already been
18972         added.
18973         (spam-bogofilter-score, spam-spamassassin-score): Accept an
18974         optional argument to recalcurate spam score even if scoring header
18975         has already been added.
18976
18977 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
18978
18979         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
18980         strings!  Reported by David D. Smith <davidsmith@acm.org>.
18981         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
18982         link is missing.
18983
18984 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
18985
18986         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
18987         (html2text-get-attr): Rewrite.
18988
18989         * message.el (message-setup-1): Remove redundant put-text-property
18990         on mail-header-separator.
18991
18992 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
18993
18994         * gnus-registry.el (gnus-registry-cache-whitespace)
18995         (gnus-registry-action, gnus-registry-spool-action)
18996         (gnus-registry-split-fancy-with-parent): Change message levels
18997         from 5 to 3 or 7, as needed.
18998
18999         * spam.el (spam-summary-prepare-exit)
19000         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
19001         (spam-split, spam-find-spam, spam-log-undo-registration)
19002         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
19003         level from 5 to 6.
19004
19005 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19006
19007         * gnus-ems.el: Autoload appt-select-lowest-window (revert
19008         2004-03-04 change).
19009
19010 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
19011
19012         * sieve-manage.el (sieve-manage-open):
19013         * nnweb.el (nnweb-insert-html):
19014         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
19015         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
19016         * nnspool.el (nnspool-request-group):
19017         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
19018         * nnml.el (nnml-request-update-info):
19019         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
19020         (nnmh-request-create-group, nnmh-update-gnus-unreads):
19021         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
19022         (nnimap-request-set-mark):
19023         * nnfolder.el (nnfolder-request-update-info):
19024         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
19025         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
19026         * gnus-uu.el (gnus-uu-find-articles-matching):
19027         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
19028         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
19029         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
19030         * gnus-nocem.el (gnus-nocem-scan-groups):
19031         * gnus-int.el (gnus-start-news-server):
19032         * gnus-group.el (gnus-group-make-kiboze-group)
19033         (gnus-group-browse-foreign-server):
19034         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
19035         Use mapc when appropriate.
19036
19037 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
19038
19039         FIXME: Make separate entries for each person.
19040
19041         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
19042         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
19043         <shields@msrl.com>:
19044
19045         * spam.el (spam-necessary-extra-headers): Get the extra headers we
19046         may need for spam sorting and scoring.
19047         (spam-user-format-function-S): Add user format function suitable for
19048         general use.
19049         (spam-article-sort-by-spam-status): Add sorting function for summary
19050         sorting.
19051         (spam-extra-header-to-number): Add function to get a score from a
19052         header.
19053         (spam-summary-score): Add function to get a numeric score from the
19054         headers.
19055         (spam-generic-score): Fix function doc, was in wrong place.
19056         (spam-initialize): Take symbols when it's run, and install the
19057         extra headers that spam-necessary-extra-headers thinks we need.
19058
19059 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
19060
19061         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
19062         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
19063
19064 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
19065
19066         * gnus-sum.el (gnus-set-global-variables)
19067         (gnus-build-all-threads, gnus-get-newsgroup-headers)
19068         (gnus-article-get-xrefs, gnus-summary-best-group)
19069         (gnus-summary-next-article, gnus-summary-enter-digest-group)
19070         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
19071         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
19072         Use with-current-buffer.
19073
19074 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
19075
19076         * spam.el (spam-summary-prepare-exit): Simplify logic.
19077         (spam-fetch-article-header): Read the article header if it's not
19078         available.
19079         (spam-list-articles): Simplify logic.
19080         (spam-filelist-register-routine): Fix bug with unregister-list.
19081
19082         * gnus-registry.el: Fix comments at beginning.
19083
19084 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
19085
19086         * message.el (message-cater-to-broken-inn): Remove.
19087         (message-shorten-references): Make sure the total folded length of
19088         References is shorter than 998 characters to cater to a bug in INN
19089         2.3.  Also, don't pretend that references aren't folded -- this
19090         hasn't worked for a while.
19091
19092 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19093
19094         * gnus-agent.el (gnus-agentize):
19095         gnus-agent-send-mail-real-function no longer set to current value
19096         of message-send-mail-function but rather a lambda that calls
19097         message-send-mail-function.  The change makes the agent real-time
19098         responsive to user changes to message-send-mail-function.
19099
19100 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19101
19102         * legacy-gnus-agent.el
19103         (gnus-agent-convert-to-compressed-agentview): Fix typos with
19104         help from Florian Weimer <fw@deneb.enyo.de>
19105
19106 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
19107
19108         * nnmail.el (nnmail-cache-insert): Revert last change.
19109
19110 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
19111
19112         * nnmail.el (nnmail-cache-insert): Always check whether
19113         nnmail-cache-ignore-groups matches a group name.
19114
19115 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
19116
19117         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
19118         (spam-find-spam, spam-log-processing-to-registry)
19119         (spam-log-registered-p, spam-log-unregistration-needed-p)
19120         (spam-log-undo-registration): Use gnus-message instead of
19121         gnus-error, none of these errors are fatal.
19122
19123         * gnus-registry.el (gnus-registry-clean-empty-function)
19124         (gnus-registry-clean-empty): Remove only empty entries without
19125         extra data.
19126
19127 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
19128
19129         * spam-stat.el (spam-stat-buffer-change-to-spam)
19130         (spam-stat-buffer-change-to-non-spam): Change (error) to
19131         (gnus-message 8) invocation.
19132
19133 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19134
19135         * nntp.el (nntp-via-netcat-command): New variable.
19136         (nntp-via-netcat-switches): New variable.
19137         (nntp-open-via-rlogin-and-netcat): New function.
19138         (nntp-open-connection-function): Doc fix.
19139         (nntp-telnet-command): Doc fix.
19140         (nntp-end-of-line): Doc fix.
19141         (nntp-via-rlogin-command): Doc fix.
19142         (nntp-via-user-name): Doc fix.
19143         (nntp-via-address): Doc fix.
19144
19145 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19146
19147         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
19148         error in Emacs 21.1.
19149
19150 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
19151
19152         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
19153
19154 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19155
19156         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
19157         (gnus-agent-with-refreshed-group): New macro.
19158         (gnus-agent-rename-group): New function.
19159         (gnus-agent-delete-group): New function.
19160         (gnus-agent-save-group-info): Use gnus-command-method when
19161         `method' parameter is nil.  Don't write nil entries into the
19162         active file.
19163         (gnus-agent-get-group-info): New function.
19164         (gnus-agent-fetch-articles):
19165         Use gnus-agent-update-files-total-fetched-for to increment disk space
19166         used.
19167         (gnus-agent-fetch-headers, gnus-agent-save-alist):
19168         Use gnus-agent-update-view-total-fetched-for to increment disk space
19169         used.
19170         (gnus-agent-get-local): Add optional parameters to avoid calling
19171         gnus-group-real-name and gnus-find-method-for-group.
19172         (gnus-agent-set-local): Delete stored entry if either min, or max,
19173         are nil.
19174         (gnus-agent-fetch-session): Reworded error/quit messages.
19175         On quit, use gnus-agent-regenerate-group to record existance of any
19176         articles fetched to disk before the quit occurred.
19177         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
19178         gnus-agent-update-view-total-fetched-for, and
19179         gnus-agent-update-files-total-fetched-for to decrement disk space
19180         used.
19181         (gnus-agent-retrieve-headers):
19182         Use gnus-agent-update-view-total-fetched-for to increment disk space
19183         used.
19184         (gnus-agent-regenerate-group): Replace gnus-group-update-group
19185         with gnus-agent-update-files-total-fetched-for to decrement disk
19186         space and fresh group buffer.
19187         (gnus-agent-inhibit-update-total-fetched-for): New variable.
19188         (gnus-agent-need-update-total-fetched-for): New variable.
19189         (gnus-agent-update-files-total-fetched-for): New function.
19190         (gnus-agent-update-view-total-fetched-for): New function.
19191         (gnus-agent-total-fetched-for): New function.
19192
19193         * gnus-cache.el (gnus-cache-save-buffers):
19194         Use gnus-cache-update-overview-total-fetched-for to change disk space
19195         used by this group.
19196         (gnus-cache-possibly-enter-article):
19197         Use gnus-cache-update-file-total-fetched-for to increment disk space
19198         used by this group.
19199         (gnus-cache-possibly-remove-article):
19200         Use gnus-cache-update-file-total-fetched-for to decrement disk space
19201         used by this group.
19202         (gnus-cache-generate-nov-databases): Purge total fetched cache.
19203         (gnus-cache-rename-group): New function.
19204         (gnus-cache-delete-group): New function.
19205         (gnus-cache-inhibit-update-total-fetched-for): New variable.
19206         (gnus-cache-need-update-total-fetched-for): New variable.
19207         (gnus-cache-with-refreshed-group): New macro.
19208         (gnus-cache-update-file-total-fetched-for): New function.
19209         (gnus-cache-update-overview-total-fetched-for): New function.
19210         (gnus-cache-rename-group-total-fetched-for): New function.
19211         (gnus-cache-delete-group-total-fetched-for): New function.
19212         (gnus-cache-total-fetched-for): New function.
19213
19214         * gnus-group.el: Require gnus-sum and autoload functions to
19215         resolve warnings when gnus-group.el compiled alone.
19216         (gnus-group-line-format): Documented new %F.
19217         (size of Fetched data) group line format; identifies disk space
19218         used by agent and cache.
19219         (gnus-group-line-format-alist): Defined new F format.
19220         (gnus-total-fetched-for): New function.
19221         (gnus-group-delete-group): No longer update
19222         gnus-cache-active-altered as gnus-request-delete-group now keeps
19223         the cache in sync.
19224         (gnus-group-list-active): Let the agent store a server's active
19225         list if currently plugged.
19226
19227         * gnus-int.el (gnus-request-delete-group):
19228         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
19229         local disk in sync with the server.
19230         (gnus-request-rename-group):
19231         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
19232         local disk in sync with the server.
19233
19234         * gnus-start.el (gnus-get-unread-articles):
19235         Cosmetic simplification to logic.
19236
19237         * gnus-util.el (gnus-rename-file): New function.
19238
19239 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
19240
19241         * mm-util.el (mm-image-load-path): Handle nil in load-path.
19242
19243 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
19244
19245         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
19246         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
19247
19248 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
19249
19250         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
19251         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
19252
19253 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
19254
19255         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
19256
19257 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
19258
19259         * spam.el (spam-set-difference): Add function to replace
19260         gnus-set-difference in spam.el.
19261         (spam-summary-prepare-exit): Use spam-set-difference.
19262
19263 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
19264
19265         * gnus-registry.el (gnus-registry-cache-file): Update to use
19266         gnus-dribble-directory OR gnus-home-directory OR ~.
19267         (gnus-registry-split-fancy-with-parent): Fix doc.
19268
19269 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19270
19271         * message.el (message-exchange-point-and-mark):
19272         Use message-mark-active-p.  Suggested by Jesper Harder
19273         <harder@ifa.au.dk>.
19274
19275 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19276
19277         * message.el (message-exchange-point-and-mark): Don't activate
19278         region if it was inactive.  Suggested by Hiroshi Fujishima
19279         <pooh@nature.tsukuba.ac.jp>.
19280
19281 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19282
19283         * gnus-art.el (article-display-face): Display Faces in the same
19284         order as X-Faces.
19285
19286 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19287
19288         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
19289
19290 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19291
19292         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
19293         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
19294         (gnus-article-mime-hierarchy): Remove.
19295         (gnus-article-mime-hierarchy-next): Remove.
19296         (gnus-article-mode): Revert 2004-03-19 change.
19297         (gnus-article-setup-buffer): Revert 2004-03-19 change.
19298         (gnus-insert-mime-button): Revert 2004-03-19 change.
19299         (gnus-mime-accumulate-hierarchy): Remove.
19300         (gnus-mime-enter-multipart): Remove.
19301         (gnus-mime-leave-multipart): Remove.
19302         (gnus-mime-display-part): Revert 2004-03-19 change.
19303         (gnus-mime-display-alternative): Revert 2004-03-19 change.
19304
19305         * mml.el (mml-preview): Revert 2004-03-19 change.
19306
19307 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
19308
19309         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
19310
19311 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19312
19313         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
19314         t while entering a file name using the mm-with-multibyte macro.
19315         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
19316
19317         * mm-util.el (mm-with-multibyte): New macro.
19318
19319 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19320
19321         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
19322         New user option.
19323         (gnus-mime-multipart-functions): Doc and customization fix.
19324         (gnus-article-mime-hierarchy): New variable.
19325         (gnus-article-mime-hierarchy-next): New variable.
19326         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
19327         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
19328         gnus-article-mime-hierarchy-next to nil.
19329         (gnus-insert-mime-button): Show hierarchy numbers.
19330         (gnus-mime-accumulate-hierarchy): New function.
19331         (gnus-mime-enter-multipart): New function.
19332         (gnus-mime-leave-multipart): New function.
19333         (gnus-mime-display-part): Recompute hierarchical MIME structure.
19334         (gnus-mime-display-alternative): Show hierarchy numbers.
19335
19336         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
19337         gnus-article-mime-hierarchy-next to nil.
19338
19339 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
19340
19341         * dns.el: Don't require gnus-xmas.
19342
19343 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
19344
19345         * mml.el (mml-generate-mime-1): Don't use format=flowed with
19346         inline PGP.
19347         (mml-menu): Disable mml-quote-region if mark is inactive.
19348
19349 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19350
19351         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
19352         when the group's active is not available.
19353
19354 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
19355
19356         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
19357         error.
19358
19359 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
19360
19361         * imap.el (imap-store-password): New variable.
19362         (imap-interactive-login): Use it.
19363         Suggested by Mark Plaksin <happy@mcplaksin.org>.
19364
19365 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19366
19367         * gnus-art.el (gnus-article-read-summary-keys): Restore new
19368         window-start and hscroll to summary window.
19369
19370 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19371
19372         * gnus-start.el (gnus-convert-old-newsrc): Only write the
19373         conversion message to newsrc-dribble when an actual conversion is
19374         performed.
19375
19376 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
19377
19378         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
19379
19380 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19381
19382         * mm-decode.el (mm-complicated-handles): New function reviving
19383         former definition of mm-multiple-handles.
19384
19385         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
19386         (gnus-mime-delete-part): Use it.
19387
19388 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19389
19390         * gnus-agent.el (gnus-agent-read-local):
19391         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
19392         avoid the implicit assumption that they will always be equal.
19393         (gnus-agent-save-local): Bind buffer-file-coding-system, not
19394         coding-system-for-write, as the with-temp-file macro first prints
19395         to a buffer then saves the buffer.
19396
19397 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19398
19399         * gnus-art.el (gnus-article-edit-part): New function.
19400         (gnus-mime-save-part-and-strip): Use it; do query instead of
19401         signaling an error; don't use mm-multiple-handles.
19402         (gnus-mime-delete-part): Ditto.
19403
19404 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19405
19406         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
19407         old file versions.
19408         (gnus-group-prepare-hook): Remove function that converted list
19409         form of gnus-agent-expire-days to group properties.
19410
19411         * gnus-int.el: Autoload gnus-agent-regenerate-group.
19412         (gnus-request-accept-article): Re-indented.
19413
19414         * gnus-start.el (gnus-convert-old-newsrc): Registered new
19415         converters to handle old agent file formats.  Add logic for a
19416         "backup before upgrading warning".
19417         (gnus-convert-mark-converter-prompt): Developers can mark
19418         functions as needing (default), or not needing,
19419         gnus-convert-old-newsrc's "backup before upgrading warning".
19420         (gnus-convert-converter-needs-prompt): Tests whether the user
19421         should be protected from potentially irreversable changes by the
19422         function.
19423
19424         * legacy-gnus-agent.el: New.  Provides converters that are only
19425         loaded when gnus-convert-old-newsrc needs to call them.
19426
19427 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
19428
19429         * mail-source.el (mail-source-touch-pop): Doc fix.
19430
19431         * message.el (message-smtpmail-send-it): Doc fix.
19432
19433 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
19434
19435         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
19436
19437         * nnmail.el (nnmail-split-fancy): do.
19438
19439         * gnus-kill.el (gnus-kill, gnus-execute): do.
19440
19441 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
19442
19443         * gnus-sum.el (gnus-widget-reversible-match)
19444         (gnus-widget-reversible-to-internal)
19445         (gnus-widget-reversible-to-external): New functions.
19446         (gnus-widget-reversible): New widget.
19447         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
19448
19449 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
19450
19451         * gnus-sum.el (gnus-thread-sort-functions)
19452         (gnus-article-sort-functions): Document `(not F)' items.
19453
19454 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
19455
19456         * spam.el (spam-use-gmane-xref): Add new backend.
19457         (spam-gmane-xref-spam-group): Add variable to control the name of the
19458         Gmane spam group.
19459         (spam-blackhole-servers, spam-blackhole-good-server-regex)
19460         (spam-regex-headers-spam, spam-regex-headers-ham)
19461         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
19462         (spam-list-of-checks): Add spam-use-gmane-xref to list of
19463         backends and checks.
19464         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
19465
19466         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
19467         an autodetect method.
19468
19469 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19470
19471         * gnus-int.el (gnus-request-accept-article): Inform the agent that
19472         articles are being added to a group.
19473         (gnus-request-replace-article): Inform the agent that articles
19474         need to be uncached as the cached contents are no longer valid.
19475
19476 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19477
19478         * binhex.el: Don't autoload executable-find.
19479
19480         * canlock.el: Don't autoload mail-fetch-field.
19481
19482         * dgnushack.el: Autoload c-mode for XEmacs.
19483
19484         * gnus-ems.el: Don't autoload appt-select-lowest-window.
19485
19486         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
19487         rmail-dont-reply-to and rmail-output.
19488
19489         * gnus-score.el: Don't autoload ffap-string-at-point.
19490
19491         * gnus-setup.el: Don't autoload sc-cite-original.
19492
19493         * imap.el: Don't autoload base64-decode-string,
19494         base64-encode-string and md5.
19495
19496         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
19497         and rmail-msg-restore-non-pruned-header.
19498
19499         * mm-decode.el: Don't autoload executable-find.
19500
19501         * mm-url.el: Don't autoload executable-find.
19502
19503         * mm-view.el: Don't autoload diff-mode.
19504
19505         * nndb.el: Don't autoload news-reply-mode, news-setup,
19506         cancel-timer and telnet.
19507
19508         * password.el: Don't autoload run-at-time for Emacs.
19509
19510         * sha1-el.el: Don't autoload executable-find.
19511
19512         * sieve-mode.el: Don't autoload c-mode.
19513
19514         * uudecode.el: Don't autoload executable-find.
19515
19516 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19517
19518         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
19519         (gnus-agent-possibly-alter-active): Avoid null in numeric
19520         comparison.
19521         (gnus-agent-set-local): Refuse to save null in local object table.
19522         (gnus-agent-regenerate-group): The REREAD parameter can now be a
19523         list of articles that will be marked as unread.
19524
19525 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19526
19527         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
19528
19529 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
19530
19531         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
19532         language tags.
19533
19534 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
19535
19536         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
19537         Don't bind "obarray".
19538
19539         * gnus-sum.el (gnus-thread-sort-functions):
19540         Add `gnus-thread-sort-by-most-recent-number' and
19541         `gnus-thread-sort-by-most-recent-date'.
19542         Reported by Kai Grossjohann <kai@emptydomain.de>.
19543
19544 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
19545
19546         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
19547
19548 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19549
19550         * gnus-cus.el (gnus-agent-customize-category):
19551         Remove ignore-errors macro reference that required cl to be loaded at
19552         run-time.
19553
19554         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
19555         single-interval range of the form (min . max).  Previously the
19556         range had to look like ((min . max)).  Likewise, return
19557         (min . max) rather than ((min . max)).
19558         (gnus-range-map): Use gnus-range-normalize to accept
19559         single-interval range.
19560
19561         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
19562         the cache, but not the agent, now appear with their usual face.
19563
19564         * dgnushack.el (loaddir): New variable that is bound to the
19565         directory containing the dgnushack.el file. Use loaddir, rather
19566         than srcdir, to update load-path. Change lets dgnushack compile
19567         code in directories other than GNUS/lisp.
19568
19569 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19570
19571         * lpath.el: Don't bind w3m-safe-url-regexp.
19572
19573         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
19574         w3m-safe-url-regexp variable buffer-local.
19575
19576         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
19577
19578 2004-02-27  Simon Josefsson  <jas@extundo.com>
19579
19580         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
19581         gnus-group-real-prefix.
19582         (gnus-summary-move-article): Use it, instead of
19583         gnus-group-real-prefix.
19584
19585 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19586
19587         * lpath.el: Bind w3m-safe-url-regexp.
19588
19589         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
19590         w3m-safe-url-regexp variable buffer-local and set it as the value
19591         of mm-w3m-safe-url-regexp.
19592
19593         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
19594
19595         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
19596         parsing gnus-posting-styles when the message is not for replying.
19597
19598         * dgnushack.el: Autoload sgml-mode for XEmacs.
19599
19600         * nnrss.el (nnrss-opml-export):
19601         Use mm-set-buffer-file-coding-system instead of
19602         set-buffer-file-coding-system.
19603
19604 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
19605
19606         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
19607         of checkdoc.el).
19608         * nnrss.el: do.
19609         * gnus-mlspl.el: do.
19610         * gnus-ml.el: do.
19611         * gnus-srvr.el: do.
19612
19613         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
19614
19615 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
19616
19617         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
19618         Corrections to custom-manual links.
19619
19620         * gnus-art.el (gnus-article): Ditto.
19621
19622         * mm-decode.el (mime-display, mime-security): Ditto.
19623
19624 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
19625
19626         * flow-fill.el: Typo.
19627
19628 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
19629
19630         * spam-wash.el: New file.
19631
19632 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
19633
19634         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
19635
19636 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
19637
19638         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
19639         to be run with new-articles as LIST1, not LIST2.
19640         (spam-registration-functions): Add spam-use-ham-copy as a nil
19641         registration backend.
19642
19643 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
19644
19645         * spam-stat.el (spam-stat-washing-hook): New option.
19646         (spam-stat-buffer-words): Use it.
19647         (spam-stat-process-directory, spam-stat-test-directory):
19648         Use insert-file-contents-literally.
19649         (spam-stat-coding-system): New variable.
19650         (spam-stat-load, spam-stat-save): Use it.
19651
19652 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19653
19654         * spam-report.el (spam-report-plug-agent):
19655         Quote spam-report-url-to-file and spam-report-url-ping-plain.
19656
19657 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
19658
19659         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
19660         Allow / in mailto URLs.
19661
19662 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
19663
19664         * spam-report.el (spam-report-process-queue): Fix interactive use.
19665         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
19666         (spam-report-unplug-agent): Doc fixes.
19667         (spam-report-url-ping-mm-url, spam-report-url-to-file)
19668         (spam-report-agentize, spam-report-deagentize): Autoload.
19669
19670 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19671
19672         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
19673
19674         * message.el (message-setup-fill-variables): Add mml tags to
19675         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
19676         <ajk@iu.edu>.
19677         (message-mode): Don't modify paragraph-separate there.
19678
19679 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19680
19681         * compface.el (uncompface-use-external): Default to undecided.
19682         (uncompface-use-external-threshold): New variable.
19683         (uncompface-float-time): New macro.
19684         (uncompface): Determine whether to use the external decoder if
19685         uncompface-use-external is undecided.
19686
19687 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19688
19689         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
19690         after images.
19691
19692         * gnus-art.el (gnus-mime-display-single): Remove dead code.
19693
19694 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
19695
19696         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
19697
19698         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
19699
19700         * gnus-sum.el (gnus-summary-limit-to-age)
19701         (gnus-summary-limit-children): do.
19702
19703         * gnus-int.el (gnus-request-scan): do.
19704
19705         * gnus-group.el (gnus-group-suspend): do.
19706
19707         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
19708
19709         * gnus-cite.el (gnus-cite-parse-attributions): do.
19710
19711         * gnus-agent.el (gnus-summary-set-agent-mark)
19712         (gnus-agent-regenerate-group): do.
19713
19714         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
19715
19716         * binhex.el (binhex-decode-region-internal): do.
19717
19718 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19719
19720         * gnus-fun.el (gnus-face-properties-alist): New user option.
19721         (gnus-display-x-face-in-from): Use it.
19722
19723         * gnus-art.el (article-display-face): Ditto.
19724
19725         * compface.el (uncompface-use-external): Default to nil.
19726
19727 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
19728
19729         * nntp.el (nntp-erase-buffer): New function.
19730         (nntp-retrieve-data, nntp-send-command)
19731         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
19732         (nntp-possibly-change-group): Use it.
19733
19734         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
19735         Use with-current-buffer.
19736
19737 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
19738
19739         * compface.el: Merge the ELisp-based uncompface program.
19740         (compface): New customization group.
19741         (uncompface-use-external): New user option.
19742         (uncompface): Call uncompface-internal if uncompface-use-external
19743         is nil.
19744         (uncompface-internal): New function.  Note that there are also
19745         some other functions and variables added for this function.
19746
19747 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
19748
19749         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
19750         if necessary.
19751
19752 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
19753
19754         * spam-report.el (spam-report-unplug-agent)
19755         (spam-report-plug-agent, spam-report-deagentize)
19756         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
19757         Add support for the Agent in spam-report: when unplugged, report to a
19758         file; when plugged, submit all the requests.
19759
19760         * spam.el (spam-register-routine): Fix message about
19761         registration.
19762
19763 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
19764
19765         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
19766         dependencies.
19767         (rfc2047-encode): Use it.
19768
19769         * gnus-art.el (gnus-button-marker-list): Move before first
19770         reference.
19771
19772         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
19773         (imap-parse-body): Fix format string mismatch.
19774
19775         * gnus-score.el (gnus-summary-increase-score): do.
19776
19777         * nnrss.el (nnrss-close): New function.
19778
19779 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
19780
19781         * nnrss.el (nnrss-make-filename): New function.
19782         (nnrss-request-delete-group, nnrss-read-server-data)
19783         (nnrss-save-server-data, nnrss-read-group-data)
19784         (nnrss-save-group-data): Use it.
19785         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
19786         (nnrss-read-server-data, nnrss-read-group-data): Use load.
19787         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
19788
19789 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
19790
19791         * mml.el (mml-compute-boundary-1): Don't uncompress files.
19792
19793 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
19794
19795         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
19796         files.
19797
19798         * message.el (message-generate-headers-first): Don't quote nil
19799         and t in docstrings.
19800
19801         * imap.el (imap-id): do.
19802
19803         * gnus-agent.el (gnus-agent-consider-all-articles)
19804         (gnus-agent-queue-mail): do.
19805
19806 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
19807
19808         * spam-report.el (spam-report-process-queue): New function.
19809         Process requests from `spam-report-requests-file'.
19810         (spam-report-process-queue): Doc fix.
19811
19812 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
19813
19814         * spam.el (spam-register-routine)
19815         (spam-log-processing-to-registry, spam-log-registered-p)
19816         (spam-log-unregistration-needed-p, spam-log-undo-registration):
19817         Change "check" to "spam-check" for semi-clarity.
19818
19819 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
19820
19821         * pop3.el: Require nnheader.
19822
19823         * mml-smime.el: Require cl.  Autoload message-fetch-field.
19824
19825         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
19826
19827         * gnus-picon.el: Require cl.
19828
19829         * gnus-fun.el: Require gnus-ems and gnus-util.
19830
19831         * gnus.el (gnus-method-to-server): Move defsubst before first use.
19832
19833         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
19834
19835         * gnus-art.el (gnus-article-edit-mode): Define before first
19836         reference.
19837
19838 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
19839
19840         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
19841         (gnus-uu-post-encoded): Use point-at-bol.
19842
19843         * gnus-topic.el (gnus-group-active-topic-p): do.
19844
19845         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
19846
19847         * gnus-group.el (gnus-group-kill-region): do.
19848
19849         * gnus-art.el (article-date-ut): do.
19850
19851         * message.el (message-fetch-field): Remove redundant
19852         case-fold-search binding.
19853         (message-narrow-to-field): Simplify.
19854
19855 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
19856
19857         * spam.el (spam-directory): Derive from `gnus-directory'.
19858
19859         * spam-report.el (spam-report-url-to-file)
19860         (spam-report-requests-file): New function and variable for offline
19861         reporting.
19862         (spam-report-url-ping-function): Add `spam-report-url-to-file'
19863         and user defined function.
19864         (spam-report-url-ping-mm-url): Remove doubled slash.
19865
19866 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
19867
19868         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
19869
19870 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
19871
19872         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
19873         Fix format string mismatch.
19874
19875         * sieve.el (sieve-deactivate-all): do.
19876
19877         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
19878
19879         * nnlistserv.el (nnlistserv-kk-wash-article): do.
19880
19881         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
19882
19883         * mm-bodies.el (mm-7bit-chars): Don't include \r.
19884
19885 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
19886
19887         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
19888         the list of checks.
19889
19890 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
19891
19892         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
19893         padding.
19894
19895 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
19896
19897         * mm-view.el (mm-fill-flowed): New variable.
19898         (mm-inline-text): Use it.
19899
19900 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
19901
19902         * spam.el (spam-spamassassin-register-ham-routine)
19903         (spam-spamassassin-register-spam-routine): Fix function names.
19904
19905 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19906
19907         * gnus.el (gnus-tmp-grouplens): Remove.
19908         (gnus-summary-line-format): Remove grouplens.
19909
19910         * gnus-group.el (gnus-group-line-format): Ditto.
19911
19912         * gnus-spec.el (gnus-format-specs): Ditto.
19913         (gnus-update-format-specifications): Flush the group format spec
19914         cache if there's the grouplens stuff.
19915         (gnus-parse-simple-format): Replace %l with the empty string.
19916
19917 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
19918
19919         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
19920         omission.
19921
19922 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19923
19924         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
19925         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
19926
19927 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
19928
19929         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
19930         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
19931         New macros and functions.
19932         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
19933         Handle > NLINK_MAX messages.
19934         * nnmaildir.el (nnmaildir-request-set-mark):
19935         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
19936
19937 2004-01-25  Alex Schroeder  <alex@gnu.org>
19938
19939         * spam-stat.el (spam-stat-process-directory-age): New option.
19940         (spam-stat-process-directory): Use it.
19941
19942 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
19943
19944         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
19945         (spam-stat-save): Accept prefix argument.
19946
19947 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
19948
19949         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
19950         links" error.
19951
19952 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19953
19954         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
19955         the rest of the and/or forms.
19956
19957 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
19958
19959         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
19960         compatibility with old .newsrc.eld files.
19961
19962         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
19963
19964         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
19965
19966         * gnus-start.el (gnus-1): do.
19967
19968         * gnus-group.el (gnus-group-line-format-alist): do.
19969
19970         * gnus.el (gnus-use-grouplens, gnus-visual): do.
19971
19972         * gnus-gl.el: Remove.
19973
19974 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19975
19976         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
19977         marks consisting of a single range {for example, (3 . 5)} rather
19978         than a list of a single range { ((3 . 5)) }.
19979
19980 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
19981
19982         * spam-stat.el (spam-stat-store-gnus-article-buffer):
19983         Use with-current-buffer.
19984         (spam-stat-store-current-buffer): Use insert-buffer-substring to
19985         avoid consing a string.
19986
19987         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
19988         Remove obsolete entries for big5 and gb2312.
19989
19990 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
19991
19992         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
19993         uncompressed list.
19994
19995 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
19996
19997         * spam-stat.el (spam-stat-strip-xref): New function.
19998         (spam-stat-process-directory): Use it.
19999
20000         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
20001         here -- it's done in message-fetch-field.
20002
20003 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
20004
20005         * gnus-agent.el (gnus-agent-queue-mail)
20006         (gnus-agent-prompt-send-queue): New variables.
20007         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
20008         * gnus-draft.el (gnus-group-send-queue): Pass the group name
20009         "nndraft:queue" along to gnus-draft-send.
20010         Use gnus-agent-prompt-send-queue.
20011         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
20012         is "nndraft:queue".  Suggested by Gaute Strokkenes
20013         <gs234@srcf.ucam.org>
20014
20015         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
20016         (agent-enable-undownloaded-faces): Add.
20017         (gnus-agent-cat-groups): Use eval-and-compile, not
20018         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
20019         method of gnus-agent-cat-groups even when the buffer has been
20020         evaled.
20021         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
20022         delete gnus-agent-save-active-1.
20023         (gnus-agent-save-groups): Delete.  Identical to
20024         gnus-agent-save-active.
20025         (gnus-agent-write-active): No longer adjust agent's copy of active
20026         file as agent's adjustments are now stored in their own
20027         file.  Remove optional parameter.
20028         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
20029         servers.  Add use of min/max range limits from server's local
20030         file.
20031         (gnus-agent-save-alist): Remove unused optional argument.
20032         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
20033         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
20034         (gnus-agent-set-local): A per-server file that keeps min/max range
20035         limits for articles known to the agent.  Provides a fast mechanism
20036         for altering many active ranges.
20037         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
20038         active file (local makes it unnecessary).
20039         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
20040
20041         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
20042         (agent-enable-undownloaded-faces): Add.
20043
20044         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
20045         disable it when sending to "nndraft:queue".
20046         (gnus-group-send-queue): Add safety check to avoid sending queue
20047         when unplugged.
20048
20049         * gnus-group.el (gnus-group-catchup): Use new
20050         gnus-sequence-of-unread-articles, not
20051         gnus-list-of-unread-articles, to avoid exhausting memory with huge
20052         numbers of articles.  Use gnus-range-map to avoid having to
20053         uncompress the unread list.
20054         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
20055         Fix invalid ange-ftp reference.
20056
20057         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
20058         (gnus-sorted-range-intersection): Intersection of two ranges
20059         without requiring that they first be uncompressed.
20060
20061         * gnus-start.el (gnus-activate-group): Unless blocked by the
20062         caller, possibly expand the active range to include both cached
20063         and agentized articles.
20064         (gnus-convert-old-newsrc): Rewrote in anticipation of having
20065         multiple version-dependent converters.
20066         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
20067         gnus-agent-save-active.
20068         (gnus-save-newsrc-file): Save dirty agent range limits.
20069
20070         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
20071         gnus-agent-possibly-alter-active.
20072         (gnus-adjust-marked-articles): Faster handling of simple lists.
20073
20074 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
20075
20076         * spam-stat.el (spam-stat-test-directory): New optional argument
20077         displays a list of files detected.  Suggested by Andrew Cohen
20078         <cohen@andy.bu.edu>.
20079         (spam-stat-buffer-words-with-scores): Don't narrow and change
20080         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
20081
20082 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
20083
20084         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
20085         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
20086         (spam-spamassassin-arguments)
20087         (spam-spamassassin-spam-flag-header)
20088         (spam-spamassassin-positive-spam-flag-header)
20089         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
20090         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
20091         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
20092         (spam-list-of-processors, spam-list-of-checks)
20093         (spam-list-of-statistical-checks, spam-registration-functions)
20094         (spam-check-spamassassin-headers, spam-check-spamassassin)
20095         (spam-spamassassin-score)
20096         (spam-spamassassin-register-with-sa-learn)
20097         (spam-spamassassin-register-spam-routine)
20098         (spam-spamassassin-register-ham-routine)
20099         (spam-assassin-register-spam-routine)
20100         (spam-assassin-register-ham-routine): Add SpamAssassin support.
20101         (spam-bogofilter-score): Fix to show article before scoring.
20102
20103 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
20104
20105         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
20106         default scoring function.
20107         (spam-generic-score): Call spam-spamassassin-score if
20108         spam-use-spamassassin or spam-use-spamassassin-headers is on;
20109         spam-bogofilter-score otherwise.
20110
20111         * gnus.el (spam-process, spam-autodetect-methods):
20112         Add spamassassin and spamassassin-headers.
20113
20114 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
20115
20116         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
20117         Suppress unnecessary messages.
20118
20119 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
20120
20121         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
20122         make-hash-table.
20123
20124 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
20125
20126         * canlock.el (base64-encode-string): Don't autoload it.
20127
20128 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20129
20130         * run-at-time.el: Remove useless (require 'itimer),
20131         eval-and-compile and (featurep 'xemacs).
20132
20133 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
20134
20135         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
20136         GROUP is a virtual group.
20137
20138 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
20139
20140         * gnus.el: Autoload `message-y-or-n-p'.
20141
20142 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
20143
20144         * pgg-parse.el: Remove unnecessary (require 'custom).
20145
20146         * pgg-def.el: do.
20147
20148         * nnmail.el: do.
20149
20150         * gnus-undo.el: do.
20151
20152         * gnus-picon.el: do.
20153
20154         * gnus-util.el: do.
20155
20156 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
20157
20158         * gnus-sum.el (gnus-pick-line-number): Add autoload.
20159
20160 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
20161
20162         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
20163         handle, as well as a list.
20164
20165         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
20166         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
20167         (mm-w3m-cid-retrieve): Simplify.
20168
20169 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
20170
20171         * message.el (message-kill-to-signature): Allow prefix arg to
20172         specify number of lines to keep before signature.
20173
20174 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
20175
20176         * message.el (message-kill-to-signature): Change docstring.
20177
20178 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20179
20180         * canlock.el: Always require sha1-el.
20181         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
20182
20183         * message.el: Autoload sha1 only when compiling.
20184
20185         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
20186         eudc-expand-inline for XEmacs.
20187
20188 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20189
20190         * message.el (message-canlock-generate): Require sha1-el.
20191
20192 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
20193
20194         * message.el (message-expand-name): Silence the byte compiler.
20195
20196         * lpath.el: Add detect-coding-system.
20197
20198         * dgnushack.el (dgnushack-compile): Remove obsolete check for
20199         cus-edit.
20200
20201 2004-01-13  Simon Josefsson  <jas@extundo.com>
20202
20203         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
20204         Invoke gnus-score-mode.
20205         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
20206
20207         * gnus-range.el (gnus-compress-sequence): Doc fix.
20208         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
20209
20210 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
20211
20212         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
20213
20214 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
20215
20216         * spam.el (spam-get-article-as-string): Update to use
20217         gnus-request-article-this-buffer, much simpler.
20218         (spam-get-article-as-buffer): Remove.
20219
20220 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
20221
20222         * message.el (message-expand-name): Use EUDC if the user uses that.
20223
20224 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
20225
20226         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
20227         character for the encoding to avoid consing a string.
20228
20229         * rfc2047.el (rfc2047-decode-string): Don't cons a string
20230         unnecessarily.
20231
20232         * mm-util.el (mm-replace-chars-in-string): Remove.
20233
20234         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
20235         of mm-replace-chars-in-string.
20236
20237 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
20238
20239         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
20240
20241         * mm-util.el (mm-subst-char-in-string): Support inplace.
20242
20243         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
20244         a new string in every iteration.  Use shy groups.
20245
20246 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
20247
20248         * gnus-srvr.el (gnus-browse-unsubscribe-group):
20249         * gnus-soup.el (gnus-soup-group-brew):
20250         * gnus-msg.el (gnus-put-message):
20251         * gnus-move.el (gnus-group-move-group-to-server):
20252         * gnus-kill.el (gnus-batch-score):
20253         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
20254         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
20255         (gnus-group-update-group, gnus-group-read-group)
20256         (gnus-group-make-group, gnus-group-make-help-group)
20257         (gnus-group-make-archive-group, gnus-group-make-directory-group)
20258         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
20259         (gnus-group-sort-by-unread, gnus-group-catchup)
20260         (gnus-group-unsubscribe-group, gnus-group-kill-group)
20261         (gnus-group-yank-group, gnus-group-set-info)
20262         (gnus-group-list-groups):
20263         * gnus.el (gnus-generate-new-group-name):
20264         * gnus-delay.el (gnus-delay-send-queue):
20265         * nnvirtual.el (nnvirtual-catchup-group):
20266         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
20267         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
20268         (gnus-group-prepare-topics, gnus-topic-check-topology):
20269         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
20270         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
20271         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
20272         (gnus-group-make-articles-read):
20273         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
20274         (gnus-group-change-level, gnus-kill-newsgroup)
20275         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
20276         (gnus-get-unread-articles, gnus-make-articles-unread)
20277         (gnus-make-ascending-articles-unread): Use accessor
20278         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
20279         to get group information for improved readability.
20280
20281
20282 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
20283
20284         * gnus-art.el (article-decode-mime-words, article-babel)
20285         (gnus-article-highlight-signature, gnus-article-add-buttons)
20286         (gnus-signature-toggle): Use gnus-with-article-buffer.
20287
20288         * gnus-art.el (gnus-article-highlight-headers)
20289         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
20290
20291         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
20292         (gnus-article-set-globals, gnus-request-article-this-buffer)
20293         (gnus-button-message-id, gnus-article-maybe-hide-headers)
20294         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
20295         (gnus-mime-display-alternative): Use with-current-buffer.
20296
20297 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
20298
20299         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
20300         also under 80 char limit, and call gnus-error if needed.
20301         (spam-fetch-article-header): Fix - it was a
20302         buffer-local variable (gnus-newsgroup-data).
20303         (spam-find-spam): Use spam-generate-fake-headers, forget about
20304         spam-insert-fake-headers.
20305         (spam-insert-fake-headers): Remove.
20306
20307 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
20308
20309         * deuglify.el (gnus-article-outlook-unwrap-lines)
20310         (gnus-outlook-rearrange-article)
20311         (gnus-outlook-repair-attribution-outlook)
20312         (gnus-outlook-repair-attribution-block)
20313         (gnus-outlook-repair-attribution-other): Remove redundant
20314         save-excursion.
20315
20316 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
20317
20318         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
20319         (spam-fetch-field-subject-fast)
20320         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
20321         (spam-fetch-article-header): Add functions to deal with Gnus
20322         internals for fast retrieval of article header data.
20323         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
20324
20325 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
20326
20327         * pop3.el (pop3-md5): Remove.
20328         (pop3-apop): Replace pop3-md5 with md5.
20329
20330         * mm-bodies.el: base64 is always built-in.
20331
20332         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
20333         Use with-current-buffer.
20334
20335 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
20336
20337         * canlock.el (canlock-insert-header): Remove excessive grouping in
20338         regexp.
20339
20340         * gnus-sum.el (gnus-summary-read-document): Ditto.
20341
20342         * gnus-uu.el (gnus-uu-part-number): Ditto.
20343
20344         * html2text.el (html2text-remove-tags): Ditto.
20345         (html2text-format-tags): Ditto.
20346         (html2text-format-single-elements): Ditto.
20347
20348         * mml.el (mml-parse-1): Ditto.
20349
20350 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
20351
20352         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
20353
20354         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
20355
20356         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
20357
20358         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
20359
20360 2003-11-15  Simon Josefsson  <jas@extundo.com>
20361
20362         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
20363         (pgg-gpg-lookup-key): Use regexp match instead of
20364         split-string (split-string is different between emacs 21.2 and
20365         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
20366
20367 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
20368
20369         * gnus-art.el (gnus-mime-view-all-parts)
20370         (gnus-article-part-wrapper, gnus-article-view-part):
20371         Use with-current-buffer.
20372
20373 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
20374
20375         * spam.el (spam-disable-spam-split-during-ham-respool)
20376         (spam-spamoracle-database, spam-cache-lookups)
20377         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
20378         (spam-group-ham-mark-p, spam-group-spam-mark-p)
20379         (spam-group-ham-marks, spam-group-spam-marks)
20380         (spam-group-spam-contents-p, spam-group-ham-contents-p)
20381         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
20382         also add spam-use-blackholes to the statistical checks.
20383         (spam-fetch-field-fast): Add interface to fetching fields, may
20384         become a macro.
20385         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
20386         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
20387         (spam-insert-fake-headers): Fake an article when needed.
20388         (spam-find-spam): Fake article when possible.
20389         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
20390         (spam-check-bogofilter-headers): Use message-fetch-field instead
20391         of nnmail-fetch-field.
20392
20393 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
20394
20395         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
20396
20397 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
20398
20399         * spam.el (spam-split): Do not require spam-use-CHECK to be
20400         enabled if that check is passed to spam-split explicitly; also
20401         fix so 'spam doesn't get converted to spam-split-group when
20402         spam-split-symbolic-return is t.
20403         (spam-find-spam): Find registrations of the article and use those
20404         instead of re-running spam-split to find the spam/ham
20405         classification of the article.
20406         (spam-log-processing-to-registry, spam-log-registered-p)
20407         (spam-log-unregistration-needed-p, spam-log-undo-registration):
20408         Use gnus-error instead of gnus-message.
20409         (spam-log-registration-type): Add function to determine the
20410         classification of a message based on registry entries; will
20411         return nil if both 'spam and 'ham are found.
20412         (spam-check-BBDB): Expand all the BBDB macros here so we can have
20413         a reasonably fast local cache without the loading errors.
20414         (spam-cache-lookups): Set to t by default.
20415         (spam-find-spam): Don't try to guess spam-cache-lookups.
20416         (spam-enter-whitelist, spam-enter-blacklist): Clear the
20417         spam-caches entry.
20418         (spam-filelist-build-cache, spam-filelist-check-cache):
20419         Fix caching of whitelist/blacklist entries.
20420         (spam-check-whitelist, spam-check-blacklist):
20421         Invoke spam-from-listed-p with a type, not a cache variable.
20422         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
20423
20424 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
20425
20426         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
20427
20428         * nnmail.el (nnmail-split-fancy): do.
20429
20430         * mml.el (mml-parse): do.
20431
20432         * gnus-score.el (gnus-enter-score-words-into-hashtb)
20433         (gnus-score-adaptive): do.
20434
20435 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20436
20437         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
20438         (gnus-mime-button-map): Don't set keymap parent.
20439         (gnus-button-ctan-directory-regexp): Use shy grouping.
20440         (gnus-prev-page-map): Don't set keymap parent.
20441         (gnus-prev-page-map): Remove duplicated one.
20442         (gnus-next-page-map): Don't set keymap parent.
20443         (gnus-mime-security-button-map): Ditto.
20444
20445         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
20446         version number.
20447
20448         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
20449
20450 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20451
20452         * canlock.el (canlock-sha1-function): Remove.
20453         (canlock-sha1-function-for-verify): Remove.
20454         (canlock-openssl-program): Remove.
20455         (canlock-openssl-args): Remove.
20456         (canlock-ignore-errors): Remove.
20457         (canlock-sha1-with-openssl): Remove.
20458         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
20459         (canlock-verify): Don't use canlock-ignore-errors.
20460
20461         * sha1-el.el (sha1-string-external): Make it can return a string
20462         in binary form.
20463         (sha1-region-external): Ditto.
20464         (sha1-string-internal): Ditto.
20465         (sha1-region-internal): Ditto.
20466         (sha1-region): Ditto.
20467         (sha1-string): Ditto.
20468         (sha1): Ditto.
20469
20470 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20471
20472         * spam.el (spam-report-articles-gmane): New command.
20473
20474 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20475
20476         * gnus.el: Don't make unnecessary *Group* buffer when loading.
20477
20478         * run-at-time.el (run-at-time-saved): Remove.
20479         (run-at-time): Doc fix.
20480
20481 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
20482
20483         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
20484         (gnus-summary-limit-map): Add it.
20485         (gnus-summary-make-menu-bar): do.
20486
20487 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
20488
20489         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
20490         Make attempt at some caching support (done for BBDB only now).
20491         (spam-find-spam): Set spam-cache-lookups if there are more than 2
20492         addresses to be checked.
20493         (spam-clear-cache-BBDB): Add function, to be invoked by
20494         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
20495         (spam-check-BBDB): Check and use the caches, if
20496         spam-cache-lookups is on, remove superfluous (provide).
20497
20498 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
20499
20500         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
20501
20502 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
20503
20504         * run-at-time.el (run-at-time-saved): Move to after the definition
20505         of `run-at-time'.
20506
20507         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
20508
20509 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20510
20511         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
20512         mm-w3m-local-map-property.
20513
20514         * mm-view.el (mm-w3m-mode-map): Remove.
20515         (mm-w3m-local-map-property): Remove.
20516         (mm-inline-text-html-render-with-w3m): Don't use
20517         mm-w3m-local-map-property.
20518
20519 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20520
20521         * run-at-time.el: New file.
20522
20523         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
20524         under Emacs.
20525
20526         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
20527         of gnus-set-text-properties.
20528
20529         * gnus-uu.el (gnus-uu-save-article): Ditto.
20530
20531         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
20532
20533         * gnus-cite.el (gnus-cite-parse): Ditto.
20534
20535         * gnus-art.el (gnus-button-push): Use set-text-properties instead
20536         of gnus-.
20537
20538         * gnus-xmas.el (run-at-time): Require run-at-time.
20539
20540         * gnus.el: Change calls to nnheader-run-at-time and
20541         password-run-at-time throughout to use run-at-time directly.
20542
20543         * password.el: Remove definition of run-at-time.
20544
20545         * nnheaderxm.el: Remove definition of run-at-time.
20546
20547 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
20548
20549         * mml.el (mml-minibuffer-read-disposition): Show attachment type
20550         in prompt.
20551
20552 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
20553
20554         * messagexmas.el (message-xmas-redefine): Alias
20555         `message-make-caesar-translation-table' to
20556         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
20557         version.
20558
20559         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
20560         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
20561         `gnus-xmas-set-text-properties'.
20562         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
20563         `gnus-xmas-completing-read'.
20564         (gnus-xmas-completing-read): Removed.
20565         (gnus-xmas-open-network-stream): Removed.
20566
20567         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
20568         XEmacs version.
20569
20570         * dns.el (dns-make-network-process): Use `open-network-stream'
20571         instead of `gnus-xmas-open-network-stream'.
20572
20573         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
20574
20575         * .cvsignore: Add auto-autoloads.el, custom-load.el.
20576
20577 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
20578
20579         * gnus-art.el (gnus-mime-display-alternative)
20580         (gnus-insert-mime-button, gnus-insert-mime-security-button)
20581         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
20582         Don't use gnus-local-map-property.
20583
20584         * gnus-util.el (gnus-local-map-property): Remove.
20585
20586         * mm-view.el (mm-view-pkcs7-decrypt):
20587         Replace gnus-completing-read-maybe-default with completing-read.
20588
20589         * gnus-util.el (gnus-completing-read): do.
20590         (gnus-completing-read-maybe-default): Remove.
20591
20592 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
20593
20594         * password.el: Only autoload `run-at-time' if not XEmacs.
20595         Only autoload the itimer functions if XEmacs.
20596
20597 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20598
20599         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
20600         XEmacsen.
20601
20602         * dgnushack.el: Autoload executable-find for XEmacs.
20603
20604 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
20605
20606         * gnus-art.el (gnus-read-string): Remove.
20607         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
20608         read-string.
20609
20610 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
20611
20612         * netrc.el: Autoload password-read.
20613         (netrc): Add configuration group.
20614         (netrc-encoding-method, netrc-openssl-path):
20615         Add variables for encoding and decoding of files with symmetric
20616         ciphers.
20617         (netrc-encode): Add assistant function to encode a file with
20618         netrc-encoding-method.
20619         (netrc-parse): Add interactive parameter, added optional
20620         decoding if netrc-encoding-method is non-nil but otherwise
20621         behavior is standard.
20622         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
20623         Do s/encode/encrypt/ everywhere.
20624
20625         * spam.el: Remove executable-find autoload.
20626
20627 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
20628
20629         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
20630
20631         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
20632
20633 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
20634
20635         * gnus-art.el (gnus-treat-ansi-sequences)
20636         (article-treat-ansi-sequences): New variable and function.
20637         Suggested by Dan Jacobson <jidanni@jidanni.org>.
20638
20639         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
20640         Use it.
20641
20642 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
20643
20644         * mm-util.el (mm-quote-arg): Remove.
20645
20646         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
20647         shell-quote-argument.
20648
20649         * gnus-uu.el (gnus-uu-command): do.
20650
20651         * gnus-sum.el (gnus-summary-insert-pseudos): do.
20652
20653         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
20654         with make-char.
20655
20656         * mm-util.el (mm-make-char): Remove.
20657
20658         * mml.el (mml-mode): Replace gnus-add-minor-mode with
20659         add-minor-mode.
20660
20661         * gnus-undo.el (gnus-undo-mode): do.
20662
20663         * gnus-topic.el (gnus-topic-mode): do.
20664
20665         * gnus-sum.el (gnus-dead-summary-mode): do.
20666
20667         * gnus-start.el (gnus-slave-mode): do.
20668
20669         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
20670
20671         * gnus-ml.el (gnus-mailing-list-mode): do.
20672
20673         * gnus-gl.el (gnus-grouplens-mode): do.
20674
20675         * gnus-draft.el (gnus-draft-mode): do.
20676
20677         * gnus-dired.el (gnus-dired-mode): do.
20678
20679         * gnus-ems.el (gnus-add-minor-mode): Remove.
20680
20681         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
20682         Replace gnus-char-width with char-width.
20683
20684         * gnus-ems.el (gnus-char-width): Remove.
20685
20686         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
20687         Replace gnus-char-width with char-width.
20688
20689         * gnus-ems.el (gnus-char-width): Remove.
20690
20691         * spam-stat.el (with-syntax-table): Remove with-syntax-table
20692         definition.
20693         Remove Emacs 20 hash table compatibility code.
20694
20695         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
20696         20 compatibility code.
20697
20698         * spam.el (spam-point-at-eol): Replace with point-at-eol.
20699
20700         * smime.el (smime-point-at-eol): Replace with point-at-eol.
20701
20702         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
20703         Replace with point-at-{eol,bol}.
20704
20705         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
20706
20707         * imap.el (imap-point-at-eol): Replace with point-at-eol.
20708
20709         * flow-fill.el (fill-flowed-point-at-bol)
20710         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
20711
20712         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
20713         Replace with point-at-{eol,bol} throughout all files.
20714
20715 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20716
20717         * ntlm.el (ntlm-string-as-unibyte): New macro.
20718         (ntlm-build-auth-response): Use it.
20719
20720         Remove Emacs 20 stuff:
20721         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
20722         (butlast, mapc, remove): Remove the compiler macros.
20723         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
20724         of delq and copy-sequence.
20725         * gnus-art.el (popup-menu): Remove the compiler macro.
20726         * nnmail.el (nnmail-split-fancy): Don't support customizing with
20727         Emacs 20.
20728
20729 2004-01-05  Simon Josefsson  <jas@extundo.com>
20730
20731         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
20732         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
20733         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
20734         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
20735         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
20736         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
20737         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
20738         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
20739         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
20740         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
20741         ntlm-string-permute, string-lshift into ntlm-string-lshift,
20742         string-xor into ntlm-string-xor.
20743         Suggested by Jesper Harder <harder@myrealbox.com>.
20744
20745         * ntlm.el: Don't include poem.
20746
20747         * md4.el (print-int32, print-string-hexa): Remove.
20748         Suggested by Jesper Harder <harder@myrealbox.com>.
20749
20750         * sasl-ntlm.el, ntlm.el, md4.el: New files.
20751
20752         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
20753         probably breaks emacs with DL patch, but do we care? Is anyone
20754         still using the DL stuff?)
20755
20756         * sieve-manage.el: Use the password package.
20757         (sieve-manage-read-passwd): Remove.
20758         (sieve-manage-interactive-login): Use password.  Re-add
20759         condition-case around loop.
20760
20761         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
20762         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
20763         Use the password package.
20764
20765 2003-02-19  Simon Josefsson  <jas@extundo.com>
20766
20767         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
20768         token.
20769
20770 2002-08-07  Simon Josefsson  <jas@extundo.com>
20771
20772         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
20773         (sieve-manage-authenticators):
20774         (sieve-manage-authenticator-alist): Add some SASL mechs.
20775         (sieve-sasl-auth): New function.
20776         (sieve-manage-cram-md5-auth):
20777         (sieve-manage-plain-auth): Rewrite using SASL library.
20778         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
20779         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
20780         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
20781         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
20782
20783 2004-01-05  Simon Josefsson  <jas@extundo.com>
20784
20785         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
20786         New files.
20787
20788 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20789
20790         * gnus-group.el (gnus-no-groups-message): Update.
20791
20792         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
20793
20794 2003-11-09  Simon Josefsson  <jas@extundo.com>
20795
20796         * imap.el: Support for ID IMAP extension (RFC 2971).
20797         (imap-local-variables): Add imap-id.
20798         (imap-id): New variable.
20799         (imap-id): New function.
20800         (imap-parse-response): Parse untagged ID response.
20801         * nnimap.el (nnimap-id): New variable.
20802         (nnimap-open-connection): Use it.
20803
20804 2003-12-28  Simon Josefsson  <jas@extundo.com>
20805
20806         * gnus-score.el (gnus-score-edit-all-score): New.
20807         * gnus-group.el (gnus-group-score-map): Bind it to W e.
20808
20809 2004-01-04  Simon Josefsson  <jas@extundo.com>
20810
20811         * password.el: Add.
20812
20813 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
20814
20815         * dns.el (dns-query-types): Fix typo.
20816         (dns-query-types): New function.
20817         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
20818         PTR and SOA replies, see RFC 1035.
20819
20820 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20821
20822         * gnus.el (gnus-logo-color-style): Change colors to `no'.
20823
20824         * Move to Changelog.2.
20825
20826 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20827
20828         * gnus.el (gnus-version-number): Bump version.
20829
20830 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
20831
20832         * gnus.el: No Gnus v0.1 is released.
20833
20834 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
20835
20836         * gnus.el: No Gnus v0.0 is released.
20837
20838 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20839
20840         * gnus.el (gnus-version-number): Bump.
20841         (gnus-version): No.
20842
20843 See ChangeLog.2 for earlier changes.
20844
20845   Copyright (C) 2004-2011  Free Software Foundation, Inc.
20846
20847   This file is part of GNU Emacs.
20848
20849   GNU Emacs is free software: you can redistribute it and/or modify
20850   it under the terms of the GNU General Public License as published by
20851   the Free Software Foundation, either version 3 of the License, or
20852   (at your option) any later version.
20853
20854   GNU Emacs is distributed in the hope that it will be useful,
20855   but WITHOUT ANY WARRANTY; without even the implied warranty of
20856   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20857   GNU General Public License for more details.
20858
20859   You should have received a copy of the GNU General Public License
20860   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
20861
20862 ;; Local Variables:
20863 ;; coding: utf-8
20864 ;; fill-column: 79
20865 ;; add-log-time-zone-rule: t
20866 ;; End: