Make gnus-html use url-cache system
[gnus] / lisp / ChangeLog
1 2010-09-21  Julien Danjou  <julien@danjou.info>
2
3         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
4         (gnus-html-cache-expired): Add new function.
5         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
6         wethever we should display image for fetch it.
7         Compute alt-text earlier to pass it to the fetching function too.
8         (gnus-html-schedule-image-fetching): Change function argument to only
9         get one image at a time, not a list.
10         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
11         cache.
12         (gnus-html-get-image-data): New function to retrieve image data from
13         cache.
14         (gnus-html-put-image): Change buffer argument to use image data rather
15         than file, and place image above region rather than inserting a new
16         one. Do not take alt-text as argument, since it's useless now: we place
17         the image above alt-text.
18         (gnus-html-prune-cache): Remove.
19         (gnus-html-show-images): Start to fetch image when we find one, do not
20         push into a temporary list.
21         (gnus-html-prefetch-images): Only fetch image if they have expired.
22         (gnus-html-browse-image): Fix, use 'gnus-image-url.
23
24 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
25
26         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
27
28 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
29
30         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
31         opening the server.
32         (nnimap-request-delete-group): Implement group deletion.
33         (nnimap-transform-headers): Return the size of the entire message in
34         the Bytes header, not just the size of the first part.
35         (nnimap-request-move-article): When moving an article from nnimap,
36         request the article first so the accepting form has an article to
37         accept.  Reported by Dan Christensen.
38         (nnimap-command): Make sure that the error message doesn't error out.
39
40 2010-09-20  David Edmondson  <dme@dme.org>  (tiny change)
41
42         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
43         we haven't requested anything.
44
45 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
46
47         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
48         "".  Fix found by Andrew Cohen.
49
50         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
51         instead of -encode-string.
52
53 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
54
55         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
56
57         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
58         by mm-subst-char-in-string.
59
60 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
61
62         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
63         waiting for the connection string.
64
65         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
66         arriving.
67
68         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
69         bogus characters.  This allows selecting certain Gmail groups.
70
71         * nnimap.el (nnimap-find-wanted-parts-1): New function.
72         (nnimap-fetch-partial-articles): New variable.
73         (nnimap-open-connection): When looking for credentials, also use the
74         nnimap-server-port.
75         (nnimap-request-article): Return the group/article number, so that Gnus
76         `^' works as expected.
77         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants
78         them.
79
80         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
81         comments.
82         (gnus-methods-sloppily-equal): New function.
83         (gnus): When using the development version of Gnus, load the gnus-load
84         file.
85
86         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
87         `gnus-open-server' on each method before trying to scan them etc.  This
88         ensures that all the backend parameters are set correctly.
89
90         * nnimap.el (nnimap-authenticator): New variable.
91         (nnimap-open-connection): Allow anonymous login.
92         (nnimap-transform-headers): The chars header is called Chars not
93         Bytes.
94         (nnimap-wait-for-response): Don't infloop if the IMAP connection
95         drops.
96
97         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
98         patch, found by Knut Anders Hatlen.
99
100 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
101
102         * gnus-agent.el (gnus-agent-batch-confirmation)
103         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
104         to gnus-message.
105         * gnus-art.el (gnus-article-describe-briefly): Likewise.
106         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
107         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
108         * gnus-int.el (gnus-open-server): Likewise.
109         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
110         (gnus-score-check-syntax): Likewise.
111         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
112         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
113         Likewise.
114         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
115
116 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
117
118         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
119         calling conventions so that prefetch doesn't bug out.
120
121 2010-09-19  Julien Danjou  <julien@danjou.info>
122
123         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
124         rather than `subst-char-in-region' in order to be able to replace ASCII
125         char by UTF-8 ones.
126
127         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
128         than curl.
129         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
130         the right URL and ALT text on images.
131         (gnus-html-wash-tags): Fix tag case.
132         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
133         (gnus-article-html): Add -o display_ins_del=2 option.
134         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
135
136 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
137
138         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
139         the extra mail headers, which sometimes seem to happen for unknown
140         reasons.
141
142         * mail-parse.el (mail-header-encode-parameter): Define as
143         rfc2045-encode-string instead of as rfc2231-encode-string, since some
144         (or most, perhaps?) mail readers don't understand the latter, but do
145         understand the former.
146
147         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
148         to nil, so that no methods are automatically agentized.  I think this
149         is probably what most users want.
150
151         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
152         from url-retrieve, for instance about invalid URLs.
153
154         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
155         groups that have no articles.
156         (nnimap-request-article): Check that we really got an article when we
157         requested one.
158
159         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
160         doesn't exist.
161
162         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
163         nntp buffer so the agent can save it.
164         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
165         that CRLF doesn't get translated to \n.
166         (nnimap-open-connection): Don't make 'shell commands only send \n.
167
168 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
169
170         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
171         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
172         Update var name.
173         (nnml-generate-nov-file): Use dolist.
174         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
175         Use with-current-buffer.
176
177 2010-09-18  Julien Danjou  <julien@danjou.info>
178
179         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
180         parallel.
181
182 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
183
184         * nnimap.el (nnimap-update-info): When doing partial marks update, get
185         the range update right.
186         (nnimap-request-group): Don't make `M-g' bug out on group with no
187         marks.
188         (nnoo): Required, so that other packages can require nnimap.
189         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
190         command we're looking for.  This helps when the server sends more
191         responses after we've gotten everything we expected.
192         (nnimap): Add a `newlinep' field to keep track of end-of-line
193         conventions.
194         Don't send CRLF to things that don't want it.
195         (nnimap-request-accept-article): Ditto.
196
197 2010-09-18  Julien Danjou  <julien@danjou.info>
198
199         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
200         than curl to retrieve images.
201
202 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
203
204         * nnimap.el (nnimap-update-info): Extend the info so that we can set
205         the marks.
206         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
207         (nnimap-wait-for-connection): New function.
208         (nnimap-open-connection): If we have PREAUTH, don't query for login
209         credentials.
210         (nnimap-update-info): Fix off-by-one error when concatenating ranges
211         when doing a partial update.
212
213 2010-09-18  Julien Danjou  <julien@danjou.info>
214
215         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
216         tags.
217
218 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
219
220         * nnimap.el (nnimap-credentials): New function.
221         (nnimap-open-connection): Use the new function to look for credentials
222         also on the numeric equivalents of "imap" and "imaps".
223
224         * gnus-start.el (gnus-activate-group): Send the info to
225         gnus-request-group.
226
227         * nnimap.el (nnimap-request-group): Have the "check" version of the
228         function parse flags and update the info, so that a `M-g' get a total
229         resync of all flags from the group.
230
231         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
232         to allow backends to alter the info on group selection.  Also alter all
233         the backend -request-group functions to take the parameter.
234
235         * nnimap.el (nnimap-store-info): New function.
236         (nnimap-update-info): Store the info for later usage.
237         (nnimap-request-group): Use the stored info for the dont-check case, so
238         that we don't retrieve all marks when we enter a group.
239
240         * nnimap.el: Use deffoo instead of defun for interface functions.
241
242         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
243         update the group info.  This makes the nndraft groups, for instance, go
244         back to their old behaviour.
245
246         * gnus-sum.el (gnus-select-newsgroup): Indent.
247
248         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
249         in.
250         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
251         nothing.
252
253         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
254         from methods that are denied.
255
256         * gnus-int.el (gnus-method-denied-p): New function.
257
258         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
259         store the password instead of netrc.
260         (nnimap-open-connection): Don't error out when we can't make a
261         connections.
262
263         * auth-source.el (auth-source-create): In the password prompt, say what
264         we're querying for.  Also prompt for user name if that hasn't been
265         given.
266
267         * nnimap.el (nnimap-with-process-buffer): Removed.
268
269 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
270
271         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
272         method when we're reading from the agent.
273
274         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
275
276         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
277         that's probably most useful for users.
278
279         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
280         "failed" all the time.
281
282         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
283         ...)) with (with-current-buffer ... ).
284
285         * nntp.el (nntp-open-server): Return whether the open was successful or
286         not.
287
288         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
289         select an unread unseen article first.
290
291         * nnimap.el (nnimap-open-connection): If the user doesn't have a
292         /etc/services, supply some sensible port defaults.
293
294         * dgnushack.el: Define netrc-credentials.
295
296 2010-09-17  Julien Danjou  <julien@danjou.info>
297
298         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
299
300 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
301
302         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
303         doesn't have any parameters.
304
305 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
306
307         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
308         only upcased checks.
309
310         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
311
312         * nnimap.el (nnimap-open-shell-stream): New function.
313         (nnimap-open-connection): Use it.
314         (nnimap-transform-headers): Get the number of lines in each message.
315         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
316         number of lines.
317         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
318         problem.
319
320         * utf7.el (utf7-encode): Autoload.
321
322         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
323         to allow the mail splitting to not return a default group.  This is
324         useful for nnimap, which will leave unmatched mail in the inbox.
325
326         * nnimap.el: Rewritten.
327
328         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
329         nnimap usage.
330
331         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
332         if the move is internal, so that nnimap can do fast internal moves.
333
334         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
335         data.
336         (gnus-read-active-for-groups): Support finishing the early retrieval of
337         data.
338
339         * gnus-range.el (gnus-range-nconcat): New function.
340
341         * gnus-int.el (gnus-finish-retrieve-group-infos)
342         (gnus-retrieve-group-data-early): New functions.
343
344 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
345
346         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
347         (nnrss-retrieve-groups):
348         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
349         (pop3-quit): Use with-current-buffer.
350
351 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
352
353         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
354         instead of nnheader-accept-process-output.
355
356         * dgnushack.el (dgnushack-compile): Add comment.
357
358         * lpath.el: No need to fbind propertize for XEmacs 21.4.
359
360         * gnus-html.el (gnus-html-schedule-image-fetching)
361         (gnus-html-prefetch-images): Replace process-kill-without-query by
362         gnus-set-process-query-on-exit-flag.
363
364 2010-09-16  Romain Francoise  <romain@orebokech.com>
365
366         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
367
368 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
369
370         * gnus-registry.el (gnus-registry-install-shortcuts): The second
371         parameter to unintern is mandatory-ish in Emacs 24.
372
373         * gnus-html.el (gnus-html-schedule-image-fetching)
374         (gnus-html-prefetch-images): Check for curl before using it.
375
376         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
377         depend on curl, which isn't essential.
378
379         * imap.el: Revert back to version
380         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
381         seem problematic.
382
383 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
384
385         * gnus-registry.el (gnus-registry-install-shortcuts):
386         Explicitly pass `obarray' to `unintern' to avoid a warning.
387
388 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
389
390         * gnus-start.el (gnus-read-active-for-groups): Reverted the previous
391         change.
392
393         * nnrss.el (nnrss-request-list): Removed this function and related
394         functions, including the moreover stuff.
395
396 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
397
398         * nnrss.el (nnrss-retrieve-groups): New function.
399
400 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
401
402         * .dir-locals.el: Add no-byte-compile cookie.
403
404 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
405
406         * time-date.el (format-seconds): Comment fix.
407
408         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
409         for back end that doesn't support request-scan.
410
411 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
412
413         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
414         then do request scans from the backends.
415
416         * netrc.el (netrc-credentials): New conveniency function.
417
418         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
419         avoid running a hook per line, since this takes a lot of time,
420         profiling shows.
421         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
422         directly if gnus-visual-p is true.
423
424 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
425
426         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
427         groups; replace mapcar with dolist which is a bit faster; pass groups
428         info to gnus-read-active-file-1.
429         (gnus-read-active-file-1): Scan only specified groups if the new
430         optional arg `infos' is given.
431
432 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
433
434         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
435
436         * pop3.el (pop3-movemail): Removed.
437         (pop3-streaming-movemail): Renamed to pop3-movemail.
438
439         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
440         don't restrict end-tag searches to the end of the line.
441
442 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
443
444         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
445         articles of every unchecked group to t, which means unknown since the
446         server has never been opened.
447
448 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
449
450         * gnus-html.el (gnus-html-show-alt-text): New command.
451         (gnus-html-browse-image): Ditto.
452         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
453         to browse the image directly.
454         (gnus-html-wash-tags): Search for images first, so that <a><img> works
455         better.
456
457         * gnus-async.el (gnus-async-article-callback): Call
458         `gnus-html-prefetch-images' unconditionally.
459
460         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
461         before feeding URLs to curl.
462
463 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
464
465         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
466         internal images as deletable by `W D D'.
467
468         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
469         (gnus-async-article-callback): Fix typo.
470
471 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
472
473         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
474         current line to work around bugs in the output from w3m.
475
476         * gnus-async.el (gnus-async-article-callback): Always prefetch images
477         for groups that want that.
478
479         * nntp.el (nntp-wait-for-string): Supply a timeout for
480         accept-process-output to ensure progress.
481
482         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
483         level to get unread articles from, then use that for foreign groups,
484         too.
485
486         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
487         confuses the rest of the function.
488
489         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
490         for the methods that support -retrieve-groups, too.
491
492         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
493
494 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
495
496         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
497         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
498
499         * pop3.el: Require cl when compiling.
500         (pop3-number-of-responses): Search for "+OK", not "+OK ".
501
502 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
503
504         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
505         that aren't going to be activated.
506         (gnus-get-unread-articles): Fix up the last commit.
507
508         * gnus-html.el (gnus-article-html): Allow calling without specifying
509         the handle.  In that case, dissect the buffer first.
510
511         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
512
513         * nnimap.el (nnimap-open-connection): Revert the change that would look
514         into authinfo for imaps instead of imap.
515
516         * gnus-start.el (gnus-activate-group): Take an optional parameter to
517         say that you don't want to call gnus-request-group with don-check, but
518         do check the reponse.  This is for virtual groups only.
519         (gnus-get-unread-articles): Count the archive groups as secondary, so
520         that they're activated the same way as before.
521
522         * imap.el (imap-message-map): Removed optional buffer parameter, since
523         no callers use it.
524         (imap-message-get): Ditto.
525         (imap-message-put): Ditto.
526         (imap-mailbox-map): Ditto.
527         (imap-mailbox-put): Ditto.
528         (imap-mailbox-get): Ditto.
529         (imap-mailbox-get): Revert last change for this function.
530
531         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
532         case-insensitively.
533         (nnimap-debug): Removed.
534
535         * imap.el (imap-fetch-safe): Removed function, and altered all callers
536         to use `imap-fetch' instead.  According to the comments, this should be
537         safe, since all other IMAP clients use the 1:* syntax.
538         (imap-enable-exchange-bug-workaround): Removed.
539         (imap-debug): Removed -- doesn't seem very useful.
540
541         * mail-source.el (mail-source-fetch): Don't message if we're fetching
542         mail from a file, and the file doesn't exist.
543
544         * imap.el (imap-log): New convenience function used throughout instead
545         of repeating the same code all over the place.
546
547         * pop3.el (pop3-streaming-movemail): Return t for success.
548
549         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
550         .authinfo if we're using ssl connection.
551
552         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
553         already have if we're in a main Gnus `g' run.
554
555         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
556
557 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
558
559         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
560
561         * nnmh.el (nnmh-request-list-1): Bind `file'.
562
563         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
564         alias to set-process-query-on-exit-flag or process-kill-without-query.
565         (pop3-open-server): Use it.
566
567 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
568
569         * mail-source.el (mail-source-delete-crash-box): Always move the crash
570         box to the Incoming file.  Fixes mistake in previous checkin.
571
572         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
573         request loop (for debugging purposes) removed.
574
575         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
576         culprit is more visible.
577         (nnml-save-incremental-nov, nnml-open-incremental-nov)
578         (nnml-add-incremental-nov): New functions to do "incremental" nov
579         updates, where we just append to the end of the existing nov files
580         without reading/writing them in full.
581
582         * mail-source.el (mail-source-delete-crash-box): Really only check the
583         incoming files once in a while.
584
585         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
586
587         * mail-source.el (mail-source-delete-crash-box): Only check the
588         incoming files for deletion once per day to save a lot of file
589         accesses.
590
591         * pop3.el (pop3-logon): Fix up unbound variable typo.
592
593         * mail-source.el (pop3-streaming-movemail): Autoload.
594
595         * pop3.el (pop3-streaming-movemail): Respect
596         pop3-leave-mail-on-server.
597
598         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
599         retrieval.
600
601         * pop3.el (pop3-process-filter): Removed unused function.
602         (pop3-streaming-movemail, pop3-send-streaming-command)
603         (pop3-wait-for-messages, pop3-write-to-file)
604         (pop3-number-of-responses): New functions for streaming pop3
605         retrieval.
606
607         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
608         come from no known methods.
609         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
610         list.
611
612         * pop3.el (pop3-display-message-size-flag): Removed -- everybody wants
613         message sizes.
614         (pop3-movemail): Use erase-buffer instead of looping and deleting
615         regions, which seems rather odd.
616
617         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
618         file once per `g' run.
619
620         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
621         directories.  This makes the draft queue directory work.
622
623         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
624         data from the backends, so that we only request the list of groups from
625         each method once.  This should speed things up considerably.
626
627         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
628         detect that it's not implemented.
629
630         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
631         we actually do recurse down into the tree, but don't stat all leaf
632         nodes.
633
634         * gnus-html.el (gnus-html-show-images): If there are no images to show,
635         then say so instead of bugging out.
636
637         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
638         files exist before trying to read them.
639
640         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
641         around <pre_int>.
642
643         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
644
645         * nnmh.el (nnmh-request-list-1): Optimize for speed.
646
647 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
648
649         * mm-util.el (mm-image-load-path): Just return the image directories,
650         not all directories in the path in addition to the image directories.
651         (mm-image-load-path): Maintain a cache of the image directories so that
652         the `g' command in Gnus doesn't have to stat dozens of directories each
653         time.
654
655         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
656         (gnus-html-wash-tags): Add a new `i' command to insert images.
657         (gnus-html-insert-image): New command and keystroke.
658         (gnus-html-redisplay-with-images): New command and keystroke.
659         (gnus-html-show-images): Renamed command.
660         (gnus-html-wash-tags): Remove more white space before <pre_int> image
661         spacers.
662         (gnus-html-wash-tags): Decode entities at the end, so that entities
663         inside the tags don't mess up the rest of the "parsing".
664
665         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
666         so that nnimap methods aren't agentized by default.  There's apparently
667         many problems related to agent/imap behaviour.
668
669         * gnus-art.el (gnus-article-copy-string): New command and key binding.
670
671         * gnus-html.el: Doc fix.
672
673 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
674
675         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
676         specifier-spec-list for Emacs 21.
677
678         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
679         glyph-width and glyph-height instead of display-graphic-p and
680         image-size; make avoidance of displaying small images work for XEmacs.
681
682         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
683         for XEmacs.
684
685         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
686         of symbol that holds plist data.
687         (gnus-process-plist): Remove plist of process after getting it.
688
689 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
690
691         * message.el (message-generate-hashcash): Change default to
692         'opportunistic if hashcash is installed.
693
694         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
695         (gnus-html-put-image): Only call image-size once, since it's somewhat
696         time-consuming on remote X servers.
697
698 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
699
700         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
701         type on data, not a file name.
702
703         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
704         window-pixel-edges for Emacs 21.
705
706         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
707         decoded contents.
708         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
709
710 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
711
712         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
713         group line format, since it isn't very interesting.
714
715         * gnus-agent.el (gnus-agent-short-article),
716         (gnus-agent-long-article): Increase values for these two variables,
717         since most people are likely to have more network connection and
718         storage than before.
719
720         * gnus.el (gnus-refer-article-method): Change default to 'current.
721         When referring an article, the common behaviour is to refer it from the
722         current select method, not the native select method.  The chances of
723         the native select method having the message in question is rather slim
724         these days.
725
726         * gnus-sum.el (gnus-auto-select-subject): Change default to
727         `unseen-or-unread'.  I think it's likely that most people want to
728         select an unseen article over a previously seen, but unread one.
729
730         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
731         means that in the article buffer none of the minor mode elements will
732         be shown, usually, and this is not desirable in most cases.
733
734         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
735         that commands like `d' (and the like) go to the next line in the
736         buffer, instead of the next unread article.  I think this is the
737         behaviour that is most natural for most users.
738         (gnus-single-article-buffer): Change default to nil, so that people can
739         have as many article buffers open as they have summary buffer.  I think
740         this is the most natural way for the groups to behave.
741
742         * message.el (message-generate-new-buffers): Change default to
743         `unsent', so that all new message buffers start their names with the
744         string "*unsent", and it's easier to find the buffers if you move from
745         them.
746
747 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
748
749         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
750         small.  They're probably tracking images.
751         (gnus-html-wash-tags): Remove all <pre_int> place holders.
752         (gnus-html-rescale-image): Yet another try at getting the image sizing
753         right.
754
755         * nntp.el (nntp-request-set-mark): Refuse to do marks if
756         nntp-marks-file-name is nil.
757
758 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
759
760         * gnus-html.el (gnus-html-wash-tags)
761         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
762         Better logging.
763
764 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
765
766         * nndoc.el (nndoc-type-alist): Added a new type for Google digests.
767
768         * gnus-html.el (gnus-html-wash-tags): Check the value of
769         gnus-blocked-images in the summary buffer.
770
771 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
772
773         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
774
775 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
776
777         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
778         like "a", it seems like.
779         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
780         since it needs to be picked from the correct buffer.
781
782         * nnwfm.el: Removed.
783
784         * nnlistserv.el: Removed.
785
786 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
787
788         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
789         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
790
791 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
792
793         * nnkiboze.el: Removed.
794
795         * nndb.el: Removed.
796
797         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
798         alt text.
799         (gnus-html-rescale-image): Try to get the rescaling logic right for
800         images that are just wide and not tall.
801
802         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
803         overshadow variable bindings.
804
805 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
806
807         * gnus-html.el (gnus-html-wash-tags)
808         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images): Add
809         extra logging.
810
811 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
812
813         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
814         (gnus-max-image-proportion): New variable.
815         (gnus-html-rescale-image): New function.
816         (gnus-html-put-image): Rescale images.
817
818 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
819
820         Fix up some byte-compiler warnings.
821         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
822         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
823         (gnus-article-fill-cited-article, gnus-article-hide-citation)
824         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
825         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
826         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
827         (gnus-group-update-group): Use save-excursion and with-current-buffer.
828
829 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
830
831         * gnus-html.el (gnus-article-html): Decode contents by charset.
832
833 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
834
835         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
836         (gnus-html-frame-width, gnus-blocked-images)
837         * message.el (message-prune-recipient-rules): Add custom version.
838         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
839
840         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
841         functions.
842
843         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
844         gnus-process-get.
845
846 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
847
848         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
849         instead of lsub directly.
850
851 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
852
853         * nnwarchive.el: Removed.
854
855         * gnus-soup.el: Removed.
856
857         * nnsoup.el: Removed.
858
859         * nnultimate.el: Removed.
860
861         * gnus-html.el (gnus-blocked-images): New variable.
862
863         * message.el (message-prune-recipients): New function.
864         (message-prune-recipient-rules): New variable.
865
866         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
867         guess whether a long line is natural text or not.
868
869         * gnus-html.el (gnus-html-schedule-image-fetching): Use
870         gnus-process-plist and friends for compatibility.
871
872 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
873
874         * gnus-html.el: Require packages that define macros used in this file.
875         (gnus-article-mouse-face): Declare to silence byte-compiler.
876         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
877         process-get.
878         (gnus-html-put-image): Use plist-get to avoid getf.
879         (gnus-html-prefetch-images): Use with-current-buffer.
880
881 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
882
883         * gnus-ems.el: Provide compatibility functions for
884         gnus-set-process-plist.
885
886         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
887         header-line-format for XEmacs 21.4.
888
889         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
890         * gnus.el (gnus-valid-select-methods)
891         * message.el (message-send-mail-partially-limit)
892         * mm-decode.el (mm-text-html-renderer)
893         * mml.el (mml-insert-mime-headers-always)
894         * smiley.el (smiley-regexp-alist): Bump custom version.
895
896 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
897
898         * gnus-html.el: require mm-url.
899         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
900         with the url to `url'.
901         (gnus-html-wash-tags): Support cid: URLs/images.
902
903 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
904
905         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
906         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
907         bindings, as they aren't useful at all.  `w' is moved to `W w'.
908
909         * gnus-move.el: Removed file, since it doesn't really work.
910
911         * gnus-html.el (gnus-article-html): Tell w3m that the input is
912         UTF-8.  This seems to fix problems with some German web feeds.
913
914         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
915         at the top so that the proper colours are applied.
916
917         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
918         don't have dots in their names.
919
920         * gnus-art.el (gnus-article-view-part): Doc fix.
921
922         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
923         XEmacs-compatible.
924         (gnus-html-put-image): Don't do images on non-graphic displays.
925
926         * nnslashdot.el: Removed this unused backend.
927
928         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
929         actions.
930         (gnus-undo-register-1): Revert last change.
931
932         * gnus-group.el (gnus-group-completing-read): Protect against not
933         having completion-styles bound.
934
935         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
936         make broken recipients happier.
937
938         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
939
940         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
941         point parameter.
942
943         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
944
945         * gnus-group.el (gnus-group-completing-read): Add 'substring to
946         completion-styles for group selection.
947
948 2009-02-04  Andreas Schwab  <schwab@suse.de>
949
950         * gnus-score.el (gnus-score-string): Fix regex for matching extra
951         headers and regexp-quote the match if necessary.
952
953 2009-03-24  Miles Bader  <miles@gnu.org>
954
955         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
956         the blinking smiley.
957
958 2009-03-24  Simon Josefsson  <simon@josefsson.org>
959
960         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
961         blink smiley.
962
963 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
964
965         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
966         where the dribbel file lives exists.
967
968         * message.el (message-send-mail-partially-limit): Change the default to
969         nil, since most people don't want this.
970
971         * mm-url.el (mm-url-decode-entities): Also decode entities like
972         &#x3212.
973
974 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
975
976         * gnus-sum.el (gnus-summary-idna-message):
977         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
978         Hyperlink urls in docstrings with URL `...'.
979
980 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
981
982         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
983         functions.
984
985 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
986
987         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
988         say what the mouseover text should be.
989
990         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
991         version of the mm-w3m-safe-url-regexp variable to only download images
992         in the groups where we want that to happen.
993
994         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
995
996         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
997         easier debugging.
998         (gnus-article-beginning-of-window): Add kludge to allow spacing past
999         big pictures in the article buffer.
1000
1001         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
1002         gnus-article-html.
1003         (mm-text-html-renderer): gnus-article-html needs curl in addition to
1004         w3m.
1005
1006         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
1007
1008 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1009
1010         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
1011         which doesn't exist.
1012
1013         * message.el (message-inhibit-ecomplete): New variable to allow some
1014         function to inhibit ecomplete address storage.
1015         (message-resend): Disable ecomplete message storage when resending
1016         messages.
1017
1018         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
1019
1020 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1021
1022         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
1023         Save excursion while copying, moving, and deleting articles in order to
1024         prevent the cursor from jumping to unforeseen place.
1025
1026 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1027
1028         * lpath.el: No need to bind bookmark-current-buffer,
1029         bookmark-yank-point and bookmark-make-record-function.
1030
1031 2010-08-17  Glenn Morris  <rgm@gnu.org>
1032
1033         * gnus-sync.el: Require gnus components whose functions are used.
1034
1035         * gnus-art.el (bookmark-make-record-function):
1036         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
1037         Declare for compiler.
1038
1039         * mm-url.el (mml-compute-boundary): Autoload.
1040
1041 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1042
1043         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
1044
1045 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
1046
1047         Typo fix "hoo4a" -> "hook".
1048
1049         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
1050
1051 2010-08-14  Glenn Morris  <rgm@gnu.org>
1052
1053         * gnus-sync.el (gnus-sync): Fix defgroup version.
1054
1055 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
1056
1057         Doc fixes and keep unknown groups (ammended for nunion bug fix).
1058
1059         * gnus-sync.el: Fix docs.
1060         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
1061         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
1062
1063 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1064
1065         Optimizations for gnus-sync.el.
1066
1067         * gnus-sync.el: Add docs about gnus-sync-backend
1068         possibilities.
1069         (gnus-sync-save): Remove unnecessary message.
1070         (gnus-sync-read): Optimize and show what groups were skipped.
1071
1072 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1073
1074         Minor bug fixes for gnus-sync.el.
1075
1076         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks): Don't
1077         read the sync on get-new-news.
1078
1079         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
1080         quiet.
1081
1082         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets' (fix typo).
1083
1084 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
1085
1086         Make saving and restoring of hidden threads work with overlays.
1087         Patch applied by Ted Zlatanov.
1088
1089         * gnus-sum.el (gnus-hidden-threads-configuration)
1090         (gnus-restore-hidden-threads-configuration): Update to deal with text
1091         properties, rather than searching for a magic character.
1092
1093 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1094
1095         New gnus-sync.el library for synchronization of marks.
1096
1097         * gnus-sync.el: New library for synchronization of marks.
1098
1099         * gnus-util.el (gnus-grep-in-list): Moved from gnus-registry.el and
1100         renamed from `gnus-registry-grep-in-list'.
1101
1102         * gnus-registry.el (gnus-registry-follow-group-p): Use `gnus-grep-in-list'.
1103
1104         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
1105
1106 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1107
1108         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
1109         determining charset of text fails.
1110
1111 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1112
1113         * nnmail.el (nnmail-get-new-mail-1): Revert.
1114
1115         * nnml.el (nnml-active-number): Make sure names of newly created groups
1116         in nnml-group-alist are encoded.
1117
1118 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1119
1120         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
1121         containing non-ASCII characters in active file for nnml back end.
1122
1123 2010-07-24  David Engster  <dengste@eml.cc>
1124
1125         * mml-smime.el (mml-smime-epg-verify): Also accept the older
1126         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
1127
1128 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
1129
1130         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
1131         tag (Bug#6654).
1132
1133 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1134
1135         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
1136         the article buffer, not the summary buffer.
1137
1138 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1139
1140         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
1141         Emacs 23 as well.
1142
1143 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1144
1145         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
1146         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
1147
1148 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1149
1150         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
1151         Patch applied by Karl Fogel.
1152
1153         * gnus-sum.el (gnus-summary-bookmark-make-record): Set
1154         `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
1155
1156 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1157
1158         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
1159         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
1160         C-w still not working correctly from Article buffers; Thierry's
1161         patch to fix that will be applied after this.
1162
1163         * gnus-art.el (bookmark-make-record-function): New local variable.
1164
1165         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
1166         article buffer.
1167         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
1168
1169 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
1170
1171         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
1172         on changes in bookmark.el.
1173
1174 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1175
1176         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
1177         `no-log' instead of message not to log prompt string.
1178
1179 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
1180
1181         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
1182         the *other* type of HTML form submission.
1183
1184 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
1185
1186         * auth-source.el (auth-source-pick): If choice does not contain a
1187         questioned keyword, set the check to t.
1188
1189 2010-06-12  Romain Francoise  <romain@orebokech.com>
1190
1191         * gnus-util.el (gnus-date-get-time): Move up before first use.
1192
1193 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1194
1195         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
1196         (gnus-article-edit-part): Bind it to make last part that is substituted
1197         or deleted visible.
1198         (gnus-mime-display-single): Buttonize part of which id equals to
1199         gnus-mime-buttonized-part-id.
1200
1201 2010-06-10  Dan Christensen  <jdc@uwo.ca>
1202
1203         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
1204         (gnus-dd-mmm): Use gnus-date-get-time.
1205         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
1206         simplify logic.
1207         (gnus-summary-limit-to-age): Use gnus-date-get-time.
1208         (gnus-sort-threads): emit message if gnus-sort-threads-loop used.
1209
1210 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
1211
1212         * auth-source.el (top): Autoload `secrets-list-collections',
1213         `secrets-create-item', `secrets-delete-item'.
1214         (auth-sources): Fix tag string.
1215         (auth-get-source, auth-source-retrieve, auth-source-create)
1216         (auth-source-delete): New defuns.
1217         (auth-source-pick): Rewrite in order to avoid 2 passes.
1218         (auth-source-forget-user-or-password): New parameter USERNAME.
1219         (auth-source-user-or-password): New parameters CREATE-MISSING and
1220         DELETE-EXISTING.  Retrieve password interactively, if needed.
1221
1222 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
1223
1224         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
1225         deleting unused directories when gnus-expert-user is t.
1226
1227 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1228
1229         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
1230         for each temp file when gnus-article-browse-delete-temp is ask.
1231
1232 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1233
1234         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
1235         Lisp calls to delete-backward-char by calls to delete-char.
1236
1237 2010-05-20  Kevin Ryde  <user42@zip.com.au>
1238
1239         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
1240
1241 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
1242
1243         * password-cache.el (password-cache-remove): Fix docstring.
1244
1245 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1246
1247         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
1248         article unless decoding article to be saved.
1249
1250 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1251
1252         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
1253         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
1254         generated within the mm-with-unibyte-current-buffer macro.
1255
1256 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1257
1258         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
1259         to nil when we're in a mml-preview buffer and no group is selected.
1260
1261 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
1262
1263         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
1264         when catching the `C-g'.  Reported by "Leo".
1265
1266 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1267
1268         * message.el (message-forward-make-body-plain)
1269         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
1270         multibyte-string-p.
1271
1272         * lpath.el: Revert.
1273
1274 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1275
1276         * message.el (message-forward-make-body-mml): Assume original message
1277         is multibyte string; error on unibyte.
1278         (message-forward-make-body-plain): Ditto; don't add excessive newline
1279         in body end.
1280
1281         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
1282
1283 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
1284
1285         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
1286         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
1287
1288 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1289
1290         * mm-extern.el (mm-extern-url): Don't use
1291         mm-with-unibyte-current-buffer.
1292         (mm-extern-cache-contents): Use with-current-buffer instead of
1293         save-excursion + set-buffer.
1294
1295 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1296
1297         * mm-util.el (mm-emacs-mule): Remove.
1298
1299 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
1300
1301         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
1302         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
1303         change.
1304
1305 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1306
1307         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
1308         bind the default value of enable-multibyte-characters to nil.
1309
1310 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1311
1312         * message.el (message-forward-make-body-plain)
1313         (message-forward-make-body-mml):
1314         Don't use mm-with-unibyte-current-buffer.
1315
1316 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1317
1318         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
1319
1320 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
1321
1322         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
1323         (Bug#5592).
1324
1325 2010-05-07  Julien Danjou  <julien@danjou.info>
1326
1327         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
1328         it to mm-pipe-part.
1329
1330         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
1331         it is given.
1332
1333 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1334
1335         * binhex.el (binhex-decode-region-internal)
1336         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
1337         (dns-query)
1338         * nnweb.el (nnweb-gmane-search)
1339         * pgg-parse.el (pgg-parse-armor)
1340         * pgg.el (pgg-verify-region)
1341         * sha1.el (sha1-string-external)
1342         * uudecode.el (uudecode-decode-region-internal)
1343         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
1344         XEmacs.
1345
1346         * gnus-art.el (gnus-article-browse-html-parts)
1347         * gnus-group.el (gnus-read-ephemeral-gmane-group)
1348         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
1349         make-temp-file.
1350
1351         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
1352         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
1353         compiling.
1354
1355         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
1356         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
1357         XEmacs when compiling.
1358
1359         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
1360         gnus-pick-mode-off-hook for XEmacs when compiling.
1361         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
1362         gnus-binary-mode-off-hook for XEmacs when compiling.
1363
1364         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate): Return
1365         nil if char-charset is not available.
1366
1367         * imap.el (imap-disable-multibyte)
1368         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
1369         macros.
1370
1371         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
1372         instead of encode-coding-string.
1373
1374         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
1375         'xemacs) instead of mm-emacs-mule to switch function definitions.
1376         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
1377
1378         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
1379         bind temporary-file-directory for XEmacs;
1380         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
1381         timer-set-function for XEmacs 21.4 and SXEmacs;
1382         bind timer-list for XEmacs 21.4 and SXEmacs;
1383         fbind char-charset and find-charset-region for non-Mule XEmacs;
1384         fbind decode-coding-region, decode-coding-string, detect-coding-region,
1385         encode-coding-region and encode-coding-string for XEmacs having no
1386         file-coding feature.
1387
1388 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
1389
1390         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
1391
1392 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1393
1394         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
1395         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
1396
1397 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
1398
1399         * mm-util.el (mm-decompress-buffer): Use `delete-file';
1400         alias `jka-compr-delete-temp-file' no longer exists.
1401
1402 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1403
1404         Use define-minor-mode in Gnus where applicable.
1405         * mml.el (mml-mode): Use define-minor-mode.
1406         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
1407         (gnus-undo-mode): Use define-minor-mode.
1408         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
1409         (gnus-dead-summary-mode): Use define-minor-mode.
1410         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
1411         Initialize in declaration.
1412         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
1413         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
1414         (gnus-mailing-list-mode): Use define-minor-mode.
1415         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
1416         (gnus-draft-mode): Use define-minor-mode.
1417         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
1418         (gnus-dired-mode): Use define-minor-mode.
1419
1420 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
1421
1422         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
1423         handles on recursive mml-to-mime translation and check them for
1424         boundary delimiter collisions.  Reported by Greg Troxel.
1425
1426 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1427
1428         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
1429
1430 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1431
1432         * mm-util.el (mm-find-buffer-file-coding-system):
1433         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
1434
1435 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
1436
1437         * message.el (message-generate-headers): Record insertion of optional
1438         headers as well.  Otherwise the check to prevent repeated insertion of
1439         optional headers is a no-op.
1440
1441 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
1442
1443         * smime.el: Don't mention CVS.
1444
1445         * nnrss.el (nnrss-fetch): Don't mention CVS.
1446
1447         * nnir.el: Don't mention CVS.
1448
1449 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1450
1451         * gnus-sum.el (gnus-summary-bookmark-make-record): Add `location' field.
1452
1453 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1454
1455         * lpath.el: Fbind bookmark-default-handler,
1456         bookmark-get-bookmark-record, bookmark-make-record-default,
1457         bookmark-prop-get for Emacs <23 and XEmacs.
1458
1459 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1460
1461         * gnus-sum.el: Add bookmark declarations to silence the compiler.
1462         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
1463         Use with-current-buffer to silence the byte-compiler.
1464         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
1465         bother to require `gnus'.
1466         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
1467
1468 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1469
1470         * gnus-sum.el (gnus-summary-bookmark-make-record)
1471         (gnus-summary-bookmark-jump): New functions.
1472         (gnus-summary-mode): Setup bookmark support.
1473
1474 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
1475
1476         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
1477         if set.
1478
1479 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1480
1481         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
1482         gnus-article-browse-html-save-cid-image; make it work recursively for
1483         forwarded messages as well.
1484         (gnus-article-browse-html-parts): Work when prefix arg is given.
1485         (gnus-article-browse-html-article): Doc fix.
1486
1487 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
1488
1489         * message.el (message-default-mail-headers):
1490         (message-default-headers): Carry the value mail-default-headers over
1491         into message-default-mail-headers, rather than message-default-headers.
1492
1493 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
1494
1495         * mm-decode.el (mm-add-meta-html-tag): Added option to override the
1496         charset.
1497
1498         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
1499         charset into the <meta> tag when the article is encoded to utf-8.
1500
1501 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1502
1503         * gnus-art.el (gnus-article-browse-delete-temp-files): Delete
1504         directories as well.
1505         (gnus-article-browse-html-parts): Work for images that do not specify
1506         file names; delete temp directory when quitting; insert header at the
1507         right place; use file: scheme for image files.
1508
1509 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
1510
1511         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
1512         (gnus-article-browse-html-parts): Use it to make temporary cid image
1513         files in addition to html file so that browser may display them.
1514
1515 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
1516
1517         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
1518
1519 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
1520
1521         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
1522
1523 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
1524
1525         * auth-source.el (auth-sources): Change default to be simpler.  Explain
1526         about Secret Service API sources.  Improve Customize options.
1527         (auth-source-pick): Change to accept any number of search parameters.
1528         Implement fallbacks iteratively, not recursively.  Add scoring on the
1529         second pass and sort by score.  Call Secret Service API when needed.
1530         (auth-source-user-or-password): Use it.  Call Secret Service API
1531         directly when needed to get the user name and the password.
1532
1533 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
1534
1535         * message.el (message-interactive): Doc fix.
1536         (message-qmail-inject-args): Reflow.
1537         (message-kill-to-signature): Fix typo in docstring.
1538
1539         * smiley.el (smiley-buffer): Fix typo in docstring.
1540
1541 2010-03-24  Glenn Morris  <rgm@gnu.org>
1542
1543         * mail-source.el (gnus-message): Declare.
1544         (mail-source-delete-old-incoming): Require gnus-util.
1545
1546 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1547
1548         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
1549
1550         * message.el (ecomplete-setup): Autoload it for Emacs <23.
1551
1552         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
1553         password-cache's default if it is not bound.
1554         (mml-secure-passphrase-cache-expiry): Default to 16 that is
1555         password-cache-expiry's default if it is not bound.
1556
1557         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
1558         available in Emacs 21.
1559
1560         * lpath.el: Suppress compiler warnings for:
1561         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
1562         XEmacs;
1563         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
1564         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
1565         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
1566
1567 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
1568
1569         * auth-source.el (auth-sources): Fix up definition so extra parameters
1570         are always inline.
1571
1572 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
1573
1574         * nnimap.el (nnimap-verify-uidvalidity): Fixed bug where uidvalidity
1575         wasn't updated after mismatch.  Clear cached mailbox info correctly
1576         when uidvalidity changes.
1577         (nnimap-group-prefixed-name): New function to avoid some code
1578         duplication.
1579         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
1580         (nnimap-request-group): Use it.
1581         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
1582         (nnimap-update-unseen): Significantly improved speed of Gnus startup
1583         with many imap folders.  This is done by caching the group status from
1584         the imap server persistently in a group parameter `imap-status'.  (This
1585         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
1586         but not persistently, so every Gnus startup was still very slow.)
1587
1588 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
1589
1590         * assistant.el (assistant-render-text): Run `widget-setup' and don't
1591         delete the extra newline.  Otherwise editing of :string and :number
1592         types don't work.
1593
1594 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1595
1596         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
1597         secrets.el dependency.
1598         (auth-sources): Add optional user name.  Add secrets.el configuration
1599         choice (unused right now).
1600
1601 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1602
1603         * gnus-sum.el (gnus-summary-make-menu-bar): Let
1604         `gnus-registry-install-shortcuts' fill in the functions.
1605
1606         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
1607         warnings.
1608         (gnus-registry-misc-menus): Variable to hold registry mark menus.
1609         (gnus-registry-install-shortcuts): Populate and use it in a
1610         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
1611
1612 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
1613
1614         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
1615         In-place substitutions for the group name encoding/decoding.
1616         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
1617         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
1618         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
1619         (nnimap-update-unseen, nnimap-request-list)
1620         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
1621         (nnimap-request-set-mark, nnimap-split-to-groups)
1622         (nnimap-split-articles, nnimap-request-newgroups)
1623         (nnimap-request-create-group, nnimap-request-accept-article)
1624         (nnimap-request-delete-group, nnimap-request-rename-group)
1625         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
1626         `encoded-mbx' for consistency.
1627         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
1628         variable `imap-current-mailbox'.
1629
1630         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
1631         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
1632
1633 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
1634
1635         * pop3.el (pop3-display-message-size-flag): Display message size byte
1636         counts during POP3 download.
1637         (pop3-movemail): Use it.
1638         (pop3-list): Implement listing of available messages.
1639
1640 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
1641
1642         * nnir.el (nnir-get-article-nov-override-function): New function to
1643         override the normal NOV retrieval.
1644         (nnir-retrieve-headers): Use it.
1645
1646 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
1647
1648         * auth-source.el (netrc-machine-user-or-password): Autoload.
1649
1650 2010-03-19  Glenn Morris  <rgm@gnu.org>
1651
1652         Stop message.el from loading about 40 libraries it doesn't always need.
1653         The general approach is to autoload rather than require, and to
1654         require in the specific functions rather than the file.  (Bug#5642)
1655
1656         * gmm-utils.el: Don't require wid-edit.
1657         (widget-create-child-value, widget-convert, widget-default-get):
1658         Autoload.
1659
1660         * gnus-util.el: Don't require time-date, netrc.
1661         (message-fetch-field, gnus-group-name-decode): Declare rather than
1662         autoloading.
1663         (gnus-fetch-field): Require message.
1664         (gnus-decode-newsgroups): Require gnus-group.
1665
1666         * ietf-drums.el: Don't require time-date.
1667
1668         * message.el: Don't require hashcash, canlock, ecomplete.
1669         Do require mail-utils.  Require nnheader only when compiling.
1670         (smtpmail-default-smtp-server): Remove declaration.
1671         (message-send-mail-function): Check smtpmail-default-smtp-server
1672         is bound rather than requiring smtpmail.
1673         (message-auto-save-directory, message-insert-signature): Use
1674         expand-file-name rather than nnheader-concat.
1675         (nnheader-insert-file-contents): Autoload.
1676         (hashcash-wait-async): Declare.
1677         (message-send-mail): Only call gnus-setup-posting-charset if
1678         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
1679         (message-send-mail-with-sendmail): Require sendmail.
1680         (canlock-password, canlock-password-for-verify): Declare.
1681         (message-canlock-password): Require canlock.
1682         (nnheader-get-report): Autoload.
1683         (gnus-setup-posting-charset): Declare.
1684         (message-send-news): Require gnus-msg.
1685         (message-make-references, message-make-in-reply-to): Use mail-header-id
1686         rather than the alias mail-header-message-id.
1687         (ecomplete-add-item, ecomplete-save): Declare.
1688         (message-put-addresses-in-ecomplete): Require ecomplete.
1689         (ecomplete-display-matches): Autoload.
1690
1691         * mm-decode.el: Don't require mailcap, gnus-util.
1692         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
1693         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
1694         Autoload.
1695         (mailcap-mime-extensions): Declare.
1696
1697         * mm-encode.el: Don't require mailcap.
1698         (mailcap-extension-to-mime): Autoload.
1699
1700         * mml-sec.el: Don't require password-cache.
1701
1702         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
1703         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
1704         (mml-minibuffer-read-type): Require mailcap.
1705         (mml-preview): Require gnus-msg.
1706
1707         * mml1991.el: Require password-cache.
1708         (password-cache-expiry): Remove declaration.
1709
1710         * mml2015.el: Require password-cache.
1711         (password-cache-expiry): Remove declaration.
1712
1713         * nneething.el (mailcap): Require mailcap.
1714
1715         * nnheader.el (declare-function): Add compatibility stub.
1716         (message-remove-header): Declare rather than autoload.
1717         (nnheader-replace-header): Require message.
1718
1719         * nnimap.el (declare-function): Add compatibility stub.
1720         (netrc-parse, netrc-machine-user-or-password): Declare.
1721         (nnimap-open-connection): Require netrc.
1722
1723         * nntp.el (declare-function): Add compatibility stub.
1724         (netrc-parse, netrc-machine, netrc-get): Declare.
1725         (nntp-send-authinfo): Require netrc.
1726
1727         * rfc2047.el: Don't require qp.
1728         (quoted-printable-encode-region, quoted-printable-decode-string):
1729         Autoload.
1730
1731         * sieve-mode.el: Don't require easymenu.
1732         (easy-menu-add-item): Autoload it.
1733
1734         * spam-stat.el (time-to-number-of-days): Autoload it.
1735
1736 2010-03-19  Glenn Morris  <rgm@gnu.org>
1737
1738         * password-cache.el (password-cache, password-cache-expiry): Autoload.
1739
1740 2010-03-18  Glenn Morris  <rgm@gnu.org>
1741
1742         * hashcash.el (declare-function): Remove duplicate definition.
1743
1744 2010-03-17  Kevin Ryde  <user42@zip.com.au>
1745
1746         * mml.el (mml-read-tag): Unquote values with `read' to reverse
1747         prin1 in mml-insert-tag (just stripping the quotes gave wrong
1748         value if any backslash escapes).
1749
1750 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1751
1752         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
1753         if it is available.  (bug#5647)
1754
1755         * lpath.el: Suppress compiler warning for coding-system-from-name for
1756         Emacs 21 and XEmacs.
1757
1758 2010-03-14  Juri Linkov  <juri@jurta.org>
1759
1760         * hmac-def.el:
1761         * hmac-md5.el:
1762         * netrc.el: Fix keywords.
1763
1764 2010-02-26  Glenn Morris  <rgm@gnu.org>
1765
1766         * message.el (message-send-mail-function): Change the default, so that
1767         it inherits from a customized send-mail-function.  (Bug#5643)
1768
1769 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1770
1771         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
1772         shell-command-to-string signals an error (bug#5299).
1773
1774 2010-02-24  Glenn Morris  <rgm@gnu.org>
1775
1776         * message.el (message-smtpmail-send-it)
1777         (message-send-mail-with-mailclient): Doc fixes.
1778
1779 2010-02-16  Glenn Morris  <rgm@gnu.org>
1780
1781         * message.el (message-default-mail-headers): Change the default value
1782         to ease the transition from mail-mode to message-mode.  (Bug#5555)
1783
1784 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1785
1786         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
1787         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
1788
1789 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
1790
1791         * time-date.el (date-to-time): Doc fix (Bug#5408).
1792
1793 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
1794
1795         * message.el (message-mail): Just pass yank-action on to message-setup.
1796         (message-setup): Handle (FUN . ARGS) form of yank-action.
1797         (message-with-reply-buffer, message-widen-reply)
1798         (message-yank-original): Handle non-buffer values of
1799         message-reply-buffer (Bug#4080).
1800         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
1801
1802 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
1803
1804         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
1805         Fix typo in docstring.
1806
1807 2010-01-08  Jason Rumney  <jasonr@gnu.org>
1808
1809         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
1810         response.
1811
1812 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1813
1814         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
1815
1816         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
1817
1818         * message.el (message-check-news-header-syntax): Protect against a
1819         string that `rfc822-addresses' returns when parsing fails.
1820
1821 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1822
1823         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
1824         (gnus-previous-char-property-change): New functions.
1825
1826         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
1827
1828 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
1829
1830         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
1831         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
1832
1833 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
1834
1835         * message.el (message-exchange-point-and-mark): Rework last change to
1836         avoid using optional arg of exchange-point-and-mark, for backward
1837         compatibility.
1838
1839 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
1840
1841         * message.el (message-exchange-point-and-mark): Call
1842         exchange-point-and-mark with an argument rather than setting
1843         mark-active by hand (Bug#5175).
1844
1845 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1846
1847         * nntp.el (nntp-service-to-port): Work for service expressed with
1848         numeric string; replace [:digit:] with [0-9] for XEmacs.
1849
1850 2009-12-17  Glenn Morris  <rgm@gnu.org>
1851
1852         * gnus-group.el (gnus-bug-group-download-format-alist):
1853         Change emacs entry to debbugs.gnu.org.  Bump :version.
1854
1855 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
1856
1857         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
1858
1859 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
1860
1861         * message.el (message-info): Explain why we use `Info-goto-node'.
1862
1863 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1864
1865         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
1866
1867 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1868
1869         * message.el (message-completion-in-region): New compatibility function.
1870         (message-expand-group): Use it.
1871
1872 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1873
1874         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
1875         with no unread article should be listed if the 2nd arg `predicate' is
1876         given.
1877
1878 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1879
1880         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
1881
1882 2009-11-29  Juri Linkov  <juri@jurta.org>
1883
1884         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
1885         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
1886         on `gnus-recenter'. (Bug#4698, Bug#4981)
1887
1888 2009-11-26  Kevin Ryde  <user42@zip.com.au>
1889
1890         * sha1.el (sha1-string-external): default-directory "/" in case
1891         otherwise non-existent.  process-connection-type pipe for touch of
1892         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
1893
1894 2009-11-25  Kevin Ryde  <user42@zip.com.au>
1895
1896         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
1897         it's comms related and sgml-mode.el has "comm" on that basis too.
1898
1899 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1900
1901         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
1902         containing tspecial characters if they have been already quoted.
1903
1904 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
1905
1906         * dns-mode.el (auto-mode-alist): Purecopy string.
1907
1908 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1909
1910         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
1911
1912 2009-10-24  Glenn Morris  <rgm@gnu.org>
1913
1914         * gnus-art.el (help-xref-stack-item): Define for compiler.
1915
1916 2009-10-21  Kevin Ryde  <user42@zip.com.au>
1917
1918         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
1919
1920 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1921
1922         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
1923
1924 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1925
1926         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
1927         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
1928
1929 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1930
1931         * gnus.el (gnus-overlay-get): New alias to overlay-get.
1932         (gnus-overlays-in): New alias to overlays-in.
1933
1934         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
1935         gnus-overlay-get, and gnus-delete-overlay.
1936         (gnus-summary-show-thread): Make it work as well for systems in which
1937         next-single-char-property-change is not available.
1938         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
1939
1940         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
1941         (gnus-overlay-get): New alias to extent-property.
1942         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
1943
1944         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
1945         SXEmacs.
1946
1947         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
1948         SXEmacs.
1949
1950 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
1951
1952         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
1953
1954 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
1955
1956         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
1957         and XEmacs that don't have `remove-overlays'.
1958
1959 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1960
1961         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
1962         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
1963         selective display.  Use overlays instead.
1964
1965 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
1966
1967         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
1968
1969 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
1970
1971         * spam-stat.el (spam-stat-load): Fix typo in message.
1972
1973 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
1974
1975         * dig.el (dig-invoke): Fix typo in docstring.
1976         (query-dig): Reflow docstring.
1977
1978 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
1979
1980         * gnus-art.el (gnus-article-encrypt-body):
1981         * message.el (message-check-recipients):
1982         * mm-util.el (mm-codepage-setup):
1983         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
1984         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
1985
1986 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
1987
1988         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
1989         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
1990         keys from the menu if mm-{sign,encrypt}-option is 'guided.
1991         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
1992         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
1993
1994 2009-09-21  Kevin Ryde  <user42@zip.com.au>
1995
1996         * dig.el: Add "Keywords: comm", as per net-utils.el.
1997
1998 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1999
2000         * dig.el (dig-mode): Use define-derived-mode.
2001
2002 2009-09-19  Glenn Morris  <rgm@gnu.org>
2003
2004         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
2005
2006 2009-09-18  Glenn Morris  <rgm@gnu.org>
2007
2008         * gnus-diary.el (gnus-diary-check-message):
2009         * message.el (message-insert-formatted-citation-line):
2010         * nnbabyl.el (top-level):
2011         * nndiary.el (nndiary-schedule):
2012         Fix typos in condition-case handlers.
2013
2014 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2015
2016         * gnus-art.el (gnus-article-edit-part): Work for the buffer
2017         configuration that provides the sole article window in a frame;
2018         position point correctly after deleting a part.
2019
2020 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
2021
2022         * spam.el (spam-unregister-on-reregister): Add boolean variable.
2023         (spam-resolve-registrations-routine): Use it to unregister articles
2024         that change status.
2025
2026 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2027
2028         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
2029         with XEmacs.
2030         (parse-time-string-chars): Use it.
2031
2032 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
2033
2034         * imap.el (imap-interactive-login): Better messages.
2035         (imap-open): Fix bug with renamed buffer on reconnect.
2036         (imap-authenticate): Add buffer-local imap-last-authenticator variable
2037         for easier debugging and cleaner code.  On successful (guessed based on
2038         server capabilities) secondary authentication, set imap-state
2039         correctly.
2040         (imap-last-authenticator): Define imap-last-authenticator as a variable
2041         to avoid warnings.
2042
2043 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2044
2045         * nnrss.el (nnrss-request-article): Remove binding of
2046         default-enable-multibyte-characters that has gotten needless by
2047         the 2007-07-13 change in rfc2047-encode-message-header.
2048
2049         * mml.el (mml-insert-multipart): Error on the message header.
2050         (mml-insert-part): Error on the message header; position point at
2051         the end of a MIME tag.
2052
2053 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2054
2055         * time-date.el (autoload): Expand define-obsolete-function-alias into
2056         defalias and make-obsolete for old Emacsen that Gnus supports.
2057         (with-no-warnings): Define it for old Emacsen.
2058         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
2059         is available.
2060         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
2061         float-time is available; suppress compile warning for time-to-seconds.
2062
2063         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
2064         (gnus-float-time): Alias to float-time if it exists.
2065
2066         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
2067         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
2068         float-time is available; suppress compile warning for time-to-seconds.
2069
2070         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
2071         XEmacs.
2072
2073 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
2074
2075         * imap.el (imap-message-map): Docstring fix.
2076
2077 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2078
2079         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
2080         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
2081         Add the optional argument `encoding' that overrides the default.
2082
2083         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
2084         mm-encode-buffer.
2085
2086 2009-09-04  Glenn Morris  <rgm@gnu.org>
2087
2088         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
2089         mm-disable-multibyte, rather than default-enable-multibyte-characters.
2090         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
2091         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
2092         * mm-util.el (mm-with-unibyte-current-buffer)
2093         (mm-find-buffer-file-coding-system):
2094         * yenc.el (yenc-decode-region): Use default-value rather than
2095         default-enable-multibyte-characters.
2096
2097 2009-09-03  Glenn Morris  <rgm@gnu.org>
2098
2099         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
2100         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
2101         than default-enable-multibyte-characters.
2102
2103 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
2104
2105         * gnus-art.el (gnus-article-read-summary-keys):
2106         Fix gnus-buffer-configuration's value temporarily used.
2107
2108 2009-09-02  Glenn Morris  <rgm@gnu.org>
2109
2110         * gnus-util.el (gnus-float-time): New function.
2111         * gnus-delay.el (gnus-delay-article):
2112         * gnus-sum.el (gnus-thread-latest-date):
2113         * gnus-util.el (gnus-user-date): Use gnus-float-time.
2114         * nnspool.el (nnspool-request-newgroups):
2115         Use gnus-float-time rather than time-to-seconds.
2116         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
2117
2118         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
2119         (gnus-header-subject-face, gnus-header-newsgroups-face)
2120         (gnus-header-name-face, gnus-header-content-face):
2121         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
2122         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
2123         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
2124         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
2125         (gnus-cite-face-11):
2126         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
2127         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
2128         (gnus-server-closed-face, gnus-server-denied-face)
2129         (gnus-server-offline-face):
2130         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
2131         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
2132         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
2133         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
2134         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
2135         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
2136         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
2137         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
2138         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
2139         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
2140         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
2141         (gnus-summary-selected-face, gnus-summary-cancelled-face)
2142         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
2143         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
2144         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
2145         (gnus-summary-high-undownloaded-face)
2146         (gnus-summary-low-undownloaded-face)
2147         (gnus-summary-normal-undownloaded-face)
2148         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
2149         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
2150         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
2151         (gnus-splash-face):
2152         * message.el (message-header-to-face, message-header-cc-face)
2153         (message-header-subject-face, message-header-newsgroups-face)
2154         (message-header-other-face, message-header-name-face)
2155         (message-header-xheader-face, message-separator-face)
2156         (message-cited-text-face, message-mml-face):
2157         * sieve-mode.el (sieve-control-commands-face)
2158         (sieve-action-commands-face, sieve-test-commands-face)
2159         (sieve-tagged-arguments-face):
2160         * spam.el (spam-face):
2161         Mark face aliases with "-face" in the name as obsolete.
2162
2163 2009-09-01  Glenn Morris  <rgm@gnu.org>
2164
2165         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
2166         than goto-line.
2167
2168 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
2169
2170         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2171         Don't move point if the command is invoked inside the message header.
2172
2173 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2174
2175         * imap.el (imap-send-command): Simplify.
2176         (imap-wait-for-tag): point-max -> buffer-size.
2177
2178 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2179
2180         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
2181         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
2182         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
2183         * nnir.el (nnir-swish-e-index-file):
2184         * gnus-sum.el (gnus-summary-delete-marked-as-read)
2185         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
2186         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
2187         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
2188         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
2189         (gnus-treat-display-xface): Add Emacs version of obsolescence.
2190
2191 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2192
2193         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2194         Don't save excursion.
2195
2196 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2197
2198         * nnheader.el (nnheader-find-file-noselect):
2199         * mm-util.el (mm-insert-file-contents):
2200         Use (default-value 'major-mode) instead of default-major-mode.
2201
2202 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2203
2204         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
2205
2206 2009-08-26  Glenn Morris  <rgm@gnu.org>
2207
2208         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
2209         than placing in files.el.
2210
2211 2009-08-25  Glenn Morris  <rgm@gnu.org>
2212
2213         * nnir.el (top-level): Don't require cl at run-time.
2214         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
2215         Replace cl-function substitute with gnus-replace-in-string.
2216         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
2217         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
2218         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
2219         simplified expansions.
2220
2221 2009-08-25  Kevin Ryde  <user42@zip.com.au>
2222
2223         * dig.el (dig): Add autoload cookie.
2224
2225 2009-08-22  Glenn Morris  <rgm@gnu.org>
2226
2227         * gnus-art.el (gnus-button-patch): Use forward-line rather than
2228         goto-line.
2229
2230 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
2231
2232         * parse-time.el (parse-time-string-chars): Save match data.
2233
2234 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
2235
2236         * parse-time.el (parse-time-string-chars): Compute using character
2237         classes, to handle non-ascii characters (Bug#3190).
2238
2239 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2240
2241         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
2242
2243         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
2244         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
2245         (gnus-mm-display-part, gnus-mime-display-single)
2246         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
2247         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
2248
2249         * gnus-sum.el
2250         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
2251         (gnus-summary-move-article): Add expirable mark to articles copied or
2252         moved to group that has auto-expire turned on if the option is non-nil.
2253
2254 2009-07-24  Glenn Morris  <rgm@gnu.org>
2255
2256         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
2257         Fix typo.  (Bug#3903)
2258
2259 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2260
2261         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
2262         gnus-article-read-summary-keys rather than gnus-summary-edit-article
2263         that should not be used for draft articles.
2264         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
2265         that has no concern in minor mode keys.
2266         (gnus-article-summary-command, gnus-article-summary-command-nosave):
2267         Abolish.
2268
2269 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2270
2271         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
2272         article without making inquiry to a user for unknown encoding.
2273
2274         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
2275         (nnmaildir--scan): Assume i-node and device number that file-attributes
2276         returns might be cons-cell.
2277
2278         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
2279
2280         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
2281
2282 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
2283
2284         * auth-source.el: Remove docs now in auth.texi.  Don't use
2285         `gnus-message' for logging.  Add new variables `auth-source-debug' and
2286         `auth-source-hide-passwords' and use them.
2287
2288 2009-07-15  Glenn Morris  <rgm@gnu.org>
2289
2290         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
2291
2292 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2293
2294         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
2295         excessive whitespace from the default values of title and description.
2296
2297 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2298
2299         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
2300         mail-fetch-field to fetch Content-Description header in order to
2301         exclude newlines.
2302
2303 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
2304
2305         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
2306         format used by GnuPG 2.0.11.
2307
2308 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2309
2310         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
2311         to deleted part.
2312
2313 2009-05-30  David Engster  <dengste@eml.cc>
2314
2315         * nnmairix.el: Remove old documentation in the commentary block.
2316         (nnmairix-request-group): Do not update active file for nnml back ends.
2317         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
2318         end so that overview files are ignored.
2319         (nnmairix-update-groups): Make updating the groups more robust by using
2320         marks.
2321         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
2322         with dollar characters in message-id.
2323
2324 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
2325
2326         * spam.el: Use dns-query instead of query-dns.  Was renamed on
2327         2008-12-25 in dns.el.
2328
2329 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2330
2331         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
2332         could happen if the text is only composed of spaces and/or tabs.
2333
2334 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
2335
2336         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
2337         when sending a queued message to avoid extra mml tags.
2338
2339 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2340
2341         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
2342
2343 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2344
2345         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
2346         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
2347         rmail-toggle-header for XEmacs;
2348         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
2349
2350 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2351
2352         * gnus-dired.el: Remove autoload for gnus-setup-message.
2353         (gnus-dired-attach): Fake this-command value to prevent Gnus from
2354         displaying Gnus logo; always use compose-mail.
2355
2356 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2357
2358         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
2359
2360 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2361
2362         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
2363         (gnus-nocem-issuers): List currently active issuers; fix custom type.
2364         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
2365         available.
2366         (gnus-nocem-epg-verify): New function.
2367
2368 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
2369
2370         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
2371
2372 2009-02-15  Glenn Morris  <rgm@gnu.org>
2373
2374         * gnus-util.el (rmail-insert-rmail-file-header)
2375         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
2376         autoloads.
2377         (rmail-default-rmail-file): Remove unnecessary declaration.
2378         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
2379
2380 2009-02-14  Glenn Morris  <rgm@gnu.org>
2381
2382         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
2383         variable (only used in gnus-util, which declares it anyway).
2384         (rmail-output-to-rmail-file): Remove autoload of deleted function,
2385         which was only needed by gnus-art (changed to not use it any more).
2386         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
2387         only used in gnus-util, which autoloads it itself.
2388         (rmail-update-summary): Fix autoload.
2389
2390         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
2391         rather than rmail-output-to-rmail-file.
2392
2393 2009-02-07  Glenn Morris  <rgm@gnu.org>
2394
2395         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
2396         autoload of function that no longer exists.
2397         (rmail-toggle-header): Declare.
2398         (message-forward-rmail-make-body): Handle mbox Rmail.
2399
2400 2009-01-31  Glenn Morris  <rgm@gnu.org>
2401
2402         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
2403         2009-01-09 change.
2404
2405 2009-01-31  Dave Love  <fx@gnu.org>
2406
2407         * imap.el (imap-fetch-safe): Bind debug-on-error.
2408         (imap-debug): Add imap-fetch-safe.
2409
2410 2009-01-26  Teodor Zlatanov  <tzz@lifelogs.com>
2411
2412         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
2413         (auth-source-forget-all-cached): New convenience function.
2414         (auth-source-user-or-password): Accept list of modes or a single mode.
2415
2416         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
2417         auth-source modes.
2418
2419         * netrc.el (netrc-machine-user-or-password): Use list of
2420         auth-source modes.
2421
2422         * nnimap.el (nnimap-open-connection): Use list of
2423         auth-source modes.
2424
2425         * nntp.el (nntp-send-authinfo): Use list of
2426         auth-source modes.
2427
2428 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
2429
2430         * auth-source.el: Update docs to reflect epa-file-enable is to be used
2431         now.
2432
2433 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2434
2435         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
2436         coding system in XEmacs; add a workaround for XEmacs.
2437
2438         * lpath.el: Fbind coding-system-aliasee.
2439
2440 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2441
2442         * mm-util.el (mm-coding-system-priorities): Protect against nil value
2443         of current-language-environment.
2444
2445 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
2446
2447         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
2448         available at runtime.
2449
2450 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2451
2452         * gnus-art.el (article-date-ut): Fix end point of narrowing.
2453
2454 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
2455
2456         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
2457         the greatest positive fixnum value doesn't work under an XEmacs with
2458         bignum support; use the most-positive-fixnum constant instead,
2459         available since Emacs 21.1 with cl and XEmacs 21.1.
2460
2461 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2462
2463         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
2464         XEmacs gets not to work.
2465
2466 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2467
2468         * mm-util.el (mm-coding-system-priorities): Allow the value like
2469         "Japanese (UTF-8)" of current-language-environment.
2470
2471 2009-01-09  Glenn Morris  <rgm@gnu.org>
2472
2473         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
2474         with last-command-event.
2475
2476 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
2477
2478         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
2479         in the doc string.
2480
2481         * message.el (message-fix-before-sending): Amend comment.
2482
2483 2009-01-08  Dave Love  <fx@gnu.org>
2484
2485         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
2486
2487 2009-01-07  David Engster  <dengste@eml.cc>
2488
2489         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
2490         simplified server definitions by converting it via
2491         gnus-server-to-method.
2492
2493 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2494
2495         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
2496         parameter's operands.
2497
2498 2009-01-06  David Engster  <dengste@eml.cc>
2499
2500         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
2501         primary select method (for gnus-group-mark-article-as-read).
2502
2503 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
2504
2505         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
2506         `(gnus)Face', not `(gnus)X-Face'.
2507
2508 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2509
2510         * mm-util.el (mm-ucs-to-char): New function.
2511
2512         * mm-url.el (mm-url-decode-entities): Use it.
2513
2514         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
2515         unicode-to-char.
2516
2517 2009-01-05  Dave Love  <fx@gnu.org>
2518
2519         * time-date.el: Require cl for `declare'.
2520
2521 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
2522
2523         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
2524         Dave Love.
2525
2526 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
2527
2528         * message.el (message-fix-before-sending): Add `eight-bit' to
2529         illegible-text check.
2530
2531 2009-01-03  Michael Olson  <mwolson@gnu.org>
2532
2533         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
2534         `headers' is nil.  This can occur if the IMAP server does not have
2535         permissions to read messages from a folder, but can write new messages
2536         to the folder.
2537         (nnimap-request-article-part): Do not insert `data' if it is nil.
2538
2539         * imap.el (imap-parse-fetch): Courier can insert spurious blank
2540         characters which will confuse `read', so skip past them.
2541
2542 2009-01-01  Dave Love  <fx@gnu.org>
2543
2544         * imap.el (imap-string-to-integer): Fix typo.
2545         (imap-fetch-safe): New function.
2546         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
2547
2548         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
2549
2550         * imap.el (imap-process-connection-type, imap-debug, imap-open):
2551         (imap-parse-greeting): Fix doc strings.
2552         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
2553         (imap-parse-flag-list): Make messages unique.
2554         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
2555
2556         * nnimap.el: Fix author email.
2557         (nnimap-split-rule): Add FIXME comment.
2558         (nnimap-debug): Fix doc string.
2559
2560 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
2561
2562         * dns.el (dns-set-servers): Check "Address".  Fix typo.
2563
2564 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
2565
2566         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
2567         nslookup if resolv.conf isn't available.
2568         (dns-query): Rename from query-dns.
2569         (dns-query-cached): Rename from query-dns-cached.
2570
2571 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2572
2573         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
2574         overlay-arrow-position and overlay-arrow-string buffer-local; no need
2575         to check if those variables exist (first appeared in Emacs 18.50).
2576
2577 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2578
2579         * mm-util.el (mm-line-number-at-pos): New function.
2580
2581         * spam-report.el (spam-report-process-queue): Use it.
2582
2583 2008-12-24  David Engster  <dengste@eml.cc>
2584
2585         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
2586         parameters that haven't existed as variables as buffer-local variables.
2587
2588 2008-12-23  Dave Love  <fx@gnu.org>
2589
2590         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
2591         cadar.
2592
2593         * sieve-manage.el (sieve-manage-starttls-p): Renamed from
2594         imap-starttls-p.
2595         (sieve-manage-starttls-open): Renamed from imap-starttls-open.
2596
2597 2008-12-22  Dave Love  <fx@gnu.org>
2598
2599         * imap.el: Fix author email.  Doc fixes.
2600         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
2601         reply.
2602
2603 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
2604
2605         * spam-report.el (spam-report-gmane-max-requests): New constant.
2606         (spam-report-gmane-wait): New variable.
2607         (spam-report-gmane-ham, spam-report-gmane-spam)
2608         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
2609         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
2610         the server.
2611
2612         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
2613         Add explanations.
2614
2615         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
2616         nnheader-accept-process-output and nnheader-read-timeout if available.
2617         (pop3-movemail): Use it.
2618
2619         * message.el (message-check-news-body-syntax): Fix signature check if
2620         there's an attachment.
2621
2622 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2623
2624         * mm-util.el: Add comments to the mm- emulating functions.
2625
2626 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
2627
2628         * gnus-start.el (gnus-before-startup-hook): Fix doc string.  Reported
2629         by Stephen Berman <stephen.berman@gmx.net>.
2630
2631 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2632
2633         * mm-util.el (mm-substring-no-properties): New function.
2634         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
2635         (mm-special-display-p): Enable those lambda forms to be byte compiled.
2636         (mm-string-to-multibyte): Doc fix.
2637
2638         * mml.el (mml-attach-file): Use mm-substring-no-properties.
2639
2640 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
2641
2642         * mml.el (mml-attach-file): Strip text properties from file name.
2643         (Bug#1574)
2644
2645 2008-12-16  Glenn Morris  <rgm@gnu.org>
2646
2647         * mm-util.el (mm-charset-override-alist): Declare for compiler.
2648
2649 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2650
2651         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
2652         knows since the charset specified might be a bogus alias that
2653         mm-charset-synonym-alist provides.
2654
2655 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
2656
2657         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
2658         "ISO_8859-1".
2659
2660         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
2661
2662 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2663
2664         * mm-util.el (mm-charset-eval-alist):
2665         Define it before mm-charset-to-coding-system.
2666         (mm-charset-to-coding-system): Add optional argument `silent';
2667         define it before mm-charset-override-alist.
2668         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
2669         default value if it can be used in Emacs currently running;
2670         silence mm-charset-to-coding-system.
2671
2672 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2673
2674         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
2675         `allow-override' which says whether to use `mm-charset-override-alist'.
2676         (rfc2047-decode-encoded-words): Use it.
2677
2678         * mm-util.el (mm-charset-override-alist): Fix custom type;
2679         add `(gb2312 . gbk)' to choices.
2680
2681 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2682
2683         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
2684         fast.
2685
2686         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2687
2688         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
2689
2690 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
2691
2692         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
2693         on links.
2694
2695         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2696
2697 2008-12-03  Lute Kamstra  <lute@gnu.org>
2698
2699         * sha1.el: Remove leading * from docstrings of defcustoms,
2700         deffaces, defconsts and defuns.
2701
2702 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2703
2704         * message.el (message-idna-to-ascii-rhs-1): Protect against local
2705         users' addresses that don't have domain parts.
2706         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
2707         rather than message-narrow-to-head since there will be the message
2708         header separator.
2709
2710 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2711
2712         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
2713         since the result is inserted in a unibyte buffer anyway.
2714         (nnimap-demule-use-string-to-multibyte): Remove.
2715         (nnimap-demule): Alias it to mm-string-to-multibyte.
2716
2717 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
2718
2719         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
2720         variable for debugging bug#464 and bug#1174.
2721         (nnimap-demule): Use it.
2722
2723 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
2724
2725         * gnus-score.el (gnus-score-find-trace): Handle default score in total
2726         score calculation correctly.
2727
2728 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2729
2730         * message.el (message-send-mail): Just set the buffer to unibyte
2731         rather than use mm-with-unibyte-current-buffer which does a lot more.
2732         (message-send-mail-partially): Don't bother with
2733         mm-with-unibyte-current-buffer since it's already been made unibyte by
2734         message-send-mail.
2735
2736 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
2737
2738         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
2739
2740 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
2741
2742         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
2743
2744 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2745
2746         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
2747         require itself and to remove `with-no-warnings'.
2748
2749 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
2750
2751         * starttls.el (starttls-any-program-available): Get the name of the
2752         available TLS layer program.
2753         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
2754         well as the host name in the "opening" message.
2755
2756         * auth-source.el (auth-source-cache, auth-source-do-cache)
2757         (auth-source-user-or-password): Cache passwords and logins by default,
2758         allow override with `auth-source-do-cache'.
2759         (auth-source-forget-user-or-password): Allow users to remove cache
2760         entries if needed.
2761
2762 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
2763
2764         * md4.el (md4-buffer): Fix typo in docstring.
2765         (md4, md4-64): Doc fixes.
2766         (md4-pack-int32): Reflow docstring.
2767
2768 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2769
2770         * ietf-drums.el (ietf-drums-remove-comments): Localize second
2771         condition-case to only the forward-sexp call.
2772
2773 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2774
2775         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
2776         quotes contained.  Make it more robust regardless by an extra
2777         condition-case wrapper.
2778
2779 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2780
2781         * lpath.el: No need to fbind codepage-setup for Emacs 23.
2782
2783 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2784
2785         * nnml.el (nnml-request-expire-articles): Check if the function set to
2786         `nnmail-expiry-target' returns the symbol `delete'.
2787
2788         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
2789
2790         * nnmail.el (nnmail-expiry-target): Fix custom type.
2791
2792 2008-10-02  Glenn Morris  <rgm@gnu.org>
2793
2794         * mm-util.el (mm-codepage-setup): Tweak codepage error.
2795         Silence compiler warning.
2796
2797 2008-10-01  Magnus Henoch  <mange@freemail.hu>
2798
2799         * tls.el (open-tls-stream): Show the actual command being
2800         executed, instead of the format string.
2801
2802 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2803
2804         * lpath.el: Fbind codepage-setup for Emacs 23.
2805
2806 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
2807
2808         * mml.el (mml-menu): Don't assume mml2015 is bound.
2809
2810 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2811
2812         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
2813         exists.
2814
2815 2008-09-27  Glenn Morris  <rgm@gnu.org>
2816
2817         * gnus-util.el (mail-header-remove-comments): Autoload it.
2818
2819 2008-09-27  Andreas Schwab  <schwab@suse.de>
2820
2821         * gnus-util.el (gnus-split-references): Strip comments.
2822         (gnus-parent-id): Likewise.
2823
2824 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
2825
2826         * message.el (message-confirm-send): Fix version.
2827
2828 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2829
2830         * message.el (message-idna-to-ascii-rhs-1): Use
2831         mail-extract-address-components rather than mail-header-parse-addresses
2832         that is an alias by default to ietf-drums-parse-addresses that does not
2833         support non-ASCII names in headers' contents.
2834
2835 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
2836
2837         * message.el (message-confirm-send): Fixed variable documentation to
2838         avoid the "y/n" wording.
2839
2840 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
2841
2842         * message.el (message-set-auto-save-file-name): Save to a different
2843         filename so multiple messages (especially drafts) can be recovered.
2844
2845 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
2846
2847         * message.el (message-confirm-send): Add appropriate version.
2848
2849 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
2850
2851         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
2852         defvar.
2853
2854 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
2855
2856         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
2857         (mm-pkcs7-enveloped-magic): Ditto.
2858
2859 2008-09-17  Simon Josefsson  <simon@josefsson.org>
2860
2861         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
2862         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
2863
2864 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
2865
2866         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
2867         default, it's better.
2868
2869 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
2870
2871         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
2872         summary line gnus-number property and ignore them (with a warning
2873         message).
2874
2875 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2876
2877         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
2878         macro caddr in the interactive form since it won't be expanded.
2879
2880 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2881
2882         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
2883         `charset'; fix name of function called recursively.
2884         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
2885
2886 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2887
2888         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
2889         (gnus-mime-set-charset-parameters): New function.
2890         (gnus-mime-view-part-as-charset): Use it to correctly display part
2891         specifying wrong charset.
2892
2893 2008-09-08  David Engster  <dengste@eml.cc>
2894
2895         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
2896         in completing-read for back end server.
2897
2898 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
2899
2900         * message.el (message-confirm-send): New variable to confirm sending a
2901         message.
2902         (message-send): Use it.
2903
2904 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
2905
2906         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
2907
2908 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2909
2910         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
2911
2912 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
2913
2914         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
2915         prevent tracking too many groups.
2916         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
2917         Use it.
2918
2919 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
2920
2921         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
2922         moving point to the bottom of the window in order to avoid recentering.
2923
2924 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2925
2926         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
2927
2928         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
2929         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
2930         (gnus-article-beginning-of-window): Fix calculation.
2931
2932 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2933
2934         * gnus-msg.el (gnus-summary-supersede-article)
2935         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
2936         value of gnus-newsgroup-charset to decode non-MIME encoded text in
2937         message header.
2938
2939 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
2940
2941         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
2942         pending output coming after the status change.
2943
2944 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
2945
2946         * message.el:
2947         * gnus-start.el:
2948         * gnus-registry.el: Remove VMS support.
2949
2950 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2951
2952         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
2953         macro.
2954         (rfc2104-hash): Use it.
2955
2956 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
2957
2958         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
2959         (gnus-summary-sort-by-most-recent-date): New commands.
2960         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
2961         and menu entries.
2962
2963 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2964
2965         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
2966         don't redisplay article for raw contents; remove plural articles stuff.
2967
2968         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
2969         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
2970         on gnus-summary-save-article; display results properly.
2971
2972 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2973
2974         * lpath.el: No need to fbind ns-focus-frame.
2975
2976 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2977
2978         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
2979
2980 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2981
2982         * gnus-art.el (gnus-summary-save-in-pipe): Consider
2983         gnus-save-all-headers.
2984
2985 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
2986
2987         * gnus-util.el (ns-focus-frame): Remove declaration.
2988         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
2989         like x.
2990
2991 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
2992
2993         * rfc2104.el (rfc2104-zero): Delete defconst.
2994         (rfc2104-hex-alist): Likewise.
2995         (rfc2104-hex-to-int): Delete func.
2996         (rfc2104-hexstring-to-bitstring): Likewise.
2997         (rfc2104-nybbles): New defconst.
2998         (rfc2104-hash): Rewrite for speed.
2999
3000 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3001
3002         * tls.el (open-tls-stream): Make it work with the 2nd argument
3003         BUFFER that is a string but does not exist as a buffer object, as
3004         mentioned in the doc-string.
3005
3006 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3007
3008         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
3009         SXEmacs.
3010
3011 2008-07-16  Glenn Morris  <rgm@gnu.org>
3012
3013         * gnus-util.el (ns-focus-frame): Declare for compiler.
3014
3015 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3016
3017         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
3018         set as a group parameter.
3019         (gnus-summary-save-in-pipe): Work when it is called independently.
3020         (gnus-summary-pipe-to-muttprint): Don't modify
3021         gnus-summary-pipe-output-default-command.
3022
3023 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3024
3025         * message.el (message-send-mail-with-sendmail):
3026         Display the error message.
3027
3028 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3029
3030         * gnus-art.el (gnus-default-article-saver):
3031         Add gnus-summary-save-in-pipe to choices.
3032         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
3033         gnus-summary-pipe-output-default-command as the default command.
3034         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
3035         instead of gnus-last-shell-command.
3036
3037         * gnus-sum.el (gnus-summary-pipe-output-default-command):
3038         New user option.
3039         (gnus-summary-muttprint-program): Mention the value will be changed.
3040         (gnus-summary-save-article): Force showing of all headers.
3041         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
3042
3043 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
3044
3045         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
3046
3047 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
3048
3049         * nnimap.el (nnimap-id):
3050         * sieve-manage.el (sieve-manage-open): Doc fixes.
3051
3052 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
3053
3054         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
3055         if available.
3056
3057 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3058
3059         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
3060
3061         * nnkiboze.el (nnkiboze-generate-group):
3062         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
3063
3064         * nnmairix.el: Require CL.
3065
3066 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
3067
3068         * dgnushack.el: Autoload get-display-table and put-display-table for
3069         XEmacs 21.5.
3070
3071         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
3072         21.4 and SXEmacs.
3073
3074 2008-06-15  David Engster  <dengste@eml.cc>
3075
3076         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
3077
3078 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
3079
3080         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
3081         New macros that expand to an `aset'/`aref' call under Emacs, and to a
3082         runtime choice under XEmacs.
3083
3084         * gnus-sum.el (gnus-summary-set-display-table):
3085         Use `gnus-put-display-table', `gnus-get-display-table',
3086         `gnus-set-display-table' for the display table, instead of `aset'.
3087
3088         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
3089         Use `gnus-put-display-table', `gnus-get-display-table',
3090         `gnus-set-display-table' for the display table.
3091
3092 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3093
3094         * nnmairix.el: Add autoloads.
3095
3096 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3097
3098         * nnmairix.el (nnmairix-delete-recreate-group)
3099         (nnmairix-update-and-clear-marks): Fix error messages.
3100
3101 2008-06-14  David Engster  <dengste@eml.cc>
3102
3103         * nnmairix.el: Upgrade to version 0.6.
3104         (nnmairix-group-toggle-propmarks-this-group)
3105         (nnmairix-group-toggle-readmarks-this-group)
3106         (nnmairix-group-delete-recreate-this-group)
3107         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
3108         (nnmairix-remove-tick-mark-original-article): New commands.
3109         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
3110         (nnmairix-propagate-marks-to-nnmairix-groups)
3111         (nnmairix-only-use-registry, nnmairix-allowfast-default)
3112         (nnmairix-marks-cache, nnmairix-version-output): New variables.
3113         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
3114         functions needed for marks propagation and manipulation of read marks.
3115         (nnmairix-update-groups): New function.
3116         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
3117         (nnmairix-determine-original-group-from-registry)
3118         (nnmairix-determine-original-group-from-path)
3119         (nnmairix-get-group-from-file-path, nnmairix-map-range)
3120         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
3121         New helper functions.
3122         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
3123         keystrokes for new commands.
3124         (nnmairix-delete-and-create-on-change): Doc string cleanup.
3125         (nnmairix-request-group): Check allow-fast group parameter.
3126         (nnmairix-request-create-group): Set allow-fast group parameter if
3127         nnmairix-allowfast-default is set.
3128         (nnmairix-close-group): Propagate marks upon closing if needed.
3129         (nnmairix-group-toggle-threads-this-group): Use new.
3130         nnmairix-group-toggle-parameter helper function.
3131         (nnmairix-search): Better check for empty search result.
3132         (nnmairix-goto-original-article): Use new helper functions for
3133         determining original article.
3134         (nnmairix-show-original-article): Make sure message-id is in brackets.
3135         (nnmairix-call-mairix-binary): Change variable name.
3136         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
3137         helper function.
3138         (nnmairix-widget-toggle-activate): Fix doc string.
3139
3140 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3141
3142         * nnir.el: Require edmacro when compiling with XEmacs.
3143         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
3144         available in Emacs 21.
3145
3146 2008-06-11  Glenn Morris  <rgm@gnu.org>
3147
3148         * gnus-util.el (x-focus-frame):
3149         * gnus.el (image-size):
3150         * mm-decode.el (image-size): Declare.
3151
3152         * gnus-picon.el (declare-function): Add compat definition.
3153         (image-size): Declare.
3154
3155         * gnus-group.el (tool-bar-map):
3156         * gnus-sum.el (tool-bar-map): Define for compiler.
3157
3158         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
3159
3160         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
3161
3162         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
3163         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
3164         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
3165         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
3166         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
3167         * sieve-manage.el, spam-report.el, spam.el:
3168         Remove unnecessary eval-and-compile of autoloads.
3169
3170 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
3171
3172         * auth-source.el: Precise Tramp doc.
3173
3174 2008-06-07  Glenn Morris  <rgm@gnu.org>
3175
3176         * nnmairix.el: Remove unnecessary eval-when-compile.
3177
3178 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3179
3180         * lpath.el: Fbind propertize for XEmacs 21.4.
3181
3182 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
3183
3184         * nnir.el: Move here from ../contrib.
3185
3186 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3187
3188         * gnus-util.el (gnus-read-shell-command): New function.
3189         * mm-decode.el (mm-pipe-part):
3190         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
3191
3192 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3193
3194         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
3195
3196 2008-06-03  Glenn Morris  <rgm@gnu.org>
3197
3198         * pop3.el (nnheader-accept-process-output): Autoload it.
3199
3200 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3201
3202         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
3203         are not 2-digit hexadecimal characters that follow `%'s.
3204
3205 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
3206
3207         * message.el (message-bogus-recipient-p): Fix type in doc string.
3208         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
3209         (message-bogus-addresses): Rename from message-bogus-address-regexp.
3210         Improve custom options.
3211         (message-bogus-recipient-p): Adjust accordingly.
3212
3213 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
3214
3215         * parse-time.el (parse-time-months, parse-time-weekdays): Add
3216         long-form month and day names.
3217
3218 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3219
3220         * dgnushack.el: Autoload debug, eudc-expand-inline and
3221         pgg-snarf-keys-region for XEmacs.
3222
3223         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
3224
3225         * nnmairix.el: Require edmacro when compiling with XEmacs.
3226
3227 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
3228
3229         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
3230         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
3231
3232 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
3233
3234         * auth-source.el: Add more docs.
3235
3236         * netrc.el (netrc-machine): Always match if the port is not given.
3237
3238 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3239
3240         * nnheader.el (nnheader-read-timeout): Change the default timeout from
3241         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
3242         retrieval faster in some cases, but might make CPU usage larger.  If
3243         this has any bad side effects, we might revert this change.
3244
3245         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
3246         seems to make mail retrieval much, much faster.
3247         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
3248         unconditionally.
3249
3250         * gnus-draft.el (gnus-group-send-queue): Bind
3251         message-send-mail-partially-limit to nil to avoid being prompted.
3252
3253 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
3254
3255         * mml.el (mml-attach-buffer): Prompt for `disposition'.
3256
3257         * message.el (message-bogus-address-regexp): Fix and improve custom
3258         type.
3259         (message-setup-hook): Add message-check-recipients as custom option.
3260
3261 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
3262
3263         * message.el (message-cite-function): Remove bogus autoload which crept
3264         in during merge from v5-10.
3265
3266 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
3267
3268         * nnimap.el (nnimap-open-connection): Fix login/password bug.
3269
3270         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
3271
3272         * auth-source.el: Preliminary Tramp docs.
3273         (auth-sources): Change the default auth-sources to use
3274         EPA .gpg files.
3275
3276 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
3277
3278         * nntp.el: Autoload `auth-source-user-or-password'.
3279         (nntp-send-authinfo): Use it.
3280
3281         * nnimap.el: Autoload `auth-source-user-or-password'.
3282         (nnimap-open-connection): Use it.
3283
3284         * auth-source.el: Added docs on using with url-auth.  Import gnus-util
3285         for the gnus-message function.
3286         (auth-source-user-or-password): Use it.
3287
3288 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3289
3290         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
3291         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
3292         (rfc2104-hash): Use it.
3293
3294 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
3295
3296         * gnus-art.el (gnus-article-toggle-truncate-lines):
3297         Don't use `iff' in docstring.
3298
3299 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
3300
3301         * gnus-registry.el: Adjusted copyright dates and added a keyword.
3302
3303         * gnus-util.el (gnus-extract-address-component-name)
3304         (gnus-extract-address-component-email): Convenience functions around
3305         `gnus-extract-address-components'.
3306
3307         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
3308         Use `gnus-extract-address-component-email' to fix bug of comparing full
3309         sender name to `user-mail-address'.
3310
3311 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
3312
3313         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
3314         catch/throw to optimize.
3315         (gnus-registry-find-keywords): Just use member to find a keyword.
3316
3317 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3318
3319         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
3320         is current before calling gnus-server-prepare.
3321         (gnus-server-setup-buffer, gnus-server-update-server)
3322         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
3323
3324 2008-05-04  Juri Linkov  <juri@jurta.org>
3325
3326         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
3327         (mailcap-file-default-commands): Use mailcap-replace-in-string
3328         instead of replace-regexp-in-string, and mailcap-delete-duplicates
3329         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
3330
3331 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
3332
3333         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
3334
3335 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3336
3337         * gnus.el: Bump version to 0.11.
3338
3339 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3340
3341         * gnus.el: No Gnus v0.10 is released.
3342
3343 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3344
3345         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
3346         hooks.
3347         (gnus-update-read-articles): Speed up non-marks-using users.
3348         (gnus-use-marks): Define gnus-use-marks.
3349         (gnus-propagate-marks): Rename variable to something more sensible.
3350
3351 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
3352
3353         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
3354         (gmm-image-load-path-for-library): Fix typos in docstrings.
3355         (gmm-message): Reflow docstring.
3356
3357 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
3358
3359         * mail-source.el (mail-source-set-1, mail-source-bind):
3360         Move auth-source code out of the macro to clean it up and fix bugs.
3361
3362 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
3363
3364         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
3365         by sender if it's equal to user-mail-address, it's likely to be
3366         useless.
3367
3368         * mail-source.el (mail-source-bind): Don't use user or password if they
3369         are not bound.  Unintern them if they are nil.  Don't use server unless
3370         it's bound, and default it to empty string otherwise.
3371
3372 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
3373
3374         * mail-source.el: Load auth-source.el.
3375         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
3376         get user name or password, if auth-sources is set up.
3377
3378         * gnus-registry.el (gnus-registry-split-strategy): New variable for
3379         strategy of splitting with parent.
3380         (gnus-registry-split-fancy-with-parent)
3381         (gnus-registry-post-process-groups): Use it and fix prior
3382         bug (returning a list as the split result).
3383
3384         * auth-source.el (auth-sources): Remove server parameter.
3385         (auth-source-pick, auth-source-user-or-password)
3386         (auth-source-user-or-password-imap)
3387         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3388         (auth-source-user-or-password-sftp)
3389         (auth-source-user-or-password-smtp): Remove server parameter.
3390
3391 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
3392
3393         * smime.el (smime-sign-region, smime-encrypt-region)
3394         (smime-decrypt-region):
3395         Remove redundant calls to `generate-new-buffer-name'.
3396
3397 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
3398
3399         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
3400         Don't use QP for message/rfc822.
3401         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
3402
3403 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3404
3405         * sieve-manage.el (sieve-string-bytes): Remove.
3406         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
3407         correct byte-length only if the process's coding-system is the same as
3408         the one used internally by Emacs to represent strings.
3409
3410 2008-04-22  Juri Linkov  <juri@jurta.org>
3411
3412         * mailcap.el (mailcap-file-default-commands): New function.
3413
3414 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3415
3416         * message.el (message-signature-separator, message-cite-function):
3417         Change custom version.
3418
3419 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
3420
3421         * tls.el (tls-program): Add -ign_eof argument to call the openssl
3422         commands.
3423         (tls-checktrust): Ditto.
3424
3425 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3426
3427         * mm-decode.el (mm-display-external): Make temp file read-only.
3428
3429 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
3430
3431         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
3432         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
3433         `C-c C-f d'.
3434
3435 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
3436
3437         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
3438
3439 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
3440
3441         * gnus.el: Bump version to 0.9.
3442
3443 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
3444
3445         * gnus.el: No Gnus v0.8 is released.
3446
3447 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3448
3449         * mail-source.el (mail-source-value):
3450         Prefer fboundp to functionp so it works with macros as well.
3451
3452 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3453
3454         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3455         Fix last change in case the element is not even a symbol.
3456
3457 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3458
3459         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3460         Prefer fboundp to functionp so it works with macros as well.
3461
3462 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
3463
3464         * auth-source.el: Added docs.
3465         (auth-sources): Modify format to support server.
3466         (auth-source-pick, auth-source-user-or-password)
3467         (auth-source-user-or-password-imap)
3468         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3469         (auth-source-user-or-password-sftp)
3470         (auth-source-user-or-password-smtp): Add server parameter.
3471
3472 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
3473
3474         * gnus-registry.el: Initialize the registry when gnus-registry-install
3475         is t.
3476
3477 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3478
3479         * compface.el (uncompface): Make buffer unibyte.
3480
3481 2008-04-05  Glenn Morris  <rgm@gnu.org>
3482
3483         * gnus-ems.el (mm-disable-multibyte): Autoload it.
3484
3485 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3486
3487         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer): Prefer
3488         mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
3489
3490         * nnheader.el (nnheader-init-server-buffer): Change buffer's
3491         multibyteness after rather than before erasing it.
3492
3493         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
3494         mm-with-multibyte.
3495         (gnus-request-article-this-buffer): Make sure the proper decoding is
3496         used if gnus-original-article-buffer happens to be unibyte.
3497
3498         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
3499         default-enable-multibyte-characters.
3500
3501         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
3502         default-enable-multibyte-characters.
3503
3504         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
3505
3506         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
3507
3508 2008-04-02  Simon Josefsson  <simon@josefsson.org>
3509
3510         * imap.el (imap-enable-exchange-bug-workaround): New variable.
3511         (imap-message-copyuid-1): Use it.
3512         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
3513         J. Williams in
3514         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
3515
3516         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
3517         imap-enable-exchange-bug-workaround.
3518         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
3519
3520 2008-04-01  Simon Josefsson  <simon@josefsson.org>
3521
3522         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
3523         a 100 byte status-checks into a 2-3MB transfer for each group.
3524         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
3525         to enable bug workaround or not.
3526         (nnimap-find-minmax-uid): Only enable workaround conditionally.
3527
3528 2008-03-31  Glenn Morris  <rgm@gnu.org>
3529
3530         * message.el (mml2015-use): Declare for compiler.
3531         (message-info): Require mml2015 when appropriate.
3532
3533 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
3534
3535         * Makefile.in (EMACS_COMP): Quote directory name that might contain
3536         whitespace.
3537
3538 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3539
3540         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
3541         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
3542         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
3543         (nntp-service-to-port): New function.
3544         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
3545         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
3546         (nntp-open-netcat-stream): New function.
3547         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
3548
3549 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
3550
3551         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
3552
3553 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3554
3555         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
3556
3557 2008-03-28  Magnus Henoch  <mange@freemail.hu>
3558
3559         * dns.el (dns-write): Use set-buffer-multibyte.
3560
3561 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
3562
3563         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
3564
3565 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
3566
3567         * message.el (message-signature-separator): Change default.
3568         Improve custom type.
3569         (message-cite-function): Change default to
3570         message-cite-original-without-signature.
3571
3572         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
3573         toggle.
3574
3575         * message.el (message-check-news-body-syntax): Fix signature check.
3576         (message-setup-1): Mark buffer as unmodified _after_ running
3577         message-setup-hook and handling message-alternative-emails.
3578         (message-shorten-references): Be more strict when building list of
3579         valid references to comply with GNKSA.
3580
3581         * gnus-group.el (gnus-read-ephemeral-bug-group)
3582         (gnus-read-ephemeral-debian-bug-group)
3583         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
3584
3585         * message.el (message-info): Don't use booleanp which isn't supported
3586         in Emacs 21 and XEmacs.
3587
3588 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
3589
3590         * gnus-group.el (gnus-gmane-group-download-format): Rename from
3591         gnus-group-gmane-group-download-format.
3592         (gnus-group-read-ephemeral-gmane-group): Rename from
3593         gnus-group-read-ephemeral-gmane-group.
3594         (gnus-read-ephemeral-gmane-group-url): Rename from
3595         gnus-group-read-ephemeral-gmane-group-url.
3596         (gnus-bug-group-download-format-alist): New variable.
3597         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
3598         (gnus-read-ephemeral-emacs-bug-group): New commands.
3599
3600 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
3601
3602         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
3603         (gnus-visible-headers): Improve custom type.
3604
3605 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
3606
3607         * mml.el (mml-menu): Add workarounds for XEmacs.
3608
3609         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
3610         X-Boundary header.
3611
3612         * message.el (message-simplify-recipients): Fix previous commit.
3613
3614 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3615
3616         * mm-util.el (mm-set-buffer-multibyte): New function.
3617         * mm-decode.el (mm-copy-to-buffer): Use it.
3618
3619 2008-03-19  Glenn Morris  <rgm@gnu.org>
3620
3621         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
3622         Accidentally removed in the sync process with Emacs.
3623
3624 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
3625
3626         * message.el (message-alter-recipients-discard-bogus-full-name):
3627         New function.
3628         (message-alter-recipients-function): New variable.
3629         (message-get-reply-headers): Use it.
3630         (message-replace-header): New helper function.
3631         (message-recipients-without-full-name): New variable.
3632         (message-simplify-recipients): New command.
3633
3634         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
3635
3636         * message.el (message-info): Handle EasyPG manual.
3637
3638         * mml.el (mml-menu): Add entry for EasyPG.
3639
3640 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
3641
3642         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
3643         parameter.
3644
3645         * message.el (message-disassociate-draft): Specify drafts group name
3646         fully.
3647
3648 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
3649
3650         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Eliminate
3651         unnecessary duplicates from the match list.
3652
3653 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3654
3655         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
3656
3657         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
3658
3659         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
3660         args of `how-many' of which the XEmacs version doesn't take; declare
3661         Info-index-next as function.
3662
3663 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
3664
3665         * gnus-score.el (gnus-score-headers): Fix handling of
3666         gnus-inhibit-slow-scoring.
3667
3668         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
3669         string.
3670         (gnus-button-url-regexp): Improve handling of parenthesis.
3671         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
3672         (gnus-button-handle-info-keystrokes): Handle index entries.
3673
3674 2008-03-15  Glenn Morris  <rgm@gnu.org>
3675
3676         * parse-time.el (parse-time-string): Simplify.
3677
3678 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3679
3680         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
3681         Incoming* files.
3682
3683 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
3684
3685         * auth-source.el (auth-sources): Renamed from auth-source-choices.
3686         (auth-source-pick): Use it.
3687
3688 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3689
3690         * binhex.el (binhex-decode-region-internal):
3691         * uudecode.el (uudecode-decode-region-internal):
3692         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
3693         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
3694         setting default-enable-multibyte-characters.
3695
3696 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
3697
3698         * auth-source.el (auth-source-protocols)
3699         (auth-source-protocols-customize, auth-source-choices): Added and
3700         modified variable customizations and defaults.
3701         (auth-source-pick, auth-source-user-or-password)
3702         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
3703         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3704         (auth-source-user-or-password-sftp)
3705         (auth-source-user-or-password-smtp): Use new variables and provide an
3706         interface to netrc.el.
3707
3708 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3709
3710         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
3711         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
3712         Make sure the nntp port to specify is a string.
3713
3714 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3715
3716         * nntp.el: Use with-current-buffer.
3717         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
3718         dubious mm-with-unibyte-current-buffer.
3719         (nntp-with-open-group-function): New function extracted from
3720         nntp-with-open-group macro.
3721         (nntp-with-open-group): Use the function, so it's easier to debug.
3722         Add indentation and debugging info.
3723         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Recommend
3724         the use of the netcat alternatives.
3725
3726         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
3727         Avoid mm-string-as-multibyte as well.
3728
3729         * nnweb.el (nnweb-insert-html):
3730         Remove use of nnheader-string-as-multibyte.
3731
3732         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
3733         (nnheader-string-as-multibyte): Remove.
3734
3735         * mm-view.el: Use inhibit-read-only.
3736         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
3737         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
3738         or unibyte-string.
3739
3740         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
3741         (mm-uu-yenc-extract): Use with-current-buffer.
3742
3743         * gnus-soup.el (gnus-soup-send-packet): Don't use
3744         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
3745
3746         * nnmh.el: Use with-current-buffer.
3747         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
3748         mm-string-as-multibyte on the output of mm-encode-coding-string.
3749
3750         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
3751         (nnimap-request-move-article): Use with-current-buffer.
3752
3753         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
3754         inserting the handle-buffer's text, so the implicit multibyte->unibyte
3755         conversion uses string-make-unibyte rather than string-as-unibyte.
3756
3757         * gnus-msg.el: Use with-current-buffer.
3758
3759         * message.el (message-ignored-resent-headers): Add "Delivered-To".
3760
3761 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
3762
3763         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
3764         string for caching if it is 'PIN.
3765
3766 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3767
3768         * lpath.el: Consider the case without Emacs/W3.
3769
3770 2008-03-08  Glenn Morris  <rgm@gnu.org>
3771
3772         * time-date.el (date-to-time, time-subtract, time-add)
3773         (safe-date-to-time): Doc fixes.
3774
3775 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
3776
3777         * mail-source.el (mail-source-delete-old-incoming-confirm):
3778         Change default to nil.
3779         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
3780
3781 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3782
3783         * lpath.el: Rearrange.
3784
3785         * gnus-art.el (gnus-narrow-to-page): Position point properly.
3786         (gnus-article-goto-prev-page): Work for articles having ^L's.
3787
3788         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
3789
3790         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
3791
3792 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
3793
3794         * gnus-bookmark.el: Adjust for renames in bookmark.el.
3795         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
3796         (gnus-bookmark-jump): Adjust some variable names.
3797
3798 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
3799
3800         * auth-source.el: New package.
3801         (auth-source-choices): Add customization entry point variable.
3802
3803         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
3804         bug.
3805
3806 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
3807
3808         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
3809         (gnus-registry-initialize, gnus-registry-install-p): Use it.
3810         (gnus-registry-install-shortcuts): Rename from
3811         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
3812         the `gnus-registry-mark-map' keymap dynamically from
3813         `gnus-registry-marks'.  The generated functions update the summary line
3814         when a registry mark is added or deleted, and will call
3815         `gnus-registry-install-p' (see the comments in the code).
3816         (gnus-registry-user-format-function-M): Use concat intelligently.
3817
3818         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
3819         the registry mark functions.
3820
3821 2008-03-05  Glenn Morris  <rgm@gnu.org>
3822
3823         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
3824         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
3825         gnus-art.
3826         (top-level): No need to load own source when compiling.
3827
3828 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
3829
3830         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
3831         Suggested by <chris.anderton@zetnet.co.uk>.
3832
3833 2008-03-04  Glenn Morris  <rgm@gnu.org>
3834
3835         * gnus-sum.el (top-level): No need to require gnus when compiling,
3836         since unconditionally required near start of file.
3837         (gnus-summary-display-while-building): Move definition before use.
3838
3839 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
3840
3841         * gnus-registry.el (gnus-registry-user-format-function-M): Add
3842         formatting function.
3843
3844 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
3845
3846         * gnus-registry.el (gnus-registry-marks): Changed format to be nicer
3847         with plists.
3848         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
3849         Use new format.
3850
3851 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3852
3853         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
3854         `where-is-internal' that returns a range of key sequences.
3855
3856 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3857
3858         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
3859
3860         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
3861         (gnus-summary-jump-to-group): Consider windows on other displayed
3862         frames as well.  Similar changes might be needed elsewhere, but that's
3863         the one I've bumped into during my use.
3864
3865         * nndoc.el (nndoc-oe-dbx-type-p):
3866         * gnus-msg.el (gnus-debug):
3867         * gnus-group.el (gnus-update-group-mark-positions):
3868         Use mm-string-to-multibyte.
3869
3870 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
3871
3872         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
3873         doesn't handle NotDashEscaped.
3874
3875         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
3876         (mml-dnd-attach-options): Fix typo in custom choice.
3877
3878         * gnus-group.el (gnus-group-read-ephemeral-gmane-group): Change
3879         nndoc-article-type to mbox.
3880         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
3881
3882         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
3883         to nil, instead of html2text.
3884
3885         * imap.el (imap-debug): Add `imap-ping-server'.
3886
3887         * gnus-bookmark.el: Add FIXMEs.
3888
3889         * message.el (message-form-letter-separator)
3890         (message-send-form-letter-delay): New variables.
3891         (message-send-form-letter): Use them.  New command to send form
3892         letters.  Requested by Uwe Siart.
3893         (message-send-mail-function): Doc fix.  Add "Other" custom option.
3894
3895 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3896
3897         * Update copyright years.
3898
3899 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3900
3901         Sync from EMACS_22_BASE.
3902
3903         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
3904
3905 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
3906
3907         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
3908         empty author.
3909
3910 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
3911
3912         * gnus-registry.el (gnus-registry-marks): Add variable for
3913         customization of marks and their appearance.
3914         (gnus-registry-read-mark): Use it.
3915         (gnus-registry-do-marks): Add utility function to loop through
3916         `gnus-registry-marks'.
3917         (gnus-registry-install-shortcuts-and-menus): Add function to install
3918         shortcuts and menus.
3919         (gnus-registry-initialize): Use it.
3920         (gnus-registry-default-mark): Clarify documentation.
3921
3922 2008-02-29  Glenn Morris  <rgm@gnu.org>
3923
3924         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
3925         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
3926         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
3927         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
3928         Change defcustom :version from 23.0 to 23.1.
3929
3930 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
3931
3932         * gnus-registry.el (gnus-registry-follow-group-p)
3933         (gnus-registry-post-process-groups): Add functions to aid registry
3934         splitting and improve logging.  Clarify behavior in function
3935         documentation.
3936         (gnus-registry-split-fancy-with-parent): Use them.
3937
3938 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3939
3940         * gnus-art.el: Use with-current-buffer.
3941
3942 2008-02-27  David Engster  <dengste@eml.cc>
3943
3944         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
3945         Express real group name in the response.
3946
3947 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3948
3949         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
3950         (nnmairix-last-server, nnmairix-current-server): Defvar them.
3951         (nnmairix-goto-original-article): Defvar gnus-registry-install and
3952         autoload gnus-registry-fetch-group when compiling.
3953         (nnmairix-request-group-with-article-number-correction): Remove
3954         unreferenced argument passed to nnmairix-call-backend.
3955
3956 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
3957
3958         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
3959         (mm-uu-extract): Improve face for low color ttys.  Reported by Sascha
3960         Wilde.
3961
3962 2008-02-27  Glenn Morris  <rgm@gnu.org>
3963
3964         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
3965         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
3966         variables to defconsts.  Convert comments to doc-strings.
3967         (nnmairix-last-server, nnmairix-current-server): Convert from free
3968         variables to defvars.  Convert comments to doc-strings.
3969         (gnus-registry-fetch-group): Autoload.
3970         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
3971         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
3972         (nnmairix-widget-build-editable-fields): Use car cddr rather than
3973         caddr.
3974         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
3975         nnmairix-request-group-with-article-number-correction call.
3976         (nnmairix-fast, nnmairix-group): New, less general names, for free
3977         variables passed from nnmairix-request-group to
3978         nnmairix-request-group-with-article-number-correction.  Declare.
3979         (nnmairix-request-group-with-article-number-correction):
3980         Use nnmairix-fast, nnmairix-group rather than fast, group.
3981
3982 2008-02-26  David Engster  <dengste@eml.cc>
3983
3984         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
3985         version 0.5.
3986
3987 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
3988
3989         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
3990         instead of making an extra function call.  Don't add the current group
3991         to articles only when they have the group.  Use
3992         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
3993         Reported by David <de_bb@arcor.de>.
3994
3995 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
3996
3997         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
3998         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
3999
4000 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
4001
4002         * mail-source.el (mail-source-delete-incoming): Change default.
4003         Supplement doc string.
4004
4005         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
4006
4007 2008-02-14  Glenn Morris  <rgm@gnu.org>
4008
4009         * time-date.el (format-seconds): New function.
4010
4011 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
4012
4013         * nnmail.el (nnmail-message-id-cache-file): Derive from
4014         `gnus-home-directory'.
4015
4016 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
4017
4018         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
4019         Document negative prefix.
4020
4021         * gnus-group.el (gnus-group-read-group): Document negative prefix.
4022
4023 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4024
4025         * message.el (message-unsent-separator): Add the Exim bounce
4026         separator.
4027
4028 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
4029
4030         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
4031         list.
4032         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
4033         recipient/signer list.
4034
4035 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4036
4037         * Makefile.in (datarootdir): Define.
4038         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
4039         name that might contain whitespace.
4040
4041 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
4042
4043         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
4044         fbound (Emacs 23 unicode), signal an error.
4045
4046 2008-02-08  Glenn Morris  <rgm@gnu.org>
4047
4048         * gnus-art.el (pgg-display-output-buffer): Declare as function.
4049
4050 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
4051
4052         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
4053         ports to the calls to `netrc-machine-user-or-password' in addition to
4054         "imap" and "imaps".
4055
4056 2008-02-01  Zhang Wei  <id.brep@gmail.com>
4057
4058         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
4059
4060         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
4061
4062 2008-02-01  Kenichi Handa  <handa@m17n.org>
4063
4064         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
4065         rfc2104-hexstring-to-bitstring and changed to return a byte list.
4066         (rfc2104-hash): Convert the result of concat to unibyte string.
4067
4068 2008-02-01  Dave Love  <fx@gnu.org>
4069
4070         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
4071         coding-system-for-read.
4072         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
4073
4074 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
4075
4076         * gnus.el (gnus-group-startup-message): Add `find-image' call before
4077         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
4078         <hanche@math.ntnu.no>.
4079
4080 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4081
4082         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
4083
4084         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
4085
4086 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
4087
4088         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
4089         * message.el (message-beginning-of-line): Use featurep instead of bound
4090         tests in order to resolve conditionals at compile time.
4091
4092 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
4093
4094         * mail-source.el (mail-sources): Add `group' choice.
4095
4096         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
4097         parameter `in-group' to control into which group the articles go.
4098         Add treatment of `group' mail-source.
4099
4100 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4101
4102         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
4103
4104         * mm-decode.el (mm-dissect-buffer): Decode description.
4105
4106         * mml.el (mml-to-mime): Encode message header first.
4107
4108 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4109
4110         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
4111         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
4112
4113         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
4114         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
4115
4116 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
4117
4118         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
4119
4120 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4121
4122         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
4123         prefix keys.
4124         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
4125         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
4126         gnus-xmas.el.
4127
4128         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
4129         (gnus-xmas-article-describe-bindings): New function.
4130         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
4131         gnus-xmas-article-describe-bindings.
4132
4133         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
4134
4135 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
4136
4137         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
4138         Add new variables for article mark management.
4139         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
4140         list of extra data entries which, when present, will indicate that the
4141         article ID should not be trimmed from the registry.
4142         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
4143         functions.
4144         (gnus-registry-read-mark): New function to read a mark name from the
4145         user.
4146         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
4147         (gnus-registry-set-article-mark-internal): New functions to add and
4148         remove marks.
4149         (gnus-registry-get-article-marks): New function to show the marks for
4150         an article, or retrieve them for further use.
4151
4152 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4153
4154         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
4155         keys when no argument is given.
4156
4157 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
4158
4159         * imap.el (imap-ping-server): New variable.
4160         (imap-opened): On add extra ping if imap-ping-server is non-nil.
4161         (imap-ping-server): Minor doc string fixes.
4162
4163 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
4164
4165         * imap.el (imap-ping-server): New function.
4166         (imap-opened): Call imap-ping-server.
4167
4168 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
4169
4170         * gnus-sum.el (gnus-article-sort-by-random)
4171         (gnus-thread-sort-by-random): Fix doc strings.  Reported by
4172         jidanni@jidanni.org.
4173
4174 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4175
4176         * gnus-art.el (gnus-article-describe-bindings): New function.
4177         (gnus-article-read-summary-keys): Use it.
4178         (gnus-article-mode-map): Bind `C-h b' to it.
4179
4180 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4181
4182         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
4183         XEmacs.
4184         (gnus-article-describe-key, gnus-article-describe-key-briefly): Protect
4185         against non-character events.
4186
4187         * lpath.el: Fbind map-keymap for Emacs 21.
4188
4189 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
4190
4191         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url): New
4192         command.
4193         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
4194         instead of END.  Change name of the temp file.
4195         (gnus-group-gmane-group-download-format): Add doc string.  Make it
4196         customizable.
4197
4198 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4199
4200         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
4201         bind `S W' to gnus-article-wide-reply-with-original; set default
4202         binding to gnus-article-read-summary-send-keys.
4203         (gnus-article-read-summary-keys): Fix the order of keys; display
4204         continuation keys correctly in the echo area; describe bindings
4205         correctly when keys end with `C-h'.
4206         (gnus-article-read-summary-send-keys): New function.
4207         (gnus-article-describe-key, gnus-article-describe-key-briefly): Work
4208         for gnus-article-read-summary-send-keys; display continuation keys
4209         correctly in the echo area.
4210         (gnus-article-reply-with-original): Ignore prefix argument.
4211         (gnus-article-wide-reply-with-original): New function.
4212
4213         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
4214         Emacs 21.
4215
4216 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
4217
4218         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
4219         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
4220
4221 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
4222
4223         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
4224         (gnus-group-read-ephemeral-gmane-group): New command.
4225
4226 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
4227
4228         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
4229
4230 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
4231
4232         * message.el (message-send-mail-function): Increase custom version.
4233
4234         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
4235         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
4236
4237 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
4238
4239         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
4240         for the cases where imap-authenticate is called with a nil buffer
4241         parameter.
4242
4243 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4244
4245         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
4246         html parts correctly; support forwarded messages.
4247         (gnus-article-browse-html-article): Remove work buffers.
4248
4249         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
4250         compiling.
4251         (netrc-bound-and-true-p): New macro.
4252         (netrc-parse): Use it instead of bound-and-true-p that is not available
4253         in XEmacs 21.4.
4254
4255 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
4256
4257         * gnus-registry.el (gnus-registry-mark-article)
4258         (gnus-registry-article-marks): Add functionality to mark articles
4259         through the Gnus registry.
4260
4261         * encrypt.el: Clarify documentation for the new pgg method.
4262         (encrypt-file-alist): Add PGG option.
4263         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
4264         functionality.  Abstract password key and messaging to external
4265         functions.
4266         (encrypt-password-key, encrypt-get-passphrase-if-needed)
4267         (encrypt-message-method-and-cipher): Add new convenience external
4268         functions.
4269         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
4270         (encrypt-pgg-process-buffer): Add PGG functionality glue.
4271
4272         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
4273         (netrc-parse): Use encrypt-file-alist to determine if
4274         encrypt-find-model or encrypt-insert-file-contents should be used.
4275
4276         * encrypt.el: Clarify documentation.  Load password-cache or
4277         password, whichever one is found first, instead of autoloading.
4278
4279 2007-12-19  Glenn Morris  <rgm@gnu.org>
4280
4281         * mml.el (message-options-set, message-narrow-to-head)
4282         (message-in-body-p, message-mail-p, message-encode-message-body):
4283         Autoload.
4284         (message-remove-header, message-narrow-to-headers-or-head)
4285         (message-subscribed-p, message-make-mail-followup-to)
4286         (message-position-on-field, message-news-p)
4287         (message-options-set-recipient, message-generate-headers)
4288         (message-sort-headers): Declare as functions.
4289
4290 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
4291
4292         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
4293         convention in doc string.
4294
4295 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4296
4297         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
4298         title to html parts.
4299         (gnus-article-browse-html-article): Pass message header to it.
4300
4301         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
4302
4303 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
4304
4305         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
4306         or password compatible with XEmacs.
4307
4308 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
4309
4310         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
4311         format document.
4312         (gnus-mime-delete-part): Don't write description line if empty.
4313         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
4314
4315 2007-12-14  Johan BockgÃ¥rd  <bojohan@gnu.org>
4316
4317         * gnus-sum.el (gnus-summary-mark-unread-as-read)
4318         (gnus-summary-mark-read-and-unread-as-read)
4319         (gnus-summary-mark-current-read-and-unread-as-read)
4320         (gnus-summary-mark-unread-as-ticked): Doc fix.
4321         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
4322
4323 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4324
4325         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.  Reported by
4326         Christoph Conrad <christoph.conrad@gmx.de>.
4327
4328 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4329
4330         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
4331         yes-or-no-p.
4332
4333 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4334
4335         * mm-decode.el (mm-add-meta-html-tag): New function.
4336         (mm-save-part-to-file, mm-pipe-part): Use it.
4337
4338         * gnus-art.el (gnus-article-browse-delete-temp-files): Use
4339         gnus-y-or-n-p instead of y-or-n-p.
4340         (gnus-article-browse-html-parts): Work with message/external-body; use
4341         mm-add-meta-html-tag.
4342
4343 2007-12-11  Glenn Morris  <rgm@gnu.org>
4344
4345         * gnus-cache.el: Require gnus-sum not just when compiling.
4346
4347         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
4348
4349         * gnus-int.el (gnus-server-opened, gnus-status-message): Move
4350         definitions before use.
4351
4352         * mm-decode.el: Require gnus-util.
4353         (mm-remove-part): Only call delete-annotation on XEmacs.
4354
4355         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
4356
4357         * nnmail.el: Require gnus-int.
4358
4359         * spam.el: Move `require's before `eval-when-compile's.
4360
4361         * gnus-ems.el (gnus-alive-p):
4362         * gnus-fun.el (message-goto-eoh):
4363         * gnus-util.el (gnus-group-name-decode):
4364         * mail-source.el (gnus-compress-sequence):
4365         * message.el (Info-goto-node, format-spec):
4366         * mm-bodies.el (message-options-get):
4367         * mm-decode.el (mm-view-pkcs7):
4368         * mm-util.el (gmm-write-region):
4369         * mml-smime.el (mml-compute-boundary)
4370         (gnus-completing-read-with-default):
4371         * mml.el (widget-button-press, gnus-make-hashtable):
4372         * mml1991.el (mm-decode-content-transfer-encoding)
4373         (mm-encode-content-transfer-encoding)
4374         (message-options-get, message-options-set):
4375         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
4376         * nnfolder.el (gnus-request-group):
4377         * nnheader.el (ietf-drums-unfold-fws):
4378         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
4379         * smime.el (gnus-run-mode-hooks):
4380         * spam-stat.el (gnus-message): Autoload.
4381
4382         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
4383         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
4384         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
4385         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
4386         Add declare-function compatibility definition.
4387
4388         * gnus-cache.el (nnvirtual-find-group-art):
4389         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
4390         (gnus-add-image, gnus-add-wash-type):
4391         * gnus-group.el (nnkiboze-score-file):
4392         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
4393         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
4394         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
4395         (message-tokenize-header, gnus-get-buffer-create)
4396         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
4397         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
4398         * gnus.el (gnus-group-decoded-name):
4399         * mail-source.el (imap-capability):
4400         * mm-bodies.el (message-options-set):
4401         * mm-decode.el (gnus-configure-windows):
4402         * mm-extern.el (message-goto-body):
4403         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
4404         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
4405         (epg-sub-key-validity, message-options-set):
4406         * mml.el (widget-event-point, gnus-configure-windows):
4407         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
4408         * mml2015.el (epg-check-configuration, epg-configuration)
4409         (message-options-set):
4410         * nndb.el (nndb-request-article):
4411         * nnfolder.el (gnus-request-create-group):
4412         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
4413         * nnmaildir.el (gnus-group-mark-article-read):
4414         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
4415         * rfc1843.el (message-fetch-field):
4416         * spam.el (gnus-extract-address-components):
4417         Declare as functions.
4418
4419 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4420
4421         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
4422
4423         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
4424
4425         * lpath.el: Fbind run-mode-hooks for Emacs 21;
4426         bind show-trailing-whitespace for XEmacs.
4427
4428 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
4429
4430         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
4431         new no-op macro for backward compatibility.
4432
4433         * imap.el (imap-string-to-integer): New function.
4434
4435 2007-12-09  Glenn Morris  <rgm@gnu.org>
4436
4437         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
4438
4439         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
4440         * message.el, mm-view.el, sieve-manage.el, smime.el:
4441         Add declare-function compatibility definition.
4442
4443         * gnus-art.el (w3-region, w3m-region, Info-menu):
4444         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
4445         * gnus-sum.el (gnus-get-predicate):
4446         * gnus-util.el (mm-append-to-file, w32-focus-frame):
4447         * message.el (mail-abbrev-in-expansion-header-p):
4448         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
4449         (w3m-detect-meta-charset, w3m-region):
4450         * sieve-manage.el (password-read, password-cache-add)
4451         (password-cache-remove):
4452         * smime.el (password-read-and-add): Declare as functions.
4453
4454 2007-12-08  David Kastrup  <dak@gnu.org>
4455
4456         * gnus-sum.el (gnus-summary-simplify-subject-query):
4457         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
4458         `message'.
4459
4460 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4461
4462         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
4463         it to bind idna-program, installation-directory, defined-colors, and
4464         face-attribute for XEmacs of the version that compiles defcustom forms.
4465
4466 2007-12-07  Glenn Morris  <rgm@gnu.org>
4467
4468         * gnus-art.el (article-make-date-line): Revert previous change.
4469
4470 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
4471
4472         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
4473
4474 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
4475
4476         * nnmaildir.el (nnmaildir-request-update-info): Improved performance.
4477         Call gnus-add-to-range ranges only once with a prepared article-list.
4478
4479 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
4480
4481         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
4482         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
4483         group names with backslashes.  Reported by Tassilo Horn
4484         <tassilo@member.fsf.org>.
4485
4486 2007-12-06  Deepak Goel  <deego3@gmail.com>
4487
4488         * gnus-art.el (article-make-date-line):
4489         * gnus-start.el (gnus-load):
4490         * pop3.el (pop3-read-response): Fix buggy call to `error'.
4491
4492 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4493
4494         * gnus-art.el (gnus-use-idna)
4495         * gnus-start.el (gnus-site-init-file)
4496         * message.el (message-use-idna)
4497         * mm-uu.el (mm-uu-hide-markers)
4498         * smiley.el (smiley-style): Revert changes that suppress warnings.
4499
4500 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4501
4502         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
4503         specify charset to html source.  Reported by Christoph Conrad
4504         <christoph.conrad@gmx.de>.
4505
4506 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4507
4508         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
4509         idna-program in order to suppress byte compile warning issued by XEmacs
4510         that came to byte compile the default value section of defcustom forms
4511         recently.
4512
4513         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
4514         value of installation-directory.
4515
4516         * message.el (message-use-idna): Don't directly refer to the value of
4517         idna-program.
4518
4519         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
4520
4521         * smiley.el (smiley-style): Don't directly call face-attribute.
4522
4523 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
4524
4525         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
4526
4527         * gnus-dired.el: Reduce Gnus dependencies.
4528         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml): Don't
4529         require.  Use autoloads instead.
4530         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
4531         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
4532         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
4533         (gnus-dired-mode): Adjust doc string.
4534         (gnus-dired-mail-mode): New variable.
4535         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
4536         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
4537         (gnus-dired-mail-buffers): New function.  Return mail or message
4538         composition buffers.
4539         (gnus-dired-attach): Use it.
4540         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
4541         NO-DECODE.
4542         (gnus-dired-print): Use `gnus-print-buffer' depending on
4543         `gnus-dired-mail-mode'.
4544
4545 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
4546
4547         * rfc2047.el (rfc2047-encoded-word-regexp)
4548         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
4549         explaining what regexp patterns are for.
4550
4551 2007-12-04  Glenn Morris  <rgm@gnu.org>
4552
4553         * password.el: Move to password-cache.el.
4554
4555         * mml1991.el (password-read, password-cache-add, password-cache-remove):
4556         * mml2015.el (password-read, password-cache-add, password-cache-remove):
4557         * mml-smime.el (password-read, password-cache-add)
4558         (password-cache-remove):
4559         No need to autoload, since mml-sec requires password.
4560
4561         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
4562         * message.el (gnus-extract-address-components):
4563         * mml-smime.el (gnus-extract-address-components): Define for compiler.
4564
4565         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
4566         password.
4567
4568 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
4569
4570         * mailcap.el: Reduce dependencies.
4571         (mail-header-parse-content-type): Autoload.
4572         (mailcap-delete-duplicates): New alias.
4573         (mailcap-mime-info): Add optional argument NO-DECODE.
4574         (mailcap-mime-types): Use mailcap-delete-duplicates.
4575
4576         * message.el (message-ignored-supersedes-headers): Add "X-ID".
4577
4578 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
4579
4580         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
4581         (imap-parse-status): Upcase status-att for servers that sends them
4582         lower-case (e.g., MS Exchange 2007).
4583
4584 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4585
4586         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
4587         function.
4588
4589         * gnus-uu.el (gnus-uu-decode-yenc): New command.
4590         (gnus-uu-yenc-article): New function.
4591
4592         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
4593
4594         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original
4595         buffer.
4596
4597 2007-12-02  Glenn Morris  <rgm@gnu.org>
4598
4599         * binhex.el (binhex): New custom group.
4600         (binhex-decoder-program, binhex-decoder-switches)
4601         (binhex-use-external): Move to the binhex custom group.
4602
4603         * uudecode.el (uudecode): New custom group.
4604         (uudecode-decoder-program, uudecode-decoder-switches)
4605         (uudecode-use-external): Move to the uudecode custom group.
4606
4607         * netrc.el (top-level): Don't load `encrypt' features.
4608         (netrc-parse): Don't use encrypt.
4609         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
4610
4611         * encrypt.el: Remove file.
4612
4613 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
4614
4615         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
4616         matches on patches.
4617
4618         * gnus-art.el (gnus-article-browse-html-article): Mention
4619         `mm-text-html-renderer' in the doc string.
4620
4621         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
4622         string.  Add comments.
4623
4624         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
4625         if rhs is ASCII.
4626
4627 2007-12-01  Glenn Morris  <rgm@gnu.org>
4628
4629         * mail-source.el (top-level): Require format-spec before
4630         eval-when-compile.
4631
4632 2007-11-30  Glenn Morris  <rgm@gnu.org>
4633
4634         * encrypt.el: Require password, rather than autoloading password-read.
4635
4636 2007-11-29  Glenn Morris  <rgm@gnu.org>
4637
4638         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
4639         (sasl-make-client, sasl-next-step, sasl-step-data)
4640         (sasl-step-set-data): Declare as functions.
4641
4642 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
4643
4644         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
4645
4646 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
4647
4648         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
4649         certs should be verified and what is to be done in the event of a
4650         verification failure.
4651
4652         * gnus.el (gnus-method-to-server): Add an optional parameter so the
4653         caller can indicate whether the cache should be disregarded for this
4654         call.  This way the result of the call is reproducible at all times and
4655         can be considered a canonical server name for the supplied method.
4656         (gnus-agent-method-p): Canonicalize server names by pushing their
4657         method through `gnus-method-to-server' using the no-cache argument.
4658
4659         * gnus-srvr.el (gnus-server-insert-server-line): Call
4660         `gnus-method-to-server' with `no-cache' argument.
4661
4662         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
4663         gnus-agent-possibly-synchronize-flags as this should be called when the
4664         server is actually being opened.
4665         (gnus-agent-possibly-synchronize-flags)
4666         (gnus-agent-possibly-synchronize-flags-server): Move check for the
4667         flags file of an agentized server to the latter function.
4668
4669         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
4670         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
4671         after a connection has been established successfully.
4672
4673 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4674
4675         * gnus-art.el (article-display-face): Force to display face if called
4676         interactively; check if gnus-article-x-face-too-ugly matches author.
4677         (article-display-x-face): Display face even if From header is missing
4678         as article-display-face does.
4679
4680 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
4681
4682         * hashcash.el (message-narrow-to-headers-or-head)
4683         (message-fetch-field, message-goto-eoh)
4684         (message-narrow-to-headers): Declare as functions.
4685
4686 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
4687
4688         * mail-source.el (mail-sources): Default to fetch from file for
4689         compatibility with default of nnmail-spool-file.
4690
4691 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4692
4693         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
4694         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
4695         to look for encoded word that should be encoded again.
4696         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
4697         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
4698         encoding pattern.
4699         (rfc2047-decode-region): Switch strict regexp and loose one according
4700         to rfc2047-allow-irregular-q-encoded-words.
4701
4702 2007-11-25  Romain Francoise  <romain@orebokech.com>
4703
4704         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
4705
4706 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
4707
4708         * tls.el (tls-program): Provide more custom choices from
4709         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
4710         (tls-process-connection-type, tls-success): Remove "*" in doc string.
4711
4712 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4713
4714         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
4715         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
4716
4717         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
4718         `nnmail-spool-file'.
4719
4720         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
4721         `nnmail-spool-file'.
4722
4723         * gnus-move.el (gnus-change-server): Ditto.
4724
4725         * gnus-kill.el (gnus-batch-score): Ditto.
4726
4727         * gnus-cache.el (gnus-jog-cache): Ditto.
4728
4729         * gnus-msg.el (gnus-summary-reply):
4730         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
4731
4732 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4733
4734         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
4735         version.  Minor improvement to doc strings.
4736         (tls-program): Add comment.
4737
4738 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
4739
4740         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
4741         (tls-checktrust): New variable.  Check if GNU TLS complained about a
4742         mismatch between the hostname provided in the certificate and the name
4743         of the host connnecting to.
4744         (open-tls-stream): Use them.  Check certificates against trusted root
4745         certificates.
4746
4747 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4748
4749         * gnus-cache.el (gnus-cache-generate-nov-databases):
4750         Use nnml-generate-nov-databases-directory instead of
4751         nnml-generate-nov-databases-1.
4752
4753 2007-11-24  Glenn Morris  <rgm@gnu.org>
4754
4755         * message.el (message-tool-bar-retro): Update for rename
4756         mail_send.xpm->mail-send.xpm.
4757
4758 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
4759
4760         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
4761         `smime-ldap-search' for Emacs 22 and up.
4762
4763 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4764
4765         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
4766
4767         * message.el (message-send-mail-function): Fix error convention.
4768         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
4769         (message-widen-reply, message-send-mail, message-talkative-question)
4770         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
4771         (message-clone-locals, message-send-news): Use with-current-buffer.
4772         (message-insert-or-toggle-importance): Remove unused var `valid'.
4773         (message-make-references): Remove unused var `new-references'.
4774         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
4775
4776 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
4777
4778         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
4779         (spam-split-symbolic-return-positive): Reflow docstring.
4780         (spam-backends, spam-summary-exit-behavior)
4781         (spam-mark-ham-unread-before-move-from-spam-group)
4782         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
4783         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
4784         (spam-clear-cache, spam-backend-check, spam-install-backend)
4785         (spam-install-statistical-backend, spam-list-of-processors)
4786         (spam-group-processor-p, spam-split, spam-bogofilter-score)
4787         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
4788         (spam-check-crm114, spam-initialize, spam-unload-hook):
4789         Fix typos in docstrings.
4790
4791 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4792
4793         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
4794         been checked if they have never been read and those group levels are
4795         higher than the one that a user specified.
4796
4797 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4798
4799         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
4800         foreign groups unless a group level is specified by a user.
4801         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
4802
4803 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
4804
4805         * message.el (message-send-mail-function): Require sendmail.
4806
4807 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
4808
4809         * message.el (message-send-mail-function): Check for smtpmail too.
4810
4811         * utf7.el (utf7-encode, utf7-decode): Use coding system
4812         `utf-7'/`utf-7-imap' from utf-7.el' if available.
4813
4814         * message.el (message-send-mail-function): New function.
4815         (message-send-mail-function): Set default using
4816         message-send-mail-function.  Adjust doc string.
4817         (message-send-mail-with-mailclient): New function.
4818
4819 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
4820
4821         * smime.el (from):
4822         * rfc2047.el (message-posting-charset):
4823         * qp.el (mm-use-ultra-safe-encoding):
4824         * pop3.el (parse-time-months):
4825         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
4826         * nnml.el (files):
4827         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
4828         (jka-compr-compression-info-list, ange-ftp-path-format)
4829         (efs-path-regexp):
4830         * nndiary.el (files):
4831         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
4832         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
4833         (epg-digest-algorithm-alist, inhibit-redisplay)
4834         (password-cache-expiry):
4835         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
4836         (pgg-output-buffer, password-cache-expiry):
4837         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
4838         (efs-path-regexp):
4839         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
4840         (inhibit-redisplay):
4841         * mm-uu.el (file-name, start-point, end-point, entry)
4842         (gnus-newsgroup-name, gnus-newsgroup-charset):
4843         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
4844         (latin-unity-ucs-list):
4845         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
4846         (mm-uu-binhex-decode-function):
4847         * message.el (gnus-message-group-art, gnus-list-identifiers)
4848         (rmail-enable-mime-composing, gnus-local-organization)
4849         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
4850         (gnus-read-active-file, facemenu-add-face-function)
4851         (facemenu-remove-face-function, gnus-article-decoded-p)
4852         (tool-bar-mode):
4853         * mail-source.el (display-time-mail-function):
4854         * gnus-util.el (nnmail-pathname-coding-system)
4855         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
4856         (gnus-original-article-buffer, gnus-user-agent)
4857         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
4858         (xemacs-codename, sxemacs-codename, emacs-program-version):
4859         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
4860         * gnus-start.el (gnus-agent-covered-methods)
4861         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
4862         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
4863         (gnus-newsgroup-headers, gnus-group-list-mode)
4864         (gnus-group-mark-positions, gnus-newsgroup-data)
4865         (gnus-newsgroup-unreads, nnoo-state-alist)
4866         (gnus-current-select-method, mail-sources)
4867         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
4868         (nnmail-spool-file, gnus-cache-active-hashtb):
4869         * gnus-mh.el (mh-lib-progs):
4870         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
4871         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
4872         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
4873         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
4874         (gnus-group-buffer):
4875         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
4876         (font-lock-set-defaults):
4877         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
4878         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
4879         (gnus-summary-post-menu, total-parts, type, condition, length):
4880         * gnus-agent.el (gnus-agent-read-agentview):
4881         * flow-fill.el (show-trailing-whitespace):
4882         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
4883         eval-and-compile wrappers for byte compiler pacifiers.
4884
4885         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
4886         (mm-display-inline-fontify): Check for featurep 'xemacs not
4887         extent-list.
4888
4889         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
4890         itimer-list.
4891         (mm-create-image-xemacs): Only do something for XEmacs.
4892         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
4893
4894         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
4895
4896         * gnus-registry.el (gnus-adaptive-word-syntax-table):
4897         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
4898
4899 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
4900
4901         * nnimap.el (nnimap-split-download-body):
4902         * gnus-demon.el (gnus-demon):
4903         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
4904
4905 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4906
4907         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer): New
4908         macros.
4909         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
4910         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
4911         copy data from unibyte buffer to multibyte current buffer.
4912         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
4913         to copy data from unibyte current buffer to multibyte buffer.
4914         (nntp-make-process-buffer): Make process buffer unibyte.
4915
4916         * pop3.el (pop3-open-server): Fix typo in Lisp code.
4917
4918 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
4919
4920         * pop3.el (pop3-open-server): Accept and process data more robustly at
4921         connexion start to avoid spurious "POP SSL connexion failed" errors.
4922
4923 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4924
4925         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
4926         read group names.
4927
4928 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
4929
4930         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
4931
4932 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4933
4934         * nnmail.el (nnmail-parse-active): Make group names unibyte.
4935         (nnmail-save-active): Use a unibyte buffer when saving active file,
4936         which may contain non-ASCII group names.
4937
4938         * nnml.el (nnml-request-group): Decode group names in messages.
4939
4940 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
4941
4942         * message.el (message-citation-line-function)
4943         (message-insert-formatted-citation-line): Fix spelling of
4944         `message-insert-formated-citation-line'.
4945
4946 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
4947
4948         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
4949
4950 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4951
4952         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
4953         nnmail-pathname-coding-system.
4954
4955         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
4956         that a user enters; decode group names in messages.
4957
4958         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
4959
4960 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
4961
4962         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
4963
4964         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
4965
4966         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
4967         risky local variable.
4968
4969         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
4970
4971 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
4972
4973         * encrypt.el: Improve documentation to fix function name typo.
4974         Reported by Daiki Ueno <ueno@unixuser.org>.
4975
4976 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4977
4978         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
4979         even if the point is not in the last page of an article.
4980         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
4981         back to the previous page.
4982
4983 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
4984
4985         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
4986
4987 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4988
4989         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
4990
4991 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4992
4993         * message.el (message-check-news-body-syntax): Avoid
4994         mm-string-as-multibyte.
4995         (message-hide-headers): Don't assume (point-min)==1.
4996
4997 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
4998
4999         * message.el (message-remove-blank-cited-lines): Fix if remove is
5000         given.
5001         (message-bogus-address-regexp): New variable.
5002         (message-bogus-recipient-p): New function.
5003         (message-check-recipients): New command.
5004         (message-syntax-checks): Add `bogus-recipient'.
5005         (message-fix-before-sending): Add `bogus-recipient'.
5006
5007         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
5008         (gnus-treat-body-boundary): Don't test window-system.
5009
5010 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
5011
5012         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
5013
5014 2007-10-28  Miles Bader  <miles@gnu.org>
5015
5016         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
5017         at compile-time too.
5018
5019 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
5020
5021         * gnus-msg.el (gnus-message-setup-hook): Add
5022         `message-remove-blank-cited-lines' to options.
5023
5024 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
5025
5026         * message.el (message-remove-blank-cited-lines): New function.
5027         Suggested by Karl Plästerer.
5028
5029 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5030
5031         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
5032         mapc.
5033
5034         * imap.el (imap-open): Replace mapcar called for effect with mapc.
5035         (top-level): Use mapc to set functions to be traced for debugging.
5036
5037         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
5038         called for effect with while loop.
5039
5040         * message.el (message-talkative-question): Replace mapcar called for
5041         effect with mapc.
5042
5043         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
5044         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
5045         called for effect with dolist.
5046
5047         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
5048
5049         * nndiary.el: Use dolist instead of mapcar to add diary headers to
5050         gnus-extra-headers and nnmail-extra-headers.
5051
5052         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
5053         called for effect with dolist.
5054         (top-level): Use mapc to set functions to be traced for debugging.
5055
5056         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
5057         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
5058         dolist.
5059
5060         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
5061         Replace mapcar called for effect with mapc.
5062         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
5063         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
5064         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
5065         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
5066
5067         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
5068         remove-if that's a cl function.
5069
5070         * webmail.el (webmail-debug): Replace mapcar called for effect with
5071         dolist.
5072
5073         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
5074         with mapc.
5075
5076 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5077
5078         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
5079         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
5080         with while loop.
5081
5082         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
5083         functions from article-* functions.
5084         (gnus-multi-decode-header): Replace mapcar called for effect with
5085         dolist.
5086
5087         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
5088         (gnus-bookmark-show-details): Replace mapcar called for effect with
5089         while loop.
5090
5091         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
5092         called for effect with while loop.
5093
5094         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
5095         with dolist.
5096
5097         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Replace
5098         mapcar called for effect with dolist.
5099
5100         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
5101
5102         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
5103         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
5104         Replace mapcar called for effect with dolist.
5105         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
5106         mapc.
5107
5108         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
5109         Replace mapcar called for effect with dolist.
5110         (gnus-topic-list): Replace mapcar called for effect with mapc.
5111
5112         * gnus.el: Use mapc instead of mapcar to add autoloads.
5113
5114 2007-10-23  Richard Stallman  <rms@gnu.org>
5115
5116         * gnus-group.el (gnus-group-highlight): Mark as risky.
5117
5118 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5119
5120         * gnus.el (gnus-server-to-method): Return method found first in
5121         gnus-newsrc-alist.
5122
5123         * gnus-art.el (gnus-article-highlight-signature)
5124         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
5125         button overlay without the front stickiness.
5126
5127 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
5128
5129         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
5130         overview buffer needed a catch to receive its throw.
5131         (gnus-agent-flush-cache): Declared as interactive to make this function
5132         easier to use.
5133
5134 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
5135
5136         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
5137         `next-line'.
5138
5139 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5140
5141         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
5142         exclude address matching message-dont-reply-to-names.
5143
5144 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5145
5146         * gnus-util.el (gnus-string<): New function.
5147
5148         * gnus-sum.el (gnus-article-sort-by-author)
5149         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
5150
5151 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5152
5153         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
5154         the frame-focus tag is set in gnus-buffer-configuration.
5155
5156 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5157
5158         * gnus-art.el (gnus-article-add-button): Make a button overlay without
5159         the front stickiness.
5160
5161 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5162
5163         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
5164         url pattern; remove duplicate one.
5165         (gnus-article-extend-url-button): New function.
5166         (gnus-article-add-buttons): Use it.
5167         (gnus-button-push): Use concatenated url that it makes.
5168
5169 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
5170
5171         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
5172
5173 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5174
5175         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
5176         Don't hardcode point-min==1.
5177
5178 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
5179
5180         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
5181         Fix comment about "iso8859-1".
5182
5183 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
5184
5185         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
5186         ones returned from the verify-function.
5187
5188         * mm-uu.el (mm-uu-pgp-signed-extract-1): Call
5189         mml2015-extract-cleartext-signature if extraction failed.
5190
5191 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
5192
5193         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
5194         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
5195         failed.
5196
5197 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
5198
5199         * Relicense "GPLv2 or later" files to "GPLv3 or later".
5200
5201 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
5202
5203         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
5204         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
5205         recommends to use EasyPG instead of PGG.
5206
5207         * pgg.el: Revert to revision 6.23.2.16.
5208
5209         * pgg-def.el: Revert to revision 6.6.2.14.
5210
5211         * pgg-gpg.el: Revert to revision 6.23.2.34.
5212
5213 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
5214
5215         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
5216         to mark a thread as expirable.  Add variable `hide' to handle hiding of
5217         thread for both the null and zero (kill/expire thread) universal prefix
5218         cases.
5219         (gnus-summary-expire-thread): Add new function to expire a thread,
5220         using gnus-summary-kill-thread.
5221         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
5222         shortcuts for gnus-summary-expire-thread.
5223         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
5224         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
5225
5226 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
5227
5228         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
5229         extras value, so an extras entry can be deleted.
5230         (gnus-registry-delete-extra-entry): Use it.
5231         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
5232         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
5233         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
5234         storage through the gnus-registry, and provide an appropriate API for
5235         it.
5236
5237 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5238
5239         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
5240         Suggested by Leo <sdl.web@gmail.com>.
5241
5242         * gnus.el: Do.
5243
5244 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5245
5246         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
5247         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
5248
5249         * gnus-agent.el (gnus-agent-fetch-headers): Do.
5250
5251         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5252         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
5253
5254 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5255
5256         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
5257         newline.
5258         (nnmbox-request-accept-article): Don't change article in source buffer;
5259         narrow to header to use message-fetch-field rather than
5260         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
5261         (nnmbox-request-replace-article): Quote lines that'll be misidentified
5262         as delimiters; make sure article ends with newline.
5263         (nnmbox-delete-mail): Correct last position of article to be deleted;
5264         ignore X-Gnus-Newsgroup header in article body.
5265         (nnmbox-save-mail): Quote lines looking like delimiters at the right
5266         positions; make sure article ends with newline.
5267
5268         * message.el (message-display-abbrev): Don't infloop when a user
5269         inserts SPC in the beginning of header.
5270
5271         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
5272         coding-system-for-read and coding-system-for-write for XEmacs having no
5273         file-coding feature.
5274
5275         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
5276
5277 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
5278
5279         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
5280         list of groups not followed by default.  Fix type to be regexp.
5281         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
5282
5283 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
5284
5285         * hmac-def.el (define-hmac-function): Switch from old-style to
5286         new-style backquotes.
5287
5288         * md4.el (md4-make-step): Likewise.
5289
5290 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5291
5292         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
5293         raw-text coding system when saving .newsrc file, which may contain
5294         non-ASCII group names.
5295
5296 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5297
5298         * gnus-cus.el (gnus-score-extra): New widget.
5299         (gnus-score-extra-convert): New function.
5300         (gnus-score-customize): Use it for Extra.
5301
5302 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
5303
5304         * mml2015.el (mml2015-extract-cleartext-signature): New function.
5305         (mml2015-mailcrypt-clear-verify): Use it.
5306         (mml2015-gpg-clear-verify): Use it.
5307         (mml2015-pgg-clear-verify): Use it.
5308         (mml2015-epg-clear-verify): Replace the current part with the output
5309         from GnuPG; don't extract the plaintext by itself.
5310
5311         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
5312         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
5313         mml2015-clear-verify-function; don't touch the armor headers or
5314         dash-escaped text here.
5315
5316 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5317
5318         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
5319         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
5320         parts, or application/octet-stream as a last resort.
5321         (gnus-mime-view-part-as-type): Don't toggle display.
5322         (gnus-mime-view-part-as-charset): Don't turn off display before
5323         querying charset.
5324
5325         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
5326         stuff to undisplayer function in Emacs.
5327         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
5328
5329         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
5330         text/calendar parts.
5331
5332 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5333
5334         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
5335         decoding text/calendar parts.
5336
5337         * message.el (message-forward-make-body-mime): Always mark body as
5338         having no illegible text; remove signed-or-encrypted argument.
5339         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
5340
5341         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
5342         (mml-generate-mime-1): Don't encode body if it is specified to be in
5343         raw form; don't make buffer be unibyte when inserting multibyte string.
5344
5345 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5346
5347         * sha1.el: Fix up comment style.
5348         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
5349         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
5350
5351         * hex-util.el: Fix up comment style.
5352         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
5353
5354         * gnus-salt.el: Use with-current-buffer.
5355         (gnus-pick-setup-message): Fix long-standing typo.
5356
5357 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5358
5359         * imap.el (imap-logout-timeout): New variable.
5360         (imap-logout, imap-logout-wait): New functions.
5361         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
5362
5363         * nnimap.el (nnimap-logout-timeout): New server variable.
5364         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
5365         nnimap-logout-timeout.
5366
5367         * gnus-art.el (gnus-article-summary-command-nosave)
5368         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
5369
5370 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5371
5372         * gnus.el (gnus-maximum-newsgroup): New variable.
5373
5374         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
5375         according to gnus-maximum-newsgroup.
5376
5377         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5378         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
5379         Limit the range of articles according to gnus-maximum-newsgroup.
5380
5381 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
5382
5383         * gnus-art.el (gnus-sticky-article): Fixed problems described in
5384         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
5385         Don't perform gnus-configure-windows here; reuse existing sticky
5386         article buffer.
5387
5388         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
5389         it doesn't exist in gnus-article-mode.
5390
5391 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5392
5393         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
5394         (gnus-agent-decoded-group-name): New function.
5395         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
5396         (gnus-agent-expire-group-1): Use it; decode group name in messages.
5397
5398 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
5399
5400         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
5401         Add binding for gnus-sticky-article.
5402         (gnus-summary-exit): Don't kill sticky article buffers.
5403
5404         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
5405         article buffer.
5406         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
5407         (gnus-kill-sticky-article-buffers): New commands.
5408
5409 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5410
5411         * nntp.el (nntp-xref-number-is-evil): New server variable.
5412         (nntp-find-group-and-number): If it is non-nil, don't trust article
5413         numbers in the Xref header.
5414
5415 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5416
5417         * gnus-agent.el (gnus-agent-read-group): New function.
5418         (gnus-agent-flush-group, gnus-agent-expire-group)
5419         (gnus-agent-regenerate-group): Use it.
5420         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
5421         nnmail-pathname-coding-system.
5422
5423 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5424
5425         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
5426
5427         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
5428         that are unread as unread, and also as selected so that information of
5429         marks having been changed by a user may be updated when exiting group.
5430
5431 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5432
5433         * gnus-art.el (gnus-mime-display-single): Pass part number that is
5434         calculated ignoring signature parts to gnus-treat-article.
5435
5436 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5437
5438         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
5439         a point here in order to keep the window start.
5440         (gnus-insert-mime-security-button): Make a button overlay without the
5441         front stickiness.
5442         (gnus-mime-display-security): Goto the end of a button.
5443
5444         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
5445
5446 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5447
5448         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
5449         group-name-at-point.
5450         (gnus-group-completing-read): New function that offers decoded
5451         non-ASCII group names for completion.
5452         (gnus-fetch-group, gnus-group-read-ephemeral-group)
5453         (gnus-group-jump-to-group, gnus-group-make-group-simple)
5454         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
5455         (gnus-group-fetch-control): Use it.
5456         (gnus-fetch-group): Use group-name-at-point for the initial value
5457         rather than the default value; use gnus-alive-p.
5458
5459         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
5460         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
5461         (gnus-summary-post-news): Use gnus-group-completing-read.
5462
5463         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
5464         (gnus-read-move-group-name): Decode group name for completion.
5465
5466 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
5467
5468         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
5469         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
5470         Yamaoka slightly modified the code).
5471
5472 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5473
5474         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
5475         (nnmail-split-incoming): Bind it.
5476
5477         * nnml.el (nnml-group-name-charset): New function.
5478         (nnml-decoded-group-name): Use it; don't decode group name if
5479         nnmail-group-names-not-encoded-p is non-nil.
5480         (nnml-encoded-group-name): New function.
5481         (nnml-group-pathname): Inline nnml-decoded-group-name.
5482         (nnml-request-expire-articles): Decode group name in message.
5483         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
5484         nnmail-pathname-coding-system.
5485         (nnml-save-mail, nnml-active-number): Work with decoded group names and
5486         not decoded ones according to nnmail-group-names-not-encoded-p.
5487         (nnml-generate-active-info): Use nnml-encoded-group-name.
5488
5489 2007-08-08  Glenn Morris  <rgm@gnu.org>
5490
5491         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
5492         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
5493         doc-strings and comments.
5494
5495 2007-07-25  Glenn Morris  <rgm@gnu.org>
5496
5497         * Relicense all FSF files to GPLv3 or later.
5498
5499 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5500
5501         * gnus-sum.el (gnus-summary-move-article): Make
5502         gnus-summary-respool-article work.
5503
5504 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
5505
5506         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
5507         string.
5508
5509 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
5510
5511         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
5512         that should be ignored when comparing distant RSS articles with local
5513         ones.
5514         (nnrss-make-hash-index): New function.  Create a hash index according
5515         to the ignored fields.
5516         (nnrss-check-group): Use it.
5517
5518 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5519
5520         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
5521
5522         * gnus-art.el (article-decode-group-name): Decode Xref header too.
5523
5524         * gnus-group.el (gnus-group-make-group): Encode group name here unless
5525         the new optional argument ENCODED is non-nil.
5526         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
5527         coding system for encoding group name.
5528         (gnus-group-make-rss-group): Pass un-encoded group name to
5529         gnus-group-make-group.
5530         (gnus-group-set-info): Tell gnus-group-make-group that group name is
5531         encoded.
5532
5533         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
5534         Encode group name to which articles are moved or copied.
5535         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
5536         coding system for encoding Newsgroup, Followup-To and Xref headers.
5537
5538         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
5539         marks; use nnheader-file-coding-system to write a file.
5540         (nnagent-retrieve-headers): Bind file-name-coding-system to
5541         nnmail-pathname-coding-system.
5542
5543         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
5544
5545         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
5546         (nnml-request-article, nnml-request-create-group)
5547         (nnml-request-rename-group, nnml-find-id)
5548         (nnml-possibly-change-directory, nnml-possibly-create-directory)
5549         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
5550         (nnml-save-marks): Use nnml-group-pathname instead of
5551         nnmail-group-pathname.
5552
5553         (nnml-request-create-group, nnml-request-expire-articles)
5554         (nnml-request-move-article, nnml-request-delete-group)
5555         (nnml-deletable-article-p, nnml-possibly-create-directory)
5556         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
5557         (nnml-open-marks): Bind file-name-coding-system to
5558         nnmail-pathname-coding-system.
5559
5560         (nnml-request-article): Pass server argument to nnml-find-group-number.
5561         (nnml-request-create-group, nnml-active-number, nnml-save-marks): Pass
5562         server argument to nnml-possibly-create-directory.
5563         (nnml-request-accept-article): Pass server argument to
5564         nnml-active-number and nnml-save-mail.
5565         (nnml-find-group-number): Pass server argument to nnml-find-id.
5566         (nnml-request-update-info): Pass server argument to
5567         nnml-marks-changed-p.
5568
5569         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
5570         (nnml-save-mail, nnml-active-number): Add server argument.
5571
5572         (nnml-request-delete-group): Warn if group is missing.
5573         (nnml-get-nov-buffer): Decode group name.
5574         (nnml-generate-active-info): Encode group name.
5575         (nnml-open-marks): Decode group name in messages.
5576
5577 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5578
5579         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
5580         if it is not specified.
5581         (gnus-article-pipe-part, gnus-article-save-part)
5582         (gnus-article-interactively-view-part, gnus-article-copy-part)
5583         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
5584         (gnus-article-inline-part, gnus-article-save-part-and-strip)
5585         (gnus-article-replace-part, gnus-article-delete-part)
5586         (gnus-article-view-part-as-type): Pass raw prefix argument to
5587         gnus-article-part-wrapper.
5588
5589 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5590
5591         * gnus-agent.el (gnus-agent-save-active): Bind
5592         nnheader-file-coding-system to gnus-agent-file-coding-system.
5593
5594         * gnus-cache.el (gnus-cache-save-buffers)
5595         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
5596         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
5597         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
5598         (gnus-cache-braid-nov, gnus-cache-braid-heads)
5599         (gnus-cache-generate-active, gnus-cache-rename-group)
5600         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
5601         (gnus-cache-update-overview-total-fetched-for): Bind
5602         file-name-coding-system to nnmail-pathname-coding-system.
5603         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names): New
5604         variables.
5605         (gnus-cache-decoded-group-name): New function.
5606         (gnus-cache-file-name): Use it.
5607         (gnus-cache-generate-active): Use non-decoded group name for active.
5608
5609         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
5610         right place.
5611         (gnus-write-active-file): Don't break non-ASCII group names.
5612
5613         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
5614         nnmail-pathname-coding-system.
5615
5616         * lpath.el: Bind default-file-name-coding-system,
5617         file-name-coding-system and language-info-alist for XEmacs.
5618
5619         * gnus-uu.el (gnus-uu-decode-save): Typo.
5620
5621 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5622
5623         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
5624
5625 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5626
5627         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
5628         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
5629         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
5630         (gnus-agent-flush-group, gnus-agent-flush-cache)
5631         (gnus-agent-fetch-headers, gnus-agent-load-alist)
5632         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
5633         (gnus-agent-retrieve-headers, gnus-agent-request-article)
5634         (gnus-agent-regenerate-group)
5635         (gnus-agent-update-files-total-fetched-for)
5636         (gnus-agent-update-view-total-fetched-for): Bind
5637         file-name-coding-system to nnmail-pathname-coding-system.
5638         (gnus-agent-group-pathname): Don't encode file names by
5639         nnmail-pathname-coding-system.
5640         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
5641         coding-system-for-write instead of buffer-file-coding-system to
5642         gnus-agent-file-coding-system.
5643
5644         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
5645         Decode group name.
5646
5647         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
5648
5649         * gnus-start.el (gnus-update-active-hashtb-from-killed)
5650         (gnus-read-newsrc-el-file): Make group names unibyte.
5651
5652         * nnmail.el (nnmail-group-pathname): Don't encode file names by
5653         nnmail-pathname-coding-system.
5654
5655         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
5656         (nnrss-request-delete-group): Bind file-name-coding-system to
5657         nnmail-pathname-coding-system.
5658         (nnrss-read-server-data, nnrss-read-group-data): Bind
5659         file-name-coding-system correctly.
5660         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
5661
5662         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
5663         (nntp-server-to-method-cache): New variable.
5664         (nntp-group-pathname): New function that decodes non-ASCII group names.
5665         (nntp-possibly-create-directory, nntp-marks-changed-p)
5666         (nntp-save-marks, nntp-open-marks): Use it.
5667         (nntp-possibly-create-directory, nntp-open-marks):
5668         Bind file-name-coding-system to nnmail-pathname-coding-system.
5669         (nntp-open-marks): Decode group names when bootstrapping marks.
5670
5671         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
5672         Newsgroups and Folowup-To headers.
5673
5674 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5675
5676         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
5677         (gnus-server-closed-face, gnus-server-denied-face)
5678         (gnus-server-offline-face): Remove variable.
5679         (gnus-server-font-lock-keywords): Use faces that are not aliases.
5680
5681         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
5682         of modifying message-stack directly for XEmacs.
5683
5684         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
5685         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
5686         if the coding-system argument is nil for XEmacs.
5687
5688         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
5689         mm-charset-override-alist.
5690
5691         * rfc2047.el: Don't require base64; require rfc2045 for the function
5692         rfc2045-encode-string.
5693         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
5694         to quote the parameter value.
5695
5696 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5697
5698         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
5699         form in gnus-group-name-charset-method-alist.
5700
5701         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
5702         overrides the default layout edit-form.
5703
5704         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
5705
5706         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
5707
5708 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5709
5710         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
5711         as unfetched articles.
5712
5713 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
5714
5715         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
5716
5717 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5718
5719         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
5720         original back end that keeps marks in the local system.
5721
5722 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5723
5724         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
5725         arg of pop-to-buffer for XEmacs.
5726         (gnus-article-read-summary-keys): Ditto; don't restore window
5727         configuration if summary command ends up with neither article buffer
5728         nor summary buffer; describe bindings if summary keys end with C-h.
5729
5730 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5731
5732         * message.el (message-fix-before-sending): Skip raw message part to be
5733         forwarded while checking illegible text.
5734         (message-forward-make-body-mime, message-forward-make-body): Mark
5735         signed or encrypted raw message as having no illegible text.
5736
5737 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5738
5739         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
5740         (gnus-message-with-timestamp-1): New macro.
5741         (gnus-message-with-timestamp): New function.
5742         (gnus-message): Use them.
5743
5744         * nnheader.el (nnheader-message): Use them.
5745
5746 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
5747
5748         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
5749         .newsrc.eld file.
5750
5751 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5752
5753         * gnus-agent.el (gnus-agent-fetch-headers)
5754         (gnus-agent-retrieve-headers): Bind
5755         gnus-decode-encoded-address-function to identity.
5756
5757         * nntp.el (nntp-send-xover-command): Recognize an xover command is
5758         available also when the server returns simply a dot.
5759
5760         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
5761
5762 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5763
5764         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
5765
5766 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5767
5768         * gnus-ems.el (gnus-x-splash): Make it work.
5769
5770         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
5771         from being used.
5772
5773         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
5774
5775 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5776
5777         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
5778         4th and the 5th arguments.
5779
5780         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
5781         the front stickiness.
5782         (gnus-article-summary-command-nosave): Correct the order of the
5783         arguments passed to pop-to-buffer.
5784         (gnus-article-read-summary-keys): Ditto; make it work properly when the
5785         summary command ends up with the article buffer.
5786
5787         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
5788         the same faces.
5789
5790 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
5791
5792         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
5793
5794 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
5795
5796         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
5797         * gnus-sum.el (gnus-summary-highlight):
5798         * pgg.el (pgg-sign-region, pgg-sign):
5799         * mail-source.el (mail-source-delete-old-incoming-confirm):
5800         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
5801
5802 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5803
5804         * gnus-art.el (gnus-mime-view-part-externally)
5805         (gnus-mime-view-part-internally): Fix predicate function passed to
5806         completing-read.
5807
5808         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
5809
5810         * gnus.el (gnus-update-message-archive-method): Add :version.
5811
5812 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5813
5814         * gnus.el (gnus-update-message-archive-method): New variable.
5815
5816         * gnus-start.el (gnus-setup-news): Update saved "archive" method
5817         according to gnus-message-archive-method if
5818         gnus-update-message-archive-method is non-nil.
5819
5820 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5821
5822         * gnus-sum.el (gnus-summary-limit-to-address): New function.  Suggested
5823         by Loic Dachary <loic@dachary.org>.
5824         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
5825
5826 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5827
5828         * message.el (message-pop-to-buffer): Add switch-function argument.
5829         (message-mail): Pass switch-function argument to it.
5830
5831 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
5832
5833         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
5834         Improve doc string.
5835
5836 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5837
5838         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
5839         (gnus-header-content)
5840         * gnus-cite.el (gnus-cite-10)
5841         * gnus-srvr.el (gnus-server-closed)
5842         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
5843         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
5844         (gnus-group-mail-3-empty, gnus-group-mail-low)
5845         (gnus-group-mail-low-empty, gnus-splash)
5846         * message.el (message-header-to, message-header-cc)
5847         (message-header-subject, message-header-other, message-header-name)
5848         (message-header-xheader, message-separator, message-cited-text)
5849         (message-mml): Lighten colors of faces used for dark background.
5850
5851 2007-05-24  Simon Josefsson  <simon@josefsson.org>
5852
5853         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
5854         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
5855
5856 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5857
5858         * message.el (message-narrow-to-headers-or-head):
5859         Ignore mail-header-separator in the body.
5860
5861 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5862
5863         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
5864         same as window size.
5865
5866 2007-05-22  Kevin Ryde  <user42@zip.com.au>
5867
5868         * message.el (message-font-lock-keywords): Use message-header-xheader
5869         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
5870         ahead of the anything pattern, to get it recognised.
5871
5872 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5873
5874         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
5875         spam.el loads uses it in the compiled defadvice form.
5876
5877 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
5878
5879         * gnus-sum.el (gnus-articles-to-read)
5880         (gnus-summary-insert-old-articles): Don't truncate group name for
5881         `read-string'.
5882
5883         * gnus-util.el (gnus-limit-string): Delete this function.
5884
5885         * gnus-sum.el (gnus-simplify-subject-fully): Use
5886         `truncate-string-to-width' instead.
5887
5888 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
5889
5890         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.  Tell
5891         if, on summary exit, the next group has to be selected.
5892         (gnus-summary-exit): Use it.
5893
5894 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
5895
5896         * gnus-art.el (gnus-article-mode): Fix comment about displaying
5897         non-break space.
5898
5899 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5900
5901         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
5902         Check if group is not a directory.
5903         (nnfolder-request-expire-articles): Don't delete articles if the target
5904         group is not available.
5905
5906         * nnml.el (nnml-request-create-group): Properly check if group is not a
5907         file.
5908         (nnml-request-expire-articles): Don't delete articles if the target
5909         group is not available.
5910
5911         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
5912         Don't quote characters that are within parentheses.
5913
5914 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5915
5916         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
5917         (gnus-handle-ephemeral-exit): Select article according to it.
5918
5919 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
5920
5921         * message.el (message-insert-formated-citation-line): Remove newline.
5922         (message-citation-line-format): Add final \n here so that the user can
5923         avoid a blank line.
5924
5925 2007-05-03  Dan Christensen  <jdc@uwo.ca>
5926
5927         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
5928         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
5929         Update lanl/arXiv support.
5930
5931 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
5932
5933         * gnus.el: Bump version number.
5934
5935 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5936
5937         * gnus.el (gnus-version-number): Bump version.
5938
5939 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5940
5941         * gnus.el: No Gnus v0.6 is released.
5942
5943 2007-04-27  Didier Verna  <didier@xemacs.org>
5944
5945         * gnus-util.el (gnus-orify-regexp): Moved and renamed to ...
5946         * gmm-utils.el (gmm-regexp-concat): here.
5947         * message.el: Don't require 'gnus-util.
5948         (message-dont-reply-to-names): Handle name change above.
5949         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
5950
5951 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5952
5953         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
5954         since the initial value varies according to the system.
5955
5956 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5957
5958         * mm-util.el (mm-charset-synonym-alist): Defcustom.
5959
5960 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
5961
5962         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
5963
5964 2007-04-24  Didier Verna  <didier@xemacs.org>
5965
5966         Improve the type of gnus-ignored-from-addresses.
5967         * gnus-util.el (gnus-orify-regexp): New function.
5968         * message.el (gnus-util): Require it.
5969         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
5970         * gnus-sum.el (gnus-ignored-from-addresses): New function.
5971         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
5972
5973 2007-04-24  Didier Verna  <didier@xemacs.org>
5974
5975         * gnus-sum.el:
5976         * gnus-utils.el: Fix some trailing whitespaces.
5977
5978 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5979
5980         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
5981         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
5982         article's Message-ID; refer parent article in summary buffer.
5983
5984         * message.el (message-bounce): Call mime-to-mml.
5985
5986         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
5987         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
5988         optimize and/or forms properly.
5989
5990 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
5991
5992         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
5993         URL.
5994
5995 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5996
5997         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
5998
5999 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6000
6001         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
6002         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
6003         displayed of multipart/alternative part if it is invoked from summary
6004         buffer.
6005
6006         * mm-view.el (mm-inline-text-html-render-with-w3m)
6007         (mm-inline-text-html-render-with-w3m-standalone)
6008         (mm-inline-render-with-function): Use mail-parse-charset by default.
6009
6010 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
6011
6012         * parse-time.el (parse-time-string-chars): Check if CHAR
6013         is less than the length of parse-time-syntax.
6014
6015 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6016
6017         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
6018         from gnus-newsgroup-processable.
6019
6020 2007-04-16  Didier Verna  <didier@xemacs.org>
6021
6022         * gnus-msg.el (gnus-configure-posting-styles): Handle
6023         message-signature-directory properly with :file syntax.  Reported by
6024         "Leo".
6025
6026 2007-04-11  Didier Verna  <didier@xemacs.org>
6027
6028         New user option: message-signature-directory.
6029         * gnus-msg.el (gnus-configure-posting-styles): Support it.
6030         * message.el (message-insert-signature): Ditto.
6031         * message.el (message-signature-file): Doc update.
6032         * message.el (message-signature-directory): New.
6033
6034 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6035
6036         * gnus-msg.el (gnus-inews-yank-articles): Use
6037         message-exchange-point-and-mark instead of exchange-point-and-mark.
6038
6039 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6040
6041         * message.el (message-yank-original): Make sure cited text ends with
6042         newline; don't exchange point and mark.
6043
6044 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
6045
6046         * tls.el (open-tls-stream): Properly handle case where there
6047         is no associated buffer.
6048
6049 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
6050
6051         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
6052         message-yank-original, make sure (< mark TEXT point).
6053
6054 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
6055
6056         * message.el (message-fill-column): New variable.
6057         (message-mode): Use it.  Add comment on a possible new hook.
6058
6059         * nnmail.el (nnmail-spool-file): Mark as obsolete.
6060         (nnmail-get-new-mail): Reformat.
6061
6062         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
6063
6064         * gmm-utils.el: Fix Commentary.
6065         (gmm-tool-bar-from-list): Fix typo in doc string.
6066
6067 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
6068
6069         * message.el (message-yank-original): Don't switch point and mark
6070         unnecessarily to put point and mark as documented.
6071
6072 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6073
6074         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
6075         from the message heads.
6076
6077 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
6078
6079         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
6080         article buffer does not have a window.  This may not be the best
6081         solution but is certainly better than setting the start of the null,
6082         that is the current, window.
6083
6084 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
6085
6086         * gnus-draft.el (gnus-draft-setup-hook): New hook.
6087         (gnus-draft-setup): Run it.
6088
6089         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
6090         gnus-score-fast-scoring.  Allow regexp.
6091         (gnus-score-headers): Use it.
6092
6093         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
6094         XEmacs.
6095
6096         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
6097         string.
6098         (gnus-button-alist): Also catch `<f1> k ...'.
6099         (gnus-treat-display-x-face): Fix doc string.
6100
6101 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6102
6103         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
6104         evaluation of gnus-extended-version to ensure correct generation of the
6105         User-Agent header when message-generate-headers-first is used.
6106
6107 2007-03-24  Simon Josefsson  <simon@josefsson.org>
6108
6109         * hashcash.el (hashcash-generate-payment-async): Don't crash if
6110         hashcash-path is nil.  Don't call callback with incorrect number of
6111         parameters if val is 0.
6112
6113 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6114
6115         * message.el (message-required-news-headers):
6116         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
6117
6118 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
6119
6120         * tls.el (open-tls-stream): In handshake-waiting loop,
6121         don't wait more if there is output available to process.
6122
6123 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
6124
6125         * tls.el (tls-program): Doc fix.
6126
6127 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6128
6129         * message.el (message-generate-new-buffers): Change the meaning of the
6130         nil value; add `standard' to the choices; treat t as `unique'; improve
6131         doc string.
6132         (gnus-select-frame-set-input-focus): Autoload.
6133         (message-buffer-name): Search for the existing message buffer if
6134         message-generate-new-buffers is nil or `standard'; treat the value t of
6135         message-generate-new-buffers as `unique'.
6136         (message-pop-to-buffer): Raise the frame already displaying the message
6137         buffer; clear the echo area after querying.
6138         (message-setup): Pass the `continue' argument to compose-mail.
6139         (message-mail): Prefer `switch-function' if it is given; search for the
6140         existing message buffer if the `continue' argument is non-nil; pass
6141         continue and switch-function arguments to compose-mail by way of
6142         message-setup.
6143         (message-mail-other-window): Adjust argument of message-setup.
6144         (message-mail-other-frame): Ditto.
6145
6146 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6147
6148         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
6149         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
6150         to turn font-lock on when turning gnus-message-citation-mode on.
6151
6152 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
6153
6154         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
6155         (mml-smime-function-alist): New variable; add epg as the backend.
6156         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
6157         mml-smime- functions instead.
6158         * mm-view.el: Require smime.
6159
6160 2007-03-05  Didier Verna  <didier@xemacs.org>
6161
6162         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
6163         instead of just inheritance for posting styles.
6164         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
6165
6166 2007-02-24  Chris Moore  <dooglus@gmail.com>
6167
6168         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
6169         * pgg-pgp.el (pgg-pgp-encrypt-region):
6170         * pgg-gpg.el (pgg-gpg-encrypt-region):
6171         Check pgg-encrypt-for-me if no other recipients.
6172
6173 2007-02-24  John Paul Wallington  <jpw@pobox.com>
6174
6175         * tls.el (tls-certtool-program): Fix custom type.
6176
6177 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6178
6179         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
6180         and point-at-eol instead of line-(beginning|end)-position.
6181
6182         * assistant.el (assistant-parse-buffer): Ditto.
6183
6184         * netrc.el (netrc-parse-services): Ditto.
6185
6186 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
6187
6188         * mml2015.el (mml2015-epg-find-usable-key): New function.
6189         (mml2015-epg-sign): Use it.
6190         (mml2015-epg-encrypt): Use it.
6191
6192 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6193
6194         * message.el (message-make-in-reply-to): Quote name containing
6195         non-ASCII characters.  It will make the RFC2047 encoder cause an error
6196         if there are special characters.  Reported by NAKAJI Hiroyuki
6197         <nakaji@jp.freebsd.org>.
6198
6199 2007-02-27  Didier Verna  <didier@xemacs.org>
6200
6201         Include the group parameters as well as the topic ones in the
6202         inheritance filter process.
6203         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
6204         argument GROUP-PARAMS-LIST.
6205         * gnus-topic.el (gnus-group-topic-parameters): Use it.
6206
6207 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6208
6209         * nntp.el (nntp-never-echoes-commands)
6210         (nntp-open-connection-functions-never-echo-commands): New variables.
6211         (nntp-send-command): Use them.
6212
6213 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
6214
6215         * mml2015.el (mml2015-epg-verify): Simplified.
6216
6217 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6218
6219         * mml.el (mml-content-disposition-alist): New user option.
6220         (mml-content-disposition): New function.
6221         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
6222         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
6223
6224 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
6225
6226         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
6227         verification.
6228
6229 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6230
6231         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
6232         articles posted in the last 24 hours.
6233
6234 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
6235
6236         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
6237
6238 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
6239
6240         * nntp.el (nntp-send-command): Don't wait for echoes when
6241         nntp-open-ssl-stream is used.
6242
6243 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6244
6245         * gnus-cite.el (gnus-test-font-lock-add-keywords)
6246         (gnus-message-add-citation-keywords)
6247         (gnus-message-remove-citation-keywords): Remove.
6248         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
6249         directly, make the variables in font-lock-defaults buffer-local, add
6250         gnus-message-citation-keywords to them and then update the value of
6251         font-lock-keywords.
6252
6253 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6254
6255         * message.el (message-cite-original-1): Don't call
6256         gnus-article-highlight-citation.
6257
6258         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
6259         citations; fix line count.
6260
6261 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
6262
6263         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
6264         (gnus-message-add-citation-keywords)
6265         (gnus-message-remove-citation-keywords): Use it; fix the emulating
6266         versions of font-lock-add-keywords and font-lock-remove-keywords to
6267         work with XEmacs correctly.
6268
6269 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6270
6271         * gnus-cite.el (gnus-cite-face-list): Set the values of
6272         gnus-message-max-citation-depth and gnus-message-citation-keywords.
6273         (gnus-message-max-citation-depth): Use defvar rather than defconst.
6274         (gnus-message-cite-prefix-regexp): New variable.
6275         (gnus-message-search-citation-line): Use it; protect against long
6276         citation prefix; fill match data with nil rather than 0 for XEmacs; set
6277         the 0th match data for Emacs.
6278         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
6279         (gnus-message-add-citation-keywords): Append keywords rather than
6280         prepending; emulate font-lock-add-keywords if it is not available.
6281         (gnus-message-remove-citation-keywords): Emulate
6282         font-lock-remove-keywords if it is not available.
6283
6284         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
6285
6286         * message.el (message-cite-prefix-regexp): Set the value of
6287         gnus-message-cite-prefix-regexp.
6288
6289 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6290
6291         * nnweb.el (nnweb-google-parse-1): Update parser.
6292
6293 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
6294
6295         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
6296
6297 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6298
6299         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
6300         regexp.
6301
6302 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6303
6304         * uudecode.el (uudecode-string-to-multibyte): New function emulating
6305         string-to-multibyte.
6306         (uudecode-decode-region-internal): Use it.
6307
6308         * lpath.el: Fbind string-as-multibyte for XEmacs.
6309
6310 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
6311
6312         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix
6313         custom choice.
6314
6315         * gnus-art.el (gnus-signature-limit): Fix custom choice.
6316
6317 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
6318
6319         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
6320
6321         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
6322         `write-region' to respect `mm-inhibit-file-name-handlers'.
6323
6324 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
6325
6326         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
6327         Use gnus-home-directory instead of "~/" or "$HOME".
6328
6329 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
6330
6331         * encrypt.el (encrypt-insert-file-contents): Add better prompt
6332         to mention filename.
6333         Add comments at beginning regarding usage.
6334         (encrypt-write-file-contents): Change interactive so a string is
6335         acceptable.  If the file has no associated model, show an error instead
6336         of a nonsense prompt.
6337
6338 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
6339
6340         * spam.el (spam-bsfilter-ham-switch): Fix typo.
6341         Thanks to Yoshihiko Yamada for kind notification of this typo.
6342
6343 2007-01-12  Kenichi Handa  <handa@m17n.org>
6344
6345         * uudecode.el (uudecode-decode-region-internal): Make it work in a
6346         multibyte buffer.
6347
6348 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
6349
6350         * gnus-score.el (gnus-score-fast-scoring): New variable.
6351         (gnus-score-headers): Use it.
6352
6353         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
6354
6355         * message.el (message-cite-original-1): Call
6356         gnus-article-highlight-citation if requested.
6357         (message-make-from): Allow name and address as optional arguments.
6358
6359         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
6360
6361         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
6362         bugs to doc string.
6363         (gnus-button-alist): Add mid\\|message-id.
6364         (gnus-button-fetch-group): Extend for use in
6365         `browse-url-browser-function'.
6366         (gnus-button-url-regexp): Try to catch paired parentheses like in
6367         Wikipedia URLs.
6368
6369         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
6370         Suggested by Simon Krahnke <overlord@gmx.li>.
6371
6372 2007-01-13  Romain Francoise  <romain@orebokech.com>
6373
6374         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
6375         Update copyright.
6376
6377 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
6378
6379         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
6380
6381 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
6382
6383         * gnus-registry.el (gnus-registry-unfollowed-groups)
6384         (gnus-registry-split-fancy-with-parent): Fix documentation.
6385
6386 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6387
6388         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
6389         from nnweb groups.
6390
6391 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6392
6393         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
6394         Xref urls.  Erase buffer before requesting head.
6395
6396 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
6397
6398         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
6399         customizable.
6400
6401 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
6402
6403         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
6404         no signing key is found.
6405         (mml2015-epg-encrypt): Ask user whether to skip or abort if
6406         no encrypting and/or signing key is found.
6407
6408 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
6409
6410         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
6411
6412 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6413
6414         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
6415         headers read from disk with the ones newly found in the current search.
6416         This should no longer cause problems, because the article numbers in
6417         Gmane's `nov.php' output are ignored since the previous change.
6418
6419 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6420
6421         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
6422
6423 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6424
6425         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
6426         replace-regexp-in-string; bind url-version; fbind display-images-p and
6427         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
6428         find-face and set-itimer-function for Emacs; bind itimer-list for
6429         Emacs.
6430
6431         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
6432
6433 2007-01-01  Romain Francoise  <romain@orebokech.com>
6434
6435         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
6436
6437 2006-12-31  Steve Youngs  <steve@sxemacs.org>
6438
6439         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
6440         `define-minor-mode' macro definition expanded properly.
6441         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
6442         exclude it there.
6443
6444         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
6445         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
6446         `fboundp' test.
6447         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
6448         This is OK to autoload in (S)XEmacs now.
6449
6450 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6451
6452         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
6453         keystroke.
6454         (gnus-summary-limit-to-singletons): Fix typo.
6455
6456         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
6457         else fails.
6458
6459 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6460
6461         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
6462         docstring.
6463
6464         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
6465         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
6466         (gnus-summary-insert-dormant-articles): Fix typo in message.
6467
6468 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
6469
6470         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
6471         nil for XEmacs.
6472         (gnus-message-citation-mode): Don't autoload in XEmacs.
6473
6474         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
6475
6476 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
6477
6478         * nnimap.el (nnimap-expunge-search-string): Mention
6479         nnimap-search-uids-not-since-is-evil in docstring.
6480
6481 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
6482
6483         * spam.el: Revert to make-obsolete-variable because
6484         define-obsolete-variable-alias is not supported in Emacs 21.
6485
6486         * spam.el (spam-ifile-path, spam-ifile-database-path)
6487         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
6488         make-obsolete-variable.
6489         (spam-bsfilter-path, spam-bsfilter-program)
6490         (spam-spamassassin-path, spam-spamassassin-program)
6491         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.  Don't
6492         use "path" inappropriately.
6493         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
6494         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
6495         variable names.
6496
6497 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
6498
6499         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
6500         summary buffer.
6501
6502         * password.el (password-cache-remove): Use clear-string to burn
6503         password, if available.
6504
6505 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6506
6507         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
6508
6509         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
6510
6511         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
6512         (gnus-message-highlight-citation): Move defcustom here from
6513         gnus-cite.el.
6514         (gnus-message-citation-mode): Autoload.
6515
6516         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
6517         checks to make it compile with XEmacs.
6518         (gnus-message-citation-mode): New minor mode.
6519         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
6520         (gnus-message-highlight-citation): New variables.
6521         (gnus-message-search-citation-line)
6522         (gnus-message-add-citation-keywords)
6523         (gnus-message-remove-citation-keywords)
6524         (turn-on-gnus-message-citation-mode)
6525         (turn-off-gnus-message-citation-mode): New functions.
6526
6527 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
6528
6529         * gnus-cite.el: Enable highlighting of different citation levels in
6530         message-mode.
6531
6532 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6533
6534         * message.el (message-make-fqdn): Fix comment.
6535         (message-bogus-system-names): Add ".local".
6536
6537         * spam.el (spam-ifile-path, spam-ifile-program)
6538         (spam-ifile-database-path, spam-ifile-database)
6539         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
6540         Don't use "path" inappropriately.
6541         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
6542         strings.
6543         (spam-check-ifile, spam-ifile-register-with-ifile)
6544         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter): Use
6545         new variable names.
6546
6547         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
6548         (gnus-treat-display-smileys): Simplify using
6549         gnus-image-type-available-p.
6550
6551         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
6552         available.
6553
6554         * gnus-xmas.el (gnus-xmas-image-type-available-p): Use
6555         `display-images-p' if available.
6556
6557 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6558
6559         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
6560         one after turning on the buffer's multibyteness instead of decoding
6561         them directly in the unibyte buffer that causes unexpected conversion
6562         in Emacs 23 (unicode).
6563
6564 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6565
6566         * message.el (message-generate-hashcash): Fix custom type.
6567
6568 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6569
6570         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
6571
6572 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6573
6574         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
6575         disconnect icons.  Add help text.
6576
6577 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
6578
6579         * spam.el (spam-extra-header-to-number): CRM114 spam score is
6580         negated to be consistent with the others we handle.
6581
6582 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6583
6584         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
6585         version of gnus-summary-buffer to something, so that we can use two
6586         article buffers at the same time.
6587
6588 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
6589
6590         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
6591         trigger all the extra headers.
6592         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
6593         sorting.
6594
6595 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6596
6597         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
6598         solid groups.
6599
6600 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
6601
6602         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
6603
6604 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
6605
6606         * legacy-gnus-agent.el: Add Copyright notice.
6607
6608 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
6609
6610         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
6611
6612 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6613
6614         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
6615
6616         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
6617         to make it work reliably in CVS Emacs.
6618         (gnus-summary-limit-strange-charsets-predicate)
6619         (gnus-summary-limit-to-predicate): New functions.
6620
6621 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
6622
6623         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
6624         specifying array size.
6625         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
6626         array if it is too small.
6627         (gnus-sort-threads-recursive): Renamed from gnus-sort-thread-1.
6628         (gnus-sort-threads-loop): New function.
6629
6630 2006-12-06  Chris Moore  <dooglus@gmail.com>
6631
6632         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
6633         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
6634
6635 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
6636
6637         * mm-url.el (mm-url-predefined-programs): Call curl with correct
6638         options.
6639
6640 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6641
6642         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
6643         DOS-ing the recipient.
6644
6645         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
6646         the headers when creating the mapping to avoid mismappings.
6647         (nnweb-gmane-create-mapping): Always nix out old mapping.
6648
6649 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6650
6651         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
6652         and mm-verify-option to never.
6653
6654 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6655
6656         * message.el (message-signed-or-encrypted-p): New function.
6657         (message-forward-make-body): Use it.
6658
6659         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
6660         Replace encode-coding-string with mm-encode-coding-string.
6661
6662 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6663
6664         * nneething.el (nneething-decode-file-name): Replace
6665         decode-coding-string with mm-decode-coding-string.
6666
6667         * gnus-int.el (gnus-open-server): Say failed server's name.
6668
6669 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6670
6671         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
6672         strings to a single string.  Quote `errors-file-name'.
6673         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
6674         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
6675         Adjust calls.  Use `shell-quote-argument'.
6676
6677 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
6678
6679         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
6680         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
6681
6682         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
6683         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
6684         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
6685         (gnus-group-make-directory-group, gnus-group-transpose-groups):
6686         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
6687         (gnus-subscribe-newsgroup, gnus-1):
6688         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
6689         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
6690         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
6691         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
6692
6693 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6694
6695         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
6696         keystroke.
6697         (gnus-summary-limit-to-bodies): Implement headersp.
6698
6699 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6700
6701         * dns.el (query-dns): Protect against "Process dns deleted" strings.
6702
6703 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6704
6705         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
6706
6707 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6708
6709         * message.el (message-generate-hashcash): Expand range of values to
6710         include `opportunistic'.
6711         (message-send-mail): Use it.
6712
6713 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6714
6715         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
6716         and comment it.
6717
6718         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
6719
6720 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
6721
6722         * gnus-util.el (gnus-extract-address-components): Improve comment.
6723
6724 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6725
6726         * gnus-util.el (gnus-extract-address-components): Work with address in
6727         which the name portion contains @.
6728
6729         * lpath.el: Fbind custom-autoload.
6730
6731 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6732
6733         * gnus.el (gnus-start): Move custom group up.
6734         (gnus-select-method): Don't autoload, but make it available for
6735         `customize-variable'.
6736         (gnus-getenv-nntpserver): Don't autoload.
6737
6738 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
6739
6740         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
6741
6742 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6743
6744         * message.el (message-sendmail-extra-arguments): New variable.
6745         (message-send-mail-with-sendmail): Use it.
6746
6747 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6748
6749         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
6750         mm-with-unibyte-current-buffer to make string unibyte.
6751
6752         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
6753         mm-string-as-multibyte.
6754
6755 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
6756
6757         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
6758         Reported by Werner Koch <wk@gnupg.org>.
6759
6760 2006-11-14  Daiki Ueno  <ueno@p360>
6761
6762         * mml2015.el: Autoload epa-select-keys when compiling.
6763
6764 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6765
6766         * mml2015.el (mml2015-epg-sign): Save the signing keys in
6767         message-options.
6768         (mml2015-epg-encrypt): Save the recipient keys in message-options.
6769
6770 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6771
6772         * mml2015.el (mml2015-epg-encrypt): Removed backward compatibility for
6773         EasyPG (< 0.0.6).
6774         (mml2015-always-trust): New user option.
6775         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
6776         prompt.
6777
6778 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6779
6780         * nntp.el (nntp-authinfo-force): New variable.
6781         (nntp-send-authinfo): Use it.
6782
6783 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
6784
6785         * message.el (message-strip-subject-encoded-words): Allow _not_ to
6786         decode encoded words.  Improve prompt.  Add comment about forwarding.
6787         (message-replacement-char): Move up.
6788
6789 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
6790
6791         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
6792         instead of gnus-intersection because arguments of gnus-sorted-nunion
6793         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
6794
6795 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
6796
6797         * message.el (message-strip-subject-encoded-words): Reformat prompt.
6798         (message-simplify-subject-functions): Enable
6799         message-strip-subject-encoded-words by default.
6800
6801 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
6802
6803         * message.el (message-strip-subject-encoded-words): New function.
6804         (message-simplify-subject-functions): New variable.
6805         (message-simplify-subject): Use it.  Fix typo in doc string.
6806         Support message-strip-subject-encoded-words.
6807
6808 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
6809
6810         * gnus-diary.el (gnus-diary-delay-format-function):
6811         * nndiary.el (nndiary-reminders):
6812         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
6813
6814 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
6815
6816         * gnus-art.el (article-hide-boring-headers): Fetch date from
6817         gnus-original-article-buffer to avoid problems with localized date
6818         strings.
6819
6820 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6821
6822         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
6823
6824 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
6825
6826         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
6827         New variables.
6828         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6829         (mm-charset-synonym-alist): Move some entries to
6830         mm-codepage-iso-8859-list.
6831         (mm-charset-synonym-alist, mm-charset-override-alist): Add
6832         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6833
6834 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6835
6836         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
6837
6838 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
6839
6840         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
6841         with Emacs 21 and XEmacs.
6842
6843 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
6844
6845         * spam.el (spam-parse-address): New function for better parsing,
6846         catching errors, etc.
6847         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
6848
6849 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
6850
6851         * mm-view.el: Add interactive arg to html2text autoload.
6852
6853 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6854
6855         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
6856
6857 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
6858
6859         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list): New
6860         variables.
6861         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6862         (mm-charset-synonym-alist): Move some entries to
6863         mm-codepage-iso-8859-list.
6864
6865         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
6866
6867 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
6868
6869         * message.el (message-citation-line-format)
6870         (message-insert-formated-citation-line): Fix implementation of %E, %N
6871         and %n according to the doc string.
6872
6873 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
6874
6875         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6876         car-safe to avoid bad parses.
6877
6878 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6879
6880         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
6881         names.
6882
6883         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
6884
6885 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6886
6887         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
6888         header.
6889
6890         * message.el (message-draft-headers): Add Date.
6891         (message-headers-to-generate): Fix typo in docstring.
6892
6893         * nndraft.el (nndraft-required-headers): New variable.
6894         (nndraft-generate-headers): Use it.
6895
6896         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
6897
6898 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6899
6900         * gnus-registry.el (gnus-registry-wash-for-keywords)
6901         (gnus-registry-find-keywords): New functions to allow easy searching of
6902         articles that are in the registry.
6903
6904 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6905
6906         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6907         ietf-drums-parse-address instead of gnus-extract-address-components.
6908         Reported by Damien Elmes <damien@repose.cx>.
6909
6910 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
6911
6912         * gnus.el (gnus-mime): Remove unused custom group.
6913
6914 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6915
6916         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
6917         "blank line" when searching for end of armor headers.
6918
6919 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6920
6921         * gmm-utils.el (gmm-write-region): Fix variable name.
6922
6923 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
6924
6925         * gmm-utils.el (gmm-write-region): New function based on compatibility
6926         code from `mm-make-temp-file'.
6927
6928         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
6929
6930         * nnmaildir.el (nnmaildir--update-nov)
6931         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
6932         Use `gmm-write-region'.
6933
6934 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
6935
6936         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist): Add
6937         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6938
6939         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
6940
6941         * message.el (message-replacement-char): New variable.
6942         (message-fix-before-sending): Use it.
6943         (message-simplify-subject): New function to remove duplicate code.
6944         (message-reply, message-followup): Use it.
6945
6946         * gnus-sum.el (gnus-summary-make-menu-bar): Clarify
6947         gnus-summary-limit-to-articles.
6948
6949 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6950
6951         * gnus-util.el (gnus-with-local-quit): New macro.
6952
6953         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
6954
6955 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
6956
6957         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
6958         ignore non-string data.
6959
6960 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
6961
6962         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
6963         non-string data (needs to be done in the registry too).
6964
6965 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6966
6967         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
6968         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
6969         (gnus-registry-split-fancy-with-parent)
6970         (gnus-registry-fetch-simplified-message-subject-fast)
6971         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
6972         Remove text properties on ingress into the registry and when it's saved.
6973         (gnus-registry-clean-empty-function): Fix bug with cleaning the
6974         registry from entries with no groups.
6975
6976 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
6977
6978         * gnus-util.el (gnus-string-remove-all-properties): Add utility
6979         function to remove string properties.
6980
6981 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
6982
6983         * gmm-utils.el (gmm): Adjust custom version.
6984
6985         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist): Adjust
6986         custom version.
6987
6988         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
6989
6990 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
6991
6992         * gnus-art.el (gnus-insert-prev-page-button)
6993         (gnus-insert-next-page-button): Simplify.  Reformat.
6994
6995 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
6996
6997         * gnus-art.el (gnus-insert-prev-page-button)
6998         (gnus-insert-next-page-button): Apply gnus-article-button-face.
6999
7000 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
7001
7002         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
7003
7004 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
7005
7006         * gnus-art.el (gnus-insert-mime-button)
7007         (gnus-insert-mime-security-button):
7008         Apply gnus-article-button-face to MIME and security buttons.
7009
7010 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
7011
7012         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
7013         readable.
7014
7015 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7016
7017         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
7018
7019 2006-09-20  Steve Youngs  <steve@sxemacs.org>
7020
7021         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
7022         `browse-url-of-file' instead of `browse-url'.
7023
7024 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7025
7026         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
7027         regexp.  Articles containing quotation were cut prematurely.
7028
7029 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7030
7031         * message.el (message-cite-original-1): Use nobody by default for the
7032         value of From header.
7033         (message-reply): Ditto.
7034
7035 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
7036
7037         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
7038         to the gnus-info.  This fixes a bug of inline-PGP message verification.
7039         Reported by Michael Piotrowski <mxp@dynalabs.de>.
7040
7041 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
7042
7043         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
7044         mails in the doc string.  Add some URLs in comment.
7045         (pop3-movemail): Warn about pop3-leave-mail-on-server.
7046
7047 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7048
7049         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
7050         backslashes handling and the way to find boundaries of quoted strings.
7051
7052 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
7053
7054         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
7055         mml1991-encrypt-to-self is set and mml1991-signers is not set.
7056         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
7057         mml2015-encrypt-to-self is set and mml2015-signers is not set.
7058
7059 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
7060
7061         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
7062         doc string.
7063         (gnus-button-regexp, gnus-button-last): Remove unused variables.
7064
7065 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7066
7067         * lpath.el: Fbind epg-check-configuration.
7068
7069 2006-09-06  Simon Josefsson  <jas@extundo.com>
7070
7071         * mml2015.el (mml2015-use): Doc fix, mention epg.
7072
7073 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
7074
7075         * mml2015.el (mml2015-use): Default to epg, if available.
7076
7077 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
7078
7079         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
7080         message-sender.
7081         (mml1991-epg-encrypt): Ditto.
7082         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
7083         message-sender.
7084         (mml2015-epg-encrypt): Ditto.
7085
7086 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
7087
7088         * message.el (message-send-mail-with-sendmail): Look for sendmail in
7089         several common directories.
7090
7091 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
7092
7093         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
7094         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
7095
7096 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7097
7098         * gnus-art.el (article-decode-encoded-words): Make it fast.
7099
7100 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7101
7102         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
7103
7104         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
7105         in quoted string into `\'.
7106
7107 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7108
7109         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7110         Use standard-syntax-table.
7111
7112 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7113
7114         * gnus-art.el (gnus-decode-address-function): New variable.
7115         (article-decode-encoded-words): Use it to decode headers which are
7116         assumed to contain addresses.
7117         (gnus-mime-delete-part): Remove useless `or'.
7118
7119         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
7120         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
7121         (gnus-nov-parse-line): Use it to decode From header.
7122         (gnus-get-newsgroup-headers): Ditto.
7123         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
7124
7125         * mail-parse.el (mail-decode-encoded-address-region): New alias.
7126         (mail-decode-encoded-address-string): New alias.
7127
7128         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7129         New function.
7130         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
7131         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
7132         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
7133         (rfc2047-decode-string): Ditto.
7134         (rfc2047-decode-address-region): New function.
7135         (rfc2047-decode-address-string): New function.
7136
7137 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
7138
7139         * message.el (message-caesar-buffer-body): Allow rotating headers.
7140
7141         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
7142
7143         * message.el (message-insert-formated-citation-line): Fix %f.
7144         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
7145
7146 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7147
7148         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
7149         (gnus-bookmark-mouse-available-p): New macro.
7150         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
7151         (gnus-bookmark-bmenu-show-infos): Use it.
7152         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
7153         (gnus-bookmark-bmenu-hide-infos): Ditto.
7154         (gnus-bookmark-remove-properties): New function.
7155         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
7156         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
7157         (gnus-bookmark-write-file): Bind coding-system-for-write.
7158         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
7159         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
7160         group before selecting it.
7161         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
7162         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
7163         quit-window if it is not available; use gnus-mouse-2 and bind it to
7164         gnus-bookmark-bmenu-select-by-mouse.
7165         (gnus-bookmark-show-details): Remove unused variable `details-list'.
7166         (gnus-bookmark-bmenu-select-by-mouse): New function.
7167
7168 2006-08-13  Romain Francoise  <romain@orebokech.com>
7169
7170         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
7171         space.
7172
7173 2006-08-10  Romain Francoise  <romain@orebokech.com>
7174
7175         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
7176         (dns-mode-soa-auto-increment-serial): New user option.
7177         (dns-mode-soa-maybe-increment-serial): New function.
7178         (dns-mode): Add the latter to `write-contents-functions'.
7179
7180 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7181
7182         * compface.el (uncompface): Use binary rather than raw-text-unix.
7183
7184 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7185
7186         * compface.el (uncompface): Make sure the eol conversion doesn't take
7187         place when communicating with the external programs.  Reported by
7188         ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
7189
7190 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7191
7192         * nnheader.el (nnheader-insert-head): Fix typo in comment.
7193
7194 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7195
7196         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7197         Make it more robust by parsing author and date independently.
7198
7199 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7200
7201         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
7202
7203 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
7204
7205         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
7206         first matching secret key.
7207         (mml2015-epg-encrypt): Ditto.
7208
7209         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
7210         first matching secret key.
7211         (mml1991-epg-encrypt): Ditto.
7212
7213         * mml2015.el (mml2015-encrypt-to-self): New user option.
7214         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
7215         mml2015-epg-encrypt-to-self is set.
7216
7217         * mml1991.el (mml1991-encrypt-to-self): New variable.
7218         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
7219         mml1991-epg-encrypt-to-self is set.
7220
7221         * mml2015.el (mml2015-signers): New user option.
7222         (mml2015-epg-sign): Reflect the value of mml2015-signers.
7223         (mml2015-epg-encrypt): Allow to select signing keys.
7224
7225         * mml1991.el (mml1991-signers): New variable.
7226         (mml1991-epg-sign): Reflect the value of mml1991-signers.
7227         (mml1991-epg-encrypt): Allow to select signing keys.
7228
7229 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7230
7231         * nnheader.el (nnheader-insert-head): Make it work even if the file
7232         uses CRLF for the line-break code.
7233
7234 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
7235
7236         * mml2015.el: Require mml-sec instead of password.
7237         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
7238         (mml2015-cache-passphrase): Inherit the default value from
7239         mml-secure-cache-passphrase.
7240         (mml2015-passphrase-cache-expiry): Inherit the default value from
7241         mml-secure-passphrase-cache-expiry.
7242
7243         * mml1991.el: Require mml-sec instead of password.
7244         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
7245         (mml1991-cache-passphrase): Inherit the default value from
7246         mml-secure-cache-passphrase.
7247         (mml1991-passphrase-cache-expiry): Inherit the default value from
7248         mml-secure-passphrase-cache-expiry.
7249
7250         * mml-sec.el: Require password.
7251         (mml-secure-verbose): New user option.
7252         (mml-secure-cache-passphrase): New user option.
7253         (mml-secure-passphrase-cache-expiry): New user option.
7254
7255 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
7256
7257         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
7258         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
7259         andreas@altroot.de (Andreas Vögele).
7260
7261         FIXME: Use `tiny change'?
7262
7263 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7264
7265         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
7266         workaround for the url package included with Emacs.
7267
7268         * nnweb.el (nnweb-google-create-mapping): Update regexp.
7269
7270 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7271
7272         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
7273         correctly.  This fixes a bug caused by the 2006-05-12 change.
7274
7275 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
7276
7277         * nnmail.el (nnmail-article-group): If splitting raises an error, give
7278         some information about the error when saying that the `bogus' mail
7279         group will be used.
7280
7281 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
7282
7283         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
7284         string.
7285
7286 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
7287
7288         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
7289
7290 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7291
7292         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
7293
7294 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7295
7296         * mml1991.el (mml1991-function-alist): Add epg.
7297         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
7298         (mml1991-epg-encrypt): New functions.
7299
7300 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7301
7302         * mml2015.el (mml2015-verbose): New variable.
7303         (mml2015-cache-passphrase): Ditto.
7304         (mml2015-passphrase-cache-expiry): Ditto.
7305         (mml2015-function-alist): Add epg.
7306         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
7307         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
7308         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt): New
7309         functions.
7310
7311 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7312
7313         * message.el (message-cite-original-1): Preserve region when removing
7314         quoted text due to X-No-Archive in order to avoid bogus attribution
7315         when citing multiple messages.
7316
7317 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7318
7319         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.  Reported by
7320         Kenneth Jacker <khj@be.cs.appstate.edu>.
7321
7322 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
7323
7324         * gnus-diary.el (gnus-user-format-function-d)
7325         (gnus-user-format-function-D): Autoload.
7326
7327         * imap.el (Commentary): Fix typo.
7328
7329         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
7330         2006-04-22 contribution.
7331
7332 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7333
7334         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
7335         It didn't really fix the bogosity I'm seeing with solid web groups.
7336
7337 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7338
7339         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
7340         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
7341         created using server names.  If we use the feature without declaring
7342         it, Gnus does not properly manage server and group state.
7343
7344         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
7345         bound.
7346
7347 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7348
7349         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
7350         looking up the method using GROUP's prefix before inventing a new one.
7351         It is used on killed/unknown groups in various places where returning
7352         an all-new method isn't expected by the caller.
7353
7354         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
7355         and match semantics of gnus-group-real-prefix.
7356
7357 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
7358
7359         * nnmail.el (nnmail-broken-references-mailers): New variable.
7360         (nnmail-ignore-broken-references): New function generalizing
7361         nnmail-fix-eudora-headers.
7362         (nnmail-fix-eudora-headers): Now obsolete.
7363
7364         * gnus-art.el (gnus-button-handle-custom): Support
7365         `customize-apropos*'.
7366
7367 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7368
7369         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
7370
7371         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
7372         articles.
7373
7374 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
7375
7376         * message.el (message-cite-reply-above): New variable.
7377         (message-yank-original): Use it.
7378
7379 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7380
7381         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
7382
7383 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
7384
7385         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
7386         as read.
7387
7388         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
7389
7390 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
7391
7392         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
7393         (gnus-bookmark-default-file): Use gnus-directory.
7394         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
7395         Remove "*" in doc string.
7396         (gnus-bookmark-write-file): Simplify.
7397         (gnus-bookmark-maybe-sort-alist): Use `when'.
7398         (gnus-bookmark-get-bookmark): Fix typo in doc string.
7399         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark): Add
7400         FIXME about Emacs 21 and XEmacs compatibility.
7401         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
7402         compatibility.
7403         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
7404         compatibility.
7405         (gnus-bookmark-menu-heading): Fix version.
7406
7407 2006-06-19  Bastien Guerry  <bzg@altern.org>
7408
7409         * gnus-bookmark.el: New file.
7410
7411 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7412
7413         * message.el (message-syntax-checks): Doc fix.
7414
7415 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7416
7417         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
7418         unsubscribed groups as if they were killed ones.  It causes duplicate
7419         entries in gnus-newsrc-alist.
7420
7421 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7422
7423         * message.el (message-syntax-checks): Doc fix.
7424         (message-send-mail): Add check for continuation headers.
7425         (message-check-news-header-syntax): Fix regexp used to check for
7426         continuation headers.
7427
7428 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7429
7430         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
7431
7432 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
7433
7434         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
7435
7436 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7437
7438         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
7439         default-truncate-lines.
7440
7441 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7442
7443         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
7444         to fill the utf-8 entry.
7445
7446         * lpath.el: Fbind unicode-precedence-list.
7447
7448 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7449
7450         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7451
7452 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
7453
7454         * gnus-agent.el (directory-files-and-attributes): Move all the way
7455         forward (the third and final move).
7456         (gnus-agent-read-agentview): Trap reconstruction errors due to
7457         nonexistant directory.  Handle by returning nil.
7458
7459 2006-05-30  Didier Verna  <didier@xemacs.org>
7460
7461         * message.el (message-dont-reply-to-names): Update the custom type.
7462         * message.el (message-dont-reply-to-names): New defsubst: potentially
7463         convert a list of regexps into a single one.
7464         * message.el (message-get-reply-headers): Use it.
7465         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
7466
7467 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7468
7469         * gnus-agent.el (directory-files-and-attributes): Move forward.
7470
7471 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7472
7473         * gnus-ml.el (gnus-mailing-list-subscribe)
7474         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
7475         (gnus-mailing-list-message): Fix doc strings.
7476
7477 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7478
7479         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
7480         of doing it manually.
7481
7482 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7483
7484         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
7485         comment.
7486
7487 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
7488
7489         * gnus-agent.el: Added gnus-agent-flush* to purge agent info.
7490         (gnus-agent-read-agentview): Fixed handling of end-of-file error.
7491         (gnus-agent-read-local): All symbols allocated in my-obarray.
7492         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
7493         (gnus-agent-regenerate-group): Check numeric names to see if they are
7494         messages or groups.
7495         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
7496         better way of do this...)
7497
7498         * gnus-cache.el (gnus-agent-total-fetched-for): Ignore
7499         'dummy.group' (there should be a better way of do this...)
7500
7501 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7502
7503         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
7504         (gnus-saved-headers): Ditto.
7505         (gnus-default-article-saver): Mention functions may have properties.
7506         (gnus-article-save): Override gnus-save-all-headers and
7507         gnus-saved-headers by :headers property which saver function may have.
7508         (gnus-summary-save-in-file): Add :headers property.
7509         (gnus-summary-write-to-file): Ditto.
7510
7511         * gnus-sum.el (gnus-summary-save-article): Bind
7512         gnus-prompt-before-saving to t when saving many articles in a file;
7513         always show all headers.
7514
7515         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
7516
7517 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
7518
7519         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
7520         marks.
7521
7522         * message.el (message-indent-citation): Add optional arguments to allow
7523         using it outside of message buffers.
7524
7525         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
7526         (gnus-article-treat-unfold-headers): Use it.
7527         (gnus-article-truncate-lines): New variable.
7528         (gnus-article-mode): Use it.
7529         (gnus-article-toggle-truncate-lines): New function.
7530
7531         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar): Add
7532         gnus-article-toggle-truncate-lines.
7533
7534         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
7535         coding system in XEmacs, use binary.
7536
7537 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7538
7539         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
7540         after-load-alist.
7541
7542         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
7543         this function should save decoded articles.
7544         (gnus-summary-write-to-file): Use property to specify this function
7545         should save decoded articles and specify gnus-summary-save-in-file
7546         should be used to save articles other than the first one when saving
7547         many articles.
7548         (gnus-summary-save-body-in-file): Use property to specify this
7549         function should save decoded articles.
7550         (gnus-summary-write-body-to-file): Use property to specify this
7551         function should save decoded articles and specify
7552         gnus-summary-save-body-in-file should be used to save articles other
7553         than the first one when saving many articles.
7554
7555         * gnus-sum.el (gnus-summary-save-article): Simplify.
7556
7557 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7558
7559         * gnus-art.el (gnus-default-article-saver): Add
7560         gnus-summary-write-body-to-file.
7561         (gnus-article-save-coding-system): Don't use coding system object
7562         in XEmacs.
7563         (gnus-read-save-file-name): Add optional `dir-var' argument which
7564         specifies directory in which files are saved; work even if optional
7565         `variable' argument is not specified.
7566         (gnus-summary-write-to-file): Read file name.
7567         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
7568         (gnus-summary-write-body-to-file): New function.
7569
7570         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
7571         (gnus-summary-local-variables): Add it.
7572         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
7573         (gnus-summary-save-article): Remove optional `decode' argument;
7574         determine whether to decode articles by the value of
7575         gnus-default-article-saver; when saving many files using
7576         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
7577         it first and use gnus-summary-save-in-file or
7578         gnus-summary-save-body-in-file thereafter unless
7579         gnus-prompt-before-saving is always; move point to article which
7580         will be saved.
7581         (gnus-summary-save-article-file): Revert.
7582         (gnus-summary-write-article-file): Revert.
7583         (gnus-summary-save-article-body-file): Revert.
7584         (gnus-summary-write-article-body-file): New function.
7585
7586 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7587
7588         * gnus-art.el (gnus-default-article-saver): Doc fix.
7589         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
7590         from gnus-summary-save-article-coding-system, and default to a
7591         certain coding system.
7592         (gnus-output-to-file): Add coding cookie and encode text according
7593         to gnus-article-save-coding-system; don't use mm-append-to-file.
7594
7595         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
7596         gnus-art.el and rename to gnus-article-save-coding-system.
7597         (gnus-summary-save-article): Require gnus-art; don't show all
7598         headers if it decodes articles; don't add coding cookie here;
7599         don't bind mm-text-coding-system-for-write.
7600         (gnus-summary-save-article-file): Save decoded articles.
7601         (gnus-summary-write-article-file): When saving many files, use
7602         gnus-summary-write-to-file first and gnus-summary-save-in-file
7603         thereafter unless gnus-prompt-before-saving is always.
7604         (gnus-summary-save-article-body-file): Save decoded articles.
7605
7606         * lpath.el: Fbind select-safe-coding-system for XEmacs.
7607
7608 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7609
7610         * nnrss.el (nnrss-check-group): Bind hash-index.
7611
7612 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
7613
7614         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
7615         its hash index.  Store this hash in `nnrss-group-data'.
7616         (nnrss-read-group-data): Update accordingly.
7617
7618 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7619
7620         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
7621         entry.
7622
7623         * gnus-sum.el (gnus-summary-make-menu-bar): Add
7624         gnus-article-browse-html-article.
7625
7626 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
7627
7628         * gnus-sum.el (gnus-summary-mime-map): Add
7629         gnus-article-browse-html-article.
7630
7631         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
7632
7633 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7634
7635         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
7636         suitable coding systems in customize.
7637
7638 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
7639
7640         * mail-source.el (mail-sources): Fix custom type.
7641
7642 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
7643
7644         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
7645         (gnus-summary-expire-articles-now): Shorten prompt.
7646
7647         * gmm-utils.el (wid-edit): Require.
7648         (defun-gmm): Renamed from `gmm-defun-compat'.
7649         (gmm-image-search-load-path): Use it.
7650         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
7651
7652 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7653
7654         * gnus-sum.el (gnus-summary-save-article-coding-system): New
7655         variable.
7656         (gnus-summary-save-article): Add optional `decode' argument.  If
7657         it is set and gnus-summary-save-article-coding-system is non-nil,
7658         save decoded article.
7659         (gnus-summary-write-article-file): Save decoded article if
7660         gnus-summary-save-article-coding-system is non-nil.
7661
7662         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
7663         type.
7664
7665 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7666
7667         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
7668
7669 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7670
7671         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
7672         first to test gnus-single-article-buffer which may be buffer-local.
7673
7674         * gnus-sum.el (gnus-summary-setup-buffer): Make
7675         gnus-single-article-buffer buffer-local and nil in ephemeral
7676         group; make gnus-article-buffer, gnus-article-current, and
7677         gnus-original-article-buffer always buffer-local.
7678         (gnus-summary-exit): Kill article buffer belonging to ephemeral
7679         group.
7680         (gnus-handle-ephemeral-exit): Don't move to next summary line.
7681
7682 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
7683
7684         * nnml.el (nnml-request-compact-group): Compressed files might not
7685         have .gz extension.
7686
7687 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7688
7689         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
7690         (mm-copy-to-buffer): Use with-current-buffer.
7691         (mm-display-part): Simplify.
7692         (mm-inlinable-p): Add optional arg `type'.
7693
7694 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7695
7696         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
7697         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
7698         Try harder to show the attachment internally or externally using
7699         gnus-mime-view-part-as-type.
7700
7701 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
7702
7703         * message.el (message-from-style, message-signature-separator)
7704         (message-user-organization-file, message-send-mail-function)
7705         (message-citation-line-function, message-yank-prefix)
7706         (message-indent-citation-function, message-signature)
7707         (message-signature-file, message-signature-insert-empty-line):
7708         Remove autoloads.
7709
7710         * gnus-art.el (gnus-buttonized-mime-types): Remove
7711         "multipart/signed".  Revert 2006-04-26 change.
7712
7713 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7714
7715         * gnus.el (gnus-version-number): Bump version.
7716
7717 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7718
7719         * gnus.el: No Gnus v0.5 is released.
7720
7721 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7722
7723         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
7724         fetching articles by message-id.
7725
7726 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7727
7728         * message.el (hashcash): Require hashcash as normal.
7729
7730         * ecomplete.el (ecomplete-highlight-match-line): Use
7731         point-at-eol.
7732         (ecomplete-highlight-match-line): Use `highlight', because that
7733         face exists in both Emacs and XEmacs.
7734
7735         * message.el (message-display-abbrev): Use point-at-bol.
7736
7737         * mail-source.el: Don't require timer/timer-funcs.
7738
7739         * gnus-async.el: Ditto.
7740
7741         * password.el: Ditto.
7742
7743         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
7744
7745         * mm-url.el: Ditto.
7746
7747         * gnus-xmas.el: Don't require timer-funcs.
7748
7749         * mm-util.el: Require timer/timer-funcs.
7750
7751 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7752
7753         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
7754         Close.
7755
7756 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7757
7758         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
7759         unibyte after clear-decrypt function runs.
7760
7761         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
7762         returns as a unibyte string.
7763
7764 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7765
7766         * lpath.el: Revert.
7767
7768         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
7769         (pgg-gpg-process-sentinel): Revert.
7770
7771         * pgg-pgp.el (pgg-pgp-process-region): Revert.
7772         (pgg-pgp-lookup-key): Revert.
7773
7774         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
7775         (pgg-pgp5-lookup-key): Revert.
7776
7777         * pgg.el (pgg-fetch-key): Revert.
7778
7779 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7780
7781         * lpath.el: Fbind string-as-multibyte for XEmacs.
7782
7783         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
7784         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
7785         (mml1991-pgg-encrypt): Ditto.
7786
7787         * pgg-gpg.el (pgg-string-to-multibyte): New function.
7788         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
7789         a multibyte buffer.
7790
7791         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
7792         (pgg-pgp-lookup-key): Ditto.
7793
7794         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
7795         (pgg-pgp5-lookup-key): Ditto.
7796
7797         * pgg.el (pgg-fetch-key): Ditto.
7798
7799 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
7800
7801         * message.el (message-user-organization-file): Check several
7802         locations of the organization file.
7803
7804         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
7805         Add gnus-article-view-part-as-type.
7806
7807         * gnus-art.el (gnus-article-view-part-as-type): New function.
7808
7809         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
7810         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
7811
7812         * mml.el: Simplify autoload.
7813         (mml-mode): defvar dnd-protocol-alist instead of using
7814         symbol-value.
7815         (mml-default-directory): New variable.
7816         (mml-minibuffer-read-file): Use it.
7817         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
7818
7819         * message.el (message-citation-line-format): New variable.
7820         (message-insert-formated-citation-line): New function.
7821         (message-citation-line-function): Add
7822         `message-insert-formated-citation-line' to custom type.
7823
7824         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
7825         to doc string.
7826
7827         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
7828         depending on mm-verify-option.
7829
7830 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7831
7832         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
7833         binding pgg-* variables; reimplement the section which prevents
7834         MIME header from being signed.
7835         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
7836         pgg-text-mode; remove a blank line at the top of body.
7837
7838         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
7839         lines at the top of body; use gnus-newsgroup-charset if there's no
7840         Charset header.
7841
7842 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7843
7844         * message.el (message-self-insert-commands): Doc fix.
7845
7846         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
7847         (mm-uu-pgp-encrypted-test): Ditto.
7848         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
7849         between header and body; return application/pgp-encrypted handle
7850         if decryption failed; decode decrypted body by charset.
7851
7852         * mm-decode.el (mm-automatic-display): Don't make application/pgp
7853         element match to application/pgp-*.
7854
7855 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7856
7857         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
7858         HTML.
7859
7860 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7861
7862         * mail-source.el (mail-source-call-script): Message the error
7863         string.
7864
7865 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7866
7867         * gnus-util.el (gnus-byte-compile): Use it.
7868
7869 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
7870
7871         * gnus-util.el (kill-empty-logs): New function.
7872
7873 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7874
7875         * message.el (message-mail-alias-type): Doc fix.
7876         (message-mail-alias-type-p): New function.
7877         (message-send): Use it.
7878         (message-mode): Ditto.
7879         (message-strip-forbidden-properties): Ditto.
7880
7881         * ecomplete.el (ecomplete-database-file-coding-system): New
7882         variable.
7883         (ecomplete-save): Use it.
7884         (ecomplete-setup): Use it.
7885
7886 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7887
7888         * message.el (message-self-insert-commands): New variable.
7889         (message-strip-forbidden-properties): Use it.
7890
7891 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7892
7893         * message.el (message-put-addresses-in-ecomplete): Use a regexp
7894         that doesn't make XEmacs choke.
7895
7896 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
7897
7898         * gnus-util.el (gnus-replace-in-string):
7899         Prefer replace-regexp-in-string over of replace-in-string.
7900
7901 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7902
7903         * gnus-util.el (gnus-select-frame-set-input-focus):
7904         Use select-frame-set-input-focus if it is available in XEmacs; use
7905         definition defined in Emacs 22 for old Emacsen.
7906
7907         * dgnushack.el: Autoload unmorse-region for XEmacs.
7908
7909         * lpath.el: Bind cursor-in-non-selected-windows and
7910         select-frame-set-input-focus for XEmacs.
7911
7912 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7913
7914         * mm-view.el (mm-inline-text): Use equal instead of equalp.
7915
7916 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
7917
7918         * gnus-registry.el (gnus-registry-cache-save): Remove text
7919         properties when saving via the temp buffer.
7920
7921 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7922
7923         * message.el (message-generate-hashcash): Honor custom type.
7924
7925 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7926
7927         * message.el (message-generate-hashcash): Default to non-nil when
7928         hashcash is found.
7929
7930         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
7931         (gnus-refer-thread-limit): Increase default to 500.
7932
7933         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
7934
7935         * flow-fill.el (fill-flowed): Allow delete-space.
7936
7937 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7938
7939         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
7940         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
7941         Remove autoloads.
7942
7943 2006-04-18  Simon Josefsson  <jas@extundo.com>
7944
7945         * message.el (message-generate-hashcash): Default to.
7946
7947 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7948
7949         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
7950         concatenating segments rather than before concatenating them.
7951
7952 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7953
7954         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
7955
7956 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7957
7958         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
7959
7960         * message.el (message-forward-make-body-plain): Allow
7961         message-forward-ignored-headers to be a list.
7962         (message-remove-ignored-headers): Factor out into function.
7963         (message-forward-make-body-mml): Use it.
7964
7965         * imap.el (imap-quote-specials): New function.
7966         (imap-login-auth): Quote specials.
7967
7968         * rfc2231.el (rfc2231-parse-string): Remove dead code.
7969         (rfc2231-parse-string): Allow concatanation of parameters that
7970         aren't contiguous.  The test case is
7971           (mail-header-parse-content-type "message/external-body;
7972             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
7973             access-type=LOCAL-FILE;
7974             name*1*=plugh%2fhello-sailor%2fbing.pdf")
7975
7976 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7977
7978         * nntp.el (nntp-accept-process-output): Return the value of
7979         `nnheader-accept-process-output'.
7980
7981 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7982
7983         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
7984         (gnus-button-alist): Recognize more diff formats.
7985         (gnus-button-patch): Strip directory.
7986
7987 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7988
7989         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
7990         Emacs 22 when setting focus.
7991
7992 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7993
7994         * gnus-art.el (gnus-article-treat-types): Do treatment of
7995         text/x-verbatim parts.
7996         (gnus-button-patch): New command.
7997
7998         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
7999         addresses that contain invalid characters.
8000
8001 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8002
8003         * message.el (message-put-addresses-in-ecomplete): Use
8004         gnus-replace-in-string.
8005         (message-is-yours-p): Use the more correct
8006         mail-header-parse-address instead of
8007         mail-extract-address-components.
8008         (message-put-addresses-in-ecomplete): Fix typo.
8009
8010         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
8011         keystroke.
8012
8013         * gnus-art.el (gnus-treatment-function-alist): Change order of
8014         newsgroups/generic header folding to avoid double-folding.
8015
8016         * message.el (message-hidden-headers): Add X-Draft-From.
8017
8018         * gnus-sum.el (gnus-summary-repeat-search-article-forward): New
8019         command.
8020         (gnus-summary-repeat-search-article-backward): New command.
8021
8022         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
8023         groups in the parent topic.
8024
8025 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
8026
8027         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
8028         (spam-extra-header-to-number): Return the CRM114 number as a
8029         number instead of a string.
8030
8031 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8032
8033         * gnus-art.el (gnus-face-properties-alist): Moved here from
8034         gnus-fun.
8035
8036         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
8037
8038 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8039
8040         * message.el (message-strip-forbidden-properties): Only display on
8041         self-insert-command.
8042
8043         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
8044         reindent.
8045         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
8046
8047 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
8048
8049         * smiley.el (smiley-style): Fix typo.
8050
8051 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8052
8053         * hashcash.el (hashcash-insert-payment-async-2): Use
8054         message-goto-eoh instead of doing it manually.
8055         (mail-add-payment): Use message-narrow-to-header instead of trying
8056         to do the same itself.
8057
8058         * message.el (message-hidden-headers): Add Face.
8059
8060         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
8061         reparenting code.
8062         (gnus-summary-reparent-children): Refactored out code.
8063         (gnus-summary-thread-map): New keystroke.
8064         (gnus-summary-reparent-children): Make into command.
8065
8066         * smiley.el (smiley-style): Default to `medium' if using a large
8067         font.
8068
8069         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
8070         does it itself.
8071
8072         * message.el (message-point-in-header-p): Simplify definition.
8073
8074 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8075
8076         * nnagent.el (nnagent-request-set-mark): Silence log file
8077         writing.
8078         (nnagent-request-set-mark): Use write-region instead of
8079         append-to-file.
8080
8081         * gnus-sum.el (gnus-read-header): Fudge article number if using a
8082         strange select method.
8083
8084         * ecomplete.el (ecomplete-display-matches): Get highlightling
8085         right.
8086         (ecomplete-display-matches): Use literals.
8087         (ecomplete-display-matches): Disable message logging.
8088
8089         * message.el (message-display-abbrev): Small optimization.
8090
8091         * ecomplete.el (ecomplete-display-matches): Allow automatic
8092         display.
8093
8094         * message.el (message-strip-forbidden-properties): Display
8095         abbrevs.
8096         (message-display-abbrev): Get automatic display right.
8097
8098         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
8099         keystrokes.
8100
8101 2006-04-13  Romain Francoise  <romain@orebokech.com>
8102
8103         TODO: Backport to v5-10!
8104
8105         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
8106         Moved here (and renamed) from gnus-registry.el.
8107
8108         * gnus-registry.el: Require gnus-util.
8109         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
8110
8111 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8112
8113         * gnus-group.el (gnus-group-catchup-current): Change
8114         if-then-else-if-then-else into cond.
8115         (gnus-group-catchup): Indent.
8116         (group-name-at-point): New function.
8117         (gnus-fetch-group): Provide default from thing at point.
8118
8119 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8120
8121         * message.el (message-display-abbrev): Fix regexp.
8122
8123         * ecomplete.el (ecomplete-highlight-match-line): Reimplement
8124         choosing.
8125         (ecomplete-highlight-match-line): Fix up code rewrite, remove
8126         dead variables.
8127
8128         * message.el (message-newline-and-indent): Remove debugging.
8129         (message-display-abbrev): Use new implementation.
8130
8131 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
8132
8133         * gnus-art.el (gnus-article-mode): Set
8134         cursor-in-non-selected-windows to nil.
8135
8136         * smiley.el: Revert previous change.
8137         (smiley-data-directory): defvar it before using it in the
8138         defcustom of `smiley-style'.
8139
8140 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8141
8142         * message.el (message-newline-and-indent): New function.
8143
8144         * ecomplete.el: Implement more bits.
8145
8146         * message.el (message-put-addresses-in-ecomplete): Clean up the
8147         string.
8148
8149         * ecomplete.el (ecomplete-add-item): Chop off decimals.
8150
8151         * gnus-sum.el (gnus-summary-save-parts): Bind
8152         gnus-summary-save-parts-counter and use it to make unique file
8153         names.
8154
8155         * gnus-art.el (gnus-ignored-headers): Add some more headers.
8156
8157         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
8158         parameter to say whether to actually parse the individual
8159         addresses.
8160
8161         * message.el (message-put-addresses-in-ecomplete): New function.
8162         (ecomplete): Require.
8163         (message-mail-alias-type): Add ecomplete as an option.
8164
8165 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
8166
8167         * flow-fill.el (fill-flowed): Remove trailing space from blank
8168         quoted lines.
8169
8170 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8171
8172         * smiley.el (smiley-style): Move definition later to avoid a
8173         compilation warning.
8174
8175 2006-04-12  Kenichi Handa  <handa@m17n.org>
8176
8177         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
8178         buffer and then decode the buffer text if necessary.
8179         (rfc2231-encode-string): Be sure to work on multibyte buffer at
8180         first, and after mm-encode-body, change the buffer to unibyte.
8181         Use mm-disable-multibyte instead of set-buffer-multibyte.
8182
8183 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8184
8185         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
8186         Content-Type header instead of Content-Disposition header.
8187         (gnus-mime-inline-part): Ditto.
8188         (gnus-mime-view-part-as-charset): Ignore charset that the part
8189         specifies.
8190
8191         * mm-decode.el (mm-display-part): Work with external parts and
8192         usual parts similarly.
8193
8194         * mm-extern.el (mm-inline-external-body): Use mm-display-part
8195         instead of gnus-display-mime.
8196
8197         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
8198         instead of with-temp-buffer.
8199
8200         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
8201         tag to summarized topics part in order to encode non-ASCII text.
8202
8203 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8204
8205         * smiley.el (smiley-style): New variable.
8206         (smiley-directory): New function.
8207         (smiley-data-directory): Derive from `smiley-style' using
8208         `smiley-directory'.
8209         (smiley-regexp-alist): Add new entries.
8210
8211         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
8212         (gnus-article-browse-delete-temp): Add :version.
8213
8214 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
8215
8216         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
8217         the sieve region.
8218
8219 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8220
8221         * gnus.el (gnus-version-number): Bump version.
8222
8223 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8224
8225         * gnus.el: No Gnus v0.4 is released.
8226
8227 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8228
8229         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
8230         layout.
8231
8232         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
8233         unknown charset.
8234
8235         * message.el (message-header-synonyms): Add Original-To to the
8236         default.
8237
8238         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
8239         optional parameter.
8240
8241 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
8242
8243         * gnus-fun.el (gnus): Require it for gnus-directory.
8244
8245 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8246
8247         * gnus-fun.el (gnus-face-properties-alist): Add :version.
8248
8249 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8250
8251         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
8252
8253 2006-04-05  Simon Josefsson  <jas@extundo.com>
8254
8255         * password.el (password-reset): New function.
8256
8257 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8258
8259         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region): Wait
8260         for BEGIN_SIGNING too, new in GnuPG 1.4.3.
8261
8262 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8263
8264         * nnweb.el (nnweb-google-create-mapping): Update regexp.
8265         Some whitespace was matched into the url, which broke browsing hits
8266         > 100 when mm-url-use-external was nil.
8267
8268 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
8269
8270         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Check
8271         gnus-extra-headers for 'Newsgroups.
8272
8273         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
8274         bound.
8275
8276 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
8277
8278         * pgg-gpg.el: Clean up process buffers every time gpg processes
8279         complete.
8280
8281 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
8282
8283         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
8284         doc string.
8285
8286 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
8287
8288         * pgg-gpg.el (pgg-gpg-process-filter)
8289         (pgg-gpg-wait-for-completion): Check if buffer is alive.
8290
8291         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
8292         lines, temporary fix.
8293
8294 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
8295
8296         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
8297
8298 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
8299
8300         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
8301         default-enable-multibyte-characters.  This reverts the change from
8302         revision 6.17 which is no longer necessary because the passphrase
8303         is sent separately now.  GnuPG messages are unreadable under
8304         multibyte locales with default-enable-multibyte-characters set to
8305         nil.
8306
8307 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
8308
8309         * message.el (message-tool-bar-gnome): Move "spell".
8310
8311 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
8312
8313         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
8314         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
8315         instead.
8316
8317 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
8318
8319         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Improve
8320         newsgroups handling for NNTP overviews which don't include
8321         Newsgroups.
8322
8323 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8324
8325         * message.el (message-resend): Bind message-generate-hashcash to nil.
8326
8327 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8328
8329         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
8330         when searching for already-paid recipients.
8331
8332 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
8333
8334         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
8335         passphrases when it is not needed.
8336         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
8337         passphrase stuff from gpg, should only be necessary when you use
8338         gpg with a smartcard.
8339
8340 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8341
8342         * mml.el (mml-insert-mime): Ignore cached contents of
8343         message/external-body part.
8344
8345         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
8346         (mm-insert-part): Ditto.
8347
8348 2006-03-23  Simon Josefsson  <jas@extundo.com>
8349
8350         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
8351         Reiner.
8352         (pgg-gpg-use-agent-p): Use it again.
8353
8354 2006-03-23  Simon Josefsson  <jas@extundo.com>
8355
8356         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
8357         older emacsen.
8358         (pgg-gpg-use-agent-p): Don't use it.
8359
8360 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
8361
8362         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
8363         if we can.
8364
8365 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
8366
8367         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
8368         (pgg-gpg-update-agent): New function.
8369         (pgg-gpg-use-agent-p): New function.
8370         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
8371         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
8372         (pgg-gpg-sign-region): Use it.
8373
8374 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8375
8376         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
8377         Reported by Ralf Wachinger <rwachinger@gmx.de>.
8378
8379 2006-03-21  Simon Josefsson  <jas@extundo.com>
8380
8381         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
8382         <wilde@sha-bang.de>.
8383         (pgg-gpg-use-agent): New variable.
8384         (pgg-gpg-process-region): Use it.
8385         (pgg-gpg-encrypt-region): Likewise.
8386         (pgg-gpg-encrypt-symmetric-region): Likewise.
8387         (pgg-gpg-decrypt-region): Likewise.
8388         (pgg-gpg-sign-region): Likewise.
8389         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
8390
8391 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
8392
8393         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
8394
8395         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
8396         Add comment on version.
8397
8398 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
8399
8400         * smiley.el: Add missing test smiley.
8401
8402 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8403
8404         * mm-decode.el (mm-with-part): New macro.
8405         (mm-get-part): Use it; work with message/external-body as well.
8406         (mm-save-part): Treat name and filename equally.
8407
8408         * mm-extern.el (mm-extern-cache-contents): New function.
8409         (mm-inline-external-body): Use it; force the part to be displayed;
8410         move undisplayer added to the cached handle to the parent.
8411
8412         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
8413         (gnus-mime-view-part-as-type): Work with message/external-body.
8414
8415         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
8416
8417 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
8418
8419         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
8420         images in image-load-path.  [Sync with image.el, revision 1.60, in
8421         Emacs.]
8422
8423 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
8424
8425         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
8426         path rather than symbol.  Always return list of directories.
8427         Guarantee that image directory comes first.  [Sync with image.el,
8428         revision 1.59, in Emacs.]
8429
8430         * message.el (message-make-tool-bar): Adjust to new API of
8431         `gmm-image-load-path-for-library'.
8432
8433         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8434
8435         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8436
8437 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8438
8439         * gnus-art.el (gnus-article-only-boring-p):
8440         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
8441         intangible text.
8442         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
8443
8444 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
8445
8446         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.  Use
8447         `defun' instead of `gmm-defun-compat'.
8448
8449 2006-03-14  Simon Josefsson  <jas@extundo.com>
8450
8451         * message.el (message-unique-id): Don't use message-number-base36
8452         if (user-uid) is a float.
8453         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
8454
8455 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8456
8457         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
8458
8459         * gnus-art.el (gnus-mime-display-single): Make sure there is an
8460         empty line between a part and a message part.
8461
8462 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
8463
8464         * smiley.el: Add more test smileys.
8465         (smiley-data-directory, smiley-regexp-alist)
8466         (gnus-smiley-file-types): Fix doc strings.
8467         (smiley-update-cache): Clear smiley-cached-regexp-alist before
8468         adding new elements.
8469         (smiley-mouse-map): Unused code.  Make it a comment.
8470
8471 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8472
8473         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
8474         scan latest NoCeM messages instead of old ones.
8475         (gnus-nocem-check-article): Fix regexps so as to match to PGP
8476         delimiters that are recently used.
8477         (gnus-nocem-load-cache): Add autoload cookie.
8478
8479         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
8480
8481         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
8482         level which is larger than gnus-use-nocem is specified.
8483
8484         * gnus-group.el (gnus-group-get-new-news): Ditto.
8485
8486 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
8487
8488         * gnus-util.el (gnus-tool-bar-update): New function.
8489
8490         * gnus-group.el (gnus-group-update-tool-bar): New variable.
8491         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
8492
8493         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
8494
8495         * gnus-group.el (gnus-group-redraw-when-idle)
8496         (gnus-group-redraw-check): Remove.
8497         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
8498
8499 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8500
8501         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
8502         if optional last element is specified in splits (FIELD VALUE...).
8503
8504 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
8505
8506         * message.el (message-make-tool-bar): Rename gmm-image-load-path
8507         to gmm-image-load-path-for-library.  Call with no-error argument.
8508         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
8509
8510         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8511
8512         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8513
8514         * gmm-utils.el (gmm-image-load-path): Remove alias.
8515
8516 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
8517
8518         * gmm-utils.el (gmm-image-load-path): Add alias.
8519
8520         * nnml.el (nnml-generate-nov-databases-directory): Rename from
8521         nnml-generate-nov-databases-1.
8522         (nnml-generate-nov-databases): Use it.
8523         (nnml-generate-nov-databases-directory): Document no-active
8524         argument.
8525
8526         * gmm-utils.el (gmm-image-load-path-for-library): Return single
8527         directory if path is t.  Add no-error.
8528
8529         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
8530         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
8531
8532         * gnus-art.el (gnus-article-browse-delete-temp-files): Simplify
8533         resetting gnus-article-browse-html-temp-list.
8534
8535         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
8536         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
8537         Add example to docstring.  Rename local variables.  Move error
8538         checks to default case in cond and simplify.
8539
8540 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8541
8542         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
8543         handle is multipart when calling it recursively.
8544         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
8545
8546 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
8547
8548         * nnimap.el (nnimap-request-update-info-internal): Optimize.
8549         Don't `gnus-uncompress-range' to avoid excessive memory usage.
8550
8551 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8552
8553         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
8554         is loaded.
8555
8556         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
8557         loaded.
8558
8559 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
8560
8561         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
8562         to "Emacs 23 (unicode)" in doc string.
8563
8564         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
8565         "Emacs 23 (unicode)" in comment.
8566
8567 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8568
8569         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
8570
8571         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
8572         characters 160 through 255 in Emacs 23.
8573
8574 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8575
8576         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
8577         gnus-article-browse-html-temp.
8578         (gnus-article-browse-delete-temp): Make it customizable.  Add
8579         `file'.  Adjust doc string.
8580         (gnus-article-browse-delete-temp-files): Add argument.  Allow
8581         query for each file.  Adjust doc string.
8582         (gnus-article-browse-html-parts): Add
8583         `gnus-article-browse-delete-temp-files' to
8584         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
8585
8586 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
8587
8588         * gnus-art.el (gnus-article-browse-html-temp)
8589         (gnus-article-browse-delete-temp): New variables.
8590         (gnus-article-browse-delete-temp-files): New function.
8591         (gnus-article-browse-html-parts): Use it.
8592
8593 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8594
8595         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
8596
8597         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
8598         string.
8599
8600         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
8601         gnus-summary-insert-new-articles when unplugged.  Remove
8602         gnus-summary-search-article-forward.
8603
8604         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
8605         display-visual-class instead of display-color-cells.
8606
8607 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8608
8609         * dgnushack.el: Autoload customize-group for XEmacs.
8610
8611         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
8612         message/* containing non-ASCII text properly.
8613
8614 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
8615
8616         * message.el: Require gmm-utils, remove autoloads.
8617         (message-tool-bar): Set default based on
8618         gmm-tool-bar-style.
8619         (message-tool-bar-gnome): Add gmm-customize-mode.
8620
8621         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
8622         gmm-tool-bar-style.
8623         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
8624
8625         * gnus-group.el (gnus-group-tool-bar): Set default based on
8626         gmm-tool-bar-style.
8627         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
8628
8629         * gmm-utils.el (gmm-image-directory): Rename variable from
8630         gmm-image-load-path.
8631         (gmm-image-load-path): Use gmm-image-directory.
8632         (gmm-customize-mode): New function.
8633         (gmm-tool-bar-style): New variable.
8634
8635         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
8636         gnus-group-redraw-line-number.
8637         (gnus-group-redraw-check): Simplify.
8638         (gnus-group-tool-bar-update): Remove redraw check.
8639         (gnus-group-make-tool-bar): Add redraw check.
8640
8641 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
8642
8643         * gnus-art.el (gnus-button): Add missing parentheses.
8644
8645 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8646
8647         * lpath.el: Fbind line-number-at-pos.
8648
8649 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8650
8651         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
8652
8653 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8654
8655         * gnus-art.el (gnus-button): New face.
8656         (gnus-article-button-face): Use it.
8657
8658         * gnus-sum.el (gnus-summary-tool-bar-gnome): Add
8659         gnus-summary-next-page.  Re-order.
8660
8661         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
8662         next-node are now included.
8663         (gnus-group-redraw-line-number): New internal variable.
8664         (gnus-group-redraw-check): Helper function for updating the tool
8665         bar.
8666         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
8667
8668         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
8669
8670         * spam.el (spam-spamassassin-score-regexp): New internal variable.
8671         (spam-extra-header-to-number, spam-check-spamassassin-headers):
8672         Use it to match format of Spamassassin 3.0 and later.  Reported by
8673         IRIE Tetsuya <irie@t.email.ne.jp>.
8674         (spam-check-bogofilter)
8675         (spam-bogofilter-register-with-bogofilter): Fix args of
8676         `gnus-error' calls.
8677
8678 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8679
8680         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
8681         unnecessary interaction when sending queued mails.  Reported by
8682         TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
8683
8684 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
8685
8686         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
8687         first or last are nil.
8688
8689 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8690
8691         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
8692
8693 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8694
8695         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
8696
8697 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8698
8699         * dns.el (query-dns): Protect more against buggy tcp output.
8700
8701 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
8702
8703         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
8704         nov.php.
8705
8706 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8707
8708         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
8709         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
8710         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
8711         output on the server side.
8712         (nnweb-google-create-mapping): Update regexps and add some
8713         progress indication.
8714
8715 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
8716
8717         * gnus-group.el (gnus-group-tool-bar-gnome): Fix
8718         gnus-agent-toggle-plugged.  Re-order icons.
8719         (gnus-group-tool-bar-gnome): Add
8720         gnus-group-{prev,next}-unread-group.
8721         (gnus-group-tool-bar-gnome): Re-order icons.
8722
8723         * gnus-sum.el (gnus-summary-tool-bar-gnome): Move
8724         gnus-summary-insert-new-articles.
8725
8726         * message.el (message-tool-bar-gnome, message-tool-bar-retro): Fix
8727         comments.
8728
8729         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
8730         also available in Emacs 21.3.
8731
8732         * message.el (message-fix-before-sending): Change "Emacs 22" to
8733         "Emacs 23 (unicode)" in comment.
8734
8735         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
8736         "Emacs 23 (unicode)" in comment.
8737
8738         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
8739         comment.
8740         (mm-coding-system-p): Add comment about no-MULE XEmacs.
8741
8742         * mm-view.el (mm-fill-flowed): Add :version.
8743
8744 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8745
8746         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
8747         and load-path.
8748
8749 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
8750
8751         * message.el: Autoload gmm-image-load-path.
8752         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
8753         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
8754         consitency.
8755
8756         * gmm-utils.el (gmm-image-load-path): Also search in
8757         "../etc/images".  Don't set gmm-image-load-path if we don't find
8758         the image.
8759
8760 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8761
8762         * gmm-utils.el (gmm-image-load-path): Don't make
8763         `gmm-image-load-path' include subdirectories which the second arg
8764         `image' might specify.
8765
8766         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
8767         subdirectory to icon file names.
8768
8769         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
8770
8771 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
8772
8773         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
8774         gmm-image-load-path calls.
8775
8776         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8777
8778         * message.el (message-make-tool-bar): Ditto.
8779
8780         * mml.el (mml-preview): Added comment concerning tool bar icons.
8781
8782         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
8783         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
8784
8785         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
8786         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
8787
8788         * message.el (message-tool-bar-gnome): Use new icon names.
8789         (message-make-tool-bar): Use `gmm-image-load-path'.
8790
8791         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path): New
8792         functions from MH-E.
8793         (gmm-image-load-path): New variable from MH-E.
8794         (gmm-image-load-path): New function from MH-E.  Added arguments
8795         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
8796         *-image-load-path-called-flag.
8797
8798 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
8799
8800         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
8801
8802 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
8803
8804         * nnimap.el (nnimap-request-move-article): Change folder back to
8805         source group before deleting.
8806
8807 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
8808
8809         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
8810
8811         * gnus-art.el (mm-url-insert-file-contents-external): Autoload
8812         mm-url.
8813
8814         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
8815
8816 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8817
8818         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
8819         coding system which mm-charset-to-coding-system returns for a
8820         given charset is valid.
8821
8822 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
8823
8824         * html2text.el (html2text-remove-tag-list):
8825         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
8826
8827 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
8828
8829         * gnus-cus.el: Revert 2005-10-17 change.
8830
8831 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8832
8833         * gnus-art.el (article-strip-banner): Call
8834         article-really-strip-banner only when the regexp match is made.
8835
8836 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8837
8838         * gnus-art.el (article-strip-banner): Use
8839         gnus-extract-address-components instead of
8840         mail-header-parse-addresses to make it work with non-ASCII text;
8841         remove mail-encode-encoded-word-string.
8842
8843         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
8844         values which are surrounded with \"...\"; make it never cause a
8845         Lisp error; give up parsing of parameters if it failed in
8846         extracting type.
8847
8848 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
8849
8850         * smime.el (smime-cert-by-ldap-1): Fix bug where
8851         `smime-ldap-search' returns results without userCertificates.
8852
8853 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8854
8855         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
8856
8857 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
8858
8859         * spam.el (spam-check-spamassassin-headers): Adapt format for
8860         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
8861         <ari@mbf.ocn.ne.jp>.
8862         (spam-list-of-processors): Add spam-use-gmane.
8863
8864 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8865
8866         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
8867         make-temp-file; make it work with XEmacs as well.
8868
8869         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
8870         mm-make-temp-file.
8871
8872         * mm-decode.el (mm-display-external): Use the 3rd arg of
8873         mm-make-temp-file.
8874         (mm-create-image-xemacs): Ditto.
8875
8876 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8877
8878         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
8879         with message-narrow-to-headers.
8880         (gnus-draft-setup): Narrow to header to run message-fetch-field.
8881         (gnus-draft-check-draft-articles): New function.
8882         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
8883
8884 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
8885
8886         * gnus-art.el (gnus-article-browse-html-parts):
8887         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
8888         Don't use suffix argument for mm-make-temp-file for Emacs 21
8889         compatibility.  Remove useless `format'.
8890
8891 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8892
8893         * nnweb.el (nnweb-google-wash-article): Update regexps.
8894         (nnweb-group-alist): Use defvoo instead of defvar.
8895
8896 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8897
8898         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
8899         re-loading nn* modules.
8900
8901 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
8902
8903         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
8904         for `tool-bar-mode' and don't check it's default-value.
8905
8906         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8907
8908         * message.el (message-make-tool-bar): Ditto.
8909
8910         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
8911         `substring'.  Shorten tmp-file name.
8912
8913         * gnus.el: Remove bogus comment.
8914
8915 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
8916
8917         * gnus-art.el (gnus-article-browse-html-parts): New function.
8918         (gnus-article-browse-html-article): New function for viewing html
8919         articles with a browser.
8920
8921 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
8922
8923         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
8924         in elisp.
8925         (pgg-gpg-encrypt-symmetric-region): Ditto.
8926         (pgg-gpg-sign-region): Ditto.
8927
8928         * pgg-def.el (pgg-text-mode): New variable.
8929
8930         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
8931         (mml2015-pgg-encrypt): Ditto.
8932
8933         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
8934         (mml1991-pgg-encrypt): Ditto.
8935
8936 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8937
8938         * nnfolder.el (nnfolder-insert-newsgroup-line): Use
8939         message-make-date instead of current-time-string.
8940
8941         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
8942         to gnus-decoded which mm-uu might set.
8943
8944 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8945
8946         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
8947         don't decode quoted parameters; remove misimported Emacs code.
8948         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8949         (rfc2231-decode-encoded-string): Don't use split-string which
8950         behaves differently according to Emacs version; use
8951         mm-decode-coding-region to convert charset to coding-system.
8952         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8953         (rfc2231-encode-string): Remove misimported Emacs code.
8954
8955 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8956
8957         * gnus-art.el (article-decode-charset): Don't use ignore-errors
8958         when calling mail-header-parse-content-type.
8959         (article-de-quoted-unreadable): Ditto.
8960         (article-de-base64-unreadable): Ditto.
8961         (article-wash-html): Ditto.
8962
8963         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
8964         calling mail-header-parse-content-type and
8965         mail-header-parse-content-disposition.
8966         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
8967         mail-header-parse-content-type.
8968
8969         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
8970         insert charset and format parameters; encode description after
8971         inserting it to buffer.
8972         (mml-insert-parameter): Fold lines properly even if a parameter is
8973         segmented into two or more lines; change the max column to 76.
8974
8975         * rfc1843.el (rfc1843-decode-article-body): Don't use
8976         ignore-errors when calling mail-header-parse-content-type.
8977
8978         * rfc2231.el (rfc2231-parse-string): Return at least type if
8979         possible; don't cause an error even if it fails in parsing of
8980         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8981         (rfc2231-encode-string): Don't break lines at the beginning, leave
8982         it to mml-insert-parameter.
8983
8984         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
8985         calling mail-header-parse-content-type.
8986
8987 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
8988
8989         * spam-report.el (spam-report-gmane-use-article-number):
8990         Improve doc string.
8991         (spam-report-gmane-internal): Check if a suitable header was found
8992         in the article.
8993
8994 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8995
8996         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
8997         (rfc2231-encode-string): Make param*=value always begin with LWSP.
8998
8999 2006-02-05  Romain Francoise  <romain@orebokech.com>
9000
9001         Update copyright notices of all files in the gnus directory.
9002
9003 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9004
9005         * nnweb.el (nnweb-request-group): Avoid growing overview files.
9006
9007 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
9008
9009         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
9010         segmented lines of parameter value to cope with Thunderbird 1.5
9011         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
9012         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
9013         (rfc2231-encode-string): Don't make lines exceeding 76 column.
9014
9015 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
9016
9017         * mml.el (mml-generate-mime-1): Correct the order of inline signed
9018         parts.
9019
9020 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9021
9022         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
9023         there's only one active file for all servers.
9024         (nnweb-request-scan): Make sure nnweb-articles is initialized on
9025         solid groups.  Gnus might have used a FAST request to select the group.
9026         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
9027         and nnweb-search redundantly in the active file.
9028         (nnweb-request-list): Don't list bogus groups.  There can only be one.
9029         (nnweb-request-create-group): Don't use ARGS.
9030         (nnweb-possibly-change-server, nnweb-request-group): Remove some
9031         initialisations.  Let nnoo do the work.
9032
9033 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9034
9035         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
9036         Say the part has been decoded.
9037
9038         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
9039
9040 2006-01-31  Kevin Ryde  <user42@zip.com.au>
9041
9042         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
9043         mailcap-viewer-test-cache when there's no 'test clause, since that
9044         will invert the meaning of a "nil" test previously determined by
9045         mailcap-mailcap-entry-passes-test.
9046
9047 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9048
9049         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
9050         compiling.
9051
9052         * gnus-sum.el: Ditto.
9053
9054         * message.el: Don't bind tool-bar-map when compiling.
9055
9056 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
9057
9058         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
9059
9060 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9061
9062         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
9063         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
9064         current Google Groups.
9065
9066 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
9067
9068         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
9069         and tool-bar-mode.
9070
9071         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
9072         and tool-bar-mode.
9073
9074         * message.el (message-tool-bar-update): Simplify.
9075         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
9076
9077         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
9078         gnus-summary-buffer.
9079         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
9080         gnus-summary-reply.
9081
9082         * gmm-utils.el (gmm): Add :version.
9083
9084 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9085
9086         * Makefile.in (clean): New rule.
9087         (distclean): Use it.
9088
9089 2006-01-26  Steve Youngs  <steve@sxemacs.org>
9090
9091         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list): Don't
9092         autoload.
9093
9094 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9095
9096         * gmm-utils.el (gmm-verbose): Add :group.
9097
9098 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
9099
9100         * message.el: Change some comments WRT tool-bars.
9101
9102         * gnus-sum.el (gnus-summary-tool-bar)
9103         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
9104         (gnus-summary-tool-bar-zap-list): New variables.
9105         (gnus-summary-make-tool-bar): Complete rewrite using
9106         `gmm-tool-bar-from-list'.
9107
9108         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
9109         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list): New
9110         variables.
9111         (gnus-group-make-tool-bar): Complete rewrite using
9112         `gmm-tool-bar-from-list'.
9113         (gnus-group-tool-bar-update): New function.
9114
9115         * message.el (message-mode-field-menu): Add "Show hidden Headers".
9116
9117 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9118
9119         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
9120         is dissected into a single part of which the type is the same as
9121         the given one; decode charset.
9122
9123 2006-01-21  Kevin Ryde  <user42@zip.com.au>
9124
9125         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
9126         into alists as symbol not string, since that's what
9127         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
9128         look for.
9129
9130 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
9131
9132         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
9133         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
9134
9135         * message.el (message-tool-bar-gnome): Use gmm-ignore.
9136
9137 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9138
9139         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
9140         (gnus-xmas-mime-security-button-menu): New function.
9141
9142         * gnus-art.el (gnus-mime-security-button-commands): New variable.
9143         (gnus-mime-security-button-menu): New definition.
9144         (gnus-mime-security-button-map): Use them.
9145         (gnus-mime-security-button-menu): New function.
9146         (gnus-insert-mime-security-button): Addition to help echo.
9147         (gnus-mime-security-run-function, gnus-mime-security-save-part)
9148         (gnus-mime-security-pipe-part): New functions.
9149
9150         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
9151         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
9152
9153         * mm-decode.el (mm-handle-set-disposition): Remove.
9154         (mm-handle-set-description): Remove.
9155
9156 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9157
9158         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
9159         (mm-w3m-standalone-supports-m17n-p): New function.
9160         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
9161         w3m usage.
9162
9163         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone): Use
9164         mm-w3m-standalone-supports-m17n-p to alter w3m usage.
9165
9166 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
9167
9168         * message.el (message-tool-bar-zap-list): Use
9169         gmm-tool-bar-zap-list as custom type.
9170         (message-tool-bar-update): New function.
9171         (message-tool-bar, message-tool-bar-gnome)
9172         (message-tool-bar-retro): Add message-tool-bar-update.
9173         (message-tool-bar-gnome): Add flyspell-buffer.
9174
9175         * gnus-util.el (gnus-error): Describe `args'.
9176
9177         * gmm-utils.el (gmm-error): Describe `args'.
9178         (gmm-tool-bar-zap-list): New widget.
9179         (gmm-tool-bar-from-list): Improve description of `zap-list'.
9180
9181 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9182
9183         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
9184         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
9185         the number of recursive calls.
9186
9187         * mm-decode.el (mm-handle-set-disposition): New macro.
9188         (mm-handle-set-description): New macro.
9189
9190 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9191
9192         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
9193         encoding.
9194
9195 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9196
9197         * message.el (message-tool-bar-zap-list, message-tool-bar)
9198         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
9199         (message-tool-bar-local-item-from-menu): Remove.
9200         (message-tool-bar-map): Replace by `message-make-tool-bar'.
9201         (message-make-tool-bar): New function.
9202         (message-mode): Use `message-make-tool-bar'.
9203
9204         * gmm-utils.el: New file.
9205         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
9206         (gmm-lazy): New widget copied from `nnmail.el'.
9207         (gmm-tool-bar-from-list): New function for creating customizable
9208         tool bars.
9209         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
9210         output.
9211         (gmm): Add :prefix to defgroup.
9212
9213 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
9214
9215         * gmm-utils.el (gmm-widget-p): New function.
9216
9217 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9218
9219         * mml.el (mml-attach-file): Describe `description' in doc string.
9220         (mml-menu): Add Emacs MIME manual and PGG manual.
9221
9222 2006-01-20  Richard M. Stallman  <rms@gnu.org>
9223
9224         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
9225
9226 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
9227
9228         * nntp.el (nntp-end-of-line): Doc fix.
9229
9230 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
9231
9232         * imap.el (imap-open): Handle case where buffer is a buffer
9233         object.
9234
9235 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9236
9237         * gnus-delay.el (gnus-delay): Don't autoload.
9238         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9239         to be re-loaded when customizing the `gnus-delay' group.
9240
9241 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
9242
9243         * message.el (message-insert-citation-line): Use newlines.
9244
9245 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9246
9247         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
9248         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
9249         these routines, so the passphrase can be managed externally and
9250         passed in to the system.
9251         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
9252         pgg-add-passphrase-to-cache function.
9253
9254         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
9255         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
9256         these routines, so the passphrase can be managed externally and
9257         passed in to the system.
9258         (pgg-pgp5-sign-region): Use new name of
9259         pgg-add-passphrase-to-cache function.
9260
9261 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9262
9263         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
9264         part of the decoded armor to find the key-identifier.
9265         (pgg-gpg-lookup-key-owner): New function to return the
9266         human-readable identifier of a key owner.
9267         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
9268         itself.
9269         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
9270         the key value) if we have a key and can match it against a secret
9271         key.  Also, added a note pointing out fact that the prompt only
9272         indicates the first matching key.
9273
9274         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
9275         pgg-decrypt-region.
9276         (pgg-add-passphrase-to-cache): Rename from
9277         `pgg-add-passphrase-cache' to reduce confusion (all callers
9278         changed).
9279         (pgg-remove-passphrase-from-cache): Rename from
9280         `pgg-remove-passphrase-cache' to reduce confusion (all callers
9281         changed).
9282         (pgg-read-passphrase, pgg-add-passphrase-cache)
9283         (pgg-remove-passphrase-cache): Add informative docstrings.
9284         (pgg-decrypt): Convey provided passphrase in subordinate call to
9285         pgg-decrypt-region.
9286
9287 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
9288
9289         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
9290         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
9291         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
9292         'passphrase' argument, so the passphrase can be managed externally
9293         and then passed in to the system.
9294
9295         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
9296         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
9297         so the passphrase cache can be used reliably with identifiers
9298         besides a pgp packet's key id.
9299
9300         * pgg-gpg.el (pgg-gpg-encrypt-region)
9301         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
9302         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
9303         these routines, so the passphrase can be managed externally and
9304         passed in to the system.
9305
9306         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
9307         'notruncate' argument, so the passphrase cache can be used
9308         reliably with identifiers besides a pgp packet's key id.
9309
9310 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
9311
9312         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
9313         symmetric encryption.
9314         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
9315         encrypted session key.
9316         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
9317         message ask for the passphrase in a proper way.
9318
9319         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
9320         New user commands for symmetric encryption.
9321
9322 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9323
9324         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
9325
9326         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
9327
9328 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
9329
9330         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
9331
9332 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9333
9334         * mm-decode.el (mm-inlined-types): Add application/pgp.
9335         (mm-automatic-display): Ditto.
9336
9337         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
9338         part as text.
9339
9340 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9341
9342         * nnrss.el: Update copyright.
9343         (nnrss-opml-import): Query whether to subscribe to each entry.
9344
9345         * gnus-art.el:
9346         * gnus-sum.el:
9347         * gnus-xmas.el:
9348         * messagexmas.el:
9349         * mm-uu.el:
9350         * mm-view.el: Update copyright.
9351
9352 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
9353
9354         * message.el (message-info): New function.
9355         (message-mode-menu): Add it.
9356         Update copyright.
9357
9358         * ChangeLog: Fix and update copyright.
9359
9360 2006-01-13  Romain Francoise  <romain@orebokech.com>
9361
9362         * message.el (message-forward-subject-name-subject): Prefer the
9363         address to 'nowhere' if the sender has no name.
9364         Fix typo.  Update copyright year.
9365
9366 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9367
9368         * gnus-art.el (article-wash-html): Use
9369         gnus-summary-show-article-charset-alist if a numeric arg is given.
9370         (gnus-article-wash-html-with-w3m-standalone): New function.
9371
9372         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
9373         mm-inline-text-html-render-with-w3m-standalone.
9374         (mm-text-html-washer-alist): Map w3m-standalone to
9375         gnus-article-wash-html-with-w3m-standalone.
9376         (mm-inline-text-html-render-with-w3m-standalone): New function.
9377
9378 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
9379
9380         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
9381         Improve LaTeX.
9382
9383 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9384
9385         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
9386         (nnrss-request-article): Render text/plain parts as HTML.
9387
9388         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
9389         the buffer.
9390
9391 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
9392
9393         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
9394         custom definition of `gnus-posting-styles'.
9395
9396         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bind
9397         print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
9398
9399 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
9400
9401         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
9402         Use nntp for bug archive.
9403
9404 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9405
9406         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
9407         parts.
9408         (nnrss-normalize-date): New function converts ISO 8601 date into
9409         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9410         (nnrss-check-group): Use it.
9411
9412 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9413
9414         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
9415
9416         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
9417         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9418         (nnrss-insert-w3): Ditto.
9419
9420 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9421
9422         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
9423         the articles to be forwarded including the case where neither a
9424         number of articles nor a region is specified.
9425
9426 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9427
9428         * nnrss.el (nnrss-request-article): Fix last change; fill
9429         text/plain parts.
9430
9431 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9432
9433         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
9434         in text/plain part.
9435         (nnrss-check-group): Don't add excessive newline to dc:subject.
9436
9437 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
9438
9439         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
9440         article.
9441
9442 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
9443
9444         * nnml.el: Don't require gnus-bcklg.  Autoload it.
9445         (nnml-use-compressed-files, nnml-save-mail): Support other
9446         comression programs such as bzip2.
9447
9448 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9449
9450         * dns.el (query-dns): Make sure we check the buffer size before
9451         removing tcp headers.
9452
9453 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9454
9455         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
9456         remove MIME buttons associated with multipart/alternative parts.
9457         (gnus-mime-display-alternative): Tag buttons using `article-type'
9458         text property.
9459
9460         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
9461         associated with multipart/alternative parts.
9462
9463         * gnus-art.el (gnus-signature-separator): Fix custom type.
9464
9465         * mm-decode.el (mm-inlined-types): Fix custom type.
9466         (mm-keep-viewer-alive-types): Ditto.
9467         (mm-automatic-display): Ditto.
9468         (mm-attachment-override-types): Ditto.
9469         (mm-inline-override-types): Ditto.
9470         (mm-automatic-external-display): Ditto.
9471
9472 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
9473
9474         * spam-report.el (spam-report-user-mail-address)
9475         (spam-report-user-agent): New variables.
9476         (spam-report-url-ping-plain): Use spam-report-user-agent.
9477
9478 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
9479
9480         * gnus-art.el (gnus-button-handle-custom): Do not just use
9481         `customize-apropos' for any "M-x customize-*" button but the
9482         function called for.  Accept both the function name and its
9483         argument in order to achieve this.
9484         (gnus-button-alist): Remove support for "custom:" URL's.  Pass
9485         function name to `gnus-button-handle-custom' in case of "M-x
9486         customize-*" buttons.
9487
9488 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9489
9490         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
9491         multipart/alternative and add xref to mm-discouraged-alternatives
9492         in doc string.
9493
9494         * mm-decode.el (mm-discouraged-alternatives): Add xref to
9495         gnus-buttonized-mime-types in doc string.
9496
9497 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
9498
9499         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
9500         Suggest image/.* in the doc string.
9501
9502 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
9503
9504         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
9505         message-marks (Debian bug #342521).
9506
9507 2005-12-12  Simon Josefsson  <jas@extundo.com>
9508
9509         * password.el (password-read-from-cache): Add.
9510         (password-read): Use it.
9511
9512 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9513
9514         * rfc2047.el (rfc2047-charset-to-coding-system): Recognize
9515         us-ascii as a MIME charset.
9516
9517         * mm-bodies.el (mm-decode-content-transfer-encoding): Protect
9518         against the case where the 2nd arg TYPE is nil.
9519
9520 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9521
9522         * pop3.el (pop3-stream-type): Fix custom version.
9523
9524         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
9525
9526 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9527
9528         * mm-decode.el (mm-display-external): Add missing cdr.
9529
9530 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9531
9532         * mm-decode.el (mm-display-external): Use nametemplate (defined in
9533         RFC1524) if it is in mailcap or add a suffix according to
9534         mailcap-mime-extensions when generating a temp filename; postpone
9535         deleting a temp file for 2 seconds for some wrappers, shell
9536         scripts, and so on, which might exit right after having started a
9537         viewer command as a background job.
9538
9539 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9540
9541         * nntp.el (nntp-marks-directory): Fix custom group.
9542
9543         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
9544         steps when < 10.
9545
9546         * gnus-start.el (gnus-no-server-1): Mention
9547         `gnus-level-default-subscribed' in doc string.
9548
9549 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9550
9551         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
9552         parens.
9553
9554 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9555
9556         * gnus-xmas.el (gnus-use-toolbar): Revert.
9557         (gnus-xmas-setup-toolbar): Use global default-toolbar if
9558         gnus-use-toolbar is default.
9559
9560         * messagexmas.el (message-use-toolbar): Revert.
9561         (message-setup-toolbar): Use global default-toolbar if
9562         message-use-toolbar is default.
9563
9564 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9565
9566         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
9567         according to default-toolbar-visible-p.
9568
9569         * messagexmas.el (message-use-toolbar): Ditto.
9570
9571 2005-11-26  Dave Love  <fx@gnu.org>
9572
9573         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
9574         (tls-program, tls-success): Provide openssl alternative.
9575
9576         * starttls.el: Doc fixes.
9577         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
9578         SERVICE to PORT.
9579
9580         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
9581         port null or service name.
9582         (starttls-negotiate): Autoload.
9583
9584 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9585
9586         * message.el (message-kill-to-signature): Fix interactive spec.
9587
9588 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9589
9590         * pop3.el (pop3-open-server): Recognize a string as a service name.
9591
9592 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
9593
9594         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
9595
9596 2005-11-23  Dave Love  <fx@gnu.org>
9597
9598         Add pop3s, pop3/starttls.
9599
9600         * pop3.el (pop3-authentication-scheme): Clarify doc.
9601         (open-tls-stream, starttls-open-stream): Autoload.
9602         (pop3-stream-type): New.
9603         (pop3-open-server): Use it.
9604
9605         * mail-source.el (mail-sources): Fix some :types.  Add stream type
9606         for POP.
9607         (mail-source-keyword-map): Add :stream for POP.
9608         (mail-source-fetch-pop): Use pop3-stream-type.
9609
9610 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9611
9612         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
9613         of current-time-string.
9614
9615 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
9616
9617         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
9618         date header.
9619
9620 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9621
9622         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
9623         it can seriously impact performance as it bypasses the agent's
9624         local caches.
9625
9626 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9627
9628         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
9629         must be explicitly online rather than "not explicitly offline" for
9630         its flags to be synchronized.
9631
9632         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
9633         that gnus-uu-unmark-thread will function correctly.
9634
9635         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
9636         1024K is instead displayed as 1M.
9637
9638 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9639
9640         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
9641
9642 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
9643
9644         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
9645
9646 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
9647
9648         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
9649         error message to display actual error condition.
9650         (gnus-agent-save-local): Avoid saving symbols that are bound to
9651         nil as they simply result in a warning message in
9652         gnus-agent-read-local.
9653
9654 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9655
9656         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
9657         rather than make-variable-buffer-local for file-precious-flag.
9658
9659 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9660
9661         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
9662         for duplicates which are removed.  The invalid sort check then
9663         triggers a rescan after the sort as sorting may have moved
9664         duplicate entries such that they can be cheaply detected.
9665
9666 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9667
9668         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
9669
9670 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9671
9672         * gnus-agent.el (gnus-agent-article-alist-save-format): Changed
9673         internal variable to a custom variable.  Changed default value
9674         from compressed(2) to uncompressed(1).
9675         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
9676         support for uncompressed agentview files.  Taken together, reading
9677         the agentview file should now be 6-7 times faster.
9678
9679 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
9680
9681         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
9682         as a buffer-local variable.  This avoids creating truncated
9683         dribble files as a result of a hang up, eg.
9684
9685 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
9686
9687         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
9688         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
9689         XEmacs.
9690
9691 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9692
9693         * gnus-start.el (gnus-start-draft-setup): Enforce
9694         `gnus-draft-mode' for nndraft:drafts at startup.
9695
9696         * gnus.el (gnus-splash): Change custom group.
9697         (gnus-group-get-parameter, gnus-group-parameter-value): Describe
9698         allow-list argument.
9699
9700         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
9701         string.
9702
9703 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9704
9705         * gnus-art.el (gnus-default-article-saver): Add user-defined
9706         `function' to custom type.
9707
9708 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9709
9710         * imap.el (imap-open): Handle case where buffer is a buffer
9711         object.
9712
9713 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
9714
9715         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
9716         long lines.
9717         (gnus-cache-delete-group): Wrap doc strings.
9718
9719         * gnus-agent.el (gnus-agent-rename-group)
9720         (gnus-agent-delete-group): Wrap doc strings.
9721
9722 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9723
9724         * messagexmas.el (message-use-toolbar): Change the valid values
9725         into default, top, bottom, left, and right.
9726         (message-toolbar-thickness): New variable.
9727         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
9728         well.
9729         (message-setup-toolbar): Make it work.
9730
9731         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
9732         (gnus-use-toolbar): Change the valid values into default, top,
9733         bottom, left, and right.
9734         (gnus-toolbar-thickness): New variable.
9735         (gnus-xmas-setup-toolbar): New function.
9736         (gnus-xmas-setup-group-toolbar): Use it.
9737         (gnus-xmas-setup-summary-toolbar): Use it.
9738
9739 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9740
9741         * gnus-start.el (gnus-1): Add "native" to
9742         gnus-predefined-server-alist.
9743
9744         * gnus.el (gnus-method-to-server): Don't add "native" to the
9745         lists here, because that leads to problems when
9746         gnus-select-method is bound.
9747
9748 2005-11-09  Simon Josefsson  <jas@extundo.com>
9749
9750         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
9751         use (not sort-by-date) instead.
9752
9753 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9754
9755         * gnus-delay.el (gnus-delay-group): Don't autoload.
9756         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9757         to be re-loaded when customizing the `gnus-delay' group.
9758
9759 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
9760
9761         * message.el: Revert last changes.
9762         (message-insert-citation-line): Use newlines.
9763
9764 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
9765
9766         * message.el (message-courtesy-message)
9767         (message-mark-insert-begin, message-mark-insert-end)
9768         (message-elide-ellipsis, message-cancel-message)
9769         (message-add-header, message-change-subject)
9770         (message-cross-post-followup-to-header)
9771         (message-cross-post-insert-note, message-reduce-to-to-cc)
9772         (message-widen-reply, message-delete-not-region)
9773         (message-kill-to-signature, message-insert-signature)
9774         (message-insert-importance-high, message-insert-importance-low)
9775         (message-insert-or-toggle-importance)
9776         (message-insert-disposition-notification-to)
9777         (message-indent-citation, message-yank-original)
9778         (message-cite-original-without-signature, message-cite-original)
9779         (message-insert-citation-line, message-position-on-field)
9780         (message-fix-before-sending, message-send-mail-partially)
9781         (message-send-mail, message-send-mail-with-sendmail)
9782         (message-send-mail-with-qmail, message-send-news)
9783         (message-check-news-header-syntax, message-generate-headers)
9784         (message-insert-courtesy-copy, message-fill-address)
9785         (message-fill-header, message-shorten-references)
9786         (message-setup-1, message-cancel-news)
9787         (message-forward-make-body-plain, message-forward-make-body-mime)
9788         (message-forward-make-body-mml, message-encode-message-body)
9789         (message-forward-make-body-digest-plain)
9790         (message-forward-make-body-digest-mime)
9791         (message-use-alternative-email-as-from): Insert `hard-newline'
9792         instead of ordinary newlines.
9793
9794 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9795
9796         * message.el (message-generate-headers): Downcase the argument
9797         given to message-check-element.
9798
9799 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
9800
9801         * nntp.el (nntp-authinfo-rejected): New error condition.
9802         (nntp-wait-for): Use new error condition to signal authentication
9803         error.
9804         (nntp-retrieve-data): Rethrow new error condition to break out of
9805         recursive call to nntp-send-authinfo.
9806
9807 2005-11-08  Romain Francoise  <romain@orebokech.com>
9808
9809         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
9810         (gnus-summary-exit-map): Bind to `Z p'.
9811         (gnus-summary-make-menu-bar): Add menu item.
9812
9813 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
9814
9815         * gnus-art.el (gnus-article-treat-custom): Add `first'.
9816         (gnus-treat-*): Add `first' in all doc strings.
9817
9818         * gnus-group.el (gnus-group-compact-group): Fix typo.
9819
9820 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9821
9822         * gnus.el (gnus-parameters-case-fold-search): New variable.
9823         (gnus-parameters-get-parameter): Use it.
9824
9825         * gnus-score.el (gnus-home-score-file): Doc fix.
9826
9827 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
9828
9829         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
9830
9831 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9832
9833         * mm-util.el (mm-special-display-p): New function.
9834
9835         * mml.el (mml-preview): Use it; doc fix.
9836
9837 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9838
9839         * imap.el (imap-open): Handle case where buffer is a buffer object.
9840
9841 2005-10-29  Romain Francoise  <romain@orebokech.com>
9842
9843         * message.el (message-fix-before-sending): Fix comment.
9844
9845 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9846
9847         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
9848
9849 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9850
9851         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
9852         Used in gnus-score.el.
9853
9854 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9855
9856         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
9857
9858 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
9859
9860         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
9861         whitespace removed in revision 7.8.  Use concatenated string to
9862         protect trailing whitespace.
9863
9864 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
9865
9866         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
9867         (nnimap-request-expire-articles): Use it to avoid sending 'UID
9868         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
9869         Courier IMAP ("some version from 2004").  Mostly based on similar
9870         code in the same function.
9871
9872 2005-10-26  Didier Verna  <didier@xemacs.org>
9873
9874         * gnus-group.el (gnus-group-compact-group): Invalidate original
9875         article buffer.
9876         * gnus-srvr.el (gnus-server-compact-server): Ditto.
9877         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
9878         NOV database and in article itself.
9879         Invalidate article backlog.
9880
9881 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9882
9883         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
9884
9885 2005-10-26  Simon Josefsson  <jas@extundo.com>
9886
9887         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
9888         part of 2004-07-25 change.
9889
9890 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9891
9892         * message.el (message-display-completion-list): New function.
9893         (message-expand-group): Use it; make sure the Completions buffer
9894         is modifiable.
9895 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
9896
9897         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
9898         user-mail-name is an empty string.
9899
9900 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
9901
9902         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
9903         depending on gnus-score-decay-constant.
9904
9905         * encrypt.el (encrypt-insert-file-contents)
9906         (encrypt-write-file-contents): Don't use `gnus-message'.
9907
9908         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
9909         arguments.
9910         (mm-uu-type-alist): Add message-marks and insert-marks.  Pass
9911         arguments to mm-uu-verbatim-marks-extract.
9912         (mm-uu-hide-markers): New variable.
9913         (mm-uu-extract): Use face similar to `gnus-cite-3'.
9914
9915         * gnus-fun.el (gnus-convert-image-to-x-face-command)
9916         (gnus-convert-image-to-face-command): Use "convert" by default to
9917         allow other input image formats.
9918         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
9919         accordingly.
9920
9921 2005-10-23  Simon Josefsson  <jas@extundo.com>
9922
9923         * imap.el (imap-gssapi-program): Align command line parameters
9924         with latest GNU SASL.
9925         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
9926
9927 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9928
9929         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
9930         HTML.
9931         (nnslashdot-request-article): Ditto.
9932
9933         * lpath.el (featurep): Add nobreak-char-display.
9934
9935 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
9936
9937         * mail-source.el (mail-source-fetch-pop): Require pop3.
9938         (mail-source-check-pop): Ditto.
9939
9940 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9941
9942         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
9943         errors.
9944
9945 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
9946
9947         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
9948         (gnus-treat-strip-leading-blank-lines): Improve doc string.
9949
9950         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
9951
9952         * mm-bodies.el (mm-decode-string): Call
9953         `mm-charset-to-coding-system' with allow-override argument.
9954
9955 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9956
9957         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
9958         (rfc2047-charset-to-coding-system): New function.
9959         (rfc2047-decode-encoded-words): New function.
9960         (rfc2047-decode-region): Use them.
9961         (rfc2047-decode-cte): Remove.
9962         (rfc2047-parse-and-decode): Remove.
9963         (rfc2047-decode): Remove.
9964
9965 2005-10-15  Kenichi Handa  <handa@m17n.org>
9966
9967         * rfc2047.el (rfc2047-decode-cte): New function.
9968         (rfc2047-decode-region): Change the way to decode successive
9969         encoded-words: decode B- or Q-encoding in each encoded-word,
9970         concatenate them, and decode it as charset.
9971
9972 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
9973
9974         * lpath.el: Fbind codepage-setup for XEmacs.
9975
9976 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
9977
9978         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
9979         widget-move-and-invoke.
9980         (gnus-custom-mode): Use gnus-custom-map.
9981
9982 2005-10-15  Bill Wohler  <wohler@newt.com>
9983
9984         * message.el (message-tool-bar-map): Renamed image file from
9985         mail_send to mail/send.
9986
9987 2005-10-16  Masatake YAMATO  <jet@gyve.org>
9988
9989         * message.el (message-expand-group): Pass the common
9990         prefix substring of completion to `display-completion-list'.
9991
9992 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
9993
9994         * mml-sec.el (mml-secure-method): New internal variable.
9995         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
9996         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt): New
9997         functions using mml-secure-method.
9998
9999         * mml.el (mml-mode-map): Add key bindings for those functions.
10000         (mml-menu): Simplify security menu entries.  Suggested by Jesper
10001         Harder <harder@myrealbox.com>.
10002         (mml-attach-file, mml-attach-buffer, mml-attach-external): Goto
10003         end of message if point is the headers of the message.
10004
10005         * message.el (message-in-body-p): New function.
10006
10007         * assistant.el: Autoload gnus-util and netrc.
10008
10009         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
10010         Use `mm-charset-override-alist' only when decoding.
10011
10012         * mm-bodies.el (mm-decode-body): Call
10013         `mm-charset-to-coding-system' with allow-override argument.
10014
10015         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
10016         `filename' from Content-Disposition if Content-Type doesn't
10017         provide `name'.
10018         (gnus-mime-view-part-as-type): Set default instead of
10019         initial-input.
10020
10021 2005-10-09  Daniel Brockman  <daniel@brockman.se>
10022
10023         * format-spec.el (format-spec): Propagate text properties of % spec.
10024
10025 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
10026
10027         * gnus-art.el (gnus-treat-predicate): Add `first'.
10028
10029 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
10030
10031         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
10032         (mm-charset-override-alist): New variable.
10033         (mm-charset-to-coding-system): Use it.
10034         (mm-codepage-setup): New helper function.
10035         (mm-charset-eval-alist): New variable.
10036         (mm-charset-to-coding-system): Use mm-charset-eval-alist.  Warn
10037         about unknown charsets.
10038
10039         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
10040
10041 2005-10-04  David Hansen  <david.hansen@gmx.net>
10042
10043         * nnrss.el (nnrss-request-article): Add support for the comments tag.
10044         (nnrss-check-group): Ditto.
10045
10046 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
10047
10048         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
10049         Rename x-gnus-verbatim to x-verbatim.
10050         (mm-uu-type-alist): Fix regexp for verbatim-marks.
10051
10052         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
10053         x-verbatim.
10054
10055         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
10056
10057         * gnus-util.el (gnus-remove-duplicates): Remove.
10058
10059         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
10060         instead of gnus-remove-duplicates.
10061
10062         * message.el (message-remove-duplicates): Remove.
10063         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
10064         message-remove-duplicates.
10065
10066         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
10067         available, else use implementation from `delete-dups'.
10068
10069         * message.el (message-insert-expires): New function.
10070         (message-mode-map): Add key binding.
10071         (message-mode-field-menu): Add menu entry.
10072         (message-mode): Document it.
10073         (message-make-expires-date): Use `message-make-date'.
10074
10075 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
10076
10077         * message.el (message-make-expires-date): New function.
10078
10079 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10080
10081         * Makefile.in (list-installed-shadows): New entry.
10082         (install): Use it.
10083         (remove-installed-shadows): New entry.
10084
10085         * dgnushack.el (dgnushack-default-load-path): New variable.
10086         (dgnushack-find-lisp-shadows): New function.
10087         (dgnushack-remove-lisp-shadows): New function.
10088
10089 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10090
10091         * Makefile.in (install-el-elc): New entry.
10092         (install): Use it so that .el files are necessarily installed.
10093
10094 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10095
10096         * time-date.el: Autoload parse-time-string, XEmacs needs it.
10097
10098 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10099
10100         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
10101         function rather than the diff-mode.el package.
10102         (mm-display-external): Use with-current-buffer.
10103         (mm-viewer-completion-map, mm-viewer-completion-map):
10104         Move initialization inside declaration.
10105
10106 2005-09-29  Simon Josefsson  <jas@extundo.com>
10107
10108         * spam.el: Load hashcash when compiling, to avoid warnings.  Don't
10109         autoload mail-check-payment.
10110         (spam-check-hashcash): Define unconditionally, since hashcash.el
10111         is part of Gnus now.  Ignore errors from payment checking.
10112
10113 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
10114
10115         * message.el (message-bold-region, message-unbold-region): Rename
10116         from `bold-region' and `unbold-region'.
10117
10118         * message.el: Remove useless autoloads.
10119
10120 2005-09-28  Simon Josefsson  <jas@extundo.com>
10121
10122         * message.el (message-use-idna): Default to t.
10123         (message-use-idna): Test whether encoding works too.  Doc fix.
10124
10125 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10126
10127         * nntp.el (nntp-warn-about-losing-connection): Remove.
10128
10129 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
10130
10131         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
10132         customizable.  Change default value.
10133         (mm-uu-diff-groups-regexp): Change default value.
10134         (mm-uu-type-alist): Add doc string.
10135         (mm-uu-configure): Add doc string.  Make it interactive.
10136         (mm-uu-tex-groups-regexp): New variable.
10137         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
10138         (mm-uu-type-alist): Add LaTeX documents.
10139         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
10140         of "text/verbatim".
10141         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
10142
10143         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
10144         instead of "text/verbatim".
10145
10146         * message.el (message-mark-inserted-region)
10147         (message-mark-insert-file): Use slrn style marks when called with
10148         prefix argument.
10149
10150 2005-09-27  Simon Josefsson  <jas@extundo.com>
10151
10152         * message.el (message-idna-to-ascii-rhs-1): Reformat.
10153
10154 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
10155
10156         * message.el (message-remove-duplicates): New function.
10157         Implementation borrowed from `gnus-remove-duplicates'.
10158         (message-idna-to-ascii-rhs): Also encode idna addresses in
10159         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10160         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
10161         only ask about the same idna domain once per header and also tell
10162         in what header to replace the idna domain.
10163
10164         * gnus-art.el (article-decode-idna-rhs): Also decode idna
10165         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10166         (article-decode-idna-rhs): Fix regexp so that all idna-address in
10167         a header is decoded and not just the last one.
10168
10169 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10170
10171         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
10172         has been decoded.
10173
10174         * mm-decode.el (mm-automatic-display): Add text/verbatim.
10175         (mm-insert-part): Don't modify text if it has been decoded.
10176
10177         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
10178         decoded.
10179
10180         * mm-view.el (mm-inline-text): Don't strip text props unless
10181         decoding enriched or richtext parts.
10182
10183 2005-09-25  Romain Francoise  <romain@orebokech.com>
10184
10185         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
10186         * gnus-start.el (gnus-subscribe-interactively):
10187         * gnus-uu.el (gnus-uu-grab-articles):
10188         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
10189         space.
10190
10191 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
10192
10193         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
10194         * mm-view.el (mm-view-pkcs7-decrypt):
10195         * gnus-sum.el (gnus-summary-limit-to-extra)
10196         (gnus-summary-respool-article, gnus-read-move-group-name):
10197         * gnus-score.el (gnus-summary-increase-score):
10198         * gnus-util.el (gnus-completing-read-with-default):
10199         * gnus-art.el (gnus-read-save-file-name)
10200         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
10201         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
10202         * message.el (message-check-news-header-syntax):
10203         Follow convention for reading with the minibuffer.
10204
10205 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
10206
10207         * spam-report.el (spam-report-url-ping-plain):
10208         Use gnus-extended-version as User-Agent.
10209
10210         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
10211         default value is nil.
10212
10213         * mm-uu.el (mm-uu-type-alist): Added slrn style verbatim-marks.
10214         (mm-uu-verbatim-marks-extract): New function.
10215         (mm-uu-extract): New face.
10216         (mm-uu-copy-to-buffer): Use it.
10217
10218         * spam-report.el (spam-report-gmane-ham): Renamed from
10219         `spam-report-gmane-unspam'.
10220         (spam-report-gmane-internal): Renamed from `spam-report-gmane'.
10221         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
10222
10223         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
10224         Autoload.
10225         (spam-report-gmane-unregister-routine): Renamed
10226         `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
10227
10228 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
10229
10230         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
10231         (spam-report-gmane-unregister-routine): Add support for gmane
10232         unregistration.
10233
10234         * spam-report.el (spam-report-gmane-unspam)
10235         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
10236         (spam-report-gmane): Change to take a single article and do unspam
10237         registration.
10238
10239 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10240
10241         * mm-url.el (mm-url-decode-entities): Fix regexp.
10242
10243 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10244
10245         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
10246         default to nil, to be able to use Gnus at all.  If the default
10247         switches to something else, then the function should be fixed not
10248         be exceedingly slow.
10249
10250 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
10251
10252         * gnus-start.el (gnus-activate-group): If the server is nil, don't
10253         fail hard.
10254
10255         * spam-report.el: Add better Keywords line.
10256
10257         * spam.el: Add Maintainer and better Keywords line.
10258
10259 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10260
10261         * gnus-art.el (gnus-article-replace-part)
10262         (gnus-mime-replace-part): New functions.
10263         (gnus-mime-action-alist, gnus-mime-button-commands)
10264         (gnus-mime-save-part-and-strip): Added file argument.
10265         (gnus-article-part-wrapper): Added interactive argument.
10266
10267         * gnus-sum.el (gnus-summary-mime-map): Add
10268         `gnus-article-replace-part'.
10269
10270 2005-09-19  Didier Verna  <didier@xemacs.org>
10271
10272         The nnml compaction feature:
10273         * nnml.el (nnml-request-compact-group): New function.
10274         * nnml.el (nnml-request-compact): New function.
10275         * gnus-int.el (gnus-request-compact-group): New function.
10276         * gnus-int.el (gnus-request-compact): New function.
10277         * gnus-group.el (gnus-group-compact-group): New function.
10278         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
10279         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
10280         * gnus-srvr.el (gnus-server-compact-server): New function.
10281         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
10282         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
10283
10284 2005-09-18  Deepak Goel  <deego@gnufans.org>
10285
10286         * sieve.el (sieve-help): Fix `message' call: first arg should be a
10287         format spec.
10288
10289 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10290
10291         * gnus.el (gnus-group-startup-message): Bind image-load-path.
10292
10293 2005-09-15  Romain Francoise  <romain@orebokech.com>
10294
10295         * message.el (message-fill-paragraph): Clarify docstring.
10296
10297 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10298
10299         * gnus-art.el (gnus-mime-display-part): Protect against broken
10300         MIME messages.
10301
10302 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10303
10304         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
10305         before parsing header.
10306
10307 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
10308
10309         * html2text.el (html2text-replace-list): Add new entities.
10310
10311 2005-09-11  Romain Francoise  <romain@orebokech.com>
10312
10313         * message.el (message-alternative-emails): Improve docstring.
10314         (message-setup-1): Call `message-use-alternative-email-as-from'
10315         after `message-setup-hook' to give it precedence over posting
10316         styles, etc.
10317         (message-use-alternative-email-as-from): Add docstring.  Remove
10318         the original From header if present.
10319
10320         * nnml.el (nnml-compressed-files-size-threshold): New variable.
10321         (nnml-save-mail): Use it.
10322
10323         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
10324         articles.  Add new argument `silent'.
10325         (gnus-uu-mark-all): Report the total number of marked articles.
10326
10327 2005-09-10  Romain Francoise  <romain@orebokech.com>
10328
10329         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
10330         (gnus-uu-mark-series): Likewise.
10331
10332 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
10333
10334         * spam-report.el (spam-report-gmane): Fix generation of spam
10335         report URL.
10336
10337 2005-09-10  Simon Josefsson  <jas@extundo.com>
10338
10339         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
10340         t, based on discussion on the ding list with Robert Epprecht
10341         <epprecht@solnet.ch>.
10342
10343 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
10344
10345         * spam-report.el (spam-report-gmane): Make it work without
10346         X-Report-Spam header.  Gmane now only provides Archived-At.
10347         This is only used if `spam-report-gmane-use-article-number' is nil.
10348         (spam-report-gmane-spam-header): Remove.  Not used anymore.
10349
10350         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
10351         make `gnus-summary-sort-by-recipient' work with threading.
10352
10353         * nnweb.el (nnweb-google-wash-article): Print a message if article
10354         is not available.
10355
10356 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10357
10358         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
10359         change.  Decode text/* parts content before displaying.
10360
10361 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
10362
10363         * mml-smime.el: Remove defvar of gnus-extract-address-components.
10364
10365 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10366
10367         * mm-view.el (mm-display-inline-fontify): Disable support modes.
10368
10369         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
10370         url-package-name, url-package-version,
10371         w3m-cid-retrieve-function-alist, w3m-current-buffer,
10372         w3m-display-inline-images, and w3m-minor-mode-map.
10373
10374 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
10375
10376         * message.el (message-tab-body-function): Fix mismatched custom type.
10377
10378         * gnus.el (gnus-group-change-level-function): Ditto.
10379
10380         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
10381
10382         * gnus-art.el (gnus-signature-limit)
10383         (gnus-article-mime-part-function): Ditto.
10384
10385 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10386
10387         * mml.el (mml-mode): Silence the byte compiler.
10388
10389         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
10390         using `(sit-for 0)' before moving the point to the specified part;
10391         skip unbuttonized parts.
10392         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
10393         return to the summary window if gnus-auto-select-part is non-nil.
10394
10395 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
10396
10397         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options): New
10398         variables.
10399         (mml-dnd-attach-file, mml-mode): Use them.
10400
10401         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
10402         Make fetching article by MID work again for Google Groups.  Added
10403         FIXME concerning gnus-group-make-web-group.
10404
10405         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
10406         Don't depend on Gnus by using mail-extract-address-components if
10407         gnus-extract-address-components is not bound.
10408
10409 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10410
10411         * gnus-art.el (gnus-mime-display-security): Don't display the
10412         signature, but only the signed part.
10413
10414 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10415
10416         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
10417
10418         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
10419         list, not listp.
10420
10421 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
10422
10423         * mm-encode.el (mm-encode-content-transfer-encoding): Likewise
10424         when encoding.
10425
10426         * mm-bodies.el (mm-decode-content-transfer-encoding):
10427         De-canonicalize CRLF for all text content types, not just
10428         text/plain.
10429
10430 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10431
10432         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
10433         valid article; point arrow and cursor at the MIME button.
10434
10435 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10436
10437         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
10438         Suggested by Dan Christensen <jdc@uwo.ca>.
10439
10440         * mm-decode.el (mm-save-part): Enable change of prompt.
10441
10442 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
10443
10444         * gnus-msg.el (gnus-inews-add-send-actions): Made
10445         `message-post-method' lambda parameter ARG `&optional'.
10446
10447 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10448
10449         * gnus-sum.el (gnus-summary-mime-map): Added
10450         gnus-article-save-part-and-strip, gnus-article-delete-part and
10451         gnus-article-jump-to-part.
10452
10453         * gnus-art.el (gnus-article-edit-article): Added quiet argument.
10454         (gnus-article-edit-part): Use it.
10455         (gnus-article-part-wrapper): Added no-handle argument.
10456         (gnus-article-save-part-and-strip, gnus-article-delete-part): New
10457         functions.
10458
10459 2005-08-29  Romain Francoise  <romain@orebokech.com>
10460
10461         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
10462         docstring.
10463         (gnus-face-from-file): Likewise.
10464
10465 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10466
10467         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
10468         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
10469         non-nil.
10470         (gnus-auto-select-part): New variable.
10471         (gnus-article-jump-to-part): New function.
10472         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
10473         (gnus-mime-delete-part): Allow selecting specified part after
10474         deleting or stripping parts.
10475         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
10476         part if argument is bogus.
10477
10478 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
10479
10480         * gnus-art.el (w3m-minor-mode-map):
10481         * gnus-spec.el (gnus-newsrc-file-version):
10482         * gnus-util.el (nnmail-active-file-coding-system)
10483         (gnus-original-article-buffer, gnus-user-agent):
10484         * gnus.el (gnus-ham-process-destinations)
10485         (gnus-parameter-ham-marks-alist)
10486         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
10487         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
10488         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
10489         * mm-decode.el (gnus-current-window-configuration):
10490         * mm-extern.el (gnus-article-mime-handles):
10491         * mm-url.el (url-current-object, url-package-name)
10492         (url-package-version):
10493         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
10494         (smime-keys, w3m-cid-retrieve-function-alist)
10495         (w3m-current-buffer, w3m-display-inline-images)
10496         (w3m-minor-mode-map):
10497         * mml-smime.el (gnus-extract-address-components):
10498         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
10499         (gnus-newsrc-hashtb, message-default-charset)
10500         (message-deletable-headers, message-options)
10501         (message-posting-charset, message-required-mail-headers)
10502         (message-required-news-headers):
10503         * mml1991.el (mc-pgp-always-sign):
10504         * mml2015.el (mc-pgp-always-sign):
10505         * nnheader.el (nnmail-extra-headers):
10506         * rfc1843.el (gnus-decode-encoded-word-function)
10507         (gnus-decode-header-function, gnus-newsgroup-name):
10508         * spam-stat.el (gnus-original-article-buffer): Add defvars.
10509
10510 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
10511
10512         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
10513         the end of the date treatments.
10514
10515 2005-08-15  Simon Josefsson  <jas@extundo.com>
10516
10517         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
10518         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
10519         Capello and Romain Francoise.
10520         (pgg-fetch-key-function): Removed, not used?
10521         (pgg-insert-url-with-w3): Require url, to get
10522         url-insert-file-contents regardless of where it is defined.
10523
10524 2005-08-13  Romain Francoise  <romain@orebokech.com>
10525
10526         * message.el (message-cite-original-1): New function.
10527         (message-cite-original): Use it.
10528         (message-cite-original-without-signature): Ditto.
10529
10530 2005-08-08  Romain Francoise  <romain@orebokech.com>
10531
10532         * message.el (message-yank-empty-prefix): New variable.
10533         (message-indent-citation): Use it.
10534         (message-cite-original-without-signature): Respect X-No-Archive.
10535
10536 2005-08-08  Simon Josefsson  <jas@extundo.com>
10537
10538         * pgg.el: Autoload url-insert-file-contents instead of loading
10539         w3/url.
10540         (pgg-insert-url-with-w3): Don't load url here.
10541
10542 2005-08-07  Jesper Harder  <harder@phys.au.dk>
10543
10544         * message.el (message-kill-to-signature): Don't insert newline at
10545         bol.
10546         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
10547
10548 2005-08-06  Romain Francoise  <romain@orebokech.com>
10549
10550         * message.el (message-user-fqdn): Fix typo in docstring.
10551
10552 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
10553
10554         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
10555
10556         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
10557
10558 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10559
10560         * mm-bodies.el (mm-encode-body): Use coding system rather than
10561         charset to encode text.
10562
10563         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
10564         number of charsets if utf-8 is available (XEmacs).
10565
10566 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
10567
10568         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
10569         taken from `gnus-button-mid-or-mail-regexp'.
10570         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
10571         (gnus-button-alist): Improve regexp for domain part of the MIDs
10572         for news:localpart@domain buttons.
10573         (gnus-button-ctan-directory-regexp): Update.
10574
10575 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10576
10577         * sieve-manage.el (sieve-manage-interactive-login): Use
10578         make-local-variable rather than make-variable-buffer-local.
10579         (sieve-manage-open): Ditto.
10580         (sieve-manage-authenticate): Ditto.
10581
10582         * mml.el (mml-generate-mime-1): Make the content type default to
10583         text/plain if the filename is not specified.
10584
10585 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10586
10587         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
10588         instead of insert-buffer.
10589
10590         * message.el (message-yank-original): Ditto; set the mark at the
10591         end of the yanked message.
10592
10593 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10594
10595         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
10596         lines to scroll rather than to stop it.
10597
10598         * mml.el (mml-generate-default-type): Add doc string.
10599         (mml-generate-mime-1): Use mm-default-file-encoding or make it
10600         default to application/octet-stream when determining the content
10601         type if it is not specified for the part or the mml contents; add
10602         a comment about mml-generate-default-type.
10603
10604 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
10605
10606         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
10607         make it default to application/octet-stream when determining the
10608         content type if it is not specified for the external contents.
10609
10610 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10611
10612         * rfc2231.el (rfc2231-parse-string): Take care that not only a
10613         segmented parameter but also other parameters might be there.
10614
10615 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10616
10617         * mm-decode.el (mm-display-external): Delete temp file, directory
10618         and buffer immediately if the external process is exited.
10619
10620 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10621
10622         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
10623         fewer lines than that of scroll-margin.
10624         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
10625
10626 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10627
10628         * gnus-art.el (gnus-article-next-page): Revert.
10629         (gnus-article-beginning-of-window): New macro.
10630         (gnus-article-next-page-1): Use it.
10631         (gnus-article-prev-page): Ditto.
10632         (gnus-article-edit-part): Use insert-buffer-substring instead of
10633         insert-buffer.
10634         (gnus-article-edit-exit): Ditto.
10635
10636         * gnus-util.el (gnus-beginning-of-window): Remove.
10637         (gnus-end-of-window): Remove.
10638
10639         * lpath.el: Don't bind header-line-format and scroll-margin.
10640
10641 2005-07-25  Simon Josefsson  <jas@extundo.com>
10642
10643         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
10644         to have the url package without w3.  Reported by Daiki Ueno
10645         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
10646
10647 2005-07-20  Didier Verna  <didier@xemacs.org>
10648
10649         * gnus-diary.el: Remove the description comment (nndiary is now
10650         properly documented in the Gnus manual).
10651         Fix the spelling of "Back End".
10652         * nndiary.el: Ditto.
10653         Fix the copyright notice.
10654
10655 2005-07-18  Romain Francoise  <romain@orebokech.com>
10656
10657         * gnus-sum.el (gnus-summary-to-prefix)
10658         (gnus-summary-newsgroup-prefix): New variables.
10659         (gnus-summary-from-or-to-or-newsgroups): Use them.
10660
10661 2005-07-17  Romain Francoise  <romain@orebokech.com>
10662
10663         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
10664         space as it's generally not especially interesting to the user.
10665
10666 2005-07-16  Romain Francoise  <romain@orebokech.com>
10667
10668         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
10669         nil to avoid prompting and file modification if one of the
10670         messages at the top of the nnfolder file contains a copyright
10671         notice.
10672         Update copyright notice.
10673
10674         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
10675         instead of `current-time-string' as the latter creates a time
10676         string that is not RFC 2822 compliant (it lacks the zone).
10677         Update copyright notice.
10678
10679 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10680
10681         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
10682         for text/rtf.  Display default in prompt.  Pass default for M-n.
10683
10684         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
10685
10686 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10687
10688         * gnus-msg.el (gnus-button-mailto): Remove
10689         save-selected-window-window hackery because it relies on
10690         save-selected-window internals.
10691
10692 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10693
10694         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
10695         (gnus-article-next-page-1): Use gnus-beginning-of-window.
10696         (gnus-article-prev-page): Ditto.
10697
10698         * gnus-util.el (gnus-beginning-of-window): New function.
10699         (gnus-end-of-window): New function.
10700
10701         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
10702
10703 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
10704
10705         * gnus-score.el (gnus-score-edit-all-score): Set
10706         gnus-score-edit-exit-function to gnus-score-edit-done and call
10707         gnus-message.
10708
10709 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10710
10711         * gnus-msg.el (gnus-button-mailto): Remove
10712         save-selected-window-window hackery because it relies on
10713         save-selected-window internals.
10714
10715 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10716
10717         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
10718         add-minor-mode.
10719         (gnus-binary-mode): Ditto.
10720
10721         * gnus-topic.el (gnus-topic-mode): Ditto.
10722
10723 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
10724
10725         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
10726         (gnus-article-prev-page): Take scroll-margin into consideration.
10727
10728 2005-07-04  Lute Kamstra  <lute@gnu.org>
10729
10730         Update FSF's address in GPL notices.
10731
10732 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
10733
10734         * gnus.el (gnus-exit):
10735         * gnus-group.el (gnus-group-icons):
10736         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
10737
10738         * gnus-nocem.el (gnus-nocem):
10739         * message.el (message-various, message-buffers, message-sending)
10740         (message-interface, message-forwarding, message-insertion)
10741         (message-headers, message-news, message-mail):
10742         * pgg-gpg.el (pgg-gpg):
10743         * pgg-parse.el (pgg-parse):
10744         * pgg-pgp.el (pgg-pgp):
10745         * pgg-pgp5.el (pgg-pgp5):
10746         * pop3.el (pop3): Finish `defgroup' description with period.
10747
10748 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10749
10750         * gnus-art.el (article-display-face): Improve the efficiency.
10751         (article-display-x-face): Ditto; remove grey x-face stuff.
10752
10753 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10754
10755         * gnus-art.el (article-display-face): Correct the position in
10756         which Faces are inserted.
10757
10758 2005-06-29  Didier Verna  <didier@xemacs.org>
10759
10760         * gnus-art.el (article-display-face): Display faces in correct
10761         order.
10762
10763 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10764
10765         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
10766         (gnus-fill-real-hashtb): Use hash table instead of obarray.
10767         (gnus-nocem-check-article): Fetch the Type header.
10768         (gnus-nocem-message-wanted-p): Fix the way to examine types.
10769         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
10770         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
10771         make sure gnus-nocem-hashtb is initialized.
10772         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
10773         (gnus-nocem-unwanted-article-p): Ditto.
10774
10775         * pgg.el (pgg-verify): Return the verification result.
10776
10777 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10778
10779         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
10780         is ascii.
10781
10782 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
10783
10784         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
10785         `show-nonbreak-escape'.
10786
10787 2005-06-23  Lute Kamstra  <lute@gnu.org>
10788
10789         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
10790
10791         * dig.el (dig-mode):
10792         * smime.el (smime-mode): Use gnus-run-mode-hooks.
10793
10794 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
10795
10796         * nnimap.el (nnimap-split-download-body): Fix spellings.
10797
10798 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
10799
10800         * gnus-art.el (gnus-article-encrypt-body):
10801         * gnus-cus.el (gnus-score-customize):
10802         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
10803         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
10804
10805 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
10806
10807         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
10808         header by looking for magic "MII" at the beginnig.
10809
10810 2005-06-16  Miles Bader  <miles@gnu.org>
10811
10812         * gnus-xmas.el (gnus-xmas-group-startup-message):
10813         Use renamed gnus-splash face.
10814
10815         * assistant.el (assistant-field): Remove "-face" suffix from face name.
10816         (assistant-field-face): New backward-compatibility alias for renamed
10817         face.
10818         (assistant-render-text): Use renamed assistant-field face.
10819
10820         * spam.el (spam): Remove "-face" suffix from face name.
10821         (spam-face): New backward-compatibility alias for renamed face.
10822         (spam-face, spam-initialize): Use renamed spam face.
10823
10824         * message.el (message-header-to, message-header-cc)
10825         (message-header-subject, message-header-newsgroups)
10826         (message-header-other, message-header-name)
10827         (message-header-xheader, message-separator, message-cited-text)
10828         (message-mml): Remove "-face" suffix from face names.
10829         (message-header-to-face, message-header-cc-face)
10830         (message-header-subject-face, message-header-newsgroups-face)
10831         (message-header-other-face, message-header-name-face)
10832         (message-header-xheader-face, message-separator-face)
10833         (message-cited-text-face, message-mml-face):
10834         New backward-compatibility aliases for renamed faces.
10835         (message-font-lock-keywords): Use renamed message faces.
10836
10837         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
10838         (sieve-test-commands, sieve-tagged-arguments):
10839         Remove "-face" suffix from face names.
10840         (sieve-control-commands-face, sieve-action-commands-face)
10841         (sieve-test-commands-face, sieve-tagged-arguments-face):
10842         New backward-compatibility aliases for renamed faces.
10843         (sieve-control-commands-face, sieve-action-commands-face)
10844         (sieve-test-commands-face, sieve-tagged-arguments-face):
10845         Use renamed sieve faces.
10846
10847         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
10848         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
10849         (gnus-group-news-3-empty, gnus-group-news-4)
10850         (gnus-group-news-4-empty, gnus-group-news-5)
10851         (gnus-group-news-5-empty, gnus-group-news-6)
10852         (gnus-group-news-6-empty, gnus-group-news-low)
10853         (gnus-group-news-low-empty, gnus-group-mail-1)
10854         (gnus-group-mail-1-empty, gnus-group-mail-2)
10855         (gnus-group-mail-2-empty, gnus-group-mail-3)
10856         (gnus-group-mail-3-empty, gnus-group-mail-low)
10857         (gnus-group-mail-low-empty, gnus-summary-selected)
10858         (gnus-summary-cancelled, gnus-summary-high-ticked)
10859         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
10860         (gnus-summary-high-ancient, gnus-summary-low-ancient)
10861         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
10862         (gnus-summary-low-undownloaded)
10863         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
10864         (gnus-summary-low-unread, gnus-summary-normal-unread)
10865         (gnus-summary-high-read, gnus-summary-low-read)
10866         (gnus-summary-normal-read, gnus-splash):
10867         Remove "-face" suffix from face names.
10868         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
10869         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
10870         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
10871         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
10872         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
10873         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
10874         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
10875         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
10876         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
10877         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
10878         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
10879         (gnus-summary-selected-face, gnus-summary-cancelled-face)
10880         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
10881         (gnus-summary-normal-ticked-face)
10882         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
10883         (gnus-summary-normal-ancient-face)
10884         (gnus-summary-high-undownloaded-face)
10885         (gnus-summary-low-undownloaded-face)
10886         (gnus-summary-normal-undownloaded-face)
10887         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
10888         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
10889         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
10890         (gnus-splash-face):
10891         New backward-compatibility aliases for renamed faces.
10892         (gnus-group-startup-message): Use renamed gnus faces.
10893
10894         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
10895         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
10896         (gnus-server-agent): Remove "-face" suffix from face names.
10897         (gnus-server-agent-face, gnus-server-opened-face)
10898         (gnus-server-closed-face, gnus-server-denied-face)
10899         (gnus-server-offline-face):
10900         New backward-compatibility aliases for renamed faces.
10901         (gnus-server-agent-face, gnus-server-opened-face)
10902         (gnus-server-closed-face, gnus-server-denied-face)
10903         (gnus-server-offline-face): Use renamed gnus faces.
10904
10905         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
10906         Remove "-face" suffix from face names.
10907         (gnus-picon-xbm-face, gnus-picon-face):
10908         New backward-compatibility aliases for renamed faces.
10909
10910         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
10911         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
10912         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
10913         (gnus-cite-11): Remove "-face" suffix from face names.
10914         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
10915         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
10916         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
10917         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
10918         New backward-compatibility aliases for renamed faces.
10919         (gnus-cite-attribution-face, gnus-cite-face-list)
10920         (gnus-article-boring-faces): Use renamed gnus faces.
10921
10922         * gnus-art.el (gnus-signature, gnus-header-from)
10923         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
10924         (gnus-header-content): Remove "-face" suffix from face names.
10925         (gnus-signature-face, gnus-header-from-face)
10926         (gnus-header-subject-face, gnus-header-newsgroups-face)
10927         (gnus-header-name-face, gnus-header-content-face):
10928         New backward-compatibility aliases for renamed faces.
10929         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
10930
10931         * gnus-sum.el (gnus-summary-selected-face)
10932         (gnus-summary-highlight): Use renamed gnus faces.
10933         * gnus-group.el (gnus-group-highlight): Likewise.
10934
10935 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
10936
10937         * gnus-sieve.el (gnus-sieve-article-add-rule):
10938         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
10939         * spam-stat.el (spam-stat-buffer-change-to-spam)
10940         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
10941
10942         * message.el (message-is-yours-p):
10943         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
10944
10945 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10946
10947         * mm-view.el (mm-inline-text): Withdraw the last change.
10948
10949 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10950
10951         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
10952         executing enriched-decode.
10953
10954 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10955
10956         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
10957         charset of tar files.
10958
10959 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
10960
10961         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
10962
10963 2005-06-04  Lute Kamstra  <lute@gnu.org>
10964
10965         * nnfolder.el (nnfolder-read-folder): Make sure that undo
10966         information is never recorded.
10967
10968 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
10969
10970         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
10971
10972 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10973
10974         * pop3.el (pop3-apop): Run md5 in the binary mode.
10975
10976         * starttls.el (starttls-set-process-query-on-exit-flag):
10977         Use eval-and-compile.
10978
10979 2005-05-31  Simon Josefsson  <jas@extundo.com>
10980
10981         * smime.el (smime-replace-in-string): Define.
10982         (smime-cert-by-ldap-1): Use it.
10983
10984 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
10985
10986         * gnus-art.el (article-display-x-face): Replace
10987         process-kill-without-query by gnus-set-process-query-on-exit-flag.
10988
10989         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
10990         set-process-query-on-exit-flag or process-kill-without-query.
10991
10992         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
10993         loop instead of replace-regexp.
10994
10995         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
10996         instead of process-kill-without-query if it is available.
10997
10998         * lpath.el: Fbind ldap-search-entries.
10999
11000         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
11001         instead of find-file-hooks if it is available.
11002
11003         * mml1991.el: Bind pgg-default-user-id when compiling.
11004
11005         * mml2015.el: Bind pgg-default-user-id when compiling.
11006
11007         * nndraft.el (nndraft-request-associate-buffer):
11008         Use write-contents-functions instead of write-contents-hooks if it is
11009         available.
11010
11011         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
11012         instead of find-file-hooks if it is available.
11013
11014         * nntp.el (nntp-open-connection): Replace
11015         process-kill-without-query by gnus-set-process-query-on-exit-flag.
11016         (nntp-open-ssl-stream): Ditto.
11017         (nntp-open-tls-stream): Ditto.
11018
11019         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
11020         set-process-query-on-exit-flag or process-kill-without-query.
11021         (starttls-open-stream-gnutls): Use it instead of
11022         process-kill-without-query.
11023         (starttls-open-stream): Ditto.
11024
11025 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
11026
11027         * smime.el (smime-cert-by-ldap-1): Don't use
11028         replace-regexp-in-string.
11029
11030 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
11031
11032         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
11033
11034         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
11035         in PEM format.  Adjust to the XEmacs compability.
11036
11037 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
11038
11039         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
11040         by `string-to-number'.
11041         * gnus-agent.el (gnus-agent-regenerate-group)
11042         (gnus-agent-fetch-articles): Ditto.
11043         * gnus-art.el (gnus-button-fetch-group): Ditto.
11044         * gnus-cache.el (gnus-cache-generate-active)
11045         (gnus-cache-articles-in-group): Ditto.
11046         * gnus-group.el (gnus-group-set-current-level)
11047         (gnus-group-insert-group-line): Ditto.
11048         * gnus-score.el (gnus-score-set-expunge-below)
11049         (gnus-score-set-mark-below, gnus-summary-score-effect)
11050         (gnus-summary-score-entry): Ditto.
11051         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
11052         (gnus-soup-pack): Ditto.
11053         * gnus-spec.el (gnus-xmas-format): Ditto.
11054         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
11055         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
11056         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
11057         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
11058         * nndb.el (nndb-get-remote-expire-response): Ditto.
11059         * nndiary.el (nndiary-parse-schedule-value)
11060         (nndiary-string-to-number, nndiary-request-replace-article)
11061         (nndiary-request-article): Ditto.
11062         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
11063         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
11064         * nneething.el (nneething-make-head): Ditto.
11065         * nnfolder.el (nnfolder-request-article)
11066         (nnfolder-retrieve-headers): Ditto.
11067         * nnheader.el (nnheader-file-to-number): Ditto.
11068         * nnkiboze.el (nnkiboze-request-article): Ditto.
11069         * nnmail.el (nnmail-process-unix-mail-format)
11070         (nnmail-process-babyl-mail-format): Ditto.
11071         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
11072         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
11073         (nnmh-request-create-group, nnmh-request-list-1)
11074         (nnmh-request-group, nnmh-request-article): Ditto.
11075         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
11076         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
11077         * nnsoup.el (nnsoup-make-active): Ditto.
11078         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
11079         * nntp.el (nntp-find-group-and-number)
11080         (nntp-retrieve-headers-with-xover): Ditto.
11081         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
11082         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
11083         (pgg-format-key-identifier): Ditto.
11084         * pop3.el (pop3-last, pop3-stat): Ditto.
11085         * qp.el (quoted-printable-decode-region): Ditto.
11086
11087         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
11088         of concat.
11089
11090 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11091
11092         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
11093
11094         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
11095
11096         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
11097
11098         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
11099
11100         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
11101
11102         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
11103
11104         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
11105         (gnus-carpal-mode): Ditto.
11106
11107         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
11108         (gnus-browse-mode): Ditto.
11109
11110         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
11111
11112         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
11113
11114 2005-05-29  Richard M. Stallman  <rms@gnu.org>
11115
11116         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
11117
11118 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11119
11120         * gnus-util.el (gnus-run-mode-hooks): New function.
11121
11122         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
11123
11124         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
11125         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
11126
11127 2005-05-27  Lute Kamstra  <lute@gnu.org>
11128
11129         * dns-mode.el (dns-mode): Specify customization group.
11130
11131 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
11132
11133         * gnus-agent.el (gnus-agent-make-mode-line-string):
11134         Use mode-line-highlight as mouse-face.
11135
11136 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11137
11138         * canlock.el (canlock): Change the parent group to news.
11139
11140         * deuglify.el (gnus-outlook-deuglify): Add :group.
11141
11142         * dig.el (dig): Add :group.
11143
11144         * dns-mode.el (dns-mode): Add :group.
11145
11146         * encrypt.el (encrypt): Add :group.
11147
11148         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
11149         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
11150         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
11151         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
11152         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
11153
11154         * gnus-diary.el (gnus-diary): Add :group.
11155
11156         * gnus.el (gnus-group-news-1-face): Add :group.
11157         (gnus-group-news-1-empty-face): Ditto.
11158         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
11159         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
11160         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
11161         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
11162         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
11163         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
11164         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
11165         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
11166         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
11167         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
11168         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
11169         (gnus-summary-high-ticked-face): Ditto.
11170         (gnus-summary-low-ticked-face): Ditto.
11171         (gnus-summary-normal-ticked-face): Ditto.
11172         (gnus-summary-high-ancient-face): Ditto.
11173         (gnus-summary-low-ancient-face): Ditto.
11174         (gnus-summary-normal-ancient-face): Ditto.
11175         (gnus-summary-high-undownloaded-face): Ditto.
11176         (gnus-summary-low-undownloaded-face): Ditto.
11177         (gnus-summary-normal-undownloaded-face): Ditto.
11178         (gnus-summary-high-unread-face): Ditto.
11179         (gnus-summary-low-unread-face): Ditto.
11180         (gnus-summary-normal-unread-face): Ditto.
11181         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
11182         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
11183
11184         * hashcash.el (hashcash): New custom group.
11185         (hashcash-default-payment): Add :group.
11186         (hashcash-payment-alist): Ditto.
11187         (hashcash-default-accept-payment): Ditto.
11188         (hashcash-accept-resources): Ditto.
11189         (hashcash-path): Ditto.
11190         (hashcash-extra-generate-parameters): Ditto.
11191         (hashcash-double-spend-database): Ditto.
11192         (hashcash-in-news): Ditto.
11193
11194         * message.el (message-minibuffer-local-map): Add :group.
11195
11196         * netrc.el (netrc): Add :group.
11197
11198         * sieve-manage.el (sieve-manage-log): Add :group.
11199         (sieve-manage-default-user): Diito.
11200         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
11201         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
11202         (sieve-manage-authenticators): Ditto.
11203         (sieve-manage-authenticator-alist): Ditto.
11204         (sieve-manage-default-port): Ditto.
11205
11206         * sieve-mode.el (sieve-control-commands-face): Add :group.
11207         (sieve-action-commands-face): Ditto.
11208         (sieve-test-commands-face): Ditto.
11209         (sieve-tagged-arguments-face): Ditto.
11210
11211         * smime.el (smime): Add :group.
11212
11213         * spam-report.el (spam-report): Add :group.
11214
11215         * spam.el (spam, spam-face): Add :group.
11216
11217 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11218
11219         * nntp.el (nntp-next-result-arrived-p): Some news servers may
11220         return \n.\n.\n at the end of articles.  Protect against that.
11221         (nntp-with-open-group): Allow debugging.
11222
11223         * nnheader.el (mail-header-set-extra): Make into a function
11224         because I just could't understand how to quote the list properly.
11225
11226         * dns.el (query-dns-cached): New function.
11227
11228 2005-05-26  Lute Kamstra  <lute@gnu.org>
11229
11230         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
11231
11232 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11233
11234         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
11235
11236         * gnus-art.el: Don't autoload mail-extract-address-components.
11237
11238         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
11239         eval-and-compile to evaluate it.
11240
11241         * hashcash.el: Don't autoload executable-find.
11242
11243         * nndb.el: Don't declare the nndb back end two or more times; don't
11244         autoload news-reply-mode, news-setup, cancel-timer and telnet.
11245
11246         * nntp.el: Autoload format-spec instead of format; use
11247         eval-and-compile to evaluate autoload forms.
11248
11249 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
11250
11251         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
11252
11253 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11254
11255         * gnus.el (gnus-version-number): Bump version.
11256
11257 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
11258
11259         * gnus.el: No Gnus v0.3 is released.
11260
11261 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11262
11263         * lpath.el (featurep): Bind show-nonbreak-escape.
11264
11265 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11266
11267         * gnus-art.el (gnus-article-edit-part): Disable undo.
11268
11269 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11270
11271         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
11272         gnus-article-date-lapsed-new-header is t if date timer is active;
11273         skip headers in which the original date value is empty.
11274         (gnus-article-save-original-date): Redefine it as a macro.
11275         (gnus-display-mime): Use it.
11276
11277 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11278
11279         * gnus-art.el (article-date-ut): Support converting date in
11280         forwarded parts as well.
11281         (gnus-article-save-original-date): New function.
11282         (gnus-display-mime): Use it.
11283
11284 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
11285
11286         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
11287         enclosure element of <item>.
11288
11289 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
11290
11291         * message.el (message-kill-buffer-query): Renamed from
11292         `message-kill-buffer-query-if-modified'.  Added :version.
11293
11294 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11295
11296         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
11297         window layout.
11298
11299 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11300
11301         * mml.el: Autoload dnd when compiling.
11302
11303 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
11304
11305         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
11306         x-dnd-*.
11307
11308 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11309
11310         * qp.el (quoted-printable-encode-region): Save excursion.
11311
11312 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
11313
11314         * message.el (message-kill-buffer-query-if-modified): Add new variable
11315         so the user can kill a modified message buffer quickly.
11316         (message-kill-buffer): Use it.
11317
11318 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11319
11320         * lpath.el: Fbind display-time-event-handler; don't fbind
11321         string-to-multibyte.
11322
11323         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
11324
11325 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11326
11327         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
11328         contained in text because xml.el decodes entities) with LFs.
11329
11330 2005-04-11  Lute Kamstra  <lute@gnu.org>
11331
11332         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
11333         differently.
11334
11335 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11336
11337         * mm-util.el (mm-detect-coding-region): Typo.
11338
11339 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11340
11341         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
11342
11343 2005-04-06  Deepak Goel  <deego@gnufans.org>
11344
11345         * spam-stat.el (spam-stat-score-buffer): Add a call to a
11346         user-function allow user modifications of the scores.
11347         (spam-stat-score-buffer-user): New function, to allow
11348         user-computed modifications to the score.
11349         (spam-stat-score-buffer-user-functions): List of additional
11350         scoring functions.
11351         (spam-stat-error-holder): Global temporary error holder.
11352         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
11353         variable.
11354
11355 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
11356
11357         * gnus-registry.el (gnus-registry-clean-empty-function)
11358         (gnus-registry-trim, gnus-registry-fetch-groups)
11359         (gnus-registry-delete-group): Groups that match
11360         `gnus-registry-ignored-groups' are removed from the registry
11361         entries, not just ignored for splitting.  This helps clean up the
11362         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
11363         to get all the groups a message ID is in.
11364
11365         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
11366         (spam-stat-split-fancy): Change "threshhold" to "threshold".
11367         (spam-stat-score-buffer-user-functions): Add :number custom type.
11368
11369 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11370
11371         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
11372         argument in XEmacs.
11373
11374         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
11375         (nnrss-request-group): Decode group name first.
11376         (nnrss-request-article): Make a text/plain article if mml-to-mime
11377         failed.
11378         (nnrss-get-encoding): Return a compatible encoding according to
11379         nnrss-compatible-encoding-alist.
11380         (nnrss-find-el): Use consp instead of listp.
11381         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
11382
11383 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11384
11385         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
11386         which Emacs 20 doesn't support.
11387         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
11388
11389 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
11390
11391         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
11392         silence the byte compiler inside the defun.
11393
11394         * gnus-demon.el (parse-time-string): Add autoload.
11395
11396         * gnus-delay.el (parse-time-string): Add autoload.
11397
11398         * gnus-art.el (parse-time-string): Add autoload.
11399
11400         * nnultimate.el (parse-time): Require for `parse-time-string'.
11401
11402 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
11403
11404         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
11405
11406         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
11407
11408         * smime.el (smime-ldap-host-list): Add :version.
11409
11410 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
11411
11412         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
11413         pass it to `gnus-browse-read-group'.
11414         (gnus-browse-read-group): Add NUMBER argument and pass it to
11415         `gnus-group-read-ephemeral-group'.
11416
11417         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
11418         argument and pass it to `gnus-group-read-group'.
11419
11420 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
11421
11422         * mm-util.el (mm-xemacs-find-mime-charset): Only call
11423         mm-xemacs-find-mime-charset-1 if we have the mule feature
11424         available at runtime.
11425
11426 2005-03-25  Werner Lemberg  <wl@gnu.org>
11427
11428         * nnmaildir.el: Replace `illegal' with `invalid'.
11429
11430 2005-03-23  Lute Kamstra  <lute@gnu.org>
11431
11432         * time-date.el: Add comment on time value formats.
11433         Don't require parse-time.
11434         (with-decoded-time-value): New macro.
11435         (encode-time-value): New function.
11436         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
11437         (days-to-time): Return a valid time value when arg is huge.
11438         (time-since): Use time-subtract.
11439         (time-to-number-of-days): Use time-to-seconds.
11440
11441 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11442
11443         * gnus-start.el (gnus-display-time-event-handler):
11444         Check display-time-timer at runtime rather than only at load time
11445         in case display-time-mode is turned off in the mean time.
11446
11447 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
11448
11449         * nnimap.el (nnimap-open-connection): Print which authinfo file is
11450         used.
11451
11452         * nneething.el (nneething-map-file-directory): Derive from
11453         `gnus-directory'.
11454
11455         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
11456         the To/Cc button.
11457
11458 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
11459
11460         * nnmaildir.el (nnmaildir-request-accept-article):
11461         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
11462
11463 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11464
11465         * gnus-async.el: Require timer-funcs at compile time when in
11466         XEmacs for `run-with-idle-timer'.
11467
11468 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11469
11470         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
11471         autoloaded function.
11472
11473 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11474
11475         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
11476
11477 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
11478
11479         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
11480
11481 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11482
11483         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Add
11484         gnus-expert-user to default.
11485
11486 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
11487
11488         * nnimap.el (nnimap-open-server): Ditto.
11489
11490         * imap.el (imap-authenticate): Fix typo.
11491
11492 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
11493
11494         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
11495         buffer (since IMAP server might return FETCH response out of
11496         order, and the nntp buffer must be sorted).
11497
11498 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
11499
11500         * gnus-start.el (gnus-convert-old-newsrc): Fixed numeric
11501         comparison on string.
11502
11503         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
11504         (gnus-agent-score): Renamed category keywords to match gnus-cus.
11505         (gnus-agent-summary-fetch-series): Modified to protect against
11506         gnus-agent-summary-fetch-group clearing processable flags.
11507         (gnus-agent-synchronize-group-flags): Update live group buffer as
11508         synchronization may occur due to the user toggle the plugged
11509         status.
11510         (gnus-agent-fetch-group-1): Clear downloadable flag when article
11511         successfully downloaded.
11512         (gnus-agent-expire-group-1): Avoid using markers when the overview
11513         is in ascending order; greatly improves performance.
11514         (gnus-agent-regenerate-group): Use
11515         gnus-agent-synchronize-group-flags to reset read status in both
11516         gnus and server.
11517         (gnus-agent-update-files-total-fetched-for): Fixed initial size.
11518
11519 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
11520
11521         * message.el: Don't autoload former message-utils variables.
11522         (message-strip-subject-trailing-was): Change doc string.
11523
11524         * nnweb.el: Fixes for `gnus-group-make-web-group'.
11525         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
11526         (nnweb-google-search): Add "hl=en" here.
11527         (nnweb-google-parse-1, nnweb-google-create-mapping):
11528         Don't hardcode URL.
11529
11530 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
11531
11532         * message.el (message-get-reply-headers, message-followup):
11533         Mention related variables `message-use-followup-to' and
11534         `message-use-mail-followup-to', in the information buffer.
11535
11536         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
11537         of broken groups(-beta).google.com.
11538
11539 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
11540
11541         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
11542         parameter to invoked gnus-request-move-article; remove the
11543         redundant gnus-sum-hint-move-is-internal variable; apply the marks
11544         all at once instead of once per article.
11545         (gnus-summary-remove-process-mark): Accept a list of articles as
11546         well as a single article for processing.
11547
11548         * gnus-int.el (gnus-request-move-article): Add move-is-internal
11549         parameter.
11550
11551         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
11552
11553         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
11554
11555         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
11556         parameter.
11557
11558         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
11559         parameter.
11560
11561         * nnimap.el (nnimap-request-move-article): Add move-is-internal
11562         parameter and remove the gnus-sum-hint-move-is-internal variable.
11563
11564         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
11565         parameter.
11566
11567         * nndraft.el (nndraft-request-move-article): Add move-is-internal
11568         parameter.
11569
11570         * nndiary.el (nndiary-request-move-article): Add move-is-internal
11571         parameter.
11572
11573         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
11574
11575         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
11576         parameter.
11577
11578         * nnagent.el (nnagent-request-move-article): Add move-is-internal
11579         parameter.
11580
11581 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11582
11583         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
11584         a more conservative way.
11585
11586 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11587
11588         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
11589         buffer, so it moves the window's cursor.
11590
11591 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
11592
11593         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
11594         `mm-dissect-multipart' and receive the from field as an (optional)
11595         argument from `mm-dissect-multipart'.
11596         (mm-dissect-multipart): Receive the from field as an argument and
11597         pass it on when we call `mm-dissect-buffer' on MIME parts.
11598         Fixes verification/decryption of signed/encrypted MIME parts.
11599
11600 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
11601
11602         * gnus-sum.el (gnus-summary-move-article): Set
11603         gnus-sum-hint-move-is-internal for gnus-request-move-article and
11604         whatever it calls (right now, only nnimap-request-move article
11605         respects it).
11606
11607         * nnimap.el (nnimap-request-move-article): When
11608         gnus-sum-hint-move-is-internal is set, don't do the extra
11609         nnimap-request-article.
11610
11611 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
11612
11613         * nnheader.el (nnheader-find-file-noselect): Add doc string.
11614
11615         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
11616         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
11617
11618         * gnus-sum.el (gnus-summary-caesar-message):
11619         Apply `gnus-treat-article' after rotation.
11620
11621         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
11622         doc string.
11623
11624 2005-02-22  Simon Josefsson  <jas@extundo.com>
11625
11626         * encrypt.el (encrypt-password-cache-expiry): Remove (use
11627         `password-cache-expiry' instead).  Reported by Arne Jørgensen
11628         <arne@arnested.dk>.
11629         (encrypt): Add password-cache and password-cache-expiry as group
11630         members.
11631
11632 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
11633
11634         * smime.el (smime-ldap-host-list): Doc fix.
11635         (smime-ask-passphrase): Use `password-read-and-add' to read (and
11636         cache) password.
11637         (smime-sign-region): Use it.
11638         (smime-decrypt-region): Use it.
11639         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
11640         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
11641         fails.
11642         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
11643         certificate from DER to PEM format rather than calling openssl.
11644
11645         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
11646
11647         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
11648         for signing/encryption.
11649
11650         * mml.el (mml-parse-1): Use them.
11651
11652 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
11653
11654         * nnrss.el (nnrss-verbose): Removed.
11655         (nnrss-request-group): Use `nnheader-message' instead.
11656
11657 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
11658
11659         * nnrss.el (nnrss-verbose): New variable.
11660         (nnrss-request-group): Make it say nnrss is requesting a group.
11661
11662 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
11663
11664         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
11665         Handle news URL with given port correctly.
11666
11667 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11668
11669         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
11670         containing special characters.
11671
11672         * gnus-sum.el (gnus-summary-edit-article): Ditto.
11673
11674         * mml.el (mime-to-mml): Ditto.
11675
11676         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
11677         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
11678         (rfc2047-decode-region): Quote decoded words containing special
11679         characters when rfc2047-quote-decoded-words-containing-tspecials
11680         is non-nil.
11681
11682 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
11683
11684         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
11685
11686         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
11687
11688 2005-02-15  Simon Josefsson  <jas@extundo.com>
11689
11690         * nnimap.el (nnimap-debug): Doc fix.
11691
11692         * imap.el (imap-debug): Doc fix.
11693
11694 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11695
11696         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
11697
11698 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
11699
11700         * gnus.el (spam-contents): Improve docs for spam-contents
11701         parameter in its variable incarnation.
11702
11703 2005-02-14  Simon Josefsson  <jas@extundo.com>
11704
11705         * smime-ldap.el: Use require instead of load-library for ldap.
11706         (smime-ldap-search): Indent.
11707         (smime-ldap-search-internal): Shorten line.
11708
11709         * smime.el (smime-cert-by-dns): Add doc-string.
11710         (smime-cert-by-ldap-1): Indent.
11711
11712         * mml-smime.el (mml-smime-get-ldap-cert): Renamed from
11713         mml-smime-get-dns-ldap.
11714         (mml-smime-encrypt-query): Use new function.  Default to ldap.
11715
11716 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
11717
11718         * smime.el: Require smime-ldap.
11719         (smime-ldap-host-list): New variable.
11720         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
11721
11722         * mml-smime.el (mml-smime-encrypt-query): New function.
11723         (mml-smime-encrypt-query): Use it.
11724
11725         * smime-ldap.el: New file.
11726
11727 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11728
11729         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
11730
11731 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
11732
11733         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
11734         argument in doc string.  Make query for type more clear.
11735
11736 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
11737
11738         * gnus.el (gnus-group-startup-message): Search for gnus images in
11739         etc/images/gnus.
11740         * mm-util.el (mm-image-load-path): Likewise.
11741         * smiley.el (smiley-data-directory): Search for smilies in
11742         etc/images/smilies.
11743
11744 2005-02-09  Kim F. Storm  <storm@cua.dk>
11745
11746         Change Emacs release version from 21.4 to 22.1 throughout.
11747         Change Emacs development version from 21.3.50 to 22.0.50.
11748
11749 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11750
11751         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
11752
11753         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
11754         non-Mule XEmacs as well.
11755         (mm-decompress-buffer): Signal an error intentionally if it does
11756         not decompress compressed data because auto-compression-mode is
11757         disabled.
11758
11759 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
11760
11761         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
11762         an ID in the registry even if it has no groups.
11763
11764 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11765
11766         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
11767         merge it into mm-decompress-buffer.
11768         (gnus-mime-copy-part): Use the MIME part charset, the value which
11769         a user specified or gnus-newsgroup-charset for decoding, like
11770         gnus-mime-inline-part does; set buffer-file-coding-system to tell
11771         save-buffer what was used.  Suggested by Kevin Ryde
11772         <user42@zip.com.au>.
11773         (gnus-mime-inline-part): Allow the name parameter as well as the
11774         filename parameter; force decompressing of compressed data; always
11775         display contents being not decoded as unibyte.
11776
11777         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
11778         as well as the filename parameter.
11779
11780         * mm-util.el (mm-decompress-buffer): Merge
11781         gnus-mime-jka-compr-maybe-uncompress.
11782         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
11783         of compressed data.
11784
11785 2005-02-08  Simon Josefsson  <jas@extundo.com>
11786
11787         * imap.el (imap-log): Doc fix.
11788
11789 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11790
11791         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
11792         the coding cookies; decompress compressed parts.
11793
11794         * mml.el (mml-generate-mime-1): Add the charset parameter according
11795         to the value which a user specified manually or the coding cookie.
11796
11797         * mm-util.el (mm-string-to-multibyte): New function.
11798         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
11799         (mm-coding-system-to-mime-charset): New function.
11800         (mm-decompress-buffer): New function.
11801         (mm-find-buffer-file-coding-system): New function.
11802
11803         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
11804         (mm-display-inline-fontify): Rewrite for decoding and decompressing
11805         parts.
11806
11807 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
11808
11809         * mm-view.el (mm-display-inline-fontify): Decode a part according
11810         to the charset parameter.
11811
11812 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11813
11814         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
11815         prefix arg is neither nil nor a number, as info specifies.
11816
11817 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11818
11819         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
11820         timestamps.
11821
11822 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
11823
11824         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
11825         groups error checking and notify user.
11826
11827 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
11828
11829         * message.el (message-send-mail-function): Check existence of
11830         sendmail-program first before using default value
11831         `message-send-mail-with-sendmail'.  Otherwise use more generic
11832         `smtpmail-send-it'.
11833
11834 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11835
11836         * nntp.el (nntp-request-update-info): Always return nil.
11837
11838 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11839
11840         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
11841
11842 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11843
11844         * message.el (message-beginning-of-line): Change the behavior when
11845         invoked between BOL and : so that it first moves backward.
11846
11847 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11848
11849         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
11850         article buffer when editing of the article is discarded.
11851         (gnus-article-prepare): Revert.
11852
11853 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11854
11855         * gnus-art.el (gnus-article-prepare):
11856         Remove message-strip-forbidden-properties from the local hook.
11857
11858 2005-01-27  Simon Josefsson  <jas@extundo.com>
11859
11860         * password.el (password-cache-add): Only start one timer per key.
11861         Reported by Derek Atkins <warlord@MIT.EDU>.
11862
11863 2005-01-26  Steve Youngs  <steve@sxemacs.org>
11864
11865         * run-at-time.el: Removed.  It is no longer needed as
11866         timer-funcs.el in the xemacs-base package has a working version of
11867         `run-at-time'.
11868
11869         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
11870
11871         * password.el: Require timer-funcs instead of run-at-time in
11872         XEmacs.
11873         Remove `password-run-at-time' macro.
11874         (password-cache-add): Use `run-at-time' instead of
11875         `password-run-at-time'.
11876
11877         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
11878         Remove `nnheader-cancel-function-timers' alias,
11879         `cancel-function-timers' exists in XEmacs in timer-funcs.
11880
11881         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
11882         for `run-with-idle-timer'.
11883
11884         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
11885         for `run-at-time'.
11886
11887         * mm-url.el: Require timer-funcs at compile time when in XEmacs
11888         for `with-timeout'.
11889
11890         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
11891         the same as for XEmacs 21.4.
11892         No need to ignore `run-with-idle-timer', this function exists in
11893         XEmacs now in timer-funcs.el in the xemacs-base package.
11894         (dgnushack-compile): No need to delete
11895         run-at-time.el from the list of files to compile because it
11896         doesn't exist anymore.
11897
11898 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11899
11900         * mml.el (mml-generate-mime-1): Convert string into unibyte when
11901         inserting " *mml*" buffer's contents into a unibyte temp buffer.
11902
11903 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
11904
11905         * mail-source.el (mail-source-fetch-imap): Search for ^From case
11906         sensitively.
11907
11908 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
11909
11910         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
11911
11912 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11913
11914         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
11915         which will be inserted according to the multibyteness of a buffer
11916         rather than the type of contents.  Suggested by ARISAWA Akihiro
11917         <ari@mbf.ocn.ne.jp>.
11918
11919         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
11920         of string which old xml.el may return rather than a string.
11921
11922 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11923
11924         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
11925
11926 2005-01-16  Simon Josefsson  <jas@extundo.com>
11927
11928         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
11929         idn/idna.el isn't available.
11930         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
11931         <michael@waxrat.com>.
11932
11933         * hashcash.el: Remove non-FSF copyright header.
11934
11935         * hashcash.el (hashcash-extra-generate-parameters): New variable.
11936         (hashcash-generate-payment): Use it.
11937         (hashcash-generate-payment-async): Use it.
11938
11939 2005-01-15  Simon Josefsson  <jas@extundo.com>
11940
11941         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
11942         Suggested by Raymond Scholz <ray-2005@zonix.de>.
11943
11944         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
11945         gnus-summary-idna-message.
11946         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
11947         (gnus-summary-idna-message): New function.
11948
11949 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
11950
11951         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
11952         gnus-novice-user.
11953
11954 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11955
11956         * nnrss.el (nnrss-request-delete-group): Delete entries in
11957         nnrss-group-alist as well.
11958         (nnrss-save-server-data): Insert newline.
11959
11960 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
11961
11962         * gnus.el (gnus-user-agent): Use list of symbols instead of
11963         symbols.  Display full version number for (S)XEmacs.  Optionally
11964         display (S)XEmacs codename.
11965
11966         * gnus-util.el (gnus-emacs-version): Update for new
11967         `gnus-user-agent'.
11968
11969         * gnus-msg.el (gnus-extended-version): Make it possible to omit
11970         Gnus version.
11971
11972 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
11973
11974         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
11975         which is unreadable in some setups.
11976
11977 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11978
11979         * gnus-spec.el (gnus-update-format-specifications): Flush the
11980         group format spec cache if it doesn't support decoded group names.
11981
11982 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
11983
11984         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
11985         Allow to apply decay on score files matching a regexp.
11986
11987 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11988
11989         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
11990         compatibility in %g and %c.
11991
11992 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11993
11994         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
11995         name for only %g and %c.
11996         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
11997         of gnus-tmp-group to decoded group name.
11998         (gnus-group-make-rss-group): Exclude `/'s from group names.
11999
12000 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12001
12002         * nnrss.el (nnrss-get-encoding): Fix regexp.
12003
12004 2004-12-27  Simon Josefsson  <jas@extundo.com>
12005
12006         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
12007         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
12008         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
12009
12010 2004-12-17  Kim F. Storm  <storm@cua.dk>
12011
12012         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
12013
12014         * gnus-sum.el (gnus-summary-mode-map): Likewise.
12015
12016 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
12017
12018         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
12019
12020 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12021
12022         * nnrss.el: Require rfc2047 and mml.
12023         (nnrss-file-coding-system): New variable.
12024         (nnrss-format-string): Redefine it as an inline function.
12025         (nnrss-decode-group-name): New function.
12026         (nnrss-string-as-multibyte): Remove.
12027         (nnrss-retrieve-headers): Decode group name; don't use
12028         nnrss-format-string.
12029         (nnrss-request-group): Decode group name.
12030         (nnrss-request-article): Decode group name; allow a Message-ID as
12031         well as an article number; don't use nnrss-format-string; encode a
12032         Message-ID string which may contain non-ASCII characters; use
12033         mml-to-mime to compose a MIME article.
12034         (nnrss-request-expire-articles): Decode group name.
12035         (nnrss-request-delete-group): Decode group name.
12036         (nnrss-fetch): Clarify error message.
12037         (nnrss-read-server-data): Use insert-file-contents instead of load;
12038         bind file-name-coding-system; use multibyte buffer.
12039         (nnrss-save-server-data): Bind coding-system-for-write to the
12040         value of nnrss-file-coding-system; bind file-name-coding-system;
12041         add coding cookie.
12042         (nnrss-read-group-data): Use insert-file-contents instead of load;
12043         bind file-name-coding-system; use multibyte buffer.
12044         (nnrss-save-group-data): Bind coding-system-for-write to the
12045         value of nnrss-file-coding-system; bind file-name-coding-system.
12046         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
12047         make it work with non-ASCII text.
12048         (nnrss-find-el): Make it work with old xml.el as well.
12049
12050 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
12051
12052         * nnrss.el (nnrss-get-encoding): New function.
12053         (nnrss-fetch): Use unibyte buffer initially; bind
12054         coding-system-for-read while performing mm-url-insert; remove ^Ms;
12055         decode contents according to the encoding attribute.
12056         (nnrss-save-group-data): Add coding cookie.
12057         (nnrss-mime-encode-string): New function.
12058         (nnrss-check-group): Use it to encode subject and author.
12059
12060 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
12061
12062         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
12063         imaginary variable.
12064
12065 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12066
12067         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
12068         correctly even if there are wide characters.
12069
12070 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
12071
12072         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
12073         downcased symbol names; make a new cache instead of reusing
12074         bbdb-hashtable.
12075
12076 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12077
12078         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
12079         concatenating segments rather than before concatenating them.
12080         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12081
12082         * message.el (message-get-reply-headers): Bind `extra'.
12083
12084 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12085
12086         * message.el (message-extra-wide-headers): New variable.
12087         (message-get-reply-headers): Use it.
12088
12089 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12090
12091         * gnus-agent.el (gnus-agent-group-path): Decode group name.
12092         (gnus-agent-group-pathname): Ditto.
12093
12094         * gnus-cache.el (gnus-cache-file-name): Decode group name.
12095
12096         * gnus-group.el (gnus-group-make-group): Decode group name.
12097         (gnus-group-make-rss-group): Register the group data after opening
12098         the nnrss group.
12099
12100 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
12101
12102         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
12103         by expiry now get marked as read.
12104
12105 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12106
12107         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
12108
12109 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
12110
12111         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
12112         unify Latin characters in XEmacs.
12113         (mm-find-mime-charset-region): Use it.
12114
12115 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12116
12117         * gnus-util.el (gnus-delete-directory): New function.
12118
12119         * gnus-agent.el (gnus-agent-delete-group): Use it.
12120
12121         * gnus-cache.el (gnus-cache-delete-group): Use it.
12122
12123 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12124
12125         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
12126         names.
12127
12128 2004-12-16  Simon Josefsson  <jas@extundo.com>
12129
12130         * hashcash.el (hashcash-payment-alist): Fix custom :type.
12131
12132 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12133
12134         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
12135
12136         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
12137         (gnus-group-set-current-level): Decode group name.
12138
12139 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
12140
12141         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
12142         failed.
12143
12144 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12145
12146         * gnus-group.el (gnus-group-delete-group): Decode group name.
12147         (gnus-group-make-rss-group): Encode group name.
12148         (gnus-group-catchup-current): Decode group name.
12149         (gnus-group-kill-group): Decode group name.
12150
12151 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12152
12153         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
12154
12155 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12156
12157         * gnus-group.el (gnus-group-make-rss-group):
12158         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
12159
12160         * gnus-start.el (gnus-setup-news): Honor user's setting to
12161         gnus-message-archive-method.  Suggested by Lute Kamstra
12162         <lute@gnu.org>.
12163
12164 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
12165
12166         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
12167         global counterparts of the buffer-local variables.
12168
12169 2004-11-16  Romain Francoise  <romain@orebokech.com>
12170
12171         * gnus-sum.el (gnus-summary-exit): Don't clear the global
12172         counterparts of the buffer-local variables.
12173
12174 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12175
12176         * message.el (message-forbidden-properties): Fixed typo in doc
12177         string.
12178
12179 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12180
12181         * gnus-util.el (gnus-replace-in-string): Added doc string.
12182
12183         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
12184         to avoid problems when splitting mails with many recipients.
12185
12186 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12187
12188         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
12189         pop-to-buffer, covered by the subsequent gnus-configure-windows.
12190
12191 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
12192
12193         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
12194         if there is no hashtable in memory or file modification time is
12195         newer than cached timestamp.
12196
12197 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
12198
12199         * gnus-sum.el (gnus-summary-limit-to-recipient): Implement
12200         not-matching option.
12201
12202 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
12203
12204         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
12205         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
12206         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
12207         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
12208         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
12209         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
12210
12211 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12212
12213         * message.el (message-forward-make-body-mml): Remove headers
12214         according to message-forward-ignored-headers if a message is decoded.
12215
12216 2004-12-02  Romain Francoise  <romain@orebokech.com>
12217
12218         * message.el (message-forward-make-body-plain): Always remove
12219         headers according to message-forward-ignored-headers.
12220
12221 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
12222
12223         * spam.el (spam-summary-prepare-exit): Remove the
12224         gnus-summary-limit pop for now, it has problems with ham marks for
12225         me.
12226
12227 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
12228
12229         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
12230         correctly.
12231
12232 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
12233
12234         * format-spec.el (format-spec): Message the char.
12235
12236 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
12237
12238         * gnus-art.el (gnus-split-methods): Reformat comments.
12239
12240         * spam.el (spam-summary-prepare-exit): Remove article limits
12241         before exiting the summary buffer.
12242
12243 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12244
12245         * lpath.el: Remove bbdb-create-internal, bbdb-records,
12246         spam-BBDB-register-routine and spam-enter-ham-BBDB.
12247
12248         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
12249         order to silence the byte compiler.
12250
12251         * spam.el: Fix the way to silence the byte compiler, which
12252         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
12253         bbdb-search-simple, spam-BBDB-register-routine,
12254         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
12255         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
12256         spam-stat-buffer-is-spam, spam-stat-load,
12257         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
12258         spam-stat-save and spam-stat-split-fancy.
12259
12260 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12261
12262         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
12263         which may confuse users.
12264         (canlock-password-for-verify): Ditto.
12265
12266         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
12267
12268         * gnus-art.el (gnus-emphasis-alist): Ditto.
12269
12270         * gnus-registry.el (gnus-registry-max-entries): Ditto.
12271
12272         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
12273
12274         * gnus-start.el (gnus-save-killed-list): Ditto.
12275
12276         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
12277         (gnus-sum-thread-tree-root): Ditto.
12278         (gnus-sum-thread-tree-false-root): Ditto.
12279         (gnus-sum-thread-tree-single-indent): Ditto.
12280
12281         * message.el (message-courtesy-message): Ditto.
12282         (message-archive-note): Ditto.
12283         (message-subscribed-address-file): Ditto.
12284         (message-user-fqdn): Ditto.
12285
12286         * spam-report.el (spam-report-gmane-regex): Ditto.
12287
12288         * spam.el (spam-blackhole-good-server-regex): Ditto.
12289
12290 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12291
12292         * mml.el (mml-preview): Widen the message buffer before copying
12293         the contents to the preview buffer; sort headers before previewing.
12294
12295         * message.el (message-hidden-headers): Fix the way to avoid a bug
12296         in the `repeat' widget in Emacs 21.3 or earlier.
12297
12298 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12299
12300         * message.el (message-hidden-headers): Default to "^References:".
12301         Improve customization type.  Suggested by Reiner Steib
12302         <Reiner.Steib@gmx.de>.
12303
12304 2004-11-25  Romain Francoise  <romain@orebokech.com>
12305
12306         * message.el (message-strip-forbidden-properties): Remove check for
12307         obsolete `message-hidden' text property, hidden headers are not
12308         accessible in the buffer anymore.
12309
12310 2004-11-22  Romain Francoise  <romain@orebokech.com>
12311
12312         * message.el (message-header-format-alist): Add `From' in list
12313         so that it can be sorted.
12314         (message-fix-before-sending): Widen and sort headers before
12315         sending.
12316         (message-hide-headers): Use narrowing to hide headers by moving
12317         them to the top of the buffer and narrowing to the region
12318         underneath.
12319
12320 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12321
12322         * message.el (message-strip-forbidden-properties): Bind
12323         buffer-read-only (etc) to nil.
12324
12325 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12326
12327         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
12328         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12329
12330 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
12331
12332         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
12333
12334 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12335
12336         * dns.el (query-dns): Use sit-for to time instead of
12337         accept-process-output, since that doesn't seem to work on udp
12338         sockets.
12339
12340 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12341
12342         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
12343
12344 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
12345
12346         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
12347         doc string.  Improve doc string.
12348
12349 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12350
12351         * nntp.el (nntp-request-update-info): Return nil if
12352         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
12353         may not call gnus-activate-group which uselessly issues the GROUP
12354         commands for all nntp groups and wastes time.  Reported by Romain
12355         Francoise <romain@orebokech.com>.
12356
12357         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
12358
12359 2004-11-15  Simon Josefsson  <jas@extundo.com>
12360
12361         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
12362         headers separately.
12363         (gnus-button-openpgp): New function, inspired by Jochen Küpper
12364         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
12365
12366 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
12367
12368         * gnus-start.el (gnus-convert-old-newsrc):
12369         Assign legacy-gnus-agent to 5.10.7.
12370
12371 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12372
12373         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
12374         start of the lines.
12375
12376 2004-11-14  Magnus Henoch  <mange@freemail.hu>
12377
12378         * hashcash.el (hashcash-default-payment): Change default to 20.
12379         (hashcash-default-accept-payment): Change default to 20.
12380         (hashcash-process-alist): New variable.
12381         (hashcash-generate-payment-async): Add.
12382         (hashcash-already-paid-p): Add.
12383         (hashcash-insert-payment): Don't generate payments twice.
12384         (hashcash-insert-payment-async): Add.
12385         (hashcash-insert-payment-async-2): Add.
12386         (hashcash-cancel-async): Add.
12387         (hashcash-wait-async): Add.
12388         (hashcash-processes-running-p): Add.
12389         (hashcash-wait-or-cancel): Add.
12390         (mail-add-payment): New optional argument.  Conditionally start
12391         asynchronous calculation.
12392         (mail-add-payment-async): Add.
12393
12394         * message.el (message-send-mail): Wait for asynchronous hashcash
12395         results.  Don't clobber existing X-Hashcash headers.
12396         (message-setup-1): Call mail-add-payment-async when
12397         message-generate-hashcash is non-nil.
12398
12399 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12400
12401         * message.el (message-use-alternative-email-as-from): Examine the
12402         From header as well; use message-make-from in order to include a
12403         user's full name.
12404
12405 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12406
12407         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
12408         default; improve customization type.
12409         (gnus-emphasis-custom-with-format): New macro.
12410         (gnus-emphasis-custom-value-to-external): New function.
12411         (gnus-emphasis-custom-value-to-internal): New function.
12412
12413 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12414
12415         * dns.el (query-dns): Resolve reverse addresses.
12416
12417 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12418
12419         * gnus-group.el (gnus-group-get-new-news): Use it.
12420
12421         * gnus-start.el (gnus-check-reasonable-setup): New function.
12422
12423 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12424
12425         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
12426         "Args out of range" error.  Reported by Arnaud Giersch
12427         <arnaud.giersch@free.fr>.
12428
12429 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
12430
12431         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
12432
12433 2004-11-04  Richard M. Stallman  <rms@gnu.org>
12434
12435         * spam.el (spam group): Add :version.
12436
12437         * pgg-def.el (pgg group): Add :version.
12438
12439 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12440
12441         * gnus-art.el (gnus-article-edit-article): Don't associate the
12442         article buffer with a draft file.  This is a temporary measure
12443         against the 2004-08-22 change to gnus-article-edit-mode.
12444
12445 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12446
12447         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
12448         (html2text-format-tags): Remove unused variable `attr'.
12449
12450 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
12451
12452         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
12453
12454         * tls.el (tls-process-connection-type, tls-success)
12455         (tls-certtool-program): Add :version.
12456
12457         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
12458         (starttls-extra-arguments, starttls-process-connection-type)
12459         (starttls-connect, starttls-failure, starttls-success): Add :version.
12460
12461         * spam-stat.el (spam-stat): Add :version.
12462
12463         * sieve.el (sieve): Add :version.
12464
12465         * sha1.el (sha1): Add :version.
12466         (sha1-use-external): Remove redundant version.
12467
12468         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
12469         (nnmail-cache-ignore-groups, nnmail-spool-hook)
12470         (nnmail-split-fancy-match-partial-words)
12471         (nnmail-split-lowercase-expanded): Add :version.
12472
12473         * nndiary.el (nndiary): Add :version.
12474
12475         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
12476
12477         * mml-sec.el (mml-default-sign-method)
12478         (mml-default-encrypt-method, mml-signencrypt-style-alist):
12479         Add :version.
12480
12481         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
12482
12483         * mm-url.el (mm-url-use-external, mm-url-program)
12484         (mm-url-arguments): Add :version.
12485
12486         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
12487         (mm-attachment-file-modes, mm-decrypt-option)
12488         (mm-w3m-safe-url-regexp): Add :version.
12489
12490         * message.el (message-cite-prefix-regexp)
12491         (message-sendmail-envelope-from, message-minibuffer-local-map)
12492         (message-user-fqdn, message-completion-alist): Add :version.
12493
12494         * gnus-win.el (gnus-configure-windows-hook)
12495         (gnus-use-frames-on-any-display): Add :version.
12496
12497         * gnus-art.el (gnus-article-address-banner-alist)
12498         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
12499         (gnus-treat-from-picon, gnus-treat-mail-picon)
12500         (gnus-treat-x-pgp-sig): Add :version.
12501
12502         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
12503         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
12504         (gnus-summary-article-delete-hook)
12505         (gnus-summary-display-while-building): Add :version.
12506
12507         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
12508         (gnus-get-top-new-news-hook): Add :version.
12509
12510         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
12511         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
12512
12513         * gnus-registry.el (gnus-registry): Add :version.
12514
12515         * gnus-spec.el (gnus-use-correct-string-widths)
12516         (gnus-make-format-preserve-properties): Add :version.
12517
12518         * gnus.el (gnus-group-charter-alist)
12519         (gnus-group-fetch-control-use-browse-url)
12520         (gnus-install-group-spam-parameters): Add :version.
12521
12522         * gnus-diary.el (gnus-diary): Add :version.
12523
12524         * gnus-delay.el (gnus-delay): Add :version.
12525
12526         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
12527         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
12528         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
12529         Add :version.
12530
12531         * gnus-agent.el (gnus-agent-max-fetch-size)
12532         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
12533         (gnus-agent-prompt-send-queue): Add :version.
12534
12535         * deuglify.el (gnus-outlook-deuglify): Add :version.
12536
12537         * html2text.el: Beautify code.  Improve doc strings.  Some
12538         checkdoc cleanup.
12539         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
12540
12541 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
12542
12543         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
12544
12545 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
12546
12547         * gnus-registry.el (gnus-registry-hashtb): Create the registry
12548         when package is loaded.
12549
12550         * spam.el (spam-summary-score-preferred-header): Add global preference
12551         for people who want to override the default SpamAssassin over
12552         Bogofilter preference (when both are set).
12553         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
12554         (spam-user-format-function-S): Check
12555         spam-summary-score-preferred-header.
12556         (spam-extra-header-to-number): Add X-Bogosity header parsing.
12557         (spam-user-format-function-S): Format the score correctly.
12558
12559 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12560
12561         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
12562         signature file.  Suggested by Manoj Srivastava
12563         <srivasta@golden-gryphon.com>.
12564
12565         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
12566         iso-2022-jp even in the Japanese language environment.
12567         Suggested by Jason Rumney <jasonr@gnu.org>.
12568
12569 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12570
12571         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
12572         use the same characters as the dummy marks; make it free from
12573         getting affected by the language environment.
12574         (gnus-summary-read-group-1): Update mark positions only when the
12575         format spec is updated.
12576
12577         * gnus-spec.el (gnus-update-format-specifications): Return a list
12578         of updated types.
12579
12580 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12581
12582         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
12583         of boundp to check if display-warning is available.
12584
12585 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
12586
12587         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
12588
12589 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12590
12591         * nnspool.el (nnspool-spool-directory): Use news-path if the
12592         news-directory variable is not bound.
12593
12594         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
12595         function instead of display-warning if it is not available.
12596
12597 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
12598
12599         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
12600         v5-10: Use `point-at-bol'.
12601
12602 2004-10-26  Simon Josefsson  <jas@extundo.com>
12603
12604         * hashcash.el: Fix URL in comment, reported by Cheng Gao
12605         <chenggao@gmail.com>.
12606
12607 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
12608
12609         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
12610         instead.
12611
12612 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
12613
12614         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
12615         to remove a server from the nnimap-server-buffer-alist.
12616         (nnimap-open-connection, nnimap-close-server): Use it.
12617
12618         * gnus-encrypt.el: Remove file in favor of encrypt.el.
12619
12620 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12621
12622         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
12623         running the major-mode function.
12624
12625 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12626
12627         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
12628         dummy marks in the right way.
12629
12630 2004-10-18  David Edmondson  <dme@dme.org>
12631
12632         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
12633         excessively.
12634
12635 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
12636
12637         * gnus-util.el (gnus-split-references): Accept a nil references
12638         string and go on blissfully.
12639
12640         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
12641         cases where the references string is non-nil but has no references.
12642
12643         * encrypt.el: Add autoload tags.
12644
12645         * spam.el (spam-resolve-registrations-routine): Remove article
12646         from unregistration list too.  Reported by David Hanak
12647         <dhanak@isis.vanderbilt.edu>
12648
12649 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
12650
12651         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
12652         nil.  Changed custom type.
12653
12654 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
12655
12656         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
12657
12658         * gnus-sum.el (gnus-summary-move-article): Use it.
12659
12660 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
12661
12662         * encrypt.el: Add autoload cookies.
12663
12664         * spam.el (spam-backend-article-list-property)
12665         (spam-backend-get-article-todo-list)
12666         (spam-backend-put-article-todo-list)
12667         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
12668         Resolve registrations separately.
12669         (spam-register-routine): Format comments.
12670         (spam-unregister-routine, spam-register-routine): Always call with
12671         specific-articles, no default list.
12672         (spam-summary-prepare-exit): Use the spam-classifications function.
12673
12674         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
12675         gnus-encrypt.el.
12676
12677         * encrypt.el: Copied from gnus-encrypt.el.
12678
12679         * gnus-encrypt.el: Commented that it's obsolete.
12680
12681 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12682
12683         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
12684         (gnus-score-save): Use it.
12685
12686         * message.el (message-bury): Use `window-dedicated-p'.
12687
12688 2004-10-15  Simon Josefsson  <jas@extundo.com>
12689
12690         * pop3.el (top-level): Don't require nnheader.
12691         (pop3-read-timeout): Add.
12692         (pop3-accept-process-output): Add.
12693         (pop3-read-response, pop3-retr): Use it.
12694
12695 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
12696
12697         * spam.el (spam-register-routine): Move comment.
12698         (spam-verify-bogofilter): Use 'unknown for the initial
12699         spam-bogofilter-valid state, not 'never.
12700
12701         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
12702         for netrc-machine.
12703
12704         * nnimap.el (nnimap-open-connection): Use
12705         netrc-machine-user-or-password.
12706
12707 2004-10-17  Richard M. Stallman  <rms@gnu.org>
12708
12709         * gnus-registry.el (gnus-registry-unload-hook):
12710         Set as a variable with add-hook.
12711
12712         * nnspool.el (nnspool-spool-directory): Use news-directory instead
12713         of news-path.
12714
12715         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
12716
12717         * spam.el: Delete duplicate `provide'.
12718         (spam-unload-hook): Set as a variable with add-hook.
12719
12720 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12721
12722         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
12723         in the doc string.
12724
12725         * message.el (message-ignored-news-headers)
12726         (message-ignored-supersedes-headers)
12727         (message-ignored-resent-headers)
12728         (message-forward-ignored-headers): Improve custom type.
12729
12730 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12731
12732         * message.el (message-tokenize-header): Fix 2004-09-06 change
12733         which used point-min in the wrong place.
12734
12735 2004-10-12  Simon Josefsson  <jas@extundo.com>
12736
12737         * tls.el (tls-certtool-program): New variable.
12738         (tls-certificate-information): New function, based on
12739         ssl-certificate-information.
12740
12741 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12742
12743         * compface.el: Move the version of ELisp-based uncompface program
12744         to the contrib directory because of the copyright problem.
12745
12746 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
12747
12748         * message.el (message-kill-buffer): Raise the current frame.
12749
12750 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
12751
12752         * gnus-sum.el: Mention that multibyte characters don't work as marks.
12753
12754         * gnus.el (message-y-or-n-p): Autoload.
12755
12756         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
12757         (pop3-password-required, pop3-authentication-scheme)
12758         (pop3-leave-mail-on-server): Made customizable.
12759         (pop3): New custom group.
12760         (pop3-retr): Remove `sleep-for' statements.
12761         Suggested by Dave Love <fx@gnu.org>.
12762
12763         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
12764         Windows/DOS.
12765
12766         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
12767         (imap-parse-body): Fix incorrect use of `assert'.  Suggested by
12768         Dave Love <fx@gnu.org>.
12769
12770         * mml.el (mml-minibuffer-read-disposition): Require match.
12771         Suggested by Dave Love <fx@gnu.org>.
12772
12773 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
12774
12775         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
12776         doc string.
12777
12778 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12779
12780         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
12781
12782 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
12783
12784         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
12785         instead of calling `mm-insert-inline', to decode text/* parts
12786         before displaying them.
12787
12788 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12789
12790         * mm-uu.el (mm-uu-text-plain-type): New variable.
12791         (mm-uu-pgp-signed-extract-1): Use it.
12792         (mm-uu-pgp-encrypted-extract-1): Use it.
12793         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
12794         bind mm-uu-text-plain-type with that value.
12795         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
12796         mm-uu-dissect.
12797
12798 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12799
12800         * gnus-group.el (gnus-update-group-mark-positions):
12801         * gnus-sum.el (gnus-update-summary-mark-positions):
12802         * message.el (message-check-news-body-syntax):
12803         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
12804         of string-as-multibyte.
12805
12806 2004-10-05  Juri Linkov  <juri@jurta.org>
12807
12808         * gnus-group.el (gnus-update-group-mark-positions):
12809         * gnus-sum.el (gnus-update-summary-mark-positions):
12810         * message.el (message-check-news-body-syntax):
12811         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
12812         8-bit unibyte values to a multibyte string for search functions.
12813
12814 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12815
12816         * mm-uu.el (mm-uu-dissect): Allow optional arg.
12817         (mm-uu-dissect-text-parts): New function.
12818
12819         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
12820         dissect text parts.
12821
12822         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
12823         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
12824
12825         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
12826
12827         * gnus-topic.el (gnus-topic-hierarchical-parameters): Use
12828         gnus-current-topics instead of gnus-current-topic.
12829
12830 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
12831
12832         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
12833
12834 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
12835
12836         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
12837         where approriate.
12838
12839         * nnml.el (nnml-generate-active-info): do.
12840
12841         * nndiary.el (nndiary-generate-active-info): do.
12842
12843         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
12844         (gnus-topic-move): do.
12845
12846         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
12847         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
12848
12849         * gnus-srvr.el (gnus-server-prepare)
12850         (gnus-server-open-all-servers): do.
12851
12852         * gnus-msg.el (gnus-summary-cancel-article)
12853         (gnus-summary-resend-message)
12854         (gnus-summary-mail-crosspost-complaint): do.
12855
12856         * gnus-move.el (gnus-change-server): do.
12857
12858         * gnus-group.el (gnus-group-unmark-all-groups)
12859         (gnus-group-set-current-level): do.
12860
12861 2004-10-04  Simon Josefsson  <jas@extundo.com>
12862
12863         * message.el (message-generate-hashcash): Doc fix.
12864
12865 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
12866
12867         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
12868         avoid infinite recursion via gnus-get-function.
12869
12870 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
12871
12872         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
12873
12874         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
12875
12876         * nnmail.el (nnmail-split-history): do.
12877
12878         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
12879         (nnml-request-delete-group): do.
12880
12881         * nnslashdot.el (nnslashdot-read-groups): do.
12882
12883         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
12884         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
12885
12886         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
12887         (nnspool-sift-nov-with-sed): Use last.
12888         (nnspool-retrieve-headers-with-nov): Use mapc.
12889         (nnspool-request-newgroups): Use dolist.
12890         (nnspool-request-group): Use last.
12891
12892         * nntp.el (nntp-read-server-type): Use dolist.
12893
12894         * nnvirtual.el (nnvirtual-create-mapping)
12895         (nnvirtual-update-read-and-marked): Use dolist.
12896         (nnvirtual-convert-headers): Simplify.
12897
12898 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12899
12900         * gnus-agent.el (gnus-agent-synchronize-group-flags): Added
12901         support for sync'ing tick marks.
12902
12903 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12904
12905         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
12906         there's no visible header.
12907
12908 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12909
12910         * gnus-agent.el (gnus-agent-synchronize-group-flags): When
12911         necessary, pass full group name to gnus-request-set-marks.
12912
12913 2004-10-01  Simon Josefsson  <jas@extundo.com>
12914
12915         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
12916         acroread.
12917
12918 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12919
12920         * spam-report.el (spam-report-gmane): Fix interactive.
12921
12922         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
12923
12924         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
12925         when writing file.
12926         (gnus-agent-synchronize-flags): Don't default to being
12927         interactive.
12928
12929 2004-09-30  Simon Josefsson  <jas@extundo.com>
12930
12931         * message.el (message-generate-hashcash): Add.
12932         (message-send-mail): Use it, call mail-add-payment.
12933
12934 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
12935
12936         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
12937
12938 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
12939
12940         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replaced
12941         gnus-requst-update-info with explicit code to sync the in-memory
12942         info read flags with the marks being sync'd to the backend.
12943
12944         *gnus-util.el (gnus-pp): Added optional stream to match pp API.
12945
12946 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12947
12948         * spam.el (spam-verify-bogofilter): Add new function.
12949         (spam-check-bogofilter)
12950         (spam-bogofilter-register-with-bogofilter): Use it.
12951         (spam-verify-bogofilter): Add small fixes.
12952
12953 2004-09-28  Simon Josefsson  <jas@extundo.com>
12954
12955         * hashcash.el (hashcash-generate-payment): Revert.
12956
12957 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12958
12959         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Use
12960         gnus-extract-references instead of gnus-split-references.
12961
12962         * gnus-util.el (gnus-extract-references): Add new function, analogous
12963         to gnus-split-references but extracts only the message-ID without
12964         anything extra.
12965
12966         * hashcash.el (hashcash-generate-payment)
12967         (hashcash-check-payment): Do the right thing if hashcash-path is
12968         nil (because the hashcash program could not be found).
12969
12970         * spam.el (spam-use-hashcash): Remove comment.
12971
12972 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
12973
12974         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
12975         (gnus-cache-enter-article, gnus-cache-remove-article)
12976         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
12977
12978         * gnus-async.el (gnus-async-prefetch-remove-group): do.
12979
12980         * gnus-art.el (article-hide-boring-headers)
12981         (article-translate-strings, article-display-face)
12982         (gnus-article-mime-match-handle-first)
12983         (gnus-article-highlight-headers)
12984         (gnus-article-add-buttons-to-head): do.
12985
12986 2004-09-27  Simon Josefsson  <jas@extundo.com>
12987
12988         * hashcash.el: New version, from
12989         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
12990         ../contrib/.
12991
12992 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12993
12994         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
12995
12996 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
12997
12998         * gnus-dup.el (gnus-dup-open): Use mapc.
12999         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
13000
13001         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
13002         Reported by Stefan Wiens <s.wi@gmx.net>.
13003
13004         * gnus.el (gnus-shutdown): Use dolist.
13005
13006         * gnus-undo.el (gnus-undo): Use mapc.
13007
13008         * nnrss.el (nnrss-generate-active): do.
13009
13010         * message.el (message-cite-original-without-signature)
13011         (message-cite-original): Use mapc.
13012         (message-do-actions, message-make-forward-subject): Use dolist.
13013
13014 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
13015
13016         * gnus-agent.el (gnus-agent-check-overview-buffer): Fixed range of
13017         deletion to remove entire duplicate line.  Fixes merged article
13018         number bug.
13019
13020 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
13021
13022         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
13023         servers that are offline.  Avoids having gnus-agent-toggle-plugged
13024         first ask if you want to open a server and then, even when you
13025         responded with no, asking if you want to synchronize the server's
13026         flags.
13027         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
13028         multi-line expressions.
13029         (gnus-agent-synchronize-group-flags): New internal function.
13030         Updates marks in memory (in the info structure) AND in the
13031         backend.
13032
13033         * gnus-util.el (gnus-remassoc): Fixed typo in documentation.
13034
13035         * nnagent.el (nnagent-request-set-mark): Use
13036         gnus-agent-synchronize-group-flags, not backend's request-set-mark
13037         method, to ensure that synchronization updates marks in the
13038         backend and in the info (in memory) structure.
13039
13040 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13041
13042         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
13043         convention fully; don't miss the root article of a thread; make
13044         the X-Draft-From header with correct article numbers.
13045
13046 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
13047
13048         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
13049         unless plugged.  Disable the agent so that an open failure causes
13050         an error.
13051
13052         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
13053         Reverted 2004-09-21 change.  The backend must be opened while
13054         synchronizing flags even when the backend stores the flags
13055         locally.
13056
13057 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
13058
13059         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
13060         in `header' match.  Reported by Svend Tollak Munkejord.
13061
13062         * message.el (message-cite-original): Fix use of
13063         `message-cite-articles-with-x-no-archive'.
13064
13065 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13066
13067         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
13068         (gnus-window-to-buffer): Ditto.
13069
13070         * mml.el (mml-preview-buffer): New variable.
13071         (mml-preview): Manage window layout with gnus-buffer-configuration.
13072
13073         * gnus-msg.el (gnus-setup-message): Put article numbers into the
13074         X-Draft-From header even if those articles aren't quoted.
13075
13076 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
13077
13078         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
13079         (gnus-request-set-mark, gnus-request-update-mark): Use new
13080         g-s-t-u-l-m to decide to use backend even when unplugged.
13081
13082 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13083
13084         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
13085         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
13086
13087 2004-09-20  Simon Josefsson  <jas@extundo.com>
13088
13089         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
13090         "utf-16-le".
13091
13092 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13093
13094         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
13095
13096 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
13097
13098         * uudecode.el (uudecode-use-external): Add :version.
13099
13100         * smime.el (smime-CA-file, smime-encrypt-cipher)
13101         (smime-dns-server): Add :version.
13102
13103         * smiley.el (gnus-smiley-file-types): Add :version.
13104
13105         * sha1.el (sha1-use-external): Add :version.
13106
13107         * pgg-def.el (pgg-query-keyserver): Add :version.
13108
13109         * nnmail.el (nnmail-fancy-expiry-targets)
13110         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
13111         Add :version.
13112
13113         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
13114         (nnimap-retrieve-groups-asynchronous): Add :version.
13115         (nnimap-close-asynchronous): Add :version.  Fixed typo in doc string.
13116
13117         * mml.el (mml-content-disposition-parameters)
13118         (mml-insert-mime-headers-always): Add :version.
13119
13120         * mm-util.el (mm-coding-system-priorities): Add :version.
13121
13122         * mm-decode.el (mm-inline-text-html-with-images)
13123         (mm-keep-viewer-alive-types, mm-external-terminal-program)
13124         (mm-verify-option): Add :version.
13125         (mm-text-html-renderer): Change :version.
13126
13127         * message.el (message-fcc-externalize-attachments)
13128         (message-required-headers, message-draft-headers)
13129         (message-subject-trailing-was-query)
13130         (message-subject-trailing-was-ask-regexp)
13131         (message-subject-trailing-was-regexp, message-mark-insert-begin)
13132         (message-mark-insert-end, message-archive-header)
13133         (message-archive-note, message-cross-post-default)
13134         (message-cross-post-note, message-followup-to-note)
13135         (message-cross-post-note-function, message-use-mail-followup-to)
13136         (message-subscribed-address-functions)
13137         (message-subscribed-address-file, message-subscribed-addresses)
13138         (message-subscribed-regexps, message-allow-no-recipients)
13139         (message-yank-cited-prefix, message-signature-insert-empty-line)
13140         (message-hidden-headers, message-hierarchical-addresses)
13141         (message-mail-user-agent, message-use-idna)
13142         (message-valid-fqdn-regexp)
13143         (message-strip-special-text-properties, message-header-synonyms)
13144         (message-beginning-of-line, message-tab-body-function): Add :version.
13145         (message-insert-canlock, message-wide-reply-confirm-recipients):
13146         Change :version.
13147
13148         * mail-source.el (mail-source-ignore-errors): Add :group, :type
13149         and :version.
13150         (mail-source-delete-old-incoming-confirm)
13151         (mail-source-movemail-program): Add :version.
13152
13153         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
13154         (gnus-agent-cache, gnus-agent): Change :version.
13155
13156         * gnus-util.el (gnus-use-byte-compile): Change :version.
13157
13158         * gnus-sum.el (gnus-summary-make-false-root-always)
13159         (gnus-summary-default-high-score)
13160         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
13161         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
13162         (gnus-read-all-available-headers, gnus-article-emulate-mime)
13163         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
13164         (gnus-sum-thread-tree-single-indent)
13165         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
13166         (gnus-sum-thread-tree-leaf-with-other)
13167         (gnus-sum-thread-tree-single-leaf): Add :version.
13168         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
13169         (gnus-article-loose-mime): Change :version.
13170
13171         * gnus-start.el (gnus-backup-startup-file)
13172         (gnus-save-startup-file-via-temp-buffer): Add :version.
13173
13174         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
13175         (gnus-server-offline-face): Add :version.
13176
13177         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
13178
13179         * gnus-msg.el (gnus-gcc-externalize-attachments)
13180         (gnus-debug-files, gnus-debug-exclude-variables)
13181         (gnus-discouraged-post-methods): Change :version.
13182         (gnus-confirm-mail-reply-to-news)
13183         (gnus-confirm-treat-mail-like-news): Add :version.
13184
13185         * gnus-int.el (gnus-server-unopen-status): Add :version.
13186
13187         * gnus-group.el (gnus-group-jump-to-group-prompt)
13188         (gnus-large-ephemeral-newsgroup)
13189         (gnus-fetch-old-ephemeral-headers): Add :version.
13190
13191         * gnus-fun.el (gnus-x-face-directory)
13192         (gnus-convert-pbm-to-x-face-command)
13193         (gnus-convert-image-to-x-face-command)
13194         (gnus-convert-image-to-face-command): Add :version.
13195
13196         * gnus-delay.el (gnus-delay-default-hour): Add :version.
13197
13198         * gnus-cite.el (gnus-cite-blank-line-after-header)
13199         (gnus-article-boring-faces): Add :version.
13200
13201         * gnus-art.el (gnus-buttonized-mime-types)
13202         (gnus-inhibit-mime-unbuttonizing)
13203         (gnus-treat-display-face)
13204         (gnus-treat-body-boundary): Change :version.
13205         (gnus-body-boundary-delimiter, gnus-picon-databases)
13206         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
13207         (gnus-treat-date-english, gnus-treat-fold-headers)
13208         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
13209         (gnus-treat-mail-picon, gnus-treat-wash-html)
13210         (gnus-article-encrypt-protocol)
13211         (gnus-use-idna, gnus-article-over-scroll)
13212         (gnus-mime-display-multipart-alternative-as-mixed)
13213         (gnus-mime-display-multipart-related-as-mixed)
13214         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
13215         (gnus-ctan-url, gnus-button-ctan-handler)
13216         (gnus-button-handle-ctan-bogus-regexp)
13217         (gnus-button-ctan-directory-regexp)
13218         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
13219         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
13220         (gnus-button-man-level, gnus-button-emacs-level)
13221         (gnus-button-message-level, gnus-button-browse-level): Add :version.
13222
13223         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
13224         (gnus-agent-go-online): Change :version.
13225         (gnus-agent-expire-unagentized-dirs)
13226         (gnus-agent-auto-agentize-methods): Add :version.
13227
13228         * flow-fill.el (fill-flowed-display-column)
13229         (fill-flowed-encode-column): Add :version.
13230
13231         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
13232         (gnus-outlook-deuglify-unwrap-max)
13233         (gnus-outlook-deuglify-cite-marks)
13234         (gnus-outlook-deuglify-unwrap-stop-chars)
13235         (gnus-outlook-deuglify-no-wrap-chars)
13236         (gnus-outlook-deuglify-attrib-cut-regexp)
13237         (gnus-outlook-deuglify-attrib-verb-regexp)
13238         (gnus-outlook-deuglify-attrib-end-regexp)
13239         (gnus-outlook-display-hook): Add :version.
13240
13241         * binhex.el (binhex-use-external): Add :version.
13242
13243 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
13244
13245         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
13246         and `invisible'.
13247
13248 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
13249
13250         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
13251         in gnus-registry-trim.
13252
13253 2004-09-13  Simon Josefsson  <jas@extundo.com>
13254
13255         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
13256
13257         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
13258
13259         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
13260         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13261         <yamaoka@jpl.org>.
13262         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
13263         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13264         <yamaoka@jpl.org>.
13265
13266         * sieve.el (sieve-manage-mode): Ditto.
13267
13268 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
13269
13270         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
13271
13272 2004-09-11  Simon Josefsson  <jas@extundo.com>
13273
13274         * dns-mode.el: Add.
13275
13276         * mm-view.el (mm-display-dns-inline): Add.
13277
13278         * mm-decode.el (mm-inline-media-tests): Add text/dns.
13279         (mm-automatic-display): Ditto.
13280
13281         * mailcap.el (mailcap-mime-data): Add text/dns.
13282         (mailcap-mime-extensions): Map .soa to text/dns.
13283
13284 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
13285
13286         * gnus-art.el (article-decode-mime-words, article-babel)
13287         (gnus-article-highlight-signature, gnus-article-add-buttons)
13288         (gnus-signature-toggle): Remove unnecessary bindings of
13289         `inhibit-read-only' inherited from v5.10 merge.
13290
13291 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
13292
13293         * nntp.el (nntp): New customization group.
13294         (nntp-authinfo-file): Add customization group.
13295
13296         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
13297
13298         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
13299
13300         * gnus.el (to-address, to-list, subscribed)
13301         (large-newsgroup-initial): Ditto.
13302
13303         * flow-fill.el (fill-flowed-display-column)
13304         (fill-flowed-encode-column): Ditto.
13305
13306 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13307
13308         * message.el (message-tokenize-header, message-send-mail-with-qmail):
13309         Use point-min rather than 1.
13310         (message-send-mail): Use buffer-size rather than point-max.
13311
13312         * gnus-sum.el (gnus-summary-search-article-forward):
13313         Signal a specific `search-failed' rather than a generic `error'.
13314
13315         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
13316         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
13317         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
13318
13319 2004-09-10  Simon Josefsson  <jas@extundo.com>
13320
13321         * nndb.el (require): Remove tcp and duplicate cl.
13322
13323 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13324
13325         * gnus-agent.el (directory-files-and-attributes): Move forward.
13326
13327 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13328
13329         * gnus-agent.el (directory-files-and-attributes): Optionally
13330         defined to support XEmacs.
13331
13332 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13333
13334         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
13335         to avoid run-time CL dependencies.
13336         (gnus-agent-unfetch-articles): New function.
13337         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
13338         article numbers even when local .overview file is missing.
13339         (gnus-agent-read-article-number): New function.  Only accepts
13340         27-bit article numbers.
13341         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles): Use
13342         gnus-agent-read-article-number.
13343         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
13344         from backend while recognizing that article numbers in .overview
13345         must be valid.
13346         (gnus-agent-update-files-total-fetched-for): Use
13347         directory-files-and-attributes to improve performance.
13348         * gnus-int.el (gnus-request-move-article): Use
13349         gnus-agent-unfetch-articles in place of gnus-agent-expire to
13350         improve performance.
13351
13352         * gnus-start.el (gnus-convert-old-newsrc): Changed message text as
13353         some users confused by references to .newsrc when they only have a
13354         .newsrc.eld file.
13355         (gnus-convert-mark-converter-prompt)
13356         (gnus-convert-converter-needs-prompt): Fixed use of property list.
13357         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
13358         New function.  Used internally to only display 'gnus converting
13359         files' message when actually necessary.
13360
13361         * gnus-sum.el (): Removed (require 'gnus-agent) as required
13362         methods now autoloaded.
13363
13364 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13365
13366         * gnus-sum.el (gnus-summary-insert-subject): Remove list
13367         identifiers.
13368
13369 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
13370
13371         * gnus-picon.el: Fix indentation and closing parenthesis.
13372
13373 2004-09-01  Simon Josefsson  <jas@extundo.com>
13374
13375         * message.el (message-canlock-generate): Require sha1, not
13376         sha1-el.  (Can we get rid of this require altogether?  It is ugly
13377         to require within a function.  Sadly, if sha1.el isn't loaded, the
13378         let binding in m-c-g will hide the defcustom definition, which is
13379         bad.)
13380
13381         * canlock.el: Require sha1, not sha1-el.
13382
13383         * message.el: Don't autoload sha1 (there is a autoload cookie in
13384         sha1.el).
13385
13386         * sha1-el.el: Renamed to sha1.el.
13387
13388 2004-08-30  Juanma Barranquero  <lektu@terra.es>
13389
13390         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
13391
13392 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13393
13394         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
13395
13396 2004-08-30  Kim F. Storm  <storm@cua.dk>
13397
13398         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
13399
13400         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
13401         Add :group 'nnimap.
13402
13403 2004-08-30  Andreas Schwab  <schwab@suse.de>
13404
13405         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
13406         ?* and ?\;.
13407
13408         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
13409         and ?\' to symbol instead of whitespace.
13410
13411 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13412
13413         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
13414
13415         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
13416         instead of re-search-forward.
13417
13418         * gnus-uu.el (gnus-uu-save-article): Ditto.
13419         (gnus-uu-post-encode-uuencode): Ditto.
13420
13421         * html2text.el (html2text-clean-list-items): Ditto.
13422         (html2text-clean-dtdd): Ditto.
13423         (html2text-format-tags): Ditto.
13424
13425         * message.el (message-send-mail-with-sendmail): Fix regexp.
13426         (message-fill-field-general): Use search-forward instead of
13427         re-search-forward.
13428         (unbold-region): Ditto.
13429
13430         * nnrss.el (nnrss-request-article): Ditto.
13431
13432         * nnslashdot.el (nnslashdot-request-article): Ditto.
13433
13434         * nnweb.el (nnweb-gmane-wash-article): Ditto.
13435
13436         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
13437         "Unrecognized menu descriptor" error in XEmacs.
13438
13439 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
13440
13441         * gnus-sum.el (gnus-read-header): Don't remove a header for the
13442         parent article of a sparse article in the thread hashtb.
13443
13444 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
13445
13446         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
13447         (nnmail-expand-newtext): Lowercase expanded entries if
13448         nnmail-split-lowercase-expanded is non-nil.
13449
13450 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13451
13452         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
13453
13454         * gnus-group.el (gnus-group-line-format-alist): Convert the value
13455         of gnus-tmp-news-method into string under XEmacs.  It will be
13456         passed to gnus-correct-length which takes only a string argument.
13457
13458 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13459
13460         * gnus-util.el (gnus-bind-print-variables): New macro.
13461         (gnus-prin1): Use it.
13462         (gnus-prin1-to-string): Use it.
13463         (gnus-pp): New function.
13464         (gnus-pp-to-string): New function.
13465
13466         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
13467         Replace pp-to-string with gnus-pp-to-string.
13468         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
13469         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
13470         * gnus-msg.el (gnus-debug): Ditto.
13471         * gnus-score.el (gnus-score-save): Ditto.
13472         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
13473         gnus-pp-to-string.
13474         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
13475         with gnus-pp.
13476         * score-mode.el (gnus-score-pretty-print): Ditto.
13477         * webmail.el (webmail-debug): Ditto.
13478
13479 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13480
13481         * gnus-art.el (article-display-face, article-display-x-face):
13482         Use buffer-read-only.
13483
13484 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13485
13486         * gnus-art.el (article-hide-list-identifiers):
13487         Bind inhibit-read-only as t.
13488
13489 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
13490
13491         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
13492
13493 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13494
13495         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
13496         (gnus-narrow-to-page): Don't assume point-min == 1.
13497         (gnus-article-edit-mode): Derive from message-mode.
13498
13499         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
13500         point-min == 1.
13501
13502         * imap.el (imap-parse-address-list, imap-parse-body-ext):
13503         Disable incorrect use of `assert'.
13504
13505         * message.el (message-mode): Set comment-start-skip.
13506
13507
13508 2004-08-22  Sam Steingold  <sds@gnu.org>
13509
13510         * pop3.el (pop3-leave-mail-on-server): New user variable.
13511         (pop3-movemail): Delete mail only when it is nil.
13512
13513 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
13514
13515         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
13516
13517         * mml.el (mml-preview): Use `pop-to-buffer'.
13518
13519         * message.el (message-goto-mail-followup-to): Insert after "To".
13520         (message-carefully-insert-headers): Add comment.
13521
13522         * gnus.el: Remove unused variable `gnus-article-check-size'.
13523
13524         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
13525
13526         * gnus-art.el (gnus-button-alist): Improve
13527         `gnus-button-handle-library' entry.
13528
13529 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
13530
13531         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p): Use
13532         downcase, since XEmacs capitalizes error messages differently.
13533
13534 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
13535
13536         * nntp.el: Add (require 'gnus) due to reference to
13537         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
13538
13539 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
13540
13541         * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Bind
13542         `mm-fill-flowed'.
13543
13544         * mm-decode.el (mm-dissect-singlepart): Check it.
13545
13546 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
13547
13548         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
13549         'imap' for netrc parsing.
13550
13551 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
13552
13553         * mailcap.el (mailcap-mime-data): Mark as risky.
13554
13555 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13556
13557         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
13558         may be included in the encoded word.
13559         (rfc2047-encode): Don't append a space if the encoded word
13560         includes close parenthesis.
13561
13562 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13563
13564         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
13565         of text within parentheses.
13566
13567 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
13568
13569         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
13570         (gnus-encrypt-write-file-contents): Make the password key the file
13571         name PLUS the cipher, not just the cipher.  Also remove failed
13572         passwords from the cache.
13573
13574 2004-08-06  Simon Josefsson  <jas@extundo.com>
13575
13576         * gnus-sum.el (gnus-article-loose-mime): Change default to t.  Doc
13577         fix.
13578
13579 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13580
13581         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
13582         LWSP.
13583
13584 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
13585
13586         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Try
13587         to append in-reply-to: data to the references: header.
13588
13589         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
13590         (netrc-parse): Use gnus-encrypt.el functions.
13591
13592         * gnus-encrypt.el: Add new file for encryption support; currently
13593         does only a few GPG ciphers and an internal XOR cipher.
13594
13595         * password.el: Add comments on using password-read-and-add.
13596         (password-read-and-add): Add function to read and add the
13597         password to the cache at once.
13598
13599 2004-07-28  Simon Josefsson  <jas@extundo.com>
13600
13601         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
13602         parameter (but don't use it, for now).
13603
13604         * imap.el (imap-ssl-open): Use imap-process-connection-type,
13605         instead of hard coding to nil.
13606
13607 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13608
13609         * mm-view.el (mm-inline-image-emacs): Open lines under an image
13610         as mm-inline-image-xemacs does.
13611
13612 2004-07-26  Simon Josefsson  <jas@extundo.com>
13613
13614         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
13615         Revert part of 2004-07-17 change below.
13616
13617 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13618
13619         * rfc2047.el (rfc2047-encode-region): Don't infloop.  Suggested by
13620         Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
13621
13622 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13623
13624         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
13625         quotes that actually start with ">" at the beginning of the
13626         lines.
13627
13628 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13629
13630         * rfc2047.el (rfc2047-encode-region): Fix last change.
13631         (rfc2047-encode-parameter): Remove useless concat.
13632
13633 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13634
13635         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
13636         encode special characters; fix some kind of misconfigured headers;
13637         signal a real error if debug-on-quit or debug-on-error is non-nil.
13638         (rfc2047-encode-max-chars): New variable.
13639         (rfc2047-encode-1): Use it.
13640         (rfc2047-encode-parameter): New function.
13641
13642         * mml.el (mml-insert-parameter): Remove an excessive space.
13643
13644 2004-07-17  Simon Josefsson  <jas@extundo.com>
13645
13646         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
13647         Kai Grossjohann <kai@emptydomain.de>.
13648         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
13649         (gnus-group-make-menu-bar): Ditto.
13650
13651         * gnus-util.el (gnus-group-server): Add.
13652
13653 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
13654
13655         * message.el (message-clone-locals): Clone sendmail and smtp
13656         variables.
13657
13658 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13659
13660         * rfc2047.el (rfc2047-encode-region): Fix last change.
13661
13662 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13663
13664         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
13665         characters as non-special.
13666
13667 2004-07-09  Simon Josefsson  <jas@extundo.com>
13668
13669         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
13670         Users will lose all flag changes made while unplugged with
13671         e.g. nntp unless flag synchronization happens, thus `nil' is not a
13672         good default.  See numerous reports on ding mailing list.
13673
13674 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13675
13676         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
13677         add generate-head-function and generate-article-function to the
13678         rfc822-forward entry.
13679         (nndoc-rfc822-forward-generate-article): New function.
13680         (nndoc-rfc822-forward-generate-head): New function.
13681
13682         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
13683
13684 2004-07-06  Dan Christensen  <jdc@uwo.ca>
13685
13686         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
13687         respect display group parameter and gnus-summary-expunge-below.
13688         (gnus-articles-to-read): Remove unused reference to display group
13689         parameter.
13690
13691 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13692
13693         * nnheader.el (nnheader-uniquify-message-id): New experimental
13694         variable.
13695         (nnheader-nov-read-message-id): Use it.
13696
13697         * spam-report.el (spam-report-gmane): Add interactive.
13698
13699 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13700
13701         * mm-encode.el (mm-content-transfer-encoding-defaults): Use
13702         qp-or-base64 for the application/* types.
13703
13704 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
13705
13706         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
13707
13708 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
13709
13710         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
13711         trim value.
13712
13713 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
13714
13715         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
13716         New macro and function.
13717         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
13718
13719 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13720
13721         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
13722         after-load-alist.
13723
13724 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13725
13726         * gnus-group.el (gnus-group-get-new-news-this-group): Don't
13727         update info that isn't there.
13728
13729 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
13730
13731         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
13732         entry.
13733
13734 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13735
13736         * mm-view.el (mm-inline-render-with-function): Use multibyte
13737         buffer; decode html source by charset.
13738
13739         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
13740
13741         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
13742         Mule-UCS is loaded under XEmacs.
13743         (mm-mime-mule-charset-alist): Avoid duplicated entries.
13744
13745 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
13746
13747         * nnheader.el (nnheader-max-head-length): Increase to 8192.
13748
13749 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13750
13751         * mm-util.el (mm-coding-system-p): Return a coding-system.
13752         (mm-mime-mule-charset-alist): Use shift_jis instead of
13753         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
13754         entries for the mime charsets iso-2022-jp-3 and shift_jis.
13755         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
13756         instead of japanese-shift-jis and iso-latin-1 respectively in
13757         order to share the default value with both Emacs and XEmacs-mule.
13758         (mm-mule-charset-to-mime-charset): Make
13759         mm-coding-system-priorities effective.
13760         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
13761         while predicating of candidates upon the priorities.
13762
13763 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
13764
13765         * gnus-sum.el (gnus-summary-make-menu-bar): Add
13766         gnus-uu-invert-processable.
13767
13768         * gnus.el: Autoload gnus-uu-invert-processable.
13769
13770 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13771
13772         * mm-util.el (mm-with-multibyte-buffer): New macro.
13773
13774         * rfc2047.el (rfc2047-encode-string): Use it.
13775         (rfc2047-encode-region): Move point to the end of the region after
13776         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
13777
13778 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13779
13780         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
13781         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
13782
13783 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13784
13785         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
13786         (gnus-cite-parse): Ignore quoted envelope From_.  Suggested by
13787         Karl Chen <quarl@nospam.quarl.org>.
13788
13789 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
13790
13791         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
13792         invalid addresses.
13793
13794 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
13795
13796         * spam.el: Change section markers, revise TODO list.
13797         (spam-backends): Make new master list of all installed backends.
13798         (spam-summary-exit-behavior): Add new variable to determine how
13799         messages moves are done at summary exit.
13800         (spam-move-spam-nonspam-groups-only)
13801         (spam-process-ham-in-nonham-groups)
13802         (spam-process-ham-in-spam-groups): Remove variables, the
13803         spam-summary-exit-behavior variable should be used to manage this
13804         behavior.
13805         (spam-old-ham-articles, spam-old-spam-articles): Remove.
13806         (spam-old-articles): Add variable, replacing spam-old-ham-articles
13807         and spam-old-spam-articles.
13808         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
13809         Add empty variables, placeholders for the backends they represent.
13810         (spam-set-difference): Move, unchanged.
13811         (spam-list-of-processors): Declare OBSOLETE, not used anymore
13812         unless the user has a processor variable.
13813         (spam-classifications, spam-classification-valid-p)
13814         (spam-backend-properties, spam-backend-property-valid-p)
13815         (spam-backend-function-type-valid-p)
13816         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
13817         (spam-report-articles-gmane, spam-report-articles-resend):
13818         Remove functions, they are not needed.
13819         (spam-install-backend-super, spam-backend-list)
13820         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
13821         (spam-backend-function, spam-backend-ham-registration-function)
13822         (spam-backend-spam-registration-function)
13823         (spam-backend-ham-unregistration-function)
13824         (spam-backend-spam-unregistration-function)
13825         (spam-backend-statistical-p, spam-backend-mover-p)
13826         (spam-install-backend-alias, spam-install-checkonly-backend)
13827         (spam-install-mover-backend, spam-install-nocheck-backend)
13828         (spam-install-backend, spam-install-statistical-backend)
13829         (spam-install-statistical-checkonly-backend): Add backend installation
13830         support.
13831         (spam-summary-prepare-exit): Rewrite to use the new backend code.
13832         (spam-group-processor-p): Use the new backend code and respect the
13833         summary exit behavior.
13834         (spam-mark-spam-as-expired-and-move-routine): Remove.
13835         (spam-summary-prepare): Change to use the new spam-old-articles
13836         variable.
13837         (spam-copy-or-move-routine, spam-copy-spam-routine)
13838         (spam-move-spam-routine, spam-copy-ham-routine)
13839         (spam-move-ham-routine): Add code to copy/move ham or spam.
13840         (spam-fetch-field-fast): Improve doc and code, plus allow the
13841         'number request.
13842         (spam-list-of-checks, spam-list-of-statistical-checks): Remove
13843         variables.
13844         (spam-split, spam-find-spam): Use the new backend code.
13845         (spam-registration-functions): Remove variable.
13846         (spam-unregister-routine): Add convenience wrapper.
13847         (spam-log-undo-registration, spam-register-routine)
13848         (spam-log-processing-to-registry)
13849         (spam-log-unregistration-needed-p): Rename "check" to "backend"
13850         where possible.
13851         (spam-check-gmane-xref, spam-check-regex-headers)
13852         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
13853         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
13854         (spam-check-bogofilter-headers, spam-check-spamoracle)
13855         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
13856         (spam-check-crm114-headers): Use the spam-split-group that
13857         spam-split prepares, no need to determine it every time.
13858
13859         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
13860         to the nnheader-parse-naked-head call.
13861
13862         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
13863
13864         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
13865         the nnheader-nov-read-message-id call.
13866
13867 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13868
13869         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
13870         gnus-activate-group twice.  Suggested by Markus Peter
13871         <warp@spin.de>.
13872
13873 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13874
13875         * gnus-art.el (gnus-article-time-format): Exchange the order of
13876         day and month in the default value; fix customization type.
13877         (article-date-ut): Use add-text-properties.
13878         (article-make-date-line): Use message-make-date instead of
13879         current-time-string.
13880
13881         * message.el (message-fetch-field): Don't use set-text-properties.
13882         (message-make-date): Simplify.
13883
13884         * messagexmas.el (message-xmas-make-date): New function.
13885         (message-xmas-redefine): Defalias message-make-date to it.
13886
13887 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13888
13889         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
13890         (rfc2047-encode-region): Treat text within parentheses as special;
13891         show the original text when error has occurred.
13892
13893         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
13894         already-computed method to gnus-activate-group.
13895
13896         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
13897         same select-methods identical Lisp objects.
13898
13899         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
13900         object when modifying the info.
13901
13902 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13903
13904         * gnus-srvr.el (gnus-server-set-info): Remove the server from
13905         gnus-opened-servers since it has never been opened with the new
13906         configuration yet.
13907
13908 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13909
13910         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
13911         arg to nnheader-generate-fake-message-id.
13912
13913 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
13914
13915         * nnheader.el (nnheader-generate-fake-message-id): Accept a
13916         number and build a fake message ID localized to a group and
13917         article number (so it's repeatable from that point on).
13918         (nnheader-fake-message-id-p): Change regex to accomodate new fake
13919         ID format.
13920
13921         * gnus-sum.el (gnus-get-newsgroup-headers): Call
13922         nnheader-generate-fake-message-id with the article number.
13923
13924 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
13925
13926         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
13927         end-of-buffer.
13928
13929 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13930
13931         * message.el (message-ignored-supersedes-headers): Add Approved.
13932
13933 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
13934
13935         * rfc2047.el (rfc2047-encode-message-header): Remove useless
13936         goto-char.
13937         (rfc2047-encode): Fold the line before encoding.
13938
13939 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13940
13941         * rfc2047.el (rfc2047-encode-message-header): Disabled header
13942         folding -- not all headers can be folded, and this should be done
13943         by the message composition mode.  Probably.  I think.
13944
13945 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13946
13947         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
13948         fast.
13949
13950         * gnus-ems.el (gnus-remove-image): Don't use
13951         message-text-with-property; remove only the image found first.
13952
13953         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
13954         found first.
13955
13956 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
13957
13958         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
13959
13960 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13961
13962         * message.el (message-text-with-property): Make it fast and accept
13963         optional arguments.
13964         (message-strip-forbidden-properties): Use it.
13965         (message-fix-before-sending): Follow the m-t-w-p change.
13966
13967         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
13968
13969 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
13970
13971         * gnus-art.el (article-hide-headers): Don't change the buffer
13972         mistakenly when performing mml-preview even if
13973         gnus-single-article-buffer is nil.
13974
13975 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
13976
13977         * message.el (message-expand-name-databases): New user option.
13978         (message-expand-name): Use it.
13979
13980 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
13981
13982         * spam.el (spam-report-articles-resend)
13983         (spam-report-resend-register-routine): Allow ham reporting.
13984         (spam-report-resend-register-ham-routine): Add wrapper.
13985         (spam-registration-functions): Add ham resending functions.
13986         (spam-list-of-processors): Add ham resend processor.
13987
13988         * gnus.el (ham-resend-to): Add new group parameter.
13989         (spam-process): Add ham resend option.
13990
13991         * spam-report.el (spam-report-resend): Allow reporting ham.
13992         (spam-report-resend-ham): Add wrapper.
13993
13994 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13995
13996         * message.el (message-cite-articles-with-x-no-archive): New
13997         variable.
13998         (message-cite-original): Use it.
13999
14000 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14001
14002         * message.el (message-cite-original): Respect X-No-Archive.
14003
14004 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14005
14006         * gnus-art.el (article-hide-headers): Refer to the values for
14007         gnus-ignored-headers and gnus-visible-headers in the summary
14008         buffer since a user may have set them as group parameters.
14009
14010 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
14011
14012         * assistant.el (assistant-node-name): Add convenience function.
14013         (assistant-render-text, assistant-render-node): Add error handling,
14014         plus handle multiple next nodes.
14015         (assistant-find-next-node): Comment out for now.
14016         (assistant-find-next-nodes): Add function, returns list of next
14017         nodes.
14018
14019 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
14020
14021         * mail-source.el (mail-source-directory): Fix doc-string.
14022
14023 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
14024
14025         * assistant.el (assistant-render-text, assistant-eval): Add :set
14026         widget type, which is different because it takes and returns a
14027         list.  Much hilarity ensues.
14028
14029 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
14030
14031         * gnus-art.el (gnus-button-alist): Fixed regexp for manual links.
14032
14033         * gnus-group.el (gnus-group-get-new-news-this-group): Added
14034         doc-string.
14035
14036         * gnus-start.el (gnus-activate-group): Added doc-string.
14037
14038 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14039
14040         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
14041
14042 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
14043
14044         * assistant.el (assistant-render-text): Try to add a :set
14045         widget, more to come.
14046
14047         * spam.el (spam-group-spam-contents-p): Handle empty groupname
14048         strings.
14049         (spam-report-articles-resend)
14050         (spam-register-routine): Do registration iff any articles warrant
14051         it.
14052         (spam-summary-prepare-exit): Change log message for nil group
14053         destinations.
14054
14055 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
14056
14057         * spam.el (spam-report-resend-register-routine): Allow
14058         spam-report-resend-to to be a group parameter or a global value.
14059
14060 2004-05-26  Simon Josefsson  <jas@extundo.com>
14061
14062         * starttls.el: Merge with my GNUTLS based starttls.el.
14063         (starttls-gnutls-program, starttls-use-gnutls)
14064         (starttls-extra-arguments, starttls-process-connection-type)
14065         (starttls-connect, starttls-failure, starttls-success): New
14066         variables.
14067         (starttls-program, starttls-extra-args): Doc fix.
14068         (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New
14069         functions.
14070         (starttls-negotiate, starttls-open-stream): Check
14071         `starttls-use-gnutls' and pass on to corresponding *-gnutls
14072         function if it is set.
14073
14074 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14075
14076         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
14077         structured fields.
14078
14079 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14080
14081         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
14082
14083 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
14084
14085         * spam.el (spam-mark-new-messages-in-spam-group-as-spam): Add
14086         variable.
14087         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
14088         assigning the spam-mark to new messages.
14089
14090 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
14091
14092         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
14093
14094 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14095
14096         * dgnushack.el: Autoload customize-set-variable for XEmacs.
14097
14098         * rfc2047.el (rfc2047-encodable-p): Don't move point.
14099         (rfc2047-decode): Treat the ascii coding-system as raw-text by
14100         default.
14101
14102 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
14103
14104         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
14105         correct data.
14106
14107 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
14108
14109         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
14110         (spam-group-processor-p): Fix function.
14111         (spam-group-processor-multiple-p)
14112         (spam-group-spam-processor-report-gmane-p)
14113         (spam-group-spam-processor-report-resend-p)
14114         (spam-group-spam-processor-bogofilter-p)
14115         (spam-group-spam-processor-blacklist-p)
14116         (spam-group-spam-processor-ifile-p)
14117         (spam-group-ham-processor-ifile-p)
14118         (spam-group-spam-processor-spamoracle-p)
14119         (spam-group-spam-processor-crm114-p)
14120         (spam-group-ham-processor-bogofilter-p)
14121         (spam-group-spam-processor-stat-p)
14122         (spam-group-ham-processor-stat-p)
14123         (spam-group-ham-processor-whitelist-p)
14124         (spam-group-ham-processor-BBDB-p)
14125         (spam-group-ham-processor-spamoracle-p)
14126         (spam-group-ham-processor-copy-p): Remove functions with some
14127         prejudice against unneeded code.
14128         (spam-report-articles-resend)
14129         (spam-report-resend-register-routine): Allow the group/topic
14130         spam-resend-to value to override spam-report-resend-to.
14131         (spam-summary-prepare-exit): Invoke spam-group-processor-p
14132         properly now.
14133
14134         * gnus.el (spam-resend-to): Add group/topic parameter.
14135         (spam-process): Move the OBSOLETE processors to the end of the
14136         choices.
14137
14138 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
14139
14140         * spam-report.el (spam-report-resend-to, spam-report-resend): Start
14141         with resend-to set to nil, and then ask the user if necessary.
14142         (spam-report-resend): spam-report-resend takes a list of articles, not
14143         separate article numbers.
14144
14145 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14146
14147         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
14148         addition to emacs-w3m.
14149
14150 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14151
14152         * assistant.el (assistant-authinfo-data): New function.
14153         (assistant-eval): Eval for entire assistant.
14154
14155         * netrc.el (netrc-services-file): New variable.
14156         (netrc-parse-services): New function.
14157         (netrc-find-service-name): New function.
14158         (netrc-find-service-number): New function.
14159         (netrc-port-equal): New function.
14160         (netrc-machine): Use it.
14161
14162         * nnimap.el (nnimap-open-connection): Use netrc.
14163
14164         * gnus-util.el (gnus-netrc-get): Remove aliases.
14165
14166         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
14167
14168         * assistant.el (wid-edit): Fix compilation.
14169
14170         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
14171
14172 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
14173
14174         * gnus-util.el (gnus-set-file-modes): New function.  (small
14175         patch).
14176
14177 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14178
14179         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
14180
14181         * assistant.el (assistant-render-node): Fix up rendering and
14182         read-only text.
14183         (assistant-render-node): Reset.
14184         (assistant-make-read-only): Not sticky.
14185
14186 2004-05-20  Danny Siu  <dsiu@adobe.com>
14187
14188         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
14189         centered even when gnus-auto-center-summary is t.
14190
14191 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14192
14193         * dns.el (dns-get-txt-answer): New function.
14194         (dns-read-txt): Ditto.
14195         (query-dns): Use it.
14196
14197 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14198
14199         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
14200         active for foreign groups even if the group level is higher than
14201         the specified value.
14202
14203 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14204
14205         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
14206         non-active groups.
14207
14208         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
14209
14210 2004-05-20  Magnus Henoch  <mange@freemail.hu>
14211
14212         * dns.el (dns-read-type): Add support for SVR.  (small patch)
14213
14214 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
14215
14216         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
14217         (spam-crm114-header, spam-crm114-spam-switch)
14218         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
14219         (spam-crm114-positive-spam-header)
14220         (spam-crm114-database-directory, spam-list-of-processors)
14221         (spam-group-spam-processor-crm114-p)
14222         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
14223         (spam-generic-score, spam-list-of-checks)
14224         (spam-list-of-statistical-checks, spam-registration-functions)
14225         (spam-check-crm114-headers, spam-crm114-score)
14226         (spam-check-crm114, spam-crm114-register-with-crm114)
14227         (spam-crm114-register-spam-routine)
14228         (spam-crm114-unregister-spam-routine)
14229         (spam-crm114-register-ham-routine)
14230         (spam-crm114-unregister-ham-routine): Add CRM114 support.  From
14231         asjo@koldfront.dk (Adam Sjøgren).
14232
14233         * gnus.el: Add spam-use-crm114.
14234
14235         * spam.el (spam-list-of-processors, spam-registration-functions):
14236         Add spam-use-resend.
14237         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
14238         (spam-report-articles-gmane): Add doc fix.
14239         (spam-report-articles-resend, spam-report-resend-register-routine):
14240         Add wrappers around spam-report-resend-to.
14241
14242         * spam-report.el (spam-report-resend-to, spam-report-resend):
14243         Add support for resending spam.
14244         (spam-report-gmane): Fix line length >80.
14245
14246         * gnus.el (spam-process): Add spam-use-resend.
14247
14248 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14249
14250         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
14251         number of processed spam messages.
14252         (spam-ham-copy-or-move-routine): Return the number of processed
14253         ham messages.
14254         (spam-summary-prepare-exit): Use the above values to decide
14255         whether status messages shouled be displayed.
14256
14257 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14258
14259         * rfc2047.el (rfc2047-encode-function-alist): Renamed from
14260         `rfc2047-encoding-function-alist' in order to avoid conflicting
14261         with the old version.
14262         (rfc2047-encode-region): Concatenate words containing non-ASCII
14263         characters in structured fields; don't encode space-delimited
14264         ASCII words even in unstructured fields; don't break words at
14265         char-category boundaries.
14266         (rfc2047-encode-1): New function.
14267         (rfc2047-encode): Use it; encode text so that it occupies the
14268         maximum width within 76-column; work correctly on Q encoding for
14269         iso-2022-* charsets.
14270         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
14271         sure not to break a line just after the header name.
14272         (rfc2047-b-encode-region): Removed.
14273         (rfc2047-b-encode-string): New function.
14274         (rfc2047-q-encode-region): Removed.
14275         (rfc2047-q-encode-string): New function.
14276
14277         * mm-util.el (mm-replace-in-string): New function.
14278
14279 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14280
14281         * gnus-msg.el (gnus-inews-make-draft-meta-information): Really
14282         get it right.
14283         (gnus-inews-make-draft): Really.
14284
14285 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
14286
14287         * nnmh.el (nnmh-request-list-1): Don't check the link count
14288         before descending.  (small patch)
14289
14290 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14291
14292         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
14293         stuff.
14294
14295         * gnus-start.el (gnus-subscribe-hierarchical-interactive): Match
14296         on real group name.
14297
14298         * gnus-art.el (gnus-signature-limit): Doc fix.
14299
14300         * gnus-msg.el (gnus-inews-make-draft): Quote list.
14301
14302         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
14303
14304 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
14305
14306         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
14307         isn't a string.
14308
14309 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14310
14311         * gnus-draft.el (gnus-draft-send): Bind
14312         rfc2047-encode-encoded-words.
14313
14314         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
14315         (rfc2047-encodable-p): Say that =? needs encoding.
14316         (rfc2047-encode-encoded-words): New variable.
14317
14318         * gnus-group.el (gnus-group-select-group): Doc fix.
14319
14320         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
14321
14322         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
14323         to nil.
14324
14325         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
14326
14327         * nnheader.el (nnheader-get-lines-and-char): New function.
14328
14329 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
14330
14331         * gnus-msg.el (gnus-summary-followup-with-original): Document
14332         yanking of region when active.
14333
14334 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14335
14336         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
14337         groups if the group level is higher than the specified value.
14338
14339 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14340
14341         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
14342         (gnus-group-jump-to-group): Added prefix argument using
14343         `gnus-group-jump-to-group-prompt'.  Query before jumping to
14344         non-active group.
14345
14346         * compface.el (uncompface): Be verbose when changing
14347         `uncompface-use-external'.
14348
14349         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
14350         handle manual section.
14351
14352 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14353
14354         * gnus-art.el (gnus-button-alist): Revert previous change.
14355
14356 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14357
14358         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
14359
14360 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14361
14362         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
14363         whether backend can accept message.
14364
14365         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
14366
14367 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
14368
14369         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
14370         Avoid creating directory when nntp-marks-is-evil is true.
14371         Reported by Reiner Steib.
14372
14373 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14374
14375         * gnus-picon.el (gnus-picon-style): New variable.
14376         (gnus-picon-insert-glyph): Added optional `nostring' argument.
14377         (gnus-picon-transform-address): Support `gnus-picon-style'.  From
14378         Jesper Harder <harder@ifa.au.dk>.
14379
14380 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14381
14382         * message.el (message-fill-field): Return point.
14383         (message-generate-headers): Go to end of field.
14384
14385         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
14386         stuff for non-living groups.
14387
14388 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
14389
14390         * gnus-art.el (gnus-article-followup-with-original)
14391         (gnus-article-reply-with-original): gnus-mark-active-p ->
14392         gnus-region-active-p.
14393
14394 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
14395
14396         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
14397         only when there is spam or ham to be processed.
14398
14399 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14400
14401         * mail-source.el (mail-source-delete-crash-box): Refactor.
14402         (mail-source-fetch): Use it.
14403         (mail-source-fetch-file): Ditto.
14404         (mail-source-fetch-directory): Run postscript in loop.
14405         (mail-source-fetch-pop): Delete.
14406         (mail-source-fetch-maildir): Ditto.
14407         (mail-source-fetch-imap): Ditto.
14408
14409         * imap.el (imap-authenticators): Comment out sasl.
14410
14411         * message.el (message-skip-to-next-address): New function.
14412         (message-fill-header-address): Refactor.
14413         (message-fill-address): Use it.
14414         (message-delete-address): Use it.
14415         (message-fill-header-general): Refactor.
14416         (message-fill-field-address): Rename.
14417         (message-narrow-to-field): Find the start of the header.
14418         (message-header-format-alist): Don't pre-fill.
14419         (message-fill-header): Removed.
14420         (message-insert-header): New function.
14421         (message-shorten-references): Use it.
14422
14423         * rfc2047.el (rfc2047-field-value): Strip props.
14424
14425         * mail-parse.el (mail-header-make-address): New alias.
14426
14427         * ietf-drums.el (ietf-drums-make-address): New function.
14428
14429         * imap.el: Add compiler directives.
14430
14431         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
14432
14433         * gnus-art.el (article-decode-idna-rhs): Don't use
14434         message-idna-inside-rhs-p.
14435
14436 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14437
14438         * message.el (message-idna-inside-rhs-p): Removed.
14439         (message-idna-to-ascii-rhs-1): Use proper address parsing.
14440
14441         * gnus-art.el (gnus-emphasis-alist): Removed strikethru; too many
14442         false positives.
14443
14444 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
14445
14446         * imap.el (imap-sasl-make-mechanisms): Use sasl.
14447
14448 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14449
14450         * nneething.el (nneething-file-name): Don't create spurious
14451         files.
14452
14453         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
14454         (gnus-inews-do-gcc): Remove sleep.
14455
14456         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
14457         part under point.
14458
14459         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
14460         (gnus-agent-regenerate-group): Using nil messages aren't valid.
14461
14462 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
14463
14464         * spam.el (spam-summary-prepare-exit): Fixed (length).
14465
14466 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
14467
14468         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
14469         as expired without moving it" message when there are spam
14470         messages left.
14471
14472 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
14473
14474         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
14475         header is not nil.
14476
14477 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
14478
14479         * nntp.el (nntp-request-set-mark, nntp-request-update-info): Call
14480         nntp-possibly-create-directory, not nntp-possibly-change-group.
14481         (nntp-marks-changed-p): New arg SERVER.
14482         (nntp-request-update-info): Adjust caller.
14483
14484 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
14485
14486         * nntp.el (nntp-save-marks): Pass missing arg.
14487
14488 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
14489
14490         * nntp.el: Support marks.
14491         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
14492         (nntp-marks-modtime, nntp-marks-directory): New variables.
14493         (nntp-request-set-mark, nntp-request-update-info)
14494         (nntp-possibly-create-directory, nntp-marks-changed-p)
14495         (nntp-save-marks, nntp-open-marks, nntp-marks-directory): New
14496         functions.
14497
14498 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
14499
14500         * gnus-xmas.el (gnus-xmas-select-lowest-window)
14501         (gnus-xmas-redefine): Rename.
14502
14503         * gnus-score.el (gnus-score-insert-help): Use
14504         gnus-select-lowest-window.
14505
14506         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
14507         appt-select-lowest-window and rename to gnus-select-lowest-window.
14508
14509         * gnus.el: do.
14510
14511 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14512
14513         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
14514         encodings of MIME-encoded words, in order to improve
14515         interoperability with several broken MUAs.
14516
14517 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14518
14519         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
14520         tags, only when charsets are not specified in headers.
14521         (mm-inline-text-html-render-with-w3m): Ditto.
14522
14523         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
14524         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
14525
14526 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14527
14528         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
14529         instead of MIME-decoded from fields when checking
14530         `gnus-article-address-banner-alist'.
14531
14532 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
14533
14534         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
14535         description rather than subject.
14536
14537 2004-05-02  Steve Youngs  <steve@youngs.au.com>
14538
14539         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
14540
14541 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14542
14543         * gnus.el (gnus-version-number): Bump.
14544
14545 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14546
14547         * gnus.el: No Gnus v0.2 is released.
14548
14549 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14550
14551         * gnus-agent.el (gnus-agent-read-agentview): Inline
14552         gnus-uncompress-range.
14553
14554 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14555
14556         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
14557         `exec-installed-p'.
14558
14559 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14560
14561         * gnus.el (spam-process, spam-autodetect-methods): Add
14562         bsfilter and bsfilter-headers.
14563
14564         * spam.el (spam-bsfilter): New customize group.
14565         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
14566         (spam-bsfilter-header, spam-bsfilter-probability-header)
14567         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
14568         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
14569         (spam-bsfilter-database-directory): New options.
14570         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
14571         (spam-list-of-statistical-checks, spam-registration-functions):
14572         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
14573         (spam-bsfilter-score): New command.
14574         (spam-check-bsfilter-headers, spam-check-bsfilter)
14575         (spam-bsfilter-register-with-bsfilter)
14576         (spam-bsfilter-register-spam-routine)
14577         (spam-bsfilter-unregister-spam-routine)
14578         (spam-bsfilter-register-ham-routine)
14579         (spam-bsfilter-unregister-ham-routine): New functions.
14580         (spam-generic-score): Support bsfilter; Accept an optional argument
14581         to recalcurate spam score even if scoring header has already been
14582         added.
14583         (spam-bogofilter-score, spam-spamassassin-score): Accept an
14584         optional argument to recalcurate spam score even if scoring header
14585         has already been added.
14586
14587 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
14588
14589         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
14590         strings!  Reported by David D. Smith <davidsmith@acm.org>.
14591         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
14592         link is missing.
14593
14594 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
14595
14596         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
14597         (html2text-get-attr): Rewrite.
14598
14599         * message.el (message-setup-1): Remove redundant put-text-property
14600         on mail-header-separator.
14601
14602 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
14603
14604         * gnus-registry.el (gnus-registry-cache-whitespace)
14605         (gnus-registry-action, gnus-registry-spool-action)
14606         (gnus-registry-split-fancy-with-parent): Change message levels
14607         from 5 to 3 or 7, as needed.
14608
14609         * spam.el (spam-summary-prepare-exit)
14610         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
14611         (spam-split, spam-find-spam, spam-log-undo-registration)
14612         (spam-check-blackholes, spam-enter-ham-BBDB): Changed message
14613         level from 5 to 6.
14614
14615 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14616
14617         * gnus-ems.el: Autoload appt-select-lowest-window (revert
14618         2004-03-04 change).
14619
14620 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
14621
14622         * sieve-manage.el (sieve-manage-open):
14623         * nnweb.el (nnweb-insert-html):
14624         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
14625         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
14626         * nnspool.el (nnspool-request-group):
14627         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
14628         * nnml.el (nnml-request-update-info):
14629         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
14630         (nnmh-request-create-group, nnmh-update-gnus-unreads):
14631         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
14632         (nnimap-request-set-mark):
14633         * nnfolder.el (nnfolder-request-update-info):
14634         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
14635         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
14636         * gnus-uu.el (gnus-uu-find-articles-matching):
14637         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
14638         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
14639         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
14640         * gnus-nocem.el (gnus-nocem-scan-groups):
14641         * gnus-int.el (gnus-start-news-server):
14642         * gnus-group.el (gnus-group-make-kiboze-group)
14643         (gnus-group-browse-foreign-server):
14644         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
14645         Use mapc when appropriate.
14646
14647 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
14648
14649         FIXME: Make separate entries for each person.
14650
14651         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
14652         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
14653         <shields@msrl.com>:
14654
14655         * spam.el (spam-necessary-extra-headers): Get the extra headers we
14656         may need for spam sorting and scoring.
14657         (spam-user-format-function-S): Add user format function suitable for
14658         general use.
14659         (spam-article-sort-by-spam-status): Add sorting function for summary
14660         sorting.
14661         (spam-extra-header-to-number): Add function to get a score from a
14662         header.
14663         (spam-summary-score): Add function to get a numeric score from the
14664         headers.
14665         (spam-generic-score): Fix function doc, was in wrong place.
14666         (spam-initialize): Take symbols when it's run, and install the
14667         extra headers that spam-necessary-extra-headers thinks we need.
14668
14669 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
14670
14671         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
14672         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
14673
14674 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
14675
14676         * gnus-sum.el (gnus-set-global-variables)
14677         (gnus-build-all-threads, gnus-get-newsgroup-headers)
14678         (gnus-article-get-xrefs, gnus-summary-best-group)
14679         (gnus-summary-next-article, gnus-summary-enter-digest-group)
14680         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
14681         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
14682         Use with-current-buffer.
14683
14684 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
14685
14686         * spam.el (spam-summary-prepare-exit): Simplify logic.
14687         (spam-fetch-article-header): Read the article header if it's not
14688         available.
14689         (spam-list-articles): Simplify logic.
14690         (spam-filelist-register-routine): Fix bug with unregister-list.
14691
14692         * gnus-registry.el: Fix comments at beginning.
14693
14694 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
14695
14696         * message.el (message-cater-to-broken-inn): Remove.
14697         (message-shorten-references): Make sure the total folded length of
14698         References is shorter than 998 characters to cater to a bug in INN
14699         2.3.  Also, don't pretend that references aren't folded -- this
14700         hasn't worked for a while.
14701
14702 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14703
14704         * gnus-agent.el (gnus-agentize):
14705         gnus-agent-send-mail-real-function no longer set to current value
14706         of message-send-mail-function but rather a lambda that calls
14707         message-send-mail-function.  The change makes the agent real-time
14708         responsive to user changes to message-send-mail-function.
14709
14710 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14711
14712         * legacy-gnus-agent.el
14713         (gnus-agent-convert-to-compressed-agentview): Fixed typos with
14714         help from Florian Weimer <fw@deneb.enyo.de>
14715
14716 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14717
14718         * nnmail.el (nnmail-cache-insert): Revert last change.
14719
14720 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14721
14722         * nnmail.el (nnmail-cache-insert): Always check whether
14723         nnmail-cache-ignore-groups matches a group name.
14724
14725 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
14726
14727         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
14728         (spam-find-spam, spam-log-processing-to-registry)
14729         (spam-log-registered-p, spam-log-unregistration-needed-p)
14730         (spam-log-undo-registration): Use gnus-message instead of
14731         gnus-error, none of these errors are fatal.
14732
14733         * gnus-registry.el (gnus-registry-clean-empty-function)
14734         (gnus-registry-clean-empty): Remove only empty entries without
14735         extra data.
14736
14737 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
14738
14739         * spam-stat.el (spam-stat-buffer-change-to-spam)
14740         (spam-stat-buffer-change-to-non-spam): Change (error) to
14741         (gnus-message 8) invocation.
14742
14743 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14744
14745         * nntp.el (nntp-via-netcat-command): New variable.
14746         (nntp-via-netcat-switches): New variable.
14747         (nntp-open-via-rlogin-and-netcat): New function.
14748         (nntp-open-connection-function): Doc fix.
14749         (nntp-telnet-command): Doc fix.
14750         (nntp-end-of-line): Doc fix.
14751         (nntp-via-rlogin-command): Doc fix.
14752         (nntp-via-user-name): Doc fix.
14753         (nntp-via-address): Doc fix.
14754
14755 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14756
14757         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
14758         error in Emacs 21.1.
14759
14760 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
14761
14762         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
14763
14764 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14765
14766         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
14767         (gnus-agent-with-refreshed-group): New macro.
14768         (gnus-agent-rename-group): New function.
14769         (gnus-agent-delete-group): New function.
14770         (gnus-agent-save-group-info): Use gnus-command-method when
14771         `method' parameter is nil.  Don't write nil entries into the
14772         active file.
14773         (gnus-agent-get-group-info): New function.
14774         (gnus-agent-fetch-articles): Use
14775         gnus-agent-update-files-total-fetched-for to increment disk space
14776         used.
14777         (gnus-agent-fetch-headers, gnus-agent-save-alist): Use
14778         gnus-agent-update-view-total-fetched-for to increment disk space
14779         used.
14780         (gnus-agent-get-local): Added optional parameters to avoid calling
14781         gnus-group-real-name and gnus-find-method-for-group.
14782         (gnus-agent-set-local): Delete stored entry if either min, or max,
14783         are nil.
14784         (gnus-agent-fetch-session): Reworded error/quit messages.  On
14785         quit, use gnus-agent-regenerate-group to record existance of any
14786         articles fetched to disk before the quit occurred.
14787         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
14788         gnus-agent-update-view-total-fetched-for, and
14789         gnus-agent-update-files-total-fetched-for to decrement disk space
14790         used.
14791         (gnus-agent-retrieve-headers): Use
14792         gnus-agent-update-view-total-fetched-for to increment disk space
14793         used.
14794         (gnus-agent-regenerate-group): Replace gnus-group-update-group
14795         with gnus-agent-update-files-total-fetched-for to decrement disk
14796         space and fresh group buffer.
14797         (gnus-agent-inhibit-update-total-fetched-for): New variable.
14798         (gnus-agent-need-update-total-fetched-for): New variable.
14799         (gnus-agent-update-files-total-fetched-for): New function.
14800         (gnus-agent-update-view-total-fetched-for): New function.
14801         (gnus-agent-total-fetched-for): New function.
14802
14803         * gnus-cache.el (gnus-cache-save-buffers): Use
14804         gnus-cache-update-overview-total-fetched-for to change disk space
14805         used by this group.
14806         (gnus-cache-possibly-enter-article): Use
14807         gnus-cache-update-file-total-fetched-for to increment disk space
14808         used by this group.
14809         (gnus-cache-possibly-remove-article): Use
14810         gnus-cache-update-file-total-fetched-for to decrement disk space
14811         used by this group.
14812         (gnus-cache-generate-nov-databases): Purge total fetched cache.
14813         (gnus-cache-rename-group): New function.
14814         (gnus-cache-delete-group): New function.
14815         (gnus-cache-inhibit-update-total-fetched-for): New variable.
14816         (gnus-cache-need-update-total-fetched-for): New variable.
14817         (gnus-cache-with-refreshed-group): New macro.
14818         (gnus-cache-update-file-total-fetched-for): New function.
14819         (gnus-cache-update-overview-total-fetched-for): New function.
14820         (gnus-cache-rename-group-total-fetched-for): New function.
14821         (gnus-cache-delete-group-total-fetched-for): New function.
14822         (gnus-cache-total-fetched-for): New function.
14823
14824         * gnus-group.el: Require gnus-sum and autoload functions to
14825         resolve warnings when gnus-group.el compiled alone.
14826         (gnus-group-line-format): Documented new %F.
14827         (size of Fetched data) group line format; identifies disk space
14828         used by agent and cache.
14829         (gnus-group-line-format-alist): Defined new F format.
14830         (gnus-total-fetched-for): New function.
14831         (gnus-group-delete-group): No longer update
14832         gnus-cache-active-altered as gnus-request-delete-group now keeps
14833         the cache in sync.
14834         (gnus-group-list-active): Let the agent store a server's active
14835         list if currently plugged.
14836
14837         * gnus-int.el (gnus-request-delete-group):
14838         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
14839         local disk in sync with the server.
14840         (gnus-request-rename-group):
14841         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
14842         local disk in sync with the server.
14843
14844         * gnus-start.el (gnus-get-unread-articles):
14845         Cosmetic simplification to logic.
14846
14847         * gnus-util.el (gnus-rename-file): New function.
14848
14849 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
14850
14851         * mm-util.el (mm-image-load-path): Handle nil in load-path.
14852
14853 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
14854
14855         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
14856         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
14857
14858 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
14859
14860         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
14861         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
14862
14863 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
14864
14865         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
14866
14867 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
14868
14869         * spam.el (spam-set-difference): Add function to replace
14870         gnus-set-difference in spam.el.
14871         (spam-summary-prepare-exit): Use spam-set-difference.
14872
14873 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
14874
14875         * gnus-registry.el (gnus-registry-cache-file): Update to use
14876         gnus-dribble-directory OR gnus-home-directory OR ~.
14877         (gnus-registry-split-fancy-with-parent): Fix doc.
14878
14879 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14880
14881         * message.el (message-exchange-point-and-mark): Use
14882         message-mark-active-p.  Suggested by Jesper Harder
14883         <harder@ifa.au.dk>.
14884
14885 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14886
14887         * message.el (message-exchange-point-and-mark): Don't activate
14888         region if it was inactive.  Suggested by Hiroshi Fujishima
14889         <pooh@nature.tsukuba.ac.jp>.
14890
14891 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14892
14893         * gnus-art.el (article-display-face): Display Faces in the same
14894         order as X-Faces.
14895
14896 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14897
14898         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
14899
14900 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14901
14902         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
14903         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
14904         (gnus-article-mime-hierarchy): Remove.
14905         (gnus-article-mime-hierarchy-next): Remove.
14906         (gnus-article-mode): Revert 2004-03-19 change.
14907         (gnus-article-setup-buffer): Revert 2004-03-19 change.
14908         (gnus-insert-mime-button): Revert 2004-03-19 change.
14909         (gnus-mime-accumulate-hierarchy): Remove.
14910         (gnus-mime-enter-multipart): Remove.
14911         (gnus-mime-leave-multipart): Remove.
14912         (gnus-mime-display-part): Revert 2004-03-19 change.
14913         (gnus-mime-display-alternative): Revert 2004-03-19 change.
14914
14915         * mml.el (mml-preview): Revert 2004-03-19 change.
14916
14917 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
14918
14919         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
14920
14921 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14922
14923         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
14924         t while entering a file name using the mm-with-multibyte macro.
14925         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
14926
14927         * mm-util.el (mm-with-multibyte): New macro.
14928
14929 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14930
14931         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): New
14932         user option.
14933         (gnus-mime-multipart-functions): Doc and customization fix.
14934         (gnus-article-mime-hierarchy): New variable.
14935         (gnus-article-mime-hierarchy-next): New variable.
14936         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
14937         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
14938         gnus-article-mime-hierarchy-next to nil.
14939         (gnus-insert-mime-button): Show hierarchy numbers.
14940         (gnus-mime-accumulate-hierarchy): New function.
14941         (gnus-mime-enter-multipart): New function.
14942         (gnus-mime-leave-multipart): New function.
14943         (gnus-mime-display-part): Recompute hierarchical MIME structure.
14944         (gnus-mime-display-alternative): Show hierarchy numbers.
14945
14946         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
14947         gnus-article-mime-hierarchy-next to nil.
14948
14949 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
14950
14951         * dns.el: Don't require gnus-xmas.
14952
14953 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
14954
14955         * mml.el (mml-generate-mime-1): Don't use format=flowed with
14956         inline PGP.
14957         (mml-menu): Disable mml-quote-region if mark is inactive.
14958
14959 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14960
14961         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
14962         when the group's active is not available.
14963
14964 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14965
14966         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
14967         error.
14968
14969 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
14970
14971         * imap.el (imap-store-password): New variable.
14972         (imap-interactive-login): Use it.
14973         Suggested by Mark Plaksin <happy@mcplaksin.org>.
14974
14975 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14976
14977         * gnus-art.el (gnus-article-read-summary-keys): Restore new
14978         window-start and hscroll to summary window.
14979
14980 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14981
14982         * gnus-start.el (gnus-convert-old-newsrc): Only write the
14983         conversion message to newsrc-dribble when an actual conversion is
14984         performed.
14985
14986 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
14987
14988         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
14989
14990 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14991
14992         * mm-decode.el (mm-complicated-handles): New function reviving
14993         former definition of mm-multiple-handles.
14994
14995         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
14996         (gnus-mime-delete-part): Use it.
14997
14998 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14999
15000         * gnus-agent.el (gnus-agent-read-local): Bind
15001         nnheader-file-coding-system to gnus-agent-file-coding-system to
15002         avoid the implicit assumption that they will always be equal.
15003         (gnus-agent-save-local): Bind buffer-file-coding-system, not
15004         coding-system-for-write, as the with-temp-file macro first prints
15005         to a buffer then saves the buffer.
15006
15007 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15008
15009         * gnus-art.el (gnus-article-edit-part): New function.
15010         (gnus-mime-save-part-and-strip): Use it; do query instead of
15011         signaling an error; don't use mm-multiple-handles.
15012         (gnus-mime-delete-part): Ditto.
15013
15014 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15015
15016         * gnus-agent.el (gnus-agent-read-agentview): Removed support for
15017         old file versions.
15018         (gnus-group-prepare-hook): Removed function that converted list
15019         form of gnus-agent-expire-days to group properties.
15020
15021         * gnus-int.el: Autoload gnus-agent-regenerate-group.
15022         (gnus-request-accept-article): Re-indented.
15023
15024         * gnus-start.el (gnus-convert-old-newsrc): Registered new
15025         converters to handle old agent file formats.  Added logic for a
15026         "backup before upgrading warning".
15027         (gnus-convert-mark-converter-prompt): Developers can mark
15028         functions as needing (default), or not needing,
15029         gnus-convert-old-newsrc's "backup before upgrading warning".
15030         (gnus-convert-converter-needs-prompt): Tests whether the user
15031         should be protected from potentially irreversable changes by the
15032         function.
15033
15034         * legacy-gnus-agent.el: New.  Provides converters that are only
15035         loaded when gnus-convert-old-newsrc needs to call them.
15036
15037 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15038
15039         * mail-source.el (mail-source-touch-pop): Doc fix.
15040
15041         * message.el (message-smtpmail-send-it): Doc fix.
15042
15043 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
15044
15045         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
15046
15047         * nnmail.el (nnmail-split-fancy): do.
15048
15049         * gnus-kill.el (gnus-kill, gnus-execute): do.
15050
15051 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
15052
15053         * gnus-sum.el (gnus-widget-reversible-match)
15054         (gnus-widget-reversible-to-internal)
15055         (gnus-widget-reversible-to-external): New functions.
15056         (gnus-widget-reversible): New widget.
15057         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
15058
15059 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
15060
15061         * gnus-sum.el (gnus-thread-sort-functions)
15062         (gnus-article-sort-functions): Document `(not F)' items.
15063
15064 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
15065
15066         * spam.el (spam-use-gmane-xref): Add new backend.
15067         (spam-gmane-xref-spam-group): Add variable to control the name of the
15068         Gmane spam group.
15069         (spam-blackhole-servers, spam-blackhole-good-server-regex)
15070         (spam-regex-headers-spam, spam-regex-headers-ham)
15071         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
15072         (spam-list-of-checks): Add spam-use-gmane-xref to list of
15073         backends and checks.
15074         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
15075
15076         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
15077         an autodetect method.
15078
15079 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15080
15081         * gnus-int.el (gnus-request-accept-article): Inform the agent that
15082         articles are being added to a group.
15083         (gnus-request-replace-article): Inform the agent that articles
15084         need to be uncached as the cached contents are no longer valid.
15085
15086 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15087
15088         * binhex.el: Don't autoload executable-find.
15089
15090         * canlock.el: Don't autoload mail-fetch-field.
15091
15092         * dgnushack.el: Autoload c-mode for XEmacs.
15093
15094         * gnus-ems.el: Don't autoload appt-select-lowest-window.
15095
15096         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
15097         rmail-dont-reply-to and rmail-output.
15098
15099         * gnus-score.el: Don't autoload ffap-string-at-point.
15100
15101         * gnus-setup.el: Don't autoload sc-cite-original.
15102
15103         * imap.el: Don't autoload base64-decode-string,
15104         base64-encode-string and md5.
15105
15106         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
15107         and rmail-msg-restore-non-pruned-header.
15108
15109         * mm-decode.el: Don't autoload executable-find.
15110
15111         * mm-url.el: Don't autoload executable-find.
15112
15113         * mm-view.el: Don't autoload diff-mode.
15114
15115         * nndb.el: Don't autoload news-reply-mode, news-setup,
15116         cancel-timer and telnet.
15117
15118         * password.el: Don't autoload run-at-time for Emacs.
15119
15120         * sha1-el.el: Don't autoload executable-find.
15121
15122         * sieve-mode.el: Don't autoload c-mode.
15123
15124         * uudecode.el: Don't autoload executable-find.
15125
15126 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15127
15128         * gnus-agent.el (gnus-agent-file-header-cache): Removed.
15129         (gnus-agent-possibly-alter-active): Avoid null in numeric
15130         comparison.
15131         (gnus-agent-set-local): Refuse to save null in local object table.
15132         (gnus-agent-regenerate-group): The REREAD parameter can now be a
15133         list of articles that will be marked as unread.
15134
15135 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15136
15137         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
15138
15139 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
15140
15141         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
15142         language tags.
15143
15144 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
15145
15146         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
15147         Don't bind "obarray".
15148
15149         * gnus-sum.el (gnus-thread-sort-functions): Added
15150         `gnus-thread-sort-by-most-recent-number' and
15151         `gnus-thread-sort-by-most-recent-date'.
15152         Reported by Kai Grossjohann <kai@emptydomain.de>.
15153
15154 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15155
15156         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
15157
15158 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15159
15160         * gnus-cus.el (gnus-agent-customize-category): Removed
15161         ignore-errors macro reference that required cl to be loaded at
15162         run-time.
15163
15164         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
15165         single-interval range of the form (min . max).  Previously the
15166         range had to look like ((min . max)).  Likewise, return
15167         (min . max) rather than ((min . max)).
15168         (gnus-range-map): Use gnus-range-normalize to accept
15169         single-interval range.
15170
15171         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
15172         the cache, but not the agent, now appear with their usual face.
15173
15174         * dgnushack.el (loaddir): New variable that is bound to the
15175         directory containing the dgnushack.el file. Use loaddir, rather
15176         than srcdir, to update load-path. Change lets dgnushack compile
15177         code in directories other than GNUS/lisp.
15178
15179 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15180
15181         * lpath.el: Don't bind w3m-safe-url-regexp.
15182
15183         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
15184         w3m-safe-url-regexp variable buffer-local.
15185
15186         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15187
15188 2004-02-27  Simon Josefsson  <jas@extundo.com>
15189
15190         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
15191         gnus-group-real-prefix.
15192         (gnus-summary-move-article): Use it, instead of
15193         gnus-group-real-prefix.
15194
15195 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15196
15197         * lpath.el: Bind w3m-safe-url-regexp.
15198
15199         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
15200         w3m-safe-url-regexp variable buffer-local and set it as the value
15201         of mm-w3m-safe-url-regexp.
15202
15203         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15204
15205         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
15206         parsing gnus-posting-styles when the message is not for replying.
15207
15208         * dgnushack.el: Autoload sgml-mode for XEmacs.
15209
15210         * nnrss.el (nnrss-opml-export): Use
15211         mm-set-buffer-file-coding-system instead of
15212         set-buffer-file-coding-system.
15213
15214 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
15215
15216         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
15217         of checkdoc.el).
15218         * nnrss.el: do.
15219         * gnus-mlspl.el: do.
15220         * gnus-ml.el: do.
15221         * gnus-srvr.el: do.
15222
15223         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
15224
15225 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
15226
15227         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
15228         Corrections to custom-manual links.
15229
15230         * gnus-art.el (gnus-article): Ditto.
15231
15232         * mm-decode.el (mime-display, mime-security): Ditto.
15233
15234 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15235
15236         * flow-fill.el: Typo.
15237
15238 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
15239
15240         * spam-wash.el: New file.
15241
15242 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
15243
15244         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
15245
15246 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
15247
15248         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
15249         to be run with new-articles as LIST1, not LIST2.
15250         (spam-registration-functions): Add spam-use-ham-copy as a nil
15251         registration backend.
15252
15253 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15254
15255         * spam-stat.el (spam-stat-washing-hook): New option.
15256         (spam-stat-buffer-words): Use it.
15257         (spam-stat-process-directory, spam-stat-test-directory): Use
15258         insert-file-contents-literally.
15259         (spam-stat-coding-system): New variable.
15260         (spam-stat-load, spam-stat-save): Use it.
15261
15262 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15263
15264         * spam-report.el (spam-report-plug-agent): Quote
15265         spam-report-url-to-file and spam-report-url-ping-plain.
15266
15267 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
15268
15269         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Allow
15270         / in mailto URLs.
15271
15272 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
15273
15274         * spam-report.el (spam-report-process-queue): Fix interactive use.
15275         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
15276         (spam-report-unplug-agent): Doc fixes.
15277         (spam-report-url-ping-mm-url, spam-report-url-to-file)
15278         (spam-report-agentize, spam-report-deagentize): Autoload.
15279
15280 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15281
15282         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
15283
15284         * message.el (message-setup-fill-variables): Add mml tags to
15285         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
15286         <ajk@iu.edu>.
15287         (message-mode): Don't modify paragraph-separate there.
15288
15289 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15290
15291         * compface.el (uncompface-use-external): Default to undecided.
15292         (uncompface-use-external-threshold): New variable.
15293         (uncompface-float-time): New macro.
15294         (uncompface): Determine whether to use the external decoder if
15295         uncompface-use-external is undecided.
15296
15297 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15298
15299         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
15300         after images.
15301
15302         * gnus-art.el (gnus-mime-display-single): Remove dead code.
15303
15304 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
15305
15306         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
15307
15308         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
15309
15310         * gnus-sum.el (gnus-summary-limit-to-age)
15311         (gnus-summary-limit-children): do.
15312
15313         * gnus-int.el (gnus-request-scan): do.
15314
15315         * gnus-group.el (gnus-group-suspend): do.
15316
15317         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
15318
15319         * gnus-cite.el (gnus-cite-parse-attributions): do.
15320
15321         * gnus-agent.el (gnus-summary-set-agent-mark)
15322         (gnus-agent-regenerate-group): do.
15323
15324         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
15325
15326         * binhex.el (binhex-decode-region-internal): do.
15327
15328 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15329
15330         * gnus-fun.el (gnus-face-properties-alist): New user option.
15331         (gnus-display-x-face-in-from): Use it.
15332
15333         * gnus-art.el (article-display-face): Ditto.
15334
15335         * compface.el (uncompface-use-external): Default to nil.
15336
15337 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
15338
15339         * nntp.el (nntp-erase-buffer): New function.
15340         (nntp-retrieve-data, nntp-send-command)
15341         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
15342         (nntp-possibly-change-group): Use it.
15343
15344         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list): Use
15345         with-current-buffer.
15346
15347 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
15348
15349         * compface.el: Merge the ELisp-based uncompface program.
15350         (compface): New customization group.
15351         (uncompface-use-external): New user option.
15352         (uncompface): Call uncompface-internal if uncompface-use-external
15353         is nil.
15354         (uncompface-internal): New function.  Note that there are also
15355         some other functions and variables added for this function.
15356
15357 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
15358
15359         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
15360         if necessary.
15361
15362 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
15363
15364         * spam-report.el (spam-report-unplug-agent)
15365         (spam-report-plug-agent, spam-report-deagentize)
15366         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
15367         Add support for the Agent in spam-report: when unplugged, report to a
15368         file; when plugged, submit all the requests.
15369
15370         * spam.el (spam-register-routine): Fix message about
15371         registration.
15372
15373 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
15374
15375         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
15376         dependencies.
15377         (rfc2047-encode): Use it.
15378
15379         * gnus-art.el (gnus-button-marker-list): Move before first
15380         reference.
15381
15382         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
15383         (imap-parse-body): Fix format string mismatch.
15384
15385         * gnus-score.el (gnus-summary-increase-score): do.
15386
15387         * nnrss.el (nnrss-close): New function.
15388
15389 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
15390
15391         * nnrss.el (nnrss-make-filename): New function.
15392         (nnrss-request-delete-group, nnrss-read-server-data)
15393         (nnrss-save-server-data, nnrss-read-group-data)
15394         (nnrss-save-group-data): Use it.
15395         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
15396         (nnrss-read-server-data, nnrss-read-group-data): Use load.
15397         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
15398
15399 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
15400
15401         * mml.el (mml-compute-boundary-1): Don't uncompress files.
15402
15403 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
15404
15405         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
15406         files.
15407
15408         * message.el (message-generate-headers-first): Don't quote nil
15409         and t in docstrings.
15410
15411         * imap.el (imap-id): do.
15412
15413         * gnus-agent.el (gnus-agent-consider-all-articles)
15414         (gnus-agent-queue-mail): do.
15415
15416 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
15417
15418         * spam-report.el (spam-report-process-queue): New function.
15419         Process requests from `spam-report-requests-file'.
15420         (spam-report-process-queue): Doc fix.
15421
15422 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
15423
15424         * spam.el (spam-register-routine)
15425         (spam-log-processing-to-registry, spam-log-registered-p)
15426         (spam-log-unregistration-needed-p, spam-log-undo-registration):
15427         Change "check" to "spam-check" for semi-clarity.
15428
15429 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
15430
15431         * pop3.el: Require nnheader.
15432
15433         * mml-smime.el: Require cl.  Autoload message-fetch-field.
15434
15435         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
15436
15437         * gnus-picon.el: Require cl.
15438
15439         * gnus-fun.el: Require gnus-ems and gnus-util.
15440
15441         * gnus.el (gnus-method-to-server): Move defsubst before first use.
15442
15443         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
15444
15445         * gnus-art.el (gnus-article-edit-mode): Define before first
15446         reference.
15447
15448 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
15449
15450         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
15451         (gnus-uu-post-encoded): Use point-at-bol.
15452
15453         * gnus-topic.el (gnus-group-active-topic-p): do.
15454
15455         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
15456
15457         * gnus-group.el (gnus-group-kill-region): do.
15458
15459         * gnus-art.el (article-date-ut): do.
15460
15461         * message.el (message-fetch-field): Remove redundant
15462         case-fold-search binding.
15463         (message-narrow-to-field): Simplify.
15464
15465 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
15466
15467         * spam.el (spam-directory): Derive from `gnus-directory'.
15468
15469         * spam-report.el (spam-report-url-to-file)
15470         (spam-report-requests-file): New function and variable for offline
15471         reporting.
15472         (spam-report-url-ping-function): Add `spam-report-url-to-file'
15473         and user defined function.
15474         (spam-report-url-ping-mm-url): Remove doubled slash.
15475
15476 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
15477
15478         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
15479
15480 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
15481
15482         * spam.el (spam-check-spamoracle, spam-spamoracle-learn): Fix
15483         format string mismatch.
15484
15485         * sieve.el (sieve-deactivate-all): do.
15486
15487         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
15488
15489         * nnlistserv.el (nnlistserv-kk-wash-article): do.
15490
15491         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
15492
15493         * mm-bodies.el (mm-7bit-chars): Don't include \r.
15494
15495 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
15496
15497         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
15498         the list of checks.
15499
15500 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
15501
15502         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
15503         padding.
15504
15505 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
15506
15507         * mm-view.el (mm-fill-flowed): New variable.
15508         (mm-inline-text): Use it.
15509
15510 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
15511
15512         * spam.el (spam-spamassassin-register-ham-routine)
15513         (spam-spamassassin-register-spam-routine): Fix function names.
15514
15515 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15516
15517         * gnus.el (gnus-tmp-grouplens): Remove.
15518         (gnus-summary-line-format): Remove grouplens.
15519
15520         * gnus-group.el (gnus-group-line-format): Ditto.
15521
15522         * gnus-spec.el (gnus-format-specs): Ditto.
15523         (gnus-update-format-specifications): Flush the group format spec
15524         cache if there's the grouplens stuff.
15525         (gnus-parse-simple-format): Replace %l with the empty string.
15526
15527 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
15528
15529         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
15530         omission.
15531
15532 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15533
15534         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
15535         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
15536
15537 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
15538
15539         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
15540         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
15541         New macros and functions.
15542         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
15543         Handle > NLINK_MAX messages.
15544         * nnmaildir.el (nnmaildir-request-set-mark): Use
15545         nnmaildir--emlink-p and nnmaildir--eexist-p.
15546
15547 2004-01-25  Alex Schroeder  <alex@gnu.org>
15548
15549         * spam-stat.el (spam-stat-process-directory-age): New option.
15550         (spam-stat-process-directory): Use it.
15551
15552 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
15553
15554         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
15555         (spam-stat-save): Accept prefix argument.
15556
15557 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
15558
15559         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
15560         links" error.
15561
15562 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15563
15564         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
15565         the rest of the and/or forms.
15566
15567 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15568
15569         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
15570         compatibility with old .newsrc.eld files.
15571
15572         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
15573
15574         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
15575
15576         * gnus-start.el (gnus-1): do.
15577
15578         * gnus-group.el (gnus-group-line-format-alist): do.
15579
15580         * gnus.el (gnus-use-grouplens, gnus-visual): do.
15581
15582         * gnus-gl.el: Remove.
15583
15584 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15585
15586         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
15587         marks consisting of a single range {for example, (3 . 5)} rather
15588         than a list of a single range { ((3 . 5)) }.
15589
15590 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15591
15592         * spam-stat.el (spam-stat-store-gnus-article-buffer): Use
15593         with-current-buffer.
15594         (spam-stat-store-current-buffer): Use insert-buffer-substring to
15595         avoid consing a string.
15596
15597         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
15598         Remove obsolete entries for big5 and gb2312.
15599
15600 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15601
15602         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
15603         uncompressed list.
15604
15605 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
15606
15607         * spam-stat.el (spam-stat-strip-xref): New function.
15608         (spam-stat-process-directory): Use it.
15609
15610         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
15611         here -- it's done in message-fetch-field.
15612
15613 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15614
15615         * gnus-agent.el (gnus-agent-queue-mail)
15616         (gnus-agent-prompt-send-queue): New variables.
15617         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
15618         * gnus-draft.el (gnus-group-send-queue): Pass the group name
15619         "nndraft:queue" along to gnus-draft-send.  Use
15620         gnus-agent-prompt-send-queue.
15621         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
15622         is "nndraft:queue".  Suggested by Gaute Strokkenes
15623         <gs234@srcf.ucam.org>
15624
15625         * gnus-agent.el (agent-disable-undownloaded-faces): Removed.
15626         (agent-enable-undownloaded-faces): Added.
15627         (gnus-agent-cat-groups): Use eval-and-compile, not
15628         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
15629         method of gnus-agent-cat-groups even when the buffer has been
15630         evaled.
15631         (gnus-agent-save-active, gnus-agent-save-active-1): Merged to
15632         delete gnus-agent-save-active-1.
15633         (gnus-agent-save-groups): Deleted.  Identical to
15634         gnus-agent-save-active.
15635         (gnus-agent-write-active): No longer adjust agent's copy of active
15636         file as agent's adjustments are now stored in their own
15637         file.  Removed optional parameter.
15638         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
15639         servers.  Add use of min/max range limits from server's local
15640         file.
15641         (gnus-agent-save-alist): Removed unused optional argument.
15642         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
15643         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
15644         (gnus-agent-set-local): A per-server file that keeps min/max range
15645         limits for articles known to the agent.  Provides a fast mechanism
15646         for altering many active ranges.
15647         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
15648         active file (local makes it unnecessary).
15649         (gnus-agent-regenerate-group): Fixed XEmacs compatibility.
15650
15651         * gnus-cus.el (agent-disable-undownloaded-faces): Removed.
15652         (agent-enable-undownloaded-faces): Added.
15653
15654         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
15655         disable it when sending to "nndraft:queue".
15656         (gnus-group-send-queue): Add safety check to avoid sending queue
15657         when unplugged.
15658
15659         * gnus-group.el (gnus-group-catchup): Use new
15660         gnus-sequence-of-unread-articles, not
15661         gnus-list-of-unread-articles, to avoid exhausting memory with huge
15662         numbers of articles.  Use gnus-range-map to avoid having to
15663         uncompress the unread list.
15664         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
15665         Fixed invalid ange-ftp reference.
15666
15667         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
15668         (gnus-sorted-range-intersection): Intersection of two ranges
15669         without requiring that they first be uncompressed.
15670
15671         * gnus-start.el (gnus-activate-group): Unless blocked by the
15672         caller, possibly expand the active range to include both cached
15673         and agentized articles.
15674         (gnus-convert-old-newsrc): Rewrote in anticipation of having
15675         multiple version-dependent converters.
15676         (gnus-groups-to-gnus-format): Replaced gnus-agent-save-groups with
15677         gnus-agent-save-active.
15678         (gnus-save-newsrc-file): Save dirty agent range limits.
15679
15680         * gnus-sum.el (gnus-select-newgroup): Replaced inline code with
15681         gnus-agent-possibly-alter-active.
15682         (gnus-adjust-marked-articles): Faster handling of simple lists.
15683
15684 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
15685
15686         * spam-stat.el (spam-stat-test-directory): New optional argument
15687         displays a list of files detected.  Suggested by Andrew Cohen
15688         <cohen@andy.bu.edu>.
15689         (spam-stat-buffer-words-with-scores): Don't narrow and change
15690         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
15691
15692 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
15693
15694         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
15695         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
15696         (spam-spamassassin-arguments)
15697         (spam-spamassassin-spam-flag-header)
15698         (spam-spamassassin-positive-spam-flag-header)
15699         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
15700         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
15701         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
15702         (spam-list-of-processors, spam-list-of-checks)
15703         (spam-list-of-statistical-checks, spam-registration-functions)
15704         (spam-check-spamassassin-headers, spam-check-spamassassin)
15705         (spam-spamassassin-score)
15706         (spam-spamassassin-register-with-sa-learn)
15707         (spam-spamassassin-register-spam-routine)
15708         (spam-spamassassin-register-ham-routine)
15709         (spam-assassin-register-spam-routine)
15710         (spam-assassin-register-ham-routine): Add SpamAssassin support.
15711         (spam-bogofilter-score): Fix to show article before scoring.
15712
15713 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
15714
15715         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
15716         default scoring function.
15717         (spam-generic-score): Call spam-spamassassin-score if
15718         spam-use-spamassassin or spam-use-spamassassin-headers is on;
15719         spam-bogofilter-score otherwise.
15720
15721         * gnus.el (spam-process, spam-autodetect-methods): Add
15722         spamassassin and spamassassin-headers.
15723
15724 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
15725
15726         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
15727         Suppress unnecessary messages.
15728
15729 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
15730
15731         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
15732         make-hash-table.
15733
15734 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15735
15736         * canlock.el (base64-encode-string): Don't autoload it.
15737
15738 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15739
15740         * run-at-time.el: Remove useless (require 'itimer),
15741         eval-and-compile and (featurep 'xemacs).
15742
15743 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
15744
15745         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
15746         GROUP is a virtual group.
15747
15748 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
15749
15750         * gnus.el: Autoload `message-y-or-n-p'.
15751
15752 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
15753
15754         * pgg-parse.el: Remove unnecessary (require 'custom).
15755
15756         * pgg-def.el: do.
15757
15758         * nnmail.el: do.
15759
15760         * gnus-undo.el: do.
15761
15762         * gnus-picon.el: do.
15763
15764         * gnus-util.el: do.
15765
15766 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
15767
15768         * gnus-sum.el (gnus-pick-line-number): Add autoload.
15769
15770 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15771
15772         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
15773         handle, as well as a list.
15774
15775         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
15776         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
15777         (mm-w3m-cid-retrieve): Simplify.
15778
15779 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
15780
15781         * message.el (message-kill-to-signature): Allow prefix arg to
15782         specify number of lines to keep before signature.
15783
15784 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
15785
15786         * message.el (message-kill-to-signature): Change docstring.
15787
15788 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15789
15790         * canlock.el: Always require sha1-el.
15791         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
15792
15793         * message.el: Autoload sha1 only when compiling.
15794
15795         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
15796         eudc-expand-inline for XEmacs.
15797
15798 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15799
15800         * message.el (message-canlock-generate): Require sha1-el.
15801
15802 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
15803
15804         * message.el (message-expand-name): Silence the byte compiler.
15805
15806         * lpath.el: Add detect-coding-system.
15807
15808         * dgnushack.el (dgnushack-compile): Remove obsolete check for
15809         cus-edit.
15810
15811 2004-01-13  Simon Josefsson  <jas@extundo.com>
15812
15813         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
15814         Invoke gnus-score-mode.  Reported by
15815         bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
15816
15817         * gnus-range.el (gnus-compress-sequence): Doc fix.  Suggested by
15818         Jim Blandy <jimb@redhat.com> (tiny change).
15819
15820 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15821
15822         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
15823
15824 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
15825
15826         * spam.el (spam-get-article-as-string): Update to use
15827         gnus-request-article-this-buffer, much simpler.
15828         (spam-get-article-as-buffer): Remove.
15829
15830 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
15831
15832         * message.el (message-expand-name): Use EUDC if the user uses that.
15833
15834 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15835
15836         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
15837         character for the encoding to avoid consing a string.
15838
15839         * rfc2047.el (rfc2047-decode-string): Don't cons a string
15840         unnecessarily.
15841
15842         * mm-util.el (mm-replace-chars-in-string): Remove.
15843
15844         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
15845         of mm-replace-chars-in-string.
15846
15847 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
15848
15849         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
15850
15851         * mm-util.el (mm-subst-char-in-string): Support inplace.
15852
15853         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
15854         a new string in every iteration.  Use shy groups.
15855
15856 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
15857
15858         * gnus-srvr.el (gnus-browse-unsubscribe-group):
15859         * gnus-soup.el (gnus-soup-group-brew):
15860         * gnus-msg.el (gnus-put-message):
15861         * gnus-move.el (gnus-group-move-group-to-server):
15862         * gnus-kill.el (gnus-batch-score):
15863         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
15864         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
15865         (gnus-group-update-group, gnus-group-read-group)
15866         (gnus-group-make-group, gnus-group-make-help-group)
15867         (gnus-group-make-archive-group, gnus-group-make-directory-group)
15868         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
15869         (gnus-group-sort-by-unread, gnus-group-catchup)
15870         (gnus-group-unsubscribe-group, gnus-group-kill-group)
15871         (gnus-group-yank-group, gnus-group-set-info)
15872         (gnus-group-list-groups):
15873         * gnus.el (gnus-generate-new-group-name):
15874         * gnus-delay.el (gnus-delay-send-queue):
15875         * nnvirtual.el (nnvirtual-catchup-group):
15876         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
15877         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
15878         (gnus-group-prepare-topics, gnus-topic-check-topology):
15879         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
15880         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
15881         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
15882         (gnus-group-make-articles-read):
15883         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
15884         (gnus-group-change-level, gnus-kill-newsgroup)
15885         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
15886         (gnus-get-unread-articles, gnus-make-articles-unread)
15887         (gnus-make-ascending-articles-unread): Use accessor
15888         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
15889         to get group information for improved readability.
15890
15891
15892 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15893
15894         * gnus-art.el (article-decode-mime-words, article-babel)
15895         (gnus-article-highlight-signature, gnus-article-add-buttons)
15896         (gnus-signature-toggle): Use gnus-with-article-buffer.
15897
15898         * gnus-art.el (gnus-article-highlight-headers)
15899         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
15900
15901         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
15902         (gnus-article-set-globals, gnus-request-article-this-buffer)
15903         (gnus-button-message-id, gnus-article-maybe-hide-headers)
15904         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
15905         (gnus-mime-display-alternative): Use with-current-buffer.
15906
15907 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15908
15909         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
15910         also under 80 char limit, and call gnus-error if needed.
15911         (spam-fetch-article-header): Fix - it was a
15912         buffer-local variable (gnus-newsgroup-data).
15913         (spam-find-spam): Use spam-generate-fake-headers, forget about
15914         spam-insert-fake-headers.
15915         (spam-insert-fake-headers): Remove.
15916
15917 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15918
15919         * deuglify.el (gnus-article-outlook-unwrap-lines)
15920         (gnus-outlook-rearrange-article)
15921         (gnus-outlook-repair-attribution-outlook)
15922         (gnus-outlook-repair-attribution-block)
15923         (gnus-outlook-repair-attribution-other): Remove redundant
15924         save-excursion.
15925
15926 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15927
15928         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
15929         (spam-fetch-field-subject-fast)
15930         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
15931         (spam-fetch-article-header): Add functions to deal with Gnus
15932         internals for fast retrieval of article header data.
15933         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
15934
15935 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15936
15937         * pop3.el (pop3-md5): Remove.
15938         (pop3-apop): Replace pop3-md5 with md5.
15939
15940         * mm-bodies.el: base64 is always built-in.
15941
15942         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use
15943         with-current-buffer.
15944
15945 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15946
15947         * canlock.el (canlock-insert-header): Remove excessive grouping in
15948         regexp.
15949
15950         * gnus-sum.el (gnus-summary-read-document): Ditto.
15951
15952         * gnus-uu.el (gnus-uu-part-number): Ditto.
15953
15954         * html2text.el (html2text-remove-tags): Ditto.
15955         (html2text-format-tags): Ditto.
15956         (html2text-format-single-elements): Ditto.
15957
15958         * mml.el (mml-parse-1): Ditto.
15959
15960 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
15961
15962         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
15963
15964         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
15965
15966         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
15967
15968         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
15969
15970 2003-11-15  Simon Josefsson  <jas@extundo.com>
15971
15972         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
15973         (pgg-gpg-lookup-key): Use regexp match instead of
15974         split-string (split-string is different between emacs 21.2 and
15975         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
15976
15977 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
15978
15979         * gnus-art.el (gnus-mime-view-all-parts)
15980         (gnus-article-part-wrapper, gnus-article-view-part): Use
15981         with-current-buffer.
15982
15983 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
15984
15985         * spam.el (spam-disable-spam-split-during-ham-respool)
15986         (spam-spamoracle-database, spam-cache-lookups)
15987         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
15988         (spam-group-ham-mark-p, spam-group-spam-mark-p)
15989         (spam-group-ham-marks, spam-group-spam-marks)
15990         (spam-group-spam-contents-p, spam-group-ham-contents-p)
15991         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
15992         also add spam-use-blackholes to the statistical checks.
15993         (spam-fetch-field-fast): Add interface to fetching fields, may
15994         become a macro.
15995         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
15996         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
15997         (spam-insert-fake-headers): Fake an article when needed.
15998         (spam-find-spam): Fake article when possible.
15999         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
16000         (spam-check-bogofilter-headers): Use message-fetch-field instead
16001         of nnmail-fetch-field.
16002
16003 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
16004
16005         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
16006
16007 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
16008
16009         * spam.el (spam-split): Do not require spam-use-CHECK to be
16010         enabled if that check is passed to spam-split explicitly; also
16011         fix so 'spam doesn't get converted to spam-split-group when
16012         spam-split-symbolic-return is t.
16013         (spam-find-spam): Find registrations of the article and use those
16014         instead of re-running spam-split to find the spam/ham
16015         classification of the article.
16016         (spam-log-processing-to-registry, spam-log-registered-p)
16017         (spam-log-unregistration-needed-p, spam-log-undo-registration):
16018         Use gnus-error instead of gnus-message.
16019         (spam-log-registration-type): Add function to determine the
16020         classification of a message based on registry entries; will
16021         return nil if both 'spam and 'ham are found.
16022         (spam-check-BBDB): Expand all the BBDB macros here so we can have
16023         a reasonably fast local cache without the loading errors.
16024         (spam-cache-lookups): Set to t by default.
16025         (spam-find-spam): Don't try to guess spam-cache-lookups.
16026         (spam-enter-whitelist, spam-enter-blacklist): Clear the
16027         spam-caches entry.
16028         (spam-filelist-build-cache, spam-filelist-check-cache): Fix
16029         caching of whitelist/blacklist entries.
16030         (spam-check-whitelist, spam-check-blacklist): Invoke
16031         spam-from-listed-p with a type, not a cache variable.
16032         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
16033
16034 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
16035
16036         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
16037
16038         * nnmail.el (nnmail-split-fancy): do.
16039
16040         * mml.el (mml-parse): do.
16041
16042         * gnus-score.el (gnus-enter-score-words-into-hashtb)
16043         (gnus-score-adaptive): do.
16044
16045 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16046
16047         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
16048         (gnus-mime-button-map): Don't set keymap parent.
16049         (gnus-button-ctan-directory-regexp): Use shy grouping.
16050         (gnus-prev-page-map): Don't set keymap parent.
16051         (gnus-prev-page-map): Remove duplicated one.
16052         (gnus-next-page-map): Don't set keymap parent.
16053         (gnus-mime-security-button-map): Ditto.
16054
16055         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
16056         version number.
16057
16058         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
16059
16060 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16061
16062         * canlock.el (canlock-sha1-function): Remove.
16063         (canlock-sha1-function-for-verify): Remove.
16064         (canlock-openssl-program): Remove.
16065         (canlock-openssl-args): Remove.
16066         (canlock-ignore-errors): Remove.
16067         (canlock-sha1-with-openssl): Remove.
16068         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
16069         (canlock-verify): Don't use canlock-ignore-errors.
16070
16071         * sha1-el.el (sha1-string-external): Make it can return a string
16072         in binary form.
16073         (sha1-region-external): Ditto.
16074         (sha1-string-internal): Ditto.
16075         (sha1-region-internal): Ditto.
16076         (sha1-region): Ditto.
16077         (sha1-string): Ditto.
16078         (sha1): Ditto.
16079
16080 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16081
16082         * spam.el (spam-report-articles-gmane): New command.
16083
16084 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16085
16086         * gnus.el: Don't make unnecessary *Group* buffer when loading.
16087
16088         * run-at-time.el (run-at-time-saved): Remove.
16089         (run-at-time): Doc fix.
16090
16091 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
16092
16093         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
16094         (gnus-summary-limit-map): Add it.
16095         (gnus-summary-make-menu-bar): do.
16096
16097 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
16098
16099         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
16100         Make attempt at some caching support (done for BBDB only now).
16101         (spam-find-spam): Set spam-cache-lookups if there are more than 2
16102         addresses to be checked.
16103         (spam-clear-cache-BBDB): Add function, to be invoked by
16104         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
16105         (spam-check-BBDB): Check and use the caches, if
16106         spam-cache-lookups is on, remove superfluous (provide).
16107
16108 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
16109
16110         * gnus-art.el (gnus-treat-ansi-sequences): Changed default.
16111
16112 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
16113
16114         * run-at-time.el (run-at-time-saved): Move to after the definition
16115         of `run-at-time'.
16116
16117         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
16118
16119 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16120
16121         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
16122         mm-w3m-local-map-property.
16123
16124         * mm-view.el (mm-w3m-mode-map): Remove.
16125         (mm-w3m-local-map-property): Remove.
16126         (mm-inline-text-html-render-with-w3m): Don't use
16127         mm-w3m-local-map-property.
16128
16129 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16130
16131         * run-at-time.el: New file.
16132
16133         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
16134         under Emacs.
16135
16136         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
16137         of gnus-set-text-properties.
16138
16139         * gnus-uu.el (gnus-uu-save-article): Ditto.
16140
16141         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
16142
16143         * gnus-cite.el (gnus-cite-parse): Ditto.
16144
16145         * gnus-art.el (gnus-button-push): Use set-text-properties instead
16146         of gnus-.
16147
16148         * gnus-xmas.el (run-at-time): Require run-at-time.
16149
16150         * gnus.el: Changed calls to nnheader-run-at-time and
16151         password-run-at-time throughout to use run-at-time directly.
16152
16153         * password.el: Removed definition of run-at-time.
16154
16155         * nnheaderxm.el: Remove definition of run-at-time.
16156
16157 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
16158
16159         * mml.el (mml-minibuffer-read-disposition): Show attachment type
16160         in prompt.
16161
16162 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16163
16164         * messagexmas.el (message-xmas-redefine): Alias
16165         `message-make-caesar-translation-table' to
16166         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
16167         version.
16168
16169         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
16170         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
16171         `gnus-xmas-set-text-properties'.
16172         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
16173         `gnus-xmas-completing-read'.
16174         (gnus-xmas-completing-read): Removed.
16175         (gnus-xmas-open-network-stream): Removed.
16176
16177         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
16178         XEmacs version.
16179
16180         * dns.el (dns-make-network-process): Use `open-network-stream'
16181         instead of `gnus-xmas-open-network-stream'.
16182
16183         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
16184
16185         * .cvsignore: Add auto-autoloads.el, custom-load.el.
16186
16187 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16188
16189         * gnus-art.el (gnus-mime-display-alternative)
16190         (gnus-insert-mime-button, gnus-insert-mime-security-button)
16191         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
16192         Don't use gnus-local-map-property.
16193
16194         * gnus-util.el (gnus-local-map-property): Remove.
16195
16196         * mm-view.el (mm-view-pkcs7-decrypt): Replace
16197         gnus-completing-read-maybe-default with completing-read.
16198
16199         * gnus-util.el (gnus-completing-read): do.
16200         (gnus-completing-read-maybe-default): Remove.
16201
16202 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16203
16204         * password.el: Only autoload `run-at-time' if not XEmacs.
16205         Only autoload the itimer functions if XEmacs.
16206
16207 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16208
16209         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
16210         XEmacsen.
16211
16212         * dgnushack.el: Autoload executable-find for XEmacs.
16213
16214 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16215
16216         * gnus-art.el (gnus-read-string): Remove.
16217         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
16218         read-string.
16219
16220 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
16221
16222         * netrc.el: Autoload password-read.
16223         (netrc): Add configuration group.
16224         (netrc-encoding-method, netrc-openssl-path): Add
16225         variables for encoding and decoding of files with symmetric
16226         ciphers.
16227         (netrc-encode): Add assistant function to encode a file with
16228         netrc-encoding-method.
16229         (netrc-parse): Add interactive parameter, added optional
16230         decoding if netrc-encoding-method is non-nil but otherwise
16231         behavior is standard.
16232         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
16233         Do s/encode/encrypt/ everywhere.
16234
16235         * spam.el: Remove executable-find autoload.
16236
16237 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16238
16239         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
16240
16241         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
16242
16243 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
16244
16245         * gnus-art.el (gnus-treat-ansi-sequences)
16246         (article-treat-ansi-sequences): New variable and function.
16247         Suggested by Dan Jacobson <jidanni@jidanni.org>.
16248
16249         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
16250         Use it.
16251
16252 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16253
16254         * mm-util.el (mm-quote-arg): Remove.
16255
16256         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
16257         shell-quote-argument.
16258
16259         * gnus-uu.el (gnus-uu-command): do.
16260
16261         * gnus-sum.el (gnus-summary-insert-pseudos): do.
16262
16263         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
16264         with make-char.
16265
16266         * mm-util.el (mm-make-char): Remove.
16267
16268         * mml.el (mml-mode): Replace gnus-add-minor-mode with
16269         add-minor-mode.
16270
16271         * gnus-undo.el (gnus-undo-mode): do.
16272
16273         * gnus-topic.el (gnus-topic-mode): do.
16274
16275         * gnus-sum.el (gnus-dead-summary-mode): do.
16276
16277         * gnus-start.el (gnus-slave-mode): do.
16278
16279         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
16280
16281         * gnus-ml.el (gnus-mailing-list-mode): do.
16282
16283         * gnus-gl.el (gnus-grouplens-mode): do.
16284
16285         * gnus-draft.el (gnus-draft-mode): do.
16286
16287         * gnus-dired.el (gnus-dired-mode): do.
16288
16289         * gnus-ems.el (gnus-add-minor-mode): Remove.
16290
16291         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16292         Replace gnus-char-width with char-width.
16293
16294         * gnus-ems.el (gnus-char-width): Remove.
16295
16296         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16297         Replace gnus-char-width with char-width.
16298
16299         * gnus-ems.el (gnus-char-width): Remove.
16300
16301         * spam-stat.el (with-syntax-table): Remove with-syntax-table
16302         definition.
16303         Remove Emacs 20 hash table compatibility code.
16304
16305         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
16306         20 compatibility code.
16307
16308         * spam.el (spam-point-at-eol): Replace with point-at-eol.
16309
16310         * smime.el (smime-point-at-eol): Replace with point-at-eol.
16311
16312         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol): Replace
16313         with point-at-{eol,bol}.
16314
16315         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
16316
16317         * imap.el (imap-point-at-eol): Replace with point-at-eol.
16318
16319         * flow-fill.el (fill-flowed-point-at-bol)
16320         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
16321
16322         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
16323         Replace with point-at-{eol,bol} throughout all files.
16324
16325 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16326
16327         * ntlm.el (ntlm-string-as-unibyte): New macro.
16328         (ntlm-build-auth-response): Use it.
16329
16330         Remove Emacs 20 stuff:
16331         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
16332         (butlast, mapc, remove): Remove the compiler macros.
16333         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
16334         of delq and copy-sequence.
16335         * gnus-art.el (popup-menu): Remove the compiler macro.
16336         * nnmail.el (nnmail-split-fancy): Don't support customizing with
16337         Emacs 20.
16338
16339 2004-01-05  Simon Josefsson  <jas@extundo.com>
16340
16341         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
16342         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
16343         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
16344         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
16345         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
16346         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
16347         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
16348         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
16349         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
16350         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
16351         ntlm-string-permute, string-lshift into ntlm-string-lshift,
16352         string-xor into ntlm-string-xor.  Suggested by
16353         Jesper Harder <harder@myrealbox.com>.
16354
16355         * ntlm.el: Don't include poem.
16356
16357         * md4.el (print-int32, print-string-hexa): Remove.  Suggested by
16358         Jesper Harder <harder@myrealbox.com>.
16359
16360         * sasl-ntlm.el, ntlm.el, md4.el: New files.
16361
16362         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
16363         probably breaks emacs with DL patch, but do we care? Is anyone
16364         still using the DL stuff?)
16365
16366         * sieve-manage.el: Use the password package.
16367         (sieve-manage-read-passwd): Remove.
16368         (sieve-manage-interactive-login): Use password.  Re-add
16369         condition-case around loop.
16370
16371         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
16372         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache): Use
16373         the password package.
16374
16375 2003-02-19  Simon Josefsson  <jas@extundo.com>
16376
16377         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
16378         token.
16379
16380 2002-08-07  Simon Josefsson  <jas@extundo.com>
16381
16382         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
16383         (sieve-manage-authenticators):
16384         (sieve-manage-authenticator-alist): Add some SASL mechs.
16385         (sieve-sasl-auth): New function.
16386         (sieve-manage-cram-md5-auth):
16387         (sieve-manage-plain-auth): Rewrite using SASL library.
16388         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
16389         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
16390         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
16391         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
16392
16393 2004-01-05  Simon Josefsson  <jas@extundo.com>
16394
16395         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
16396         New files.
16397
16398 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16399
16400         * gnus-group.el (gnus-no-groups-message): Update.
16401
16402         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
16403
16404 2003-11-09  Simon Josefsson  <jas@extundo.com>
16405
16406         * imap.el: Support for ID IMAP extension (RFC 2971).
16407         (imap-local-variables): Add imap-id.
16408         (imap-id): New variable.
16409         (imap-id): New function.
16410         (imap-parse-response): Parse untagged ID response.
16411         * nnimap.el (nnimap-id): New variable.
16412         (nnimap-open-connection): Use it.
16413
16414 2003-12-28  Simon Josefsson  <jas@extundo.com>
16415
16416         * gnus-score.el (gnus-score-edit-all-score): New.
16417         * gnus-group.el (gnus-group-score-map): Bind it to W e.
16418
16419 2004-01-04  Simon Josefsson  <jas@extundo.com>
16420
16421         * password.el: Add.
16422
16423 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
16424
16425         * dns.el (dns-query-types): Fix typo.
16426         (dns-query-types): New function.
16427         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
16428         PTR and SOA replies, see RFC 1035.
16429
16430 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16431
16432         * gnus.el (gnus-logo-color-style): Changed colors to `no'.
16433
16434         * Moved to Changelog.2.
16435
16436 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16437
16438         * gnus.el (gnus-version-number): Bump version.
16439
16440 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16441
16442         * gnus.el: No Gnus v0.1 is released.
16443
16444 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16445
16446         * gnus.el: No Gnus v0.0 is released.
16447
16448 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16449
16450         * gnus.el (gnus-version-number): Bump.
16451         (gnus-version): No.
16452
16453 See ChangeLog.2 for earlier changes.
16454
16455     Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
16456       Free Software Foundation, Inc.
16457
16458   This file is part of GNU Emacs.
16459
16460   GNU Emacs is free software: you can redistribute it and/or modify
16461   it under the terms of the GNU General Public License as published by
16462   the Free Software Foundation, either version 3 of the License, or
16463   (at your option) any later version.
16464
16465   GNU Emacs is distributed in the hope that it will be useful,
16466   but WITHOUT ANY WARRANTY; without even the implied warranty of
16467   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16468   GNU General Public License for more details.
16469
16470   You should have received a copy of the GNU General Public License
16471   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
16472
16473 ;; Local Variables:
16474 ;; coding: utf-8
16475 ;; fill-column: 79
16476 ;; add-log-time-zone-rule: t
16477 ;; End: