Fix the prefixed select method in the presence of many similar methods.
[gnus] / lisp / ChangeLog
1 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
4         method in the presence of many similar methods.
5
6         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
7
8         * nnimap.el (nnimap-find-expired-articles): Don't refer to
9         nnml-inhibit-expiry.
10
11         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
12         find out whether methods are equal.
13
14         * nnimap.el (nnimap-find-expired-articles): New function.
15         (nnimap-process-expiry-targets): New function.
16         (nnimap-request-move-article): Request the article before looking at
17         what the Message-ID is.  Fix found by Andrew Cohen.
18         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
19
20         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
21         for oldness in addition to being a predicate.
22
23         * nnimap.el (nnimap-request-group): When we have zero articles, return
24         the right data to Gnus.
25         (nnimap-request-expire-articles): Only delete articles immediately if
26         the target is 'delete.
27
28         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
29         method, this would bug out.
30
31         * gnus-group.el (gnus-group-expunge-group): Renamed from
32         gnus-group-nnimap-expunge, and implemented as a normal interface
33         function.
34
35         * gnus-int.el (gnus-request-expunge-group): New function.
36
37         * nnimap.el (nnimap-request-create-group): Implement.
38         (nnimap-request-expunge-group): New function.
39
40 2010-09-21  Julien Danjou  <julien@danjou.info>
41
42         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
43         (gnus-html-cache-expired): Add new function.
44         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
45         wethever we should display image for fetch it.
46         Compute alt-text earlier to pass it to the fetching function too.
47         (gnus-html-schedule-image-fetching): Change function argument to only
48         get one image at a time, not a list.
49         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
50         cache.
51         (gnus-html-get-image-data): New function to retrieve image data from
52         cache.
53         (gnus-html-put-image): Change buffer argument to use image data rather
54         than file, and place image above region rather than inserting a new
55         one. Do not take alt-text as argument, since it's useless now: we place
56         the image above alt-text.
57         (gnus-html-prune-cache): Remove.
58         (gnus-html-show-images): Start to fetch image when we find one, do not
59         push into a temporary list.
60         (gnus-html-prefetch-images): Only fetch image if they have expired.
61         (gnus-html-browse-image): Fix, use 'gnus-image-url.
62         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
63
64 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
65
66         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
67
68 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
69
70         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
71         spec inser "*" if the group isn't active instead of 0.
72
73         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
74         opening the server.
75         (nnimap-request-delete-group): Implement group deletion.
76         (nnimap-transform-headers): Return the size of the entire message in
77         the Bytes header, not just the size of the first part.
78         (nnimap-request-move-article): When moving an article from nnimap,
79         request the article first so the accepting form has an article to
80         accept.  Reported by Dan Christensen.
81         (nnimap-command): Make sure that the error message doesn't error out.
82
83 2010-09-20  David Edmondson  <dme@dme.org>  (tiny change)
84
85         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
86         we haven't requested anything.
87
88 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
89
90         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
91         "".  Fix found by Andrew Cohen.
92
93         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
94         instead of -encode-string.
95
96 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
97
98         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
99
100         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
101         by mm-subst-char-in-string.
102
103 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
104
105         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
106         waiting for the connection string.
107
108         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
109         arriving.
110
111         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
112         bogus characters.  This allows selecting certain Gmail groups.
113
114         * nnimap.el (nnimap-find-wanted-parts-1): New function.
115         (nnimap-fetch-partial-articles): New variable.
116         (nnimap-open-connection): When looking for credentials, also use the
117         nnimap-server-port.
118         (nnimap-request-article): Return the group/article number, so that Gnus
119         `^' works as expected.
120         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants
121         them.
122
123         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
124         comments.
125         (gnus-methods-sloppily-equal): New function.
126         (gnus): When using the development version of Gnus, load the gnus-load
127         file.
128
129         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
130         `gnus-open-server' on each method before trying to scan them etc.  This
131         ensures that all the backend parameters are set correctly.
132
133         * nnimap.el (nnimap-authenticator): New variable.
134         (nnimap-open-connection): Allow anonymous login.
135         (nnimap-transform-headers): The chars header is called Chars not
136         Bytes.
137         (nnimap-wait-for-response): Don't infloop if the IMAP connection
138         drops.
139
140         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
141         patch, found by Knut Anders Hatlen.
142
143 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
144
145         * gnus-agent.el (gnus-agent-batch-confirmation)
146         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
147         to gnus-message.
148         * gnus-art.el (gnus-article-describe-briefly): Likewise.
149         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
150         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
151         * gnus-int.el (gnus-open-server): Likewise.
152         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
153         (gnus-score-check-syntax): Likewise.
154         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
155         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
156         Likewise.
157         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
158
159 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
160
161         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
162         calling conventions so that prefetch doesn't bug out.
163
164 2010-09-19  Julien Danjou  <julien@danjou.info>
165
166         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
167         rather than `subst-char-in-region' in order to be able to replace ASCII
168         char by UTF-8 ones.
169
170         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
171         than curl.
172         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
173         the right URL and ALT text on images.
174         (gnus-html-wash-tags): Fix tag case.
175         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
176         (gnus-article-html): Add -o display_ins_del=2 option.
177         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
178
179 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
180
181         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
182         the extra mail headers, which sometimes seem to happen for unknown
183         reasons.
184
185         * mail-parse.el (mail-header-encode-parameter): Define as
186         rfc2045-encode-string instead of as rfc2231-encode-string, since some
187         (or most, perhaps?) mail readers don't understand the latter, but do
188         understand the former.
189
190         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
191         to nil, so that no methods are automatically agentized.  I think this
192         is probably what most users want.
193
194         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
195         from url-retrieve, for instance about invalid URLs.
196
197         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
198         groups that have no articles.
199         (nnimap-request-article): Check that we really got an article when we
200         requested one.
201
202         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
203         doesn't exist.
204
205         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
206         nntp buffer so the agent can save it.
207         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
208         that CRLF doesn't get translated to \n.
209         (nnimap-open-connection): Don't make 'shell commands only send \n.
210
211 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
212
213         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
214         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
215         Update var name.
216         (nnml-generate-nov-file): Use dolist.
217         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
218         Use with-current-buffer.
219
220 2010-09-18  Julien Danjou  <julien@danjou.info>
221
222         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
223         parallel.
224
225 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
226
227         * nnimap.el (nnimap-update-info): When doing partial marks update, get
228         the range update right.
229         (nnimap-request-group): Don't make `M-g' bug out on group with no
230         marks.
231         (nnoo): Required, so that other packages can require nnimap.
232         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
233         command we're looking for.  This helps when the server sends more
234         responses after we've gotten everything we expected.
235         (nnimap): Add a `newlinep' field to keep track of end-of-line
236         conventions.
237         Don't send CRLF to things that don't want it.
238         (nnimap-request-accept-article): Ditto.
239
240 2010-09-18  Julien Danjou  <julien@danjou.info>
241
242         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
243         than curl to retrieve images.
244
245 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
246
247         * nnimap.el (nnimap-update-info): Extend the info so that we can set
248         the marks.
249         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
250         (nnimap-wait-for-connection): New function.
251         (nnimap-open-connection): If we have PREAUTH, don't query for login
252         credentials.
253         (nnimap-update-info): Fix off-by-one error when concatenating ranges
254         when doing a partial update.
255
256 2010-09-18  Julien Danjou  <julien@danjou.info>
257
258         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
259         tags.
260
261 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
262
263         * nnimap.el (nnimap-credentials): New function.
264         (nnimap-open-connection): Use the new function to look for credentials
265         also on the numeric equivalents of "imap" and "imaps".
266
267         * gnus-start.el (gnus-activate-group): Send the info to
268         gnus-request-group.
269
270         * nnimap.el (nnimap-request-group): Have the "check" version of the
271         function parse flags and update the info, so that a `M-g' get a total
272         resync of all flags from the group.
273
274         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
275         to allow backends to alter the info on group selection.  Also alter all
276         the backend -request-group functions to take the parameter.
277
278         * nnimap.el (nnimap-store-info): New function.
279         (nnimap-update-info): Store the info for later usage.
280         (nnimap-request-group): Use the stored info for the dont-check case, so
281         that we don't retrieve all marks when we enter a group.
282
283         * nnimap.el: Use deffoo instead of defun for interface functions.
284
285         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
286         update the group info.  This makes the nndraft groups, for instance, go
287         back to their old behaviour.
288
289         * gnus-sum.el (gnus-select-newsgroup): Indent.
290
291         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
292         in.
293         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
294         nothing.
295
296         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
297         from methods that are denied.
298
299         * gnus-int.el (gnus-method-denied-p): New function.
300
301         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
302         store the password instead of netrc.
303         (nnimap-open-connection): Don't error out when we can't make a
304         connections.
305
306         * auth-source.el (auth-source-create): In the password prompt, say what
307         we're querying for.  Also prompt for user name if that hasn't been
308         given.
309
310         * nnimap.el (nnimap-with-process-buffer): Removed.
311
312 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
313
314         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
315         method when we're reading from the agent.
316
317         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
318
319         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
320         that's probably most useful for users.
321
322         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
323         "failed" all the time.
324
325         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
326         ...)) with (with-current-buffer ... ).
327
328         * nntp.el (nntp-open-server): Return whether the open was successful or
329         not.
330
331         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
332         select an unread unseen article first.
333
334         * nnimap.el (nnimap-open-connection): If the user doesn't have a
335         /etc/services, supply some sensible port defaults.
336
337         * dgnushack.el: Define netrc-credentials.
338
339 2010-09-17  Julien Danjou  <julien@danjou.info>
340
341         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
342
343 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
344
345         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
346         doesn't have any parameters.
347
348 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
349
350         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
351         only upcased checks.
352
353         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
354
355         * nnimap.el (nnimap-open-shell-stream): New function.
356         (nnimap-open-connection): Use it.
357         (nnimap-transform-headers): Get the number of lines in each message.
358         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
359         number of lines.
360         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
361         problem.
362
363         * utf7.el (utf7-encode): Autoload.
364
365         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
366         to allow the mail splitting to not return a default group.  This is
367         useful for nnimap, which will leave unmatched mail in the inbox.
368
369         * nnimap.el: Rewritten.
370
371         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
372         nnimap usage.
373
374         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
375         if the move is internal, so that nnimap can do fast internal moves.
376
377         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
378         data.
379         (gnus-read-active-for-groups): Support finishing the early retrieval of
380         data.
381
382         * gnus-range.el (gnus-range-nconcat): New function.
383
384         * gnus-int.el (gnus-finish-retrieve-group-infos)
385         (gnus-retrieve-group-data-early): New functions.
386
387 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
388
389         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
390         (nnrss-retrieve-groups):
391         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
392         (pop3-quit): Use with-current-buffer.
393
394 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
395
396         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
397         instead of nnheader-accept-process-output.
398
399         * dgnushack.el (dgnushack-compile): Add comment.
400
401         * lpath.el: No need to fbind propertize for XEmacs 21.4.
402
403         * gnus-html.el (gnus-html-schedule-image-fetching)
404         (gnus-html-prefetch-images): Replace process-kill-without-query by
405         gnus-set-process-query-on-exit-flag.
406
407 2010-09-16  Romain Francoise  <romain@orebokech.com>
408
409         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
410
411 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
412
413         * gnus-registry.el (gnus-registry-install-shortcuts): The second
414         parameter to unintern is mandatory-ish in Emacs 24.
415
416         * gnus-html.el (gnus-html-schedule-image-fetching)
417         (gnus-html-prefetch-images): Check for curl before using it.
418
419         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
420         depend on curl, which isn't essential.
421
422         * imap.el: Revert back to version
423         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
424         seem problematic.
425
426 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
427
428         * gnus-registry.el (gnus-registry-install-shortcuts):
429         Explicitly pass `obarray' to `unintern' to avoid a warning.
430
431 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
432
433         * gnus-start.el (gnus-read-active-for-groups): Reverted the previous
434         change.
435
436         * nnrss.el (nnrss-request-list): Removed this function and related
437         functions, including the moreover stuff.
438
439 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
440
441         * nnrss.el (nnrss-retrieve-groups): New function.
442
443 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
444
445         * .dir-locals.el: Add no-byte-compile cookie.
446
447 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
448
449         * time-date.el (format-seconds): Comment fix.
450
451         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
452         for back end that doesn't support request-scan.
453
454 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
455
456         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
457         then do request scans from the backends.
458
459         * netrc.el (netrc-credentials): New conveniency function.
460
461         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
462         avoid running a hook per line, since this takes a lot of time,
463         profiling shows.
464         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
465         directly if gnus-visual-p is true.
466
467 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
468
469         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
470         groups; replace mapcar with dolist which is a bit faster; pass groups
471         info to gnus-read-active-file-1.
472         (gnus-read-active-file-1): Scan only specified groups if the new
473         optional arg `infos' is given.
474
475 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
476
477         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
478
479         * pop3.el (pop3-movemail): Removed.
480         (pop3-streaming-movemail): Renamed to pop3-movemail.
481
482         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
483         don't restrict end-tag searches to the end of the line.
484
485 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
486
487         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
488         articles of every unchecked group to t, which means unknown since the
489         server has never been opened.
490
491 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
492
493         * gnus-html.el (gnus-html-show-alt-text): New command.
494         (gnus-html-browse-image): Ditto.
495         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
496         to browse the image directly.
497         (gnus-html-wash-tags): Search for images first, so that <a><img> works
498         better.
499
500         * gnus-async.el (gnus-async-article-callback): Call
501         `gnus-html-prefetch-images' unconditionally.
502
503         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
504         before feeding URLs to curl.
505
506 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
507
508         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
509         internal images as deletable by `W D D'.
510
511         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
512         (gnus-async-article-callback): Fix typo.
513
514 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
515
516         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
517         current line to work around bugs in the output from w3m.
518
519         * gnus-async.el (gnus-async-article-callback): Always prefetch images
520         for groups that want that.
521
522         * nntp.el (nntp-wait-for-string): Supply a timeout for
523         accept-process-output to ensure progress.
524
525         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
526         level to get unread articles from, then use that for foreign groups,
527         too.
528
529         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
530         confuses the rest of the function.
531
532         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
533         for the methods that support -retrieve-groups, too.
534
535         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
536
537 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
538
539         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
540         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
541
542         * pop3.el: Require cl when compiling.
543         (pop3-number-of-responses): Search for "+OK", not "+OK ".
544
545 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
546
547         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
548         that aren't going to be activated.
549         (gnus-get-unread-articles): Fix up the last commit.
550
551         * gnus-html.el (gnus-article-html): Allow calling without specifying
552         the handle.  In that case, dissect the buffer first.
553
554         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
555
556         * nnimap.el (nnimap-open-connection): Revert the change that would look
557         into authinfo for imaps instead of imap.
558
559         * gnus-start.el (gnus-activate-group): Take an optional parameter to
560         say that you don't want to call gnus-request-group with don-check, but
561         do check the reponse.  This is for virtual groups only.
562         (gnus-get-unread-articles): Count the archive groups as secondary, so
563         that they're activated the same way as before.
564
565         * imap.el (imap-message-map): Removed optional buffer parameter, since
566         no callers use it.
567         (imap-message-get): Ditto.
568         (imap-message-put): Ditto.
569         (imap-mailbox-map): Ditto.
570         (imap-mailbox-put): Ditto.
571         (imap-mailbox-get): Ditto.
572         (imap-mailbox-get): Revert last change for this function.
573
574         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
575         case-insensitively.
576         (nnimap-debug): Removed.
577
578         * imap.el (imap-fetch-safe): Removed function, and altered all callers
579         to use `imap-fetch' instead.  According to the comments, this should be
580         safe, since all other IMAP clients use the 1:* syntax.
581         (imap-enable-exchange-bug-workaround): Removed.
582         (imap-debug): Removed -- doesn't seem very useful.
583
584         * mail-source.el (mail-source-fetch): Don't message if we're fetching
585         mail from a file, and the file doesn't exist.
586
587         * imap.el (imap-log): New convenience function used throughout instead
588         of repeating the same code all over the place.
589
590         * pop3.el (pop3-streaming-movemail): Return t for success.
591
592         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
593         .authinfo if we're using ssl connection.
594
595         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
596         already have if we're in a main Gnus `g' run.
597
598         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
599
600 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
601
602         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
603
604         * nnmh.el (nnmh-request-list-1): Bind `file'.
605
606         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
607         alias to set-process-query-on-exit-flag or process-kill-without-query.
608         (pop3-open-server): Use it.
609
610 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
611
612         * mail-source.el (mail-source-delete-crash-box): Always move the crash
613         box to the Incoming file.  Fixes mistake in previous checkin.
614
615         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
616         request loop (for debugging purposes) removed.
617
618         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
619         culprit is more visible.
620         (nnml-save-incremental-nov, nnml-open-incremental-nov)
621         (nnml-add-incremental-nov): New functions to do "incremental" nov
622         updates, where we just append to the end of the existing nov files
623         without reading/writing them in full.
624
625         * mail-source.el (mail-source-delete-crash-box): Really only check the
626         incoming files once in a while.
627
628         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
629
630         * mail-source.el (mail-source-delete-crash-box): Only check the
631         incoming files for deletion once per day to save a lot of file
632         accesses.
633
634         * pop3.el (pop3-logon): Fix up unbound variable typo.
635
636         * mail-source.el (pop3-streaming-movemail): Autoload.
637
638         * pop3.el (pop3-streaming-movemail): Respect
639         pop3-leave-mail-on-server.
640
641         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
642         retrieval.
643
644         * pop3.el (pop3-process-filter): Removed unused function.
645         (pop3-streaming-movemail, pop3-send-streaming-command)
646         (pop3-wait-for-messages, pop3-write-to-file)
647         (pop3-number-of-responses): New functions for streaming pop3
648         retrieval.
649
650         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
651         come from no known methods.
652         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
653         list.
654
655         * pop3.el (pop3-display-message-size-flag): Removed -- everybody wants
656         message sizes.
657         (pop3-movemail): Use erase-buffer instead of looping and deleting
658         regions, which seems rather odd.
659
660         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
661         file once per `g' run.
662
663         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
664         directories.  This makes the draft queue directory work.
665
666         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
667         data from the backends, so that we only request the list of groups from
668         each method once.  This should speed things up considerably.
669
670         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
671         detect that it's not implemented.
672
673         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
674         we actually do recurse down into the tree, but don't stat all leaf
675         nodes.
676
677         * gnus-html.el (gnus-html-show-images): If there are no images to show,
678         then say so instead of bugging out.
679
680         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
681         files exist before trying to read them.
682
683         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
684         around <pre_int>.
685
686         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
687
688         * nnmh.el (nnmh-request-list-1): Optimize for speed.
689
690 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
691
692         * mm-util.el (mm-image-load-path): Just return the image directories,
693         not all directories in the path in addition to the image directories.
694         (mm-image-load-path): Maintain a cache of the image directories so that
695         the `g' command in Gnus doesn't have to stat dozens of directories each
696         time.
697
698         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
699         (gnus-html-wash-tags): Add a new `i' command to insert images.
700         (gnus-html-insert-image): New command and keystroke.
701         (gnus-html-redisplay-with-images): New command and keystroke.
702         (gnus-html-show-images): Renamed command.
703         (gnus-html-wash-tags): Remove more white space before <pre_int> image
704         spacers.
705         (gnus-html-wash-tags): Decode entities at the end, so that entities
706         inside the tags don't mess up the rest of the "parsing".
707
708         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
709         so that nnimap methods aren't agentized by default.  There's apparently
710         many problems related to agent/imap behaviour.
711
712         * gnus-art.el (gnus-article-copy-string): New command and key binding.
713
714         * gnus-html.el: Doc fix.
715
716 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
717
718         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
719         specifier-spec-list for Emacs 21.
720
721         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
722         glyph-width and glyph-height instead of display-graphic-p and
723         image-size; make avoidance of displaying small images work for XEmacs.
724
725         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
726         for XEmacs.
727
728         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
729         of symbol that holds plist data.
730         (gnus-process-plist): Remove plist of process after getting it.
731
732 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
733
734         * message.el (message-generate-hashcash): Change default to
735         'opportunistic if hashcash is installed.
736
737         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
738         (gnus-html-put-image): Only call image-size once, since it's somewhat
739         time-consuming on remote X servers.
740
741 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
742
743         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
744         type on data, not a file name.
745
746         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
747         window-pixel-edges for Emacs 21.
748
749         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
750         decoded contents.
751         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
752
753 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
754
755         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
756         group line format, since it isn't very interesting.
757
758         * gnus-agent.el (gnus-agent-short-article),
759         (gnus-agent-long-article): Increase values for these two variables,
760         since most people are likely to have more network connection and
761         storage than before.
762
763         * gnus.el (gnus-refer-article-method): Change default to 'current.
764         When referring an article, the common behaviour is to refer it from the
765         current select method, not the native select method.  The chances of
766         the native select method having the message in question is rather slim
767         these days.
768
769         * gnus-sum.el (gnus-auto-select-subject): Change default to
770         `unseen-or-unread'.  I think it's likely that most people want to
771         select an unseen article over a previously seen, but unread one.
772
773         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
774         means that in the article buffer none of the minor mode elements will
775         be shown, usually, and this is not desirable in most cases.
776
777         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
778         that commands like `d' (and the like) go to the next line in the
779         buffer, instead of the next unread article.  I think this is the
780         behaviour that is most natural for most users.
781         (gnus-single-article-buffer): Change default to nil, so that people can
782         have as many article buffers open as they have summary buffer.  I think
783         this is the most natural way for the groups to behave.
784
785         * message.el (message-generate-new-buffers): Change default to
786         `unsent', so that all new message buffers start their names with the
787         string "*unsent", and it's easier to find the buffers if you move from
788         them.
789
790 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
791
792         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
793         small.  They're probably tracking images.
794         (gnus-html-wash-tags): Remove all <pre_int> place holders.
795         (gnus-html-rescale-image): Yet another try at getting the image sizing
796         right.
797
798         * nntp.el (nntp-request-set-mark): Refuse to do marks if
799         nntp-marks-file-name is nil.
800
801 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
802
803         * gnus-html.el (gnus-html-wash-tags)
804         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
805         Better logging.
806
807 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
808
809         * nndoc.el (nndoc-type-alist): Added a new type for Google digests.
810
811         * gnus-html.el (gnus-html-wash-tags): Check the value of
812         gnus-blocked-images in the summary buffer.
813
814 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
815
816         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
817
818 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
819
820         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
821         like "a", it seems like.
822         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
823         since it needs to be picked from the correct buffer.
824
825         * nnwfm.el: Removed.
826
827         * nnlistserv.el: Removed.
828
829 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
830
831         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
832         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
833
834 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
835
836         * nnkiboze.el: Removed.
837
838         * nndb.el: Removed.
839
840         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
841         alt text.
842         (gnus-html-rescale-image): Try to get the rescaling logic right for
843         images that are just wide and not tall.
844
845         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
846         overshadow variable bindings.
847
848 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
849
850         * gnus-html.el (gnus-html-wash-tags)
851         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images): Add
852         extra logging.
853
854 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
855
856         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
857         (gnus-max-image-proportion): New variable.
858         (gnus-html-rescale-image): New function.
859         (gnus-html-put-image): Rescale images.
860
861 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
862
863         Fix up some byte-compiler warnings.
864         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
865         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
866         (gnus-article-fill-cited-article, gnus-article-hide-citation)
867         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
868         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
869         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
870         (gnus-group-update-group): Use save-excursion and with-current-buffer.
871
872 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
873
874         * gnus-html.el (gnus-article-html): Decode contents by charset.
875
876 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
877
878         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
879         (gnus-html-frame-width, gnus-blocked-images)
880         * message.el (message-prune-recipient-rules): Add custom version.
881         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
882
883         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
884         functions.
885
886         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
887         gnus-process-get.
888
889 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
890
891         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
892         instead of lsub directly.
893
894 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
895
896         * nnwarchive.el: Removed.
897
898         * gnus-soup.el: Removed.
899
900         * nnsoup.el: Removed.
901
902         * nnultimate.el: Removed.
903
904         * gnus-html.el (gnus-blocked-images): New variable.
905
906         * message.el (message-prune-recipients): New function.
907         (message-prune-recipient-rules): New variable.
908
909         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
910         guess whether a long line is natural text or not.
911
912         * gnus-html.el (gnus-html-schedule-image-fetching): Use
913         gnus-process-plist and friends for compatibility.
914
915 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
916
917         * gnus-html.el: Require packages that define macros used in this file.
918         (gnus-article-mouse-face): Declare to silence byte-compiler.
919         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
920         process-get.
921         (gnus-html-put-image): Use plist-get to avoid getf.
922         (gnus-html-prefetch-images): Use with-current-buffer.
923
924 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
925
926         * gnus-ems.el: Provide compatibility functions for
927         gnus-set-process-plist.
928
929         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
930         header-line-format for XEmacs 21.4.
931
932         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
933         * gnus.el (gnus-valid-select-methods)
934         * message.el (message-send-mail-partially-limit)
935         * mm-decode.el (mm-text-html-renderer)
936         * mml.el (mml-insert-mime-headers-always)
937         * smiley.el (smiley-regexp-alist): Bump custom version.
938
939 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
940
941         * gnus-html.el: require mm-url.
942         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
943         with the url to `url'.
944         (gnus-html-wash-tags): Support cid: URLs/images.
945
946 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
947
948         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
949         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
950         bindings, as they aren't useful at all.  `w' is moved to `W w'.
951
952         * gnus-move.el: Removed file, since it doesn't really work.
953
954         * gnus-html.el (gnus-article-html): Tell w3m that the input is
955         UTF-8.  This seems to fix problems with some German web feeds.
956
957         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
958         at the top so that the proper colours are applied.
959
960         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
961         don't have dots in their names.
962
963         * gnus-art.el (gnus-article-view-part): Doc fix.
964
965         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
966         XEmacs-compatible.
967         (gnus-html-put-image): Don't do images on non-graphic displays.
968
969         * nnslashdot.el: Removed this unused backend.
970
971         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
972         actions.
973         (gnus-undo-register-1): Revert last change.
974
975         * gnus-group.el (gnus-group-completing-read): Protect against not
976         having completion-styles bound.
977
978         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
979         make broken recipients happier.
980
981         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
982
983         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
984         point parameter.
985
986         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
987
988         * gnus-group.el (gnus-group-completing-read): Add 'substring to
989         completion-styles for group selection.
990
991 2009-02-04  Andreas Schwab  <schwab@suse.de>
992
993         * gnus-score.el (gnus-score-string): Fix regex for matching extra
994         headers and regexp-quote the match if necessary.
995
996 2009-03-24  Miles Bader  <miles@gnu.org>
997
998         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
999         the blinking smiley.
1000
1001 2009-03-24  Simon Josefsson  <simon@josefsson.org>
1002
1003         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
1004         blink smiley.
1005
1006 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1007
1008         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
1009         where the dribbel file lives exists.
1010
1011         * message.el (message-send-mail-partially-limit): Change the default to
1012         nil, since most people don't want this.
1013
1014         * mm-url.el (mm-url-decode-entities): Also decode entities like
1015         &#x3212.
1016
1017 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
1018
1019         * gnus-sum.el (gnus-summary-idna-message):
1020         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
1021         Hyperlink urls in docstrings with URL `...'.
1022
1023 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
1024
1025         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
1026         functions.
1027
1028 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1029
1030         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
1031         say what the mouseover text should be.
1032
1033         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
1034         version of the mm-w3m-safe-url-regexp variable to only download images
1035         in the groups where we want that to happen.
1036
1037         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
1038
1039         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
1040         easier debugging.
1041         (gnus-article-beginning-of-window): Add kludge to allow spacing past
1042         big pictures in the article buffer.
1043
1044         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
1045         gnus-article-html.
1046         (mm-text-html-renderer): gnus-article-html needs curl in addition to
1047         w3m.
1048
1049         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
1050
1051 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1052
1053         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
1054         which doesn't exist.
1055
1056         * message.el (message-inhibit-ecomplete): New variable to allow some
1057         function to inhibit ecomplete address storage.
1058         (message-resend): Disable ecomplete message storage when resending
1059         messages.
1060
1061         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
1062
1063 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1064
1065         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
1066         Save excursion while copying, moving, and deleting articles in order to
1067         prevent the cursor from jumping to unforeseen place.
1068
1069 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1070
1071         * lpath.el: No need to bind bookmark-current-buffer,
1072         bookmark-yank-point and bookmark-make-record-function.
1073
1074 2010-08-17  Glenn Morris  <rgm@gnu.org>
1075
1076         * gnus-sync.el: Require gnus components whose functions are used.
1077
1078         * gnus-art.el (bookmark-make-record-function):
1079         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
1080         Declare for compiler.
1081
1082         * mm-url.el (mml-compute-boundary): Autoload.
1083
1084 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1085
1086         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
1087
1088 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
1089
1090         Typo fix "hoo4a" -> "hook".
1091
1092         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
1093
1094 2010-08-14  Glenn Morris  <rgm@gnu.org>
1095
1096         * gnus-sync.el (gnus-sync): Fix defgroup version.
1097
1098 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
1099
1100         Doc fixes and keep unknown groups (ammended for nunion bug fix).
1101
1102         * gnus-sync.el: Fix docs.
1103         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
1104         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
1105
1106 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1107
1108         Optimizations for gnus-sync.el.
1109
1110         * gnus-sync.el: Add docs about gnus-sync-backend
1111         possibilities.
1112         (gnus-sync-save): Remove unnecessary message.
1113         (gnus-sync-read): Optimize and show what groups were skipped.
1114
1115 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1116
1117         Minor bug fixes for gnus-sync.el.
1118
1119         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks): Don't
1120         read the sync on get-new-news.
1121
1122         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
1123         quiet.
1124
1125         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets' (fix typo).
1126
1127 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
1128
1129         Make saving and restoring of hidden threads work with overlays.
1130         Patch applied by Ted Zlatanov.
1131
1132         * gnus-sum.el (gnus-hidden-threads-configuration)
1133         (gnus-restore-hidden-threads-configuration): Update to deal with text
1134         properties, rather than searching for a magic character.
1135
1136 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1137
1138         New gnus-sync.el library for synchronization of marks.
1139
1140         * gnus-sync.el: New library for synchronization of marks.
1141
1142         * gnus-util.el (gnus-grep-in-list): Moved from gnus-registry.el and
1143         renamed from `gnus-registry-grep-in-list'.
1144
1145         * gnus-registry.el (gnus-registry-follow-group-p): Use `gnus-grep-in-list'.
1146
1147         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
1148
1149 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1150
1151         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
1152         determining charset of text fails.
1153
1154 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1155
1156         * nnmail.el (nnmail-get-new-mail-1): Revert.
1157
1158         * nnml.el (nnml-active-number): Make sure names of newly created groups
1159         in nnml-group-alist are encoded.
1160
1161 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1162
1163         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
1164         containing non-ASCII characters in active file for nnml back end.
1165
1166 2010-07-24  David Engster  <dengste@eml.cc>
1167
1168         * mml-smime.el (mml-smime-epg-verify): Also accept the older
1169         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
1170
1171 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
1172
1173         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
1174         tag (Bug#6654).
1175
1176 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1177
1178         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
1179         the article buffer, not the summary buffer.
1180
1181 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1182
1183         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
1184         Emacs 23 as well.
1185
1186 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1187
1188         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
1189         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
1190
1191 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1192
1193         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
1194         Patch applied by Karl Fogel.
1195
1196         * gnus-sum.el (gnus-summary-bookmark-make-record): Set
1197         `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
1198
1199 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1200
1201         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
1202         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
1203         C-w still not working correctly from Article buffers; Thierry's
1204         patch to fix that will be applied after this.
1205
1206         * gnus-art.el (bookmark-make-record-function): New local variable.
1207
1208         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
1209         article buffer.
1210         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
1211
1212 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
1213
1214         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
1215         on changes in bookmark.el.
1216
1217 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1218
1219         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
1220         `no-log' instead of message not to log prompt string.
1221
1222 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
1223
1224         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
1225         the *other* type of HTML form submission.
1226
1227 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
1228
1229         * auth-source.el (auth-source-pick): If choice does not contain a
1230         questioned keyword, set the check to t.
1231
1232 2010-06-12  Romain Francoise  <romain@orebokech.com>
1233
1234         * gnus-util.el (gnus-date-get-time): Move up before first use.
1235
1236 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1237
1238         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
1239         (gnus-article-edit-part): Bind it to make last part that is substituted
1240         or deleted visible.
1241         (gnus-mime-display-single): Buttonize part of which id equals to
1242         gnus-mime-buttonized-part-id.
1243
1244 2010-06-10  Dan Christensen  <jdc@uwo.ca>
1245
1246         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
1247         (gnus-dd-mmm): Use gnus-date-get-time.
1248         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
1249         simplify logic.
1250         (gnus-summary-limit-to-age): Use gnus-date-get-time.
1251         (gnus-sort-threads): emit message if gnus-sort-threads-loop used.
1252
1253 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
1254
1255         * auth-source.el (top): Autoload `secrets-list-collections',
1256         `secrets-create-item', `secrets-delete-item'.
1257         (auth-sources): Fix tag string.
1258         (auth-get-source, auth-source-retrieve, auth-source-create)
1259         (auth-source-delete): New defuns.
1260         (auth-source-pick): Rewrite in order to avoid 2 passes.
1261         (auth-source-forget-user-or-password): New parameter USERNAME.
1262         (auth-source-user-or-password): New parameters CREATE-MISSING and
1263         DELETE-EXISTING.  Retrieve password interactively, if needed.
1264
1265 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
1266
1267         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
1268         deleting unused directories when gnus-expert-user is t.
1269
1270 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1271
1272         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
1273         for each temp file when gnus-article-browse-delete-temp is ask.
1274
1275 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1276
1277         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
1278         Lisp calls to delete-backward-char by calls to delete-char.
1279
1280 2010-05-20  Kevin Ryde  <user42@zip.com.au>
1281
1282         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
1283
1284 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
1285
1286         * password-cache.el (password-cache-remove): Fix docstring.
1287
1288 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1289
1290         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
1291         article unless decoding article to be saved.
1292
1293 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1294
1295         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
1296         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
1297         generated within the mm-with-unibyte-current-buffer macro.
1298
1299 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1300
1301         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
1302         to nil when we're in a mml-preview buffer and no group is selected.
1303
1304 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
1305
1306         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
1307         when catching the `C-g'.  Reported by "Leo".
1308
1309 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1310
1311         * message.el (message-forward-make-body-plain)
1312         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
1313         multibyte-string-p.
1314
1315         * lpath.el: Revert.
1316
1317 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1318
1319         * message.el (message-forward-make-body-mml): Assume original message
1320         is multibyte string; error on unibyte.
1321         (message-forward-make-body-plain): Ditto; don't add excessive newline
1322         in body end.
1323
1324         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
1325
1326 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
1327
1328         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
1329         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
1330
1331 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1332
1333         * mm-extern.el (mm-extern-url): Don't use
1334         mm-with-unibyte-current-buffer.
1335         (mm-extern-cache-contents): Use with-current-buffer instead of
1336         save-excursion + set-buffer.
1337
1338 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1339
1340         * mm-util.el (mm-emacs-mule): Remove.
1341
1342 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
1343
1344         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
1345         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
1346         change.
1347
1348 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1349
1350         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
1351         bind the default value of enable-multibyte-characters to nil.
1352
1353 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1354
1355         * message.el (message-forward-make-body-plain)
1356         (message-forward-make-body-mml):
1357         Don't use mm-with-unibyte-current-buffer.
1358
1359 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1360
1361         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
1362
1363 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
1364
1365         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
1366         (Bug#5592).
1367
1368 2010-05-07  Julien Danjou  <julien@danjou.info>
1369
1370         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
1371         it to mm-pipe-part.
1372
1373         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
1374         it is given.
1375
1376 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1377
1378         * binhex.el (binhex-decode-region-internal)
1379         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
1380         (dns-query)
1381         * nnweb.el (nnweb-gmane-search)
1382         * pgg-parse.el (pgg-parse-armor)
1383         * pgg.el (pgg-verify-region)
1384         * sha1.el (sha1-string-external)
1385         * uudecode.el (uudecode-decode-region-internal)
1386         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
1387         XEmacs.
1388
1389         * gnus-art.el (gnus-article-browse-html-parts)
1390         * gnus-group.el (gnus-read-ephemeral-gmane-group)
1391         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
1392         make-temp-file.
1393
1394         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
1395         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
1396         compiling.
1397
1398         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
1399         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
1400         XEmacs when compiling.
1401
1402         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
1403         gnus-pick-mode-off-hook for XEmacs when compiling.
1404         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
1405         gnus-binary-mode-off-hook for XEmacs when compiling.
1406
1407         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate): Return
1408         nil if char-charset is not available.
1409
1410         * imap.el (imap-disable-multibyte)
1411         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
1412         macros.
1413
1414         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
1415         instead of encode-coding-string.
1416
1417         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
1418         'xemacs) instead of mm-emacs-mule to switch function definitions.
1419         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
1420
1421         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
1422         bind temporary-file-directory for XEmacs;
1423         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
1424         timer-set-function for XEmacs 21.4 and SXEmacs;
1425         bind timer-list for XEmacs 21.4 and SXEmacs;
1426         fbind char-charset and find-charset-region for non-Mule XEmacs;
1427         fbind decode-coding-region, decode-coding-string, detect-coding-region,
1428         encode-coding-region and encode-coding-string for XEmacs having no
1429         file-coding feature.
1430
1431 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
1432
1433         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
1434
1435 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1436
1437         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
1438         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
1439
1440 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
1441
1442         * mm-util.el (mm-decompress-buffer): Use `delete-file';
1443         alias `jka-compr-delete-temp-file' no longer exists.
1444
1445 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1446
1447         Use define-minor-mode in Gnus where applicable.
1448         * mml.el (mml-mode): Use define-minor-mode.
1449         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
1450         (gnus-undo-mode): Use define-minor-mode.
1451         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
1452         (gnus-dead-summary-mode): Use define-minor-mode.
1453         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
1454         Initialize in declaration.
1455         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
1456         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
1457         (gnus-mailing-list-mode): Use define-minor-mode.
1458         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
1459         (gnus-draft-mode): Use define-minor-mode.
1460         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
1461         (gnus-dired-mode): Use define-minor-mode.
1462
1463 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
1464
1465         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
1466         handles on recursive mml-to-mime translation and check them for
1467         boundary delimiter collisions.  Reported by Greg Troxel.
1468
1469 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1470
1471         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
1472
1473 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1474
1475         * mm-util.el (mm-find-buffer-file-coding-system):
1476         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
1477
1478 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
1479
1480         * message.el (message-generate-headers): Record insertion of optional
1481         headers as well.  Otherwise the check to prevent repeated insertion of
1482         optional headers is a no-op.
1483
1484 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
1485
1486         * smime.el: Don't mention CVS.
1487
1488         * nnrss.el (nnrss-fetch): Don't mention CVS.
1489
1490         * nnir.el: Don't mention CVS.
1491
1492 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1493
1494         * gnus-sum.el (gnus-summary-bookmark-make-record): Add `location' field.
1495
1496 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1497
1498         * lpath.el: Fbind bookmark-default-handler,
1499         bookmark-get-bookmark-record, bookmark-make-record-default,
1500         bookmark-prop-get for Emacs <23 and XEmacs.
1501
1502 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1503
1504         * gnus-sum.el: Add bookmark declarations to silence the compiler.
1505         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
1506         Use with-current-buffer to silence the byte-compiler.
1507         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
1508         bother to require `gnus'.
1509         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
1510
1511 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1512
1513         * gnus-sum.el (gnus-summary-bookmark-make-record)
1514         (gnus-summary-bookmark-jump): New functions.
1515         (gnus-summary-mode): Setup bookmark support.
1516
1517 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
1518
1519         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
1520         if set.
1521
1522 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1523
1524         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
1525         gnus-article-browse-html-save-cid-image; make it work recursively for
1526         forwarded messages as well.
1527         (gnus-article-browse-html-parts): Work when prefix arg is given.
1528         (gnus-article-browse-html-article): Doc fix.
1529
1530 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
1531
1532         * message.el (message-default-mail-headers):
1533         (message-default-headers): Carry the value mail-default-headers over
1534         into message-default-mail-headers, rather than message-default-headers.
1535
1536 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
1537
1538         * mm-decode.el (mm-add-meta-html-tag): Added option to override the
1539         charset.
1540
1541         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
1542         charset into the <meta> tag when the article is encoded to utf-8.
1543
1544 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1545
1546         * gnus-art.el (gnus-article-browse-delete-temp-files): Delete
1547         directories as well.
1548         (gnus-article-browse-html-parts): Work for images that do not specify
1549         file names; delete temp directory when quitting; insert header at the
1550         right place; use file: scheme for image files.
1551
1552 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
1553
1554         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
1555         (gnus-article-browse-html-parts): Use it to make temporary cid image
1556         files in addition to html file so that browser may display them.
1557
1558 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
1559
1560         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
1561
1562 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
1563
1564         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
1565
1566 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
1567
1568         * auth-source.el (auth-sources): Change default to be simpler.  Explain
1569         about Secret Service API sources.  Improve Customize options.
1570         (auth-source-pick): Change to accept any number of search parameters.
1571         Implement fallbacks iteratively, not recursively.  Add scoring on the
1572         second pass and sort by score.  Call Secret Service API when needed.
1573         (auth-source-user-or-password): Use it.  Call Secret Service API
1574         directly when needed to get the user name and the password.
1575
1576 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
1577
1578         * message.el (message-interactive): Doc fix.
1579         (message-qmail-inject-args): Reflow.
1580         (message-kill-to-signature): Fix typo in docstring.
1581
1582         * smiley.el (smiley-buffer): Fix typo in docstring.
1583
1584 2010-03-24  Glenn Morris  <rgm@gnu.org>
1585
1586         * mail-source.el (gnus-message): Declare.
1587         (mail-source-delete-old-incoming): Require gnus-util.
1588
1589 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1590
1591         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
1592
1593         * message.el (ecomplete-setup): Autoload it for Emacs <23.
1594
1595         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
1596         password-cache's default if it is not bound.
1597         (mml-secure-passphrase-cache-expiry): Default to 16 that is
1598         password-cache-expiry's default if it is not bound.
1599
1600         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
1601         available in Emacs 21.
1602
1603         * lpath.el: Suppress compiler warnings for:
1604         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
1605         XEmacs;
1606         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
1607         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
1608         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
1609
1610 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
1611
1612         * auth-source.el (auth-sources): Fix up definition so extra parameters
1613         are always inline.
1614
1615 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
1616
1617         * nnimap.el (nnimap-verify-uidvalidity): Fixed bug where uidvalidity
1618         wasn't updated after mismatch.  Clear cached mailbox info correctly
1619         when uidvalidity changes.
1620         (nnimap-group-prefixed-name): New function to avoid some code
1621         duplication.
1622         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
1623         (nnimap-request-group): Use it.
1624         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
1625         (nnimap-update-unseen): Significantly improved speed of Gnus startup
1626         with many imap folders.  This is done by caching the group status from
1627         the imap server persistently in a group parameter `imap-status'.  (This
1628         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
1629         but not persistently, so every Gnus startup was still very slow.)
1630
1631 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
1632
1633         * assistant.el (assistant-render-text): Run `widget-setup' and don't
1634         delete the extra newline.  Otherwise editing of :string and :number
1635         types don't work.
1636
1637 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1638
1639         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
1640         secrets.el dependency.
1641         (auth-sources): Add optional user name.  Add secrets.el configuration
1642         choice (unused right now).
1643
1644 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1645
1646         * gnus-sum.el (gnus-summary-make-menu-bar): Let
1647         `gnus-registry-install-shortcuts' fill in the functions.
1648
1649         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
1650         warnings.
1651         (gnus-registry-misc-menus): Variable to hold registry mark menus.
1652         (gnus-registry-install-shortcuts): Populate and use it in a
1653         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
1654
1655 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
1656
1657         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
1658         In-place substitutions for the group name encoding/decoding.
1659         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
1660         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
1661         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
1662         (nnimap-update-unseen, nnimap-request-list)
1663         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
1664         (nnimap-request-set-mark, nnimap-split-to-groups)
1665         (nnimap-split-articles, nnimap-request-newgroups)
1666         (nnimap-request-create-group, nnimap-request-accept-article)
1667         (nnimap-request-delete-group, nnimap-request-rename-group)
1668         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
1669         `encoded-mbx' for consistency.
1670         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
1671         variable `imap-current-mailbox'.
1672
1673         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
1674         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
1675
1676 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
1677
1678         * pop3.el (pop3-display-message-size-flag): Display message size byte
1679         counts during POP3 download.
1680         (pop3-movemail): Use it.
1681         (pop3-list): Implement listing of available messages.
1682
1683 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
1684
1685         * nnir.el (nnir-get-article-nov-override-function): New function to
1686         override the normal NOV retrieval.
1687         (nnir-retrieve-headers): Use it.
1688
1689 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
1690
1691         * auth-source.el (netrc-machine-user-or-password): Autoload.
1692
1693 2010-03-19  Glenn Morris  <rgm@gnu.org>
1694
1695         Stop message.el from loading about 40 libraries it doesn't always need.
1696         The general approach is to autoload rather than require, and to
1697         require in the specific functions rather than the file.  (Bug#5642)
1698
1699         * gmm-utils.el: Don't require wid-edit.
1700         (widget-create-child-value, widget-convert, widget-default-get):
1701         Autoload.
1702
1703         * gnus-util.el: Don't require time-date, netrc.
1704         (message-fetch-field, gnus-group-name-decode): Declare rather than
1705         autoloading.
1706         (gnus-fetch-field): Require message.
1707         (gnus-decode-newsgroups): Require gnus-group.
1708
1709         * ietf-drums.el: Don't require time-date.
1710
1711         * message.el: Don't require hashcash, canlock, ecomplete.
1712         Do require mail-utils.  Require nnheader only when compiling.
1713         (smtpmail-default-smtp-server): Remove declaration.
1714         (message-send-mail-function): Check smtpmail-default-smtp-server
1715         is bound rather than requiring smtpmail.
1716         (message-auto-save-directory, message-insert-signature): Use
1717         expand-file-name rather than nnheader-concat.
1718         (nnheader-insert-file-contents): Autoload.
1719         (hashcash-wait-async): Declare.
1720         (message-send-mail): Only call gnus-setup-posting-charset if
1721         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
1722         (message-send-mail-with-sendmail): Require sendmail.
1723         (canlock-password, canlock-password-for-verify): Declare.
1724         (message-canlock-password): Require canlock.
1725         (nnheader-get-report): Autoload.
1726         (gnus-setup-posting-charset): Declare.
1727         (message-send-news): Require gnus-msg.
1728         (message-make-references, message-make-in-reply-to): Use mail-header-id
1729         rather than the alias mail-header-message-id.
1730         (ecomplete-add-item, ecomplete-save): Declare.
1731         (message-put-addresses-in-ecomplete): Require ecomplete.
1732         (ecomplete-display-matches): Autoload.
1733
1734         * mm-decode.el: Don't require mailcap, gnus-util.
1735         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
1736         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
1737         Autoload.
1738         (mailcap-mime-extensions): Declare.
1739
1740         * mm-encode.el: Don't require mailcap.
1741         (mailcap-extension-to-mime): Autoload.
1742
1743         * mml-sec.el: Don't require password-cache.
1744
1745         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
1746         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
1747         (mml-minibuffer-read-type): Require mailcap.
1748         (mml-preview): Require gnus-msg.
1749
1750         * mml1991.el: Require password-cache.
1751         (password-cache-expiry): Remove declaration.
1752
1753         * mml2015.el: Require password-cache.
1754         (password-cache-expiry): Remove declaration.
1755
1756         * nneething.el (mailcap): Require mailcap.
1757
1758         * nnheader.el (declare-function): Add compatibility stub.
1759         (message-remove-header): Declare rather than autoload.
1760         (nnheader-replace-header): Require message.
1761
1762         * nnimap.el (declare-function): Add compatibility stub.
1763         (netrc-parse, netrc-machine-user-or-password): Declare.
1764         (nnimap-open-connection): Require netrc.
1765
1766         * nntp.el (declare-function): Add compatibility stub.
1767         (netrc-parse, netrc-machine, netrc-get): Declare.
1768         (nntp-send-authinfo): Require netrc.
1769
1770         * rfc2047.el: Don't require qp.
1771         (quoted-printable-encode-region, quoted-printable-decode-string):
1772         Autoload.
1773
1774         * sieve-mode.el: Don't require easymenu.
1775         (easy-menu-add-item): Autoload it.
1776
1777         * spam-stat.el (time-to-number-of-days): Autoload it.
1778
1779 2010-03-19  Glenn Morris  <rgm@gnu.org>
1780
1781         * password-cache.el (password-cache, password-cache-expiry): Autoload.
1782
1783 2010-03-18  Glenn Morris  <rgm@gnu.org>
1784
1785         * hashcash.el (declare-function): Remove duplicate definition.
1786
1787 2010-03-17  Kevin Ryde  <user42@zip.com.au>
1788
1789         * mml.el (mml-read-tag): Unquote values with `read' to reverse
1790         prin1 in mml-insert-tag (just stripping the quotes gave wrong
1791         value if any backslash escapes).
1792
1793 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1794
1795         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
1796         if it is available.  (bug#5647)
1797
1798         * lpath.el: Suppress compiler warning for coding-system-from-name for
1799         Emacs 21 and XEmacs.
1800
1801 2010-03-14  Juri Linkov  <juri@jurta.org>
1802
1803         * hmac-def.el:
1804         * hmac-md5.el:
1805         * netrc.el: Fix keywords.
1806
1807 2010-02-26  Glenn Morris  <rgm@gnu.org>
1808
1809         * message.el (message-send-mail-function): Change the default, so that
1810         it inherits from a customized send-mail-function.  (Bug#5643)
1811
1812 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1813
1814         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
1815         shell-command-to-string signals an error (bug#5299).
1816
1817 2010-02-24  Glenn Morris  <rgm@gnu.org>
1818
1819         * message.el (message-smtpmail-send-it)
1820         (message-send-mail-with-mailclient): Doc fixes.
1821
1822 2010-02-16  Glenn Morris  <rgm@gnu.org>
1823
1824         * message.el (message-default-mail-headers): Change the default value
1825         to ease the transition from mail-mode to message-mode.  (Bug#5555)
1826
1827 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1828
1829         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
1830         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
1831
1832 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
1833
1834         * time-date.el (date-to-time): Doc fix (Bug#5408).
1835
1836 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
1837
1838         * message.el (message-mail): Just pass yank-action on to message-setup.
1839         (message-setup): Handle (FUN . ARGS) form of yank-action.
1840         (message-with-reply-buffer, message-widen-reply)
1841         (message-yank-original): Handle non-buffer values of
1842         message-reply-buffer (Bug#4080).
1843         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
1844
1845 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
1846
1847         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
1848         Fix typo in docstring.
1849
1850 2010-01-08  Jason Rumney  <jasonr@gnu.org>
1851
1852         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
1853         response.
1854
1855 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1856
1857         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
1858
1859         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
1860
1861         * message.el (message-check-news-header-syntax): Protect against a
1862         string that `rfc822-addresses' returns when parsing fails.
1863
1864 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1865
1866         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
1867         (gnus-previous-char-property-change): New functions.
1868
1869         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
1870
1871 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
1872
1873         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
1874         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
1875
1876 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
1877
1878         * message.el (message-exchange-point-and-mark): Rework last change to
1879         avoid using optional arg of exchange-point-and-mark, for backward
1880         compatibility.
1881
1882 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
1883
1884         * message.el (message-exchange-point-and-mark): Call
1885         exchange-point-and-mark with an argument rather than setting
1886         mark-active by hand (Bug#5175).
1887
1888 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1889
1890         * nntp.el (nntp-service-to-port): Work for service expressed with
1891         numeric string; replace [:digit:] with [0-9] for XEmacs.
1892
1893 2009-12-17  Glenn Morris  <rgm@gnu.org>
1894
1895         * gnus-group.el (gnus-bug-group-download-format-alist):
1896         Change emacs entry to debbugs.gnu.org.  Bump :version.
1897
1898 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
1899
1900         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
1901
1902 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
1903
1904         * message.el (message-info): Explain why we use `Info-goto-node'.
1905
1906 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1907
1908         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
1909
1910 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1911
1912         * message.el (message-completion-in-region): New compatibility function.
1913         (message-expand-group): Use it.
1914
1915 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1916
1917         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
1918         with no unread article should be listed if the 2nd arg `predicate' is
1919         given.
1920
1921 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1922
1923         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
1924
1925 2009-11-29  Juri Linkov  <juri@jurta.org>
1926
1927         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
1928         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
1929         on `gnus-recenter'. (Bug#4698, Bug#4981)
1930
1931 2009-11-26  Kevin Ryde  <user42@zip.com.au>
1932
1933         * sha1.el (sha1-string-external): default-directory "/" in case
1934         otherwise non-existent.  process-connection-type pipe for touch of
1935         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
1936
1937 2009-11-25  Kevin Ryde  <user42@zip.com.au>
1938
1939         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
1940         it's comms related and sgml-mode.el has "comm" on that basis too.
1941
1942 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1943
1944         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
1945         containing tspecial characters if they have been already quoted.
1946
1947 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
1948
1949         * dns-mode.el (auto-mode-alist): Purecopy string.
1950
1951 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1952
1953         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
1954
1955 2009-10-24  Glenn Morris  <rgm@gnu.org>
1956
1957         * gnus-art.el (help-xref-stack-item): Define for compiler.
1958
1959 2009-10-21  Kevin Ryde  <user42@zip.com.au>
1960
1961         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
1962
1963 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1964
1965         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
1966
1967 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1968
1969         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
1970         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
1971
1972 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1973
1974         * gnus.el (gnus-overlay-get): New alias to overlay-get.
1975         (gnus-overlays-in): New alias to overlays-in.
1976
1977         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
1978         gnus-overlay-get, and gnus-delete-overlay.
1979         (gnus-summary-show-thread): Make it work as well for systems in which
1980         next-single-char-property-change is not available.
1981         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
1982
1983         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
1984         (gnus-overlay-get): New alias to extent-property.
1985         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
1986
1987         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
1988         SXEmacs.
1989
1990         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
1991         SXEmacs.
1992
1993 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
1994
1995         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
1996
1997 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
1998
1999         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
2000         and XEmacs that don't have `remove-overlays'.
2001
2002 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2003
2004         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
2005         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
2006         selective display.  Use overlays instead.
2007
2008 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
2009
2010         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
2011
2012 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
2013
2014         * spam-stat.el (spam-stat-load): Fix typo in message.
2015
2016 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
2017
2018         * dig.el (dig-invoke): Fix typo in docstring.
2019         (query-dig): Reflow docstring.
2020
2021 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
2022
2023         * gnus-art.el (gnus-article-encrypt-body):
2024         * message.el (message-check-recipients):
2025         * mm-util.el (mm-codepage-setup):
2026         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
2027         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
2028
2029 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
2030
2031         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
2032         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
2033         keys from the menu if mm-{sign,encrypt}-option is 'guided.
2034         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
2035         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
2036
2037 2009-09-21  Kevin Ryde  <user42@zip.com.au>
2038
2039         * dig.el: Add "Keywords: comm", as per net-utils.el.
2040
2041 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2042
2043         * dig.el (dig-mode): Use define-derived-mode.
2044
2045 2009-09-19  Glenn Morris  <rgm@gnu.org>
2046
2047         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
2048
2049 2009-09-18  Glenn Morris  <rgm@gnu.org>
2050
2051         * gnus-diary.el (gnus-diary-check-message):
2052         * message.el (message-insert-formatted-citation-line):
2053         * nnbabyl.el (top-level):
2054         * nndiary.el (nndiary-schedule):
2055         Fix typos in condition-case handlers.
2056
2057 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2058
2059         * gnus-art.el (gnus-article-edit-part): Work for the buffer
2060         configuration that provides the sole article window in a frame;
2061         position point correctly after deleting a part.
2062
2063 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
2064
2065         * spam.el (spam-unregister-on-reregister): Add boolean variable.
2066         (spam-resolve-registrations-routine): Use it to unregister articles
2067         that change status.
2068
2069 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2070
2071         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
2072         with XEmacs.
2073         (parse-time-string-chars): Use it.
2074
2075 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
2076
2077         * imap.el (imap-interactive-login): Better messages.
2078         (imap-open): Fix bug with renamed buffer on reconnect.
2079         (imap-authenticate): Add buffer-local imap-last-authenticator variable
2080         for easier debugging and cleaner code.  On successful (guessed based on
2081         server capabilities) secondary authentication, set imap-state
2082         correctly.
2083         (imap-last-authenticator): Define imap-last-authenticator as a variable
2084         to avoid warnings.
2085
2086 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2087
2088         * nnrss.el (nnrss-request-article): Remove binding of
2089         default-enable-multibyte-characters that has gotten needless by
2090         the 2007-07-13 change in rfc2047-encode-message-header.
2091
2092         * mml.el (mml-insert-multipart): Error on the message header.
2093         (mml-insert-part): Error on the message header; position point at
2094         the end of a MIME tag.
2095
2096 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2097
2098         * time-date.el (autoload): Expand define-obsolete-function-alias into
2099         defalias and make-obsolete for old Emacsen that Gnus supports.
2100         (with-no-warnings): Define it for old Emacsen.
2101         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
2102         is available.
2103         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
2104         float-time is available; suppress compile warning for time-to-seconds.
2105
2106         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
2107         (gnus-float-time): Alias to float-time if it exists.
2108
2109         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
2110         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
2111         float-time is available; suppress compile warning for time-to-seconds.
2112
2113         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
2114         XEmacs.
2115
2116 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
2117
2118         * imap.el (imap-message-map): Docstring fix.
2119
2120 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2121
2122         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
2123         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
2124         Add the optional argument `encoding' that overrides the default.
2125
2126         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
2127         mm-encode-buffer.
2128
2129 2009-09-04  Glenn Morris  <rgm@gnu.org>
2130
2131         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
2132         mm-disable-multibyte, rather than default-enable-multibyte-characters.
2133         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
2134         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
2135         * mm-util.el (mm-with-unibyte-current-buffer)
2136         (mm-find-buffer-file-coding-system):
2137         * yenc.el (yenc-decode-region): Use default-value rather than
2138         default-enable-multibyte-characters.
2139
2140 2009-09-03  Glenn Morris  <rgm@gnu.org>
2141
2142         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
2143         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
2144         than default-enable-multibyte-characters.
2145
2146 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
2147
2148         * gnus-art.el (gnus-article-read-summary-keys):
2149         Fix gnus-buffer-configuration's value temporarily used.
2150
2151 2009-09-02  Glenn Morris  <rgm@gnu.org>
2152
2153         * gnus-util.el (gnus-float-time): New function.
2154         * gnus-delay.el (gnus-delay-article):
2155         * gnus-sum.el (gnus-thread-latest-date):
2156         * gnus-util.el (gnus-user-date): Use gnus-float-time.
2157         * nnspool.el (nnspool-request-newgroups):
2158         Use gnus-float-time rather than time-to-seconds.
2159         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
2160
2161         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
2162         (gnus-header-subject-face, gnus-header-newsgroups-face)
2163         (gnus-header-name-face, gnus-header-content-face):
2164         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
2165         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
2166         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
2167         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
2168         (gnus-cite-face-11):
2169         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
2170         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
2171         (gnus-server-closed-face, gnus-server-denied-face)
2172         (gnus-server-offline-face):
2173         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
2174         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
2175         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
2176         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
2177         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
2178         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
2179         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
2180         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
2181         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
2182         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
2183         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
2184         (gnus-summary-selected-face, gnus-summary-cancelled-face)
2185         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
2186         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
2187         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
2188         (gnus-summary-high-undownloaded-face)
2189         (gnus-summary-low-undownloaded-face)
2190         (gnus-summary-normal-undownloaded-face)
2191         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
2192         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
2193         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
2194         (gnus-splash-face):
2195         * message.el (message-header-to-face, message-header-cc-face)
2196         (message-header-subject-face, message-header-newsgroups-face)
2197         (message-header-other-face, message-header-name-face)
2198         (message-header-xheader-face, message-separator-face)
2199         (message-cited-text-face, message-mml-face):
2200         * sieve-mode.el (sieve-control-commands-face)
2201         (sieve-action-commands-face, sieve-test-commands-face)
2202         (sieve-tagged-arguments-face):
2203         * spam.el (spam-face):
2204         Mark face aliases with "-face" in the name as obsolete.
2205
2206 2009-09-01  Glenn Morris  <rgm@gnu.org>
2207
2208         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
2209         than goto-line.
2210
2211 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
2212
2213         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2214         Don't move point if the command is invoked inside the message header.
2215
2216 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2217
2218         * imap.el (imap-send-command): Simplify.
2219         (imap-wait-for-tag): point-max -> buffer-size.
2220
2221 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2222
2223         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
2224         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
2225         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
2226         * nnir.el (nnir-swish-e-index-file):
2227         * gnus-sum.el (gnus-summary-delete-marked-as-read)
2228         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
2229         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
2230         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
2231         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
2232         (gnus-treat-display-xface): Add Emacs version of obsolescence.
2233
2234 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2235
2236         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2237         Don't save excursion.
2238
2239 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2240
2241         * nnheader.el (nnheader-find-file-noselect):
2242         * mm-util.el (mm-insert-file-contents):
2243         Use (default-value 'major-mode) instead of default-major-mode.
2244
2245 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2246
2247         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
2248
2249 2009-08-26  Glenn Morris  <rgm@gnu.org>
2250
2251         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
2252         than placing in files.el.
2253
2254 2009-08-25  Glenn Morris  <rgm@gnu.org>
2255
2256         * nnir.el (top-level): Don't require cl at run-time.
2257         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
2258         Replace cl-function substitute with gnus-replace-in-string.
2259         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
2260         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
2261         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
2262         simplified expansions.
2263
2264 2009-08-25  Kevin Ryde  <user42@zip.com.au>
2265
2266         * dig.el (dig): Add autoload cookie.
2267
2268 2009-08-22  Glenn Morris  <rgm@gnu.org>
2269
2270         * gnus-art.el (gnus-button-patch): Use forward-line rather than
2271         goto-line.
2272
2273 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
2274
2275         * parse-time.el (parse-time-string-chars): Save match data.
2276
2277 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
2278
2279         * parse-time.el (parse-time-string-chars): Compute using character
2280         classes, to handle non-ascii characters (Bug#3190).
2281
2282 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2283
2284         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
2285
2286         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
2287         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
2288         (gnus-mm-display-part, gnus-mime-display-single)
2289         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
2290         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
2291
2292         * gnus-sum.el
2293         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
2294         (gnus-summary-move-article): Add expirable mark to articles copied or
2295         moved to group that has auto-expire turned on if the option is non-nil.
2296
2297 2009-07-24  Glenn Morris  <rgm@gnu.org>
2298
2299         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
2300         Fix typo.  (Bug#3903)
2301
2302 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2303
2304         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
2305         gnus-article-read-summary-keys rather than gnus-summary-edit-article
2306         that should not be used for draft articles.
2307         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
2308         that has no concern in minor mode keys.
2309         (gnus-article-summary-command, gnus-article-summary-command-nosave):
2310         Abolish.
2311
2312 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2313
2314         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
2315         article without making inquiry to a user for unknown encoding.
2316
2317         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
2318         (nnmaildir--scan): Assume i-node and device number that file-attributes
2319         returns might be cons-cell.
2320
2321         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
2322
2323         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
2324
2325 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
2326
2327         * auth-source.el: Remove docs now in auth.texi.  Don't use
2328         `gnus-message' for logging.  Add new variables `auth-source-debug' and
2329         `auth-source-hide-passwords' and use them.
2330
2331 2009-07-15  Glenn Morris  <rgm@gnu.org>
2332
2333         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
2334
2335 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2336
2337         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
2338         excessive whitespace from the default values of title and description.
2339
2340 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2341
2342         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
2343         mail-fetch-field to fetch Content-Description header in order to
2344         exclude newlines.
2345
2346 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
2347
2348         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
2349         format used by GnuPG 2.0.11.
2350
2351 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2352
2353         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
2354         to deleted part.
2355
2356 2009-05-30  David Engster  <dengste@eml.cc>
2357
2358         * nnmairix.el: Remove old documentation in the commentary block.
2359         (nnmairix-request-group): Do not update active file for nnml back ends.
2360         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
2361         end so that overview files are ignored.
2362         (nnmairix-update-groups): Make updating the groups more robust by using
2363         marks.
2364         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
2365         with dollar characters in message-id.
2366
2367 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
2368
2369         * spam.el: Use dns-query instead of query-dns.  Was renamed on
2370         2008-12-25 in dns.el.
2371
2372 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2373
2374         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
2375         could happen if the text is only composed of spaces and/or tabs.
2376
2377 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
2378
2379         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
2380         when sending a queued message to avoid extra mml tags.
2381
2382 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2383
2384         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
2385
2386 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2387
2388         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
2389         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
2390         rmail-toggle-header for XEmacs;
2391         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
2392
2393 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2394
2395         * gnus-dired.el: Remove autoload for gnus-setup-message.
2396         (gnus-dired-attach): Fake this-command value to prevent Gnus from
2397         displaying Gnus logo; always use compose-mail.
2398
2399 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2400
2401         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
2402
2403 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2404
2405         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
2406         (gnus-nocem-issuers): List currently active issuers; fix custom type.
2407         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
2408         available.
2409         (gnus-nocem-epg-verify): New function.
2410
2411 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
2412
2413         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
2414
2415 2009-02-15  Glenn Morris  <rgm@gnu.org>
2416
2417         * gnus-util.el (rmail-insert-rmail-file-header)
2418         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
2419         autoloads.
2420         (rmail-default-rmail-file): Remove unnecessary declaration.
2421         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
2422
2423 2009-02-14  Glenn Morris  <rgm@gnu.org>
2424
2425         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
2426         variable (only used in gnus-util, which declares it anyway).
2427         (rmail-output-to-rmail-file): Remove autoload of deleted function,
2428         which was only needed by gnus-art (changed to not use it any more).
2429         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
2430         only used in gnus-util, which autoloads it itself.
2431         (rmail-update-summary): Fix autoload.
2432
2433         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
2434         rather than rmail-output-to-rmail-file.
2435
2436 2009-02-07  Glenn Morris  <rgm@gnu.org>
2437
2438         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
2439         autoload of function that no longer exists.
2440         (rmail-toggle-header): Declare.
2441         (message-forward-rmail-make-body): Handle mbox Rmail.
2442
2443 2009-01-31  Glenn Morris  <rgm@gnu.org>
2444
2445         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
2446         2009-01-09 change.
2447
2448 2009-01-31  Dave Love  <fx@gnu.org>
2449
2450         * imap.el (imap-fetch-safe): Bind debug-on-error.
2451         (imap-debug): Add imap-fetch-safe.
2452
2453 2009-01-26  Teodor Zlatanov  <tzz@lifelogs.com>
2454
2455         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
2456         (auth-source-forget-all-cached): New convenience function.
2457         (auth-source-user-or-password): Accept list of modes or a single mode.
2458
2459         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
2460         auth-source modes.
2461
2462         * netrc.el (netrc-machine-user-or-password): Use list of
2463         auth-source modes.
2464
2465         * nnimap.el (nnimap-open-connection): Use list of
2466         auth-source modes.
2467
2468         * nntp.el (nntp-send-authinfo): Use list of
2469         auth-source modes.
2470
2471 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
2472
2473         * auth-source.el: Update docs to reflect epa-file-enable is to be used
2474         now.
2475
2476 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2477
2478         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
2479         coding system in XEmacs; add a workaround for XEmacs.
2480
2481         * lpath.el: Fbind coding-system-aliasee.
2482
2483 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2484
2485         * mm-util.el (mm-coding-system-priorities): Protect against nil value
2486         of current-language-environment.
2487
2488 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
2489
2490         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
2491         available at runtime.
2492
2493 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2494
2495         * gnus-art.el (article-date-ut): Fix end point of narrowing.
2496
2497 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
2498
2499         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
2500         the greatest positive fixnum value doesn't work under an XEmacs with
2501         bignum support; use the most-positive-fixnum constant instead,
2502         available since Emacs 21.1 with cl and XEmacs 21.1.
2503
2504 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2505
2506         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
2507         XEmacs gets not to work.
2508
2509 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2510
2511         * mm-util.el (mm-coding-system-priorities): Allow the value like
2512         "Japanese (UTF-8)" of current-language-environment.
2513
2514 2009-01-09  Glenn Morris  <rgm@gnu.org>
2515
2516         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
2517         with last-command-event.
2518
2519 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
2520
2521         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
2522         in the doc string.
2523
2524         * message.el (message-fix-before-sending): Amend comment.
2525
2526 2009-01-08  Dave Love  <fx@gnu.org>
2527
2528         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
2529
2530 2009-01-07  David Engster  <dengste@eml.cc>
2531
2532         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
2533         simplified server definitions by converting it via
2534         gnus-server-to-method.
2535
2536 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2537
2538         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
2539         parameter's operands.
2540
2541 2009-01-06  David Engster  <dengste@eml.cc>
2542
2543         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
2544         primary select method (for gnus-group-mark-article-as-read).
2545
2546 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
2547
2548         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
2549         `(gnus)Face', not `(gnus)X-Face'.
2550
2551 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2552
2553         * mm-util.el (mm-ucs-to-char): New function.
2554
2555         * mm-url.el (mm-url-decode-entities): Use it.
2556
2557         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
2558         unicode-to-char.
2559
2560 2009-01-05  Dave Love  <fx@gnu.org>
2561
2562         * time-date.el: Require cl for `declare'.
2563
2564 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
2565
2566         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
2567         Dave Love.
2568
2569 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
2570
2571         * message.el (message-fix-before-sending): Add `eight-bit' to
2572         illegible-text check.
2573
2574 2009-01-03  Michael Olson  <mwolson@gnu.org>
2575
2576         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
2577         `headers' is nil.  This can occur if the IMAP server does not have
2578         permissions to read messages from a folder, but can write new messages
2579         to the folder.
2580         (nnimap-request-article-part): Do not insert `data' if it is nil.
2581
2582         * imap.el (imap-parse-fetch): Courier can insert spurious blank
2583         characters which will confuse `read', so skip past them.
2584
2585 2009-01-01  Dave Love  <fx@gnu.org>
2586
2587         * imap.el (imap-string-to-integer): Fix typo.
2588         (imap-fetch-safe): New function.
2589         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
2590
2591         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
2592
2593         * imap.el (imap-process-connection-type, imap-debug, imap-open):
2594         (imap-parse-greeting): Fix doc strings.
2595         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
2596         (imap-parse-flag-list): Make messages unique.
2597         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
2598
2599         * nnimap.el: Fix author email.
2600         (nnimap-split-rule): Add FIXME comment.
2601         (nnimap-debug): Fix doc string.
2602
2603 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
2604
2605         * dns.el (dns-set-servers): Check "Address".  Fix typo.
2606
2607 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
2608
2609         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
2610         nslookup if resolv.conf isn't available.
2611         (dns-query): Rename from query-dns.
2612         (dns-query-cached): Rename from query-dns-cached.
2613
2614 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2615
2616         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
2617         overlay-arrow-position and overlay-arrow-string buffer-local; no need
2618         to check if those variables exist (first appeared in Emacs 18.50).
2619
2620 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2621
2622         * mm-util.el (mm-line-number-at-pos): New function.
2623
2624         * spam-report.el (spam-report-process-queue): Use it.
2625
2626 2008-12-24  David Engster  <dengste@eml.cc>
2627
2628         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
2629         parameters that haven't existed as variables as buffer-local variables.
2630
2631 2008-12-23  Dave Love  <fx@gnu.org>
2632
2633         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
2634         cadar.
2635
2636         * sieve-manage.el (sieve-manage-starttls-p): Renamed from
2637         imap-starttls-p.
2638         (sieve-manage-starttls-open): Renamed from imap-starttls-open.
2639
2640 2008-12-22  Dave Love  <fx@gnu.org>
2641
2642         * imap.el: Fix author email.  Doc fixes.
2643         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
2644         reply.
2645
2646 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
2647
2648         * spam-report.el (spam-report-gmane-max-requests): New constant.
2649         (spam-report-gmane-wait): New variable.
2650         (spam-report-gmane-ham, spam-report-gmane-spam)
2651         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
2652         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
2653         the server.
2654
2655         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
2656         Add explanations.
2657
2658         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
2659         nnheader-accept-process-output and nnheader-read-timeout if available.
2660         (pop3-movemail): Use it.
2661
2662         * message.el (message-check-news-body-syntax): Fix signature check if
2663         there's an attachment.
2664
2665 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2666
2667         * mm-util.el: Add comments to the mm- emulating functions.
2668
2669 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
2670
2671         * gnus-start.el (gnus-before-startup-hook): Fix doc string.  Reported
2672         by Stephen Berman <stephen.berman@gmx.net>.
2673
2674 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2675
2676         * mm-util.el (mm-substring-no-properties): New function.
2677         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
2678         (mm-special-display-p): Enable those lambda forms to be byte compiled.
2679         (mm-string-to-multibyte): Doc fix.
2680
2681         * mml.el (mml-attach-file): Use mm-substring-no-properties.
2682
2683 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
2684
2685         * mml.el (mml-attach-file): Strip text properties from file name.
2686         (Bug#1574)
2687
2688 2008-12-16  Glenn Morris  <rgm@gnu.org>
2689
2690         * mm-util.el (mm-charset-override-alist): Declare for compiler.
2691
2692 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2693
2694         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
2695         knows since the charset specified might be a bogus alias that
2696         mm-charset-synonym-alist provides.
2697
2698 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
2699
2700         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
2701         "ISO_8859-1".
2702
2703         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
2704
2705 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2706
2707         * mm-util.el (mm-charset-eval-alist):
2708         Define it before mm-charset-to-coding-system.
2709         (mm-charset-to-coding-system): Add optional argument `silent';
2710         define it before mm-charset-override-alist.
2711         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
2712         default value if it can be used in Emacs currently running;
2713         silence mm-charset-to-coding-system.
2714
2715 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2716
2717         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
2718         `allow-override' which says whether to use `mm-charset-override-alist'.
2719         (rfc2047-decode-encoded-words): Use it.
2720
2721         * mm-util.el (mm-charset-override-alist): Fix custom type;
2722         add `(gb2312 . gbk)' to choices.
2723
2724 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2725
2726         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
2727         fast.
2728
2729         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2730
2731         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
2732
2733 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
2734
2735         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
2736         on links.
2737
2738         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2739
2740 2008-12-03  Lute Kamstra  <lute@gnu.org>
2741
2742         * sha1.el: Remove leading * from docstrings of defcustoms,
2743         deffaces, defconsts and defuns.
2744
2745 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2746
2747         * message.el (message-idna-to-ascii-rhs-1): Protect against local
2748         users' addresses that don't have domain parts.
2749         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
2750         rather than message-narrow-to-head since there will be the message
2751         header separator.
2752
2753 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2754
2755         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
2756         since the result is inserted in a unibyte buffer anyway.
2757         (nnimap-demule-use-string-to-multibyte): Remove.
2758         (nnimap-demule): Alias it to mm-string-to-multibyte.
2759
2760 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
2761
2762         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
2763         variable for debugging bug#464 and bug#1174.
2764         (nnimap-demule): Use it.
2765
2766 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
2767
2768         * gnus-score.el (gnus-score-find-trace): Handle default score in total
2769         score calculation correctly.
2770
2771 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2772
2773         * message.el (message-send-mail): Just set the buffer to unibyte
2774         rather than use mm-with-unibyte-current-buffer which does a lot more.
2775         (message-send-mail-partially): Don't bother with
2776         mm-with-unibyte-current-buffer since it's already been made unibyte by
2777         message-send-mail.
2778
2779 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
2780
2781         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
2782
2783 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
2784
2785         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
2786
2787 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2788
2789         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
2790         require itself and to remove `with-no-warnings'.
2791
2792 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
2793
2794         * starttls.el (starttls-any-program-available): Get the name of the
2795         available TLS layer program.
2796         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
2797         well as the host name in the "opening" message.
2798
2799         * auth-source.el (auth-source-cache, auth-source-do-cache)
2800         (auth-source-user-or-password): Cache passwords and logins by default,
2801         allow override with `auth-source-do-cache'.
2802         (auth-source-forget-user-or-password): Allow users to remove cache
2803         entries if needed.
2804
2805 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
2806
2807         * md4.el (md4-buffer): Fix typo in docstring.
2808         (md4, md4-64): Doc fixes.
2809         (md4-pack-int32): Reflow docstring.
2810
2811 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2812
2813         * ietf-drums.el (ietf-drums-remove-comments): Localize second
2814         condition-case to only the forward-sexp call.
2815
2816 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2817
2818         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
2819         quotes contained.  Make it more robust regardless by an extra
2820         condition-case wrapper.
2821
2822 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2823
2824         * lpath.el: No need to fbind codepage-setup for Emacs 23.
2825
2826 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2827
2828         * nnml.el (nnml-request-expire-articles): Check if the function set to
2829         `nnmail-expiry-target' returns the symbol `delete'.
2830
2831         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
2832
2833         * nnmail.el (nnmail-expiry-target): Fix custom type.
2834
2835 2008-10-02  Glenn Morris  <rgm@gnu.org>
2836
2837         * mm-util.el (mm-codepage-setup): Tweak codepage error.
2838         Silence compiler warning.
2839
2840 2008-10-01  Magnus Henoch  <mange@freemail.hu>
2841
2842         * tls.el (open-tls-stream): Show the actual command being
2843         executed, instead of the format string.
2844
2845 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2846
2847         * lpath.el: Fbind codepage-setup for Emacs 23.
2848
2849 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
2850
2851         * mml.el (mml-menu): Don't assume mml2015 is bound.
2852
2853 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2854
2855         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
2856         exists.
2857
2858 2008-09-27  Glenn Morris  <rgm@gnu.org>
2859
2860         * gnus-util.el (mail-header-remove-comments): Autoload it.
2861
2862 2008-09-27  Andreas Schwab  <schwab@suse.de>
2863
2864         * gnus-util.el (gnus-split-references): Strip comments.
2865         (gnus-parent-id): Likewise.
2866
2867 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
2868
2869         * message.el (message-confirm-send): Fix version.
2870
2871 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2872
2873         * message.el (message-idna-to-ascii-rhs-1): Use
2874         mail-extract-address-components rather than mail-header-parse-addresses
2875         that is an alias by default to ietf-drums-parse-addresses that does not
2876         support non-ASCII names in headers' contents.
2877
2878 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
2879
2880         * message.el (message-confirm-send): Fixed variable documentation to
2881         avoid the "y/n" wording.
2882
2883 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
2884
2885         * message.el (message-set-auto-save-file-name): Save to a different
2886         filename so multiple messages (especially drafts) can be recovered.
2887
2888 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
2889
2890         * message.el (message-confirm-send): Add appropriate version.
2891
2892 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
2893
2894         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
2895         defvar.
2896
2897 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
2898
2899         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
2900         (mm-pkcs7-enveloped-magic): Ditto.
2901
2902 2008-09-17  Simon Josefsson  <simon@josefsson.org>
2903
2904         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
2905         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
2906
2907 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
2908
2909         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
2910         default, it's better.
2911
2912 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
2913
2914         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
2915         summary line gnus-number property and ignore them (with a warning
2916         message).
2917
2918 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2919
2920         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
2921         macro caddr in the interactive form since it won't be expanded.
2922
2923 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2924
2925         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
2926         `charset'; fix name of function called recursively.
2927         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
2928
2929 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2930
2931         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
2932         (gnus-mime-set-charset-parameters): New function.
2933         (gnus-mime-view-part-as-charset): Use it to correctly display part
2934         specifying wrong charset.
2935
2936 2008-09-08  David Engster  <dengste@eml.cc>
2937
2938         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
2939         in completing-read for back end server.
2940
2941 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
2942
2943         * message.el (message-confirm-send): New variable to confirm sending a
2944         message.
2945         (message-send): Use it.
2946
2947 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
2948
2949         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
2950
2951 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2952
2953         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
2954
2955 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
2956
2957         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
2958         prevent tracking too many groups.
2959         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
2960         Use it.
2961
2962 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
2963
2964         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
2965         moving point to the bottom of the window in order to avoid recentering.
2966
2967 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2968
2969         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
2970
2971         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
2972         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
2973         (gnus-article-beginning-of-window): Fix calculation.
2974
2975 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2976
2977         * gnus-msg.el (gnus-summary-supersede-article)
2978         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
2979         value of gnus-newsgroup-charset to decode non-MIME encoded text in
2980         message header.
2981
2982 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
2983
2984         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
2985         pending output coming after the status change.
2986
2987 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
2988
2989         * message.el:
2990         * gnus-start.el:
2991         * gnus-registry.el: Remove VMS support.
2992
2993 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
2994
2995         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
2996         macro.
2997         (rfc2104-hash): Use it.
2998
2999 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
3000
3001         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
3002         (gnus-summary-sort-by-most-recent-date): New commands.
3003         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
3004         and menu entries.
3005
3006 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
3007
3008         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
3009         don't redisplay article for raw contents; remove plural articles stuff.
3010
3011         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
3012         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
3013         on gnus-summary-save-article; display results properly.
3014
3015 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
3016
3017         * lpath.el: No need to fbind ns-focus-frame.
3018
3019 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
3020
3021         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
3022
3023 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
3024
3025         * gnus-art.el (gnus-summary-save-in-pipe): Consider
3026         gnus-save-all-headers.
3027
3028 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
3029
3030         * gnus-util.el (ns-focus-frame): Remove declaration.
3031         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
3032         like x.
3033
3034 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
3035
3036         * rfc2104.el (rfc2104-zero): Delete defconst.
3037         (rfc2104-hex-alist): Likewise.
3038         (rfc2104-hex-to-int): Delete func.
3039         (rfc2104-hexstring-to-bitstring): Likewise.
3040         (rfc2104-nybbles): New defconst.
3041         (rfc2104-hash): Rewrite for speed.
3042
3043 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3044
3045         * tls.el (open-tls-stream): Make it work with the 2nd argument
3046         BUFFER that is a string but does not exist as a buffer object, as
3047         mentioned in the doc-string.
3048
3049 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3050
3051         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
3052         SXEmacs.
3053
3054 2008-07-16  Glenn Morris  <rgm@gnu.org>
3055
3056         * gnus-util.el (ns-focus-frame): Declare for compiler.
3057
3058 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3059
3060         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
3061         set as a group parameter.
3062         (gnus-summary-save-in-pipe): Work when it is called independently.
3063         (gnus-summary-pipe-to-muttprint): Don't modify
3064         gnus-summary-pipe-output-default-command.
3065
3066 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3067
3068         * message.el (message-send-mail-with-sendmail):
3069         Display the error message.
3070
3071 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3072
3073         * gnus-art.el (gnus-default-article-saver):
3074         Add gnus-summary-save-in-pipe to choices.
3075         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
3076         gnus-summary-pipe-output-default-command as the default command.
3077         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
3078         instead of gnus-last-shell-command.
3079
3080         * gnus-sum.el (gnus-summary-pipe-output-default-command):
3081         New user option.
3082         (gnus-summary-muttprint-program): Mention the value will be changed.
3083         (gnus-summary-save-article): Force showing of all headers.
3084         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
3085
3086 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
3087
3088         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
3089
3090 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
3091
3092         * nnimap.el (nnimap-id):
3093         * sieve-manage.el (sieve-manage-open): Doc fixes.
3094
3095 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
3096
3097         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
3098         if available.
3099
3100 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3101
3102         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
3103
3104         * nnkiboze.el (nnkiboze-generate-group):
3105         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
3106
3107         * nnmairix.el: Require CL.
3108
3109 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
3110
3111         * dgnushack.el: Autoload get-display-table and put-display-table for
3112         XEmacs 21.5.
3113
3114         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
3115         21.4 and SXEmacs.
3116
3117 2008-06-15  David Engster  <dengste@eml.cc>
3118
3119         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
3120
3121 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
3122
3123         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
3124         New macros that expand to an `aset'/`aref' call under Emacs, and to a
3125         runtime choice under XEmacs.
3126
3127         * gnus-sum.el (gnus-summary-set-display-table):
3128         Use `gnus-put-display-table', `gnus-get-display-table',
3129         `gnus-set-display-table' for the display table, instead of `aset'.
3130
3131         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
3132         Use `gnus-put-display-table', `gnus-get-display-table',
3133         `gnus-set-display-table' for the display table.
3134
3135 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3136
3137         * nnmairix.el: Add autoloads.
3138
3139 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3140
3141         * nnmairix.el (nnmairix-delete-recreate-group)
3142         (nnmairix-update-and-clear-marks): Fix error messages.
3143
3144 2008-06-14  David Engster  <dengste@eml.cc>
3145
3146         * nnmairix.el: Upgrade to version 0.6.
3147         (nnmairix-group-toggle-propmarks-this-group)
3148         (nnmairix-group-toggle-readmarks-this-group)
3149         (nnmairix-group-delete-recreate-this-group)
3150         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
3151         (nnmairix-remove-tick-mark-original-article): New commands.
3152         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
3153         (nnmairix-propagate-marks-to-nnmairix-groups)
3154         (nnmairix-only-use-registry, nnmairix-allowfast-default)
3155         (nnmairix-marks-cache, nnmairix-version-output): New variables.
3156         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
3157         functions needed for marks propagation and manipulation of read marks.
3158         (nnmairix-update-groups): New function.
3159         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
3160         (nnmairix-determine-original-group-from-registry)
3161         (nnmairix-determine-original-group-from-path)
3162         (nnmairix-get-group-from-file-path, nnmairix-map-range)
3163         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
3164         New helper functions.
3165         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
3166         keystrokes for new commands.
3167         (nnmairix-delete-and-create-on-change): Doc string cleanup.
3168         (nnmairix-request-group): Check allow-fast group parameter.
3169         (nnmairix-request-create-group): Set allow-fast group parameter if
3170         nnmairix-allowfast-default is set.
3171         (nnmairix-close-group): Propagate marks upon closing if needed.
3172         (nnmairix-group-toggle-threads-this-group): Use new.
3173         nnmairix-group-toggle-parameter helper function.
3174         (nnmairix-search): Better check for empty search result.
3175         (nnmairix-goto-original-article): Use new helper functions for
3176         determining original article.
3177         (nnmairix-show-original-article): Make sure message-id is in brackets.
3178         (nnmairix-call-mairix-binary): Change variable name.
3179         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
3180         helper function.
3181         (nnmairix-widget-toggle-activate): Fix doc string.
3182
3183 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3184
3185         * nnir.el: Require edmacro when compiling with XEmacs.
3186         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
3187         available in Emacs 21.
3188
3189 2008-06-11  Glenn Morris  <rgm@gnu.org>
3190
3191         * gnus-util.el (x-focus-frame):
3192         * gnus.el (image-size):
3193         * mm-decode.el (image-size): Declare.
3194
3195         * gnus-picon.el (declare-function): Add compat definition.
3196         (image-size): Declare.
3197
3198         * gnus-group.el (tool-bar-map):
3199         * gnus-sum.el (tool-bar-map): Define for compiler.
3200
3201         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
3202
3203         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
3204
3205         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
3206         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
3207         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
3208         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
3209         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
3210         * sieve-manage.el, spam-report.el, spam.el:
3211         Remove unnecessary eval-and-compile of autoloads.
3212
3213 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
3214
3215         * auth-source.el: Precise Tramp doc.
3216
3217 2008-06-07  Glenn Morris  <rgm@gnu.org>
3218
3219         * nnmairix.el: Remove unnecessary eval-when-compile.
3220
3221 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3222
3223         * lpath.el: Fbind propertize for XEmacs 21.4.
3224
3225 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
3226
3227         * nnir.el: Move here from ../contrib.
3228
3229 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3230
3231         * gnus-util.el (gnus-read-shell-command): New function.
3232         * mm-decode.el (mm-pipe-part):
3233         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
3234
3235 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3236
3237         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
3238
3239 2008-06-03  Glenn Morris  <rgm@gnu.org>
3240
3241         * pop3.el (nnheader-accept-process-output): Autoload it.
3242
3243 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3244
3245         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
3246         are not 2-digit hexadecimal characters that follow `%'s.
3247
3248 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
3249
3250         * message.el (message-bogus-recipient-p): Fix type in doc string.
3251         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
3252         (message-bogus-addresses): Rename from message-bogus-address-regexp.
3253         Improve custom options.
3254         (message-bogus-recipient-p): Adjust accordingly.
3255
3256 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
3257
3258         * parse-time.el (parse-time-months, parse-time-weekdays): Add
3259         long-form month and day names.
3260
3261 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3262
3263         * dgnushack.el: Autoload debug, eudc-expand-inline and
3264         pgg-snarf-keys-region for XEmacs.
3265
3266         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
3267
3268         * nnmairix.el: Require edmacro when compiling with XEmacs.
3269
3270 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
3271
3272         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
3273         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
3274
3275 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
3276
3277         * auth-source.el: Add more docs.
3278
3279         * netrc.el (netrc-machine): Always match if the port is not given.
3280
3281 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3282
3283         * nnheader.el (nnheader-read-timeout): Change the default timeout from
3284         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
3285         retrieval faster in some cases, but might make CPU usage larger.  If
3286         this has any bad side effects, we might revert this change.
3287
3288         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
3289         seems to make mail retrieval much, much faster.
3290         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
3291         unconditionally.
3292
3293         * gnus-draft.el (gnus-group-send-queue): Bind
3294         message-send-mail-partially-limit to nil to avoid being prompted.
3295
3296 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
3297
3298         * mml.el (mml-attach-buffer): Prompt for `disposition'.
3299
3300         * message.el (message-bogus-address-regexp): Fix and improve custom
3301         type.
3302         (message-setup-hook): Add message-check-recipients as custom option.
3303
3304 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
3305
3306         * message.el (message-cite-function): Remove bogus autoload which crept
3307         in during merge from v5-10.
3308
3309 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
3310
3311         * nnimap.el (nnimap-open-connection): Fix login/password bug.
3312
3313         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
3314
3315         * auth-source.el: Preliminary Tramp docs.
3316         (auth-sources): Change the default auth-sources to use
3317         EPA .gpg files.
3318
3319 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
3320
3321         * nntp.el: Autoload `auth-source-user-or-password'.
3322         (nntp-send-authinfo): Use it.
3323
3324         * nnimap.el: Autoload `auth-source-user-or-password'.
3325         (nnimap-open-connection): Use it.
3326
3327         * auth-source.el: Added docs on using with url-auth.  Import gnus-util
3328         for the gnus-message function.
3329         (auth-source-user-or-password): Use it.
3330
3331 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3332
3333         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
3334         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
3335         (rfc2104-hash): Use it.
3336
3337 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
3338
3339         * gnus-art.el (gnus-article-toggle-truncate-lines):
3340         Don't use `iff' in docstring.
3341
3342 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
3343
3344         * gnus-registry.el: Adjusted copyright dates and added a keyword.
3345
3346         * gnus-util.el (gnus-extract-address-component-name)
3347         (gnus-extract-address-component-email): Convenience functions around
3348         `gnus-extract-address-components'.
3349
3350         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
3351         Use `gnus-extract-address-component-email' to fix bug of comparing full
3352         sender name to `user-mail-address'.
3353
3354 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
3355
3356         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
3357         catch/throw to optimize.
3358         (gnus-registry-find-keywords): Just use member to find a keyword.
3359
3360 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3361
3362         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
3363         is current before calling gnus-server-prepare.
3364         (gnus-server-setup-buffer, gnus-server-update-server)
3365         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
3366
3367 2008-05-04  Juri Linkov  <juri@jurta.org>
3368
3369         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
3370         (mailcap-file-default-commands): Use mailcap-replace-in-string
3371         instead of replace-regexp-in-string, and mailcap-delete-duplicates
3372         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
3373
3374 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
3375
3376         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
3377
3378 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3379
3380         * gnus.el: Bump version to 0.11.
3381
3382 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3383
3384         * gnus.el: No Gnus v0.10 is released.
3385
3386 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3387
3388         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
3389         hooks.
3390         (gnus-update-read-articles): Speed up non-marks-using users.
3391         (gnus-use-marks): Define gnus-use-marks.
3392         (gnus-propagate-marks): Rename variable to something more sensible.
3393
3394 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
3395
3396         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
3397         (gmm-image-load-path-for-library): Fix typos in docstrings.
3398         (gmm-message): Reflow docstring.
3399
3400 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
3401
3402         * mail-source.el (mail-source-set-1, mail-source-bind):
3403         Move auth-source code out of the macro to clean it up and fix bugs.
3404
3405 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
3406
3407         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
3408         by sender if it's equal to user-mail-address, it's likely to be
3409         useless.
3410
3411         * mail-source.el (mail-source-bind): Don't use user or password if they
3412         are not bound.  Unintern them if they are nil.  Don't use server unless
3413         it's bound, and default it to empty string otherwise.
3414
3415 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
3416
3417         * mail-source.el: Load auth-source.el.
3418         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
3419         get user name or password, if auth-sources is set up.
3420
3421         * gnus-registry.el (gnus-registry-split-strategy): New variable for
3422         strategy of splitting with parent.
3423         (gnus-registry-split-fancy-with-parent)
3424         (gnus-registry-post-process-groups): Use it and fix prior
3425         bug (returning a list as the split result).
3426
3427         * auth-source.el (auth-sources): Remove server parameter.
3428         (auth-source-pick, auth-source-user-or-password)
3429         (auth-source-user-or-password-imap)
3430         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3431         (auth-source-user-or-password-sftp)
3432         (auth-source-user-or-password-smtp): Remove server parameter.
3433
3434 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
3435
3436         * smime.el (smime-sign-region, smime-encrypt-region)
3437         (smime-decrypt-region):
3438         Remove redundant calls to `generate-new-buffer-name'.
3439
3440 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
3441
3442         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
3443         Don't use QP for message/rfc822.
3444         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
3445
3446 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3447
3448         * sieve-manage.el (sieve-string-bytes): Remove.
3449         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
3450         correct byte-length only if the process's coding-system is the same as
3451         the one used internally by Emacs to represent strings.
3452
3453 2008-04-22  Juri Linkov  <juri@jurta.org>
3454
3455         * mailcap.el (mailcap-file-default-commands): New function.
3456
3457 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3458
3459         * message.el (message-signature-separator, message-cite-function):
3460         Change custom version.
3461
3462 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
3463
3464         * tls.el (tls-program): Add -ign_eof argument to call the openssl
3465         commands.
3466         (tls-checktrust): Ditto.
3467
3468 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3469
3470         * mm-decode.el (mm-display-external): Make temp file read-only.
3471
3472 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
3473
3474         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
3475         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
3476         `C-c C-f d'.
3477
3478 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
3479
3480         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
3481
3482 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
3483
3484         * gnus.el: Bump version to 0.9.
3485
3486 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
3487
3488         * gnus.el: No Gnus v0.8 is released.
3489
3490 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3491
3492         * mail-source.el (mail-source-value):
3493         Prefer fboundp to functionp so it works with macros as well.
3494
3495 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3496
3497         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3498         Fix last change in case the element is not even a symbol.
3499
3500 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3501
3502         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3503         Prefer fboundp to functionp so it works with macros as well.
3504
3505 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
3506
3507         * auth-source.el: Added docs.
3508         (auth-sources): Modify format to support server.
3509         (auth-source-pick, auth-source-user-or-password)
3510         (auth-source-user-or-password-imap)
3511         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3512         (auth-source-user-or-password-sftp)
3513         (auth-source-user-or-password-smtp): Add server parameter.
3514
3515 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
3516
3517         * gnus-registry.el: Initialize the registry when gnus-registry-install
3518         is t.
3519
3520 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3521
3522         * compface.el (uncompface): Make buffer unibyte.
3523
3524 2008-04-05  Glenn Morris  <rgm@gnu.org>
3525
3526         * gnus-ems.el (mm-disable-multibyte): Autoload it.
3527
3528 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3529
3530         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer): Prefer
3531         mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
3532
3533         * nnheader.el (nnheader-init-server-buffer): Change buffer's
3534         multibyteness after rather than before erasing it.
3535
3536         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
3537         mm-with-multibyte.
3538         (gnus-request-article-this-buffer): Make sure the proper decoding is
3539         used if gnus-original-article-buffer happens to be unibyte.
3540
3541         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
3542         default-enable-multibyte-characters.
3543
3544         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
3545         default-enable-multibyte-characters.
3546
3547         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
3548
3549         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
3550
3551 2008-04-02  Simon Josefsson  <simon@josefsson.org>
3552
3553         * imap.el (imap-enable-exchange-bug-workaround): New variable.
3554         (imap-message-copyuid-1): Use it.
3555         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
3556         J. Williams in
3557         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
3558
3559         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
3560         imap-enable-exchange-bug-workaround.
3561         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
3562
3563 2008-04-01  Simon Josefsson  <simon@josefsson.org>
3564
3565         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
3566         a 100 byte status-checks into a 2-3MB transfer for each group.
3567         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
3568         to enable bug workaround or not.
3569         (nnimap-find-minmax-uid): Only enable workaround conditionally.
3570
3571 2008-03-31  Glenn Morris  <rgm@gnu.org>
3572
3573         * message.el (mml2015-use): Declare for compiler.
3574         (message-info): Require mml2015 when appropriate.
3575
3576 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
3577
3578         * Makefile.in (EMACS_COMP): Quote directory name that might contain
3579         whitespace.
3580
3581 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3582
3583         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
3584         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
3585         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
3586         (nntp-service-to-port): New function.
3587         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
3588         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
3589         (nntp-open-netcat-stream): New function.
3590         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
3591
3592 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
3593
3594         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
3595
3596 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3597
3598         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
3599
3600 2008-03-28  Magnus Henoch  <mange@freemail.hu>
3601
3602         * dns.el (dns-write): Use set-buffer-multibyte.
3603
3604 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
3605
3606         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
3607
3608 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
3609
3610         * message.el (message-signature-separator): Change default.
3611         Improve custom type.
3612         (message-cite-function): Change default to
3613         message-cite-original-without-signature.
3614
3615         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
3616         toggle.
3617
3618         * message.el (message-check-news-body-syntax): Fix signature check.
3619         (message-setup-1): Mark buffer as unmodified _after_ running
3620         message-setup-hook and handling message-alternative-emails.
3621         (message-shorten-references): Be more strict when building list of
3622         valid references to comply with GNKSA.
3623
3624         * gnus-group.el (gnus-read-ephemeral-bug-group)
3625         (gnus-read-ephemeral-debian-bug-group)
3626         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
3627
3628         * message.el (message-info): Don't use booleanp which isn't supported
3629         in Emacs 21 and XEmacs.
3630
3631 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
3632
3633         * gnus-group.el (gnus-gmane-group-download-format): Rename from
3634         gnus-group-gmane-group-download-format.
3635         (gnus-group-read-ephemeral-gmane-group): Rename from
3636         gnus-group-read-ephemeral-gmane-group.
3637         (gnus-read-ephemeral-gmane-group-url): Rename from
3638         gnus-group-read-ephemeral-gmane-group-url.
3639         (gnus-bug-group-download-format-alist): New variable.
3640         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
3641         (gnus-read-ephemeral-emacs-bug-group): New commands.
3642
3643 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
3644
3645         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
3646         (gnus-visible-headers): Improve custom type.
3647
3648 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
3649
3650         * mml.el (mml-menu): Add workarounds for XEmacs.
3651
3652         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
3653         X-Boundary header.
3654
3655         * message.el (message-simplify-recipients): Fix previous commit.
3656
3657 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3658
3659         * mm-util.el (mm-set-buffer-multibyte): New function.
3660         * mm-decode.el (mm-copy-to-buffer): Use it.
3661
3662 2008-03-19  Glenn Morris  <rgm@gnu.org>
3663
3664         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
3665         Accidentally removed in the sync process with Emacs.
3666
3667 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
3668
3669         * message.el (message-alter-recipients-discard-bogus-full-name):
3670         New function.
3671         (message-alter-recipients-function): New variable.
3672         (message-get-reply-headers): Use it.
3673         (message-replace-header): New helper function.
3674         (message-recipients-without-full-name): New variable.
3675         (message-simplify-recipients): New command.
3676
3677         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
3678
3679         * message.el (message-info): Handle EasyPG manual.
3680
3681         * mml.el (mml-menu): Add entry for EasyPG.
3682
3683 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
3684
3685         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
3686         parameter.
3687
3688         * message.el (message-disassociate-draft): Specify drafts group name
3689         fully.
3690
3691 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
3692
3693         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Eliminate
3694         unnecessary duplicates from the match list.
3695
3696 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3697
3698         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
3699
3700         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
3701
3702         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
3703         args of `how-many' of which the XEmacs version doesn't take; declare
3704         Info-index-next as function.
3705
3706 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
3707
3708         * gnus-score.el (gnus-score-headers): Fix handling of
3709         gnus-inhibit-slow-scoring.
3710
3711         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
3712         string.
3713         (gnus-button-url-regexp): Improve handling of parenthesis.
3714         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
3715         (gnus-button-handle-info-keystrokes): Handle index entries.
3716
3717 2008-03-15  Glenn Morris  <rgm@gnu.org>
3718
3719         * parse-time.el (parse-time-string): Simplify.
3720
3721 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3722
3723         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
3724         Incoming* files.
3725
3726 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
3727
3728         * auth-source.el (auth-sources): Renamed from auth-source-choices.
3729         (auth-source-pick): Use it.
3730
3731 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3732
3733         * binhex.el (binhex-decode-region-internal):
3734         * uudecode.el (uudecode-decode-region-internal):
3735         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
3736         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
3737         setting default-enable-multibyte-characters.
3738
3739 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
3740
3741         * auth-source.el (auth-source-protocols)
3742         (auth-source-protocols-customize, auth-source-choices): Added and
3743         modified variable customizations and defaults.
3744         (auth-source-pick, auth-source-user-or-password)
3745         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
3746         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3747         (auth-source-user-or-password-sftp)
3748         (auth-source-user-or-password-smtp): Use new variables and provide an
3749         interface to netrc.el.
3750
3751 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3752
3753         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
3754         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
3755         Make sure the nntp port to specify is a string.
3756
3757 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3758
3759         * nntp.el: Use with-current-buffer.
3760         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
3761         dubious mm-with-unibyte-current-buffer.
3762         (nntp-with-open-group-function): New function extracted from
3763         nntp-with-open-group macro.
3764         (nntp-with-open-group): Use the function, so it's easier to debug.
3765         Add indentation and debugging info.
3766         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Recommend
3767         the use of the netcat alternatives.
3768
3769         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
3770         Avoid mm-string-as-multibyte as well.
3771
3772         * nnweb.el (nnweb-insert-html):
3773         Remove use of nnheader-string-as-multibyte.
3774
3775         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
3776         (nnheader-string-as-multibyte): Remove.
3777
3778         * mm-view.el: Use inhibit-read-only.
3779         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
3780         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
3781         or unibyte-string.
3782
3783         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
3784         (mm-uu-yenc-extract): Use with-current-buffer.
3785
3786         * gnus-soup.el (gnus-soup-send-packet): Don't use
3787         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
3788
3789         * nnmh.el: Use with-current-buffer.
3790         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
3791         mm-string-as-multibyte on the output of mm-encode-coding-string.
3792
3793         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
3794         (nnimap-request-move-article): Use with-current-buffer.
3795
3796         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
3797         inserting the handle-buffer's text, so the implicit multibyte->unibyte
3798         conversion uses string-make-unibyte rather than string-as-unibyte.
3799
3800         * gnus-msg.el: Use with-current-buffer.
3801
3802         * message.el (message-ignored-resent-headers): Add "Delivered-To".
3803
3804 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
3805
3806         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
3807         string for caching if it is 'PIN.
3808
3809 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3810
3811         * lpath.el: Consider the case without Emacs/W3.
3812
3813 2008-03-08  Glenn Morris  <rgm@gnu.org>
3814
3815         * time-date.el (date-to-time, time-subtract, time-add)
3816         (safe-date-to-time): Doc fixes.
3817
3818 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
3819
3820         * mail-source.el (mail-source-delete-old-incoming-confirm):
3821         Change default to nil.
3822         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
3823
3824 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3825
3826         * lpath.el: Rearrange.
3827
3828         * gnus-art.el (gnus-narrow-to-page): Position point properly.
3829         (gnus-article-goto-prev-page): Work for articles having ^L's.
3830
3831         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
3832
3833         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
3834
3835 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
3836
3837         * gnus-bookmark.el: Adjust for renames in bookmark.el.
3838         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
3839         (gnus-bookmark-jump): Adjust some variable names.
3840
3841 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
3842
3843         * auth-source.el: New package.
3844         (auth-source-choices): Add customization entry point variable.
3845
3846         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
3847         bug.
3848
3849 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
3850
3851         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
3852         (gnus-registry-initialize, gnus-registry-install-p): Use it.
3853         (gnus-registry-install-shortcuts): Rename from
3854         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
3855         the `gnus-registry-mark-map' keymap dynamically from
3856         `gnus-registry-marks'.  The generated functions update the summary line
3857         when a registry mark is added or deleted, and will call
3858         `gnus-registry-install-p' (see the comments in the code).
3859         (gnus-registry-user-format-function-M): Use concat intelligently.
3860
3861         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
3862         the registry mark functions.
3863
3864 2008-03-05  Glenn Morris  <rgm@gnu.org>
3865
3866         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
3867         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
3868         gnus-art.
3869         (top-level): No need to load own source when compiling.
3870
3871 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
3872
3873         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
3874         Suggested by <chris.anderton@zetnet.co.uk>.
3875
3876 2008-03-04  Glenn Morris  <rgm@gnu.org>
3877
3878         * gnus-sum.el (top-level): No need to require gnus when compiling,
3879         since unconditionally required near start of file.
3880         (gnus-summary-display-while-building): Move definition before use.
3881
3882 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
3883
3884         * gnus-registry.el (gnus-registry-user-format-function-M): Add
3885         formatting function.
3886
3887 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
3888
3889         * gnus-registry.el (gnus-registry-marks): Changed format to be nicer
3890         with plists.
3891         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
3892         Use new format.
3893
3894 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3895
3896         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
3897         `where-is-internal' that returns a range of key sequences.
3898
3899 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3900
3901         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
3902
3903         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
3904         (gnus-summary-jump-to-group): Consider windows on other displayed
3905         frames as well.  Similar changes might be needed elsewhere, but that's
3906         the one I've bumped into during my use.
3907
3908         * nndoc.el (nndoc-oe-dbx-type-p):
3909         * gnus-msg.el (gnus-debug):
3910         * gnus-group.el (gnus-update-group-mark-positions):
3911         Use mm-string-to-multibyte.
3912
3913 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
3914
3915         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
3916         doesn't handle NotDashEscaped.
3917
3918         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
3919         (mml-dnd-attach-options): Fix typo in custom choice.
3920
3921         * gnus-group.el (gnus-group-read-ephemeral-gmane-group): Change
3922         nndoc-article-type to mbox.
3923         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
3924
3925         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
3926         to nil, instead of html2text.
3927
3928         * imap.el (imap-debug): Add `imap-ping-server'.
3929
3930         * gnus-bookmark.el: Add FIXMEs.
3931
3932         * message.el (message-form-letter-separator)
3933         (message-send-form-letter-delay): New variables.
3934         (message-send-form-letter): Use them.  New command to send form
3935         letters.  Requested by Uwe Siart.
3936         (message-send-mail-function): Doc fix.  Add "Other" custom option.
3937
3938 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3939
3940         * Update copyright years.
3941
3942 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3943
3944         Sync from EMACS_22_BASE.
3945
3946         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
3947
3948 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
3949
3950         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
3951         empty author.
3952
3953 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
3954
3955         * gnus-registry.el (gnus-registry-marks): Add variable for
3956         customization of marks and their appearance.
3957         (gnus-registry-read-mark): Use it.
3958         (gnus-registry-do-marks): Add utility function to loop through
3959         `gnus-registry-marks'.
3960         (gnus-registry-install-shortcuts-and-menus): Add function to install
3961         shortcuts and menus.
3962         (gnus-registry-initialize): Use it.
3963         (gnus-registry-default-mark): Clarify documentation.
3964
3965 2008-02-29  Glenn Morris  <rgm@gnu.org>
3966
3967         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
3968         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
3969         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
3970         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
3971         Change defcustom :version from 23.0 to 23.1.
3972
3973 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
3974
3975         * gnus-registry.el (gnus-registry-follow-group-p)
3976         (gnus-registry-post-process-groups): Add functions to aid registry
3977         splitting and improve logging.  Clarify behavior in function
3978         documentation.
3979         (gnus-registry-split-fancy-with-parent): Use them.
3980
3981 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3982
3983         * gnus-art.el: Use with-current-buffer.
3984
3985 2008-02-27  David Engster  <dengste@eml.cc>
3986
3987         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
3988         Express real group name in the response.
3989
3990 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3991
3992         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
3993         (nnmairix-last-server, nnmairix-current-server): Defvar them.
3994         (nnmairix-goto-original-article): Defvar gnus-registry-install and
3995         autoload gnus-registry-fetch-group when compiling.
3996         (nnmairix-request-group-with-article-number-correction): Remove
3997         unreferenced argument passed to nnmairix-call-backend.
3998
3999 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
4000
4001         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
4002         (mm-uu-extract): Improve face for low color ttys.  Reported by Sascha
4003         Wilde.
4004
4005 2008-02-27  Glenn Morris  <rgm@gnu.org>
4006
4007         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
4008         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
4009         variables to defconsts.  Convert comments to doc-strings.
4010         (nnmairix-last-server, nnmairix-current-server): Convert from free
4011         variables to defvars.  Convert comments to doc-strings.
4012         (gnus-registry-fetch-group): Autoload.
4013         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
4014         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
4015         (nnmairix-widget-build-editable-fields): Use car cddr rather than
4016         caddr.
4017         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
4018         nnmairix-request-group-with-article-number-correction call.
4019         (nnmairix-fast, nnmairix-group): New, less general names, for free
4020         variables passed from nnmairix-request-group to
4021         nnmairix-request-group-with-article-number-correction.  Declare.
4022         (nnmairix-request-group-with-article-number-correction):
4023         Use nnmairix-fast, nnmairix-group rather than fast, group.
4024
4025 2008-02-26  David Engster  <dengste@eml.cc>
4026
4027         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
4028         version 0.5.
4029
4030 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
4031
4032         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
4033         instead of making an extra function call.  Don't add the current group
4034         to articles only when they have the group.  Use
4035         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
4036         Reported by David <de_bb@arcor.de>.
4037
4038 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4039
4040         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
4041         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
4042
4043 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
4044
4045         * mail-source.el (mail-source-delete-incoming): Change default.
4046         Supplement doc string.
4047
4048         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
4049
4050 2008-02-14  Glenn Morris  <rgm@gnu.org>
4051
4052         * time-date.el (format-seconds): New function.
4053
4054 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
4055
4056         * nnmail.el (nnmail-message-id-cache-file): Derive from
4057         `gnus-home-directory'.
4058
4059 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
4060
4061         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
4062         Document negative prefix.
4063
4064         * gnus-group.el (gnus-group-read-group): Document negative prefix.
4065
4066 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4067
4068         * message.el (message-unsent-separator): Add the Exim bounce
4069         separator.
4070
4071 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
4072
4073         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
4074         list.
4075         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
4076         recipient/signer list.
4077
4078 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4079
4080         * Makefile.in (datarootdir): Define.
4081         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
4082         name that might contain whitespace.
4083
4084 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
4085
4086         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
4087         fbound (Emacs 23 unicode), signal an error.
4088
4089 2008-02-08  Glenn Morris  <rgm@gnu.org>
4090
4091         * gnus-art.el (pgg-display-output-buffer): Declare as function.
4092
4093 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
4094
4095         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
4096         ports to the calls to `netrc-machine-user-or-password' in addition to
4097         "imap" and "imaps".
4098
4099 2008-02-01  Zhang Wei  <id.brep@gmail.com>
4100
4101         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
4102
4103         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
4104
4105 2008-02-01  Kenichi Handa  <handa@m17n.org>
4106
4107         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
4108         rfc2104-hexstring-to-bitstring and changed to return a byte list.
4109         (rfc2104-hash): Convert the result of concat to unibyte string.
4110
4111 2008-02-01  Dave Love  <fx@gnu.org>
4112
4113         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
4114         coding-system-for-read.
4115         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
4116
4117 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
4118
4119         * gnus.el (gnus-group-startup-message): Add `find-image' call before
4120         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
4121         <hanche@math.ntnu.no>.
4122
4123 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4124
4125         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
4126
4127         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
4128
4129 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
4130
4131         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
4132         * message.el (message-beginning-of-line): Use featurep instead of bound
4133         tests in order to resolve conditionals at compile time.
4134
4135 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
4136
4137         * mail-source.el (mail-sources): Add `group' choice.
4138
4139         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
4140         parameter `in-group' to control into which group the articles go.
4141         Add treatment of `group' mail-source.
4142
4143 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4144
4145         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
4146
4147         * mm-decode.el (mm-dissect-buffer): Decode description.
4148
4149         * mml.el (mml-to-mime): Encode message header first.
4150
4151 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4152
4153         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
4154         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
4155
4156         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
4157         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
4158
4159 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
4160
4161         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
4162
4163 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4164
4165         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
4166         prefix keys.
4167         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
4168         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
4169         gnus-xmas.el.
4170
4171         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
4172         (gnus-xmas-article-describe-bindings): New function.
4173         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
4174         gnus-xmas-article-describe-bindings.
4175
4176         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
4177
4178 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
4179
4180         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
4181         Add new variables for article mark management.
4182         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
4183         list of extra data entries which, when present, will indicate that the
4184         article ID should not be trimmed from the registry.
4185         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
4186         functions.
4187         (gnus-registry-read-mark): New function to read a mark name from the
4188         user.
4189         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
4190         (gnus-registry-set-article-mark-internal): New functions to add and
4191         remove marks.
4192         (gnus-registry-get-article-marks): New function to show the marks for
4193         an article, or retrieve them for further use.
4194
4195 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4196
4197         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
4198         keys when no argument is given.
4199
4200 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
4201
4202         * imap.el (imap-ping-server): New variable.
4203         (imap-opened): On add extra ping if imap-ping-server is non-nil.
4204         (imap-ping-server): Minor doc string fixes.
4205
4206 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
4207
4208         * imap.el (imap-ping-server): New function.
4209         (imap-opened): Call imap-ping-server.
4210
4211 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
4212
4213         * gnus-sum.el (gnus-article-sort-by-random)
4214         (gnus-thread-sort-by-random): Fix doc strings.  Reported by
4215         jidanni@jidanni.org.
4216
4217 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4218
4219         * gnus-art.el (gnus-article-describe-bindings): New function.
4220         (gnus-article-read-summary-keys): Use it.
4221         (gnus-article-mode-map): Bind `C-h b' to it.
4222
4223 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4224
4225         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
4226         XEmacs.
4227         (gnus-article-describe-key, gnus-article-describe-key-briefly): Protect
4228         against non-character events.
4229
4230         * lpath.el: Fbind map-keymap for Emacs 21.
4231
4232 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
4233
4234         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url): New
4235         command.
4236         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
4237         instead of END.  Change name of the temp file.
4238         (gnus-group-gmane-group-download-format): Add doc string.  Make it
4239         customizable.
4240
4241 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4242
4243         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
4244         bind `S W' to gnus-article-wide-reply-with-original; set default
4245         binding to gnus-article-read-summary-send-keys.
4246         (gnus-article-read-summary-keys): Fix the order of keys; display
4247         continuation keys correctly in the echo area; describe bindings
4248         correctly when keys end with `C-h'.
4249         (gnus-article-read-summary-send-keys): New function.
4250         (gnus-article-describe-key, gnus-article-describe-key-briefly): Work
4251         for gnus-article-read-summary-send-keys; display continuation keys
4252         correctly in the echo area.
4253         (gnus-article-reply-with-original): Ignore prefix argument.
4254         (gnus-article-wide-reply-with-original): New function.
4255
4256         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
4257         Emacs 21.
4258
4259 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
4260
4261         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
4262         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
4263
4264 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
4265
4266         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
4267         (gnus-group-read-ephemeral-gmane-group): New command.
4268
4269 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
4270
4271         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
4272
4273 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
4274
4275         * message.el (message-send-mail-function): Increase custom version.
4276
4277         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
4278         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
4279
4280 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
4281
4282         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
4283         for the cases where imap-authenticate is called with a nil buffer
4284         parameter.
4285
4286 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4287
4288         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
4289         html parts correctly; support forwarded messages.
4290         (gnus-article-browse-html-article): Remove work buffers.
4291
4292         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
4293         compiling.
4294         (netrc-bound-and-true-p): New macro.
4295         (netrc-parse): Use it instead of bound-and-true-p that is not available
4296         in XEmacs 21.4.
4297
4298 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
4299
4300         * gnus-registry.el (gnus-registry-mark-article)
4301         (gnus-registry-article-marks): Add functionality to mark articles
4302         through the Gnus registry.
4303
4304         * encrypt.el: Clarify documentation for the new pgg method.
4305         (encrypt-file-alist): Add PGG option.
4306         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
4307         functionality.  Abstract password key and messaging to external
4308         functions.
4309         (encrypt-password-key, encrypt-get-passphrase-if-needed)
4310         (encrypt-message-method-and-cipher): Add new convenience external
4311         functions.
4312         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
4313         (encrypt-pgg-process-buffer): Add PGG functionality glue.
4314
4315         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
4316         (netrc-parse): Use encrypt-file-alist to determine if
4317         encrypt-find-model or encrypt-insert-file-contents should be used.
4318
4319         * encrypt.el: Clarify documentation.  Load password-cache or
4320         password, whichever one is found first, instead of autoloading.
4321
4322 2007-12-19  Glenn Morris  <rgm@gnu.org>
4323
4324         * mml.el (message-options-set, message-narrow-to-head)
4325         (message-in-body-p, message-mail-p, message-encode-message-body):
4326         Autoload.
4327         (message-remove-header, message-narrow-to-headers-or-head)
4328         (message-subscribed-p, message-make-mail-followup-to)
4329         (message-position-on-field, message-news-p)
4330         (message-options-set-recipient, message-generate-headers)
4331         (message-sort-headers): Declare as functions.
4332
4333 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
4334
4335         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
4336         convention in doc string.
4337
4338 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4339
4340         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
4341         title to html parts.
4342         (gnus-article-browse-html-article): Pass message header to it.
4343
4344         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
4345
4346 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
4347
4348         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
4349         or password compatible with XEmacs.
4350
4351 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
4352
4353         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
4354         format document.
4355         (gnus-mime-delete-part): Don't write description line if empty.
4356         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
4357
4358 2007-12-14  Johan BockgÃ¥rd  <bojohan@gnu.org>
4359
4360         * gnus-sum.el (gnus-summary-mark-unread-as-read)
4361         (gnus-summary-mark-read-and-unread-as-read)
4362         (gnus-summary-mark-current-read-and-unread-as-read)
4363         (gnus-summary-mark-unread-as-ticked): Doc fix.
4364         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
4365
4366 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4367
4368         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.  Reported by
4369         Christoph Conrad <christoph.conrad@gmx.de>.
4370
4371 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4372
4373         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
4374         yes-or-no-p.
4375
4376 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4377
4378         * mm-decode.el (mm-add-meta-html-tag): New function.
4379         (mm-save-part-to-file, mm-pipe-part): Use it.
4380
4381         * gnus-art.el (gnus-article-browse-delete-temp-files): Use
4382         gnus-y-or-n-p instead of y-or-n-p.
4383         (gnus-article-browse-html-parts): Work with message/external-body; use
4384         mm-add-meta-html-tag.
4385
4386 2007-12-11  Glenn Morris  <rgm@gnu.org>
4387
4388         * gnus-cache.el: Require gnus-sum not just when compiling.
4389
4390         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
4391
4392         * gnus-int.el (gnus-server-opened, gnus-status-message): Move
4393         definitions before use.
4394
4395         * mm-decode.el: Require gnus-util.
4396         (mm-remove-part): Only call delete-annotation on XEmacs.
4397
4398         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
4399
4400         * nnmail.el: Require gnus-int.
4401
4402         * spam.el: Move `require's before `eval-when-compile's.
4403
4404         * gnus-ems.el (gnus-alive-p):
4405         * gnus-fun.el (message-goto-eoh):
4406         * gnus-util.el (gnus-group-name-decode):
4407         * mail-source.el (gnus-compress-sequence):
4408         * message.el (Info-goto-node, format-spec):
4409         * mm-bodies.el (message-options-get):
4410         * mm-decode.el (mm-view-pkcs7):
4411         * mm-util.el (gmm-write-region):
4412         * mml-smime.el (mml-compute-boundary)
4413         (gnus-completing-read-with-default):
4414         * mml.el (widget-button-press, gnus-make-hashtable):
4415         * mml1991.el (mm-decode-content-transfer-encoding)
4416         (mm-encode-content-transfer-encoding)
4417         (message-options-get, message-options-set):
4418         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
4419         * nnfolder.el (gnus-request-group):
4420         * nnheader.el (ietf-drums-unfold-fws):
4421         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
4422         * smime.el (gnus-run-mode-hooks):
4423         * spam-stat.el (gnus-message): Autoload.
4424
4425         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
4426         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
4427         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
4428         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
4429         Add declare-function compatibility definition.
4430
4431         * gnus-cache.el (nnvirtual-find-group-art):
4432         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
4433         (gnus-add-image, gnus-add-wash-type):
4434         * gnus-group.el (nnkiboze-score-file):
4435         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
4436         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
4437         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
4438         (message-tokenize-header, gnus-get-buffer-create)
4439         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
4440         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
4441         * gnus.el (gnus-group-decoded-name):
4442         * mail-source.el (imap-capability):
4443         * mm-bodies.el (message-options-set):
4444         * mm-decode.el (gnus-configure-windows):
4445         * mm-extern.el (message-goto-body):
4446         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
4447         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
4448         (epg-sub-key-validity, message-options-set):
4449         * mml.el (widget-event-point, gnus-configure-windows):
4450         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
4451         * mml2015.el (epg-check-configuration, epg-configuration)
4452         (message-options-set):
4453         * nndb.el (nndb-request-article):
4454         * nnfolder.el (gnus-request-create-group):
4455         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
4456         * nnmaildir.el (gnus-group-mark-article-read):
4457         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
4458         * rfc1843.el (message-fetch-field):
4459         * spam.el (gnus-extract-address-components):
4460         Declare as functions.
4461
4462 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4463
4464         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
4465
4466         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
4467
4468         * lpath.el: Fbind run-mode-hooks for Emacs 21;
4469         bind show-trailing-whitespace for XEmacs.
4470
4471 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
4472
4473         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
4474         new no-op macro for backward compatibility.
4475
4476         * imap.el (imap-string-to-integer): New function.
4477
4478 2007-12-09  Glenn Morris  <rgm@gnu.org>
4479
4480         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
4481
4482         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
4483         * message.el, mm-view.el, sieve-manage.el, smime.el:
4484         Add declare-function compatibility definition.
4485
4486         * gnus-art.el (w3-region, w3m-region, Info-menu):
4487         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
4488         * gnus-sum.el (gnus-get-predicate):
4489         * gnus-util.el (mm-append-to-file, w32-focus-frame):
4490         * message.el (mail-abbrev-in-expansion-header-p):
4491         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
4492         (w3m-detect-meta-charset, w3m-region):
4493         * sieve-manage.el (password-read, password-cache-add)
4494         (password-cache-remove):
4495         * smime.el (password-read-and-add): Declare as functions.
4496
4497 2007-12-08  David Kastrup  <dak@gnu.org>
4498
4499         * gnus-sum.el (gnus-summary-simplify-subject-query):
4500         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
4501         `message'.
4502
4503 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4504
4505         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
4506         it to bind idna-program, installation-directory, defined-colors, and
4507         face-attribute for XEmacs of the version that compiles defcustom forms.
4508
4509 2007-12-07  Glenn Morris  <rgm@gnu.org>
4510
4511         * gnus-art.el (article-make-date-line): Revert previous change.
4512
4513 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
4514
4515         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
4516
4517 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
4518
4519         * nnmaildir.el (nnmaildir-request-update-info): Improved performance.
4520         Call gnus-add-to-range ranges only once with a prepared article-list.
4521
4522 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
4523
4524         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
4525         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
4526         group names with backslashes.  Reported by Tassilo Horn
4527         <tassilo@member.fsf.org>.
4528
4529 2007-12-06  Deepak Goel  <deego3@gmail.com>
4530
4531         * gnus-art.el (article-make-date-line):
4532         * gnus-start.el (gnus-load):
4533         * pop3.el (pop3-read-response): Fix buggy call to `error'.
4534
4535 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4536
4537         * gnus-art.el (gnus-use-idna)
4538         * gnus-start.el (gnus-site-init-file)
4539         * message.el (message-use-idna)
4540         * mm-uu.el (mm-uu-hide-markers)
4541         * smiley.el (smiley-style): Revert changes that suppress warnings.
4542
4543 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4544
4545         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
4546         specify charset to html source.  Reported by Christoph Conrad
4547         <christoph.conrad@gmx.de>.
4548
4549 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4550
4551         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
4552         idna-program in order to suppress byte compile warning issued by XEmacs
4553         that came to byte compile the default value section of defcustom forms
4554         recently.
4555
4556         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
4557         value of installation-directory.
4558
4559         * message.el (message-use-idna): Don't directly refer to the value of
4560         idna-program.
4561
4562         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
4563
4564         * smiley.el (smiley-style): Don't directly call face-attribute.
4565
4566 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
4567
4568         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
4569
4570         * gnus-dired.el: Reduce Gnus dependencies.
4571         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml): Don't
4572         require.  Use autoloads instead.
4573         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
4574         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
4575         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
4576         (gnus-dired-mode): Adjust doc string.
4577         (gnus-dired-mail-mode): New variable.
4578         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
4579         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
4580         (gnus-dired-mail-buffers): New function.  Return mail or message
4581         composition buffers.
4582         (gnus-dired-attach): Use it.
4583         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
4584         NO-DECODE.
4585         (gnus-dired-print): Use `gnus-print-buffer' depending on
4586         `gnus-dired-mail-mode'.
4587
4588 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
4589
4590         * rfc2047.el (rfc2047-encoded-word-regexp)
4591         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
4592         explaining what regexp patterns are for.
4593
4594 2007-12-04  Glenn Morris  <rgm@gnu.org>
4595
4596         * password.el: Move to password-cache.el.
4597
4598         * mml1991.el (password-read, password-cache-add, password-cache-remove):
4599         * mml2015.el (password-read, password-cache-add, password-cache-remove):
4600         * mml-smime.el (password-read, password-cache-add)
4601         (password-cache-remove):
4602         No need to autoload, since mml-sec requires password.
4603
4604         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
4605         * message.el (gnus-extract-address-components):
4606         * mml-smime.el (gnus-extract-address-components): Define for compiler.
4607
4608         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
4609         password.
4610
4611 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
4612
4613         * mailcap.el: Reduce dependencies.
4614         (mail-header-parse-content-type): Autoload.
4615         (mailcap-delete-duplicates): New alias.
4616         (mailcap-mime-info): Add optional argument NO-DECODE.
4617         (mailcap-mime-types): Use mailcap-delete-duplicates.
4618
4619         * message.el (message-ignored-supersedes-headers): Add "X-ID".
4620
4621 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
4622
4623         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
4624         (imap-parse-status): Upcase status-att for servers that sends them
4625         lower-case (e.g., MS Exchange 2007).
4626
4627 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4628
4629         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
4630         function.
4631
4632         * gnus-uu.el (gnus-uu-decode-yenc): New command.
4633         (gnus-uu-yenc-article): New function.
4634
4635         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
4636
4637         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original
4638         buffer.
4639
4640 2007-12-02  Glenn Morris  <rgm@gnu.org>
4641
4642         * binhex.el (binhex): New custom group.
4643         (binhex-decoder-program, binhex-decoder-switches)
4644         (binhex-use-external): Move to the binhex custom group.
4645
4646         * uudecode.el (uudecode): New custom group.
4647         (uudecode-decoder-program, uudecode-decoder-switches)
4648         (uudecode-use-external): Move to the uudecode custom group.
4649
4650         * netrc.el (top-level): Don't load `encrypt' features.
4651         (netrc-parse): Don't use encrypt.
4652         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
4653
4654         * encrypt.el: Remove file.
4655
4656 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
4657
4658         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
4659         matches on patches.
4660
4661         * gnus-art.el (gnus-article-browse-html-article): Mention
4662         `mm-text-html-renderer' in the doc string.
4663
4664         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
4665         string.  Add comments.
4666
4667         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
4668         if rhs is ASCII.
4669
4670 2007-12-01  Glenn Morris  <rgm@gnu.org>
4671
4672         * mail-source.el (top-level): Require format-spec before
4673         eval-when-compile.
4674
4675 2007-11-30  Glenn Morris  <rgm@gnu.org>
4676
4677         * encrypt.el: Require password, rather than autoloading password-read.
4678
4679 2007-11-29  Glenn Morris  <rgm@gnu.org>
4680
4681         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
4682         (sasl-make-client, sasl-next-step, sasl-step-data)
4683         (sasl-step-set-data): Declare as functions.
4684
4685 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
4686
4687         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
4688
4689 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
4690
4691         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
4692         certs should be verified and what is to be done in the event of a
4693         verification failure.
4694
4695         * gnus.el (gnus-method-to-server): Add an optional parameter so the
4696         caller can indicate whether the cache should be disregarded for this
4697         call.  This way the result of the call is reproducible at all times and
4698         can be considered a canonical server name for the supplied method.
4699         (gnus-agent-method-p): Canonicalize server names by pushing their
4700         method through `gnus-method-to-server' using the no-cache argument.
4701
4702         * gnus-srvr.el (gnus-server-insert-server-line): Call
4703         `gnus-method-to-server' with `no-cache' argument.
4704
4705         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
4706         gnus-agent-possibly-synchronize-flags as this should be called when the
4707         server is actually being opened.
4708         (gnus-agent-possibly-synchronize-flags)
4709         (gnus-agent-possibly-synchronize-flags-server): Move check for the
4710         flags file of an agentized server to the latter function.
4711
4712         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
4713         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
4714         after a connection has been established successfully.
4715
4716 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4717
4718         * gnus-art.el (article-display-face): Force to display face if called
4719         interactively; check if gnus-article-x-face-too-ugly matches author.
4720         (article-display-x-face): Display face even if From header is missing
4721         as article-display-face does.
4722
4723 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
4724
4725         * hashcash.el (message-narrow-to-headers-or-head)
4726         (message-fetch-field, message-goto-eoh)
4727         (message-narrow-to-headers): Declare as functions.
4728
4729 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
4730
4731         * mail-source.el (mail-sources): Default to fetch from file for
4732         compatibility with default of nnmail-spool-file.
4733
4734 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4735
4736         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
4737         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
4738         to look for encoded word that should be encoded again.
4739         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
4740         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
4741         encoding pattern.
4742         (rfc2047-decode-region): Switch strict regexp and loose one according
4743         to rfc2047-allow-irregular-q-encoded-words.
4744
4745 2007-11-25  Romain Francoise  <romain@orebokech.com>
4746
4747         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
4748
4749 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
4750
4751         * tls.el (tls-program): Provide more custom choices from
4752         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
4753         (tls-process-connection-type, tls-success): Remove "*" in doc string.
4754
4755 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4756
4757         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
4758         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
4759
4760         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
4761         `nnmail-spool-file'.
4762
4763         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
4764         `nnmail-spool-file'.
4765
4766         * gnus-move.el (gnus-change-server): Ditto.
4767
4768         * gnus-kill.el (gnus-batch-score): Ditto.
4769
4770         * gnus-cache.el (gnus-jog-cache): Ditto.
4771
4772         * gnus-msg.el (gnus-summary-reply):
4773         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
4774
4775 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4776
4777         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
4778         version.  Minor improvement to doc strings.
4779         (tls-program): Add comment.
4780
4781 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
4782
4783         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
4784         (tls-checktrust): New variable.  Check if GNU TLS complained about a
4785         mismatch between the hostname provided in the certificate and the name
4786         of the host connnecting to.
4787         (open-tls-stream): Use them.  Check certificates against trusted root
4788         certificates.
4789
4790 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4791
4792         * gnus-cache.el (gnus-cache-generate-nov-databases):
4793         Use nnml-generate-nov-databases-directory instead of
4794         nnml-generate-nov-databases-1.
4795
4796 2007-11-24  Glenn Morris  <rgm@gnu.org>
4797
4798         * message.el (message-tool-bar-retro): Update for rename
4799         mail_send.xpm->mail-send.xpm.
4800
4801 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
4802
4803         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
4804         `smime-ldap-search' for Emacs 22 and up.
4805
4806 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4807
4808         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
4809
4810         * message.el (message-send-mail-function): Fix error convention.
4811         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
4812         (message-widen-reply, message-send-mail, message-talkative-question)
4813         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
4814         (message-clone-locals, message-send-news): Use with-current-buffer.
4815         (message-insert-or-toggle-importance): Remove unused var `valid'.
4816         (message-make-references): Remove unused var `new-references'.
4817         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
4818
4819 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
4820
4821         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
4822         (spam-split-symbolic-return-positive): Reflow docstring.
4823         (spam-backends, spam-summary-exit-behavior)
4824         (spam-mark-ham-unread-before-move-from-spam-group)
4825         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
4826         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
4827         (spam-clear-cache, spam-backend-check, spam-install-backend)
4828         (spam-install-statistical-backend, spam-list-of-processors)
4829         (spam-group-processor-p, spam-split, spam-bogofilter-score)
4830         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
4831         (spam-check-crm114, spam-initialize, spam-unload-hook):
4832         Fix typos in docstrings.
4833
4834 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4835
4836         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
4837         been checked if they have never been read and those group levels are
4838         higher than the one that a user specified.
4839
4840 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4841
4842         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
4843         foreign groups unless a group level is specified by a user.
4844         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
4845
4846 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
4847
4848         * message.el (message-send-mail-function): Require sendmail.
4849
4850 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
4851
4852         * message.el (message-send-mail-function): Check for smtpmail too.
4853
4854         * utf7.el (utf7-encode, utf7-decode): Use coding system
4855         `utf-7'/`utf-7-imap' from utf-7.el' if available.
4856
4857         * message.el (message-send-mail-function): New function.
4858         (message-send-mail-function): Set default using
4859         message-send-mail-function.  Adjust doc string.
4860         (message-send-mail-with-mailclient): New function.
4861
4862 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
4863
4864         * smime.el (from):
4865         * rfc2047.el (message-posting-charset):
4866         * qp.el (mm-use-ultra-safe-encoding):
4867         * pop3.el (parse-time-months):
4868         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
4869         * nnml.el (files):
4870         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
4871         (jka-compr-compression-info-list, ange-ftp-path-format)
4872         (efs-path-regexp):
4873         * nndiary.el (files):
4874         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
4875         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
4876         (epg-digest-algorithm-alist, inhibit-redisplay)
4877         (password-cache-expiry):
4878         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
4879         (pgg-output-buffer, password-cache-expiry):
4880         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
4881         (efs-path-regexp):
4882         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
4883         (inhibit-redisplay):
4884         * mm-uu.el (file-name, start-point, end-point, entry)
4885         (gnus-newsgroup-name, gnus-newsgroup-charset):
4886         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
4887         (latin-unity-ucs-list):
4888         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
4889         (mm-uu-binhex-decode-function):
4890         * message.el (gnus-message-group-art, gnus-list-identifiers)
4891         (rmail-enable-mime-composing, gnus-local-organization)
4892         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
4893         (gnus-read-active-file, facemenu-add-face-function)
4894         (facemenu-remove-face-function, gnus-article-decoded-p)
4895         (tool-bar-mode):
4896         * mail-source.el (display-time-mail-function):
4897         * gnus-util.el (nnmail-pathname-coding-system)
4898         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
4899         (gnus-original-article-buffer, gnus-user-agent)
4900         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
4901         (xemacs-codename, sxemacs-codename, emacs-program-version):
4902         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
4903         * gnus-start.el (gnus-agent-covered-methods)
4904         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
4905         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
4906         (gnus-newsgroup-headers, gnus-group-list-mode)
4907         (gnus-group-mark-positions, gnus-newsgroup-data)
4908         (gnus-newsgroup-unreads, nnoo-state-alist)
4909         (gnus-current-select-method, mail-sources)
4910         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
4911         (nnmail-spool-file, gnus-cache-active-hashtb):
4912         * gnus-mh.el (mh-lib-progs):
4913         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
4914         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
4915         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
4916         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
4917         (gnus-group-buffer):
4918         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
4919         (font-lock-set-defaults):
4920         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
4921         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
4922         (gnus-summary-post-menu, total-parts, type, condition, length):
4923         * gnus-agent.el (gnus-agent-read-agentview):
4924         * flow-fill.el (show-trailing-whitespace):
4925         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
4926         eval-and-compile wrappers for byte compiler pacifiers.
4927
4928         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
4929         (mm-display-inline-fontify): Check for featurep 'xemacs not
4930         extent-list.
4931
4932         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
4933         itimer-list.
4934         (mm-create-image-xemacs): Only do something for XEmacs.
4935         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
4936
4937         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
4938
4939         * gnus-registry.el (gnus-adaptive-word-syntax-table):
4940         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
4941
4942 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
4943
4944         * nnimap.el (nnimap-split-download-body):
4945         * gnus-demon.el (gnus-demon):
4946         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
4947
4948 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4949
4950         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer): New
4951         macros.
4952         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
4953         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
4954         copy data from unibyte buffer to multibyte current buffer.
4955         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
4956         to copy data from unibyte current buffer to multibyte buffer.
4957         (nntp-make-process-buffer): Make process buffer unibyte.
4958
4959         * pop3.el (pop3-open-server): Fix typo in Lisp code.
4960
4961 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
4962
4963         * pop3.el (pop3-open-server): Accept and process data more robustly at
4964         connexion start to avoid spurious "POP SSL connexion failed" errors.
4965
4966 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4967
4968         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
4969         read group names.
4970
4971 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
4972
4973         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
4974
4975 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4976
4977         * nnmail.el (nnmail-parse-active): Make group names unibyte.
4978         (nnmail-save-active): Use a unibyte buffer when saving active file,
4979         which may contain non-ASCII group names.
4980
4981         * nnml.el (nnml-request-group): Decode group names in messages.
4982
4983 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
4984
4985         * message.el (message-citation-line-function)
4986         (message-insert-formatted-citation-line): Fix spelling of
4987         `message-insert-formated-citation-line'.
4988
4989 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
4990
4991         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
4992
4993 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4994
4995         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
4996         nnmail-pathname-coding-system.
4997
4998         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
4999         that a user enters; decode group names in messages.
5000
5001         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
5002
5003 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
5004
5005         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
5006
5007         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
5008
5009         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
5010         risky local variable.
5011
5012         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
5013
5014 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
5015
5016         * encrypt.el: Improve documentation to fix function name typo.
5017         Reported by Daiki Ueno <ueno@unixuser.org>.
5018
5019 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5020
5021         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
5022         even if the point is not in the last page of an article.
5023         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
5024         back to the previous page.
5025
5026 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
5027
5028         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
5029
5030 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5031
5032         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
5033
5034 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5035
5036         * message.el (message-check-news-body-syntax): Avoid
5037         mm-string-as-multibyte.
5038         (message-hide-headers): Don't assume (point-min)==1.
5039
5040 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
5041
5042         * message.el (message-remove-blank-cited-lines): Fix if remove is
5043         given.
5044         (message-bogus-address-regexp): New variable.
5045         (message-bogus-recipient-p): New function.
5046         (message-check-recipients): New command.
5047         (message-syntax-checks): Add `bogus-recipient'.
5048         (message-fix-before-sending): Add `bogus-recipient'.
5049
5050         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
5051         (gnus-treat-body-boundary): Don't test window-system.
5052
5053 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
5054
5055         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
5056
5057 2007-10-28  Miles Bader  <miles@gnu.org>
5058
5059         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
5060         at compile-time too.
5061
5062 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
5063
5064         * gnus-msg.el (gnus-message-setup-hook): Add
5065         `message-remove-blank-cited-lines' to options.
5066
5067 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
5068
5069         * message.el (message-remove-blank-cited-lines): New function.
5070         Suggested by Karl Plästerer.
5071
5072 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5073
5074         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
5075         mapc.
5076
5077         * imap.el (imap-open): Replace mapcar called for effect with mapc.
5078         (top-level): Use mapc to set functions to be traced for debugging.
5079
5080         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
5081         called for effect with while loop.
5082
5083         * message.el (message-talkative-question): Replace mapcar called for
5084         effect with mapc.
5085
5086         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
5087         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
5088         called for effect with dolist.
5089
5090         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
5091
5092         * nndiary.el: Use dolist instead of mapcar to add diary headers to
5093         gnus-extra-headers and nnmail-extra-headers.
5094
5095         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
5096         called for effect with dolist.
5097         (top-level): Use mapc to set functions to be traced for debugging.
5098
5099         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
5100         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
5101         dolist.
5102
5103         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
5104         Replace mapcar called for effect with mapc.
5105         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
5106         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
5107         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
5108         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
5109
5110         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
5111         remove-if that's a cl function.
5112
5113         * webmail.el (webmail-debug): Replace mapcar called for effect with
5114         dolist.
5115
5116         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
5117         with mapc.
5118
5119 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5120
5121         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
5122         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
5123         with while loop.
5124
5125         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
5126         functions from article-* functions.
5127         (gnus-multi-decode-header): Replace mapcar called for effect with
5128         dolist.
5129
5130         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
5131         (gnus-bookmark-show-details): Replace mapcar called for effect with
5132         while loop.
5133
5134         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
5135         called for effect with while loop.
5136
5137         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
5138         with dolist.
5139
5140         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Replace
5141         mapcar called for effect with dolist.
5142
5143         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
5144
5145         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
5146         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
5147         Replace mapcar called for effect with dolist.
5148         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
5149         mapc.
5150
5151         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
5152         Replace mapcar called for effect with dolist.
5153         (gnus-topic-list): Replace mapcar called for effect with mapc.
5154
5155         * gnus.el: Use mapc instead of mapcar to add autoloads.
5156
5157 2007-10-23  Richard Stallman  <rms@gnu.org>
5158
5159         * gnus-group.el (gnus-group-highlight): Mark as risky.
5160
5161 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5162
5163         * gnus.el (gnus-server-to-method): Return method found first in
5164         gnus-newsrc-alist.
5165
5166         * gnus-art.el (gnus-article-highlight-signature)
5167         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
5168         button overlay without the front stickiness.
5169
5170 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
5171
5172         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
5173         overview buffer needed a catch to receive its throw.
5174         (gnus-agent-flush-cache): Declared as interactive to make this function
5175         easier to use.
5176
5177 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
5178
5179         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
5180         `next-line'.
5181
5182 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5183
5184         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
5185         exclude address matching message-dont-reply-to-names.
5186
5187 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5188
5189         * gnus-util.el (gnus-string<): New function.
5190
5191         * gnus-sum.el (gnus-article-sort-by-author)
5192         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
5193
5194 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5195
5196         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
5197         the frame-focus tag is set in gnus-buffer-configuration.
5198
5199 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5200
5201         * gnus-art.el (gnus-article-add-button): Make a button overlay without
5202         the front stickiness.
5203
5204 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5205
5206         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
5207         url pattern; remove duplicate one.
5208         (gnus-article-extend-url-button): New function.
5209         (gnus-article-add-buttons): Use it.
5210         (gnus-button-push): Use concatenated url that it makes.
5211
5212 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
5213
5214         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
5215
5216 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5217
5218         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
5219         Don't hardcode point-min==1.
5220
5221 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
5222
5223         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
5224         Fix comment about "iso8859-1".
5225
5226 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
5227
5228         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
5229         ones returned from the verify-function.
5230
5231         * mm-uu.el (mm-uu-pgp-signed-extract-1): Call
5232         mml2015-extract-cleartext-signature if extraction failed.
5233
5234 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
5235
5236         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
5237         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
5238         failed.
5239
5240 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
5241
5242         * Relicense "GPLv2 or later" files to "GPLv3 or later".
5243
5244 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
5245
5246         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
5247         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
5248         recommends to use EasyPG instead of PGG.
5249
5250         * pgg.el: Revert to revision 6.23.2.16.
5251
5252         * pgg-def.el: Revert to revision 6.6.2.14.
5253
5254         * pgg-gpg.el: Revert to revision 6.23.2.34.
5255
5256 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
5257
5258         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
5259         to mark a thread as expirable.  Add variable `hide' to handle hiding of
5260         thread for both the null and zero (kill/expire thread) universal prefix
5261         cases.
5262         (gnus-summary-expire-thread): Add new function to expire a thread,
5263         using gnus-summary-kill-thread.
5264         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
5265         shortcuts for gnus-summary-expire-thread.
5266         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
5267         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
5268
5269 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
5270
5271         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
5272         extras value, so an extras entry can be deleted.
5273         (gnus-registry-delete-extra-entry): Use it.
5274         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
5275         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
5276         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
5277         storage through the gnus-registry, and provide an appropriate API for
5278         it.
5279
5280 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5281
5282         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
5283         Suggested by Leo <sdl.web@gmail.com>.
5284
5285         * gnus.el: Do.
5286
5287 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5288
5289         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
5290         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
5291
5292         * gnus-agent.el (gnus-agent-fetch-headers): Do.
5293
5294         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5295         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
5296
5297 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5298
5299         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
5300         newline.
5301         (nnmbox-request-accept-article): Don't change article in source buffer;
5302         narrow to header to use message-fetch-field rather than
5303         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
5304         (nnmbox-request-replace-article): Quote lines that'll be misidentified
5305         as delimiters; make sure article ends with newline.
5306         (nnmbox-delete-mail): Correct last position of article to be deleted;
5307         ignore X-Gnus-Newsgroup header in article body.
5308         (nnmbox-save-mail): Quote lines looking like delimiters at the right
5309         positions; make sure article ends with newline.
5310
5311         * message.el (message-display-abbrev): Don't infloop when a user
5312         inserts SPC in the beginning of header.
5313
5314         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
5315         coding-system-for-read and coding-system-for-write for XEmacs having no
5316         file-coding feature.
5317
5318         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
5319
5320 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
5321
5322         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
5323         list of groups not followed by default.  Fix type to be regexp.
5324         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
5325
5326 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
5327
5328         * hmac-def.el (define-hmac-function): Switch from old-style to
5329         new-style backquotes.
5330
5331         * md4.el (md4-make-step): Likewise.
5332
5333 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5334
5335         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
5336         raw-text coding system when saving .newsrc file, which may contain
5337         non-ASCII group names.
5338
5339 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5340
5341         * gnus-cus.el (gnus-score-extra): New widget.
5342         (gnus-score-extra-convert): New function.
5343         (gnus-score-customize): Use it for Extra.
5344
5345 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
5346
5347         * mml2015.el (mml2015-extract-cleartext-signature): New function.
5348         (mml2015-mailcrypt-clear-verify): Use it.
5349         (mml2015-gpg-clear-verify): Use it.
5350         (mml2015-pgg-clear-verify): Use it.
5351         (mml2015-epg-clear-verify): Replace the current part with the output
5352         from GnuPG; don't extract the plaintext by itself.
5353
5354         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
5355         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
5356         mml2015-clear-verify-function; don't touch the armor headers or
5357         dash-escaped text here.
5358
5359 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5360
5361         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
5362         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
5363         parts, or application/octet-stream as a last resort.
5364         (gnus-mime-view-part-as-type): Don't toggle display.
5365         (gnus-mime-view-part-as-charset): Don't turn off display before
5366         querying charset.
5367
5368         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
5369         stuff to undisplayer function in Emacs.
5370         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
5371
5372         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
5373         text/calendar parts.
5374
5375 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5376
5377         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
5378         decoding text/calendar parts.
5379
5380         * message.el (message-forward-make-body-mime): Always mark body as
5381         having no illegible text; remove signed-or-encrypted argument.
5382         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
5383
5384         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
5385         (mml-generate-mime-1): Don't encode body if it is specified to be in
5386         raw form; don't make buffer be unibyte when inserting multibyte string.
5387
5388 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5389
5390         * sha1.el: Fix up comment style.
5391         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
5392         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
5393
5394         * hex-util.el: Fix up comment style.
5395         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
5396
5397         * gnus-salt.el: Use with-current-buffer.
5398         (gnus-pick-setup-message): Fix long-standing typo.
5399
5400 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5401
5402         * imap.el (imap-logout-timeout): New variable.
5403         (imap-logout, imap-logout-wait): New functions.
5404         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
5405
5406         * nnimap.el (nnimap-logout-timeout): New server variable.
5407         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
5408         nnimap-logout-timeout.
5409
5410         * gnus-art.el (gnus-article-summary-command-nosave)
5411         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
5412
5413 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5414
5415         * gnus.el (gnus-maximum-newsgroup): New variable.
5416
5417         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
5418         according to gnus-maximum-newsgroup.
5419
5420         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5421         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
5422         Limit the range of articles according to gnus-maximum-newsgroup.
5423
5424 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
5425
5426         * gnus-art.el (gnus-sticky-article): Fixed problems described in
5427         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
5428         Don't perform gnus-configure-windows here; reuse existing sticky
5429         article buffer.
5430
5431         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
5432         it doesn't exist in gnus-article-mode.
5433
5434 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5435
5436         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
5437         (gnus-agent-decoded-group-name): New function.
5438         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
5439         (gnus-agent-expire-group-1): Use it; decode group name in messages.
5440
5441 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
5442
5443         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
5444         Add binding for gnus-sticky-article.
5445         (gnus-summary-exit): Don't kill sticky article buffers.
5446
5447         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
5448         article buffer.
5449         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
5450         (gnus-kill-sticky-article-buffers): New commands.
5451
5452 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5453
5454         * nntp.el (nntp-xref-number-is-evil): New server variable.
5455         (nntp-find-group-and-number): If it is non-nil, don't trust article
5456         numbers in the Xref header.
5457
5458 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5459
5460         * gnus-agent.el (gnus-agent-read-group): New function.
5461         (gnus-agent-flush-group, gnus-agent-expire-group)
5462         (gnus-agent-regenerate-group): Use it.
5463         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
5464         nnmail-pathname-coding-system.
5465
5466 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5467
5468         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
5469
5470         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
5471         that are unread as unread, and also as selected so that information of
5472         marks having been changed by a user may be updated when exiting group.
5473
5474 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5475
5476         * gnus-art.el (gnus-mime-display-single): Pass part number that is
5477         calculated ignoring signature parts to gnus-treat-article.
5478
5479 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5480
5481         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
5482         a point here in order to keep the window start.
5483         (gnus-insert-mime-security-button): Make a button overlay without the
5484         front stickiness.
5485         (gnus-mime-display-security): Goto the end of a button.
5486
5487         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
5488
5489 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5490
5491         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
5492         group-name-at-point.
5493         (gnus-group-completing-read): New function that offers decoded
5494         non-ASCII group names for completion.
5495         (gnus-fetch-group, gnus-group-read-ephemeral-group)
5496         (gnus-group-jump-to-group, gnus-group-make-group-simple)
5497         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
5498         (gnus-group-fetch-control): Use it.
5499         (gnus-fetch-group): Use group-name-at-point for the initial value
5500         rather than the default value; use gnus-alive-p.
5501
5502         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
5503         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
5504         (gnus-summary-post-news): Use gnus-group-completing-read.
5505
5506         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
5507         (gnus-read-move-group-name): Decode group name for completion.
5508
5509 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
5510
5511         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
5512         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
5513         Yamaoka slightly modified the code).
5514
5515 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5516
5517         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
5518         (nnmail-split-incoming): Bind it.
5519
5520         * nnml.el (nnml-group-name-charset): New function.
5521         (nnml-decoded-group-name): Use it; don't decode group name if
5522         nnmail-group-names-not-encoded-p is non-nil.
5523         (nnml-encoded-group-name): New function.
5524         (nnml-group-pathname): Inline nnml-decoded-group-name.
5525         (nnml-request-expire-articles): Decode group name in message.
5526         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
5527         nnmail-pathname-coding-system.
5528         (nnml-save-mail, nnml-active-number): Work with decoded group names and
5529         not decoded ones according to nnmail-group-names-not-encoded-p.
5530         (nnml-generate-active-info): Use nnml-encoded-group-name.
5531
5532 2007-08-08  Glenn Morris  <rgm@gnu.org>
5533
5534         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
5535         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
5536         doc-strings and comments.
5537
5538 2007-07-25  Glenn Morris  <rgm@gnu.org>
5539
5540         * Relicense all FSF files to GPLv3 or later.
5541
5542 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5543
5544         * gnus-sum.el (gnus-summary-move-article): Make
5545         gnus-summary-respool-article work.
5546
5547 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
5548
5549         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
5550         string.
5551
5552 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
5553
5554         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
5555         that should be ignored when comparing distant RSS articles with local
5556         ones.
5557         (nnrss-make-hash-index): New function.  Create a hash index according
5558         to the ignored fields.
5559         (nnrss-check-group): Use it.
5560
5561 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5562
5563         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
5564
5565         * gnus-art.el (article-decode-group-name): Decode Xref header too.
5566
5567         * gnus-group.el (gnus-group-make-group): Encode group name here unless
5568         the new optional argument ENCODED is non-nil.
5569         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
5570         coding system for encoding group name.
5571         (gnus-group-make-rss-group): Pass un-encoded group name to
5572         gnus-group-make-group.
5573         (gnus-group-set-info): Tell gnus-group-make-group that group name is
5574         encoded.
5575
5576         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
5577         Encode group name to which articles are moved or copied.
5578         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
5579         coding system for encoding Newsgroup, Followup-To and Xref headers.
5580
5581         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
5582         marks; use nnheader-file-coding-system to write a file.
5583         (nnagent-retrieve-headers): Bind file-name-coding-system to
5584         nnmail-pathname-coding-system.
5585
5586         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
5587
5588         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
5589         (nnml-request-article, nnml-request-create-group)
5590         (nnml-request-rename-group, nnml-find-id)
5591         (nnml-possibly-change-directory, nnml-possibly-create-directory)
5592         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
5593         (nnml-save-marks): Use nnml-group-pathname instead of
5594         nnmail-group-pathname.
5595
5596         (nnml-request-create-group, nnml-request-expire-articles)
5597         (nnml-request-move-article, nnml-request-delete-group)
5598         (nnml-deletable-article-p, nnml-possibly-create-directory)
5599         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
5600         (nnml-open-marks): Bind file-name-coding-system to
5601         nnmail-pathname-coding-system.
5602
5603         (nnml-request-article): Pass server argument to nnml-find-group-number.
5604         (nnml-request-create-group, nnml-active-number, nnml-save-marks): Pass
5605         server argument to nnml-possibly-create-directory.
5606         (nnml-request-accept-article): Pass server argument to
5607         nnml-active-number and nnml-save-mail.
5608         (nnml-find-group-number): Pass server argument to nnml-find-id.
5609         (nnml-request-update-info): Pass server argument to
5610         nnml-marks-changed-p.
5611
5612         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
5613         (nnml-save-mail, nnml-active-number): Add server argument.
5614
5615         (nnml-request-delete-group): Warn if group is missing.
5616         (nnml-get-nov-buffer): Decode group name.
5617         (nnml-generate-active-info): Encode group name.
5618         (nnml-open-marks): Decode group name in messages.
5619
5620 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5621
5622         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
5623         if it is not specified.
5624         (gnus-article-pipe-part, gnus-article-save-part)
5625         (gnus-article-interactively-view-part, gnus-article-copy-part)
5626         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
5627         (gnus-article-inline-part, gnus-article-save-part-and-strip)
5628         (gnus-article-replace-part, gnus-article-delete-part)
5629         (gnus-article-view-part-as-type): Pass raw prefix argument to
5630         gnus-article-part-wrapper.
5631
5632 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5633
5634         * gnus-agent.el (gnus-agent-save-active): Bind
5635         nnheader-file-coding-system to gnus-agent-file-coding-system.
5636
5637         * gnus-cache.el (gnus-cache-save-buffers)
5638         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
5639         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
5640         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
5641         (gnus-cache-braid-nov, gnus-cache-braid-heads)
5642         (gnus-cache-generate-active, gnus-cache-rename-group)
5643         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
5644         (gnus-cache-update-overview-total-fetched-for): Bind
5645         file-name-coding-system to nnmail-pathname-coding-system.
5646         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names): New
5647         variables.
5648         (gnus-cache-decoded-group-name): New function.
5649         (gnus-cache-file-name): Use it.
5650         (gnus-cache-generate-active): Use non-decoded group name for active.
5651
5652         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
5653         right place.
5654         (gnus-write-active-file): Don't break non-ASCII group names.
5655
5656         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
5657         nnmail-pathname-coding-system.
5658
5659         * lpath.el: Bind default-file-name-coding-system,
5660         file-name-coding-system and language-info-alist for XEmacs.
5661
5662         * gnus-uu.el (gnus-uu-decode-save): Typo.
5663
5664 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5665
5666         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
5667
5668 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5669
5670         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
5671         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
5672         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
5673         (gnus-agent-flush-group, gnus-agent-flush-cache)
5674         (gnus-agent-fetch-headers, gnus-agent-load-alist)
5675         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
5676         (gnus-agent-retrieve-headers, gnus-agent-request-article)
5677         (gnus-agent-regenerate-group)
5678         (gnus-agent-update-files-total-fetched-for)
5679         (gnus-agent-update-view-total-fetched-for): Bind
5680         file-name-coding-system to nnmail-pathname-coding-system.
5681         (gnus-agent-group-pathname): Don't encode file names by
5682         nnmail-pathname-coding-system.
5683         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
5684         coding-system-for-write instead of buffer-file-coding-system to
5685         gnus-agent-file-coding-system.
5686
5687         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
5688         Decode group name.
5689
5690         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
5691
5692         * gnus-start.el (gnus-update-active-hashtb-from-killed)
5693         (gnus-read-newsrc-el-file): Make group names unibyte.
5694
5695         * nnmail.el (nnmail-group-pathname): Don't encode file names by
5696         nnmail-pathname-coding-system.
5697
5698         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
5699         (nnrss-request-delete-group): Bind file-name-coding-system to
5700         nnmail-pathname-coding-system.
5701         (nnrss-read-server-data, nnrss-read-group-data): Bind
5702         file-name-coding-system correctly.
5703         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
5704
5705         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
5706         (nntp-server-to-method-cache): New variable.
5707         (nntp-group-pathname): New function that decodes non-ASCII group names.
5708         (nntp-possibly-create-directory, nntp-marks-changed-p)
5709         (nntp-save-marks, nntp-open-marks): Use it.
5710         (nntp-possibly-create-directory, nntp-open-marks):
5711         Bind file-name-coding-system to nnmail-pathname-coding-system.
5712         (nntp-open-marks): Decode group names when bootstrapping marks.
5713
5714         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
5715         Newsgroups and Folowup-To headers.
5716
5717 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5718
5719         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
5720         (gnus-server-closed-face, gnus-server-denied-face)
5721         (gnus-server-offline-face): Remove variable.
5722         (gnus-server-font-lock-keywords): Use faces that are not aliases.
5723
5724         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
5725         of modifying message-stack directly for XEmacs.
5726
5727         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
5728         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
5729         if the coding-system argument is nil for XEmacs.
5730
5731         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
5732         mm-charset-override-alist.
5733
5734         * rfc2047.el: Don't require base64; require rfc2045 for the function
5735         rfc2045-encode-string.
5736         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
5737         to quote the parameter value.
5738
5739 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5740
5741         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
5742         form in gnus-group-name-charset-method-alist.
5743
5744         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
5745         overrides the default layout edit-form.
5746
5747         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
5748
5749         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
5750
5751 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5752
5753         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
5754         as unfetched articles.
5755
5756 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
5757
5758         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
5759
5760 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5761
5762         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
5763         original back end that keeps marks in the local system.
5764
5765 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5766
5767         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
5768         arg of pop-to-buffer for XEmacs.
5769         (gnus-article-read-summary-keys): Ditto; don't restore window
5770         configuration if summary command ends up with neither article buffer
5771         nor summary buffer; describe bindings if summary keys end with C-h.
5772
5773 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5774
5775         * message.el (message-fix-before-sending): Skip raw message part to be
5776         forwarded while checking illegible text.
5777         (message-forward-make-body-mime, message-forward-make-body): Mark
5778         signed or encrypted raw message as having no illegible text.
5779
5780 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5781
5782         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
5783         (gnus-message-with-timestamp-1): New macro.
5784         (gnus-message-with-timestamp): New function.
5785         (gnus-message): Use them.
5786
5787         * nnheader.el (nnheader-message): Use them.
5788
5789 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
5790
5791         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
5792         .newsrc.eld file.
5793
5794 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5795
5796         * gnus-agent.el (gnus-agent-fetch-headers)
5797         (gnus-agent-retrieve-headers): Bind
5798         gnus-decode-encoded-address-function to identity.
5799
5800         * nntp.el (nntp-send-xover-command): Recognize an xover command is
5801         available also when the server returns simply a dot.
5802
5803         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
5804
5805 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5806
5807         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
5808
5809 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5810
5811         * gnus-ems.el (gnus-x-splash): Make it work.
5812
5813         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
5814         from being used.
5815
5816         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
5817
5818 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5819
5820         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
5821         4th and the 5th arguments.
5822
5823         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
5824         the front stickiness.
5825         (gnus-article-summary-command-nosave): Correct the order of the
5826         arguments passed to pop-to-buffer.
5827         (gnus-article-read-summary-keys): Ditto; make it work properly when the
5828         summary command ends up with the article buffer.
5829
5830         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
5831         the same faces.
5832
5833 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
5834
5835         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
5836
5837 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
5838
5839         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
5840         * gnus-sum.el (gnus-summary-highlight):
5841         * pgg.el (pgg-sign-region, pgg-sign):
5842         * mail-source.el (mail-source-delete-old-incoming-confirm):
5843         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
5844
5845 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5846
5847         * gnus-art.el (gnus-mime-view-part-externally)
5848         (gnus-mime-view-part-internally): Fix predicate function passed to
5849         completing-read.
5850
5851         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
5852
5853         * gnus.el (gnus-update-message-archive-method): Add :version.
5854
5855 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5856
5857         * gnus.el (gnus-update-message-archive-method): New variable.
5858
5859         * gnus-start.el (gnus-setup-news): Update saved "archive" method
5860         according to gnus-message-archive-method if
5861         gnus-update-message-archive-method is non-nil.
5862
5863 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5864
5865         * gnus-sum.el (gnus-summary-limit-to-address): New function.  Suggested
5866         by Loic Dachary <loic@dachary.org>.
5867         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
5868
5869 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5870
5871         * message.el (message-pop-to-buffer): Add switch-function argument.
5872         (message-mail): Pass switch-function argument to it.
5873
5874 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
5875
5876         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
5877         Improve doc string.
5878
5879 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5880
5881         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
5882         (gnus-header-content)
5883         * gnus-cite.el (gnus-cite-10)
5884         * gnus-srvr.el (gnus-server-closed)
5885         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
5886         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
5887         (gnus-group-mail-3-empty, gnus-group-mail-low)
5888         (gnus-group-mail-low-empty, gnus-splash)
5889         * message.el (message-header-to, message-header-cc)
5890         (message-header-subject, message-header-other, message-header-name)
5891         (message-header-xheader, message-separator, message-cited-text)
5892         (message-mml): Lighten colors of faces used for dark background.
5893
5894 2007-05-24  Simon Josefsson  <simon@josefsson.org>
5895
5896         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
5897         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
5898
5899 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5900
5901         * message.el (message-narrow-to-headers-or-head):
5902         Ignore mail-header-separator in the body.
5903
5904 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5905
5906         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
5907         same as window size.
5908
5909 2007-05-22  Kevin Ryde  <user42@zip.com.au>
5910
5911         * message.el (message-font-lock-keywords): Use message-header-xheader
5912         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
5913         ahead of the anything pattern, to get it recognised.
5914
5915 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5916
5917         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
5918         spam.el loads uses it in the compiled defadvice form.
5919
5920 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
5921
5922         * gnus-sum.el (gnus-articles-to-read)
5923         (gnus-summary-insert-old-articles): Don't truncate group name for
5924         `read-string'.
5925
5926         * gnus-util.el (gnus-limit-string): Delete this function.
5927
5928         * gnus-sum.el (gnus-simplify-subject-fully): Use
5929         `truncate-string-to-width' instead.
5930
5931 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
5932
5933         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.  Tell
5934         if, on summary exit, the next group has to be selected.
5935         (gnus-summary-exit): Use it.
5936
5937 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
5938
5939         * gnus-art.el (gnus-article-mode): Fix comment about displaying
5940         non-break space.
5941
5942 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5943
5944         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
5945         Check if group is not a directory.
5946         (nnfolder-request-expire-articles): Don't delete articles if the target
5947         group is not available.
5948
5949         * nnml.el (nnml-request-create-group): Properly check if group is not a
5950         file.
5951         (nnml-request-expire-articles): Don't delete articles if the target
5952         group is not available.
5953
5954         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
5955         Don't quote characters that are within parentheses.
5956
5957 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5958
5959         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
5960         (gnus-handle-ephemeral-exit): Select article according to it.
5961
5962 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
5963
5964         * message.el (message-insert-formated-citation-line): Remove newline.
5965         (message-citation-line-format): Add final \n here so that the user can
5966         avoid a blank line.
5967
5968 2007-05-03  Dan Christensen  <jdc@uwo.ca>
5969
5970         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
5971         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
5972         Update lanl/arXiv support.
5973
5974 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
5975
5976         * gnus.el: Bump version number.
5977
5978 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5979
5980         * gnus.el (gnus-version-number): Bump version.
5981
5982 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5983
5984         * gnus.el: No Gnus v0.6 is released.
5985
5986 2007-04-27  Didier Verna  <didier@xemacs.org>
5987
5988         * gnus-util.el (gnus-orify-regexp): Moved and renamed to ...
5989         * gmm-utils.el (gmm-regexp-concat): here.
5990         * message.el: Don't require 'gnus-util.
5991         (message-dont-reply-to-names): Handle name change above.
5992         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
5993
5994 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5995
5996         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
5997         since the initial value varies according to the system.
5998
5999 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6000
6001         * mm-util.el (mm-charset-synonym-alist): Defcustom.
6002
6003 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
6004
6005         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
6006
6007 2007-04-24  Didier Verna  <didier@xemacs.org>
6008
6009         Improve the type of gnus-ignored-from-addresses.
6010         * gnus-util.el (gnus-orify-regexp): New function.
6011         * message.el (gnus-util): Require it.
6012         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
6013         * gnus-sum.el (gnus-ignored-from-addresses): New function.
6014         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
6015
6016 2007-04-24  Didier Verna  <didier@xemacs.org>
6017
6018         * gnus-sum.el:
6019         * gnus-utils.el: Fix some trailing whitespaces.
6020
6021 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
6022
6023         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
6024         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
6025         article's Message-ID; refer parent article in summary buffer.
6026
6027         * message.el (message-bounce): Call mime-to-mml.
6028
6029         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
6030         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
6031         optimize and/or forms properly.
6032
6033 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
6034
6035         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
6036         URL.
6037
6038 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6039
6040         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
6041
6042 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6043
6044         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
6045         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
6046         displayed of multipart/alternative part if it is invoked from summary
6047         buffer.
6048
6049         * mm-view.el (mm-inline-text-html-render-with-w3m)
6050         (mm-inline-text-html-render-with-w3m-standalone)
6051         (mm-inline-render-with-function): Use mail-parse-charset by default.
6052
6053 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
6054
6055         * parse-time.el (parse-time-string-chars): Check if CHAR
6056         is less than the length of parse-time-syntax.
6057
6058 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6059
6060         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
6061         from gnus-newsgroup-processable.
6062
6063 2007-04-16  Didier Verna  <didier@xemacs.org>
6064
6065         * gnus-msg.el (gnus-configure-posting-styles): Handle
6066         message-signature-directory properly with :file syntax.  Reported by
6067         "Leo".
6068
6069 2007-04-11  Didier Verna  <didier@xemacs.org>
6070
6071         New user option: message-signature-directory.
6072         * gnus-msg.el (gnus-configure-posting-styles): Support it.
6073         * message.el (message-insert-signature): Ditto.
6074         * message.el (message-signature-file): Doc update.
6075         * message.el (message-signature-directory): New.
6076
6077 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6078
6079         * gnus-msg.el (gnus-inews-yank-articles): Use
6080         message-exchange-point-and-mark instead of exchange-point-and-mark.
6081
6082 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6083
6084         * message.el (message-yank-original): Make sure cited text ends with
6085         newline; don't exchange point and mark.
6086
6087 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
6088
6089         * tls.el (open-tls-stream): Properly handle case where there
6090         is no associated buffer.
6091
6092 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
6093
6094         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
6095         message-yank-original, make sure (< mark TEXT point).
6096
6097 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
6098
6099         * message.el (message-fill-column): New variable.
6100         (message-mode): Use it.  Add comment on a possible new hook.
6101
6102         * nnmail.el (nnmail-spool-file): Mark as obsolete.
6103         (nnmail-get-new-mail): Reformat.
6104
6105         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
6106
6107         * gmm-utils.el: Fix Commentary.
6108         (gmm-tool-bar-from-list): Fix typo in doc string.
6109
6110 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
6111
6112         * message.el (message-yank-original): Don't switch point and mark
6113         unnecessarily to put point and mark as documented.
6114
6115 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6116
6117         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
6118         from the message heads.
6119
6120 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
6121
6122         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
6123         article buffer does not have a window.  This may not be the best
6124         solution but is certainly better than setting the start of the null,
6125         that is the current, window.
6126
6127 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
6128
6129         * gnus-draft.el (gnus-draft-setup-hook): New hook.
6130         (gnus-draft-setup): Run it.
6131
6132         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
6133         gnus-score-fast-scoring.  Allow regexp.
6134         (gnus-score-headers): Use it.
6135
6136         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
6137         XEmacs.
6138
6139         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
6140         string.
6141         (gnus-button-alist): Also catch `<f1> k ...'.
6142         (gnus-treat-display-x-face): Fix doc string.
6143
6144 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6145
6146         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
6147         evaluation of gnus-extended-version to ensure correct generation of the
6148         User-Agent header when message-generate-headers-first is used.
6149
6150 2007-03-24  Simon Josefsson  <simon@josefsson.org>
6151
6152         * hashcash.el (hashcash-generate-payment-async): Don't crash if
6153         hashcash-path is nil.  Don't call callback with incorrect number of
6154         parameters if val is 0.
6155
6156 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6157
6158         * message.el (message-required-news-headers):
6159         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
6160
6161 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
6162
6163         * tls.el (open-tls-stream): In handshake-waiting loop,
6164         don't wait more if there is output available to process.
6165
6166 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
6167
6168         * tls.el (tls-program): Doc fix.
6169
6170 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6171
6172         * message.el (message-generate-new-buffers): Change the meaning of the
6173         nil value; add `standard' to the choices; treat t as `unique'; improve
6174         doc string.
6175         (gnus-select-frame-set-input-focus): Autoload.
6176         (message-buffer-name): Search for the existing message buffer if
6177         message-generate-new-buffers is nil or `standard'; treat the value t of
6178         message-generate-new-buffers as `unique'.
6179         (message-pop-to-buffer): Raise the frame already displaying the message
6180         buffer; clear the echo area after querying.
6181         (message-setup): Pass the `continue' argument to compose-mail.
6182         (message-mail): Prefer `switch-function' if it is given; search for the
6183         existing message buffer if the `continue' argument is non-nil; pass
6184         continue and switch-function arguments to compose-mail by way of
6185         message-setup.
6186         (message-mail-other-window): Adjust argument of message-setup.
6187         (message-mail-other-frame): Ditto.
6188
6189 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6190
6191         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
6192         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
6193         to turn font-lock on when turning gnus-message-citation-mode on.
6194
6195 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
6196
6197         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
6198         (mml-smime-function-alist): New variable; add epg as the backend.
6199         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
6200         mml-smime- functions instead.
6201         * mm-view.el: Require smime.
6202
6203 2007-03-05  Didier Verna  <didier@xemacs.org>
6204
6205         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
6206         instead of just inheritance for posting styles.
6207         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
6208
6209 2007-02-24  Chris Moore  <dooglus@gmail.com>
6210
6211         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
6212         * pgg-pgp.el (pgg-pgp-encrypt-region):
6213         * pgg-gpg.el (pgg-gpg-encrypt-region):
6214         Check pgg-encrypt-for-me if no other recipients.
6215
6216 2007-02-24  John Paul Wallington  <jpw@pobox.com>
6217
6218         * tls.el (tls-certtool-program): Fix custom type.
6219
6220 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6221
6222         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
6223         and point-at-eol instead of line-(beginning|end)-position.
6224
6225         * assistant.el (assistant-parse-buffer): Ditto.
6226
6227         * netrc.el (netrc-parse-services): Ditto.
6228
6229 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
6230
6231         * mml2015.el (mml2015-epg-find-usable-key): New function.
6232         (mml2015-epg-sign): Use it.
6233         (mml2015-epg-encrypt): Use it.
6234
6235 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6236
6237         * message.el (message-make-in-reply-to): Quote name containing
6238         non-ASCII characters.  It will make the RFC2047 encoder cause an error
6239         if there are special characters.  Reported by NAKAJI Hiroyuki
6240         <nakaji@jp.freebsd.org>.
6241
6242 2007-02-27  Didier Verna  <didier@xemacs.org>
6243
6244         Include the group parameters as well as the topic ones in the
6245         inheritance filter process.
6246         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
6247         argument GROUP-PARAMS-LIST.
6248         * gnus-topic.el (gnus-group-topic-parameters): Use it.
6249
6250 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6251
6252         * nntp.el (nntp-never-echoes-commands)
6253         (nntp-open-connection-functions-never-echo-commands): New variables.
6254         (nntp-send-command): Use them.
6255
6256 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
6257
6258         * mml2015.el (mml2015-epg-verify): Simplified.
6259
6260 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6261
6262         * mml.el (mml-content-disposition-alist): New user option.
6263         (mml-content-disposition): New function.
6264         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
6265         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
6266
6267 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
6268
6269         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
6270         verification.
6271
6272 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6273
6274         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
6275         articles posted in the last 24 hours.
6276
6277 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
6278
6279         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
6280
6281 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
6282
6283         * nntp.el (nntp-send-command): Don't wait for echoes when
6284         nntp-open-ssl-stream is used.
6285
6286 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6287
6288         * gnus-cite.el (gnus-test-font-lock-add-keywords)
6289         (gnus-message-add-citation-keywords)
6290         (gnus-message-remove-citation-keywords): Remove.
6291         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
6292         directly, make the variables in font-lock-defaults buffer-local, add
6293         gnus-message-citation-keywords to them and then update the value of
6294         font-lock-keywords.
6295
6296 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6297
6298         * message.el (message-cite-original-1): Don't call
6299         gnus-article-highlight-citation.
6300
6301         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
6302         citations; fix line count.
6303
6304 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
6305
6306         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
6307         (gnus-message-add-citation-keywords)
6308         (gnus-message-remove-citation-keywords): Use it; fix the emulating
6309         versions of font-lock-add-keywords and font-lock-remove-keywords to
6310         work with XEmacs correctly.
6311
6312 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6313
6314         * gnus-cite.el (gnus-cite-face-list): Set the values of
6315         gnus-message-max-citation-depth and gnus-message-citation-keywords.
6316         (gnus-message-max-citation-depth): Use defvar rather than defconst.
6317         (gnus-message-cite-prefix-regexp): New variable.
6318         (gnus-message-search-citation-line): Use it; protect against long
6319         citation prefix; fill match data with nil rather than 0 for XEmacs; set
6320         the 0th match data for Emacs.
6321         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
6322         (gnus-message-add-citation-keywords): Append keywords rather than
6323         prepending; emulate font-lock-add-keywords if it is not available.
6324         (gnus-message-remove-citation-keywords): Emulate
6325         font-lock-remove-keywords if it is not available.
6326
6327         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
6328
6329         * message.el (message-cite-prefix-regexp): Set the value of
6330         gnus-message-cite-prefix-regexp.
6331
6332 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6333
6334         * nnweb.el (nnweb-google-parse-1): Update parser.
6335
6336 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
6337
6338         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
6339
6340 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6341
6342         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
6343         regexp.
6344
6345 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6346
6347         * uudecode.el (uudecode-string-to-multibyte): New function emulating
6348         string-to-multibyte.
6349         (uudecode-decode-region-internal): Use it.
6350
6351         * lpath.el: Fbind string-as-multibyte for XEmacs.
6352
6353 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
6354
6355         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix
6356         custom choice.
6357
6358         * gnus-art.el (gnus-signature-limit): Fix custom choice.
6359
6360 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
6361
6362         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
6363
6364         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
6365         `write-region' to respect `mm-inhibit-file-name-handlers'.
6366
6367 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
6368
6369         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
6370         Use gnus-home-directory instead of "~/" or "$HOME".
6371
6372 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
6373
6374         * encrypt.el (encrypt-insert-file-contents): Add better prompt
6375         to mention filename.
6376         Add comments at beginning regarding usage.
6377         (encrypt-write-file-contents): Change interactive so a string is
6378         acceptable.  If the file has no associated model, show an error instead
6379         of a nonsense prompt.
6380
6381 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
6382
6383         * spam.el (spam-bsfilter-ham-switch): Fix typo.
6384         Thanks to Yoshihiko Yamada for kind notification of this typo.
6385
6386 2007-01-12  Kenichi Handa  <handa@m17n.org>
6387
6388         * uudecode.el (uudecode-decode-region-internal): Make it work in a
6389         multibyte buffer.
6390
6391 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
6392
6393         * gnus-score.el (gnus-score-fast-scoring): New variable.
6394         (gnus-score-headers): Use it.
6395
6396         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
6397
6398         * message.el (message-cite-original-1): Call
6399         gnus-article-highlight-citation if requested.
6400         (message-make-from): Allow name and address as optional arguments.
6401
6402         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
6403
6404         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
6405         bugs to doc string.
6406         (gnus-button-alist): Add mid\\|message-id.
6407         (gnus-button-fetch-group): Extend for use in
6408         `browse-url-browser-function'.
6409         (gnus-button-url-regexp): Try to catch paired parentheses like in
6410         Wikipedia URLs.
6411
6412         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
6413         Suggested by Simon Krahnke <overlord@gmx.li>.
6414
6415 2007-01-13  Romain Francoise  <romain@orebokech.com>
6416
6417         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
6418         Update copyright.
6419
6420 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
6421
6422         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
6423
6424 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
6425
6426         * gnus-registry.el (gnus-registry-unfollowed-groups)
6427         (gnus-registry-split-fancy-with-parent): Fix documentation.
6428
6429 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6430
6431         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
6432         from nnweb groups.
6433
6434 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6435
6436         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
6437         Xref urls.  Erase buffer before requesting head.
6438
6439 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
6440
6441         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
6442         customizable.
6443
6444 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
6445
6446         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
6447         no signing key is found.
6448         (mml2015-epg-encrypt): Ask user whether to skip or abort if
6449         no encrypting and/or signing key is found.
6450
6451 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
6452
6453         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
6454
6455 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6456
6457         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
6458         headers read from disk with the ones newly found in the current search.
6459         This should no longer cause problems, because the article numbers in
6460         Gmane's `nov.php' output are ignored since the previous change.
6461
6462 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6463
6464         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
6465
6466 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6467
6468         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
6469         replace-regexp-in-string; bind url-version; fbind display-images-p and
6470         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
6471         find-face and set-itimer-function for Emacs; bind itimer-list for
6472         Emacs.
6473
6474         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
6475
6476 2007-01-01  Romain Francoise  <romain@orebokech.com>
6477
6478         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
6479
6480 2006-12-31  Steve Youngs  <steve@sxemacs.org>
6481
6482         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
6483         `define-minor-mode' macro definition expanded properly.
6484         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
6485         exclude it there.
6486
6487         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
6488         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
6489         `fboundp' test.
6490         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
6491         This is OK to autoload in (S)XEmacs now.
6492
6493 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6494
6495         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
6496         keystroke.
6497         (gnus-summary-limit-to-singletons): Fix typo.
6498
6499         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
6500         else fails.
6501
6502 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6503
6504         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
6505         docstring.
6506
6507         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
6508         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
6509         (gnus-summary-insert-dormant-articles): Fix typo in message.
6510
6511 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
6512
6513         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
6514         nil for XEmacs.
6515         (gnus-message-citation-mode): Don't autoload in XEmacs.
6516
6517         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
6518
6519 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
6520
6521         * nnimap.el (nnimap-expunge-search-string): Mention
6522         nnimap-search-uids-not-since-is-evil in docstring.
6523
6524 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
6525
6526         * spam.el: Revert to make-obsolete-variable because
6527         define-obsolete-variable-alias is not supported in Emacs 21.
6528
6529         * spam.el (spam-ifile-path, spam-ifile-database-path)
6530         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
6531         make-obsolete-variable.
6532         (spam-bsfilter-path, spam-bsfilter-program)
6533         (spam-spamassassin-path, spam-spamassassin-program)
6534         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.  Don't
6535         use "path" inappropriately.
6536         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
6537         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
6538         variable names.
6539
6540 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
6541
6542         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
6543         summary buffer.
6544
6545         * password.el (password-cache-remove): Use clear-string to burn
6546         password, if available.
6547
6548 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6549
6550         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
6551
6552         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
6553
6554         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
6555         (gnus-message-highlight-citation): Move defcustom here from
6556         gnus-cite.el.
6557         (gnus-message-citation-mode): Autoload.
6558
6559         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
6560         checks to make it compile with XEmacs.
6561         (gnus-message-citation-mode): New minor mode.
6562         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
6563         (gnus-message-highlight-citation): New variables.
6564         (gnus-message-search-citation-line)
6565         (gnus-message-add-citation-keywords)
6566         (gnus-message-remove-citation-keywords)
6567         (turn-on-gnus-message-citation-mode)
6568         (turn-off-gnus-message-citation-mode): New functions.
6569
6570 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
6571
6572         * gnus-cite.el: Enable highlighting of different citation levels in
6573         message-mode.
6574
6575 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6576
6577         * message.el (message-make-fqdn): Fix comment.
6578         (message-bogus-system-names): Add ".local".
6579
6580         * spam.el (spam-ifile-path, spam-ifile-program)
6581         (spam-ifile-database-path, spam-ifile-database)
6582         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
6583         Don't use "path" inappropriately.
6584         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
6585         strings.
6586         (spam-check-ifile, spam-ifile-register-with-ifile)
6587         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter): Use
6588         new variable names.
6589
6590         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
6591         (gnus-treat-display-smileys): Simplify using
6592         gnus-image-type-available-p.
6593
6594         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
6595         available.
6596
6597         * gnus-xmas.el (gnus-xmas-image-type-available-p): Use
6598         `display-images-p' if available.
6599
6600 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6601
6602         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
6603         one after turning on the buffer's multibyteness instead of decoding
6604         them directly in the unibyte buffer that causes unexpected conversion
6605         in Emacs 23 (unicode).
6606
6607 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6608
6609         * message.el (message-generate-hashcash): Fix custom type.
6610
6611 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6612
6613         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
6614
6615 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6616
6617         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
6618         disconnect icons.  Add help text.
6619
6620 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
6621
6622         * spam.el (spam-extra-header-to-number): CRM114 spam score is
6623         negated to be consistent with the others we handle.
6624
6625 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6626
6627         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
6628         version of gnus-summary-buffer to something, so that we can use two
6629         article buffers at the same time.
6630
6631 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
6632
6633         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
6634         trigger all the extra headers.
6635         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
6636         sorting.
6637
6638 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6639
6640         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
6641         solid groups.
6642
6643 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
6644
6645         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
6646
6647 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
6648
6649         * legacy-gnus-agent.el: Add Copyright notice.
6650
6651 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
6652
6653         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
6654
6655 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6656
6657         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
6658
6659         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
6660         to make it work reliably in CVS Emacs.
6661         (gnus-summary-limit-strange-charsets-predicate)
6662         (gnus-summary-limit-to-predicate): New functions.
6663
6664 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
6665
6666         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
6667         specifying array size.
6668         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
6669         array if it is too small.
6670         (gnus-sort-threads-recursive): Renamed from gnus-sort-thread-1.
6671         (gnus-sort-threads-loop): New function.
6672
6673 2006-12-06  Chris Moore  <dooglus@gmail.com>
6674
6675         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
6676         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
6677
6678 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
6679
6680         * mm-url.el (mm-url-predefined-programs): Call curl with correct
6681         options.
6682
6683 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6684
6685         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
6686         DOS-ing the recipient.
6687
6688         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
6689         the headers when creating the mapping to avoid mismappings.
6690         (nnweb-gmane-create-mapping): Always nix out old mapping.
6691
6692 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6693
6694         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
6695         and mm-verify-option to never.
6696
6697 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6698
6699         * message.el (message-signed-or-encrypted-p): New function.
6700         (message-forward-make-body): Use it.
6701
6702         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
6703         Replace encode-coding-string with mm-encode-coding-string.
6704
6705 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6706
6707         * nneething.el (nneething-decode-file-name): Replace
6708         decode-coding-string with mm-decode-coding-string.
6709
6710         * gnus-int.el (gnus-open-server): Say failed server's name.
6711
6712 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6713
6714         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
6715         strings to a single string.  Quote `errors-file-name'.
6716         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
6717         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
6718         Adjust calls.  Use `shell-quote-argument'.
6719
6720 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
6721
6722         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
6723         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
6724
6725         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
6726         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
6727         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
6728         (gnus-group-make-directory-group, gnus-group-transpose-groups):
6729         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
6730         (gnus-subscribe-newsgroup, gnus-1):
6731         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
6732         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
6733         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
6734         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
6735
6736 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6737
6738         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
6739         keystroke.
6740         (gnus-summary-limit-to-bodies): Implement headersp.
6741
6742 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6743
6744         * dns.el (query-dns): Protect against "Process dns deleted" strings.
6745
6746 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6747
6748         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
6749
6750 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6751
6752         * message.el (message-generate-hashcash): Expand range of values to
6753         include `opportunistic'.
6754         (message-send-mail): Use it.
6755
6756 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6757
6758         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
6759         and comment it.
6760
6761         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
6762
6763 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
6764
6765         * gnus-util.el (gnus-extract-address-components): Improve comment.
6766
6767 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6768
6769         * gnus-util.el (gnus-extract-address-components): Work with address in
6770         which the name portion contains @.
6771
6772         * lpath.el: Fbind custom-autoload.
6773
6774 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6775
6776         * gnus.el (gnus-start): Move custom group up.
6777         (gnus-select-method): Don't autoload, but make it available for
6778         `customize-variable'.
6779         (gnus-getenv-nntpserver): Don't autoload.
6780
6781 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
6782
6783         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
6784
6785 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6786
6787         * message.el (message-sendmail-extra-arguments): New variable.
6788         (message-send-mail-with-sendmail): Use it.
6789
6790 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6791
6792         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
6793         mm-with-unibyte-current-buffer to make string unibyte.
6794
6795         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
6796         mm-string-as-multibyte.
6797
6798 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
6799
6800         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
6801         Reported by Werner Koch <wk@gnupg.org>.
6802
6803 2006-11-14  Daiki Ueno  <ueno@p360>
6804
6805         * mml2015.el: Autoload epa-select-keys when compiling.
6806
6807 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6808
6809         * mml2015.el (mml2015-epg-sign): Save the signing keys in
6810         message-options.
6811         (mml2015-epg-encrypt): Save the recipient keys in message-options.
6812
6813 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6814
6815         * mml2015.el (mml2015-epg-encrypt): Removed backward compatibility for
6816         EasyPG (< 0.0.6).
6817         (mml2015-always-trust): New user option.
6818         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
6819         prompt.
6820
6821 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6822
6823         * nntp.el (nntp-authinfo-force): New variable.
6824         (nntp-send-authinfo): Use it.
6825
6826 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
6827
6828         * message.el (message-strip-subject-encoded-words): Allow _not_ to
6829         decode encoded words.  Improve prompt.  Add comment about forwarding.
6830         (message-replacement-char): Move up.
6831
6832 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
6833
6834         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
6835         instead of gnus-intersection because arguments of gnus-sorted-nunion
6836         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
6837
6838 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
6839
6840         * message.el (message-strip-subject-encoded-words): Reformat prompt.
6841         (message-simplify-subject-functions): Enable
6842         message-strip-subject-encoded-words by default.
6843
6844 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
6845
6846         * message.el (message-strip-subject-encoded-words): New function.
6847         (message-simplify-subject-functions): New variable.
6848         (message-simplify-subject): Use it.  Fix typo in doc string.
6849         Support message-strip-subject-encoded-words.
6850
6851 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
6852
6853         * gnus-diary.el (gnus-diary-delay-format-function):
6854         * nndiary.el (nndiary-reminders):
6855         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
6856
6857 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
6858
6859         * gnus-art.el (article-hide-boring-headers): Fetch date from
6860         gnus-original-article-buffer to avoid problems with localized date
6861         strings.
6862
6863 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6864
6865         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
6866
6867 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
6868
6869         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
6870         New variables.
6871         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6872         (mm-charset-synonym-alist): Move some entries to
6873         mm-codepage-iso-8859-list.
6874         (mm-charset-synonym-alist, mm-charset-override-alist): Add
6875         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6876
6877 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6878
6879         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
6880
6881 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
6882
6883         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
6884         with Emacs 21 and XEmacs.
6885
6886 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
6887
6888         * spam.el (spam-parse-address): New function for better parsing,
6889         catching errors, etc.
6890         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
6891
6892 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
6893
6894         * mm-view.el: Add interactive arg to html2text autoload.
6895
6896 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6897
6898         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
6899
6900 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
6901
6902         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list): New
6903         variables.
6904         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6905         (mm-charset-synonym-alist): Move some entries to
6906         mm-codepage-iso-8859-list.
6907
6908         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
6909
6910 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
6911
6912         * message.el (message-citation-line-format)
6913         (message-insert-formated-citation-line): Fix implementation of %E, %N
6914         and %n according to the doc string.
6915
6916 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
6917
6918         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6919         car-safe to avoid bad parses.
6920
6921 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6922
6923         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
6924         names.
6925
6926         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
6927
6928 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6929
6930         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
6931         header.
6932
6933         * message.el (message-draft-headers): Add Date.
6934         (message-headers-to-generate): Fix typo in docstring.
6935
6936         * nndraft.el (nndraft-required-headers): New variable.
6937         (nndraft-generate-headers): Use it.
6938
6939         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
6940
6941 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6942
6943         * gnus-registry.el (gnus-registry-wash-for-keywords)
6944         (gnus-registry-find-keywords): New functions to allow easy searching of
6945         articles that are in the registry.
6946
6947 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6948
6949         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6950         ietf-drums-parse-address instead of gnus-extract-address-components.
6951         Reported by Damien Elmes <damien@repose.cx>.
6952
6953 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
6954
6955         * gnus.el (gnus-mime): Remove unused custom group.
6956
6957 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6958
6959         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
6960         "blank line" when searching for end of armor headers.
6961
6962 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6963
6964         * gmm-utils.el (gmm-write-region): Fix variable name.
6965
6966 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
6967
6968         * gmm-utils.el (gmm-write-region): New function based on compatibility
6969         code from `mm-make-temp-file'.
6970
6971         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
6972
6973         * nnmaildir.el (nnmaildir--update-nov)
6974         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
6975         Use `gmm-write-region'.
6976
6977 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
6978
6979         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist): Add
6980         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6981
6982         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
6983
6984         * message.el (message-replacement-char): New variable.
6985         (message-fix-before-sending): Use it.
6986         (message-simplify-subject): New function to remove duplicate code.
6987         (message-reply, message-followup): Use it.
6988
6989         * gnus-sum.el (gnus-summary-make-menu-bar): Clarify
6990         gnus-summary-limit-to-articles.
6991
6992 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
6993
6994         * gnus-util.el (gnus-with-local-quit): New macro.
6995
6996         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
6997
6998 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
6999
7000         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
7001         ignore non-string data.
7002
7003 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
7004
7005         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
7006         non-string data (needs to be done in the registry too).
7007
7008 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
7009
7010         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
7011         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
7012         (gnus-registry-split-fancy-with-parent)
7013         (gnus-registry-fetch-simplified-message-subject-fast)
7014         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
7015         Remove text properties on ingress into the registry and when it's saved.
7016         (gnus-registry-clean-empty-function): Fix bug with cleaning the
7017         registry from entries with no groups.
7018
7019 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
7020
7021         * gnus-util.el (gnus-string-remove-all-properties): Add utility
7022         function to remove string properties.
7023
7024 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
7025
7026         * gmm-utils.el (gmm): Adjust custom version.
7027
7028         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist): Adjust
7029         custom version.
7030
7031         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
7032
7033 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
7034
7035         * gnus-art.el (gnus-insert-prev-page-button)
7036         (gnus-insert-next-page-button): Simplify.  Reformat.
7037
7038 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
7039
7040         * gnus-art.el (gnus-insert-prev-page-button)
7041         (gnus-insert-next-page-button): Apply gnus-article-button-face.
7042
7043 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
7044
7045         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
7046
7047 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
7048
7049         * gnus-art.el (gnus-insert-mime-button)
7050         (gnus-insert-mime-security-button):
7051         Apply gnus-article-button-face to MIME and security buttons.
7052
7053 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
7054
7055         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
7056         readable.
7057
7058 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7059
7060         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
7061
7062 2006-09-20  Steve Youngs  <steve@sxemacs.org>
7063
7064         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
7065         `browse-url-of-file' instead of `browse-url'.
7066
7067 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7068
7069         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
7070         regexp.  Articles containing quotation were cut prematurely.
7071
7072 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7073
7074         * message.el (message-cite-original-1): Use nobody by default for the
7075         value of From header.
7076         (message-reply): Ditto.
7077
7078 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
7079
7080         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
7081         to the gnus-info.  This fixes a bug of inline-PGP message verification.
7082         Reported by Michael Piotrowski <mxp@dynalabs.de>.
7083
7084 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
7085
7086         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
7087         mails in the doc string.  Add some URLs in comment.
7088         (pop3-movemail): Warn about pop3-leave-mail-on-server.
7089
7090 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7091
7092         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
7093         backslashes handling and the way to find boundaries of quoted strings.
7094
7095 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
7096
7097         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
7098         mml1991-encrypt-to-self is set and mml1991-signers is not set.
7099         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
7100         mml2015-encrypt-to-self is set and mml2015-signers is not set.
7101
7102 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
7103
7104         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
7105         doc string.
7106         (gnus-button-regexp, gnus-button-last): Remove unused variables.
7107
7108 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7109
7110         * lpath.el: Fbind epg-check-configuration.
7111
7112 2006-09-06  Simon Josefsson  <jas@extundo.com>
7113
7114         * mml2015.el (mml2015-use): Doc fix, mention epg.
7115
7116 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
7117
7118         * mml2015.el (mml2015-use): Default to epg, if available.
7119
7120 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
7121
7122         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
7123         message-sender.
7124         (mml1991-epg-encrypt): Ditto.
7125         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
7126         message-sender.
7127         (mml2015-epg-encrypt): Ditto.
7128
7129 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
7130
7131         * message.el (message-send-mail-with-sendmail): Look for sendmail in
7132         several common directories.
7133
7134 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
7135
7136         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
7137         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
7138
7139 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7140
7141         * gnus-art.el (article-decode-encoded-words): Make it fast.
7142
7143 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7144
7145         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
7146
7147         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
7148         in quoted string into `\'.
7149
7150 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7151
7152         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7153         Use standard-syntax-table.
7154
7155 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7156
7157         * gnus-art.el (gnus-decode-address-function): New variable.
7158         (article-decode-encoded-words): Use it to decode headers which are
7159         assumed to contain addresses.
7160         (gnus-mime-delete-part): Remove useless `or'.
7161
7162         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
7163         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
7164         (gnus-nov-parse-line): Use it to decode From header.
7165         (gnus-get-newsgroup-headers): Ditto.
7166         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
7167
7168         * mail-parse.el (mail-decode-encoded-address-region): New alias.
7169         (mail-decode-encoded-address-string): New alias.
7170
7171         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7172         New function.
7173         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
7174         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
7175         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
7176         (rfc2047-decode-string): Ditto.
7177         (rfc2047-decode-address-region): New function.
7178         (rfc2047-decode-address-string): New function.
7179
7180 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
7181
7182         * message.el (message-caesar-buffer-body): Allow rotating headers.
7183
7184         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
7185
7186         * message.el (message-insert-formated-citation-line): Fix %f.
7187         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
7188
7189 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7190
7191         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
7192         (gnus-bookmark-mouse-available-p): New macro.
7193         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
7194         (gnus-bookmark-bmenu-show-infos): Use it.
7195         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
7196         (gnus-bookmark-bmenu-hide-infos): Ditto.
7197         (gnus-bookmark-remove-properties): New function.
7198         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
7199         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
7200         (gnus-bookmark-write-file): Bind coding-system-for-write.
7201         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
7202         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
7203         group before selecting it.
7204         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
7205         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
7206         quit-window if it is not available; use gnus-mouse-2 and bind it to
7207         gnus-bookmark-bmenu-select-by-mouse.
7208         (gnus-bookmark-show-details): Remove unused variable `details-list'.
7209         (gnus-bookmark-bmenu-select-by-mouse): New function.
7210
7211 2006-08-13  Romain Francoise  <romain@orebokech.com>
7212
7213         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
7214         space.
7215
7216 2006-08-10  Romain Francoise  <romain@orebokech.com>
7217
7218         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
7219         (dns-mode-soa-auto-increment-serial): New user option.
7220         (dns-mode-soa-maybe-increment-serial): New function.
7221         (dns-mode): Add the latter to `write-contents-functions'.
7222
7223 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7224
7225         * compface.el (uncompface): Use binary rather than raw-text-unix.
7226
7227 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7228
7229         * compface.el (uncompface): Make sure the eol conversion doesn't take
7230         place when communicating with the external programs.  Reported by
7231         ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
7232
7233 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7234
7235         * nnheader.el (nnheader-insert-head): Fix typo in comment.
7236
7237 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7238
7239         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7240         Make it more robust by parsing author and date independently.
7241
7242 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7243
7244         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
7245
7246 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
7247
7248         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
7249         first matching secret key.
7250         (mml2015-epg-encrypt): Ditto.
7251
7252         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
7253         first matching secret key.
7254         (mml1991-epg-encrypt): Ditto.
7255
7256         * mml2015.el (mml2015-encrypt-to-self): New user option.
7257         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
7258         mml2015-epg-encrypt-to-self is set.
7259
7260         * mml1991.el (mml1991-encrypt-to-self): New variable.
7261         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
7262         mml1991-epg-encrypt-to-self is set.
7263
7264         * mml2015.el (mml2015-signers): New user option.
7265         (mml2015-epg-sign): Reflect the value of mml2015-signers.
7266         (mml2015-epg-encrypt): Allow to select signing keys.
7267
7268         * mml1991.el (mml1991-signers): New variable.
7269         (mml1991-epg-sign): Reflect the value of mml1991-signers.
7270         (mml1991-epg-encrypt): Allow to select signing keys.
7271
7272 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7273
7274         * nnheader.el (nnheader-insert-head): Make it work even if the file
7275         uses CRLF for the line-break code.
7276
7277 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
7278
7279         * mml2015.el: Require mml-sec instead of password.
7280         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
7281         (mml2015-cache-passphrase): Inherit the default value from
7282         mml-secure-cache-passphrase.
7283         (mml2015-passphrase-cache-expiry): Inherit the default value from
7284         mml-secure-passphrase-cache-expiry.
7285
7286         * mml1991.el: Require mml-sec instead of password.
7287         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
7288         (mml1991-cache-passphrase): Inherit the default value from
7289         mml-secure-cache-passphrase.
7290         (mml1991-passphrase-cache-expiry): Inherit the default value from
7291         mml-secure-passphrase-cache-expiry.
7292
7293         * mml-sec.el: Require password.
7294         (mml-secure-verbose): New user option.
7295         (mml-secure-cache-passphrase): New user option.
7296         (mml-secure-passphrase-cache-expiry): New user option.
7297
7298 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
7299
7300         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
7301         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
7302         andreas@altroot.de (Andreas Vögele).
7303
7304         FIXME: Use `tiny change'?
7305
7306 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7307
7308         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
7309         workaround for the url package included with Emacs.
7310
7311         * nnweb.el (nnweb-google-create-mapping): Update regexp.
7312
7313 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7314
7315         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
7316         correctly.  This fixes a bug caused by the 2006-05-12 change.
7317
7318 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
7319
7320         * nnmail.el (nnmail-article-group): If splitting raises an error, give
7321         some information about the error when saying that the `bogus' mail
7322         group will be used.
7323
7324 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
7325
7326         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
7327         string.
7328
7329 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
7330
7331         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
7332
7333 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7334
7335         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
7336
7337 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7338
7339         * mml1991.el (mml1991-function-alist): Add epg.
7340         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
7341         (mml1991-epg-encrypt): New functions.
7342
7343 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7344
7345         * mml2015.el (mml2015-verbose): New variable.
7346         (mml2015-cache-passphrase): Ditto.
7347         (mml2015-passphrase-cache-expiry): Ditto.
7348         (mml2015-function-alist): Add epg.
7349         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
7350         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
7351         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt): New
7352         functions.
7353
7354 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7355
7356         * message.el (message-cite-original-1): Preserve region when removing
7357         quoted text due to X-No-Archive in order to avoid bogus attribution
7358         when citing multiple messages.
7359
7360 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7361
7362         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.  Reported by
7363         Kenneth Jacker <khj@be.cs.appstate.edu>.
7364
7365 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
7366
7367         * gnus-diary.el (gnus-user-format-function-d)
7368         (gnus-user-format-function-D): Autoload.
7369
7370         * imap.el (Commentary): Fix typo.
7371
7372         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
7373         2006-04-22 contribution.
7374
7375 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7376
7377         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
7378         It didn't really fix the bogosity I'm seeing with solid web groups.
7379
7380 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7381
7382         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
7383         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
7384         created using server names.  If we use the feature without declaring
7385         it, Gnus does not properly manage server and group state.
7386
7387         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
7388         bound.
7389
7390 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7391
7392         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
7393         looking up the method using GROUP's prefix before inventing a new one.
7394         It is used on killed/unknown groups in various places where returning
7395         an all-new method isn't expected by the caller.
7396
7397         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
7398         and match semantics of gnus-group-real-prefix.
7399
7400 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
7401
7402         * nnmail.el (nnmail-broken-references-mailers): New variable.
7403         (nnmail-ignore-broken-references): New function generalizing
7404         nnmail-fix-eudora-headers.
7405         (nnmail-fix-eudora-headers): Now obsolete.
7406
7407         * gnus-art.el (gnus-button-handle-custom): Support
7408         `customize-apropos*'.
7409
7410 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7411
7412         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
7413
7414         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
7415         articles.
7416
7417 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
7418
7419         * message.el (message-cite-reply-above): New variable.
7420         (message-yank-original): Use it.
7421
7422 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7423
7424         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
7425
7426 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
7427
7428         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
7429         as read.
7430
7431         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
7432
7433 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
7434
7435         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
7436         (gnus-bookmark-default-file): Use gnus-directory.
7437         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
7438         Remove "*" in doc string.
7439         (gnus-bookmark-write-file): Simplify.
7440         (gnus-bookmark-maybe-sort-alist): Use `when'.
7441         (gnus-bookmark-get-bookmark): Fix typo in doc string.
7442         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark): Add
7443         FIXME about Emacs 21 and XEmacs compatibility.
7444         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
7445         compatibility.
7446         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
7447         compatibility.
7448         (gnus-bookmark-menu-heading): Fix version.
7449
7450 2006-06-19  Bastien Guerry  <bzg@altern.org>
7451
7452         * gnus-bookmark.el: New file.
7453
7454 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7455
7456         * message.el (message-syntax-checks): Doc fix.
7457
7458 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7459
7460         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
7461         unsubscribed groups as if they were killed ones.  It causes duplicate
7462         entries in gnus-newsrc-alist.
7463
7464 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7465
7466         * message.el (message-syntax-checks): Doc fix.
7467         (message-send-mail): Add check for continuation headers.
7468         (message-check-news-header-syntax): Fix regexp used to check for
7469         continuation headers.
7470
7471 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7472
7473         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
7474
7475 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
7476
7477         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
7478
7479 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7480
7481         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
7482         default-truncate-lines.
7483
7484 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7485
7486         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
7487         to fill the utf-8 entry.
7488
7489         * lpath.el: Fbind unicode-precedence-list.
7490
7491 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7492
7493         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7494
7495 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
7496
7497         * gnus-agent.el (directory-files-and-attributes): Move all the way
7498         forward (the third and final move).
7499         (gnus-agent-read-agentview): Trap reconstruction errors due to
7500         nonexistant directory.  Handle by returning nil.
7501
7502 2006-05-30  Didier Verna  <didier@xemacs.org>
7503
7504         * message.el (message-dont-reply-to-names): Update the custom type.
7505         * message.el (message-dont-reply-to-names): New defsubst: potentially
7506         convert a list of regexps into a single one.
7507         * message.el (message-get-reply-headers): Use it.
7508         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
7509
7510 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7511
7512         * gnus-agent.el (directory-files-and-attributes): Move forward.
7513
7514 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7515
7516         * gnus-ml.el (gnus-mailing-list-subscribe)
7517         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
7518         (gnus-mailing-list-message): Fix doc strings.
7519
7520 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7521
7522         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
7523         of doing it manually.
7524
7525 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7526
7527         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
7528         comment.
7529
7530 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
7531
7532         * gnus-agent.el: Added gnus-agent-flush* to purge agent info.
7533         (gnus-agent-read-agentview): Fixed handling of end-of-file error.
7534         (gnus-agent-read-local): All symbols allocated in my-obarray.
7535         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
7536         (gnus-agent-regenerate-group): Check numeric names to see if they are
7537         messages or groups.
7538         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
7539         better way of do this...)
7540
7541         * gnus-cache.el (gnus-agent-total-fetched-for): Ignore
7542         'dummy.group' (there should be a better way of do this...)
7543
7544 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7545
7546         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
7547         (gnus-saved-headers): Ditto.
7548         (gnus-default-article-saver): Mention functions may have properties.
7549         (gnus-article-save): Override gnus-save-all-headers and
7550         gnus-saved-headers by :headers property which saver function may have.
7551         (gnus-summary-save-in-file): Add :headers property.
7552         (gnus-summary-write-to-file): Ditto.
7553
7554         * gnus-sum.el (gnus-summary-save-article): Bind
7555         gnus-prompt-before-saving to t when saving many articles in a file;
7556         always show all headers.
7557
7558         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
7559
7560 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
7561
7562         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
7563         marks.
7564
7565         * message.el (message-indent-citation): Add optional arguments to allow
7566         using it outside of message buffers.
7567
7568         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
7569         (gnus-article-treat-unfold-headers): Use it.
7570         (gnus-article-truncate-lines): New variable.
7571         (gnus-article-mode): Use it.
7572         (gnus-article-toggle-truncate-lines): New function.
7573
7574         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar): Add
7575         gnus-article-toggle-truncate-lines.
7576
7577         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
7578         coding system in XEmacs, use binary.
7579
7580 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7581
7582         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
7583         after-load-alist.
7584
7585         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
7586         this function should save decoded articles.
7587         (gnus-summary-write-to-file): Use property to specify this function
7588         should save decoded articles and specify gnus-summary-save-in-file
7589         should be used to save articles other than the first one when saving
7590         many articles.
7591         (gnus-summary-save-body-in-file): Use property to specify this
7592         function should save decoded articles.
7593         (gnus-summary-write-body-to-file): Use property to specify this
7594         function should save decoded articles and specify
7595         gnus-summary-save-body-in-file should be used to save articles other
7596         than the first one when saving many articles.
7597
7598         * gnus-sum.el (gnus-summary-save-article): Simplify.
7599
7600 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7601
7602         * gnus-art.el (gnus-default-article-saver): Add
7603         gnus-summary-write-body-to-file.
7604         (gnus-article-save-coding-system): Don't use coding system object
7605         in XEmacs.
7606         (gnus-read-save-file-name): Add optional `dir-var' argument which
7607         specifies directory in which files are saved; work even if optional
7608         `variable' argument is not specified.
7609         (gnus-summary-write-to-file): Read file name.
7610         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
7611         (gnus-summary-write-body-to-file): New function.
7612
7613         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
7614         (gnus-summary-local-variables): Add it.
7615         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
7616         (gnus-summary-save-article): Remove optional `decode' argument;
7617         determine whether to decode articles by the value of
7618         gnus-default-article-saver; when saving many files using
7619         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
7620         it first and use gnus-summary-save-in-file or
7621         gnus-summary-save-body-in-file thereafter unless
7622         gnus-prompt-before-saving is always; move point to article which
7623         will be saved.
7624         (gnus-summary-save-article-file): Revert.
7625         (gnus-summary-write-article-file): Revert.
7626         (gnus-summary-save-article-body-file): Revert.
7627         (gnus-summary-write-article-body-file): New function.
7628
7629 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7630
7631         * gnus-art.el (gnus-default-article-saver): Doc fix.
7632         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
7633         from gnus-summary-save-article-coding-system, and default to a
7634         certain coding system.
7635         (gnus-output-to-file): Add coding cookie and encode text according
7636         to gnus-article-save-coding-system; don't use mm-append-to-file.
7637
7638         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
7639         gnus-art.el and rename to gnus-article-save-coding-system.
7640         (gnus-summary-save-article): Require gnus-art; don't show all
7641         headers if it decodes articles; don't add coding cookie here;
7642         don't bind mm-text-coding-system-for-write.
7643         (gnus-summary-save-article-file): Save decoded articles.
7644         (gnus-summary-write-article-file): When saving many files, use
7645         gnus-summary-write-to-file first and gnus-summary-save-in-file
7646         thereafter unless gnus-prompt-before-saving is always.
7647         (gnus-summary-save-article-body-file): Save decoded articles.
7648
7649         * lpath.el: Fbind select-safe-coding-system for XEmacs.
7650
7651 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7652
7653         * nnrss.el (nnrss-check-group): Bind hash-index.
7654
7655 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
7656
7657         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
7658         its hash index.  Store this hash in `nnrss-group-data'.
7659         (nnrss-read-group-data): Update accordingly.
7660
7661 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7662
7663         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
7664         entry.
7665
7666         * gnus-sum.el (gnus-summary-make-menu-bar): Add
7667         gnus-article-browse-html-article.
7668
7669 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
7670
7671         * gnus-sum.el (gnus-summary-mime-map): Add
7672         gnus-article-browse-html-article.
7673
7674         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
7675
7676 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7677
7678         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
7679         suitable coding systems in customize.
7680
7681 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
7682
7683         * mail-source.el (mail-sources): Fix custom type.
7684
7685 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
7686
7687         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
7688         (gnus-summary-expire-articles-now): Shorten prompt.
7689
7690         * gmm-utils.el (wid-edit): Require.
7691         (defun-gmm): Renamed from `gmm-defun-compat'.
7692         (gmm-image-search-load-path): Use it.
7693         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
7694
7695 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7696
7697         * gnus-sum.el (gnus-summary-save-article-coding-system): New
7698         variable.
7699         (gnus-summary-save-article): Add optional `decode' argument.  If
7700         it is set and gnus-summary-save-article-coding-system is non-nil,
7701         save decoded article.
7702         (gnus-summary-write-article-file): Save decoded article if
7703         gnus-summary-save-article-coding-system is non-nil.
7704
7705         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
7706         type.
7707
7708 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7709
7710         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
7711
7712 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7713
7714         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
7715         first to test gnus-single-article-buffer which may be buffer-local.
7716
7717         * gnus-sum.el (gnus-summary-setup-buffer): Make
7718         gnus-single-article-buffer buffer-local and nil in ephemeral
7719         group; make gnus-article-buffer, gnus-article-current, and
7720         gnus-original-article-buffer always buffer-local.
7721         (gnus-summary-exit): Kill article buffer belonging to ephemeral
7722         group.
7723         (gnus-handle-ephemeral-exit): Don't move to next summary line.
7724
7725 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
7726
7727         * nnml.el (nnml-request-compact-group): Compressed files might not
7728         have .gz extension.
7729
7730 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7731
7732         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
7733         (mm-copy-to-buffer): Use with-current-buffer.
7734         (mm-display-part): Simplify.
7735         (mm-inlinable-p): Add optional arg `type'.
7736
7737 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7738
7739         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
7740         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
7741         Try harder to show the attachment internally or externally using
7742         gnus-mime-view-part-as-type.
7743
7744 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
7745
7746         * message.el (message-from-style, message-signature-separator)
7747         (message-user-organization-file, message-send-mail-function)
7748         (message-citation-line-function, message-yank-prefix)
7749         (message-indent-citation-function, message-signature)
7750         (message-signature-file, message-signature-insert-empty-line):
7751         Remove autoloads.
7752
7753         * gnus-art.el (gnus-buttonized-mime-types): Remove
7754         "multipart/signed".  Revert 2006-04-26 change.
7755
7756 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7757
7758         * gnus.el (gnus-version-number): Bump version.
7759
7760 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7761
7762         * gnus.el: No Gnus v0.5 is released.
7763
7764 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7765
7766         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
7767         fetching articles by message-id.
7768
7769 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7770
7771         * message.el (hashcash): Require hashcash as normal.
7772
7773         * ecomplete.el (ecomplete-highlight-match-line): Use
7774         point-at-eol.
7775         (ecomplete-highlight-match-line): Use `highlight', because that
7776         face exists in both Emacs and XEmacs.
7777
7778         * message.el (message-display-abbrev): Use point-at-bol.
7779
7780         * mail-source.el: Don't require timer/timer-funcs.
7781
7782         * gnus-async.el: Ditto.
7783
7784         * password.el: Ditto.
7785
7786         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
7787
7788         * mm-url.el: Ditto.
7789
7790         * gnus-xmas.el: Don't require timer-funcs.
7791
7792         * mm-util.el: Require timer/timer-funcs.
7793
7794 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7795
7796         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
7797         Close.
7798
7799 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7800
7801         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
7802         unibyte after clear-decrypt function runs.
7803
7804         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
7805         returns as a unibyte string.
7806
7807 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7808
7809         * lpath.el: Revert.
7810
7811         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
7812         (pgg-gpg-process-sentinel): Revert.
7813
7814         * pgg-pgp.el (pgg-pgp-process-region): Revert.
7815         (pgg-pgp-lookup-key): Revert.
7816
7817         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
7818         (pgg-pgp5-lookup-key): Revert.
7819
7820         * pgg.el (pgg-fetch-key): Revert.
7821
7822 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7823
7824         * lpath.el: Fbind string-as-multibyte for XEmacs.
7825
7826         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
7827         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
7828         (mml1991-pgg-encrypt): Ditto.
7829
7830         * pgg-gpg.el (pgg-string-to-multibyte): New function.
7831         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
7832         a multibyte buffer.
7833
7834         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
7835         (pgg-pgp-lookup-key): Ditto.
7836
7837         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
7838         (pgg-pgp5-lookup-key): Ditto.
7839
7840         * pgg.el (pgg-fetch-key): Ditto.
7841
7842 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
7843
7844         * message.el (message-user-organization-file): Check several
7845         locations of the organization file.
7846
7847         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
7848         Add gnus-article-view-part-as-type.
7849
7850         * gnus-art.el (gnus-article-view-part-as-type): New function.
7851
7852         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
7853         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
7854
7855         * mml.el: Simplify autoload.
7856         (mml-mode): defvar dnd-protocol-alist instead of using
7857         symbol-value.
7858         (mml-default-directory): New variable.
7859         (mml-minibuffer-read-file): Use it.
7860         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
7861
7862         * message.el (message-citation-line-format): New variable.
7863         (message-insert-formated-citation-line): New function.
7864         (message-citation-line-function): Add
7865         `message-insert-formated-citation-line' to custom type.
7866
7867         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
7868         to doc string.
7869
7870         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
7871         depending on mm-verify-option.
7872
7873 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7874
7875         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
7876         binding pgg-* variables; reimplement the section which prevents
7877         MIME header from being signed.
7878         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
7879         pgg-text-mode; remove a blank line at the top of body.
7880
7881         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
7882         lines at the top of body; use gnus-newsgroup-charset if there's no
7883         Charset header.
7884
7885 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7886
7887         * message.el (message-self-insert-commands): Doc fix.
7888
7889         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
7890         (mm-uu-pgp-encrypted-test): Ditto.
7891         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
7892         between header and body; return application/pgp-encrypted handle
7893         if decryption failed; decode decrypted body by charset.
7894
7895         * mm-decode.el (mm-automatic-display): Don't make application/pgp
7896         element match to application/pgp-*.
7897
7898 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7899
7900         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
7901         HTML.
7902
7903 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7904
7905         * mail-source.el (mail-source-call-script): Message the error
7906         string.
7907
7908 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7909
7910         * gnus-util.el (gnus-byte-compile): Use it.
7911
7912 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
7913
7914         * gnus-util.el (kill-empty-logs): New function.
7915
7916 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7917
7918         * message.el (message-mail-alias-type): Doc fix.
7919         (message-mail-alias-type-p): New function.
7920         (message-send): Use it.
7921         (message-mode): Ditto.
7922         (message-strip-forbidden-properties): Ditto.
7923
7924         * ecomplete.el (ecomplete-database-file-coding-system): New
7925         variable.
7926         (ecomplete-save): Use it.
7927         (ecomplete-setup): Use it.
7928
7929 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7930
7931         * message.el (message-self-insert-commands): New variable.
7932         (message-strip-forbidden-properties): Use it.
7933
7934 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7935
7936         * message.el (message-put-addresses-in-ecomplete): Use a regexp
7937         that doesn't make XEmacs choke.
7938
7939 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
7940
7941         * gnus-util.el (gnus-replace-in-string):
7942         Prefer replace-regexp-in-string over of replace-in-string.
7943
7944 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7945
7946         * gnus-util.el (gnus-select-frame-set-input-focus):
7947         Use select-frame-set-input-focus if it is available in XEmacs; use
7948         definition defined in Emacs 22 for old Emacsen.
7949
7950         * dgnushack.el: Autoload unmorse-region for XEmacs.
7951
7952         * lpath.el: Bind cursor-in-non-selected-windows and
7953         select-frame-set-input-focus for XEmacs.
7954
7955 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7956
7957         * mm-view.el (mm-inline-text): Use equal instead of equalp.
7958
7959 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
7960
7961         * gnus-registry.el (gnus-registry-cache-save): Remove text
7962         properties when saving via the temp buffer.
7963
7964 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7965
7966         * message.el (message-generate-hashcash): Honor custom type.
7967
7968 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7969
7970         * message.el (message-generate-hashcash): Default to non-nil when
7971         hashcash is found.
7972
7973         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
7974         (gnus-refer-thread-limit): Increase default to 500.
7975
7976         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
7977
7978         * flow-fill.el (fill-flowed): Allow delete-space.
7979
7980 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7981
7982         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
7983         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
7984         Remove autoloads.
7985
7986 2006-04-18  Simon Josefsson  <jas@extundo.com>
7987
7988         * message.el (message-generate-hashcash): Default to.
7989
7990 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7991
7992         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
7993         concatenating segments rather than before concatenating them.
7994
7995 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
7996
7997         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
7998
7999 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8000
8001         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
8002
8003         * message.el (message-forward-make-body-plain): Allow
8004         message-forward-ignored-headers to be a list.
8005         (message-remove-ignored-headers): Factor out into function.
8006         (message-forward-make-body-mml): Use it.
8007
8008         * imap.el (imap-quote-specials): New function.
8009         (imap-login-auth): Quote specials.
8010
8011         * rfc2231.el (rfc2231-parse-string): Remove dead code.
8012         (rfc2231-parse-string): Allow concatanation of parameters that
8013         aren't contiguous.  The test case is
8014           (mail-header-parse-content-type "message/external-body;
8015             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
8016             access-type=LOCAL-FILE;
8017             name*1*=plugh%2fhello-sailor%2fbing.pdf")
8018
8019 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8020
8021         * nntp.el (nntp-accept-process-output): Return the value of
8022         `nnheader-accept-process-output'.
8023
8024 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8025
8026         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
8027         (gnus-button-alist): Recognize more diff formats.
8028         (gnus-button-patch): Strip directory.
8029
8030 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
8031
8032         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
8033         Emacs 22 when setting focus.
8034
8035 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8036
8037         * gnus-art.el (gnus-article-treat-types): Do treatment of
8038         text/x-verbatim parts.
8039         (gnus-button-patch): New command.
8040
8041         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
8042         addresses that contain invalid characters.
8043
8044 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8045
8046         * message.el (message-put-addresses-in-ecomplete): Use
8047         gnus-replace-in-string.
8048         (message-is-yours-p): Use the more correct
8049         mail-header-parse-address instead of
8050         mail-extract-address-components.
8051         (message-put-addresses-in-ecomplete): Fix typo.
8052
8053         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
8054         keystroke.
8055
8056         * gnus-art.el (gnus-treatment-function-alist): Change order of
8057         newsgroups/generic header folding to avoid double-folding.
8058
8059         * message.el (message-hidden-headers): Add X-Draft-From.
8060
8061         * gnus-sum.el (gnus-summary-repeat-search-article-forward): New
8062         command.
8063         (gnus-summary-repeat-search-article-backward): New command.
8064
8065         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
8066         groups in the parent topic.
8067
8068 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
8069
8070         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
8071         (spam-extra-header-to-number): Return the CRM114 number as a
8072         number instead of a string.
8073
8074 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8075
8076         * gnus-art.el (gnus-face-properties-alist): Moved here from
8077         gnus-fun.
8078
8079         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
8080
8081 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8082
8083         * message.el (message-strip-forbidden-properties): Only display on
8084         self-insert-command.
8085
8086         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
8087         reindent.
8088         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
8089
8090 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
8091
8092         * smiley.el (smiley-style): Fix typo.
8093
8094 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8095
8096         * hashcash.el (hashcash-insert-payment-async-2): Use
8097         message-goto-eoh instead of doing it manually.
8098         (mail-add-payment): Use message-narrow-to-header instead of trying
8099         to do the same itself.
8100
8101         * message.el (message-hidden-headers): Add Face.
8102
8103         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
8104         reparenting code.
8105         (gnus-summary-reparent-children): Refactored out code.
8106         (gnus-summary-thread-map): New keystroke.
8107         (gnus-summary-reparent-children): Make into command.
8108
8109         * smiley.el (smiley-style): Default to `medium' if using a large
8110         font.
8111
8112         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
8113         does it itself.
8114
8115         * message.el (message-point-in-header-p): Simplify definition.
8116
8117 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8118
8119         * nnagent.el (nnagent-request-set-mark): Silence log file
8120         writing.
8121         (nnagent-request-set-mark): Use write-region instead of
8122         append-to-file.
8123
8124         * gnus-sum.el (gnus-read-header): Fudge article number if using a
8125         strange select method.
8126
8127         * ecomplete.el (ecomplete-display-matches): Get highlightling
8128         right.
8129         (ecomplete-display-matches): Use literals.
8130         (ecomplete-display-matches): Disable message logging.
8131
8132         * message.el (message-display-abbrev): Small optimization.
8133
8134         * ecomplete.el (ecomplete-display-matches): Allow automatic
8135         display.
8136
8137         * message.el (message-strip-forbidden-properties): Display
8138         abbrevs.
8139         (message-display-abbrev): Get automatic display right.
8140
8141         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
8142         keystrokes.
8143
8144 2006-04-13  Romain Francoise  <romain@orebokech.com>
8145
8146         TODO: Backport to v5-10!
8147
8148         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
8149         Moved here (and renamed) from gnus-registry.el.
8150
8151         * gnus-registry.el: Require gnus-util.
8152         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
8153
8154 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8155
8156         * gnus-group.el (gnus-group-catchup-current): Change
8157         if-then-else-if-then-else into cond.
8158         (gnus-group-catchup): Indent.
8159         (group-name-at-point): New function.
8160         (gnus-fetch-group): Provide default from thing at point.
8161
8162 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8163
8164         * message.el (message-display-abbrev): Fix regexp.
8165
8166         * ecomplete.el (ecomplete-highlight-match-line): Reimplement
8167         choosing.
8168         (ecomplete-highlight-match-line): Fix up code rewrite, remove
8169         dead variables.
8170
8171         * message.el (message-newline-and-indent): Remove debugging.
8172         (message-display-abbrev): Use new implementation.
8173
8174 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
8175
8176         * gnus-art.el (gnus-article-mode): Set
8177         cursor-in-non-selected-windows to nil.
8178
8179         * smiley.el: Revert previous change.
8180         (smiley-data-directory): defvar it before using it in the
8181         defcustom of `smiley-style'.
8182
8183 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8184
8185         * message.el (message-newline-and-indent): New function.
8186
8187         * ecomplete.el: Implement more bits.
8188
8189         * message.el (message-put-addresses-in-ecomplete): Clean up the
8190         string.
8191
8192         * ecomplete.el (ecomplete-add-item): Chop off decimals.
8193
8194         * gnus-sum.el (gnus-summary-save-parts): Bind
8195         gnus-summary-save-parts-counter and use it to make unique file
8196         names.
8197
8198         * gnus-art.el (gnus-ignored-headers): Add some more headers.
8199
8200         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
8201         parameter to say whether to actually parse the individual
8202         addresses.
8203
8204         * message.el (message-put-addresses-in-ecomplete): New function.
8205         (ecomplete): Require.
8206         (message-mail-alias-type): Add ecomplete as an option.
8207
8208 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
8209
8210         * flow-fill.el (fill-flowed): Remove trailing space from blank
8211         quoted lines.
8212
8213 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8214
8215         * smiley.el (smiley-style): Move definition later to avoid a
8216         compilation warning.
8217
8218 2006-04-12  Kenichi Handa  <handa@m17n.org>
8219
8220         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
8221         buffer and then decode the buffer text if necessary.
8222         (rfc2231-encode-string): Be sure to work on multibyte buffer at
8223         first, and after mm-encode-body, change the buffer to unibyte.
8224         Use mm-disable-multibyte instead of set-buffer-multibyte.
8225
8226 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8227
8228         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
8229         Content-Type header instead of Content-Disposition header.
8230         (gnus-mime-inline-part): Ditto.
8231         (gnus-mime-view-part-as-charset): Ignore charset that the part
8232         specifies.
8233
8234         * mm-decode.el (mm-display-part): Work with external parts and
8235         usual parts similarly.
8236
8237         * mm-extern.el (mm-inline-external-body): Use mm-display-part
8238         instead of gnus-display-mime.
8239
8240         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
8241         instead of with-temp-buffer.
8242
8243         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
8244         tag to summarized topics part in order to encode non-ASCII text.
8245
8246 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8247
8248         * smiley.el (smiley-style): New variable.
8249         (smiley-directory): New function.
8250         (smiley-data-directory): Derive from `smiley-style' using
8251         `smiley-directory'.
8252         (smiley-regexp-alist): Add new entries.
8253
8254         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
8255         (gnus-article-browse-delete-temp): Add :version.
8256
8257 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
8258
8259         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
8260         the sieve region.
8261
8262 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8263
8264         * gnus.el (gnus-version-number): Bump version.
8265
8266 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8267
8268         * gnus.el: No Gnus v0.4 is released.
8269
8270 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8271
8272         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
8273         layout.
8274
8275         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
8276         unknown charset.
8277
8278         * message.el (message-header-synonyms): Add Original-To to the
8279         default.
8280
8281         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
8282         optional parameter.
8283
8284 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
8285
8286         * gnus-fun.el (gnus): Require it for gnus-directory.
8287
8288 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8289
8290         * gnus-fun.el (gnus-face-properties-alist): Add :version.
8291
8292 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8293
8294         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
8295
8296 2006-04-05  Simon Josefsson  <jas@extundo.com>
8297
8298         * password.el (password-reset): New function.
8299
8300 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8301
8302         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region): Wait
8303         for BEGIN_SIGNING too, new in GnuPG 1.4.3.
8304
8305 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8306
8307         * nnweb.el (nnweb-google-create-mapping): Update regexp.
8308         Some whitespace was matched into the url, which broke browsing hits
8309         > 100 when mm-url-use-external was nil.
8310
8311 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
8312
8313         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Check
8314         gnus-extra-headers for 'Newsgroups.
8315
8316         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
8317         bound.
8318
8319 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
8320
8321         * pgg-gpg.el: Clean up process buffers every time gpg processes
8322         complete.
8323
8324 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
8325
8326         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
8327         doc string.
8328
8329 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
8330
8331         * pgg-gpg.el (pgg-gpg-process-filter)
8332         (pgg-gpg-wait-for-completion): Check if buffer is alive.
8333
8334         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
8335         lines, temporary fix.
8336
8337 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
8338
8339         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
8340
8341 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
8342
8343         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
8344         default-enable-multibyte-characters.  This reverts the change from
8345         revision 6.17 which is no longer necessary because the passphrase
8346         is sent separately now.  GnuPG messages are unreadable under
8347         multibyte locales with default-enable-multibyte-characters set to
8348         nil.
8349
8350 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
8351
8352         * message.el (message-tool-bar-gnome): Move "spell".
8353
8354 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
8355
8356         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
8357         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
8358         instead.
8359
8360 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
8361
8362         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Improve
8363         newsgroups handling for NNTP overviews which don't include
8364         Newsgroups.
8365
8366 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8367
8368         * message.el (message-resend): Bind message-generate-hashcash to nil.
8369
8370 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8371
8372         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
8373         when searching for already-paid recipients.
8374
8375 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
8376
8377         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
8378         passphrases when it is not needed.
8379         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
8380         passphrase stuff from gpg, should only be necessary when you use
8381         gpg with a smartcard.
8382
8383 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8384
8385         * mml.el (mml-insert-mime): Ignore cached contents of
8386         message/external-body part.
8387
8388         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
8389         (mm-insert-part): Ditto.
8390
8391 2006-03-23  Simon Josefsson  <jas@extundo.com>
8392
8393         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
8394         Reiner.
8395         (pgg-gpg-use-agent-p): Use it again.
8396
8397 2006-03-23  Simon Josefsson  <jas@extundo.com>
8398
8399         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
8400         older emacsen.
8401         (pgg-gpg-use-agent-p): Don't use it.
8402
8403 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
8404
8405         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
8406         if we can.
8407
8408 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
8409
8410         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
8411         (pgg-gpg-update-agent): New function.
8412         (pgg-gpg-use-agent-p): New function.
8413         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
8414         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
8415         (pgg-gpg-sign-region): Use it.
8416
8417 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8418
8419         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
8420         Reported by Ralf Wachinger <rwachinger@gmx.de>.
8421
8422 2006-03-21  Simon Josefsson  <jas@extundo.com>
8423
8424         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
8425         <wilde@sha-bang.de>.
8426         (pgg-gpg-use-agent): New variable.
8427         (pgg-gpg-process-region): Use it.
8428         (pgg-gpg-encrypt-region): Likewise.
8429         (pgg-gpg-encrypt-symmetric-region): Likewise.
8430         (pgg-gpg-decrypt-region): Likewise.
8431         (pgg-gpg-sign-region): Likewise.
8432         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
8433
8434 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
8435
8436         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
8437
8438         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
8439         Add comment on version.
8440
8441 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
8442
8443         * smiley.el: Add missing test smiley.
8444
8445 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8446
8447         * mm-decode.el (mm-with-part): New macro.
8448         (mm-get-part): Use it; work with message/external-body as well.
8449         (mm-save-part): Treat name and filename equally.
8450
8451         * mm-extern.el (mm-extern-cache-contents): New function.
8452         (mm-inline-external-body): Use it; force the part to be displayed;
8453         move undisplayer added to the cached handle to the parent.
8454
8455         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
8456         (gnus-mime-view-part-as-type): Work with message/external-body.
8457
8458         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
8459
8460 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
8461
8462         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
8463         images in image-load-path.  [Sync with image.el, revision 1.60, in
8464         Emacs.]
8465
8466 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
8467
8468         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
8469         path rather than symbol.  Always return list of directories.
8470         Guarantee that image directory comes first.  [Sync with image.el,
8471         revision 1.59, in Emacs.]
8472
8473         * message.el (message-make-tool-bar): Adjust to new API of
8474         `gmm-image-load-path-for-library'.
8475
8476         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8477
8478         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8479
8480 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8481
8482         * gnus-art.el (gnus-article-only-boring-p):
8483         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
8484         intangible text.
8485         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
8486
8487 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
8488
8489         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.  Use
8490         `defun' instead of `gmm-defun-compat'.
8491
8492 2006-03-14  Simon Josefsson  <jas@extundo.com>
8493
8494         * message.el (message-unique-id): Don't use message-number-base36
8495         if (user-uid) is a float.
8496         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
8497
8498 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8499
8500         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
8501
8502         * gnus-art.el (gnus-mime-display-single): Make sure there is an
8503         empty line between a part and a message part.
8504
8505 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
8506
8507         * smiley.el: Add more test smileys.
8508         (smiley-data-directory, smiley-regexp-alist)
8509         (gnus-smiley-file-types): Fix doc strings.
8510         (smiley-update-cache): Clear smiley-cached-regexp-alist before
8511         adding new elements.
8512         (smiley-mouse-map): Unused code.  Make it a comment.
8513
8514 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8515
8516         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
8517         scan latest NoCeM messages instead of old ones.
8518         (gnus-nocem-check-article): Fix regexps so as to match to PGP
8519         delimiters that are recently used.
8520         (gnus-nocem-load-cache): Add autoload cookie.
8521
8522         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
8523
8524         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
8525         level which is larger than gnus-use-nocem is specified.
8526
8527         * gnus-group.el (gnus-group-get-new-news): Ditto.
8528
8529 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
8530
8531         * gnus-util.el (gnus-tool-bar-update): New function.
8532
8533         * gnus-group.el (gnus-group-update-tool-bar): New variable.
8534         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
8535
8536         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
8537
8538         * gnus-group.el (gnus-group-redraw-when-idle)
8539         (gnus-group-redraw-check): Remove.
8540         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
8541
8542 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8543
8544         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
8545         if optional last element is specified in splits (FIELD VALUE...).
8546
8547 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
8548
8549         * message.el (message-make-tool-bar): Rename gmm-image-load-path
8550         to gmm-image-load-path-for-library.  Call with no-error argument.
8551         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
8552
8553         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8554
8555         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8556
8557         * gmm-utils.el (gmm-image-load-path): Remove alias.
8558
8559 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
8560
8561         * gmm-utils.el (gmm-image-load-path): Add alias.
8562
8563         * nnml.el (nnml-generate-nov-databases-directory): Rename from
8564         nnml-generate-nov-databases-1.
8565         (nnml-generate-nov-databases): Use it.
8566         (nnml-generate-nov-databases-directory): Document no-active
8567         argument.
8568
8569         * gmm-utils.el (gmm-image-load-path-for-library): Return single
8570         directory if path is t.  Add no-error.
8571
8572         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
8573         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
8574
8575         * gnus-art.el (gnus-article-browse-delete-temp-files): Simplify
8576         resetting gnus-article-browse-html-temp-list.
8577
8578         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
8579         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
8580         Add example to docstring.  Rename local variables.  Move error
8581         checks to default case in cond and simplify.
8582
8583 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8584
8585         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
8586         handle is multipart when calling it recursively.
8587         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
8588
8589 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
8590
8591         * nnimap.el (nnimap-request-update-info-internal): Optimize.
8592         Don't `gnus-uncompress-range' to avoid excessive memory usage.
8593
8594 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8595
8596         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
8597         is loaded.
8598
8599         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
8600         loaded.
8601
8602 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
8603
8604         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
8605         to "Emacs 23 (unicode)" in doc string.
8606
8607         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
8608         "Emacs 23 (unicode)" in comment.
8609
8610 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8611
8612         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
8613
8614         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
8615         characters 160 through 255 in Emacs 23.
8616
8617 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8618
8619         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
8620         gnus-article-browse-html-temp.
8621         (gnus-article-browse-delete-temp): Make it customizable.  Add
8622         `file'.  Adjust doc string.
8623         (gnus-article-browse-delete-temp-files): Add argument.  Allow
8624         query for each file.  Adjust doc string.
8625         (gnus-article-browse-html-parts): Add
8626         `gnus-article-browse-delete-temp-files' to
8627         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
8628
8629 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
8630
8631         * gnus-art.el (gnus-article-browse-html-temp)
8632         (gnus-article-browse-delete-temp): New variables.
8633         (gnus-article-browse-delete-temp-files): New function.
8634         (gnus-article-browse-html-parts): Use it.
8635
8636 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8637
8638         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
8639
8640         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
8641         string.
8642
8643         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
8644         gnus-summary-insert-new-articles when unplugged.  Remove
8645         gnus-summary-search-article-forward.
8646
8647         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
8648         display-visual-class instead of display-color-cells.
8649
8650 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8651
8652         * dgnushack.el: Autoload customize-group for XEmacs.
8653
8654         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
8655         message/* containing non-ASCII text properly.
8656
8657 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
8658
8659         * message.el: Require gmm-utils, remove autoloads.
8660         (message-tool-bar): Set default based on
8661         gmm-tool-bar-style.
8662         (message-tool-bar-gnome): Add gmm-customize-mode.
8663
8664         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
8665         gmm-tool-bar-style.
8666         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
8667
8668         * gnus-group.el (gnus-group-tool-bar): Set default based on
8669         gmm-tool-bar-style.
8670         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
8671
8672         * gmm-utils.el (gmm-image-directory): Rename variable from
8673         gmm-image-load-path.
8674         (gmm-image-load-path): Use gmm-image-directory.
8675         (gmm-customize-mode): New function.
8676         (gmm-tool-bar-style): New variable.
8677
8678         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
8679         gnus-group-redraw-line-number.
8680         (gnus-group-redraw-check): Simplify.
8681         (gnus-group-tool-bar-update): Remove redraw check.
8682         (gnus-group-make-tool-bar): Add redraw check.
8683
8684 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
8685
8686         * gnus-art.el (gnus-button): Add missing parentheses.
8687
8688 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8689
8690         * lpath.el: Fbind line-number-at-pos.
8691
8692 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8693
8694         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
8695
8696 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8697
8698         * gnus-art.el (gnus-button): New face.
8699         (gnus-article-button-face): Use it.
8700
8701         * gnus-sum.el (gnus-summary-tool-bar-gnome): Add
8702         gnus-summary-next-page.  Re-order.
8703
8704         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
8705         next-node are now included.
8706         (gnus-group-redraw-line-number): New internal variable.
8707         (gnus-group-redraw-check): Helper function for updating the tool
8708         bar.
8709         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
8710
8711         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
8712
8713         * spam.el (spam-spamassassin-score-regexp): New internal variable.
8714         (spam-extra-header-to-number, spam-check-spamassassin-headers):
8715         Use it to match format of Spamassassin 3.0 and later.  Reported by
8716         IRIE Tetsuya <irie@t.email.ne.jp>.
8717         (spam-check-bogofilter)
8718         (spam-bogofilter-register-with-bogofilter): Fix args of
8719         `gnus-error' calls.
8720
8721 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8722
8723         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
8724         unnecessary interaction when sending queued mails.  Reported by
8725         TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
8726
8727 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
8728
8729         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
8730         first or last are nil.
8731
8732 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8733
8734         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
8735
8736 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8737
8738         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
8739
8740 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8741
8742         * dns.el (query-dns): Protect more against buggy tcp output.
8743
8744 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
8745
8746         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
8747         nov.php.
8748
8749 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8750
8751         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
8752         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
8753         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
8754         output on the server side.
8755         (nnweb-google-create-mapping): Update regexps and add some
8756         progress indication.
8757
8758 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
8759
8760         * gnus-group.el (gnus-group-tool-bar-gnome): Fix
8761         gnus-agent-toggle-plugged.  Re-order icons.
8762         (gnus-group-tool-bar-gnome): Add
8763         gnus-group-{prev,next}-unread-group.
8764         (gnus-group-tool-bar-gnome): Re-order icons.
8765
8766         * gnus-sum.el (gnus-summary-tool-bar-gnome): Move
8767         gnus-summary-insert-new-articles.
8768
8769         * message.el (message-tool-bar-gnome, message-tool-bar-retro): Fix
8770         comments.
8771
8772         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
8773         also available in Emacs 21.3.
8774
8775         * message.el (message-fix-before-sending): Change "Emacs 22" to
8776         "Emacs 23 (unicode)" in comment.
8777
8778         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
8779         "Emacs 23 (unicode)" in comment.
8780
8781         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
8782         comment.
8783         (mm-coding-system-p): Add comment about no-MULE XEmacs.
8784
8785         * mm-view.el (mm-fill-flowed): Add :version.
8786
8787 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8788
8789         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
8790         and load-path.
8791
8792 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
8793
8794         * message.el: Autoload gmm-image-load-path.
8795         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
8796         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
8797         consitency.
8798
8799         * gmm-utils.el (gmm-image-load-path): Also search in
8800         "../etc/images".  Don't set gmm-image-load-path if we don't find
8801         the image.
8802
8803 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8804
8805         * gmm-utils.el (gmm-image-load-path): Don't make
8806         `gmm-image-load-path' include subdirectories which the second arg
8807         `image' might specify.
8808
8809         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
8810         subdirectory to icon file names.
8811
8812         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
8813
8814 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
8815
8816         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
8817         gmm-image-load-path calls.
8818
8819         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8820
8821         * message.el (message-make-tool-bar): Ditto.
8822
8823         * mml.el (mml-preview): Added comment concerning tool bar icons.
8824
8825         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
8826         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
8827
8828         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
8829         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
8830
8831         * message.el (message-tool-bar-gnome): Use new icon names.
8832         (message-make-tool-bar): Use `gmm-image-load-path'.
8833
8834         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path): New
8835         functions from MH-E.
8836         (gmm-image-load-path): New variable from MH-E.
8837         (gmm-image-load-path): New function from MH-E.  Added arguments
8838         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
8839         *-image-load-path-called-flag.
8840
8841 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
8842
8843         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
8844
8845 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
8846
8847         * nnimap.el (nnimap-request-move-article): Change folder back to
8848         source group before deleting.
8849
8850 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
8851
8852         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
8853
8854         * gnus-art.el (mm-url-insert-file-contents-external): Autoload
8855         mm-url.
8856
8857         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
8858
8859 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8860
8861         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
8862         coding system which mm-charset-to-coding-system returns for a
8863         given charset is valid.
8864
8865 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
8866
8867         * html2text.el (html2text-remove-tag-list):
8868         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
8869
8870 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
8871
8872         * gnus-cus.el: Revert 2005-10-17 change.
8873
8874 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8875
8876         * gnus-art.el (article-strip-banner): Call
8877         article-really-strip-banner only when the regexp match is made.
8878
8879 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8880
8881         * gnus-art.el (article-strip-banner): Use
8882         gnus-extract-address-components instead of
8883         mail-header-parse-addresses to make it work with non-ASCII text;
8884         remove mail-encode-encoded-word-string.
8885
8886         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
8887         values which are surrounded with \"...\"; make it never cause a
8888         Lisp error; give up parsing of parameters if it failed in
8889         extracting type.
8890
8891 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
8892
8893         * smime.el (smime-cert-by-ldap-1): Fix bug where
8894         `smime-ldap-search' returns results without userCertificates.
8895
8896 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8897
8898         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
8899
8900 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
8901
8902         * spam.el (spam-check-spamassassin-headers): Adapt format for
8903         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
8904         <ari@mbf.ocn.ne.jp>.
8905         (spam-list-of-processors): Add spam-use-gmane.
8906
8907 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8908
8909         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
8910         make-temp-file; make it work with XEmacs as well.
8911
8912         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
8913         mm-make-temp-file.
8914
8915         * mm-decode.el (mm-display-external): Use the 3rd arg of
8916         mm-make-temp-file.
8917         (mm-create-image-xemacs): Ditto.
8918
8919 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8920
8921         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
8922         with message-narrow-to-headers.
8923         (gnus-draft-setup): Narrow to header to run message-fetch-field.
8924         (gnus-draft-check-draft-articles): New function.
8925         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
8926
8927 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
8928
8929         * gnus-art.el (gnus-article-browse-html-parts):
8930         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
8931         Don't use suffix argument for mm-make-temp-file for Emacs 21
8932         compatibility.  Remove useless `format'.
8933
8934 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8935
8936         * nnweb.el (nnweb-google-wash-article): Update regexps.
8937         (nnweb-group-alist): Use defvoo instead of defvar.
8938
8939 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8940
8941         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
8942         re-loading nn* modules.
8943
8944 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
8945
8946         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
8947         for `tool-bar-mode' and don't check it's default-value.
8948
8949         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8950
8951         * message.el (message-make-tool-bar): Ditto.
8952
8953         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
8954         `substring'.  Shorten tmp-file name.
8955
8956         * gnus.el: Remove bogus comment.
8957
8958 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
8959
8960         * gnus-art.el (gnus-article-browse-html-parts): New function.
8961         (gnus-article-browse-html-article): New function for viewing html
8962         articles with a browser.
8963
8964 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
8965
8966         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
8967         in elisp.
8968         (pgg-gpg-encrypt-symmetric-region): Ditto.
8969         (pgg-gpg-sign-region): Ditto.
8970
8971         * pgg-def.el (pgg-text-mode): New variable.
8972
8973         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
8974         (mml2015-pgg-encrypt): Ditto.
8975
8976         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
8977         (mml1991-pgg-encrypt): Ditto.
8978
8979 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8980
8981         * nnfolder.el (nnfolder-insert-newsgroup-line): Use
8982         message-make-date instead of current-time-string.
8983
8984         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
8985         to gnus-decoded which mm-uu might set.
8986
8987 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8988
8989         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
8990         don't decode quoted parameters; remove misimported Emacs code.
8991         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8992         (rfc2231-decode-encoded-string): Don't use split-string which
8993         behaves differently according to Emacs version; use
8994         mm-decode-coding-region to convert charset to coding-system.
8995         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8996         (rfc2231-encode-string): Remove misimported Emacs code.
8997
8998 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8999
9000         * gnus-art.el (article-decode-charset): Don't use ignore-errors
9001         when calling mail-header-parse-content-type.
9002         (article-de-quoted-unreadable): Ditto.
9003         (article-de-base64-unreadable): Ditto.
9004         (article-wash-html): Ditto.
9005
9006         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
9007         calling mail-header-parse-content-type and
9008         mail-header-parse-content-disposition.
9009         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
9010         mail-header-parse-content-type.
9011
9012         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
9013         insert charset and format parameters; encode description after
9014         inserting it to buffer.
9015         (mml-insert-parameter): Fold lines properly even if a parameter is
9016         segmented into two or more lines; change the max column to 76.
9017
9018         * rfc1843.el (rfc1843-decode-article-body): Don't use
9019         ignore-errors when calling mail-header-parse-content-type.
9020
9021         * rfc2231.el (rfc2231-parse-string): Return at least type if
9022         possible; don't cause an error even if it fails in parsing of
9023         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
9024         (rfc2231-encode-string): Don't break lines at the beginning, leave
9025         it to mml-insert-parameter.
9026
9027         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
9028         calling mail-header-parse-content-type.
9029
9030 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
9031
9032         * spam-report.el (spam-report-gmane-use-article-number):
9033         Improve doc string.
9034         (spam-report-gmane-internal): Check if a suitable header was found
9035         in the article.
9036
9037 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9038
9039         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
9040         (rfc2231-encode-string): Make param*=value always begin with LWSP.
9041
9042 2006-02-05  Romain Francoise  <romain@orebokech.com>
9043
9044         Update copyright notices of all files in the gnus directory.
9045
9046 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9047
9048         * nnweb.el (nnweb-request-group): Avoid growing overview files.
9049
9050 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
9051
9052         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
9053         segmented lines of parameter value to cope with Thunderbird 1.5
9054         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
9055         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
9056         (rfc2231-encode-string): Don't make lines exceeding 76 column.
9057
9058 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
9059
9060         * mml.el (mml-generate-mime-1): Correct the order of inline signed
9061         parts.
9062
9063 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9064
9065         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
9066         there's only one active file for all servers.
9067         (nnweb-request-scan): Make sure nnweb-articles is initialized on
9068         solid groups.  Gnus might have used a FAST request to select the group.
9069         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
9070         and nnweb-search redundantly in the active file.
9071         (nnweb-request-list): Don't list bogus groups.  There can only be one.
9072         (nnweb-request-create-group): Don't use ARGS.
9073         (nnweb-possibly-change-server, nnweb-request-group): Remove some
9074         initialisations.  Let nnoo do the work.
9075
9076 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9077
9078         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
9079         Say the part has been decoded.
9080
9081         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
9082
9083 2006-01-31  Kevin Ryde  <user42@zip.com.au>
9084
9085         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
9086         mailcap-viewer-test-cache when there's no 'test clause, since that
9087         will invert the meaning of a "nil" test previously determined by
9088         mailcap-mailcap-entry-passes-test.
9089
9090 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9091
9092         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
9093         compiling.
9094
9095         * gnus-sum.el: Ditto.
9096
9097         * message.el: Don't bind tool-bar-map when compiling.
9098
9099 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
9100
9101         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
9102
9103 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9104
9105         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
9106         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
9107         current Google Groups.
9108
9109 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
9110
9111         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
9112         and tool-bar-mode.
9113
9114         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
9115         and tool-bar-mode.
9116
9117         * message.el (message-tool-bar-update): Simplify.
9118         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
9119
9120         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
9121         gnus-summary-buffer.
9122         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
9123         gnus-summary-reply.
9124
9125         * gmm-utils.el (gmm): Add :version.
9126
9127 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9128
9129         * Makefile.in (clean): New rule.
9130         (distclean): Use it.
9131
9132 2006-01-26  Steve Youngs  <steve@sxemacs.org>
9133
9134         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list): Don't
9135         autoload.
9136
9137 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9138
9139         * gmm-utils.el (gmm-verbose): Add :group.
9140
9141 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
9142
9143         * message.el: Change some comments WRT tool-bars.
9144
9145         * gnus-sum.el (gnus-summary-tool-bar)
9146         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
9147         (gnus-summary-tool-bar-zap-list): New variables.
9148         (gnus-summary-make-tool-bar): Complete rewrite using
9149         `gmm-tool-bar-from-list'.
9150
9151         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
9152         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list): New
9153         variables.
9154         (gnus-group-make-tool-bar): Complete rewrite using
9155         `gmm-tool-bar-from-list'.
9156         (gnus-group-tool-bar-update): New function.
9157
9158         * message.el (message-mode-field-menu): Add "Show hidden Headers".
9159
9160 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9161
9162         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
9163         is dissected into a single part of which the type is the same as
9164         the given one; decode charset.
9165
9166 2006-01-21  Kevin Ryde  <user42@zip.com.au>
9167
9168         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
9169         into alists as symbol not string, since that's what
9170         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
9171         look for.
9172
9173 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
9174
9175         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
9176         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
9177
9178         * message.el (message-tool-bar-gnome): Use gmm-ignore.
9179
9180 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9181
9182         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
9183         (gnus-xmas-mime-security-button-menu): New function.
9184
9185         * gnus-art.el (gnus-mime-security-button-commands): New variable.
9186         (gnus-mime-security-button-menu): New definition.
9187         (gnus-mime-security-button-map): Use them.
9188         (gnus-mime-security-button-menu): New function.
9189         (gnus-insert-mime-security-button): Addition to help echo.
9190         (gnus-mime-security-run-function, gnus-mime-security-save-part)
9191         (gnus-mime-security-pipe-part): New functions.
9192
9193         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
9194         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
9195
9196         * mm-decode.el (mm-handle-set-disposition): Remove.
9197         (mm-handle-set-description): Remove.
9198
9199 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9200
9201         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
9202         (mm-w3m-standalone-supports-m17n-p): New function.
9203         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
9204         w3m usage.
9205
9206         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone): Use
9207         mm-w3m-standalone-supports-m17n-p to alter w3m usage.
9208
9209 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
9210
9211         * message.el (message-tool-bar-zap-list): Use
9212         gmm-tool-bar-zap-list as custom type.
9213         (message-tool-bar-update): New function.
9214         (message-tool-bar, message-tool-bar-gnome)
9215         (message-tool-bar-retro): Add message-tool-bar-update.
9216         (message-tool-bar-gnome): Add flyspell-buffer.
9217
9218         * gnus-util.el (gnus-error): Describe `args'.
9219
9220         * gmm-utils.el (gmm-error): Describe `args'.
9221         (gmm-tool-bar-zap-list): New widget.
9222         (gmm-tool-bar-from-list): Improve description of `zap-list'.
9223
9224 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9225
9226         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
9227         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
9228         the number of recursive calls.
9229
9230         * mm-decode.el (mm-handle-set-disposition): New macro.
9231         (mm-handle-set-description): New macro.
9232
9233 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9234
9235         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
9236         encoding.
9237
9238 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9239
9240         * message.el (message-tool-bar-zap-list, message-tool-bar)
9241         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
9242         (message-tool-bar-local-item-from-menu): Remove.
9243         (message-tool-bar-map): Replace by `message-make-tool-bar'.
9244         (message-make-tool-bar): New function.
9245         (message-mode): Use `message-make-tool-bar'.
9246
9247         * gmm-utils.el: New file.
9248         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
9249         (gmm-lazy): New widget copied from `nnmail.el'.
9250         (gmm-tool-bar-from-list): New function for creating customizable
9251         tool bars.
9252         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
9253         output.
9254         (gmm): Add :prefix to defgroup.
9255
9256 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
9257
9258         * gmm-utils.el (gmm-widget-p): New function.
9259
9260 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9261
9262         * mml.el (mml-attach-file): Describe `description' in doc string.
9263         (mml-menu): Add Emacs MIME manual and PGG manual.
9264
9265 2006-01-20  Richard M. Stallman  <rms@gnu.org>
9266
9267         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
9268
9269 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
9270
9271         * nntp.el (nntp-end-of-line): Doc fix.
9272
9273 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
9274
9275         * imap.el (imap-open): Handle case where buffer is a buffer
9276         object.
9277
9278 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9279
9280         * gnus-delay.el (gnus-delay): Don't autoload.
9281         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9282         to be re-loaded when customizing the `gnus-delay' group.
9283
9284 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
9285
9286         * message.el (message-insert-citation-line): Use newlines.
9287
9288 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9289
9290         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
9291         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
9292         these routines, so the passphrase can be managed externally and
9293         passed in to the system.
9294         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
9295         pgg-add-passphrase-to-cache function.
9296
9297         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
9298         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
9299         these routines, so the passphrase can be managed externally and
9300         passed in to the system.
9301         (pgg-pgp5-sign-region): Use new name of
9302         pgg-add-passphrase-to-cache function.
9303
9304 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9305
9306         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
9307         part of the decoded armor to find the key-identifier.
9308         (pgg-gpg-lookup-key-owner): New function to return the
9309         human-readable identifier of a key owner.
9310         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
9311         itself.
9312         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
9313         the key value) if we have a key and can match it against a secret
9314         key.  Also, added a note pointing out fact that the prompt only
9315         indicates the first matching key.
9316
9317         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
9318         pgg-decrypt-region.
9319         (pgg-add-passphrase-to-cache): Rename from
9320         `pgg-add-passphrase-cache' to reduce confusion (all callers
9321         changed).
9322         (pgg-remove-passphrase-from-cache): Rename from
9323         `pgg-remove-passphrase-cache' to reduce confusion (all callers
9324         changed).
9325         (pgg-read-passphrase, pgg-add-passphrase-cache)
9326         (pgg-remove-passphrase-cache): Add informative docstrings.
9327         (pgg-decrypt): Convey provided passphrase in subordinate call to
9328         pgg-decrypt-region.
9329
9330 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
9331
9332         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
9333         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
9334         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
9335         'passphrase' argument, so the passphrase can be managed externally
9336         and then passed in to the system.
9337
9338         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
9339         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
9340         so the passphrase cache can be used reliably with identifiers
9341         besides a pgp packet's key id.
9342
9343         * pgg-gpg.el (pgg-gpg-encrypt-region)
9344         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
9345         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
9346         these routines, so the passphrase can be managed externally and
9347         passed in to the system.
9348
9349         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
9350         'notruncate' argument, so the passphrase cache can be used
9351         reliably with identifiers besides a pgp packet's key id.
9352
9353 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
9354
9355         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
9356         symmetric encryption.
9357         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
9358         encrypted session key.
9359         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
9360         message ask for the passphrase in a proper way.
9361
9362         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
9363         New user commands for symmetric encryption.
9364
9365 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9366
9367         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
9368
9369         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
9370
9371 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
9372
9373         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
9374
9375 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9376
9377         * mm-decode.el (mm-inlined-types): Add application/pgp.
9378         (mm-automatic-display): Ditto.
9379
9380         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
9381         part as text.
9382
9383 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9384
9385         * nnrss.el: Update copyright.
9386         (nnrss-opml-import): Query whether to subscribe to each entry.
9387
9388         * gnus-art.el:
9389         * gnus-sum.el:
9390         * gnus-xmas.el:
9391         * messagexmas.el:
9392         * mm-uu.el:
9393         * mm-view.el: Update copyright.
9394
9395 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
9396
9397         * message.el (message-info): New function.
9398         (message-mode-menu): Add it.
9399         Update copyright.
9400
9401         * ChangeLog: Fix and update copyright.
9402
9403 2006-01-13  Romain Francoise  <romain@orebokech.com>
9404
9405         * message.el (message-forward-subject-name-subject): Prefer the
9406         address to 'nowhere' if the sender has no name.
9407         Fix typo.  Update copyright year.
9408
9409 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9410
9411         * gnus-art.el (article-wash-html): Use
9412         gnus-summary-show-article-charset-alist if a numeric arg is given.
9413         (gnus-article-wash-html-with-w3m-standalone): New function.
9414
9415         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
9416         mm-inline-text-html-render-with-w3m-standalone.
9417         (mm-text-html-washer-alist): Map w3m-standalone to
9418         gnus-article-wash-html-with-w3m-standalone.
9419         (mm-inline-text-html-render-with-w3m-standalone): New function.
9420
9421 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
9422
9423         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
9424         Improve LaTeX.
9425
9426 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9427
9428         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
9429         (nnrss-request-article): Render text/plain parts as HTML.
9430
9431         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
9432         the buffer.
9433
9434 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
9435
9436         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
9437         custom definition of `gnus-posting-styles'.
9438
9439         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bind
9440         print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
9441
9442 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
9443
9444         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
9445         Use nntp for bug archive.
9446
9447 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9448
9449         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
9450         parts.
9451         (nnrss-normalize-date): New function converts ISO 8601 date into
9452         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9453         (nnrss-check-group): Use it.
9454
9455 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9456
9457         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
9458
9459         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
9460         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9461         (nnrss-insert-w3): Ditto.
9462
9463 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9464
9465         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
9466         the articles to be forwarded including the case where neither a
9467         number of articles nor a region is specified.
9468
9469 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9470
9471         * nnrss.el (nnrss-request-article): Fix last change; fill
9472         text/plain parts.
9473
9474 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9475
9476         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
9477         in text/plain part.
9478         (nnrss-check-group): Don't add excessive newline to dc:subject.
9479
9480 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
9481
9482         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
9483         article.
9484
9485 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
9486
9487         * nnml.el: Don't require gnus-bcklg.  Autoload it.
9488         (nnml-use-compressed-files, nnml-save-mail): Support other
9489         comression programs such as bzip2.
9490
9491 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9492
9493         * dns.el (query-dns): Make sure we check the buffer size before
9494         removing tcp headers.
9495
9496 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9497
9498         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
9499         remove MIME buttons associated with multipart/alternative parts.
9500         (gnus-mime-display-alternative): Tag buttons using `article-type'
9501         text property.
9502
9503         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
9504         associated with multipart/alternative parts.
9505
9506         * gnus-art.el (gnus-signature-separator): Fix custom type.
9507
9508         * mm-decode.el (mm-inlined-types): Fix custom type.
9509         (mm-keep-viewer-alive-types): Ditto.
9510         (mm-automatic-display): Ditto.
9511         (mm-attachment-override-types): Ditto.
9512         (mm-inline-override-types): Ditto.
9513         (mm-automatic-external-display): Ditto.
9514
9515 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
9516
9517         * spam-report.el (spam-report-user-mail-address)
9518         (spam-report-user-agent): New variables.
9519         (spam-report-url-ping-plain): Use spam-report-user-agent.
9520
9521 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
9522
9523         * gnus-art.el (gnus-button-handle-custom): Do not just use
9524         `customize-apropos' for any "M-x customize-*" button but the
9525         function called for.  Accept both the function name and its
9526         argument in order to achieve this.
9527         (gnus-button-alist): Remove support for "custom:" URL's.  Pass
9528         function name to `gnus-button-handle-custom' in case of "M-x
9529         customize-*" buttons.
9530
9531 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9532
9533         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
9534         multipart/alternative and add xref to mm-discouraged-alternatives
9535         in doc string.
9536
9537         * mm-decode.el (mm-discouraged-alternatives): Add xref to
9538         gnus-buttonized-mime-types in doc string.
9539
9540 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
9541
9542         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
9543         Suggest image/.* in the doc string.
9544
9545 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
9546
9547         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
9548         message-marks (Debian bug #342521).
9549
9550 2005-12-12  Simon Josefsson  <jas@extundo.com>
9551
9552         * password.el (password-read-from-cache): Add.
9553         (password-read): Use it.
9554
9555 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9556
9557         * rfc2047.el (rfc2047-charset-to-coding-system): Recognize
9558         us-ascii as a MIME charset.
9559
9560         * mm-bodies.el (mm-decode-content-transfer-encoding): Protect
9561         against the case where the 2nd arg TYPE is nil.
9562
9563 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9564
9565         * pop3.el (pop3-stream-type): Fix custom version.
9566
9567         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
9568
9569 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9570
9571         * mm-decode.el (mm-display-external): Add missing cdr.
9572
9573 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9574
9575         * mm-decode.el (mm-display-external): Use nametemplate (defined in
9576         RFC1524) if it is in mailcap or add a suffix according to
9577         mailcap-mime-extensions when generating a temp filename; postpone
9578         deleting a temp file for 2 seconds for some wrappers, shell
9579         scripts, and so on, which might exit right after having started a
9580         viewer command as a background job.
9581
9582 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9583
9584         * nntp.el (nntp-marks-directory): Fix custom group.
9585
9586         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
9587         steps when < 10.
9588
9589         * gnus-start.el (gnus-no-server-1): Mention
9590         `gnus-level-default-subscribed' in doc string.
9591
9592 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9593
9594         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
9595         parens.
9596
9597 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9598
9599         * gnus-xmas.el (gnus-use-toolbar): Revert.
9600         (gnus-xmas-setup-toolbar): Use global default-toolbar if
9601         gnus-use-toolbar is default.
9602
9603         * messagexmas.el (message-use-toolbar): Revert.
9604         (message-setup-toolbar): Use global default-toolbar if
9605         message-use-toolbar is default.
9606
9607 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9608
9609         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
9610         according to default-toolbar-visible-p.
9611
9612         * messagexmas.el (message-use-toolbar): Ditto.
9613
9614 2005-11-26  Dave Love  <fx@gnu.org>
9615
9616         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
9617         (tls-program, tls-success): Provide openssl alternative.
9618
9619         * starttls.el: Doc fixes.
9620         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
9621         SERVICE to PORT.
9622
9623         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
9624         port null or service name.
9625         (starttls-negotiate): Autoload.
9626
9627 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9628
9629         * message.el (message-kill-to-signature): Fix interactive spec.
9630
9631 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9632
9633         * pop3.el (pop3-open-server): Recognize a string as a service name.
9634
9635 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
9636
9637         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
9638
9639 2005-11-23  Dave Love  <fx@gnu.org>
9640
9641         Add pop3s, pop3/starttls.
9642
9643         * pop3.el (pop3-authentication-scheme): Clarify doc.
9644         (open-tls-stream, starttls-open-stream): Autoload.
9645         (pop3-stream-type): New.
9646         (pop3-open-server): Use it.
9647
9648         * mail-source.el (mail-sources): Fix some :types.  Add stream type
9649         for POP.
9650         (mail-source-keyword-map): Add :stream for POP.
9651         (mail-source-fetch-pop): Use pop3-stream-type.
9652
9653 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9654
9655         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
9656         of current-time-string.
9657
9658 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
9659
9660         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
9661         date header.
9662
9663 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9664
9665         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
9666         it can seriously impact performance as it bypasses the agent's
9667         local caches.
9668
9669 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9670
9671         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
9672         must be explicitly online rather than "not explicitly offline" for
9673         its flags to be synchronized.
9674
9675         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
9676         that gnus-uu-unmark-thread will function correctly.
9677
9678         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
9679         1024K is instead displayed as 1M.
9680
9681 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9682
9683         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
9684
9685 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
9686
9687         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
9688
9689 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
9690
9691         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
9692         error message to display actual error condition.
9693         (gnus-agent-save-local): Avoid saving symbols that are bound to
9694         nil as they simply result in a warning message in
9695         gnus-agent-read-local.
9696
9697 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9698
9699         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
9700         rather than make-variable-buffer-local for file-precious-flag.
9701
9702 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9703
9704         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
9705         for duplicates which are removed.  The invalid sort check then
9706         triggers a rescan after the sort as sorting may have moved
9707         duplicate entries such that they can be cheaply detected.
9708
9709 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9710
9711         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
9712
9713 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9714
9715         * gnus-agent.el (gnus-agent-article-alist-save-format): Changed
9716         internal variable to a custom variable.  Changed default value
9717         from compressed(2) to uncompressed(1).
9718         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
9719         support for uncompressed agentview files.  Taken together, reading
9720         the agentview file should now be 6-7 times faster.
9721
9722 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
9723
9724         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
9725         as a buffer-local variable.  This avoids creating truncated
9726         dribble files as a result of a hang up, eg.
9727
9728 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
9729
9730         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
9731         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
9732         XEmacs.
9733
9734 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9735
9736         * gnus-start.el (gnus-start-draft-setup): Enforce
9737         `gnus-draft-mode' for nndraft:drafts at startup.
9738
9739         * gnus.el (gnus-splash): Change custom group.
9740         (gnus-group-get-parameter, gnus-group-parameter-value): Describe
9741         allow-list argument.
9742
9743         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
9744         string.
9745
9746 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9747
9748         * gnus-art.el (gnus-default-article-saver): Add user-defined
9749         `function' to custom type.
9750
9751 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9752
9753         * imap.el (imap-open): Handle case where buffer is a buffer
9754         object.
9755
9756 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
9757
9758         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
9759         long lines.
9760         (gnus-cache-delete-group): Wrap doc strings.
9761
9762         * gnus-agent.el (gnus-agent-rename-group)
9763         (gnus-agent-delete-group): Wrap doc strings.
9764
9765 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9766
9767         * messagexmas.el (message-use-toolbar): Change the valid values
9768         into default, top, bottom, left, and right.
9769         (message-toolbar-thickness): New variable.
9770         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
9771         well.
9772         (message-setup-toolbar): Make it work.
9773
9774         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
9775         (gnus-use-toolbar): Change the valid values into default, top,
9776         bottom, left, and right.
9777         (gnus-toolbar-thickness): New variable.
9778         (gnus-xmas-setup-toolbar): New function.
9779         (gnus-xmas-setup-group-toolbar): Use it.
9780         (gnus-xmas-setup-summary-toolbar): Use it.
9781
9782 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9783
9784         * gnus-start.el (gnus-1): Add "native" to
9785         gnus-predefined-server-alist.
9786
9787         * gnus.el (gnus-method-to-server): Don't add "native" to the
9788         lists here, because that leads to problems when
9789         gnus-select-method is bound.
9790
9791 2005-11-09  Simon Josefsson  <jas@extundo.com>
9792
9793         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
9794         use (not sort-by-date) instead.
9795
9796 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9797
9798         * gnus-delay.el (gnus-delay-group): Don't autoload.
9799         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9800         to be re-loaded when customizing the `gnus-delay' group.
9801
9802 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
9803
9804         * message.el: Revert last changes.
9805         (message-insert-citation-line): Use newlines.
9806
9807 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
9808
9809         * message.el (message-courtesy-message)
9810         (message-mark-insert-begin, message-mark-insert-end)
9811         (message-elide-ellipsis, message-cancel-message)
9812         (message-add-header, message-change-subject)
9813         (message-cross-post-followup-to-header)
9814         (message-cross-post-insert-note, message-reduce-to-to-cc)
9815         (message-widen-reply, message-delete-not-region)
9816         (message-kill-to-signature, message-insert-signature)
9817         (message-insert-importance-high, message-insert-importance-low)
9818         (message-insert-or-toggle-importance)
9819         (message-insert-disposition-notification-to)
9820         (message-indent-citation, message-yank-original)
9821         (message-cite-original-without-signature, message-cite-original)
9822         (message-insert-citation-line, message-position-on-field)
9823         (message-fix-before-sending, message-send-mail-partially)
9824         (message-send-mail, message-send-mail-with-sendmail)
9825         (message-send-mail-with-qmail, message-send-news)
9826         (message-check-news-header-syntax, message-generate-headers)
9827         (message-insert-courtesy-copy, message-fill-address)
9828         (message-fill-header, message-shorten-references)
9829         (message-setup-1, message-cancel-news)
9830         (message-forward-make-body-plain, message-forward-make-body-mime)
9831         (message-forward-make-body-mml, message-encode-message-body)
9832         (message-forward-make-body-digest-plain)
9833         (message-forward-make-body-digest-mime)
9834         (message-use-alternative-email-as-from): Insert `hard-newline'
9835         instead of ordinary newlines.
9836
9837 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9838
9839         * message.el (message-generate-headers): Downcase the argument
9840         given to message-check-element.
9841
9842 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
9843
9844         * nntp.el (nntp-authinfo-rejected): New error condition.
9845         (nntp-wait-for): Use new error condition to signal authentication
9846         error.
9847         (nntp-retrieve-data): Rethrow new error condition to break out of
9848         recursive call to nntp-send-authinfo.
9849
9850 2005-11-08  Romain Francoise  <romain@orebokech.com>
9851
9852         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
9853         (gnus-summary-exit-map): Bind to `Z p'.
9854         (gnus-summary-make-menu-bar): Add menu item.
9855
9856 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
9857
9858         * gnus-art.el (gnus-article-treat-custom): Add `first'.
9859         (gnus-treat-*): Add `first' in all doc strings.
9860
9861         * gnus-group.el (gnus-group-compact-group): Fix typo.
9862
9863 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9864
9865         * gnus.el (gnus-parameters-case-fold-search): New variable.
9866         (gnus-parameters-get-parameter): Use it.
9867
9868         * gnus-score.el (gnus-home-score-file): Doc fix.
9869
9870 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
9871
9872         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
9873
9874 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9875
9876         * mm-util.el (mm-special-display-p): New function.
9877
9878         * mml.el (mml-preview): Use it; doc fix.
9879
9880 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9881
9882         * imap.el (imap-open): Handle case where buffer is a buffer object.
9883
9884 2005-10-29  Romain Francoise  <romain@orebokech.com>
9885
9886         * message.el (message-fix-before-sending): Fix comment.
9887
9888 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9889
9890         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
9891
9892 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9893
9894         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
9895         Used in gnus-score.el.
9896
9897 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9898
9899         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
9900
9901 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
9902
9903         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
9904         whitespace removed in revision 7.8.  Use concatenated string to
9905         protect trailing whitespace.
9906
9907 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
9908
9909         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
9910         (nnimap-request-expire-articles): Use it to avoid sending 'UID
9911         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
9912         Courier IMAP ("some version from 2004").  Mostly based on similar
9913         code in the same function.
9914
9915 2005-10-26  Didier Verna  <didier@xemacs.org>
9916
9917         * gnus-group.el (gnus-group-compact-group): Invalidate original
9918         article buffer.
9919         * gnus-srvr.el (gnus-server-compact-server): Ditto.
9920         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
9921         NOV database and in article itself.
9922         Invalidate article backlog.
9923
9924 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9925
9926         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
9927
9928 2005-10-26  Simon Josefsson  <jas@extundo.com>
9929
9930         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
9931         part of 2004-07-25 change.
9932
9933 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9934
9935         * message.el (message-display-completion-list): New function.
9936         (message-expand-group): Use it; make sure the Completions buffer
9937         is modifiable.
9938 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
9939
9940         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
9941         user-mail-name is an empty string.
9942
9943 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
9944
9945         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
9946         depending on gnus-score-decay-constant.
9947
9948         * encrypt.el (encrypt-insert-file-contents)
9949         (encrypt-write-file-contents): Don't use `gnus-message'.
9950
9951         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
9952         arguments.
9953         (mm-uu-type-alist): Add message-marks and insert-marks.  Pass
9954         arguments to mm-uu-verbatim-marks-extract.
9955         (mm-uu-hide-markers): New variable.
9956         (mm-uu-extract): Use face similar to `gnus-cite-3'.
9957
9958         * gnus-fun.el (gnus-convert-image-to-x-face-command)
9959         (gnus-convert-image-to-face-command): Use "convert" by default to
9960         allow other input image formats.
9961         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
9962         accordingly.
9963
9964 2005-10-23  Simon Josefsson  <jas@extundo.com>
9965
9966         * imap.el (imap-gssapi-program): Align command line parameters
9967         with latest GNU SASL.
9968         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
9969
9970 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9971
9972         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
9973         HTML.
9974         (nnslashdot-request-article): Ditto.
9975
9976         * lpath.el (featurep): Add nobreak-char-display.
9977
9978 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
9979
9980         * mail-source.el (mail-source-fetch-pop): Require pop3.
9981         (mail-source-check-pop): Ditto.
9982
9983 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9984
9985         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
9986         errors.
9987
9988 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
9989
9990         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
9991         (gnus-treat-strip-leading-blank-lines): Improve doc string.
9992
9993         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
9994
9995         * mm-bodies.el (mm-decode-string): Call
9996         `mm-charset-to-coding-system' with allow-override argument.
9997
9998 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9999
10000         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
10001         (rfc2047-charset-to-coding-system): New function.
10002         (rfc2047-decode-encoded-words): New function.
10003         (rfc2047-decode-region): Use them.
10004         (rfc2047-decode-cte): Remove.
10005         (rfc2047-parse-and-decode): Remove.
10006         (rfc2047-decode): Remove.
10007
10008 2005-10-15  Kenichi Handa  <handa@m17n.org>
10009
10010         * rfc2047.el (rfc2047-decode-cte): New function.
10011         (rfc2047-decode-region): Change the way to decode successive
10012         encoded-words: decode B- or Q-encoding in each encoded-word,
10013         concatenate them, and decode it as charset.
10014
10015 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10016
10017         * lpath.el: Fbind codepage-setup for XEmacs.
10018
10019 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
10020
10021         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
10022         widget-move-and-invoke.
10023         (gnus-custom-mode): Use gnus-custom-map.
10024
10025 2005-10-15  Bill Wohler  <wohler@newt.com>
10026
10027         * message.el (message-tool-bar-map): Renamed image file from
10028         mail_send to mail/send.
10029
10030 2005-10-16  Masatake YAMATO  <jet@gyve.org>
10031
10032         * message.el (message-expand-group): Pass the common
10033         prefix substring of completion to `display-completion-list'.
10034
10035 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
10036
10037         * mml-sec.el (mml-secure-method): New internal variable.
10038         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
10039         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt): New
10040         functions using mml-secure-method.
10041
10042         * mml.el (mml-mode-map): Add key bindings for those functions.
10043         (mml-menu): Simplify security menu entries.  Suggested by Jesper
10044         Harder <harder@myrealbox.com>.
10045         (mml-attach-file, mml-attach-buffer, mml-attach-external): Goto
10046         end of message if point is the headers of the message.
10047
10048         * message.el (message-in-body-p): New function.
10049
10050         * assistant.el: Autoload gnus-util and netrc.
10051
10052         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
10053         Use `mm-charset-override-alist' only when decoding.
10054
10055         * mm-bodies.el (mm-decode-body): Call
10056         `mm-charset-to-coding-system' with allow-override argument.
10057
10058         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
10059         `filename' from Content-Disposition if Content-Type doesn't
10060         provide `name'.
10061         (gnus-mime-view-part-as-type): Set default instead of
10062         initial-input.
10063
10064 2005-10-09  Daniel Brockman  <daniel@brockman.se>
10065
10066         * format-spec.el (format-spec): Propagate text properties of % spec.
10067
10068 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
10069
10070         * gnus-art.el (gnus-treat-predicate): Add `first'.
10071
10072 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
10073
10074         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
10075         (mm-charset-override-alist): New variable.
10076         (mm-charset-to-coding-system): Use it.
10077         (mm-codepage-setup): New helper function.
10078         (mm-charset-eval-alist): New variable.
10079         (mm-charset-to-coding-system): Use mm-charset-eval-alist.  Warn
10080         about unknown charsets.
10081
10082         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
10083
10084 2005-10-04  David Hansen  <david.hansen@gmx.net>
10085
10086         * nnrss.el (nnrss-request-article): Add support for the comments tag.
10087         (nnrss-check-group): Ditto.
10088
10089 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
10090
10091         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
10092         Rename x-gnus-verbatim to x-verbatim.
10093         (mm-uu-type-alist): Fix regexp for verbatim-marks.
10094
10095         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
10096         x-verbatim.
10097
10098         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
10099
10100         * gnus-util.el (gnus-remove-duplicates): Remove.
10101
10102         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
10103         instead of gnus-remove-duplicates.
10104
10105         * message.el (message-remove-duplicates): Remove.
10106         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
10107         message-remove-duplicates.
10108
10109         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
10110         available, else use implementation from `delete-dups'.
10111
10112         * message.el (message-insert-expires): New function.
10113         (message-mode-map): Add key binding.
10114         (message-mode-field-menu): Add menu entry.
10115         (message-mode): Document it.
10116         (message-make-expires-date): Use `message-make-date'.
10117
10118 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
10119
10120         * message.el (message-make-expires-date): New function.
10121
10122 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10123
10124         * Makefile.in (list-installed-shadows): New entry.
10125         (install): Use it.
10126         (remove-installed-shadows): New entry.
10127
10128         * dgnushack.el (dgnushack-default-load-path): New variable.
10129         (dgnushack-find-lisp-shadows): New function.
10130         (dgnushack-remove-lisp-shadows): New function.
10131
10132 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10133
10134         * Makefile.in (install-el-elc): New entry.
10135         (install): Use it so that .el files are necessarily installed.
10136
10137 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10138
10139         * time-date.el: Autoload parse-time-string, XEmacs needs it.
10140
10141 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10142
10143         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
10144         function rather than the diff-mode.el package.
10145         (mm-display-external): Use with-current-buffer.
10146         (mm-viewer-completion-map, mm-viewer-completion-map):
10147         Move initialization inside declaration.
10148
10149 2005-09-29  Simon Josefsson  <jas@extundo.com>
10150
10151         * spam.el: Load hashcash when compiling, to avoid warnings.  Don't
10152         autoload mail-check-payment.
10153         (spam-check-hashcash): Define unconditionally, since hashcash.el
10154         is part of Gnus now.  Ignore errors from payment checking.
10155
10156 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
10157
10158         * message.el (message-bold-region, message-unbold-region): Rename
10159         from `bold-region' and `unbold-region'.
10160
10161         * message.el: Remove useless autoloads.
10162
10163 2005-09-28  Simon Josefsson  <jas@extundo.com>
10164
10165         * message.el (message-use-idna): Default to t.
10166         (message-use-idna): Test whether encoding works too.  Doc fix.
10167
10168 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10169
10170         * nntp.el (nntp-warn-about-losing-connection): Remove.
10171
10172 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
10173
10174         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
10175         customizable.  Change default value.
10176         (mm-uu-diff-groups-regexp): Change default value.
10177         (mm-uu-type-alist): Add doc string.
10178         (mm-uu-configure): Add doc string.  Make it interactive.
10179         (mm-uu-tex-groups-regexp): New variable.
10180         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
10181         (mm-uu-type-alist): Add LaTeX documents.
10182         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
10183         of "text/verbatim".
10184         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
10185
10186         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
10187         instead of "text/verbatim".
10188
10189         * message.el (message-mark-inserted-region)
10190         (message-mark-insert-file): Use slrn style marks when called with
10191         prefix argument.
10192
10193 2005-09-27  Simon Josefsson  <jas@extundo.com>
10194
10195         * message.el (message-idna-to-ascii-rhs-1): Reformat.
10196
10197 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
10198
10199         * message.el (message-remove-duplicates): New function.
10200         Implementation borrowed from `gnus-remove-duplicates'.
10201         (message-idna-to-ascii-rhs): Also encode idna addresses in
10202         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10203         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
10204         only ask about the same idna domain once per header and also tell
10205         in what header to replace the idna domain.
10206
10207         * gnus-art.el (article-decode-idna-rhs): Also decode idna
10208         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10209         (article-decode-idna-rhs): Fix regexp so that all idna-address in
10210         a header is decoded and not just the last one.
10211
10212 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10213
10214         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
10215         has been decoded.
10216
10217         * mm-decode.el (mm-automatic-display): Add text/verbatim.
10218         (mm-insert-part): Don't modify text if it has been decoded.
10219
10220         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
10221         decoded.
10222
10223         * mm-view.el (mm-inline-text): Don't strip text props unless
10224         decoding enriched or richtext parts.
10225
10226 2005-09-25  Romain Francoise  <romain@orebokech.com>
10227
10228         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
10229         * gnus-start.el (gnus-subscribe-interactively):
10230         * gnus-uu.el (gnus-uu-grab-articles):
10231         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
10232         space.
10233
10234 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
10235
10236         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
10237         * mm-view.el (mm-view-pkcs7-decrypt):
10238         * gnus-sum.el (gnus-summary-limit-to-extra)
10239         (gnus-summary-respool-article, gnus-read-move-group-name):
10240         * gnus-score.el (gnus-summary-increase-score):
10241         * gnus-util.el (gnus-completing-read-with-default):
10242         * gnus-art.el (gnus-read-save-file-name)
10243         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
10244         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
10245         * message.el (message-check-news-header-syntax):
10246         Follow convention for reading with the minibuffer.
10247
10248 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
10249
10250         * spam-report.el (spam-report-url-ping-plain):
10251         Use gnus-extended-version as User-Agent.
10252
10253         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
10254         default value is nil.
10255
10256         * mm-uu.el (mm-uu-type-alist): Added slrn style verbatim-marks.
10257         (mm-uu-verbatim-marks-extract): New function.
10258         (mm-uu-extract): New face.
10259         (mm-uu-copy-to-buffer): Use it.
10260
10261         * spam-report.el (spam-report-gmane-ham): Renamed from
10262         `spam-report-gmane-unspam'.
10263         (spam-report-gmane-internal): Renamed from `spam-report-gmane'.
10264         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
10265
10266         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
10267         Autoload.
10268         (spam-report-gmane-unregister-routine): Renamed
10269         `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
10270
10271 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
10272
10273         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
10274         (spam-report-gmane-unregister-routine): Add support for gmane
10275         unregistration.
10276
10277         * spam-report.el (spam-report-gmane-unspam)
10278         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
10279         (spam-report-gmane): Change to take a single article and do unspam
10280         registration.
10281
10282 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10283
10284         * mm-url.el (mm-url-decode-entities): Fix regexp.
10285
10286 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10287
10288         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
10289         default to nil, to be able to use Gnus at all.  If the default
10290         switches to something else, then the function should be fixed not
10291         be exceedingly slow.
10292
10293 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
10294
10295         * gnus-start.el (gnus-activate-group): If the server is nil, don't
10296         fail hard.
10297
10298         * spam-report.el: Add better Keywords line.
10299
10300         * spam.el: Add Maintainer and better Keywords line.
10301
10302 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10303
10304         * gnus-art.el (gnus-article-replace-part)
10305         (gnus-mime-replace-part): New functions.
10306         (gnus-mime-action-alist, gnus-mime-button-commands)
10307         (gnus-mime-save-part-and-strip): Added file argument.
10308         (gnus-article-part-wrapper): Added interactive argument.
10309
10310         * gnus-sum.el (gnus-summary-mime-map): Add
10311         `gnus-article-replace-part'.
10312
10313 2005-09-19  Didier Verna  <didier@xemacs.org>
10314
10315         The nnml compaction feature:
10316         * nnml.el (nnml-request-compact-group): New function.
10317         * nnml.el (nnml-request-compact): New function.
10318         * gnus-int.el (gnus-request-compact-group): New function.
10319         * gnus-int.el (gnus-request-compact): New function.
10320         * gnus-group.el (gnus-group-compact-group): New function.
10321         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
10322         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
10323         * gnus-srvr.el (gnus-server-compact-server): New function.
10324         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
10325         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
10326
10327 2005-09-18  Deepak Goel  <deego@gnufans.org>
10328
10329         * sieve.el (sieve-help): Fix `message' call: first arg should be a
10330         format spec.
10331
10332 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10333
10334         * gnus.el (gnus-group-startup-message): Bind image-load-path.
10335
10336 2005-09-15  Romain Francoise  <romain@orebokech.com>
10337
10338         * message.el (message-fill-paragraph): Clarify docstring.
10339
10340 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10341
10342         * gnus-art.el (gnus-mime-display-part): Protect against broken
10343         MIME messages.
10344
10345 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10346
10347         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
10348         before parsing header.
10349
10350 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
10351
10352         * html2text.el (html2text-replace-list): Add new entities.
10353
10354 2005-09-11  Romain Francoise  <romain@orebokech.com>
10355
10356         * message.el (message-alternative-emails): Improve docstring.
10357         (message-setup-1): Call `message-use-alternative-email-as-from'
10358         after `message-setup-hook' to give it precedence over posting
10359         styles, etc.
10360         (message-use-alternative-email-as-from): Add docstring.  Remove
10361         the original From header if present.
10362
10363         * nnml.el (nnml-compressed-files-size-threshold): New variable.
10364         (nnml-save-mail): Use it.
10365
10366         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
10367         articles.  Add new argument `silent'.
10368         (gnus-uu-mark-all): Report the total number of marked articles.
10369
10370 2005-09-10  Romain Francoise  <romain@orebokech.com>
10371
10372         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
10373         (gnus-uu-mark-series): Likewise.
10374
10375 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
10376
10377         * spam-report.el (spam-report-gmane): Fix generation of spam
10378         report URL.
10379
10380 2005-09-10  Simon Josefsson  <jas@extundo.com>
10381
10382         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
10383         t, based on discussion on the ding list with Robert Epprecht
10384         <epprecht@solnet.ch>.
10385
10386 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
10387
10388         * spam-report.el (spam-report-gmane): Make it work without
10389         X-Report-Spam header.  Gmane now only provides Archived-At.
10390         This is only used if `spam-report-gmane-use-article-number' is nil.
10391         (spam-report-gmane-spam-header): Remove.  Not used anymore.
10392
10393         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
10394         make `gnus-summary-sort-by-recipient' work with threading.
10395
10396         * nnweb.el (nnweb-google-wash-article): Print a message if article
10397         is not available.
10398
10399 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10400
10401         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
10402         change.  Decode text/* parts content before displaying.
10403
10404 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
10405
10406         * mml-smime.el: Remove defvar of gnus-extract-address-components.
10407
10408 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10409
10410         * mm-view.el (mm-display-inline-fontify): Disable support modes.
10411
10412         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
10413         url-package-name, url-package-version,
10414         w3m-cid-retrieve-function-alist, w3m-current-buffer,
10415         w3m-display-inline-images, and w3m-minor-mode-map.
10416
10417 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
10418
10419         * message.el (message-tab-body-function): Fix mismatched custom type.
10420
10421         * gnus.el (gnus-group-change-level-function): Ditto.
10422
10423         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
10424
10425         * gnus-art.el (gnus-signature-limit)
10426         (gnus-article-mime-part-function): Ditto.
10427
10428 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10429
10430         * mml.el (mml-mode): Silence the byte compiler.
10431
10432         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
10433         using `(sit-for 0)' before moving the point to the specified part;
10434         skip unbuttonized parts.
10435         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
10436         return to the summary window if gnus-auto-select-part is non-nil.
10437
10438 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
10439
10440         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options): New
10441         variables.
10442         (mml-dnd-attach-file, mml-mode): Use them.
10443
10444         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
10445         Make fetching article by MID work again for Google Groups.  Added
10446         FIXME concerning gnus-group-make-web-group.
10447
10448         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
10449         Don't depend on Gnus by using mail-extract-address-components if
10450         gnus-extract-address-components is not bound.
10451
10452 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10453
10454         * gnus-art.el (gnus-mime-display-security): Don't display the
10455         signature, but only the signed part.
10456
10457 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10458
10459         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
10460
10461         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
10462         list, not listp.
10463
10464 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
10465
10466         * mm-encode.el (mm-encode-content-transfer-encoding): Likewise
10467         when encoding.
10468
10469         * mm-bodies.el (mm-decode-content-transfer-encoding):
10470         De-canonicalize CRLF for all text content types, not just
10471         text/plain.
10472
10473 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10474
10475         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
10476         valid article; point arrow and cursor at the MIME button.
10477
10478 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10479
10480         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
10481         Suggested by Dan Christensen <jdc@uwo.ca>.
10482
10483         * mm-decode.el (mm-save-part): Enable change of prompt.
10484
10485 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
10486
10487         * gnus-msg.el (gnus-inews-add-send-actions): Made
10488         `message-post-method' lambda parameter ARG `&optional'.
10489
10490 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10491
10492         * gnus-sum.el (gnus-summary-mime-map): Added
10493         gnus-article-save-part-and-strip, gnus-article-delete-part and
10494         gnus-article-jump-to-part.
10495
10496         * gnus-art.el (gnus-article-edit-article): Added quiet argument.
10497         (gnus-article-edit-part): Use it.
10498         (gnus-article-part-wrapper): Added no-handle argument.
10499         (gnus-article-save-part-and-strip, gnus-article-delete-part): New
10500         functions.
10501
10502 2005-08-29  Romain Francoise  <romain@orebokech.com>
10503
10504         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
10505         docstring.
10506         (gnus-face-from-file): Likewise.
10507
10508 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10509
10510         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
10511         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
10512         non-nil.
10513         (gnus-auto-select-part): New variable.
10514         (gnus-article-jump-to-part): New function.
10515         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
10516         (gnus-mime-delete-part): Allow selecting specified part after
10517         deleting or stripping parts.
10518         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
10519         part if argument is bogus.
10520
10521 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
10522
10523         * gnus-art.el (w3m-minor-mode-map):
10524         * gnus-spec.el (gnus-newsrc-file-version):
10525         * gnus-util.el (nnmail-active-file-coding-system)
10526         (gnus-original-article-buffer, gnus-user-agent):
10527         * gnus.el (gnus-ham-process-destinations)
10528         (gnus-parameter-ham-marks-alist)
10529         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
10530         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
10531         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
10532         * mm-decode.el (gnus-current-window-configuration):
10533         * mm-extern.el (gnus-article-mime-handles):
10534         * mm-url.el (url-current-object, url-package-name)
10535         (url-package-version):
10536         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
10537         (smime-keys, w3m-cid-retrieve-function-alist)
10538         (w3m-current-buffer, w3m-display-inline-images)
10539         (w3m-minor-mode-map):
10540         * mml-smime.el (gnus-extract-address-components):
10541         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
10542         (gnus-newsrc-hashtb, message-default-charset)
10543         (message-deletable-headers, message-options)
10544         (message-posting-charset, message-required-mail-headers)
10545         (message-required-news-headers):
10546         * mml1991.el (mc-pgp-always-sign):
10547         * mml2015.el (mc-pgp-always-sign):
10548         * nnheader.el (nnmail-extra-headers):
10549         * rfc1843.el (gnus-decode-encoded-word-function)
10550         (gnus-decode-header-function, gnus-newsgroup-name):
10551         * spam-stat.el (gnus-original-article-buffer): Add defvars.
10552
10553 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
10554
10555         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
10556         the end of the date treatments.
10557
10558 2005-08-15  Simon Josefsson  <jas@extundo.com>
10559
10560         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
10561         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
10562         Capello and Romain Francoise.
10563         (pgg-fetch-key-function): Removed, not used?
10564         (pgg-insert-url-with-w3): Require url, to get
10565         url-insert-file-contents regardless of where it is defined.
10566
10567 2005-08-13  Romain Francoise  <romain@orebokech.com>
10568
10569         * message.el (message-cite-original-1): New function.
10570         (message-cite-original): Use it.
10571         (message-cite-original-without-signature): Ditto.
10572
10573 2005-08-08  Romain Francoise  <romain@orebokech.com>
10574
10575         * message.el (message-yank-empty-prefix): New variable.
10576         (message-indent-citation): Use it.
10577         (message-cite-original-without-signature): Respect X-No-Archive.
10578
10579 2005-08-08  Simon Josefsson  <jas@extundo.com>
10580
10581         * pgg.el: Autoload url-insert-file-contents instead of loading
10582         w3/url.
10583         (pgg-insert-url-with-w3): Don't load url here.
10584
10585 2005-08-07  Jesper Harder  <harder@phys.au.dk>
10586
10587         * message.el (message-kill-to-signature): Don't insert newline at
10588         bol.
10589         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
10590
10591 2005-08-06  Romain Francoise  <romain@orebokech.com>
10592
10593         * message.el (message-user-fqdn): Fix typo in docstring.
10594
10595 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
10596
10597         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
10598
10599         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
10600
10601 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10602
10603         * mm-bodies.el (mm-encode-body): Use coding system rather than
10604         charset to encode text.
10605
10606         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
10607         number of charsets if utf-8 is available (XEmacs).
10608
10609 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
10610
10611         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
10612         taken from `gnus-button-mid-or-mail-regexp'.
10613         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
10614         (gnus-button-alist): Improve regexp for domain part of the MIDs
10615         for news:localpart@domain buttons.
10616         (gnus-button-ctan-directory-regexp): Update.
10617
10618 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10619
10620         * sieve-manage.el (sieve-manage-interactive-login): Use
10621         make-local-variable rather than make-variable-buffer-local.
10622         (sieve-manage-open): Ditto.
10623         (sieve-manage-authenticate): Ditto.
10624
10625         * mml.el (mml-generate-mime-1): Make the content type default to
10626         text/plain if the filename is not specified.
10627
10628 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10629
10630         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
10631         instead of insert-buffer.
10632
10633         * message.el (message-yank-original): Ditto; set the mark at the
10634         end of the yanked message.
10635
10636 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10637
10638         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
10639         lines to scroll rather than to stop it.
10640
10641         * mml.el (mml-generate-default-type): Add doc string.
10642         (mml-generate-mime-1): Use mm-default-file-encoding or make it
10643         default to application/octet-stream when determining the content
10644         type if it is not specified for the part or the mml contents; add
10645         a comment about mml-generate-default-type.
10646
10647 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
10648
10649         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
10650         make it default to application/octet-stream when determining the
10651         content type if it is not specified for the external contents.
10652
10653 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10654
10655         * rfc2231.el (rfc2231-parse-string): Take care that not only a
10656         segmented parameter but also other parameters might be there.
10657
10658 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10659
10660         * mm-decode.el (mm-display-external): Delete temp file, directory
10661         and buffer immediately if the external process is exited.
10662
10663 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10664
10665         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
10666         fewer lines than that of scroll-margin.
10667         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
10668
10669 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10670
10671         * gnus-art.el (gnus-article-next-page): Revert.
10672         (gnus-article-beginning-of-window): New macro.
10673         (gnus-article-next-page-1): Use it.
10674         (gnus-article-prev-page): Ditto.
10675         (gnus-article-edit-part): Use insert-buffer-substring instead of
10676         insert-buffer.
10677         (gnus-article-edit-exit): Ditto.
10678
10679         * gnus-util.el (gnus-beginning-of-window): Remove.
10680         (gnus-end-of-window): Remove.
10681
10682         * lpath.el: Don't bind header-line-format and scroll-margin.
10683
10684 2005-07-25  Simon Josefsson  <jas@extundo.com>
10685
10686         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
10687         to have the url package without w3.  Reported by Daiki Ueno
10688         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
10689
10690 2005-07-20  Didier Verna  <didier@xemacs.org>
10691
10692         * gnus-diary.el: Remove the description comment (nndiary is now
10693         properly documented in the Gnus manual).
10694         Fix the spelling of "Back End".
10695         * nndiary.el: Ditto.
10696         Fix the copyright notice.
10697
10698 2005-07-18  Romain Francoise  <romain@orebokech.com>
10699
10700         * gnus-sum.el (gnus-summary-to-prefix)
10701         (gnus-summary-newsgroup-prefix): New variables.
10702         (gnus-summary-from-or-to-or-newsgroups): Use them.
10703
10704 2005-07-17  Romain Francoise  <romain@orebokech.com>
10705
10706         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
10707         space as it's generally not especially interesting to the user.
10708
10709 2005-07-16  Romain Francoise  <romain@orebokech.com>
10710
10711         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
10712         nil to avoid prompting and file modification if one of the
10713         messages at the top of the nnfolder file contains a copyright
10714         notice.
10715         Update copyright notice.
10716
10717         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
10718         instead of `current-time-string' as the latter creates a time
10719         string that is not RFC 2822 compliant (it lacks the zone).
10720         Update copyright notice.
10721
10722 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10723
10724         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
10725         for text/rtf.  Display default in prompt.  Pass default for M-n.
10726
10727         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
10728
10729 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10730
10731         * gnus-msg.el (gnus-button-mailto): Remove
10732         save-selected-window-window hackery because it relies on
10733         save-selected-window internals.
10734
10735 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10736
10737         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
10738         (gnus-article-next-page-1): Use gnus-beginning-of-window.
10739         (gnus-article-prev-page): Ditto.
10740
10741         * gnus-util.el (gnus-beginning-of-window): New function.
10742         (gnus-end-of-window): New function.
10743
10744         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
10745
10746 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
10747
10748         * gnus-score.el (gnus-score-edit-all-score): Set
10749         gnus-score-edit-exit-function to gnus-score-edit-done and call
10750         gnus-message.
10751
10752 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10753
10754         * gnus-msg.el (gnus-button-mailto): Remove
10755         save-selected-window-window hackery because it relies on
10756         save-selected-window internals.
10757
10758 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10759
10760         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
10761         add-minor-mode.
10762         (gnus-binary-mode): Ditto.
10763
10764         * gnus-topic.el (gnus-topic-mode): Ditto.
10765
10766 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
10767
10768         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
10769         (gnus-article-prev-page): Take scroll-margin into consideration.
10770
10771 2005-07-04  Lute Kamstra  <lute@gnu.org>
10772
10773         Update FSF's address in GPL notices.
10774
10775 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
10776
10777         * gnus.el (gnus-exit):
10778         * gnus-group.el (gnus-group-icons):
10779         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
10780
10781         * gnus-nocem.el (gnus-nocem):
10782         * message.el (message-various, message-buffers, message-sending)
10783         (message-interface, message-forwarding, message-insertion)
10784         (message-headers, message-news, message-mail):
10785         * pgg-gpg.el (pgg-gpg):
10786         * pgg-parse.el (pgg-parse):
10787         * pgg-pgp.el (pgg-pgp):
10788         * pgg-pgp5.el (pgg-pgp5):
10789         * pop3.el (pop3): Finish `defgroup' description with period.
10790
10791 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10792
10793         * gnus-art.el (article-display-face): Improve the efficiency.
10794         (article-display-x-face): Ditto; remove grey x-face stuff.
10795
10796 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10797
10798         * gnus-art.el (article-display-face): Correct the position in
10799         which Faces are inserted.
10800
10801 2005-06-29  Didier Verna  <didier@xemacs.org>
10802
10803         * gnus-art.el (article-display-face): Display faces in correct
10804         order.
10805
10806 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10807
10808         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
10809         (gnus-fill-real-hashtb): Use hash table instead of obarray.
10810         (gnus-nocem-check-article): Fetch the Type header.
10811         (gnus-nocem-message-wanted-p): Fix the way to examine types.
10812         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
10813         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
10814         make sure gnus-nocem-hashtb is initialized.
10815         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
10816         (gnus-nocem-unwanted-article-p): Ditto.
10817
10818         * pgg.el (pgg-verify): Return the verification result.
10819
10820 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10821
10822         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
10823         is ascii.
10824
10825 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
10826
10827         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
10828         `show-nonbreak-escape'.
10829
10830 2005-06-23  Lute Kamstra  <lute@gnu.org>
10831
10832         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
10833
10834         * dig.el (dig-mode):
10835         * smime.el (smime-mode): Use gnus-run-mode-hooks.
10836
10837 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
10838
10839         * nnimap.el (nnimap-split-download-body): Fix spellings.
10840
10841 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
10842
10843         * gnus-art.el (gnus-article-encrypt-body):
10844         * gnus-cus.el (gnus-score-customize):
10845         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
10846         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
10847
10848 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
10849
10850         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
10851         header by looking for magic "MII" at the beginnig.
10852
10853 2005-06-16  Miles Bader  <miles@gnu.org>
10854
10855         * gnus-xmas.el (gnus-xmas-group-startup-message):
10856         Use renamed gnus-splash face.
10857
10858         * assistant.el (assistant-field): Remove "-face" suffix from face name.
10859         (assistant-field-face): New backward-compatibility alias for renamed
10860         face.
10861         (assistant-render-text): Use renamed assistant-field face.
10862
10863         * spam.el (spam): Remove "-face" suffix from face name.
10864         (spam-face): New backward-compatibility alias for renamed face.
10865         (spam-face, spam-initialize): Use renamed spam face.
10866
10867         * message.el (message-header-to, message-header-cc)
10868         (message-header-subject, message-header-newsgroups)
10869         (message-header-other, message-header-name)
10870         (message-header-xheader, message-separator, message-cited-text)
10871         (message-mml): Remove "-face" suffix from face names.
10872         (message-header-to-face, message-header-cc-face)
10873         (message-header-subject-face, message-header-newsgroups-face)
10874         (message-header-other-face, message-header-name-face)
10875         (message-header-xheader-face, message-separator-face)
10876         (message-cited-text-face, message-mml-face):
10877         New backward-compatibility aliases for renamed faces.
10878         (message-font-lock-keywords): Use renamed message faces.
10879
10880         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
10881         (sieve-test-commands, sieve-tagged-arguments):
10882         Remove "-face" suffix from face names.
10883         (sieve-control-commands-face, sieve-action-commands-face)
10884         (sieve-test-commands-face, sieve-tagged-arguments-face):
10885         New backward-compatibility aliases for renamed faces.
10886         (sieve-control-commands-face, sieve-action-commands-face)
10887         (sieve-test-commands-face, sieve-tagged-arguments-face):
10888         Use renamed sieve faces.
10889
10890         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
10891         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
10892         (gnus-group-news-3-empty, gnus-group-news-4)
10893         (gnus-group-news-4-empty, gnus-group-news-5)
10894         (gnus-group-news-5-empty, gnus-group-news-6)
10895         (gnus-group-news-6-empty, gnus-group-news-low)
10896         (gnus-group-news-low-empty, gnus-group-mail-1)
10897         (gnus-group-mail-1-empty, gnus-group-mail-2)
10898         (gnus-group-mail-2-empty, gnus-group-mail-3)
10899         (gnus-group-mail-3-empty, gnus-group-mail-low)
10900         (gnus-group-mail-low-empty, gnus-summary-selected)
10901         (gnus-summary-cancelled, gnus-summary-high-ticked)
10902         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
10903         (gnus-summary-high-ancient, gnus-summary-low-ancient)
10904         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
10905         (gnus-summary-low-undownloaded)
10906         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
10907         (gnus-summary-low-unread, gnus-summary-normal-unread)
10908         (gnus-summary-high-read, gnus-summary-low-read)
10909         (gnus-summary-normal-read, gnus-splash):
10910         Remove "-face" suffix from face names.
10911         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
10912         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
10913         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
10914         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
10915         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
10916         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
10917         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
10918         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
10919         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
10920         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
10921         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
10922         (gnus-summary-selected-face, gnus-summary-cancelled-face)
10923         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
10924         (gnus-summary-normal-ticked-face)
10925         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
10926         (gnus-summary-normal-ancient-face)
10927         (gnus-summary-high-undownloaded-face)
10928         (gnus-summary-low-undownloaded-face)
10929         (gnus-summary-normal-undownloaded-face)
10930         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
10931         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
10932         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
10933         (gnus-splash-face):
10934         New backward-compatibility aliases for renamed faces.
10935         (gnus-group-startup-message): Use renamed gnus faces.
10936
10937         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
10938         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
10939         (gnus-server-agent): Remove "-face" suffix from face names.
10940         (gnus-server-agent-face, gnus-server-opened-face)
10941         (gnus-server-closed-face, gnus-server-denied-face)
10942         (gnus-server-offline-face):
10943         New backward-compatibility aliases for renamed faces.
10944         (gnus-server-agent-face, gnus-server-opened-face)
10945         (gnus-server-closed-face, gnus-server-denied-face)
10946         (gnus-server-offline-face): Use renamed gnus faces.
10947
10948         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
10949         Remove "-face" suffix from face names.
10950         (gnus-picon-xbm-face, gnus-picon-face):
10951         New backward-compatibility aliases for renamed faces.
10952
10953         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
10954         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
10955         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
10956         (gnus-cite-11): Remove "-face" suffix from face names.
10957         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
10958         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
10959         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
10960         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
10961         New backward-compatibility aliases for renamed faces.
10962         (gnus-cite-attribution-face, gnus-cite-face-list)
10963         (gnus-article-boring-faces): Use renamed gnus faces.
10964
10965         * gnus-art.el (gnus-signature, gnus-header-from)
10966         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
10967         (gnus-header-content): Remove "-face" suffix from face names.
10968         (gnus-signature-face, gnus-header-from-face)
10969         (gnus-header-subject-face, gnus-header-newsgroups-face)
10970         (gnus-header-name-face, gnus-header-content-face):
10971         New backward-compatibility aliases for renamed faces.
10972         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
10973
10974         * gnus-sum.el (gnus-summary-selected-face)
10975         (gnus-summary-highlight): Use renamed gnus faces.
10976         * gnus-group.el (gnus-group-highlight): Likewise.
10977
10978 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
10979
10980         * gnus-sieve.el (gnus-sieve-article-add-rule):
10981         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
10982         * spam-stat.el (spam-stat-buffer-change-to-spam)
10983         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
10984
10985         * message.el (message-is-yours-p):
10986         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
10987
10988 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10989
10990         * mm-view.el (mm-inline-text): Withdraw the last change.
10991
10992 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
10993
10994         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
10995         executing enriched-decode.
10996
10997 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10998
10999         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
11000         charset of tar files.
11001
11002 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
11003
11004         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
11005
11006 2005-06-04  Lute Kamstra  <lute@gnu.org>
11007
11008         * nnfolder.el (nnfolder-read-folder): Make sure that undo
11009         information is never recorded.
11010
11011 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11012
11013         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
11014
11015 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11016
11017         * pop3.el (pop3-apop): Run md5 in the binary mode.
11018
11019         * starttls.el (starttls-set-process-query-on-exit-flag):
11020         Use eval-and-compile.
11021
11022 2005-05-31  Simon Josefsson  <jas@extundo.com>
11023
11024         * smime.el (smime-replace-in-string): Define.
11025         (smime-cert-by-ldap-1): Use it.
11026
11027 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
11028
11029         * gnus-art.el (article-display-x-face): Replace
11030         process-kill-without-query by gnus-set-process-query-on-exit-flag.
11031
11032         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
11033         set-process-query-on-exit-flag or process-kill-without-query.
11034
11035         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
11036         loop instead of replace-regexp.
11037
11038         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
11039         instead of process-kill-without-query if it is available.
11040
11041         * lpath.el: Fbind ldap-search-entries.
11042
11043         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
11044         instead of find-file-hooks if it is available.
11045
11046         * mml1991.el: Bind pgg-default-user-id when compiling.
11047
11048         * mml2015.el: Bind pgg-default-user-id when compiling.
11049
11050         * nndraft.el (nndraft-request-associate-buffer):
11051         Use write-contents-functions instead of write-contents-hooks if it is
11052         available.
11053
11054         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
11055         instead of find-file-hooks if it is available.
11056
11057         * nntp.el (nntp-open-connection): Replace
11058         process-kill-without-query by gnus-set-process-query-on-exit-flag.
11059         (nntp-open-ssl-stream): Ditto.
11060         (nntp-open-tls-stream): Ditto.
11061
11062         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
11063         set-process-query-on-exit-flag or process-kill-without-query.
11064         (starttls-open-stream-gnutls): Use it instead of
11065         process-kill-without-query.
11066         (starttls-open-stream): Ditto.
11067
11068 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
11069
11070         * smime.el (smime-cert-by-ldap-1): Don't use
11071         replace-regexp-in-string.
11072
11073 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
11074
11075         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
11076
11077         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
11078         in PEM format.  Adjust to the XEmacs compability.
11079
11080 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
11081
11082         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
11083         by `string-to-number'.
11084         * gnus-agent.el (gnus-agent-regenerate-group)
11085         (gnus-agent-fetch-articles): Ditto.
11086         * gnus-art.el (gnus-button-fetch-group): Ditto.
11087         * gnus-cache.el (gnus-cache-generate-active)
11088         (gnus-cache-articles-in-group): Ditto.
11089         * gnus-group.el (gnus-group-set-current-level)
11090         (gnus-group-insert-group-line): Ditto.
11091         * gnus-score.el (gnus-score-set-expunge-below)
11092         (gnus-score-set-mark-below, gnus-summary-score-effect)
11093         (gnus-summary-score-entry): Ditto.
11094         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
11095         (gnus-soup-pack): Ditto.
11096         * gnus-spec.el (gnus-xmas-format): Ditto.
11097         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
11098         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
11099         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
11100         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
11101         * nndb.el (nndb-get-remote-expire-response): Ditto.
11102         * nndiary.el (nndiary-parse-schedule-value)
11103         (nndiary-string-to-number, nndiary-request-replace-article)
11104         (nndiary-request-article): Ditto.
11105         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
11106         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
11107         * nneething.el (nneething-make-head): Ditto.
11108         * nnfolder.el (nnfolder-request-article)
11109         (nnfolder-retrieve-headers): Ditto.
11110         * nnheader.el (nnheader-file-to-number): Ditto.
11111         * nnkiboze.el (nnkiboze-request-article): Ditto.
11112         * nnmail.el (nnmail-process-unix-mail-format)
11113         (nnmail-process-babyl-mail-format): Ditto.
11114         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
11115         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
11116         (nnmh-request-create-group, nnmh-request-list-1)
11117         (nnmh-request-group, nnmh-request-article): Ditto.
11118         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
11119         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
11120         * nnsoup.el (nnsoup-make-active): Ditto.
11121         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
11122         * nntp.el (nntp-find-group-and-number)
11123         (nntp-retrieve-headers-with-xover): Ditto.
11124         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
11125         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
11126         (pgg-format-key-identifier): Ditto.
11127         * pop3.el (pop3-last, pop3-stat): Ditto.
11128         * qp.el (quoted-printable-decode-region): Ditto.
11129
11130         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
11131         of concat.
11132
11133 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11134
11135         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
11136
11137         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
11138
11139         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
11140
11141         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
11142
11143         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
11144
11145         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
11146
11147         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
11148         (gnus-carpal-mode): Ditto.
11149
11150         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
11151         (gnus-browse-mode): Ditto.
11152
11153         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
11154
11155         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
11156
11157 2005-05-29  Richard M. Stallman  <rms@gnu.org>
11158
11159         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
11160
11161 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11162
11163         * gnus-util.el (gnus-run-mode-hooks): New function.
11164
11165         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
11166
11167         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
11168         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
11169
11170 2005-05-27  Lute Kamstra  <lute@gnu.org>
11171
11172         * dns-mode.el (dns-mode): Specify customization group.
11173
11174 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
11175
11176         * gnus-agent.el (gnus-agent-make-mode-line-string):
11177         Use mode-line-highlight as mouse-face.
11178
11179 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11180
11181         * canlock.el (canlock): Change the parent group to news.
11182
11183         * deuglify.el (gnus-outlook-deuglify): Add :group.
11184
11185         * dig.el (dig): Add :group.
11186
11187         * dns-mode.el (dns-mode): Add :group.
11188
11189         * encrypt.el (encrypt): Add :group.
11190
11191         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
11192         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
11193         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
11194         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
11195         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
11196
11197         * gnus-diary.el (gnus-diary): Add :group.
11198
11199         * gnus.el (gnus-group-news-1-face): Add :group.
11200         (gnus-group-news-1-empty-face): Ditto.
11201         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
11202         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
11203         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
11204         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
11205         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
11206         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
11207         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
11208         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
11209         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
11210         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
11211         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
11212         (gnus-summary-high-ticked-face): Ditto.
11213         (gnus-summary-low-ticked-face): Ditto.
11214         (gnus-summary-normal-ticked-face): Ditto.
11215         (gnus-summary-high-ancient-face): Ditto.
11216         (gnus-summary-low-ancient-face): Ditto.
11217         (gnus-summary-normal-ancient-face): Ditto.
11218         (gnus-summary-high-undownloaded-face): Ditto.
11219         (gnus-summary-low-undownloaded-face): Ditto.
11220         (gnus-summary-normal-undownloaded-face): Ditto.
11221         (gnus-summary-high-unread-face): Ditto.
11222         (gnus-summary-low-unread-face): Ditto.
11223         (gnus-summary-normal-unread-face): Ditto.
11224         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
11225         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
11226
11227         * hashcash.el (hashcash): New custom group.
11228         (hashcash-default-payment): Add :group.
11229         (hashcash-payment-alist): Ditto.
11230         (hashcash-default-accept-payment): Ditto.
11231         (hashcash-accept-resources): Ditto.
11232         (hashcash-path): Ditto.
11233         (hashcash-extra-generate-parameters): Ditto.
11234         (hashcash-double-spend-database): Ditto.
11235         (hashcash-in-news): Ditto.
11236
11237         * message.el (message-minibuffer-local-map): Add :group.
11238
11239         * netrc.el (netrc): Add :group.
11240
11241         * sieve-manage.el (sieve-manage-log): Add :group.
11242         (sieve-manage-default-user): Diito.
11243         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
11244         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
11245         (sieve-manage-authenticators): Ditto.
11246         (sieve-manage-authenticator-alist): Ditto.
11247         (sieve-manage-default-port): Ditto.
11248
11249         * sieve-mode.el (sieve-control-commands-face): Add :group.
11250         (sieve-action-commands-face): Ditto.
11251         (sieve-test-commands-face): Ditto.
11252         (sieve-tagged-arguments-face): Ditto.
11253
11254         * smime.el (smime): Add :group.
11255
11256         * spam-report.el (spam-report): Add :group.
11257
11258         * spam.el (spam, spam-face): Add :group.
11259
11260 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11261
11262         * nntp.el (nntp-next-result-arrived-p): Some news servers may
11263         return \n.\n.\n at the end of articles.  Protect against that.
11264         (nntp-with-open-group): Allow debugging.
11265
11266         * nnheader.el (mail-header-set-extra): Make into a function
11267         because I just could't understand how to quote the list properly.
11268
11269         * dns.el (query-dns-cached): New function.
11270
11271 2005-05-26  Lute Kamstra  <lute@gnu.org>
11272
11273         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
11274
11275 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11276
11277         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
11278
11279         * gnus-art.el: Don't autoload mail-extract-address-components.
11280
11281         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
11282         eval-and-compile to evaluate it.
11283
11284         * hashcash.el: Don't autoload executable-find.
11285
11286         * nndb.el: Don't declare the nndb back end two or more times; don't
11287         autoload news-reply-mode, news-setup, cancel-timer and telnet.
11288
11289         * nntp.el: Autoload format-spec instead of format; use
11290         eval-and-compile to evaluate autoload forms.
11291
11292 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
11293
11294         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
11295
11296 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11297
11298         * gnus.el (gnus-version-number): Bump version.
11299
11300 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
11301
11302         * gnus.el: No Gnus v0.3 is released.
11303
11304 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11305
11306         * lpath.el (featurep): Bind show-nonbreak-escape.
11307
11308 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11309
11310         * gnus-art.el (gnus-article-edit-part): Disable undo.
11311
11312 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11313
11314         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
11315         gnus-article-date-lapsed-new-header is t if date timer is active;
11316         skip headers in which the original date value is empty.
11317         (gnus-article-save-original-date): Redefine it as a macro.
11318         (gnus-display-mime): Use it.
11319
11320 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11321
11322         * gnus-art.el (article-date-ut): Support converting date in
11323         forwarded parts as well.
11324         (gnus-article-save-original-date): New function.
11325         (gnus-display-mime): Use it.
11326
11327 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
11328
11329         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
11330         enclosure element of <item>.
11331
11332 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
11333
11334         * message.el (message-kill-buffer-query): Renamed from
11335         `message-kill-buffer-query-if-modified'.  Added :version.
11336
11337 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11338
11339         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
11340         window layout.
11341
11342 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11343
11344         * mml.el: Autoload dnd when compiling.
11345
11346 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
11347
11348         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
11349         x-dnd-*.
11350
11351 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11352
11353         * qp.el (quoted-printable-encode-region): Save excursion.
11354
11355 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
11356
11357         * message.el (message-kill-buffer-query-if-modified): Add new variable
11358         so the user can kill a modified message buffer quickly.
11359         (message-kill-buffer): Use it.
11360
11361 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11362
11363         * lpath.el: Fbind display-time-event-handler; don't fbind
11364         string-to-multibyte.
11365
11366         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
11367
11368 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11369
11370         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
11371         contained in text because xml.el decodes entities) with LFs.
11372
11373 2005-04-11  Lute Kamstra  <lute@gnu.org>
11374
11375         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
11376         differently.
11377
11378 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11379
11380         * mm-util.el (mm-detect-coding-region): Typo.
11381
11382 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11383
11384         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
11385
11386 2005-04-06  Deepak Goel  <deego@gnufans.org>
11387
11388         * spam-stat.el (spam-stat-score-buffer): Add a call to a
11389         user-function allow user modifications of the scores.
11390         (spam-stat-score-buffer-user): New function, to allow
11391         user-computed modifications to the score.
11392         (spam-stat-score-buffer-user-functions): List of additional
11393         scoring functions.
11394         (spam-stat-error-holder): Global temporary error holder.
11395         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
11396         variable.
11397
11398 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
11399
11400         * gnus-registry.el (gnus-registry-clean-empty-function)
11401         (gnus-registry-trim, gnus-registry-fetch-groups)
11402         (gnus-registry-delete-group): Groups that match
11403         `gnus-registry-ignored-groups' are removed from the registry
11404         entries, not just ignored for splitting.  This helps clean up the
11405         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
11406         to get all the groups a message ID is in.
11407
11408         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
11409         (spam-stat-split-fancy): Change "threshhold" to "threshold".
11410         (spam-stat-score-buffer-user-functions): Add :number custom type.
11411
11412 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11413
11414         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
11415         argument in XEmacs.
11416
11417         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
11418         (nnrss-request-group): Decode group name first.
11419         (nnrss-request-article): Make a text/plain article if mml-to-mime
11420         failed.
11421         (nnrss-get-encoding): Return a compatible encoding according to
11422         nnrss-compatible-encoding-alist.
11423         (nnrss-find-el): Use consp instead of listp.
11424         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
11425
11426 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11427
11428         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
11429         which Emacs 20 doesn't support.
11430         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
11431
11432 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
11433
11434         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
11435         silence the byte compiler inside the defun.
11436
11437         * gnus-demon.el (parse-time-string): Add autoload.
11438
11439         * gnus-delay.el (parse-time-string): Add autoload.
11440
11441         * gnus-art.el (parse-time-string): Add autoload.
11442
11443         * nnultimate.el (parse-time): Require for `parse-time-string'.
11444
11445 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
11446
11447         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
11448
11449         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
11450
11451         * smime.el (smime-ldap-host-list): Add :version.
11452
11453 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
11454
11455         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
11456         pass it to `gnus-browse-read-group'.
11457         (gnus-browse-read-group): Add NUMBER argument and pass it to
11458         `gnus-group-read-ephemeral-group'.
11459
11460         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
11461         argument and pass it to `gnus-group-read-group'.
11462
11463 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
11464
11465         * mm-util.el (mm-xemacs-find-mime-charset): Only call
11466         mm-xemacs-find-mime-charset-1 if we have the mule feature
11467         available at runtime.
11468
11469 2005-03-25  Werner Lemberg  <wl@gnu.org>
11470
11471         * nnmaildir.el: Replace `illegal' with `invalid'.
11472
11473 2005-03-23  Lute Kamstra  <lute@gnu.org>
11474
11475         * time-date.el: Add comment on time value formats.
11476         Don't require parse-time.
11477         (with-decoded-time-value): New macro.
11478         (encode-time-value): New function.
11479         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
11480         (days-to-time): Return a valid time value when arg is huge.
11481         (time-since): Use time-subtract.
11482         (time-to-number-of-days): Use time-to-seconds.
11483
11484 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11485
11486         * gnus-start.el (gnus-display-time-event-handler):
11487         Check display-time-timer at runtime rather than only at load time
11488         in case display-time-mode is turned off in the mean time.
11489
11490 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
11491
11492         * nnimap.el (nnimap-open-connection): Print which authinfo file is
11493         used.
11494
11495         * nneething.el (nneething-map-file-directory): Derive from
11496         `gnus-directory'.
11497
11498         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
11499         the To/Cc button.
11500
11501 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
11502
11503         * nnmaildir.el (nnmaildir-request-accept-article):
11504         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
11505
11506 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11507
11508         * gnus-async.el: Require timer-funcs at compile time when in
11509         XEmacs for `run-with-idle-timer'.
11510
11511 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11512
11513         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
11514         autoloaded function.
11515
11516 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11517
11518         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
11519
11520 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
11521
11522         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
11523
11524 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11525
11526         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Add
11527         gnus-expert-user to default.
11528
11529 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
11530
11531         * nnimap.el (nnimap-open-server): Ditto.
11532
11533         * imap.el (imap-authenticate): Fix typo.
11534
11535 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
11536
11537         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
11538         buffer (since IMAP server might return FETCH response out of
11539         order, and the nntp buffer must be sorted).
11540
11541 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
11542
11543         * gnus-start.el (gnus-convert-old-newsrc): Fixed numeric
11544         comparison on string.
11545
11546         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
11547         (gnus-agent-score): Renamed category keywords to match gnus-cus.
11548         (gnus-agent-summary-fetch-series): Modified to protect against
11549         gnus-agent-summary-fetch-group clearing processable flags.
11550         (gnus-agent-synchronize-group-flags): Update live group buffer as
11551         synchronization may occur due to the user toggle the plugged
11552         status.
11553         (gnus-agent-fetch-group-1): Clear downloadable flag when article
11554         successfully downloaded.
11555         (gnus-agent-expire-group-1): Avoid using markers when the overview
11556         is in ascending order; greatly improves performance.
11557         (gnus-agent-regenerate-group): Use
11558         gnus-agent-synchronize-group-flags to reset read status in both
11559         gnus and server.
11560         (gnus-agent-update-files-total-fetched-for): Fixed initial size.
11561
11562 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
11563
11564         * message.el: Don't autoload former message-utils variables.
11565         (message-strip-subject-trailing-was): Change doc string.
11566
11567         * nnweb.el: Fixes for `gnus-group-make-web-group'.
11568         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
11569         (nnweb-google-search): Add "hl=en" here.
11570         (nnweb-google-parse-1, nnweb-google-create-mapping):
11571         Don't hardcode URL.
11572
11573 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
11574
11575         * message.el (message-get-reply-headers, message-followup):
11576         Mention related variables `message-use-followup-to' and
11577         `message-use-mail-followup-to', in the information buffer.
11578
11579         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
11580         of broken groups(-beta).google.com.
11581
11582 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
11583
11584         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
11585         parameter to invoked gnus-request-move-article; remove the
11586         redundant gnus-sum-hint-move-is-internal variable; apply the marks
11587         all at once instead of once per article.
11588         (gnus-summary-remove-process-mark): Accept a list of articles as
11589         well as a single article for processing.
11590
11591         * gnus-int.el (gnus-request-move-article): Add move-is-internal
11592         parameter.
11593
11594         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
11595
11596         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
11597
11598         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
11599         parameter.
11600
11601         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
11602         parameter.
11603
11604         * nnimap.el (nnimap-request-move-article): Add move-is-internal
11605         parameter and remove the gnus-sum-hint-move-is-internal variable.
11606
11607         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
11608         parameter.
11609
11610         * nndraft.el (nndraft-request-move-article): Add move-is-internal
11611         parameter.
11612
11613         * nndiary.el (nndiary-request-move-article): Add move-is-internal
11614         parameter.
11615
11616         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
11617
11618         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
11619         parameter.
11620
11621         * nnagent.el (nnagent-request-move-article): Add move-is-internal
11622         parameter.
11623
11624 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11625
11626         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
11627         a more conservative way.
11628
11629 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11630
11631         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
11632         buffer, so it moves the window's cursor.
11633
11634 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
11635
11636         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
11637         `mm-dissect-multipart' and receive the from field as an (optional)
11638         argument from `mm-dissect-multipart'.
11639         (mm-dissect-multipart): Receive the from field as an argument and
11640         pass it on when we call `mm-dissect-buffer' on MIME parts.
11641         Fixes verification/decryption of signed/encrypted MIME parts.
11642
11643 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
11644
11645         * gnus-sum.el (gnus-summary-move-article): Set
11646         gnus-sum-hint-move-is-internal for gnus-request-move-article and
11647         whatever it calls (right now, only nnimap-request-move article
11648         respects it).
11649
11650         * nnimap.el (nnimap-request-move-article): When
11651         gnus-sum-hint-move-is-internal is set, don't do the extra
11652         nnimap-request-article.
11653
11654 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
11655
11656         * nnheader.el (nnheader-find-file-noselect): Add doc string.
11657
11658         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
11659         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
11660
11661         * gnus-sum.el (gnus-summary-caesar-message):
11662         Apply `gnus-treat-article' after rotation.
11663
11664         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
11665         doc string.
11666
11667 2005-02-22  Simon Josefsson  <jas@extundo.com>
11668
11669         * encrypt.el (encrypt-password-cache-expiry): Remove (use
11670         `password-cache-expiry' instead).  Reported by Arne Jørgensen
11671         <arne@arnested.dk>.
11672         (encrypt): Add password-cache and password-cache-expiry as group
11673         members.
11674
11675 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
11676
11677         * smime.el (smime-ldap-host-list): Doc fix.
11678         (smime-ask-passphrase): Use `password-read-and-add' to read (and
11679         cache) password.
11680         (smime-sign-region): Use it.
11681         (smime-decrypt-region): Use it.
11682         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
11683         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
11684         fails.
11685         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
11686         certificate from DER to PEM format rather than calling openssl.
11687
11688         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
11689
11690         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
11691         for signing/encryption.
11692
11693         * mml.el (mml-parse-1): Use them.
11694
11695 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
11696
11697         * nnrss.el (nnrss-verbose): Removed.
11698         (nnrss-request-group): Use `nnheader-message' instead.
11699
11700 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
11701
11702         * nnrss.el (nnrss-verbose): New variable.
11703         (nnrss-request-group): Make it say nnrss is requesting a group.
11704
11705 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
11706
11707         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
11708         Handle news URL with given port correctly.
11709
11710 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11711
11712         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
11713         containing special characters.
11714
11715         * gnus-sum.el (gnus-summary-edit-article): Ditto.
11716
11717         * mml.el (mime-to-mml): Ditto.
11718
11719         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
11720         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
11721         (rfc2047-decode-region): Quote decoded words containing special
11722         characters when rfc2047-quote-decoded-words-containing-tspecials
11723         is non-nil.
11724
11725 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
11726
11727         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
11728
11729         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
11730
11731 2005-02-15  Simon Josefsson  <jas@extundo.com>
11732
11733         * nnimap.el (nnimap-debug): Doc fix.
11734
11735         * imap.el (imap-debug): Doc fix.
11736
11737 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11738
11739         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
11740
11741 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
11742
11743         * gnus.el (spam-contents): Improve docs for spam-contents
11744         parameter in its variable incarnation.
11745
11746 2005-02-14  Simon Josefsson  <jas@extundo.com>
11747
11748         * smime-ldap.el: Use require instead of load-library for ldap.
11749         (smime-ldap-search): Indent.
11750         (smime-ldap-search-internal): Shorten line.
11751
11752         * smime.el (smime-cert-by-dns): Add doc-string.
11753         (smime-cert-by-ldap-1): Indent.
11754
11755         * mml-smime.el (mml-smime-get-ldap-cert): Renamed from
11756         mml-smime-get-dns-ldap.
11757         (mml-smime-encrypt-query): Use new function.  Default to ldap.
11758
11759 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
11760
11761         * smime.el: Require smime-ldap.
11762         (smime-ldap-host-list): New variable.
11763         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
11764
11765         * mml-smime.el (mml-smime-encrypt-query): New function.
11766         (mml-smime-encrypt-query): Use it.
11767
11768         * smime-ldap.el: New file.
11769
11770 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11771
11772         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
11773
11774 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
11775
11776         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
11777         argument in doc string.  Make query for type more clear.
11778
11779 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
11780
11781         * gnus.el (gnus-group-startup-message): Search for gnus images in
11782         etc/images/gnus.
11783         * mm-util.el (mm-image-load-path): Likewise.
11784         * smiley.el (smiley-data-directory): Search for smilies in
11785         etc/images/smilies.
11786
11787 2005-02-09  Kim F. Storm  <storm@cua.dk>
11788
11789         Change Emacs release version from 21.4 to 22.1 throughout.
11790         Change Emacs development version from 21.3.50 to 22.0.50.
11791
11792 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11793
11794         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
11795
11796         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
11797         non-Mule XEmacs as well.
11798         (mm-decompress-buffer): Signal an error intentionally if it does
11799         not decompress compressed data because auto-compression-mode is
11800         disabled.
11801
11802 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
11803
11804         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
11805         an ID in the registry even if it has no groups.
11806
11807 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11808
11809         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
11810         merge it into mm-decompress-buffer.
11811         (gnus-mime-copy-part): Use the MIME part charset, the value which
11812         a user specified or gnus-newsgroup-charset for decoding, like
11813         gnus-mime-inline-part does; set buffer-file-coding-system to tell
11814         save-buffer what was used.  Suggested by Kevin Ryde
11815         <user42@zip.com.au>.
11816         (gnus-mime-inline-part): Allow the name parameter as well as the
11817         filename parameter; force decompressing of compressed data; always
11818         display contents being not decoded as unibyte.
11819
11820         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
11821         as well as the filename parameter.
11822
11823         * mm-util.el (mm-decompress-buffer): Merge
11824         gnus-mime-jka-compr-maybe-uncompress.
11825         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
11826         of compressed data.
11827
11828 2005-02-08  Simon Josefsson  <jas@extundo.com>
11829
11830         * imap.el (imap-log): Doc fix.
11831
11832 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11833
11834         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
11835         the coding cookies; decompress compressed parts.
11836
11837         * mml.el (mml-generate-mime-1): Add the charset parameter according
11838         to the value which a user specified manually or the coding cookie.
11839
11840         * mm-util.el (mm-string-to-multibyte): New function.
11841         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
11842         (mm-coding-system-to-mime-charset): New function.
11843         (mm-decompress-buffer): New function.
11844         (mm-find-buffer-file-coding-system): New function.
11845
11846         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
11847         (mm-display-inline-fontify): Rewrite for decoding and decompressing
11848         parts.
11849
11850 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
11851
11852         * mm-view.el (mm-display-inline-fontify): Decode a part according
11853         to the charset parameter.
11854
11855 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11856
11857         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
11858         prefix arg is neither nil nor a number, as info specifies.
11859
11860 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11861
11862         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
11863         timestamps.
11864
11865 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
11866
11867         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
11868         groups error checking and notify user.
11869
11870 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
11871
11872         * message.el (message-send-mail-function): Check existence of
11873         sendmail-program first before using default value
11874         `message-send-mail-with-sendmail'.  Otherwise use more generic
11875         `smtpmail-send-it'.
11876
11877 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11878
11879         * nntp.el (nntp-request-update-info): Always return nil.
11880
11881 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11882
11883         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
11884
11885 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11886
11887         * message.el (message-beginning-of-line): Change the behavior when
11888         invoked between BOL and : so that it first moves backward.
11889
11890 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11891
11892         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
11893         article buffer when editing of the article is discarded.
11894         (gnus-article-prepare): Revert.
11895
11896 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11897
11898         * gnus-art.el (gnus-article-prepare):
11899         Remove message-strip-forbidden-properties from the local hook.
11900
11901 2005-01-27  Simon Josefsson  <jas@extundo.com>
11902
11903         * password.el (password-cache-add): Only start one timer per key.
11904         Reported by Derek Atkins <warlord@MIT.EDU>.
11905
11906 2005-01-26  Steve Youngs  <steve@sxemacs.org>
11907
11908         * run-at-time.el: Removed.  It is no longer needed as
11909         timer-funcs.el in the xemacs-base package has a working version of
11910         `run-at-time'.
11911
11912         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
11913
11914         * password.el: Require timer-funcs instead of run-at-time in
11915         XEmacs.
11916         Remove `password-run-at-time' macro.
11917         (password-cache-add): Use `run-at-time' instead of
11918         `password-run-at-time'.
11919
11920         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
11921         Remove `nnheader-cancel-function-timers' alias,
11922         `cancel-function-timers' exists in XEmacs in timer-funcs.
11923
11924         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
11925         for `run-with-idle-timer'.
11926
11927         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
11928         for `run-at-time'.
11929
11930         * mm-url.el: Require timer-funcs at compile time when in XEmacs
11931         for `with-timeout'.
11932
11933         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
11934         the same as for XEmacs 21.4.
11935         No need to ignore `run-with-idle-timer', this function exists in
11936         XEmacs now in timer-funcs.el in the xemacs-base package.
11937         (dgnushack-compile): No need to delete
11938         run-at-time.el from the list of files to compile because it
11939         doesn't exist anymore.
11940
11941 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11942
11943         * mml.el (mml-generate-mime-1): Convert string into unibyte when
11944         inserting " *mml*" buffer's contents into a unibyte temp buffer.
11945
11946 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
11947
11948         * mail-source.el (mail-source-fetch-imap): Search for ^From case
11949         sensitively.
11950
11951 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
11952
11953         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
11954
11955 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11956
11957         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
11958         which will be inserted according to the multibyteness of a buffer
11959         rather than the type of contents.  Suggested by ARISAWA Akihiro
11960         <ari@mbf.ocn.ne.jp>.
11961
11962         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
11963         of string which old xml.el may return rather than a string.
11964
11965 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11966
11967         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
11968
11969 2005-01-16  Simon Josefsson  <jas@extundo.com>
11970
11971         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
11972         idn/idna.el isn't available.
11973         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
11974         <michael@waxrat.com>.
11975
11976         * hashcash.el: Remove non-FSF copyright header.
11977
11978         * hashcash.el (hashcash-extra-generate-parameters): New variable.
11979         (hashcash-generate-payment): Use it.
11980         (hashcash-generate-payment-async): Use it.
11981
11982 2005-01-15  Simon Josefsson  <jas@extundo.com>
11983
11984         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
11985         Suggested by Raymond Scholz <ray-2005@zonix.de>.
11986
11987         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
11988         gnus-summary-idna-message.
11989         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
11990         (gnus-summary-idna-message): New function.
11991
11992 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
11993
11994         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
11995         gnus-novice-user.
11996
11997 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11998
11999         * nnrss.el (nnrss-request-delete-group): Delete entries in
12000         nnrss-group-alist as well.
12001         (nnrss-save-server-data): Insert newline.
12002
12003 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
12004
12005         * gnus.el (gnus-user-agent): Use list of symbols instead of
12006         symbols.  Display full version number for (S)XEmacs.  Optionally
12007         display (S)XEmacs codename.
12008
12009         * gnus-util.el (gnus-emacs-version): Update for new
12010         `gnus-user-agent'.
12011
12012         * gnus-msg.el (gnus-extended-version): Make it possible to omit
12013         Gnus version.
12014
12015 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
12016
12017         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
12018         which is unreadable in some setups.
12019
12020 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12021
12022         * gnus-spec.el (gnus-update-format-specifications): Flush the
12023         group format spec cache if it doesn't support decoded group names.
12024
12025 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
12026
12027         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
12028         Allow to apply decay on score files matching a regexp.
12029
12030 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12031
12032         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
12033         compatibility in %g and %c.
12034
12035 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12036
12037         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
12038         name for only %g and %c.
12039         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
12040         of gnus-tmp-group to decoded group name.
12041         (gnus-group-make-rss-group): Exclude `/'s from group names.
12042
12043 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12044
12045         * nnrss.el (nnrss-get-encoding): Fix regexp.
12046
12047 2004-12-27  Simon Josefsson  <jas@extundo.com>
12048
12049         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
12050         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
12051         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
12052
12053 2004-12-17  Kim F. Storm  <storm@cua.dk>
12054
12055         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
12056
12057         * gnus-sum.el (gnus-summary-mode-map): Likewise.
12058
12059 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
12060
12061         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
12062
12063 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12064
12065         * nnrss.el: Require rfc2047 and mml.
12066         (nnrss-file-coding-system): New variable.
12067         (nnrss-format-string): Redefine it as an inline function.
12068         (nnrss-decode-group-name): New function.
12069         (nnrss-string-as-multibyte): Remove.
12070         (nnrss-retrieve-headers): Decode group name; don't use
12071         nnrss-format-string.
12072         (nnrss-request-group): Decode group name.
12073         (nnrss-request-article): Decode group name; allow a Message-ID as
12074         well as an article number; don't use nnrss-format-string; encode a
12075         Message-ID string which may contain non-ASCII characters; use
12076         mml-to-mime to compose a MIME article.
12077         (nnrss-request-expire-articles): Decode group name.
12078         (nnrss-request-delete-group): Decode group name.
12079         (nnrss-fetch): Clarify error message.
12080         (nnrss-read-server-data): Use insert-file-contents instead of load;
12081         bind file-name-coding-system; use multibyte buffer.
12082         (nnrss-save-server-data): Bind coding-system-for-write to the
12083         value of nnrss-file-coding-system; bind file-name-coding-system;
12084         add coding cookie.
12085         (nnrss-read-group-data): Use insert-file-contents instead of load;
12086         bind file-name-coding-system; use multibyte buffer.
12087         (nnrss-save-group-data): Bind coding-system-for-write to the
12088         value of nnrss-file-coding-system; bind file-name-coding-system.
12089         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
12090         make it work with non-ASCII text.
12091         (nnrss-find-el): Make it work with old xml.el as well.
12092
12093 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
12094
12095         * nnrss.el (nnrss-get-encoding): New function.
12096         (nnrss-fetch): Use unibyte buffer initially; bind
12097         coding-system-for-read while performing mm-url-insert; remove ^Ms;
12098         decode contents according to the encoding attribute.
12099         (nnrss-save-group-data): Add coding cookie.
12100         (nnrss-mime-encode-string): New function.
12101         (nnrss-check-group): Use it to encode subject and author.
12102
12103 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
12104
12105         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
12106         imaginary variable.
12107
12108 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12109
12110         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
12111         correctly even if there are wide characters.
12112
12113 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
12114
12115         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
12116         downcased symbol names; make a new cache instead of reusing
12117         bbdb-hashtable.
12118
12119 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12120
12121         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
12122         concatenating segments rather than before concatenating them.
12123         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12124
12125         * message.el (message-get-reply-headers): Bind `extra'.
12126
12127 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12128
12129         * message.el (message-extra-wide-headers): New variable.
12130         (message-get-reply-headers): Use it.
12131
12132 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12133
12134         * gnus-agent.el (gnus-agent-group-path): Decode group name.
12135         (gnus-agent-group-pathname): Ditto.
12136
12137         * gnus-cache.el (gnus-cache-file-name): Decode group name.
12138
12139         * gnus-group.el (gnus-group-make-group): Decode group name.
12140         (gnus-group-make-rss-group): Register the group data after opening
12141         the nnrss group.
12142
12143 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
12144
12145         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
12146         by expiry now get marked as read.
12147
12148 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12149
12150         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
12151
12152 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
12153
12154         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
12155         unify Latin characters in XEmacs.
12156         (mm-find-mime-charset-region): Use it.
12157
12158 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12159
12160         * gnus-util.el (gnus-delete-directory): New function.
12161
12162         * gnus-agent.el (gnus-agent-delete-group): Use it.
12163
12164         * gnus-cache.el (gnus-cache-delete-group): Use it.
12165
12166 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12167
12168         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
12169         names.
12170
12171 2004-12-16  Simon Josefsson  <jas@extundo.com>
12172
12173         * hashcash.el (hashcash-payment-alist): Fix custom :type.
12174
12175 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12176
12177         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
12178
12179         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
12180         (gnus-group-set-current-level): Decode group name.
12181
12182 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
12183
12184         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
12185         failed.
12186
12187 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12188
12189         * gnus-group.el (gnus-group-delete-group): Decode group name.
12190         (gnus-group-make-rss-group): Encode group name.
12191         (gnus-group-catchup-current): Decode group name.
12192         (gnus-group-kill-group): Decode group name.
12193
12194 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12195
12196         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
12197
12198 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12199
12200         * gnus-group.el (gnus-group-make-rss-group):
12201         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
12202
12203         * gnus-start.el (gnus-setup-news): Honor user's setting to
12204         gnus-message-archive-method.  Suggested by Lute Kamstra
12205         <lute@gnu.org>.
12206
12207 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
12208
12209         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
12210         global counterparts of the buffer-local variables.
12211
12212 2004-11-16  Romain Francoise  <romain@orebokech.com>
12213
12214         * gnus-sum.el (gnus-summary-exit): Don't clear the global
12215         counterparts of the buffer-local variables.
12216
12217 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12218
12219         * message.el (message-forbidden-properties): Fixed typo in doc
12220         string.
12221
12222 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12223
12224         * gnus-util.el (gnus-replace-in-string): Added doc string.
12225
12226         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
12227         to avoid problems when splitting mails with many recipients.
12228
12229 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12230
12231         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
12232         pop-to-buffer, covered by the subsequent gnus-configure-windows.
12233
12234 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
12235
12236         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
12237         if there is no hashtable in memory or file modification time is
12238         newer than cached timestamp.
12239
12240 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
12241
12242         * gnus-sum.el (gnus-summary-limit-to-recipient): Implement
12243         not-matching option.
12244
12245 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
12246
12247         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
12248         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
12249         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
12250         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
12251         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
12252         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
12253
12254 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12255
12256         * message.el (message-forward-make-body-mml): Remove headers
12257         according to message-forward-ignored-headers if a message is decoded.
12258
12259 2004-12-02  Romain Francoise  <romain@orebokech.com>
12260
12261         * message.el (message-forward-make-body-plain): Always remove
12262         headers according to message-forward-ignored-headers.
12263
12264 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
12265
12266         * spam.el (spam-summary-prepare-exit): Remove the
12267         gnus-summary-limit pop for now, it has problems with ham marks for
12268         me.
12269
12270 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
12271
12272         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
12273         correctly.
12274
12275 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
12276
12277         * format-spec.el (format-spec): Message the char.
12278
12279 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
12280
12281         * gnus-art.el (gnus-split-methods): Reformat comments.
12282
12283         * spam.el (spam-summary-prepare-exit): Remove article limits
12284         before exiting the summary buffer.
12285
12286 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12287
12288         * lpath.el: Remove bbdb-create-internal, bbdb-records,
12289         spam-BBDB-register-routine and spam-enter-ham-BBDB.
12290
12291         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
12292         order to silence the byte compiler.
12293
12294         * spam.el: Fix the way to silence the byte compiler, which
12295         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
12296         bbdb-search-simple, spam-BBDB-register-routine,
12297         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
12298         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
12299         spam-stat-buffer-is-spam, spam-stat-load,
12300         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
12301         spam-stat-save and spam-stat-split-fancy.
12302
12303 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12304
12305         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
12306         which may confuse users.
12307         (canlock-password-for-verify): Ditto.
12308
12309         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
12310
12311         * gnus-art.el (gnus-emphasis-alist): Ditto.
12312
12313         * gnus-registry.el (gnus-registry-max-entries): Ditto.
12314
12315         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
12316
12317         * gnus-start.el (gnus-save-killed-list): Ditto.
12318
12319         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
12320         (gnus-sum-thread-tree-root): Ditto.
12321         (gnus-sum-thread-tree-false-root): Ditto.
12322         (gnus-sum-thread-tree-single-indent): Ditto.
12323
12324         * message.el (message-courtesy-message): Ditto.
12325         (message-archive-note): Ditto.
12326         (message-subscribed-address-file): Ditto.
12327         (message-user-fqdn): Ditto.
12328
12329         * spam-report.el (spam-report-gmane-regex): Ditto.
12330
12331         * spam.el (spam-blackhole-good-server-regex): Ditto.
12332
12333 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12334
12335         * mml.el (mml-preview): Widen the message buffer before copying
12336         the contents to the preview buffer; sort headers before previewing.
12337
12338         * message.el (message-hidden-headers): Fix the way to avoid a bug
12339         in the `repeat' widget in Emacs 21.3 or earlier.
12340
12341 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12342
12343         * message.el (message-hidden-headers): Default to "^References:".
12344         Improve customization type.  Suggested by Reiner Steib
12345         <Reiner.Steib@gmx.de>.
12346
12347 2004-11-25  Romain Francoise  <romain@orebokech.com>
12348
12349         * message.el (message-strip-forbidden-properties): Remove check for
12350         obsolete `message-hidden' text property, hidden headers are not
12351         accessible in the buffer anymore.
12352
12353 2004-11-22  Romain Francoise  <romain@orebokech.com>
12354
12355         * message.el (message-header-format-alist): Add `From' in list
12356         so that it can be sorted.
12357         (message-fix-before-sending): Widen and sort headers before
12358         sending.
12359         (message-hide-headers): Use narrowing to hide headers by moving
12360         them to the top of the buffer and narrowing to the region
12361         underneath.
12362
12363 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12364
12365         * message.el (message-strip-forbidden-properties): Bind
12366         buffer-read-only (etc) to nil.
12367
12368 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12369
12370         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
12371         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12372
12373 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
12374
12375         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
12376
12377 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12378
12379         * dns.el (query-dns): Use sit-for to time instead of
12380         accept-process-output, since that doesn't seem to work on udp
12381         sockets.
12382
12383 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12384
12385         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
12386
12387 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
12388
12389         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
12390         doc string.  Improve doc string.
12391
12392 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12393
12394         * nntp.el (nntp-request-update-info): Return nil if
12395         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
12396         may not call gnus-activate-group which uselessly issues the GROUP
12397         commands for all nntp groups and wastes time.  Reported by Romain
12398         Francoise <romain@orebokech.com>.
12399
12400         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
12401
12402 2004-11-15  Simon Josefsson  <jas@extundo.com>
12403
12404         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
12405         headers separately.
12406         (gnus-button-openpgp): New function, inspired by Jochen Küpper
12407         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
12408
12409 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
12410
12411         * gnus-start.el (gnus-convert-old-newsrc):
12412         Assign legacy-gnus-agent to 5.10.7.
12413
12414 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12415
12416         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
12417         start of the lines.
12418
12419 2004-11-14  Magnus Henoch  <mange@freemail.hu>
12420
12421         * hashcash.el (hashcash-default-payment): Change default to 20.
12422         (hashcash-default-accept-payment): Change default to 20.
12423         (hashcash-process-alist): New variable.
12424         (hashcash-generate-payment-async): Add.
12425         (hashcash-already-paid-p): Add.
12426         (hashcash-insert-payment): Don't generate payments twice.
12427         (hashcash-insert-payment-async): Add.
12428         (hashcash-insert-payment-async-2): Add.
12429         (hashcash-cancel-async): Add.
12430         (hashcash-wait-async): Add.
12431         (hashcash-processes-running-p): Add.
12432         (hashcash-wait-or-cancel): Add.
12433         (mail-add-payment): New optional argument.  Conditionally start
12434         asynchronous calculation.
12435         (mail-add-payment-async): Add.
12436
12437         * message.el (message-send-mail): Wait for asynchronous hashcash
12438         results.  Don't clobber existing X-Hashcash headers.
12439         (message-setup-1): Call mail-add-payment-async when
12440         message-generate-hashcash is non-nil.
12441
12442 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12443
12444         * message.el (message-use-alternative-email-as-from): Examine the
12445         From header as well; use message-make-from in order to include a
12446         user's full name.
12447
12448 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12449
12450         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
12451         default; improve customization type.
12452         (gnus-emphasis-custom-with-format): New macro.
12453         (gnus-emphasis-custom-value-to-external): New function.
12454         (gnus-emphasis-custom-value-to-internal): New function.
12455
12456 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12457
12458         * dns.el (query-dns): Resolve reverse addresses.
12459
12460 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12461
12462         * gnus-group.el (gnus-group-get-new-news): Use it.
12463
12464         * gnus-start.el (gnus-check-reasonable-setup): New function.
12465
12466 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12467
12468         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
12469         "Args out of range" error.  Reported by Arnaud Giersch
12470         <arnaud.giersch@free.fr>.
12471
12472 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
12473
12474         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
12475
12476 2004-11-04  Richard M. Stallman  <rms@gnu.org>
12477
12478         * spam.el (spam group): Add :version.
12479
12480         * pgg-def.el (pgg group): Add :version.
12481
12482 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12483
12484         * gnus-art.el (gnus-article-edit-article): Don't associate the
12485         article buffer with a draft file.  This is a temporary measure
12486         against the 2004-08-22 change to gnus-article-edit-mode.
12487
12488 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12489
12490         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
12491         (html2text-format-tags): Remove unused variable `attr'.
12492
12493 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
12494
12495         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
12496
12497         * tls.el (tls-process-connection-type, tls-success)
12498         (tls-certtool-program): Add :version.
12499
12500         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
12501         (starttls-extra-arguments, starttls-process-connection-type)
12502         (starttls-connect, starttls-failure, starttls-success): Add :version.
12503
12504         * spam-stat.el (spam-stat): Add :version.
12505
12506         * sieve.el (sieve): Add :version.
12507
12508         * sha1.el (sha1): Add :version.
12509         (sha1-use-external): Remove redundant version.
12510
12511         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
12512         (nnmail-cache-ignore-groups, nnmail-spool-hook)
12513         (nnmail-split-fancy-match-partial-words)
12514         (nnmail-split-lowercase-expanded): Add :version.
12515
12516         * nndiary.el (nndiary): Add :version.
12517
12518         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
12519
12520         * mml-sec.el (mml-default-sign-method)
12521         (mml-default-encrypt-method, mml-signencrypt-style-alist):
12522         Add :version.
12523
12524         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
12525
12526         * mm-url.el (mm-url-use-external, mm-url-program)
12527         (mm-url-arguments): Add :version.
12528
12529         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
12530         (mm-attachment-file-modes, mm-decrypt-option)
12531         (mm-w3m-safe-url-regexp): Add :version.
12532
12533         * message.el (message-cite-prefix-regexp)
12534         (message-sendmail-envelope-from, message-minibuffer-local-map)
12535         (message-user-fqdn, message-completion-alist): Add :version.
12536
12537         * gnus-win.el (gnus-configure-windows-hook)
12538         (gnus-use-frames-on-any-display): Add :version.
12539
12540         * gnus-art.el (gnus-article-address-banner-alist)
12541         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
12542         (gnus-treat-from-picon, gnus-treat-mail-picon)
12543         (gnus-treat-x-pgp-sig): Add :version.
12544
12545         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
12546         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
12547         (gnus-summary-article-delete-hook)
12548         (gnus-summary-display-while-building): Add :version.
12549
12550         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
12551         (gnus-get-top-new-news-hook): Add :version.
12552
12553         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
12554         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
12555
12556         * gnus-registry.el (gnus-registry): Add :version.
12557
12558         * gnus-spec.el (gnus-use-correct-string-widths)
12559         (gnus-make-format-preserve-properties): Add :version.
12560
12561         * gnus.el (gnus-group-charter-alist)
12562         (gnus-group-fetch-control-use-browse-url)
12563         (gnus-install-group-spam-parameters): Add :version.
12564
12565         * gnus-diary.el (gnus-diary): Add :version.
12566
12567         * gnus-delay.el (gnus-delay): Add :version.
12568
12569         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
12570         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
12571         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
12572         Add :version.
12573
12574         * gnus-agent.el (gnus-agent-max-fetch-size)
12575         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
12576         (gnus-agent-prompt-send-queue): Add :version.
12577
12578         * deuglify.el (gnus-outlook-deuglify): Add :version.
12579
12580         * html2text.el: Beautify code.  Improve doc strings.  Some
12581         checkdoc cleanup.
12582         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
12583
12584 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
12585
12586         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
12587
12588 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
12589
12590         * gnus-registry.el (gnus-registry-hashtb): Create the registry
12591         when package is loaded.
12592
12593         * spam.el (spam-summary-score-preferred-header): Add global preference
12594         for people who want to override the default SpamAssassin over
12595         Bogofilter preference (when both are set).
12596         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
12597         (spam-user-format-function-S): Check
12598         spam-summary-score-preferred-header.
12599         (spam-extra-header-to-number): Add X-Bogosity header parsing.
12600         (spam-user-format-function-S): Format the score correctly.
12601
12602 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12603
12604         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
12605         signature file.  Suggested by Manoj Srivastava
12606         <srivasta@golden-gryphon.com>.
12607
12608         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
12609         iso-2022-jp even in the Japanese language environment.
12610         Suggested by Jason Rumney <jasonr@gnu.org>.
12611
12612 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12613
12614         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
12615         use the same characters as the dummy marks; make it free from
12616         getting affected by the language environment.
12617         (gnus-summary-read-group-1): Update mark positions only when the
12618         format spec is updated.
12619
12620         * gnus-spec.el (gnus-update-format-specifications): Return a list
12621         of updated types.
12622
12623 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12624
12625         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
12626         of boundp to check if display-warning is available.
12627
12628 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
12629
12630         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
12631
12632 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12633
12634         * nnspool.el (nnspool-spool-directory): Use news-path if the
12635         news-directory variable is not bound.
12636
12637         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
12638         function instead of display-warning if it is not available.
12639
12640 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
12641
12642         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
12643         v5-10: Use `point-at-bol'.
12644
12645 2004-10-26  Simon Josefsson  <jas@extundo.com>
12646
12647         * hashcash.el: Fix URL in comment, reported by Cheng Gao
12648         <chenggao@gmail.com>.
12649
12650 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
12651
12652         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
12653         instead.
12654
12655 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
12656
12657         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
12658         to remove a server from the nnimap-server-buffer-alist.
12659         (nnimap-open-connection, nnimap-close-server): Use it.
12660
12661         * gnus-encrypt.el: Remove file in favor of encrypt.el.
12662
12663 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12664
12665         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
12666         running the major-mode function.
12667
12668 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12669
12670         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
12671         dummy marks in the right way.
12672
12673 2004-10-18  David Edmondson  <dme@dme.org>
12674
12675         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
12676         excessively.
12677
12678 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
12679
12680         * gnus-util.el (gnus-split-references): Accept a nil references
12681         string and go on blissfully.
12682
12683         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
12684         cases where the references string is non-nil but has no references.
12685
12686         * encrypt.el: Add autoload tags.
12687
12688         * spam.el (spam-resolve-registrations-routine): Remove article
12689         from unregistration list too.  Reported by David Hanak
12690         <dhanak@isis.vanderbilt.edu>
12691
12692 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
12693
12694         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
12695         nil.  Changed custom type.
12696
12697 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
12698
12699         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
12700
12701         * gnus-sum.el (gnus-summary-move-article): Use it.
12702
12703 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
12704
12705         * encrypt.el: Add autoload cookies.
12706
12707         * spam.el (spam-backend-article-list-property)
12708         (spam-backend-get-article-todo-list)
12709         (spam-backend-put-article-todo-list)
12710         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
12711         Resolve registrations separately.
12712         (spam-register-routine): Format comments.
12713         (spam-unregister-routine, spam-register-routine): Always call with
12714         specific-articles, no default list.
12715         (spam-summary-prepare-exit): Use the spam-classifications function.
12716
12717         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
12718         gnus-encrypt.el.
12719
12720         * encrypt.el: Copied from gnus-encrypt.el.
12721
12722         * gnus-encrypt.el: Commented that it's obsolete.
12723
12724 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12725
12726         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
12727         (gnus-score-save): Use it.
12728
12729         * message.el (message-bury): Use `window-dedicated-p'.
12730
12731 2004-10-15  Simon Josefsson  <jas@extundo.com>
12732
12733         * pop3.el (top-level): Don't require nnheader.
12734         (pop3-read-timeout): Add.
12735         (pop3-accept-process-output): Add.
12736         (pop3-read-response, pop3-retr): Use it.
12737
12738 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
12739
12740         * spam.el (spam-register-routine): Move comment.
12741         (spam-verify-bogofilter): Use 'unknown for the initial
12742         spam-bogofilter-valid state, not 'never.
12743
12744         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
12745         for netrc-machine.
12746
12747         * nnimap.el (nnimap-open-connection): Use
12748         netrc-machine-user-or-password.
12749
12750 2004-10-17  Richard M. Stallman  <rms@gnu.org>
12751
12752         * gnus-registry.el (gnus-registry-unload-hook):
12753         Set as a variable with add-hook.
12754
12755         * nnspool.el (nnspool-spool-directory): Use news-directory instead
12756         of news-path.
12757
12758         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
12759
12760         * spam.el: Delete duplicate `provide'.
12761         (spam-unload-hook): Set as a variable with add-hook.
12762
12763 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12764
12765         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
12766         in the doc string.
12767
12768         * message.el (message-ignored-news-headers)
12769         (message-ignored-supersedes-headers)
12770         (message-ignored-resent-headers)
12771         (message-forward-ignored-headers): Improve custom type.
12772
12773 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12774
12775         * message.el (message-tokenize-header): Fix 2004-09-06 change
12776         which used point-min in the wrong place.
12777
12778 2004-10-12  Simon Josefsson  <jas@extundo.com>
12779
12780         * tls.el (tls-certtool-program): New variable.
12781         (tls-certificate-information): New function, based on
12782         ssl-certificate-information.
12783
12784 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12785
12786         * compface.el: Move the version of ELisp-based uncompface program
12787         to the contrib directory because of the copyright problem.
12788
12789 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
12790
12791         * message.el (message-kill-buffer): Raise the current frame.
12792
12793 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
12794
12795         * gnus-sum.el: Mention that multibyte characters don't work as marks.
12796
12797         * gnus.el (message-y-or-n-p): Autoload.
12798
12799         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
12800         (pop3-password-required, pop3-authentication-scheme)
12801         (pop3-leave-mail-on-server): Made customizable.
12802         (pop3): New custom group.
12803         (pop3-retr): Remove `sleep-for' statements.
12804         Suggested by Dave Love <fx@gnu.org>.
12805
12806         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
12807         Windows/DOS.
12808
12809         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
12810         (imap-parse-body): Fix incorrect use of `assert'.  Suggested by
12811         Dave Love <fx@gnu.org>.
12812
12813         * mml.el (mml-minibuffer-read-disposition): Require match.
12814         Suggested by Dave Love <fx@gnu.org>.
12815
12816 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
12817
12818         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
12819         doc string.
12820
12821 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12822
12823         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
12824
12825 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
12826
12827         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
12828         instead of calling `mm-insert-inline', to decode text/* parts
12829         before displaying them.
12830
12831 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12832
12833         * mm-uu.el (mm-uu-text-plain-type): New variable.
12834         (mm-uu-pgp-signed-extract-1): Use it.
12835         (mm-uu-pgp-encrypted-extract-1): Use it.
12836         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
12837         bind mm-uu-text-plain-type with that value.
12838         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
12839         mm-uu-dissect.
12840
12841 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12842
12843         * gnus-group.el (gnus-update-group-mark-positions):
12844         * gnus-sum.el (gnus-update-summary-mark-positions):
12845         * message.el (message-check-news-body-syntax):
12846         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
12847         of string-as-multibyte.
12848
12849 2004-10-05  Juri Linkov  <juri@jurta.org>
12850
12851         * gnus-group.el (gnus-update-group-mark-positions):
12852         * gnus-sum.el (gnus-update-summary-mark-positions):
12853         * message.el (message-check-news-body-syntax):
12854         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
12855         8-bit unibyte values to a multibyte string for search functions.
12856
12857 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12858
12859         * mm-uu.el (mm-uu-dissect): Allow optional arg.
12860         (mm-uu-dissect-text-parts): New function.
12861
12862         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
12863         dissect text parts.
12864
12865         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
12866         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
12867
12868         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
12869
12870         * gnus-topic.el (gnus-topic-hierarchical-parameters): Use
12871         gnus-current-topics instead of gnus-current-topic.
12872
12873 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
12874
12875         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
12876
12877 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
12878
12879         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
12880         where approriate.
12881
12882         * nnml.el (nnml-generate-active-info): do.
12883
12884         * nndiary.el (nndiary-generate-active-info): do.
12885
12886         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
12887         (gnus-topic-move): do.
12888
12889         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
12890         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
12891
12892         * gnus-srvr.el (gnus-server-prepare)
12893         (gnus-server-open-all-servers): do.
12894
12895         * gnus-msg.el (gnus-summary-cancel-article)
12896         (gnus-summary-resend-message)
12897         (gnus-summary-mail-crosspost-complaint): do.
12898
12899         * gnus-move.el (gnus-change-server): do.
12900
12901         * gnus-group.el (gnus-group-unmark-all-groups)
12902         (gnus-group-set-current-level): do.
12903
12904 2004-10-04  Simon Josefsson  <jas@extundo.com>
12905
12906         * message.el (message-generate-hashcash): Doc fix.
12907
12908 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
12909
12910         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
12911         avoid infinite recursion via gnus-get-function.
12912
12913 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
12914
12915         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
12916
12917         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
12918
12919         * nnmail.el (nnmail-split-history): do.
12920
12921         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
12922         (nnml-request-delete-group): do.
12923
12924         * nnslashdot.el (nnslashdot-read-groups): do.
12925
12926         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
12927         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
12928
12929         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
12930         (nnspool-sift-nov-with-sed): Use last.
12931         (nnspool-retrieve-headers-with-nov): Use mapc.
12932         (nnspool-request-newgroups): Use dolist.
12933         (nnspool-request-group): Use last.
12934
12935         * nntp.el (nntp-read-server-type): Use dolist.
12936
12937         * nnvirtual.el (nnvirtual-create-mapping)
12938         (nnvirtual-update-read-and-marked): Use dolist.
12939         (nnvirtual-convert-headers): Simplify.
12940
12941 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12942
12943         * gnus-agent.el (gnus-agent-synchronize-group-flags): Added
12944         support for sync'ing tick marks.
12945
12946 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12947
12948         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
12949         there's no visible header.
12950
12951 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12952
12953         * gnus-agent.el (gnus-agent-synchronize-group-flags): When
12954         necessary, pass full group name to gnus-request-set-marks.
12955
12956 2004-10-01  Simon Josefsson  <jas@extundo.com>
12957
12958         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
12959         acroread.
12960
12961 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12962
12963         * spam-report.el (spam-report-gmane): Fix interactive.
12964
12965         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
12966
12967         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
12968         when writing file.
12969         (gnus-agent-synchronize-flags): Don't default to being
12970         interactive.
12971
12972 2004-09-30  Simon Josefsson  <jas@extundo.com>
12973
12974         * message.el (message-generate-hashcash): Add.
12975         (message-send-mail): Use it, call mail-add-payment.
12976
12977 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
12978
12979         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
12980
12981 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
12982
12983         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replaced
12984         gnus-requst-update-info with explicit code to sync the in-memory
12985         info read flags with the marks being sync'd to the backend.
12986
12987         *gnus-util.el (gnus-pp): Added optional stream to match pp API.
12988
12989 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12990
12991         * spam.el (spam-verify-bogofilter): Add new function.
12992         (spam-check-bogofilter)
12993         (spam-bogofilter-register-with-bogofilter): Use it.
12994         (spam-verify-bogofilter): Add small fixes.
12995
12996 2004-09-28  Simon Josefsson  <jas@extundo.com>
12997
12998         * hashcash.el (hashcash-generate-payment): Revert.
12999
13000 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
13001
13002         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Use
13003         gnus-extract-references instead of gnus-split-references.
13004
13005         * gnus-util.el (gnus-extract-references): Add new function, analogous
13006         to gnus-split-references but extracts only the message-ID without
13007         anything extra.
13008
13009         * hashcash.el (hashcash-generate-payment)
13010         (hashcash-check-payment): Do the right thing if hashcash-path is
13011         nil (because the hashcash program could not be found).
13012
13013         * spam.el (spam-use-hashcash): Remove comment.
13014
13015 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
13016
13017         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
13018         (gnus-cache-enter-article, gnus-cache-remove-article)
13019         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
13020
13021         * gnus-async.el (gnus-async-prefetch-remove-group): do.
13022
13023         * gnus-art.el (article-hide-boring-headers)
13024         (article-translate-strings, article-display-face)
13025         (gnus-article-mime-match-handle-first)
13026         (gnus-article-highlight-headers)
13027         (gnus-article-add-buttons-to-head): do.
13028
13029 2004-09-27  Simon Josefsson  <jas@extundo.com>
13030
13031         * hashcash.el: New version, from
13032         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
13033         ../contrib/.
13034
13035 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13036
13037         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
13038
13039 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
13040
13041         * gnus-dup.el (gnus-dup-open): Use mapc.
13042         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
13043
13044         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
13045         Reported by Stefan Wiens <s.wi@gmx.net>.
13046
13047         * gnus.el (gnus-shutdown): Use dolist.
13048
13049         * gnus-undo.el (gnus-undo): Use mapc.
13050
13051         * nnrss.el (nnrss-generate-active): do.
13052
13053         * message.el (message-cite-original-without-signature)
13054         (message-cite-original): Use mapc.
13055         (message-do-actions, message-make-forward-subject): Use dolist.
13056
13057 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
13058
13059         * gnus-agent.el (gnus-agent-check-overview-buffer): Fixed range of
13060         deletion to remove entire duplicate line.  Fixes merged article
13061         number bug.
13062
13063 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
13064
13065         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
13066         servers that are offline.  Avoids having gnus-agent-toggle-plugged
13067         first ask if you want to open a server and then, even when you
13068         responded with no, asking if you want to synchronize the server's
13069         flags.
13070         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
13071         multi-line expressions.
13072         (gnus-agent-synchronize-group-flags): New internal function.
13073         Updates marks in memory (in the info structure) AND in the
13074         backend.
13075
13076         * gnus-util.el (gnus-remassoc): Fixed typo in documentation.
13077
13078         * nnagent.el (nnagent-request-set-mark): Use
13079         gnus-agent-synchronize-group-flags, not backend's request-set-mark
13080         method, to ensure that synchronization updates marks in the
13081         backend and in the info (in memory) structure.
13082
13083 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13084
13085         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
13086         convention fully; don't miss the root article of a thread; make
13087         the X-Draft-From header with correct article numbers.
13088
13089 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
13090
13091         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
13092         unless plugged.  Disable the agent so that an open failure causes
13093         an error.
13094
13095         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
13096         Reverted 2004-09-21 change.  The backend must be opened while
13097         synchronizing flags even when the backend stores the flags
13098         locally.
13099
13100 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
13101
13102         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
13103         in `header' match.  Reported by Svend Tollak Munkejord.
13104
13105         * message.el (message-cite-original): Fix use of
13106         `message-cite-articles-with-x-no-archive'.
13107
13108 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13109
13110         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
13111         (gnus-window-to-buffer): Ditto.
13112
13113         * mml.el (mml-preview-buffer): New variable.
13114         (mml-preview): Manage window layout with gnus-buffer-configuration.
13115
13116         * gnus-msg.el (gnus-setup-message): Put article numbers into the
13117         X-Draft-From header even if those articles aren't quoted.
13118
13119 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
13120
13121         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
13122         (gnus-request-set-mark, gnus-request-update-mark): Use new
13123         g-s-t-u-l-m to decide to use backend even when unplugged.
13124
13125 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13126
13127         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
13128         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
13129
13130 2004-09-20  Simon Josefsson  <jas@extundo.com>
13131
13132         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
13133         "utf-16-le".
13134
13135 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13136
13137         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
13138
13139 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
13140
13141         * uudecode.el (uudecode-use-external): Add :version.
13142
13143         * smime.el (smime-CA-file, smime-encrypt-cipher)
13144         (smime-dns-server): Add :version.
13145
13146         * smiley.el (gnus-smiley-file-types): Add :version.
13147
13148         * sha1.el (sha1-use-external): Add :version.
13149
13150         * pgg-def.el (pgg-query-keyserver): Add :version.
13151
13152         * nnmail.el (nnmail-fancy-expiry-targets)
13153         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
13154         Add :version.
13155
13156         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
13157         (nnimap-retrieve-groups-asynchronous): Add :version.
13158         (nnimap-close-asynchronous): Add :version.  Fixed typo in doc string.
13159
13160         * mml.el (mml-content-disposition-parameters)
13161         (mml-insert-mime-headers-always): Add :version.
13162
13163         * mm-util.el (mm-coding-system-priorities): Add :version.
13164
13165         * mm-decode.el (mm-inline-text-html-with-images)
13166         (mm-keep-viewer-alive-types, mm-external-terminal-program)
13167         (mm-verify-option): Add :version.
13168         (mm-text-html-renderer): Change :version.
13169
13170         * message.el (message-fcc-externalize-attachments)
13171         (message-required-headers, message-draft-headers)
13172         (message-subject-trailing-was-query)
13173         (message-subject-trailing-was-ask-regexp)
13174         (message-subject-trailing-was-regexp, message-mark-insert-begin)
13175         (message-mark-insert-end, message-archive-header)
13176         (message-archive-note, message-cross-post-default)
13177         (message-cross-post-note, message-followup-to-note)
13178         (message-cross-post-note-function, message-use-mail-followup-to)
13179         (message-subscribed-address-functions)
13180         (message-subscribed-address-file, message-subscribed-addresses)
13181         (message-subscribed-regexps, message-allow-no-recipients)
13182         (message-yank-cited-prefix, message-signature-insert-empty-line)
13183         (message-hidden-headers, message-hierarchical-addresses)
13184         (message-mail-user-agent, message-use-idna)
13185         (message-valid-fqdn-regexp)
13186         (message-strip-special-text-properties, message-header-synonyms)
13187         (message-beginning-of-line, message-tab-body-function): Add :version.
13188         (message-insert-canlock, message-wide-reply-confirm-recipients):
13189         Change :version.
13190
13191         * mail-source.el (mail-source-ignore-errors): Add :group, :type
13192         and :version.
13193         (mail-source-delete-old-incoming-confirm)
13194         (mail-source-movemail-program): Add :version.
13195
13196         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
13197         (gnus-agent-cache, gnus-agent): Change :version.
13198
13199         * gnus-util.el (gnus-use-byte-compile): Change :version.
13200
13201         * gnus-sum.el (gnus-summary-make-false-root-always)
13202         (gnus-summary-default-high-score)
13203         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
13204         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
13205         (gnus-read-all-available-headers, gnus-article-emulate-mime)
13206         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
13207         (gnus-sum-thread-tree-single-indent)
13208         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
13209         (gnus-sum-thread-tree-leaf-with-other)
13210         (gnus-sum-thread-tree-single-leaf): Add :version.
13211         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
13212         (gnus-article-loose-mime): Change :version.
13213
13214         * gnus-start.el (gnus-backup-startup-file)
13215         (gnus-save-startup-file-via-temp-buffer): Add :version.
13216
13217         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
13218         (gnus-server-offline-face): Add :version.
13219
13220         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
13221
13222         * gnus-msg.el (gnus-gcc-externalize-attachments)
13223         (gnus-debug-files, gnus-debug-exclude-variables)
13224         (gnus-discouraged-post-methods): Change :version.
13225         (gnus-confirm-mail-reply-to-news)
13226         (gnus-confirm-treat-mail-like-news): Add :version.
13227
13228         * gnus-int.el (gnus-server-unopen-status): Add :version.
13229
13230         * gnus-group.el (gnus-group-jump-to-group-prompt)
13231         (gnus-large-ephemeral-newsgroup)
13232         (gnus-fetch-old-ephemeral-headers): Add :version.
13233
13234         * gnus-fun.el (gnus-x-face-directory)
13235         (gnus-convert-pbm-to-x-face-command)
13236         (gnus-convert-image-to-x-face-command)
13237         (gnus-convert-image-to-face-command): Add :version.
13238
13239         * gnus-delay.el (gnus-delay-default-hour): Add :version.
13240
13241         * gnus-cite.el (gnus-cite-blank-line-after-header)
13242         (gnus-article-boring-faces): Add :version.
13243
13244         * gnus-art.el (gnus-buttonized-mime-types)
13245         (gnus-inhibit-mime-unbuttonizing)
13246         (gnus-treat-display-face)
13247         (gnus-treat-body-boundary): Change :version.
13248         (gnus-body-boundary-delimiter, gnus-picon-databases)
13249         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
13250         (gnus-treat-date-english, gnus-treat-fold-headers)
13251         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
13252         (gnus-treat-mail-picon, gnus-treat-wash-html)
13253         (gnus-article-encrypt-protocol)
13254         (gnus-use-idna, gnus-article-over-scroll)
13255         (gnus-mime-display-multipart-alternative-as-mixed)
13256         (gnus-mime-display-multipart-related-as-mixed)
13257         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
13258         (gnus-ctan-url, gnus-button-ctan-handler)
13259         (gnus-button-handle-ctan-bogus-regexp)
13260         (gnus-button-ctan-directory-regexp)
13261         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
13262         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
13263         (gnus-button-man-level, gnus-button-emacs-level)
13264         (gnus-button-message-level, gnus-button-browse-level): Add :version.
13265
13266         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
13267         (gnus-agent-go-online): Change :version.
13268         (gnus-agent-expire-unagentized-dirs)
13269         (gnus-agent-auto-agentize-methods): Add :version.
13270
13271         * flow-fill.el (fill-flowed-display-column)
13272         (fill-flowed-encode-column): Add :version.
13273
13274         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
13275         (gnus-outlook-deuglify-unwrap-max)
13276         (gnus-outlook-deuglify-cite-marks)
13277         (gnus-outlook-deuglify-unwrap-stop-chars)
13278         (gnus-outlook-deuglify-no-wrap-chars)
13279         (gnus-outlook-deuglify-attrib-cut-regexp)
13280         (gnus-outlook-deuglify-attrib-verb-regexp)
13281         (gnus-outlook-deuglify-attrib-end-regexp)
13282         (gnus-outlook-display-hook): Add :version.
13283
13284         * binhex.el (binhex-use-external): Add :version.
13285
13286 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
13287
13288         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
13289         and `invisible'.
13290
13291 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
13292
13293         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
13294         in gnus-registry-trim.
13295
13296 2004-09-13  Simon Josefsson  <jas@extundo.com>
13297
13298         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
13299
13300         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
13301
13302         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
13303         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13304         <yamaoka@jpl.org>.
13305         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
13306         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13307         <yamaoka@jpl.org>.
13308
13309         * sieve.el (sieve-manage-mode): Ditto.
13310
13311 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
13312
13313         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
13314
13315 2004-09-11  Simon Josefsson  <jas@extundo.com>
13316
13317         * dns-mode.el: Add.
13318
13319         * mm-view.el (mm-display-dns-inline): Add.
13320
13321         * mm-decode.el (mm-inline-media-tests): Add text/dns.
13322         (mm-automatic-display): Ditto.
13323
13324         * mailcap.el (mailcap-mime-data): Add text/dns.
13325         (mailcap-mime-extensions): Map .soa to text/dns.
13326
13327 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
13328
13329         * gnus-art.el (article-decode-mime-words, article-babel)
13330         (gnus-article-highlight-signature, gnus-article-add-buttons)
13331         (gnus-signature-toggle): Remove unnecessary bindings of
13332         `inhibit-read-only' inherited from v5.10 merge.
13333
13334 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
13335
13336         * nntp.el (nntp): New customization group.
13337         (nntp-authinfo-file): Add customization group.
13338
13339         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
13340
13341         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
13342
13343         * gnus.el (to-address, to-list, subscribed)
13344         (large-newsgroup-initial): Ditto.
13345
13346         * flow-fill.el (fill-flowed-display-column)
13347         (fill-flowed-encode-column): Ditto.
13348
13349 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13350
13351         * message.el (message-tokenize-header, message-send-mail-with-qmail):
13352         Use point-min rather than 1.
13353         (message-send-mail): Use buffer-size rather than point-max.
13354
13355         * gnus-sum.el (gnus-summary-search-article-forward):
13356         Signal a specific `search-failed' rather than a generic `error'.
13357
13358         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
13359         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
13360         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
13361
13362 2004-09-10  Simon Josefsson  <jas@extundo.com>
13363
13364         * nndb.el (require): Remove tcp and duplicate cl.
13365
13366 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13367
13368         * gnus-agent.el (directory-files-and-attributes): Move forward.
13369
13370 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13371
13372         * gnus-agent.el (directory-files-and-attributes): Optionally
13373         defined to support XEmacs.
13374
13375 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13376
13377         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
13378         to avoid run-time CL dependencies.
13379         (gnus-agent-unfetch-articles): New function.
13380         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
13381         article numbers even when local .overview file is missing.
13382         (gnus-agent-read-article-number): New function.  Only accepts
13383         27-bit article numbers.
13384         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles): Use
13385         gnus-agent-read-article-number.
13386         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
13387         from backend while recognizing that article numbers in .overview
13388         must be valid.
13389         (gnus-agent-update-files-total-fetched-for): Use
13390         directory-files-and-attributes to improve performance.
13391         * gnus-int.el (gnus-request-move-article): Use
13392         gnus-agent-unfetch-articles in place of gnus-agent-expire to
13393         improve performance.
13394
13395         * gnus-start.el (gnus-convert-old-newsrc): Changed message text as
13396         some users confused by references to .newsrc when they only have a
13397         .newsrc.eld file.
13398         (gnus-convert-mark-converter-prompt)
13399         (gnus-convert-converter-needs-prompt): Fixed use of property list.
13400         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
13401         New function.  Used internally to only display 'gnus converting
13402         files' message when actually necessary.
13403
13404         * gnus-sum.el (): Removed (require 'gnus-agent) as required
13405         methods now autoloaded.
13406
13407 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13408
13409         * gnus-sum.el (gnus-summary-insert-subject): Remove list
13410         identifiers.
13411
13412 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
13413
13414         * gnus-picon.el: Fix indentation and closing parenthesis.
13415
13416 2004-09-01  Simon Josefsson  <jas@extundo.com>
13417
13418         * message.el (message-canlock-generate): Require sha1, not
13419         sha1-el.  (Can we get rid of this require altogether?  It is ugly
13420         to require within a function.  Sadly, if sha1.el isn't loaded, the
13421         let binding in m-c-g will hide the defcustom definition, which is
13422         bad.)
13423
13424         * canlock.el: Require sha1, not sha1-el.
13425
13426         * message.el: Don't autoload sha1 (there is a autoload cookie in
13427         sha1.el).
13428
13429         * sha1-el.el: Renamed to sha1.el.
13430
13431 2004-08-30  Juanma Barranquero  <lektu@terra.es>
13432
13433         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
13434
13435 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13436
13437         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
13438
13439 2004-08-30  Kim F. Storm  <storm@cua.dk>
13440
13441         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
13442
13443         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
13444         Add :group 'nnimap.
13445
13446 2004-08-30  Andreas Schwab  <schwab@suse.de>
13447
13448         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
13449         ?* and ?\;.
13450
13451         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
13452         and ?\' to symbol instead of whitespace.
13453
13454 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13455
13456         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
13457
13458         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
13459         instead of re-search-forward.
13460
13461         * gnus-uu.el (gnus-uu-save-article): Ditto.
13462         (gnus-uu-post-encode-uuencode): Ditto.
13463
13464         * html2text.el (html2text-clean-list-items): Ditto.
13465         (html2text-clean-dtdd): Ditto.
13466         (html2text-format-tags): Ditto.
13467
13468         * message.el (message-send-mail-with-sendmail): Fix regexp.
13469         (message-fill-field-general): Use search-forward instead of
13470         re-search-forward.
13471         (unbold-region): Ditto.
13472
13473         * nnrss.el (nnrss-request-article): Ditto.
13474
13475         * nnslashdot.el (nnslashdot-request-article): Ditto.
13476
13477         * nnweb.el (nnweb-gmane-wash-article): Ditto.
13478
13479         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
13480         "Unrecognized menu descriptor" error in XEmacs.
13481
13482 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
13483
13484         * gnus-sum.el (gnus-read-header): Don't remove a header for the
13485         parent article of a sparse article in the thread hashtb.
13486
13487 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
13488
13489         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
13490         (nnmail-expand-newtext): Lowercase expanded entries if
13491         nnmail-split-lowercase-expanded is non-nil.
13492
13493 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13494
13495         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
13496
13497         * gnus-group.el (gnus-group-line-format-alist): Convert the value
13498         of gnus-tmp-news-method into string under XEmacs.  It will be
13499         passed to gnus-correct-length which takes only a string argument.
13500
13501 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13502
13503         * gnus-util.el (gnus-bind-print-variables): New macro.
13504         (gnus-prin1): Use it.
13505         (gnus-prin1-to-string): Use it.
13506         (gnus-pp): New function.
13507         (gnus-pp-to-string): New function.
13508
13509         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
13510         Replace pp-to-string with gnus-pp-to-string.
13511         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
13512         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
13513         * gnus-msg.el (gnus-debug): Ditto.
13514         * gnus-score.el (gnus-score-save): Ditto.
13515         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
13516         gnus-pp-to-string.
13517         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
13518         with gnus-pp.
13519         * score-mode.el (gnus-score-pretty-print): Ditto.
13520         * webmail.el (webmail-debug): Ditto.
13521
13522 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13523
13524         * gnus-art.el (article-display-face, article-display-x-face):
13525         Use buffer-read-only.
13526
13527 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13528
13529         * gnus-art.el (article-hide-list-identifiers):
13530         Bind inhibit-read-only as t.
13531
13532 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
13533
13534         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
13535
13536 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13537
13538         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
13539         (gnus-narrow-to-page): Don't assume point-min == 1.
13540         (gnus-article-edit-mode): Derive from message-mode.
13541
13542         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
13543         point-min == 1.
13544
13545         * imap.el (imap-parse-address-list, imap-parse-body-ext):
13546         Disable incorrect use of `assert'.
13547
13548         * message.el (message-mode): Set comment-start-skip.
13549
13550
13551 2004-08-22  Sam Steingold  <sds@gnu.org>
13552
13553         * pop3.el (pop3-leave-mail-on-server): New user variable.
13554         (pop3-movemail): Delete mail only when it is nil.
13555
13556 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
13557
13558         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
13559
13560         * mml.el (mml-preview): Use `pop-to-buffer'.
13561
13562         * message.el (message-goto-mail-followup-to): Insert after "To".
13563         (message-carefully-insert-headers): Add comment.
13564
13565         * gnus.el: Remove unused variable `gnus-article-check-size'.
13566
13567         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
13568
13569         * gnus-art.el (gnus-button-alist): Improve
13570         `gnus-button-handle-library' entry.
13571
13572 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
13573
13574         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p): Use
13575         downcase, since XEmacs capitalizes error messages differently.
13576
13577 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
13578
13579         * nntp.el: Add (require 'gnus) due to reference to
13580         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
13581
13582 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
13583
13584         * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Bind
13585         `mm-fill-flowed'.
13586
13587         * mm-decode.el (mm-dissect-singlepart): Check it.
13588
13589 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
13590
13591         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
13592         'imap' for netrc parsing.
13593
13594 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
13595
13596         * mailcap.el (mailcap-mime-data): Mark as risky.
13597
13598 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13599
13600         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
13601         may be included in the encoded word.
13602         (rfc2047-encode): Don't append a space if the encoded word
13603         includes close parenthesis.
13604
13605 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13606
13607         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
13608         of text within parentheses.
13609
13610 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
13611
13612         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
13613         (gnus-encrypt-write-file-contents): Make the password key the file
13614         name PLUS the cipher, not just the cipher.  Also remove failed
13615         passwords from the cache.
13616
13617 2004-08-06  Simon Josefsson  <jas@extundo.com>
13618
13619         * gnus-sum.el (gnus-article-loose-mime): Change default to t.  Doc
13620         fix.
13621
13622 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13623
13624         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
13625         LWSP.
13626
13627 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
13628
13629         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Try
13630         to append in-reply-to: data to the references: header.
13631
13632         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
13633         (netrc-parse): Use gnus-encrypt.el functions.
13634
13635         * gnus-encrypt.el: Add new file for encryption support; currently
13636         does only a few GPG ciphers and an internal XOR cipher.
13637
13638         * password.el: Add comments on using password-read-and-add.
13639         (password-read-and-add): Add function to read and add the
13640         password to the cache at once.
13641
13642 2004-07-28  Simon Josefsson  <jas@extundo.com>
13643
13644         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
13645         parameter (but don't use it, for now).
13646
13647         * imap.el (imap-ssl-open): Use imap-process-connection-type,
13648         instead of hard coding to nil.
13649
13650 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13651
13652         * mm-view.el (mm-inline-image-emacs): Open lines under an image
13653         as mm-inline-image-xemacs does.
13654
13655 2004-07-26  Simon Josefsson  <jas@extundo.com>
13656
13657         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
13658         Revert part of 2004-07-17 change below.
13659
13660 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13661
13662         * rfc2047.el (rfc2047-encode-region): Don't infloop.  Suggested by
13663         Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
13664
13665 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13666
13667         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
13668         quotes that actually start with ">" at the beginning of the
13669         lines.
13670
13671 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13672
13673         * rfc2047.el (rfc2047-encode-region): Fix last change.
13674         (rfc2047-encode-parameter): Remove useless concat.
13675
13676 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13677
13678         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
13679         encode special characters; fix some kind of misconfigured headers;
13680         signal a real error if debug-on-quit or debug-on-error is non-nil.
13681         (rfc2047-encode-max-chars): New variable.
13682         (rfc2047-encode-1): Use it.
13683         (rfc2047-encode-parameter): New function.
13684
13685         * mml.el (mml-insert-parameter): Remove an excessive space.
13686
13687 2004-07-17  Simon Josefsson  <jas@extundo.com>
13688
13689         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
13690         Kai Grossjohann <kai@emptydomain.de>.
13691         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
13692         (gnus-group-make-menu-bar): Ditto.
13693
13694         * gnus-util.el (gnus-group-server): Add.
13695
13696 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
13697
13698         * message.el (message-clone-locals): Clone sendmail and smtp
13699         variables.
13700
13701 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13702
13703         * rfc2047.el (rfc2047-encode-region): Fix last change.
13704
13705 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13706
13707         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
13708         characters as non-special.
13709
13710 2004-07-09  Simon Josefsson  <jas@extundo.com>
13711
13712         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
13713         Users will lose all flag changes made while unplugged with
13714         e.g. nntp unless flag synchronization happens, thus `nil' is not a
13715         good default.  See numerous reports on ding mailing list.
13716
13717 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13718
13719         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
13720         add generate-head-function and generate-article-function to the
13721         rfc822-forward entry.
13722         (nndoc-rfc822-forward-generate-article): New function.
13723         (nndoc-rfc822-forward-generate-head): New function.
13724
13725         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
13726
13727 2004-07-06  Dan Christensen  <jdc@uwo.ca>
13728
13729         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
13730         respect display group parameter and gnus-summary-expunge-below.
13731         (gnus-articles-to-read): Remove unused reference to display group
13732         parameter.
13733
13734 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13735
13736         * nnheader.el (nnheader-uniquify-message-id): New experimental
13737         variable.
13738         (nnheader-nov-read-message-id): Use it.
13739
13740         * spam-report.el (spam-report-gmane): Add interactive.
13741
13742 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13743
13744         * mm-encode.el (mm-content-transfer-encoding-defaults): Use
13745         qp-or-base64 for the application/* types.
13746
13747 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
13748
13749         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
13750
13751 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
13752
13753         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
13754         trim value.
13755
13756 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
13757
13758         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
13759         New macro and function.
13760         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
13761
13762 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13763
13764         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
13765         after-load-alist.
13766
13767 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13768
13769         * gnus-group.el (gnus-group-get-new-news-this-group): Don't
13770         update info that isn't there.
13771
13772 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
13773
13774         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
13775         entry.
13776
13777 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13778
13779         * mm-view.el (mm-inline-render-with-function): Use multibyte
13780         buffer; decode html source by charset.
13781
13782         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
13783
13784         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
13785         Mule-UCS is loaded under XEmacs.
13786         (mm-mime-mule-charset-alist): Avoid duplicated entries.
13787
13788 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
13789
13790         * nnheader.el (nnheader-max-head-length): Increase to 8192.
13791
13792 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13793
13794         * mm-util.el (mm-coding-system-p): Return a coding-system.
13795         (mm-mime-mule-charset-alist): Use shift_jis instead of
13796         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
13797         entries for the mime charsets iso-2022-jp-3 and shift_jis.
13798         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
13799         instead of japanese-shift-jis and iso-latin-1 respectively in
13800         order to share the default value with both Emacs and XEmacs-mule.
13801         (mm-mule-charset-to-mime-charset): Make
13802         mm-coding-system-priorities effective.
13803         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
13804         while predicating of candidates upon the priorities.
13805
13806 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
13807
13808         * gnus-sum.el (gnus-summary-make-menu-bar): Add
13809         gnus-uu-invert-processable.
13810
13811         * gnus.el: Autoload gnus-uu-invert-processable.
13812
13813 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13814
13815         * mm-util.el (mm-with-multibyte-buffer): New macro.
13816
13817         * rfc2047.el (rfc2047-encode-string): Use it.
13818         (rfc2047-encode-region): Move point to the end of the region after
13819         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
13820
13821 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13822
13823         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
13824         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
13825
13826 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13827
13828         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
13829         (gnus-cite-parse): Ignore quoted envelope From_.  Suggested by
13830         Karl Chen <quarl@nospam.quarl.org>.
13831
13832 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
13833
13834         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
13835         invalid addresses.
13836
13837 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
13838
13839         * spam.el: Change section markers, revise TODO list.
13840         (spam-backends): Make new master list of all installed backends.
13841         (spam-summary-exit-behavior): Add new variable to determine how
13842         messages moves are done at summary exit.
13843         (spam-move-spam-nonspam-groups-only)
13844         (spam-process-ham-in-nonham-groups)
13845         (spam-process-ham-in-spam-groups): Remove variables, the
13846         spam-summary-exit-behavior variable should be used to manage this
13847         behavior.
13848         (spam-old-ham-articles, spam-old-spam-articles): Remove.
13849         (spam-old-articles): Add variable, replacing spam-old-ham-articles
13850         and spam-old-spam-articles.
13851         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
13852         Add empty variables, placeholders for the backends they represent.
13853         (spam-set-difference): Move, unchanged.
13854         (spam-list-of-processors): Declare OBSOLETE, not used anymore
13855         unless the user has a processor variable.
13856         (spam-classifications, spam-classification-valid-p)
13857         (spam-backend-properties, spam-backend-property-valid-p)
13858         (spam-backend-function-type-valid-p)
13859         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
13860         (spam-report-articles-gmane, spam-report-articles-resend):
13861         Remove functions, they are not needed.
13862         (spam-install-backend-super, spam-backend-list)
13863         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
13864         (spam-backend-function, spam-backend-ham-registration-function)
13865         (spam-backend-spam-registration-function)
13866         (spam-backend-ham-unregistration-function)
13867         (spam-backend-spam-unregistration-function)
13868         (spam-backend-statistical-p, spam-backend-mover-p)
13869         (spam-install-backend-alias, spam-install-checkonly-backend)
13870         (spam-install-mover-backend, spam-install-nocheck-backend)
13871         (spam-install-backend, spam-install-statistical-backend)
13872         (spam-install-statistical-checkonly-backend): Add backend installation
13873         support.
13874         (spam-summary-prepare-exit): Rewrite to use the new backend code.
13875         (spam-group-processor-p): Use the new backend code and respect the
13876         summary exit behavior.
13877         (spam-mark-spam-as-expired-and-move-routine): Remove.
13878         (spam-summary-prepare): Change to use the new spam-old-articles
13879         variable.
13880         (spam-copy-or-move-routine, spam-copy-spam-routine)
13881         (spam-move-spam-routine, spam-copy-ham-routine)
13882         (spam-move-ham-routine): Add code to copy/move ham or spam.
13883         (spam-fetch-field-fast): Improve doc and code, plus allow the
13884         'number request.
13885         (spam-list-of-checks, spam-list-of-statistical-checks): Remove
13886         variables.
13887         (spam-split, spam-find-spam): Use the new backend code.
13888         (spam-registration-functions): Remove variable.
13889         (spam-unregister-routine): Add convenience wrapper.
13890         (spam-log-undo-registration, spam-register-routine)
13891         (spam-log-processing-to-registry)
13892         (spam-log-unregistration-needed-p): Rename "check" to "backend"
13893         where possible.
13894         (spam-check-gmane-xref, spam-check-regex-headers)
13895         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
13896         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
13897         (spam-check-bogofilter-headers, spam-check-spamoracle)
13898         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
13899         (spam-check-crm114-headers): Use the spam-split-group that
13900         spam-split prepares, no need to determine it every time.
13901
13902         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
13903         to the nnheader-parse-naked-head call.
13904
13905         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
13906
13907         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
13908         the nnheader-nov-read-message-id call.
13909
13910 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13911
13912         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
13913         gnus-activate-group twice.  Suggested by Markus Peter
13914         <warp@spin.de>.
13915
13916 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13917
13918         * gnus-art.el (gnus-article-time-format): Exchange the order of
13919         day and month in the default value; fix customization type.
13920         (article-date-ut): Use add-text-properties.
13921         (article-make-date-line): Use message-make-date instead of
13922         current-time-string.
13923
13924         * message.el (message-fetch-field): Don't use set-text-properties.
13925         (message-make-date): Simplify.
13926
13927         * messagexmas.el (message-xmas-make-date): New function.
13928         (message-xmas-redefine): Defalias message-make-date to it.
13929
13930 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13931
13932         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
13933         (rfc2047-encode-region): Treat text within parentheses as special;
13934         show the original text when error has occurred.
13935
13936         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
13937         already-computed method to gnus-activate-group.
13938
13939         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
13940         same select-methods identical Lisp objects.
13941
13942         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
13943         object when modifying the info.
13944
13945 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13946
13947         * gnus-srvr.el (gnus-server-set-info): Remove the server from
13948         gnus-opened-servers since it has never been opened with the new
13949         configuration yet.
13950
13951 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13952
13953         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
13954         arg to nnheader-generate-fake-message-id.
13955
13956 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
13957
13958         * nnheader.el (nnheader-generate-fake-message-id): Accept a
13959         number and build a fake message ID localized to a group and
13960         article number (so it's repeatable from that point on).
13961         (nnheader-fake-message-id-p): Change regex to accomodate new fake
13962         ID format.
13963
13964         * gnus-sum.el (gnus-get-newsgroup-headers): Call
13965         nnheader-generate-fake-message-id with the article number.
13966
13967 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
13968
13969         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
13970         end-of-buffer.
13971
13972 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13973
13974         * message.el (message-ignored-supersedes-headers): Add Approved.
13975
13976 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
13977
13978         * rfc2047.el (rfc2047-encode-message-header): Remove useless
13979         goto-char.
13980         (rfc2047-encode): Fold the line before encoding.
13981
13982 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13983
13984         * rfc2047.el (rfc2047-encode-message-header): Disabled header
13985         folding -- not all headers can be folded, and this should be done
13986         by the message composition mode.  Probably.  I think.
13987
13988 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13989
13990         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
13991         fast.
13992
13993         * gnus-ems.el (gnus-remove-image): Don't use
13994         message-text-with-property; remove only the image found first.
13995
13996         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
13997         found first.
13998
13999 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
14000
14001         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
14002
14003 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14004
14005         * message.el (message-text-with-property): Make it fast and accept
14006         optional arguments.
14007         (message-strip-forbidden-properties): Use it.
14008         (message-fix-before-sending): Follow the m-t-w-p change.
14009
14010         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
14011
14012 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14013
14014         * gnus-art.el (article-hide-headers): Don't change the buffer
14015         mistakenly when performing mml-preview even if
14016         gnus-single-article-buffer is nil.
14017
14018 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
14019
14020         * message.el (message-expand-name-databases): New user option.
14021         (message-expand-name): Use it.
14022
14023 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
14024
14025         * spam.el (spam-report-articles-resend)
14026         (spam-report-resend-register-routine): Allow ham reporting.
14027         (spam-report-resend-register-ham-routine): Add wrapper.
14028         (spam-registration-functions): Add ham resending functions.
14029         (spam-list-of-processors): Add ham resend processor.
14030
14031         * gnus.el (ham-resend-to): Add new group parameter.
14032         (spam-process): Add ham resend option.
14033
14034         * spam-report.el (spam-report-resend): Allow reporting ham.
14035         (spam-report-resend-ham): Add wrapper.
14036
14037 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14038
14039         * message.el (message-cite-articles-with-x-no-archive): New
14040         variable.
14041         (message-cite-original): Use it.
14042
14043 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14044
14045         * message.el (message-cite-original): Respect X-No-Archive.
14046
14047 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14048
14049         * gnus-art.el (article-hide-headers): Refer to the values for
14050         gnus-ignored-headers and gnus-visible-headers in the summary
14051         buffer since a user may have set them as group parameters.
14052
14053 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
14054
14055         * assistant.el (assistant-node-name): Add convenience function.
14056         (assistant-render-text, assistant-render-node): Add error handling,
14057         plus handle multiple next nodes.
14058         (assistant-find-next-node): Comment out for now.
14059         (assistant-find-next-nodes): Add function, returns list of next
14060         nodes.
14061
14062 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
14063
14064         * mail-source.el (mail-source-directory): Fix doc-string.
14065
14066 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
14067
14068         * assistant.el (assistant-render-text, assistant-eval): Add :set
14069         widget type, which is different because it takes and returns a
14070         list.  Much hilarity ensues.
14071
14072 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
14073
14074         * gnus-art.el (gnus-button-alist): Fixed regexp for manual links.
14075
14076         * gnus-group.el (gnus-group-get-new-news-this-group): Added
14077         doc-string.
14078
14079         * gnus-start.el (gnus-activate-group): Added doc-string.
14080
14081 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14082
14083         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
14084
14085 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
14086
14087         * assistant.el (assistant-render-text): Try to add a :set
14088         widget, more to come.
14089
14090         * spam.el (spam-group-spam-contents-p): Handle empty groupname
14091         strings.
14092         (spam-report-articles-resend)
14093         (spam-register-routine): Do registration iff any articles warrant
14094         it.
14095         (spam-summary-prepare-exit): Change log message for nil group
14096         destinations.
14097
14098 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
14099
14100         * spam.el (spam-report-resend-register-routine): Allow
14101         spam-report-resend-to to be a group parameter or a global value.
14102
14103 2004-05-26  Simon Josefsson  <jas@extundo.com>
14104
14105         * starttls.el: Merge with my GNUTLS based starttls.el.
14106         (starttls-gnutls-program, starttls-use-gnutls)
14107         (starttls-extra-arguments, starttls-process-connection-type)
14108         (starttls-connect, starttls-failure, starttls-success): New
14109         variables.
14110         (starttls-program, starttls-extra-args): Doc fix.
14111         (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New
14112         functions.
14113         (starttls-negotiate, starttls-open-stream): Check
14114         `starttls-use-gnutls' and pass on to corresponding *-gnutls
14115         function if it is set.
14116
14117 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14118
14119         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
14120         structured fields.
14121
14122 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14123
14124         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
14125
14126 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
14127
14128         * spam.el (spam-mark-new-messages-in-spam-group-as-spam): Add
14129         variable.
14130         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
14131         assigning the spam-mark to new messages.
14132
14133 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
14134
14135         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
14136
14137 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14138
14139         * dgnushack.el: Autoload customize-set-variable for XEmacs.
14140
14141         * rfc2047.el (rfc2047-encodable-p): Don't move point.
14142         (rfc2047-decode): Treat the ascii coding-system as raw-text by
14143         default.
14144
14145 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
14146
14147         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
14148         correct data.
14149
14150 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
14151
14152         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
14153         (spam-group-processor-p): Fix function.
14154         (spam-group-processor-multiple-p)
14155         (spam-group-spam-processor-report-gmane-p)
14156         (spam-group-spam-processor-report-resend-p)
14157         (spam-group-spam-processor-bogofilter-p)
14158         (spam-group-spam-processor-blacklist-p)
14159         (spam-group-spam-processor-ifile-p)
14160         (spam-group-ham-processor-ifile-p)
14161         (spam-group-spam-processor-spamoracle-p)
14162         (spam-group-spam-processor-crm114-p)
14163         (spam-group-ham-processor-bogofilter-p)
14164         (spam-group-spam-processor-stat-p)
14165         (spam-group-ham-processor-stat-p)
14166         (spam-group-ham-processor-whitelist-p)
14167         (spam-group-ham-processor-BBDB-p)
14168         (spam-group-ham-processor-spamoracle-p)
14169         (spam-group-ham-processor-copy-p): Remove functions with some
14170         prejudice against unneeded code.
14171         (spam-report-articles-resend)
14172         (spam-report-resend-register-routine): Allow the group/topic
14173         spam-resend-to value to override spam-report-resend-to.
14174         (spam-summary-prepare-exit): Invoke spam-group-processor-p
14175         properly now.
14176
14177         * gnus.el (spam-resend-to): Add group/topic parameter.
14178         (spam-process): Move the OBSOLETE processors to the end of the
14179         choices.
14180
14181 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
14182
14183         * spam-report.el (spam-report-resend-to, spam-report-resend): Start
14184         with resend-to set to nil, and then ask the user if necessary.
14185         (spam-report-resend): spam-report-resend takes a list of articles, not
14186         separate article numbers.
14187
14188 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14189
14190         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
14191         addition to emacs-w3m.
14192
14193 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14194
14195         * assistant.el (assistant-authinfo-data): New function.
14196         (assistant-eval): Eval for entire assistant.
14197
14198         * netrc.el (netrc-services-file): New variable.
14199         (netrc-parse-services): New function.
14200         (netrc-find-service-name): New function.
14201         (netrc-find-service-number): New function.
14202         (netrc-port-equal): New function.
14203         (netrc-machine): Use it.
14204
14205         * nnimap.el (nnimap-open-connection): Use netrc.
14206
14207         * gnus-util.el (gnus-netrc-get): Remove aliases.
14208
14209         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
14210
14211         * assistant.el (wid-edit): Fix compilation.
14212
14213         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
14214
14215 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
14216
14217         * gnus-util.el (gnus-set-file-modes): New function.  (small
14218         patch).
14219
14220 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14221
14222         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
14223
14224         * assistant.el (assistant-render-node): Fix up rendering and
14225         read-only text.
14226         (assistant-render-node): Reset.
14227         (assistant-make-read-only): Not sticky.
14228
14229 2004-05-20  Danny Siu  <dsiu@adobe.com>
14230
14231         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
14232         centered even when gnus-auto-center-summary is t.
14233
14234 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14235
14236         * dns.el (dns-get-txt-answer): New function.
14237         (dns-read-txt): Ditto.
14238         (query-dns): Use it.
14239
14240 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14241
14242         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
14243         active for foreign groups even if the group level is higher than
14244         the specified value.
14245
14246 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14247
14248         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
14249         non-active groups.
14250
14251         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
14252
14253 2004-05-20  Magnus Henoch  <mange@freemail.hu>
14254
14255         * dns.el (dns-read-type): Add support for SVR.  (small patch)
14256
14257 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
14258
14259         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
14260         (spam-crm114-header, spam-crm114-spam-switch)
14261         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
14262         (spam-crm114-positive-spam-header)
14263         (spam-crm114-database-directory, spam-list-of-processors)
14264         (spam-group-spam-processor-crm114-p)
14265         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
14266         (spam-generic-score, spam-list-of-checks)
14267         (spam-list-of-statistical-checks, spam-registration-functions)
14268         (spam-check-crm114-headers, spam-crm114-score)
14269         (spam-check-crm114, spam-crm114-register-with-crm114)
14270         (spam-crm114-register-spam-routine)
14271         (spam-crm114-unregister-spam-routine)
14272         (spam-crm114-register-ham-routine)
14273         (spam-crm114-unregister-ham-routine): Add CRM114 support.  From
14274         asjo@koldfront.dk (Adam Sjøgren).
14275
14276         * gnus.el: Add spam-use-crm114.
14277
14278         * spam.el (spam-list-of-processors, spam-registration-functions):
14279         Add spam-use-resend.
14280         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
14281         (spam-report-articles-gmane): Add doc fix.
14282         (spam-report-articles-resend, spam-report-resend-register-routine):
14283         Add wrappers around spam-report-resend-to.
14284
14285         * spam-report.el (spam-report-resend-to, spam-report-resend):
14286         Add support for resending spam.
14287         (spam-report-gmane): Fix line length >80.
14288
14289         * gnus.el (spam-process): Add spam-use-resend.
14290
14291 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14292
14293         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
14294         number of processed spam messages.
14295         (spam-ham-copy-or-move-routine): Return the number of processed
14296         ham messages.
14297         (spam-summary-prepare-exit): Use the above values to decide
14298         whether status messages shouled be displayed.
14299
14300 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14301
14302         * rfc2047.el (rfc2047-encode-function-alist): Renamed from
14303         `rfc2047-encoding-function-alist' in order to avoid conflicting
14304         with the old version.
14305         (rfc2047-encode-region): Concatenate words containing non-ASCII
14306         characters in structured fields; don't encode space-delimited
14307         ASCII words even in unstructured fields; don't break words at
14308         char-category boundaries.
14309         (rfc2047-encode-1): New function.
14310         (rfc2047-encode): Use it; encode text so that it occupies the
14311         maximum width within 76-column; work correctly on Q encoding for
14312         iso-2022-* charsets.
14313         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
14314         sure not to break a line just after the header name.
14315         (rfc2047-b-encode-region): Removed.
14316         (rfc2047-b-encode-string): New function.
14317         (rfc2047-q-encode-region): Removed.
14318         (rfc2047-q-encode-string): New function.
14319
14320         * mm-util.el (mm-replace-in-string): New function.
14321
14322 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14323
14324         * gnus-msg.el (gnus-inews-make-draft-meta-information): Really
14325         get it right.
14326         (gnus-inews-make-draft): Really.
14327
14328 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
14329
14330         * nnmh.el (nnmh-request-list-1): Don't check the link count
14331         before descending.  (small patch)
14332
14333 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14334
14335         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
14336         stuff.
14337
14338         * gnus-start.el (gnus-subscribe-hierarchical-interactive): Match
14339         on real group name.
14340
14341         * gnus-art.el (gnus-signature-limit): Doc fix.
14342
14343         * gnus-msg.el (gnus-inews-make-draft): Quote list.
14344
14345         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
14346
14347 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
14348
14349         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
14350         isn't a string.
14351
14352 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14353
14354         * gnus-draft.el (gnus-draft-send): Bind
14355         rfc2047-encode-encoded-words.
14356
14357         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
14358         (rfc2047-encodable-p): Say that =? needs encoding.
14359         (rfc2047-encode-encoded-words): New variable.
14360
14361         * gnus-group.el (gnus-group-select-group): Doc fix.
14362
14363         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
14364
14365         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
14366         to nil.
14367
14368         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
14369
14370         * nnheader.el (nnheader-get-lines-and-char): New function.
14371
14372 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
14373
14374         * gnus-msg.el (gnus-summary-followup-with-original): Document
14375         yanking of region when active.
14376
14377 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14378
14379         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
14380         groups if the group level is higher than the specified value.
14381
14382 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14383
14384         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
14385         (gnus-group-jump-to-group): Added prefix argument using
14386         `gnus-group-jump-to-group-prompt'.  Query before jumping to
14387         non-active group.
14388
14389         * compface.el (uncompface): Be verbose when changing
14390         `uncompface-use-external'.
14391
14392         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
14393         handle manual section.
14394
14395 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14396
14397         * gnus-art.el (gnus-button-alist): Revert previous change.
14398
14399 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14400
14401         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
14402
14403 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14404
14405         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
14406         whether backend can accept message.
14407
14408         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
14409
14410 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
14411
14412         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
14413         Avoid creating directory when nntp-marks-is-evil is true.
14414         Reported by Reiner Steib.
14415
14416 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14417
14418         * gnus-picon.el (gnus-picon-style): New variable.
14419         (gnus-picon-insert-glyph): Added optional `nostring' argument.
14420         (gnus-picon-transform-address): Support `gnus-picon-style'.  From
14421         Jesper Harder <harder@ifa.au.dk>.
14422
14423 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14424
14425         * message.el (message-fill-field): Return point.
14426         (message-generate-headers): Go to end of field.
14427
14428         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
14429         stuff for non-living groups.
14430
14431 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
14432
14433         * gnus-art.el (gnus-article-followup-with-original)
14434         (gnus-article-reply-with-original): gnus-mark-active-p ->
14435         gnus-region-active-p.
14436
14437 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
14438
14439         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
14440         only when there is spam or ham to be processed.
14441
14442 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14443
14444         * mail-source.el (mail-source-delete-crash-box): Refactor.
14445         (mail-source-fetch): Use it.
14446         (mail-source-fetch-file): Ditto.
14447         (mail-source-fetch-directory): Run postscript in loop.
14448         (mail-source-fetch-pop): Delete.
14449         (mail-source-fetch-maildir): Ditto.
14450         (mail-source-fetch-imap): Ditto.
14451
14452         * imap.el (imap-authenticators): Comment out sasl.
14453
14454         * message.el (message-skip-to-next-address): New function.
14455         (message-fill-header-address): Refactor.
14456         (message-fill-address): Use it.
14457         (message-delete-address): Use it.
14458         (message-fill-header-general): Refactor.
14459         (message-fill-field-address): Rename.
14460         (message-narrow-to-field): Find the start of the header.
14461         (message-header-format-alist): Don't pre-fill.
14462         (message-fill-header): Removed.
14463         (message-insert-header): New function.
14464         (message-shorten-references): Use it.
14465
14466         * rfc2047.el (rfc2047-field-value): Strip props.
14467
14468         * mail-parse.el (mail-header-make-address): New alias.
14469
14470         * ietf-drums.el (ietf-drums-make-address): New function.
14471
14472         * imap.el: Add compiler directives.
14473
14474         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
14475
14476         * gnus-art.el (article-decode-idna-rhs): Don't use
14477         message-idna-inside-rhs-p.
14478
14479 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14480
14481         * message.el (message-idna-inside-rhs-p): Removed.
14482         (message-idna-to-ascii-rhs-1): Use proper address parsing.
14483
14484         * gnus-art.el (gnus-emphasis-alist): Removed strikethru; too many
14485         false positives.
14486
14487 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
14488
14489         * imap.el (imap-sasl-make-mechanisms): Use sasl.
14490
14491 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14492
14493         * nneething.el (nneething-file-name): Don't create spurious
14494         files.
14495
14496         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
14497         (gnus-inews-do-gcc): Remove sleep.
14498
14499         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
14500         part under point.
14501
14502         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
14503         (gnus-agent-regenerate-group): Using nil messages aren't valid.
14504
14505 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
14506
14507         * spam.el (spam-summary-prepare-exit): Fixed (length).
14508
14509 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
14510
14511         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
14512         as expired without moving it" message when there are spam
14513         messages left.
14514
14515 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
14516
14517         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
14518         header is not nil.
14519
14520 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
14521
14522         * nntp.el (nntp-request-set-mark, nntp-request-update-info): Call
14523         nntp-possibly-create-directory, not nntp-possibly-change-group.
14524         (nntp-marks-changed-p): New arg SERVER.
14525         (nntp-request-update-info): Adjust caller.
14526
14527 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
14528
14529         * nntp.el (nntp-save-marks): Pass missing arg.
14530
14531 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
14532
14533         * nntp.el: Support marks.
14534         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
14535         (nntp-marks-modtime, nntp-marks-directory): New variables.
14536         (nntp-request-set-mark, nntp-request-update-info)
14537         (nntp-possibly-create-directory, nntp-marks-changed-p)
14538         (nntp-save-marks, nntp-open-marks, nntp-marks-directory): New
14539         functions.
14540
14541 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
14542
14543         * gnus-xmas.el (gnus-xmas-select-lowest-window)
14544         (gnus-xmas-redefine): Rename.
14545
14546         * gnus-score.el (gnus-score-insert-help): Use
14547         gnus-select-lowest-window.
14548
14549         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
14550         appt-select-lowest-window and rename to gnus-select-lowest-window.
14551
14552         * gnus.el: do.
14553
14554 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14555
14556         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
14557         encodings of MIME-encoded words, in order to improve
14558         interoperability with several broken MUAs.
14559
14560 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14561
14562         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
14563         tags, only when charsets are not specified in headers.
14564         (mm-inline-text-html-render-with-w3m): Ditto.
14565
14566         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
14567         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
14568
14569 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14570
14571         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
14572         instead of MIME-decoded from fields when checking
14573         `gnus-article-address-banner-alist'.
14574
14575 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
14576
14577         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
14578         description rather than subject.
14579
14580 2004-05-02  Steve Youngs  <steve@youngs.au.com>
14581
14582         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
14583
14584 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14585
14586         * gnus.el (gnus-version-number): Bump.
14587
14588 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14589
14590         * gnus.el: No Gnus v0.2 is released.
14591
14592 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14593
14594         * gnus-agent.el (gnus-agent-read-agentview): Inline
14595         gnus-uncompress-range.
14596
14597 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14598
14599         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
14600         `exec-installed-p'.
14601
14602 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14603
14604         * gnus.el (spam-process, spam-autodetect-methods): Add
14605         bsfilter and bsfilter-headers.
14606
14607         * spam.el (spam-bsfilter): New customize group.
14608         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
14609         (spam-bsfilter-header, spam-bsfilter-probability-header)
14610         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
14611         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
14612         (spam-bsfilter-database-directory): New options.
14613         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
14614         (spam-list-of-statistical-checks, spam-registration-functions):
14615         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
14616         (spam-bsfilter-score): New command.
14617         (spam-check-bsfilter-headers, spam-check-bsfilter)
14618         (spam-bsfilter-register-with-bsfilter)
14619         (spam-bsfilter-register-spam-routine)
14620         (spam-bsfilter-unregister-spam-routine)
14621         (spam-bsfilter-register-ham-routine)
14622         (spam-bsfilter-unregister-ham-routine): New functions.
14623         (spam-generic-score): Support bsfilter; Accept an optional argument
14624         to recalcurate spam score even if scoring header has already been
14625         added.
14626         (spam-bogofilter-score, spam-spamassassin-score): Accept an
14627         optional argument to recalcurate spam score even if scoring header
14628         has already been added.
14629
14630 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
14631
14632         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
14633         strings!  Reported by David D. Smith <davidsmith@acm.org>.
14634         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
14635         link is missing.
14636
14637 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
14638
14639         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
14640         (html2text-get-attr): Rewrite.
14641
14642         * message.el (message-setup-1): Remove redundant put-text-property
14643         on mail-header-separator.
14644
14645 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
14646
14647         * gnus-registry.el (gnus-registry-cache-whitespace)
14648         (gnus-registry-action, gnus-registry-spool-action)
14649         (gnus-registry-split-fancy-with-parent): Change message levels
14650         from 5 to 3 or 7, as needed.
14651
14652         * spam.el (spam-summary-prepare-exit)
14653         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
14654         (spam-split, spam-find-spam, spam-log-undo-registration)
14655         (spam-check-blackholes, spam-enter-ham-BBDB): Changed message
14656         level from 5 to 6.
14657
14658 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14659
14660         * gnus-ems.el: Autoload appt-select-lowest-window (revert
14661         2004-03-04 change).
14662
14663 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
14664
14665         * sieve-manage.el (sieve-manage-open):
14666         * nnweb.el (nnweb-insert-html):
14667         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
14668         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
14669         * nnspool.el (nnspool-request-group):
14670         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
14671         * nnml.el (nnml-request-update-info):
14672         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
14673         (nnmh-request-create-group, nnmh-update-gnus-unreads):
14674         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
14675         (nnimap-request-set-mark):
14676         * nnfolder.el (nnfolder-request-update-info):
14677         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
14678         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
14679         * gnus-uu.el (gnus-uu-find-articles-matching):
14680         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
14681         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
14682         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
14683         * gnus-nocem.el (gnus-nocem-scan-groups):
14684         * gnus-int.el (gnus-start-news-server):
14685         * gnus-group.el (gnus-group-make-kiboze-group)
14686         (gnus-group-browse-foreign-server):
14687         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
14688         Use mapc when appropriate.
14689
14690 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
14691
14692         FIXME: Make separate entries for each person.
14693
14694         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
14695         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
14696         <shields@msrl.com>:
14697
14698         * spam.el (spam-necessary-extra-headers): Get the extra headers we
14699         may need for spam sorting and scoring.
14700         (spam-user-format-function-S): Add user format function suitable for
14701         general use.
14702         (spam-article-sort-by-spam-status): Add sorting function for summary
14703         sorting.
14704         (spam-extra-header-to-number): Add function to get a score from a
14705         header.
14706         (spam-summary-score): Add function to get a numeric score from the
14707         headers.
14708         (spam-generic-score): Fix function doc, was in wrong place.
14709         (spam-initialize): Take symbols when it's run, and install the
14710         extra headers that spam-necessary-extra-headers thinks we need.
14711
14712 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
14713
14714         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
14715         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
14716
14717 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
14718
14719         * gnus-sum.el (gnus-set-global-variables)
14720         (gnus-build-all-threads, gnus-get-newsgroup-headers)
14721         (gnus-article-get-xrefs, gnus-summary-best-group)
14722         (gnus-summary-next-article, gnus-summary-enter-digest-group)
14723         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
14724         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
14725         Use with-current-buffer.
14726
14727 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
14728
14729         * spam.el (spam-summary-prepare-exit): Simplify logic.
14730         (spam-fetch-article-header): Read the article header if it's not
14731         available.
14732         (spam-list-articles): Simplify logic.
14733         (spam-filelist-register-routine): Fix bug with unregister-list.
14734
14735         * gnus-registry.el: Fix comments at beginning.
14736
14737 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
14738
14739         * message.el (message-cater-to-broken-inn): Remove.
14740         (message-shorten-references): Make sure the total folded length of
14741         References is shorter than 998 characters to cater to a bug in INN
14742         2.3.  Also, don't pretend that references aren't folded -- this
14743         hasn't worked for a while.
14744
14745 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14746
14747         * gnus-agent.el (gnus-agentize):
14748         gnus-agent-send-mail-real-function no longer set to current value
14749         of message-send-mail-function but rather a lambda that calls
14750         message-send-mail-function.  The change makes the agent real-time
14751         responsive to user changes to message-send-mail-function.
14752
14753 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14754
14755         * legacy-gnus-agent.el
14756         (gnus-agent-convert-to-compressed-agentview): Fixed typos with
14757         help from Florian Weimer <fw@deneb.enyo.de>
14758
14759 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14760
14761         * nnmail.el (nnmail-cache-insert): Revert last change.
14762
14763 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14764
14765         * nnmail.el (nnmail-cache-insert): Always check whether
14766         nnmail-cache-ignore-groups matches a group name.
14767
14768 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
14769
14770         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
14771         (spam-find-spam, spam-log-processing-to-registry)
14772         (spam-log-registered-p, spam-log-unregistration-needed-p)
14773         (spam-log-undo-registration): Use gnus-message instead of
14774         gnus-error, none of these errors are fatal.
14775
14776         * gnus-registry.el (gnus-registry-clean-empty-function)
14777         (gnus-registry-clean-empty): Remove only empty entries without
14778         extra data.
14779
14780 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
14781
14782         * spam-stat.el (spam-stat-buffer-change-to-spam)
14783         (spam-stat-buffer-change-to-non-spam): Change (error) to
14784         (gnus-message 8) invocation.
14785
14786 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14787
14788         * nntp.el (nntp-via-netcat-command): New variable.
14789         (nntp-via-netcat-switches): New variable.
14790         (nntp-open-via-rlogin-and-netcat): New function.
14791         (nntp-open-connection-function): Doc fix.
14792         (nntp-telnet-command): Doc fix.
14793         (nntp-end-of-line): Doc fix.
14794         (nntp-via-rlogin-command): Doc fix.
14795         (nntp-via-user-name): Doc fix.
14796         (nntp-via-address): Doc fix.
14797
14798 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14799
14800         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
14801         error in Emacs 21.1.
14802
14803 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
14804
14805         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
14806
14807 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14808
14809         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
14810         (gnus-agent-with-refreshed-group): New macro.
14811         (gnus-agent-rename-group): New function.
14812         (gnus-agent-delete-group): New function.
14813         (gnus-agent-save-group-info): Use gnus-command-method when
14814         `method' parameter is nil.  Don't write nil entries into the
14815         active file.
14816         (gnus-agent-get-group-info): New function.
14817         (gnus-agent-fetch-articles): Use
14818         gnus-agent-update-files-total-fetched-for to increment disk space
14819         used.
14820         (gnus-agent-fetch-headers, gnus-agent-save-alist): Use
14821         gnus-agent-update-view-total-fetched-for to increment disk space
14822         used.
14823         (gnus-agent-get-local): Added optional parameters to avoid calling
14824         gnus-group-real-name and gnus-find-method-for-group.
14825         (gnus-agent-set-local): Delete stored entry if either min, or max,
14826         are nil.
14827         (gnus-agent-fetch-session): Reworded error/quit messages.  On
14828         quit, use gnus-agent-regenerate-group to record existance of any
14829         articles fetched to disk before the quit occurred.
14830         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
14831         gnus-agent-update-view-total-fetched-for, and
14832         gnus-agent-update-files-total-fetched-for to decrement disk space
14833         used.
14834         (gnus-agent-retrieve-headers): Use
14835         gnus-agent-update-view-total-fetched-for to increment disk space
14836         used.
14837         (gnus-agent-regenerate-group): Replace gnus-group-update-group
14838         with gnus-agent-update-files-total-fetched-for to decrement disk
14839         space and fresh group buffer.
14840         (gnus-agent-inhibit-update-total-fetched-for): New variable.
14841         (gnus-agent-need-update-total-fetched-for): New variable.
14842         (gnus-agent-update-files-total-fetched-for): New function.
14843         (gnus-agent-update-view-total-fetched-for): New function.
14844         (gnus-agent-total-fetched-for): New function.
14845
14846         * gnus-cache.el (gnus-cache-save-buffers): Use
14847         gnus-cache-update-overview-total-fetched-for to change disk space
14848         used by this group.
14849         (gnus-cache-possibly-enter-article): Use
14850         gnus-cache-update-file-total-fetched-for to increment disk space
14851         used by this group.
14852         (gnus-cache-possibly-remove-article): Use
14853         gnus-cache-update-file-total-fetched-for to decrement disk space
14854         used by this group.
14855         (gnus-cache-generate-nov-databases): Purge total fetched cache.
14856         (gnus-cache-rename-group): New function.
14857         (gnus-cache-delete-group): New function.
14858         (gnus-cache-inhibit-update-total-fetched-for): New variable.
14859         (gnus-cache-need-update-total-fetched-for): New variable.
14860         (gnus-cache-with-refreshed-group): New macro.
14861         (gnus-cache-update-file-total-fetched-for): New function.
14862         (gnus-cache-update-overview-total-fetched-for): New function.
14863         (gnus-cache-rename-group-total-fetched-for): New function.
14864         (gnus-cache-delete-group-total-fetched-for): New function.
14865         (gnus-cache-total-fetched-for): New function.
14866
14867         * gnus-group.el: Require gnus-sum and autoload functions to
14868         resolve warnings when gnus-group.el compiled alone.
14869         (gnus-group-line-format): Documented new %F.
14870         (size of Fetched data) group line format; identifies disk space
14871         used by agent and cache.
14872         (gnus-group-line-format-alist): Defined new F format.
14873         (gnus-total-fetched-for): New function.
14874         (gnus-group-delete-group): No longer update
14875         gnus-cache-active-altered as gnus-request-delete-group now keeps
14876         the cache in sync.
14877         (gnus-group-list-active): Let the agent store a server's active
14878         list if currently plugged.
14879
14880         * gnus-int.el (gnus-request-delete-group):
14881         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
14882         local disk in sync with the server.
14883         (gnus-request-rename-group):
14884         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
14885         local disk in sync with the server.
14886
14887         * gnus-start.el (gnus-get-unread-articles):
14888         Cosmetic simplification to logic.
14889
14890         * gnus-util.el (gnus-rename-file): New function.
14891
14892 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
14893
14894         * mm-util.el (mm-image-load-path): Handle nil in load-path.
14895
14896 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
14897
14898         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
14899         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
14900
14901 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
14902
14903         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
14904         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
14905
14906 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
14907
14908         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
14909
14910 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
14911
14912         * spam.el (spam-set-difference): Add function to replace
14913         gnus-set-difference in spam.el.
14914         (spam-summary-prepare-exit): Use spam-set-difference.
14915
14916 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
14917
14918         * gnus-registry.el (gnus-registry-cache-file): Update to use
14919         gnus-dribble-directory OR gnus-home-directory OR ~.
14920         (gnus-registry-split-fancy-with-parent): Fix doc.
14921
14922 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14923
14924         * message.el (message-exchange-point-and-mark): Use
14925         message-mark-active-p.  Suggested by Jesper Harder
14926         <harder@ifa.au.dk>.
14927
14928 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14929
14930         * message.el (message-exchange-point-and-mark): Don't activate
14931         region if it was inactive.  Suggested by Hiroshi Fujishima
14932         <pooh@nature.tsukuba.ac.jp>.
14933
14934 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14935
14936         * gnus-art.el (article-display-face): Display Faces in the same
14937         order as X-Faces.
14938
14939 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14940
14941         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
14942
14943 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14944
14945         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
14946         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
14947         (gnus-article-mime-hierarchy): Remove.
14948         (gnus-article-mime-hierarchy-next): Remove.
14949         (gnus-article-mode): Revert 2004-03-19 change.
14950         (gnus-article-setup-buffer): Revert 2004-03-19 change.
14951         (gnus-insert-mime-button): Revert 2004-03-19 change.
14952         (gnus-mime-accumulate-hierarchy): Remove.
14953         (gnus-mime-enter-multipart): Remove.
14954         (gnus-mime-leave-multipart): Remove.
14955         (gnus-mime-display-part): Revert 2004-03-19 change.
14956         (gnus-mime-display-alternative): Revert 2004-03-19 change.
14957
14958         * mml.el (mml-preview): Revert 2004-03-19 change.
14959
14960 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
14961
14962         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
14963
14964 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14965
14966         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
14967         t while entering a file name using the mm-with-multibyte macro.
14968         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
14969
14970         * mm-util.el (mm-with-multibyte): New macro.
14971
14972 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14973
14974         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): New
14975         user option.
14976         (gnus-mime-multipart-functions): Doc and customization fix.
14977         (gnus-article-mime-hierarchy): New variable.
14978         (gnus-article-mime-hierarchy-next): New variable.
14979         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
14980         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
14981         gnus-article-mime-hierarchy-next to nil.
14982         (gnus-insert-mime-button): Show hierarchy numbers.
14983         (gnus-mime-accumulate-hierarchy): New function.
14984         (gnus-mime-enter-multipart): New function.
14985         (gnus-mime-leave-multipart): New function.
14986         (gnus-mime-display-part): Recompute hierarchical MIME structure.
14987         (gnus-mime-display-alternative): Show hierarchy numbers.
14988
14989         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
14990         gnus-article-mime-hierarchy-next to nil.
14991
14992 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
14993
14994         * dns.el: Don't require gnus-xmas.
14995
14996 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
14997
14998         * mml.el (mml-generate-mime-1): Don't use format=flowed with
14999         inline PGP.
15000         (mml-menu): Disable mml-quote-region if mark is inactive.
15001
15002 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15003
15004         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
15005         when the group's active is not available.
15006
15007 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15008
15009         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
15010         error.
15011
15012 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
15013
15014         * imap.el (imap-store-password): New variable.
15015         (imap-interactive-login): Use it.
15016         Suggested by Mark Plaksin <happy@mcplaksin.org>.
15017
15018 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15019
15020         * gnus-art.el (gnus-article-read-summary-keys): Restore new
15021         window-start and hscroll to summary window.
15022
15023 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15024
15025         * gnus-start.el (gnus-convert-old-newsrc): Only write the
15026         conversion message to newsrc-dribble when an actual conversion is
15027         performed.
15028
15029 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
15030
15031         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
15032
15033 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15034
15035         * mm-decode.el (mm-complicated-handles): New function reviving
15036         former definition of mm-multiple-handles.
15037
15038         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
15039         (gnus-mime-delete-part): Use it.
15040
15041 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15042
15043         * gnus-agent.el (gnus-agent-read-local): Bind
15044         nnheader-file-coding-system to gnus-agent-file-coding-system to
15045         avoid the implicit assumption that they will always be equal.
15046         (gnus-agent-save-local): Bind buffer-file-coding-system, not
15047         coding-system-for-write, as the with-temp-file macro first prints
15048         to a buffer then saves the buffer.
15049
15050 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15051
15052         * gnus-art.el (gnus-article-edit-part): New function.
15053         (gnus-mime-save-part-and-strip): Use it; do query instead of
15054         signaling an error; don't use mm-multiple-handles.
15055         (gnus-mime-delete-part): Ditto.
15056
15057 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15058
15059         * gnus-agent.el (gnus-agent-read-agentview): Removed support for
15060         old file versions.
15061         (gnus-group-prepare-hook): Removed function that converted list
15062         form of gnus-agent-expire-days to group properties.
15063
15064         * gnus-int.el: Autoload gnus-agent-regenerate-group.
15065         (gnus-request-accept-article): Re-indented.
15066
15067         * gnus-start.el (gnus-convert-old-newsrc): Registered new
15068         converters to handle old agent file formats.  Added logic for a
15069         "backup before upgrading warning".
15070         (gnus-convert-mark-converter-prompt): Developers can mark
15071         functions as needing (default), or not needing,
15072         gnus-convert-old-newsrc's "backup before upgrading warning".
15073         (gnus-convert-converter-needs-prompt): Tests whether the user
15074         should be protected from potentially irreversable changes by the
15075         function.
15076
15077         * legacy-gnus-agent.el: New.  Provides converters that are only
15078         loaded when gnus-convert-old-newsrc needs to call them.
15079
15080 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15081
15082         * mail-source.el (mail-source-touch-pop): Doc fix.
15083
15084         * message.el (message-smtpmail-send-it): Doc fix.
15085
15086 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
15087
15088         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
15089
15090         * nnmail.el (nnmail-split-fancy): do.
15091
15092         * gnus-kill.el (gnus-kill, gnus-execute): do.
15093
15094 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
15095
15096         * gnus-sum.el (gnus-widget-reversible-match)
15097         (gnus-widget-reversible-to-internal)
15098         (gnus-widget-reversible-to-external): New functions.
15099         (gnus-widget-reversible): New widget.
15100         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
15101
15102 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
15103
15104         * gnus-sum.el (gnus-thread-sort-functions)
15105         (gnus-article-sort-functions): Document `(not F)' items.
15106
15107 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
15108
15109         * spam.el (spam-use-gmane-xref): Add new backend.
15110         (spam-gmane-xref-spam-group): Add variable to control the name of the
15111         Gmane spam group.
15112         (spam-blackhole-servers, spam-blackhole-good-server-regex)
15113         (spam-regex-headers-spam, spam-regex-headers-ham)
15114         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
15115         (spam-list-of-checks): Add spam-use-gmane-xref to list of
15116         backends and checks.
15117         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
15118
15119         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
15120         an autodetect method.
15121
15122 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15123
15124         * gnus-int.el (gnus-request-accept-article): Inform the agent that
15125         articles are being added to a group.
15126         (gnus-request-replace-article): Inform the agent that articles
15127         need to be uncached as the cached contents are no longer valid.
15128
15129 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15130
15131         * binhex.el: Don't autoload executable-find.
15132
15133         * canlock.el: Don't autoload mail-fetch-field.
15134
15135         * dgnushack.el: Autoload c-mode for XEmacs.
15136
15137         * gnus-ems.el: Don't autoload appt-select-lowest-window.
15138
15139         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
15140         rmail-dont-reply-to and rmail-output.
15141
15142         * gnus-score.el: Don't autoload ffap-string-at-point.
15143
15144         * gnus-setup.el: Don't autoload sc-cite-original.
15145
15146         * imap.el: Don't autoload base64-decode-string,
15147         base64-encode-string and md5.
15148
15149         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
15150         and rmail-msg-restore-non-pruned-header.
15151
15152         * mm-decode.el: Don't autoload executable-find.
15153
15154         * mm-url.el: Don't autoload executable-find.
15155
15156         * mm-view.el: Don't autoload diff-mode.
15157
15158         * nndb.el: Don't autoload news-reply-mode, news-setup,
15159         cancel-timer and telnet.
15160
15161         * password.el: Don't autoload run-at-time for Emacs.
15162
15163         * sha1-el.el: Don't autoload executable-find.
15164
15165         * sieve-mode.el: Don't autoload c-mode.
15166
15167         * uudecode.el: Don't autoload executable-find.
15168
15169 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15170
15171         * gnus-agent.el (gnus-agent-file-header-cache): Removed.
15172         (gnus-agent-possibly-alter-active): Avoid null in numeric
15173         comparison.
15174         (gnus-agent-set-local): Refuse to save null in local object table.
15175         (gnus-agent-regenerate-group): The REREAD parameter can now be a
15176         list of articles that will be marked as unread.
15177
15178 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15179
15180         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
15181
15182 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
15183
15184         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
15185         language tags.
15186
15187 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
15188
15189         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
15190         Don't bind "obarray".
15191
15192         * gnus-sum.el (gnus-thread-sort-functions): Added
15193         `gnus-thread-sort-by-most-recent-number' and
15194         `gnus-thread-sort-by-most-recent-date'.
15195         Reported by Kai Grossjohann <kai@emptydomain.de>.
15196
15197 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15198
15199         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
15200
15201 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15202
15203         * gnus-cus.el (gnus-agent-customize-category): Removed
15204         ignore-errors macro reference that required cl to be loaded at
15205         run-time.
15206
15207         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
15208         single-interval range of the form (min . max).  Previously the
15209         range had to look like ((min . max)).  Likewise, return
15210         (min . max) rather than ((min . max)).
15211         (gnus-range-map): Use gnus-range-normalize to accept
15212         single-interval range.
15213
15214         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
15215         the cache, but not the agent, now appear with their usual face.
15216
15217         * dgnushack.el (loaddir): New variable that is bound to the
15218         directory containing the dgnushack.el file. Use loaddir, rather
15219         than srcdir, to update load-path. Change lets dgnushack compile
15220         code in directories other than GNUS/lisp.
15221
15222 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15223
15224         * lpath.el: Don't bind w3m-safe-url-regexp.
15225
15226         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
15227         w3m-safe-url-regexp variable buffer-local.
15228
15229         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15230
15231 2004-02-27  Simon Josefsson  <jas@extundo.com>
15232
15233         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
15234         gnus-group-real-prefix.
15235         (gnus-summary-move-article): Use it, instead of
15236         gnus-group-real-prefix.
15237
15238 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15239
15240         * lpath.el: Bind w3m-safe-url-regexp.
15241
15242         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
15243         w3m-safe-url-regexp variable buffer-local and set it as the value
15244         of mm-w3m-safe-url-regexp.
15245
15246         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15247
15248         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
15249         parsing gnus-posting-styles when the message is not for replying.
15250
15251         * dgnushack.el: Autoload sgml-mode for XEmacs.
15252
15253         * nnrss.el (nnrss-opml-export): Use
15254         mm-set-buffer-file-coding-system instead of
15255         set-buffer-file-coding-system.
15256
15257 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
15258
15259         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
15260         of checkdoc.el).
15261         * nnrss.el: do.
15262         * gnus-mlspl.el: do.
15263         * gnus-ml.el: do.
15264         * gnus-srvr.el: do.
15265
15266         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
15267
15268 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
15269
15270         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
15271         Corrections to custom-manual links.
15272
15273         * gnus-art.el (gnus-article): Ditto.
15274
15275         * mm-decode.el (mime-display, mime-security): Ditto.
15276
15277 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15278
15279         * flow-fill.el: Typo.
15280
15281 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
15282
15283         * spam-wash.el: New file.
15284
15285 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
15286
15287         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
15288
15289 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
15290
15291         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
15292         to be run with new-articles as LIST1, not LIST2.
15293         (spam-registration-functions): Add spam-use-ham-copy as a nil
15294         registration backend.
15295
15296 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15297
15298         * spam-stat.el (spam-stat-washing-hook): New option.
15299         (spam-stat-buffer-words): Use it.
15300         (spam-stat-process-directory, spam-stat-test-directory): Use
15301         insert-file-contents-literally.
15302         (spam-stat-coding-system): New variable.
15303         (spam-stat-load, spam-stat-save): Use it.
15304
15305 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15306
15307         * spam-report.el (spam-report-plug-agent): Quote
15308         spam-report-url-to-file and spam-report-url-ping-plain.
15309
15310 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
15311
15312         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Allow
15313         / in mailto URLs.
15314
15315 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
15316
15317         * spam-report.el (spam-report-process-queue): Fix interactive use.
15318         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
15319         (spam-report-unplug-agent): Doc fixes.
15320         (spam-report-url-ping-mm-url, spam-report-url-to-file)
15321         (spam-report-agentize, spam-report-deagentize): Autoload.
15322
15323 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15324
15325         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
15326
15327         * message.el (message-setup-fill-variables): Add mml tags to
15328         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
15329         <ajk@iu.edu>.
15330         (message-mode): Don't modify paragraph-separate there.
15331
15332 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15333
15334         * compface.el (uncompface-use-external): Default to undecided.
15335         (uncompface-use-external-threshold): New variable.
15336         (uncompface-float-time): New macro.
15337         (uncompface): Determine whether to use the external decoder if
15338         uncompface-use-external is undecided.
15339
15340 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15341
15342         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
15343         after images.
15344
15345         * gnus-art.el (gnus-mime-display-single): Remove dead code.
15346
15347 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
15348
15349         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
15350
15351         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
15352
15353         * gnus-sum.el (gnus-summary-limit-to-age)
15354         (gnus-summary-limit-children): do.
15355
15356         * gnus-int.el (gnus-request-scan): do.
15357
15358         * gnus-group.el (gnus-group-suspend): do.
15359
15360         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
15361
15362         * gnus-cite.el (gnus-cite-parse-attributions): do.
15363
15364         * gnus-agent.el (gnus-summary-set-agent-mark)
15365         (gnus-agent-regenerate-group): do.
15366
15367         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
15368
15369         * binhex.el (binhex-decode-region-internal): do.
15370
15371 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15372
15373         * gnus-fun.el (gnus-face-properties-alist): New user option.
15374         (gnus-display-x-face-in-from): Use it.
15375
15376         * gnus-art.el (article-display-face): Ditto.
15377
15378         * compface.el (uncompface-use-external): Default to nil.
15379
15380 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
15381
15382         * nntp.el (nntp-erase-buffer): New function.
15383         (nntp-retrieve-data, nntp-send-command)
15384         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
15385         (nntp-possibly-change-group): Use it.
15386
15387         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list): Use
15388         with-current-buffer.
15389
15390 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
15391
15392         * compface.el: Merge the ELisp-based uncompface program.
15393         (compface): New customization group.
15394         (uncompface-use-external): New user option.
15395         (uncompface): Call uncompface-internal if uncompface-use-external
15396         is nil.
15397         (uncompface-internal): New function.  Note that there are also
15398         some other functions and variables added for this function.
15399
15400 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
15401
15402         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
15403         if necessary.
15404
15405 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
15406
15407         * spam-report.el (spam-report-unplug-agent)
15408         (spam-report-plug-agent, spam-report-deagentize)
15409         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
15410         Add support for the Agent in spam-report: when unplugged, report to a
15411         file; when plugged, submit all the requests.
15412
15413         * spam.el (spam-register-routine): Fix message about
15414         registration.
15415
15416 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
15417
15418         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
15419         dependencies.
15420         (rfc2047-encode): Use it.
15421
15422         * gnus-art.el (gnus-button-marker-list): Move before first
15423         reference.
15424
15425         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
15426         (imap-parse-body): Fix format string mismatch.
15427
15428         * gnus-score.el (gnus-summary-increase-score): do.
15429
15430         * nnrss.el (nnrss-close): New function.
15431
15432 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
15433
15434         * nnrss.el (nnrss-make-filename): New function.
15435         (nnrss-request-delete-group, nnrss-read-server-data)
15436         (nnrss-save-server-data, nnrss-read-group-data)
15437         (nnrss-save-group-data): Use it.
15438         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
15439         (nnrss-read-server-data, nnrss-read-group-data): Use load.
15440         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
15441
15442 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
15443
15444         * mml.el (mml-compute-boundary-1): Don't uncompress files.
15445
15446 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
15447
15448         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
15449         files.
15450
15451         * message.el (message-generate-headers-first): Don't quote nil
15452         and t in docstrings.
15453
15454         * imap.el (imap-id): do.
15455
15456         * gnus-agent.el (gnus-agent-consider-all-articles)
15457         (gnus-agent-queue-mail): do.
15458
15459 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
15460
15461         * spam-report.el (spam-report-process-queue): New function.
15462         Process requests from `spam-report-requests-file'.
15463         (spam-report-process-queue): Doc fix.
15464
15465 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
15466
15467         * spam.el (spam-register-routine)
15468         (spam-log-processing-to-registry, spam-log-registered-p)
15469         (spam-log-unregistration-needed-p, spam-log-undo-registration):
15470         Change "check" to "spam-check" for semi-clarity.
15471
15472 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
15473
15474         * pop3.el: Require nnheader.
15475
15476         * mml-smime.el: Require cl.  Autoload message-fetch-field.
15477
15478         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
15479
15480         * gnus-picon.el: Require cl.
15481
15482         * gnus-fun.el: Require gnus-ems and gnus-util.
15483
15484         * gnus.el (gnus-method-to-server): Move defsubst before first use.
15485
15486         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
15487
15488         * gnus-art.el (gnus-article-edit-mode): Define before first
15489         reference.
15490
15491 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
15492
15493         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
15494         (gnus-uu-post-encoded): Use point-at-bol.
15495
15496         * gnus-topic.el (gnus-group-active-topic-p): do.
15497
15498         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
15499
15500         * gnus-group.el (gnus-group-kill-region): do.
15501
15502         * gnus-art.el (article-date-ut): do.
15503
15504         * message.el (message-fetch-field): Remove redundant
15505         case-fold-search binding.
15506         (message-narrow-to-field): Simplify.
15507
15508 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
15509
15510         * spam.el (spam-directory): Derive from `gnus-directory'.
15511
15512         * spam-report.el (spam-report-url-to-file)
15513         (spam-report-requests-file): New function and variable for offline
15514         reporting.
15515         (spam-report-url-ping-function): Add `spam-report-url-to-file'
15516         and user defined function.
15517         (spam-report-url-ping-mm-url): Remove doubled slash.
15518
15519 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
15520
15521         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
15522
15523 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
15524
15525         * spam.el (spam-check-spamoracle, spam-spamoracle-learn): Fix
15526         format string mismatch.
15527
15528         * sieve.el (sieve-deactivate-all): do.
15529
15530         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
15531
15532         * nnlistserv.el (nnlistserv-kk-wash-article): do.
15533
15534         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
15535
15536         * mm-bodies.el (mm-7bit-chars): Don't include \r.
15537
15538 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
15539
15540         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
15541         the list of checks.
15542
15543 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
15544
15545         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
15546         padding.
15547
15548 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
15549
15550         * mm-view.el (mm-fill-flowed): New variable.
15551         (mm-inline-text): Use it.
15552
15553 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
15554
15555         * spam.el (spam-spamassassin-register-ham-routine)
15556         (spam-spamassassin-register-spam-routine): Fix function names.
15557
15558 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15559
15560         * gnus.el (gnus-tmp-grouplens): Remove.
15561         (gnus-summary-line-format): Remove grouplens.
15562
15563         * gnus-group.el (gnus-group-line-format): Ditto.
15564
15565         * gnus-spec.el (gnus-format-specs): Ditto.
15566         (gnus-update-format-specifications): Flush the group format spec
15567         cache if there's the grouplens stuff.
15568         (gnus-parse-simple-format): Replace %l with the empty string.
15569
15570 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
15571
15572         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
15573         omission.
15574
15575 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15576
15577         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
15578         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
15579
15580 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
15581
15582         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
15583         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
15584         New macros and functions.
15585         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
15586         Handle > NLINK_MAX messages.
15587         * nnmaildir.el (nnmaildir-request-set-mark): Use
15588         nnmaildir--emlink-p and nnmaildir--eexist-p.
15589
15590 2004-01-25  Alex Schroeder  <alex@gnu.org>
15591
15592         * spam-stat.el (spam-stat-process-directory-age): New option.
15593         (spam-stat-process-directory): Use it.
15594
15595 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
15596
15597         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
15598         (spam-stat-save): Accept prefix argument.
15599
15600 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
15601
15602         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
15603         links" error.
15604
15605 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15606
15607         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
15608         the rest of the and/or forms.
15609
15610 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15611
15612         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
15613         compatibility with old .newsrc.eld files.
15614
15615         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
15616
15617         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
15618
15619         * gnus-start.el (gnus-1): do.
15620
15621         * gnus-group.el (gnus-group-line-format-alist): do.
15622
15623         * gnus.el (gnus-use-grouplens, gnus-visual): do.
15624
15625         * gnus-gl.el: Remove.
15626
15627 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15628
15629         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
15630         marks consisting of a single range {for example, (3 . 5)} rather
15631         than a list of a single range { ((3 . 5)) }.
15632
15633 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15634
15635         * spam-stat.el (spam-stat-store-gnus-article-buffer): Use
15636         with-current-buffer.
15637         (spam-stat-store-current-buffer): Use insert-buffer-substring to
15638         avoid consing a string.
15639
15640         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
15641         Remove obsolete entries for big5 and gb2312.
15642
15643 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15644
15645         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
15646         uncompressed list.
15647
15648 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
15649
15650         * spam-stat.el (spam-stat-strip-xref): New function.
15651         (spam-stat-process-directory): Use it.
15652
15653         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
15654         here -- it's done in message-fetch-field.
15655
15656 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15657
15658         * gnus-agent.el (gnus-agent-queue-mail)
15659         (gnus-agent-prompt-send-queue): New variables.
15660         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
15661         * gnus-draft.el (gnus-group-send-queue): Pass the group name
15662         "nndraft:queue" along to gnus-draft-send.  Use
15663         gnus-agent-prompt-send-queue.
15664         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
15665         is "nndraft:queue".  Suggested by Gaute Strokkenes
15666         <gs234@srcf.ucam.org>
15667
15668         * gnus-agent.el (agent-disable-undownloaded-faces): Removed.
15669         (agent-enable-undownloaded-faces): Added.
15670         (gnus-agent-cat-groups): Use eval-and-compile, not
15671         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
15672         method of gnus-agent-cat-groups even when the buffer has been
15673         evaled.
15674         (gnus-agent-save-active, gnus-agent-save-active-1): Merged to
15675         delete gnus-agent-save-active-1.
15676         (gnus-agent-save-groups): Deleted.  Identical to
15677         gnus-agent-save-active.
15678         (gnus-agent-write-active): No longer adjust agent's copy of active
15679         file as agent's adjustments are now stored in their own
15680         file.  Removed optional parameter.
15681         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
15682         servers.  Add use of min/max range limits from server's local
15683         file.
15684         (gnus-agent-save-alist): Removed unused optional argument.
15685         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
15686         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
15687         (gnus-agent-set-local): A per-server file that keeps min/max range
15688         limits for articles known to the agent.  Provides a fast mechanism
15689         for altering many active ranges.
15690         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
15691         active file (local makes it unnecessary).
15692         (gnus-agent-regenerate-group): Fixed XEmacs compatibility.
15693
15694         * gnus-cus.el (agent-disable-undownloaded-faces): Removed.
15695         (agent-enable-undownloaded-faces): Added.
15696
15697         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
15698         disable it when sending to "nndraft:queue".
15699         (gnus-group-send-queue): Add safety check to avoid sending queue
15700         when unplugged.
15701
15702         * gnus-group.el (gnus-group-catchup): Use new
15703         gnus-sequence-of-unread-articles, not
15704         gnus-list-of-unread-articles, to avoid exhausting memory with huge
15705         numbers of articles.  Use gnus-range-map to avoid having to
15706         uncompress the unread list.
15707         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
15708         Fixed invalid ange-ftp reference.
15709
15710         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
15711         (gnus-sorted-range-intersection): Intersection of two ranges
15712         without requiring that they first be uncompressed.
15713
15714         * gnus-start.el (gnus-activate-group): Unless blocked by the
15715         caller, possibly expand the active range to include both cached
15716         and agentized articles.
15717         (gnus-convert-old-newsrc): Rewrote in anticipation of having
15718         multiple version-dependent converters.
15719         (gnus-groups-to-gnus-format): Replaced gnus-agent-save-groups with
15720         gnus-agent-save-active.
15721         (gnus-save-newsrc-file): Save dirty agent range limits.
15722
15723         * gnus-sum.el (gnus-select-newgroup): Replaced inline code with
15724         gnus-agent-possibly-alter-active.
15725         (gnus-adjust-marked-articles): Faster handling of simple lists.
15726
15727 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
15728
15729         * spam-stat.el (spam-stat-test-directory): New optional argument
15730         displays a list of files detected.  Suggested by Andrew Cohen
15731         <cohen@andy.bu.edu>.
15732         (spam-stat-buffer-words-with-scores): Don't narrow and change
15733         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
15734
15735 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
15736
15737         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
15738         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
15739         (spam-spamassassin-arguments)
15740         (spam-spamassassin-spam-flag-header)
15741         (spam-spamassassin-positive-spam-flag-header)
15742         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
15743         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
15744         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
15745         (spam-list-of-processors, spam-list-of-checks)
15746         (spam-list-of-statistical-checks, spam-registration-functions)
15747         (spam-check-spamassassin-headers, spam-check-spamassassin)
15748         (spam-spamassassin-score)
15749         (spam-spamassassin-register-with-sa-learn)
15750         (spam-spamassassin-register-spam-routine)
15751         (spam-spamassassin-register-ham-routine)
15752         (spam-assassin-register-spam-routine)
15753         (spam-assassin-register-ham-routine): Add SpamAssassin support.
15754         (spam-bogofilter-score): Fix to show article before scoring.
15755
15756 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
15757
15758         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
15759         default scoring function.
15760         (spam-generic-score): Call spam-spamassassin-score if
15761         spam-use-spamassassin or spam-use-spamassassin-headers is on;
15762         spam-bogofilter-score otherwise.
15763
15764         * gnus.el (spam-process, spam-autodetect-methods): Add
15765         spamassassin and spamassassin-headers.
15766
15767 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
15768
15769         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
15770         Suppress unnecessary messages.
15771
15772 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
15773
15774         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
15775         make-hash-table.
15776
15777 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15778
15779         * canlock.el (base64-encode-string): Don't autoload it.
15780
15781 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15782
15783         * run-at-time.el: Remove useless (require 'itimer),
15784         eval-and-compile and (featurep 'xemacs).
15785
15786 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
15787
15788         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
15789         GROUP is a virtual group.
15790
15791 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
15792
15793         * gnus.el: Autoload `message-y-or-n-p'.
15794
15795 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
15796
15797         * pgg-parse.el: Remove unnecessary (require 'custom).
15798
15799         * pgg-def.el: do.
15800
15801         * nnmail.el: do.
15802
15803         * gnus-undo.el: do.
15804
15805         * gnus-picon.el: do.
15806
15807         * gnus-util.el: do.
15808
15809 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
15810
15811         * gnus-sum.el (gnus-pick-line-number): Add autoload.
15812
15813 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15814
15815         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
15816         handle, as well as a list.
15817
15818         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
15819         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
15820         (mm-w3m-cid-retrieve): Simplify.
15821
15822 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
15823
15824         * message.el (message-kill-to-signature): Allow prefix arg to
15825         specify number of lines to keep before signature.
15826
15827 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
15828
15829         * message.el (message-kill-to-signature): Change docstring.
15830
15831 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15832
15833         * canlock.el: Always require sha1-el.
15834         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
15835
15836         * message.el: Autoload sha1 only when compiling.
15837
15838         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
15839         eudc-expand-inline for XEmacs.
15840
15841 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15842
15843         * message.el (message-canlock-generate): Require sha1-el.
15844
15845 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
15846
15847         * message.el (message-expand-name): Silence the byte compiler.
15848
15849         * lpath.el: Add detect-coding-system.
15850
15851         * dgnushack.el (dgnushack-compile): Remove obsolete check for
15852         cus-edit.
15853
15854 2004-01-13  Simon Josefsson  <jas@extundo.com>
15855
15856         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
15857         Invoke gnus-score-mode.  Reported by
15858         bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
15859
15860         * gnus-range.el (gnus-compress-sequence): Doc fix.  Suggested by
15861         Jim Blandy <jimb@redhat.com> (tiny change).
15862
15863 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15864
15865         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
15866
15867 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
15868
15869         * spam.el (spam-get-article-as-string): Update to use
15870         gnus-request-article-this-buffer, much simpler.
15871         (spam-get-article-as-buffer): Remove.
15872
15873 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
15874
15875         * message.el (message-expand-name): Use EUDC if the user uses that.
15876
15877 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15878
15879         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
15880         character for the encoding to avoid consing a string.
15881
15882         * rfc2047.el (rfc2047-decode-string): Don't cons a string
15883         unnecessarily.
15884
15885         * mm-util.el (mm-replace-chars-in-string): Remove.
15886
15887         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
15888         of mm-replace-chars-in-string.
15889
15890 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
15891
15892         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
15893
15894         * mm-util.el (mm-subst-char-in-string): Support inplace.
15895
15896         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
15897         a new string in every iteration.  Use shy groups.
15898
15899 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
15900
15901         * gnus-srvr.el (gnus-browse-unsubscribe-group):
15902         * gnus-soup.el (gnus-soup-group-brew):
15903         * gnus-msg.el (gnus-put-message):
15904         * gnus-move.el (gnus-group-move-group-to-server):
15905         * gnus-kill.el (gnus-batch-score):
15906         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
15907         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
15908         (gnus-group-update-group, gnus-group-read-group)
15909         (gnus-group-make-group, gnus-group-make-help-group)
15910         (gnus-group-make-archive-group, gnus-group-make-directory-group)
15911         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
15912         (gnus-group-sort-by-unread, gnus-group-catchup)
15913         (gnus-group-unsubscribe-group, gnus-group-kill-group)
15914         (gnus-group-yank-group, gnus-group-set-info)
15915         (gnus-group-list-groups):
15916         * gnus.el (gnus-generate-new-group-name):
15917         * gnus-delay.el (gnus-delay-send-queue):
15918         * nnvirtual.el (nnvirtual-catchup-group):
15919         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
15920         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
15921         (gnus-group-prepare-topics, gnus-topic-check-topology):
15922         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
15923         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
15924         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
15925         (gnus-group-make-articles-read):
15926         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
15927         (gnus-group-change-level, gnus-kill-newsgroup)
15928         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
15929         (gnus-get-unread-articles, gnus-make-articles-unread)
15930         (gnus-make-ascending-articles-unread): Use accessor
15931         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
15932         to get group information for improved readability.
15933
15934
15935 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15936
15937         * gnus-art.el (article-decode-mime-words, article-babel)
15938         (gnus-article-highlight-signature, gnus-article-add-buttons)
15939         (gnus-signature-toggle): Use gnus-with-article-buffer.
15940
15941         * gnus-art.el (gnus-article-highlight-headers)
15942         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
15943
15944         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
15945         (gnus-article-set-globals, gnus-request-article-this-buffer)
15946         (gnus-button-message-id, gnus-article-maybe-hide-headers)
15947         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
15948         (gnus-mime-display-alternative): Use with-current-buffer.
15949
15950 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15951
15952         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
15953         also under 80 char limit, and call gnus-error if needed.
15954         (spam-fetch-article-header): Fix - it was a
15955         buffer-local variable (gnus-newsgroup-data).
15956         (spam-find-spam): Use spam-generate-fake-headers, forget about
15957         spam-insert-fake-headers.
15958         (spam-insert-fake-headers): Remove.
15959
15960 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15961
15962         * deuglify.el (gnus-article-outlook-unwrap-lines)
15963         (gnus-outlook-rearrange-article)
15964         (gnus-outlook-repair-attribution-outlook)
15965         (gnus-outlook-repair-attribution-block)
15966         (gnus-outlook-repair-attribution-other): Remove redundant
15967         save-excursion.
15968
15969 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15970
15971         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
15972         (spam-fetch-field-subject-fast)
15973         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
15974         (spam-fetch-article-header): Add functions to deal with Gnus
15975         internals for fast retrieval of article header data.
15976         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
15977
15978 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15979
15980         * pop3.el (pop3-md5): Remove.
15981         (pop3-apop): Replace pop3-md5 with md5.
15982
15983         * mm-bodies.el: base64 is always built-in.
15984
15985         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use
15986         with-current-buffer.
15987
15988 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15989
15990         * canlock.el (canlock-insert-header): Remove excessive grouping in
15991         regexp.
15992
15993         * gnus-sum.el (gnus-summary-read-document): Ditto.
15994
15995         * gnus-uu.el (gnus-uu-part-number): Ditto.
15996
15997         * html2text.el (html2text-remove-tags): Ditto.
15998         (html2text-format-tags): Ditto.
15999         (html2text-format-single-elements): Ditto.
16000
16001         * mml.el (mml-parse-1): Ditto.
16002
16003 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
16004
16005         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
16006
16007         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
16008
16009         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
16010
16011         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
16012
16013 2003-11-15  Simon Josefsson  <jas@extundo.com>
16014
16015         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
16016         (pgg-gpg-lookup-key): Use regexp match instead of
16017         split-string (split-string is different between emacs 21.2 and
16018         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
16019
16020 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
16021
16022         * gnus-art.el (gnus-mime-view-all-parts)
16023         (gnus-article-part-wrapper, gnus-article-view-part): Use
16024         with-current-buffer.
16025
16026 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
16027
16028         * spam.el (spam-disable-spam-split-during-ham-respool)
16029         (spam-spamoracle-database, spam-cache-lookups)
16030         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
16031         (spam-group-ham-mark-p, spam-group-spam-mark-p)
16032         (spam-group-ham-marks, spam-group-spam-marks)
16033         (spam-group-spam-contents-p, spam-group-ham-contents-p)
16034         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
16035         also add spam-use-blackholes to the statistical checks.
16036         (spam-fetch-field-fast): Add interface to fetching fields, may
16037         become a macro.
16038         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
16039         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
16040         (spam-insert-fake-headers): Fake an article when needed.
16041         (spam-find-spam): Fake article when possible.
16042         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
16043         (spam-check-bogofilter-headers): Use message-fetch-field instead
16044         of nnmail-fetch-field.
16045
16046 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
16047
16048         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
16049
16050 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
16051
16052         * spam.el (spam-split): Do not require spam-use-CHECK to be
16053         enabled if that check is passed to spam-split explicitly; also
16054         fix so 'spam doesn't get converted to spam-split-group when
16055         spam-split-symbolic-return is t.
16056         (spam-find-spam): Find registrations of the article and use those
16057         instead of re-running spam-split to find the spam/ham
16058         classification of the article.
16059         (spam-log-processing-to-registry, spam-log-registered-p)
16060         (spam-log-unregistration-needed-p, spam-log-undo-registration):
16061         Use gnus-error instead of gnus-message.
16062         (spam-log-registration-type): Add function to determine the
16063         classification of a message based on registry entries; will
16064         return nil if both 'spam and 'ham are found.
16065         (spam-check-BBDB): Expand all the BBDB macros here so we can have
16066         a reasonably fast local cache without the loading errors.
16067         (spam-cache-lookups): Set to t by default.
16068         (spam-find-spam): Don't try to guess spam-cache-lookups.
16069         (spam-enter-whitelist, spam-enter-blacklist): Clear the
16070         spam-caches entry.
16071         (spam-filelist-build-cache, spam-filelist-check-cache): Fix
16072         caching of whitelist/blacklist entries.
16073         (spam-check-whitelist, spam-check-blacklist): Invoke
16074         spam-from-listed-p with a type, not a cache variable.
16075         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
16076
16077 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
16078
16079         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
16080
16081         * nnmail.el (nnmail-split-fancy): do.
16082
16083         * mml.el (mml-parse): do.
16084
16085         * gnus-score.el (gnus-enter-score-words-into-hashtb)
16086         (gnus-score-adaptive): do.
16087
16088 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16089
16090         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
16091         (gnus-mime-button-map): Don't set keymap parent.
16092         (gnus-button-ctan-directory-regexp): Use shy grouping.
16093         (gnus-prev-page-map): Don't set keymap parent.
16094         (gnus-prev-page-map): Remove duplicated one.
16095         (gnus-next-page-map): Don't set keymap parent.
16096         (gnus-mime-security-button-map): Ditto.
16097
16098         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
16099         version number.
16100
16101         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
16102
16103 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16104
16105         * canlock.el (canlock-sha1-function): Remove.
16106         (canlock-sha1-function-for-verify): Remove.
16107         (canlock-openssl-program): Remove.
16108         (canlock-openssl-args): Remove.
16109         (canlock-ignore-errors): Remove.
16110         (canlock-sha1-with-openssl): Remove.
16111         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
16112         (canlock-verify): Don't use canlock-ignore-errors.
16113
16114         * sha1-el.el (sha1-string-external): Make it can return a string
16115         in binary form.
16116         (sha1-region-external): Ditto.
16117         (sha1-string-internal): Ditto.
16118         (sha1-region-internal): Ditto.
16119         (sha1-region): Ditto.
16120         (sha1-string): Ditto.
16121         (sha1): Ditto.
16122
16123 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16124
16125         * spam.el (spam-report-articles-gmane): New command.
16126
16127 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16128
16129         * gnus.el: Don't make unnecessary *Group* buffer when loading.
16130
16131         * run-at-time.el (run-at-time-saved): Remove.
16132         (run-at-time): Doc fix.
16133
16134 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
16135
16136         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
16137         (gnus-summary-limit-map): Add it.
16138         (gnus-summary-make-menu-bar): do.
16139
16140 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
16141
16142         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
16143         Make attempt at some caching support (done for BBDB only now).
16144         (spam-find-spam): Set spam-cache-lookups if there are more than 2
16145         addresses to be checked.
16146         (spam-clear-cache-BBDB): Add function, to be invoked by
16147         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
16148         (spam-check-BBDB): Check and use the caches, if
16149         spam-cache-lookups is on, remove superfluous (provide).
16150
16151 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
16152
16153         * gnus-art.el (gnus-treat-ansi-sequences): Changed default.
16154
16155 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
16156
16157         * run-at-time.el (run-at-time-saved): Move to after the definition
16158         of `run-at-time'.
16159
16160         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
16161
16162 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16163
16164         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
16165         mm-w3m-local-map-property.
16166
16167         * mm-view.el (mm-w3m-mode-map): Remove.
16168         (mm-w3m-local-map-property): Remove.
16169         (mm-inline-text-html-render-with-w3m): Don't use
16170         mm-w3m-local-map-property.
16171
16172 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16173
16174         * run-at-time.el: New file.
16175
16176         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
16177         under Emacs.
16178
16179         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
16180         of gnus-set-text-properties.
16181
16182         * gnus-uu.el (gnus-uu-save-article): Ditto.
16183
16184         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
16185
16186         * gnus-cite.el (gnus-cite-parse): Ditto.
16187
16188         * gnus-art.el (gnus-button-push): Use set-text-properties instead
16189         of gnus-.
16190
16191         * gnus-xmas.el (run-at-time): Require run-at-time.
16192
16193         * gnus.el: Changed calls to nnheader-run-at-time and
16194         password-run-at-time throughout to use run-at-time directly.
16195
16196         * password.el: Removed definition of run-at-time.
16197
16198         * nnheaderxm.el: Remove definition of run-at-time.
16199
16200 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
16201
16202         * mml.el (mml-minibuffer-read-disposition): Show attachment type
16203         in prompt.
16204
16205 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16206
16207         * messagexmas.el (message-xmas-redefine): Alias
16208         `message-make-caesar-translation-table' to
16209         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
16210         version.
16211
16212         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
16213         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
16214         `gnus-xmas-set-text-properties'.
16215         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
16216         `gnus-xmas-completing-read'.
16217         (gnus-xmas-completing-read): Removed.
16218         (gnus-xmas-open-network-stream): Removed.
16219
16220         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
16221         XEmacs version.
16222
16223         * dns.el (dns-make-network-process): Use `open-network-stream'
16224         instead of `gnus-xmas-open-network-stream'.
16225
16226         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
16227
16228         * .cvsignore: Add auto-autoloads.el, custom-load.el.
16229
16230 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16231
16232         * gnus-art.el (gnus-mime-display-alternative)
16233         (gnus-insert-mime-button, gnus-insert-mime-security-button)
16234         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
16235         Don't use gnus-local-map-property.
16236
16237         * gnus-util.el (gnus-local-map-property): Remove.
16238
16239         * mm-view.el (mm-view-pkcs7-decrypt): Replace
16240         gnus-completing-read-maybe-default with completing-read.
16241
16242         * gnus-util.el (gnus-completing-read): do.
16243         (gnus-completing-read-maybe-default): Remove.
16244
16245 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16246
16247         * password.el: Only autoload `run-at-time' if not XEmacs.
16248         Only autoload the itimer functions if XEmacs.
16249
16250 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16251
16252         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
16253         XEmacsen.
16254
16255         * dgnushack.el: Autoload executable-find for XEmacs.
16256
16257 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16258
16259         * gnus-art.el (gnus-read-string): Remove.
16260         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
16261         read-string.
16262
16263 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
16264
16265         * netrc.el: Autoload password-read.
16266         (netrc): Add configuration group.
16267         (netrc-encoding-method, netrc-openssl-path): Add
16268         variables for encoding and decoding of files with symmetric
16269         ciphers.
16270         (netrc-encode): Add assistant function to encode a file with
16271         netrc-encoding-method.
16272         (netrc-parse): Add interactive parameter, added optional
16273         decoding if netrc-encoding-method is non-nil but otherwise
16274         behavior is standard.
16275         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
16276         Do s/encode/encrypt/ everywhere.
16277
16278         * spam.el: Remove executable-find autoload.
16279
16280 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16281
16282         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
16283
16284         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
16285
16286 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
16287
16288         * gnus-art.el (gnus-treat-ansi-sequences)
16289         (article-treat-ansi-sequences): New variable and function.
16290         Suggested by Dan Jacobson <jidanni@jidanni.org>.
16291
16292         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
16293         Use it.
16294
16295 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16296
16297         * mm-util.el (mm-quote-arg): Remove.
16298
16299         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
16300         shell-quote-argument.
16301
16302         * gnus-uu.el (gnus-uu-command): do.
16303
16304         * gnus-sum.el (gnus-summary-insert-pseudos): do.
16305
16306         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
16307         with make-char.
16308
16309         * mm-util.el (mm-make-char): Remove.
16310
16311         * mml.el (mml-mode): Replace gnus-add-minor-mode with
16312         add-minor-mode.
16313
16314         * gnus-undo.el (gnus-undo-mode): do.
16315
16316         * gnus-topic.el (gnus-topic-mode): do.
16317
16318         * gnus-sum.el (gnus-dead-summary-mode): do.
16319
16320         * gnus-start.el (gnus-slave-mode): do.
16321
16322         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
16323
16324         * gnus-ml.el (gnus-mailing-list-mode): do.
16325
16326         * gnus-gl.el (gnus-grouplens-mode): do.
16327
16328         * gnus-draft.el (gnus-draft-mode): do.
16329
16330         * gnus-dired.el (gnus-dired-mode): do.
16331
16332         * gnus-ems.el (gnus-add-minor-mode): Remove.
16333
16334         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16335         Replace gnus-char-width with char-width.
16336
16337         * gnus-ems.el (gnus-char-width): Remove.
16338
16339         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16340         Replace gnus-char-width with char-width.
16341
16342         * gnus-ems.el (gnus-char-width): Remove.
16343
16344         * spam-stat.el (with-syntax-table): Remove with-syntax-table
16345         definition.
16346         Remove Emacs 20 hash table compatibility code.
16347
16348         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
16349         20 compatibility code.
16350
16351         * spam.el (spam-point-at-eol): Replace with point-at-eol.
16352
16353         * smime.el (smime-point-at-eol): Replace with point-at-eol.
16354
16355         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol): Replace
16356         with point-at-{eol,bol}.
16357
16358         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
16359
16360         * imap.el (imap-point-at-eol): Replace with point-at-eol.
16361
16362         * flow-fill.el (fill-flowed-point-at-bol)
16363         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
16364
16365         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
16366         Replace with point-at-{eol,bol} throughout all files.
16367
16368 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16369
16370         * ntlm.el (ntlm-string-as-unibyte): New macro.
16371         (ntlm-build-auth-response): Use it.
16372
16373         Remove Emacs 20 stuff:
16374         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
16375         (butlast, mapc, remove): Remove the compiler macros.
16376         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
16377         of delq and copy-sequence.
16378         * gnus-art.el (popup-menu): Remove the compiler macro.
16379         * nnmail.el (nnmail-split-fancy): Don't support customizing with
16380         Emacs 20.
16381
16382 2004-01-05  Simon Josefsson  <jas@extundo.com>
16383
16384         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
16385         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
16386         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
16387         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
16388         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
16389         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
16390         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
16391         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
16392         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
16393         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
16394         ntlm-string-permute, string-lshift into ntlm-string-lshift,
16395         string-xor into ntlm-string-xor.  Suggested by
16396         Jesper Harder <harder@myrealbox.com>.
16397
16398         * ntlm.el: Don't include poem.
16399
16400         * md4.el (print-int32, print-string-hexa): Remove.  Suggested by
16401         Jesper Harder <harder@myrealbox.com>.
16402
16403         * sasl-ntlm.el, ntlm.el, md4.el: New files.
16404
16405         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
16406         probably breaks emacs with DL patch, but do we care? Is anyone
16407         still using the DL stuff?)
16408
16409         * sieve-manage.el: Use the password package.
16410         (sieve-manage-read-passwd): Remove.
16411         (sieve-manage-interactive-login): Use password.  Re-add
16412         condition-case around loop.
16413
16414         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
16415         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache): Use
16416         the password package.
16417
16418 2003-02-19  Simon Josefsson  <jas@extundo.com>
16419
16420         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
16421         token.
16422
16423 2002-08-07  Simon Josefsson  <jas@extundo.com>
16424
16425         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
16426         (sieve-manage-authenticators):
16427         (sieve-manage-authenticator-alist): Add some SASL mechs.
16428         (sieve-sasl-auth): New function.
16429         (sieve-manage-cram-md5-auth):
16430         (sieve-manage-plain-auth): Rewrite using SASL library.
16431         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
16432         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
16433         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
16434         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
16435
16436 2004-01-05  Simon Josefsson  <jas@extundo.com>
16437
16438         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
16439         New files.
16440
16441 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16442
16443         * gnus-group.el (gnus-no-groups-message): Update.
16444
16445         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
16446
16447 2003-11-09  Simon Josefsson  <jas@extundo.com>
16448
16449         * imap.el: Support for ID IMAP extension (RFC 2971).
16450         (imap-local-variables): Add imap-id.
16451         (imap-id): New variable.
16452         (imap-id): New function.
16453         (imap-parse-response): Parse untagged ID response.
16454         * nnimap.el (nnimap-id): New variable.
16455         (nnimap-open-connection): Use it.
16456
16457 2003-12-28  Simon Josefsson  <jas@extundo.com>
16458
16459         * gnus-score.el (gnus-score-edit-all-score): New.
16460         * gnus-group.el (gnus-group-score-map): Bind it to W e.
16461
16462 2004-01-04  Simon Josefsson  <jas@extundo.com>
16463
16464         * password.el: Add.
16465
16466 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
16467
16468         * dns.el (dns-query-types): Fix typo.
16469         (dns-query-types): New function.
16470         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
16471         PTR and SOA replies, see RFC 1035.
16472
16473 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16474
16475         * gnus.el (gnus-logo-color-style): Changed colors to `no'.
16476
16477         * Moved to Changelog.2.
16478
16479 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16480
16481         * gnus.el (gnus-version-number): Bump version.
16482
16483 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16484
16485         * gnus.el: No Gnus v0.1 is released.
16486
16487 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16488
16489         * gnus.el: No Gnus v0.0 is released.
16490
16491 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16492
16493         * gnus.el (gnus-version-number): Bump.
16494         (gnus-version): No.
16495
16496 See ChangeLog.2 for earlier changes.
16497
16498     Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
16499       Free Software Foundation, Inc.
16500
16501   This file is part of GNU Emacs.
16502
16503   GNU Emacs is free software: you can redistribute it and/or modify
16504   it under the terms of the GNU General Public License as published by
16505   the Free Software Foundation, either version 3 of the License, or
16506   (at your option) any later version.
16507
16508   GNU Emacs is distributed in the hope that it will be useful,
16509   but WITHOUT ANY WARRANTY; without even the implied warranty of
16510   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16511   GNU General Public License for more details.
16512
16513   You should have received a copy of the GNU General Public License
16514   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
16515
16516 ;; Local Variables:
16517 ;; coding: utf-8
16518 ;; fill-column: 79
16519 ;; add-log-time-zone-rule: t
16520 ;; End: