0299df05e57d6c6c61bee61b5ea786fcbb4026cc
[gnus] / lisp / ChangeLog
1 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * gnus.el (gnus-method-to-server): Don't push things to the cache
4         unless it's unique.
5         (gnus-server-to-method): Ditto.
6
7 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
8
9         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
10
11 2010-09-22  Julien Danjou  <julien@danjou.info>
12
13         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
14         get the start of data.
15         (gnus-html-encode-url): Add this function to encode special chars in
16         URL.
17         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
18         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
19
20         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
21         default.
22         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
23
24         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
25         images alt-text.
26         (gnus-html-put-image): Put alt-text as help-echo.
27
28 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
29
30         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes)
31         * mm-util.el (mm-decompress-buffer)
32         * nnir.el (nnir-run-find-grep)
33         * pop3.el (pop3-list): Use 3rd arg of split-string.
34
35         * time-date.el (format-seconds): Comment fix.
36
37         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
38         and byte-optimize-form-code-walker.
39         (dgnushack-make-auto-load): Don't advise make-autoload.
40
41         * lpath.el: Remove Emacs 21 stuff.
42
43 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
44
45         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
46         outside the active range.  Suggested by Dan Christensen.
47
48         * gnus-start.el (gnus-get-unread-articles): Get the extended method
49         slightly later to avoid double-getting it.
50
51         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
52         previous patch.
53
54         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
55
56 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
57
58         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
59
60 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
61
62         * gnus-int.el (gnus-open-server): Give a better error message in the
63         "go offline" case.
64
65         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
66         marks for nnimap, which is seldom the right thing to do.
67
68         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
69         (gnus-same-method-different-name): New function.
70
71         * nnimap.el (parse-time): Require.
72
73         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
74         method in the presence of many similar methods.
75
76         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
77
78         * nnimap.el (nnimap-find-expired-articles): Don't refer to
79         nnml-inhibit-expiry.
80
81         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
82         find out whether methods are equal.
83
84         * nnimap.el (nnimap-find-expired-articles): New function.
85         (nnimap-process-expiry-targets): New function.
86         (nnimap-request-move-article): Request the article before looking at
87         what the Message-ID is.  Fix found by Andrew Cohen.
88         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
89
90         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
91         for oldness in addition to being a predicate.
92
93         * nnimap.el (nnimap-request-group): When we have zero articles, return
94         the right data to Gnus.
95         (nnimap-request-expire-articles): Only delete articles immediately if
96         the target is 'delete.
97
98         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
99         method, this would bug out.
100
101         * gnus-group.el (gnus-group-expunge-group): Renamed from
102         gnus-group-nnimap-expunge, and implemented as a normal interface
103         function.
104
105         * gnus-int.el (gnus-request-expunge-group): New function.
106
107         * nnimap.el (nnimap-request-create-group): Implement.
108         (nnimap-request-expunge-group): New function.
109
110 2010-09-21  Julien Danjou  <julien@danjou.info>
111
112         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
113         (gnus-html-cache-expired): Add new function.
114         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
115         wethever we should display image for fetch it.
116         Compute alt-text earlier to pass it to the fetching function too.
117         (gnus-html-schedule-image-fetching): Change function argument to only
118         get one image at a time, not a list.
119         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
120         cache.
121         (gnus-html-get-image-data): New function to retrieve image data from
122         cache.
123         (gnus-html-put-image): Change buffer argument to use image data rather
124         than file, and place image above region rather than inserting a new
125         one. Do not take alt-text as argument, since it's useless now: we place
126         the image above alt-text.
127         (gnus-html-prune-cache): Remove.
128         (gnus-html-show-images): Start to fetch image when we find one, do not
129         push into a temporary list.
130         (gnus-html-prefetch-images): Only fetch image if they have expired.
131         (gnus-html-browse-image): Fix, use 'gnus-image-url.
132         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
133
134 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
135
136         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
137
138 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
139
140         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
141         spec inser "*" if the group isn't active instead of 0.
142
143         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
144         opening the server.
145         (nnimap-request-delete-group): Implement group deletion.
146         (nnimap-transform-headers): Return the size of the entire message in
147         the Bytes header, not just the size of the first part.
148         (nnimap-request-move-article): When moving an article from nnimap,
149         request the article first so the accepting form has an article to
150         accept.  Reported by Dan Christensen.
151         (nnimap-command): Make sure that the error message doesn't error out.
152
153 2010-09-20  David Edmondson  <dme@dme.org>  (tiny change)
154
155         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
156         we haven't requested anything.
157
158 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
159
160         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
161         "".  Fix found by Andrew Cohen.
162
163         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
164         instead of -encode-string.
165
166 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
167
168         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
169
170         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
171         by mm-subst-char-in-string.
172
173 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
174
175         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
176         waiting for the connection string.
177
178         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
179         arriving.
180
181         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
182         bogus characters.  This allows selecting certain Gmail groups.
183
184         * nnimap.el (nnimap-find-wanted-parts-1): New function.
185         (nnimap-fetch-partial-articles): New variable.
186         (nnimap-open-connection): When looking for credentials, also use the
187         nnimap-server-port.
188         (nnimap-request-article): Return the group/article number, so that Gnus
189         `^' works as expected.
190         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants
191         them.
192
193         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
194         comments.
195         (gnus-methods-sloppily-equal): New function.
196         (gnus): When using the development version of Gnus, load the gnus-load
197         file.
198
199         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
200         `gnus-open-server' on each method before trying to scan them etc.  This
201         ensures that all the backend parameters are set correctly.
202
203         * nnimap.el (nnimap-authenticator): New variable.
204         (nnimap-open-connection): Allow anonymous login.
205         (nnimap-transform-headers): The chars header is called Chars not
206         Bytes.
207         (nnimap-wait-for-response): Don't infloop if the IMAP connection
208         drops.
209
210         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
211         patch, found by Knut Anders Hatlen.
212
213 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
214
215         * gnus-agent.el (gnus-agent-batch-confirmation)
216         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
217         to gnus-message.
218         * gnus-art.el (gnus-article-describe-briefly): Likewise.
219         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
220         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
221         * gnus-int.el (gnus-open-server): Likewise.
222         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
223         (gnus-score-check-syntax): Likewise.
224         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
225         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
226         Likewise.
227         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
228
229 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
230
231         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
232         calling conventions so that prefetch doesn't bug out.
233
234 2010-09-19  Julien Danjou  <julien@danjou.info>
235
236         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
237         rather than `subst-char-in-region' in order to be able to replace ASCII
238         char by UTF-8 ones.
239
240         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
241         than curl.
242         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
243         the right URL and ALT text on images.
244         (gnus-html-wash-tags): Fix tag case.
245         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
246         (gnus-article-html): Add -o display_ins_del=2 option.
247         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
248
249 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
250
251         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
252         the extra mail headers, which sometimes seem to happen for unknown
253         reasons.
254
255         * mail-parse.el (mail-header-encode-parameter): Define as
256         rfc2045-encode-string instead of as rfc2231-encode-string, since some
257         (or most, perhaps?) mail readers don't understand the latter, but do
258         understand the former.
259
260         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
261         to nil, so that no methods are automatically agentized.  I think this
262         is probably what most users want.
263
264         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
265         from url-retrieve, for instance about invalid URLs.
266
267         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
268         groups that have no articles.
269         (nnimap-request-article): Check that we really got an article when we
270         requested one.
271
272         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
273         doesn't exist.
274
275         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
276         nntp buffer so the agent can save it.
277         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
278         that CRLF doesn't get translated to \n.
279         (nnimap-open-connection): Don't make 'shell commands only send \n.
280
281 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
282
283         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
284         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
285         Update var name.
286         (nnml-generate-nov-file): Use dolist.
287         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
288         Use with-current-buffer.
289
290 2010-09-18  Julien Danjou  <julien@danjou.info>
291
292         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
293         parallel.
294
295 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
296
297         * nnimap.el (nnimap-update-info): When doing partial marks update, get
298         the range update right.
299         (nnimap-request-group): Don't make `M-g' bug out on group with no
300         marks.
301         (nnoo): Required, so that other packages can require nnimap.
302         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
303         command we're looking for.  This helps when the server sends more
304         responses after we've gotten everything we expected.
305         (nnimap): Add a `newlinep' field to keep track of end-of-line
306         conventions.
307         Don't send CRLF to things that don't want it.
308         (nnimap-request-accept-article): Ditto.
309
310 2010-09-18  Julien Danjou  <julien@danjou.info>
311
312         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
313         than curl to retrieve images.
314
315 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
316
317         * nnimap.el (nnimap-update-info): Extend the info so that we can set
318         the marks.
319         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
320         (nnimap-wait-for-connection): New function.
321         (nnimap-open-connection): If we have PREAUTH, don't query for login
322         credentials.
323         (nnimap-update-info): Fix off-by-one error when concatenating ranges
324         when doing a partial update.
325
326 2010-09-18  Julien Danjou  <julien@danjou.info>
327
328         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
329         tags.
330
331 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
332
333         * nnimap.el (nnimap-credentials): New function.
334         (nnimap-open-connection): Use the new function to look for credentials
335         also on the numeric equivalents of "imap" and "imaps".
336
337         * gnus-start.el (gnus-activate-group): Send the info to
338         gnus-request-group.
339
340         * nnimap.el (nnimap-request-group): Have the "check" version of the
341         function parse flags and update the info, so that a `M-g' get a total
342         resync of all flags from the group.
343
344         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
345         to allow backends to alter the info on group selection.  Also alter all
346         the backend -request-group functions to take the parameter.
347
348         * nnimap.el (nnimap-store-info): New function.
349         (nnimap-update-info): Store the info for later usage.
350         (nnimap-request-group): Use the stored info for the dont-check case, so
351         that we don't retrieve all marks when we enter a group.
352
353         * nnimap.el: Use deffoo instead of defun for interface functions.
354
355         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
356         update the group info.  This makes the nndraft groups, for instance, go
357         back to their old behaviour.
358
359         * gnus-sum.el (gnus-select-newsgroup): Indent.
360
361         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
362         in.
363         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
364         nothing.
365
366         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
367         from methods that are denied.
368
369         * gnus-int.el (gnus-method-denied-p): New function.
370
371         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
372         store the password instead of netrc.
373         (nnimap-open-connection): Don't error out when we can't make a
374         connections.
375
376         * auth-source.el (auth-source-create): In the password prompt, say what
377         we're querying for.  Also prompt for user name if that hasn't been
378         given.
379
380         * nnimap.el (nnimap-with-process-buffer): Removed.
381
382 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
383
384         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
385         method when we're reading from the agent.
386
387         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
388
389         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
390         that's probably most useful for users.
391
392         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
393         "failed" all the time.
394
395         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
396         ...)) with (with-current-buffer ... ).
397
398         * nntp.el (nntp-open-server): Return whether the open was successful or
399         not.
400
401         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
402         select an unread unseen article first.
403
404         * nnimap.el (nnimap-open-connection): If the user doesn't have a
405         /etc/services, supply some sensible port defaults.
406
407         * dgnushack.el: Define netrc-credentials.
408
409 2010-09-17  Julien Danjou  <julien@danjou.info>
410
411         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
412
413 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
414
415         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
416         doesn't have any parameters.
417
418 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
419
420         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
421         only upcased checks.
422
423         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
424
425         * nnimap.el (nnimap-open-shell-stream): New function.
426         (nnimap-open-connection): Use it.
427         (nnimap-transform-headers): Get the number of lines in each message.
428         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
429         number of lines.
430         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
431         problem.
432
433         * utf7.el (utf7-encode): Autoload.
434
435         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
436         to allow the mail splitting to not return a default group.  This is
437         useful for nnimap, which will leave unmatched mail in the inbox.
438
439         * nnimap.el: Rewritten.
440
441         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
442         nnimap usage.
443
444         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
445         if the move is internal, so that nnimap can do fast internal moves.
446
447         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
448         data.
449         (gnus-read-active-for-groups): Support finishing the early retrieval of
450         data.
451
452         * gnus-range.el (gnus-range-nconcat): New function.
453
454         * gnus-int.el (gnus-finish-retrieve-group-infos)
455         (gnus-retrieve-group-data-early): New functions.
456
457 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
458
459         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
460         (nnrss-retrieve-groups):
461         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
462         (pop3-quit): Use with-current-buffer.
463
464 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
465
466         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
467         instead of nnheader-accept-process-output.
468
469         * dgnushack.el (dgnushack-compile): Add comment.
470
471         * lpath.el: No need to fbind propertize for XEmacs 21.4.
472
473         * gnus-html.el (gnus-html-schedule-image-fetching)
474         (gnus-html-prefetch-images): Replace process-kill-without-query by
475         gnus-set-process-query-on-exit-flag.
476
477 2010-09-16  Romain Francoise  <romain@orebokech.com>
478
479         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
480
481 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
482
483         * gnus-registry.el (gnus-registry-install-shortcuts): The second
484         parameter to unintern is mandatory-ish in Emacs 24.
485
486         * gnus-html.el (gnus-html-schedule-image-fetching)
487         (gnus-html-prefetch-images): Check for curl before using it.
488
489         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
490         depend on curl, which isn't essential.
491
492         * imap.el: Revert back to version
493         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
494         seem problematic.
495
496 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
497
498         * gnus-registry.el (gnus-registry-install-shortcuts):
499         Explicitly pass `obarray' to `unintern' to avoid a warning.
500
501 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
502
503         * gnus-start.el (gnus-read-active-for-groups): Reverted the previous
504         change.
505
506         * nnrss.el (nnrss-request-list): Removed this function and related
507         functions, including the moreover stuff.
508
509 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
510
511         * nnrss.el (nnrss-retrieve-groups): New function.
512
513 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
514
515         * .dir-locals.el: Add no-byte-compile cookie.
516
517 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
518
519         * time-date.el (format-seconds): Comment fix.
520
521         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
522         for back end that doesn't support request-scan.
523
524 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
525
526         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
527         then do request scans from the backends.
528
529         * netrc.el (netrc-credentials): New conveniency function.
530
531         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
532         avoid running a hook per line, since this takes a lot of time,
533         profiling shows.
534         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
535         directly if gnus-visual-p is true.
536
537 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
538
539         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
540         groups; replace mapcar with dolist which is a bit faster; pass groups
541         info to gnus-read-active-file-1.
542         (gnus-read-active-file-1): Scan only specified groups if the new
543         optional arg `infos' is given.
544
545 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
546
547         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
548
549         * pop3.el (pop3-movemail): Removed.
550         (pop3-streaming-movemail): Renamed to pop3-movemail.
551
552         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
553         don't restrict end-tag searches to the end of the line.
554
555 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
556
557         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
558         articles of every unchecked group to t, which means unknown since the
559         server has never been opened.
560
561 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
562
563         * gnus-html.el (gnus-html-show-alt-text): New command.
564         (gnus-html-browse-image): Ditto.
565         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
566         to browse the image directly.
567         (gnus-html-wash-tags): Search for images first, so that <a><img> works
568         better.
569
570         * gnus-async.el (gnus-async-article-callback): Call
571         `gnus-html-prefetch-images' unconditionally.
572
573         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
574         before feeding URLs to curl.
575
576 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
577
578         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
579         internal images as deletable by `W D D'.
580
581         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
582         (gnus-async-article-callback): Fix typo.
583
584 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
585
586         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
587         current line to work around bugs in the output from w3m.
588
589         * gnus-async.el (gnus-async-article-callback): Always prefetch images
590         for groups that want that.
591
592         * nntp.el (nntp-wait-for-string): Supply a timeout for
593         accept-process-output to ensure progress.
594
595         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
596         level to get unread articles from, then use that for foreign groups,
597         too.
598
599         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
600         confuses the rest of the function.
601
602         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
603         for the methods that support -retrieve-groups, too.
604
605         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
606
607 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
608
609         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
610         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
611
612         * pop3.el: Require cl when compiling.
613         (pop3-number-of-responses): Search for "+OK", not "+OK ".
614
615 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
616
617         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
618         that aren't going to be activated.
619         (gnus-get-unread-articles): Fix up the last commit.
620
621         * gnus-html.el (gnus-article-html): Allow calling without specifying
622         the handle.  In that case, dissect the buffer first.
623
624         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
625
626         * nnimap.el (nnimap-open-connection): Revert the change that would look
627         into authinfo for imaps instead of imap.
628
629         * gnus-start.el (gnus-activate-group): Take an optional parameter to
630         say that you don't want to call gnus-request-group with don-check, but
631         do check the reponse.  This is for virtual groups only.
632         (gnus-get-unread-articles): Count the archive groups as secondary, so
633         that they're activated the same way as before.
634
635         * imap.el (imap-message-map): Removed optional buffer parameter, since
636         no callers use it.
637         (imap-message-get): Ditto.
638         (imap-message-put): Ditto.
639         (imap-mailbox-map): Ditto.
640         (imap-mailbox-put): Ditto.
641         (imap-mailbox-get): Ditto.
642         (imap-mailbox-get): Revert last change for this function.
643
644         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
645         case-insensitively.
646         (nnimap-debug): Removed.
647
648         * imap.el (imap-fetch-safe): Removed function, and altered all callers
649         to use `imap-fetch' instead.  According to the comments, this should be
650         safe, since all other IMAP clients use the 1:* syntax.
651         (imap-enable-exchange-bug-workaround): Removed.
652         (imap-debug): Removed -- doesn't seem very useful.
653
654         * mail-source.el (mail-source-fetch): Don't message if we're fetching
655         mail from a file, and the file doesn't exist.
656
657         * imap.el (imap-log): New convenience function used throughout instead
658         of repeating the same code all over the place.
659
660         * pop3.el (pop3-streaming-movemail): Return t for success.
661
662         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
663         .authinfo if we're using ssl connection.
664
665         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
666         already have if we're in a main Gnus `g' run.
667
668         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
669
670 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
671
672         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
673
674         * nnmh.el (nnmh-request-list-1): Bind `file'.
675
676         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
677         alias to set-process-query-on-exit-flag or process-kill-without-query.
678         (pop3-open-server): Use it.
679
680 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
681
682         * mail-source.el (mail-source-delete-crash-box): Always move the crash
683         box to the Incoming file.  Fixes mistake in previous checkin.
684
685         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
686         request loop (for debugging purposes) removed.
687
688         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
689         culprit is more visible.
690         (nnml-save-incremental-nov, nnml-open-incremental-nov)
691         (nnml-add-incremental-nov): New functions to do "incremental" nov
692         updates, where we just append to the end of the existing nov files
693         without reading/writing them in full.
694
695         * mail-source.el (mail-source-delete-crash-box): Really only check the
696         incoming files once in a while.
697
698         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
699
700         * mail-source.el (mail-source-delete-crash-box): Only check the
701         incoming files for deletion once per day to save a lot of file
702         accesses.
703
704         * pop3.el (pop3-logon): Fix up unbound variable typo.
705
706         * mail-source.el (pop3-streaming-movemail): Autoload.
707
708         * pop3.el (pop3-streaming-movemail): Respect
709         pop3-leave-mail-on-server.
710
711         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
712         retrieval.
713
714         * pop3.el (pop3-process-filter): Removed unused function.
715         (pop3-streaming-movemail, pop3-send-streaming-command)
716         (pop3-wait-for-messages, pop3-write-to-file)
717         (pop3-number-of-responses): New functions for streaming pop3
718         retrieval.
719
720         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
721         come from no known methods.
722         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
723         list.
724
725         * pop3.el (pop3-display-message-size-flag): Removed -- everybody wants
726         message sizes.
727         (pop3-movemail): Use erase-buffer instead of looping and deleting
728         regions, which seems rather odd.
729
730         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
731         file once per `g' run.
732
733         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
734         directories.  This makes the draft queue directory work.
735
736         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
737         data from the backends, so that we only request the list of groups from
738         each method once.  This should speed things up considerably.
739
740         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
741         detect that it's not implemented.
742
743         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
744         we actually do recurse down into the tree, but don't stat all leaf
745         nodes.
746
747         * gnus-html.el (gnus-html-show-images): If there are no images to show,
748         then say so instead of bugging out.
749
750         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
751         files exist before trying to read them.
752
753         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
754         around <pre_int>.
755
756         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
757
758         * nnmh.el (nnmh-request-list-1): Optimize for speed.
759
760 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
761
762         * mm-util.el (mm-image-load-path): Just return the image directories,
763         not all directories in the path in addition to the image directories.
764         (mm-image-load-path): Maintain a cache of the image directories so that
765         the `g' command in Gnus doesn't have to stat dozens of directories each
766         time.
767
768         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
769         (gnus-html-wash-tags): Add a new `i' command to insert images.
770         (gnus-html-insert-image): New command and keystroke.
771         (gnus-html-redisplay-with-images): New command and keystroke.
772         (gnus-html-show-images): Renamed command.
773         (gnus-html-wash-tags): Remove more white space before <pre_int> image
774         spacers.
775         (gnus-html-wash-tags): Decode entities at the end, so that entities
776         inside the tags don't mess up the rest of the "parsing".
777
778         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
779         so that nnimap methods aren't agentized by default.  There's apparently
780         many problems related to agent/imap behaviour.
781
782         * gnus-art.el (gnus-article-copy-string): New command and key binding.
783
784         * gnus-html.el: Doc fix.
785
786 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
787
788         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
789         specifier-spec-list for Emacs 21.
790
791         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
792         glyph-width and glyph-height instead of display-graphic-p and
793         image-size; make avoidance of displaying small images work for XEmacs.
794
795         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
796         for XEmacs.
797
798         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
799         of symbol that holds plist data.
800         (gnus-process-plist): Remove plist of process after getting it.
801
802 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
803
804         * message.el (message-generate-hashcash): Change default to
805         'opportunistic if hashcash is installed.
806
807         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
808         (gnus-html-put-image): Only call image-size once, since it's somewhat
809         time-consuming on remote X servers.
810
811 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
812
813         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
814         type on data, not a file name.
815
816         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
817         window-pixel-edges for Emacs 21.
818
819         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
820         decoded contents.
821         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
822
823 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
824
825         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
826         group line format, since it isn't very interesting.
827
828         * gnus-agent.el (gnus-agent-short-article),
829         (gnus-agent-long-article): Increase values for these two variables,
830         since most people are likely to have more network connection and
831         storage than before.
832
833         * gnus.el (gnus-refer-article-method): Change default to 'current.
834         When referring an article, the common behaviour is to refer it from the
835         current select method, not the native select method.  The chances of
836         the native select method having the message in question is rather slim
837         these days.
838
839         * gnus-sum.el (gnus-auto-select-subject): Change default to
840         `unseen-or-unread'.  I think it's likely that most people want to
841         select an unseen article over a previously seen, but unread one.
842
843         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
844         means that in the article buffer none of the minor mode elements will
845         be shown, usually, and this is not desirable in most cases.
846
847         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
848         that commands like `d' (and the like) go to the next line in the
849         buffer, instead of the next unread article.  I think this is the
850         behaviour that is most natural for most users.
851         (gnus-single-article-buffer): Change default to nil, so that people can
852         have as many article buffers open as they have summary buffer.  I think
853         this is the most natural way for the groups to behave.
854
855         * message.el (message-generate-new-buffers): Change default to
856         `unsent', so that all new message buffers start their names with the
857         string "*unsent", and it's easier to find the buffers if you move from
858         them.
859
860 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
861
862         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
863         small.  They're probably tracking images.
864         (gnus-html-wash-tags): Remove all <pre_int> place holders.
865         (gnus-html-rescale-image): Yet another try at getting the image sizing
866         right.
867
868         * nntp.el (nntp-request-set-mark): Refuse to do marks if
869         nntp-marks-file-name is nil.
870
871 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
872
873         * gnus-html.el (gnus-html-wash-tags)
874         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
875         Better logging.
876
877 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
878
879         * nndoc.el (nndoc-type-alist): Added a new type for Google digests.
880
881         * gnus-html.el (gnus-html-wash-tags): Check the value of
882         gnus-blocked-images in the summary buffer.
883
884 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
885
886         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
887
888 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
889
890         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
891         like "a", it seems like.
892         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
893         since it needs to be picked from the correct buffer.
894
895         * nnwfm.el: Removed.
896
897         * nnlistserv.el: Removed.
898
899 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
900
901         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
902         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
903
904 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
905
906         * nnkiboze.el: Removed.
907
908         * nndb.el: Removed.
909
910         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
911         alt text.
912         (gnus-html-rescale-image): Try to get the rescaling logic right for
913         images that are just wide and not tall.
914
915         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
916         overshadow variable bindings.
917
918 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
919
920         * gnus-html.el (gnus-html-wash-tags)
921         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images): Add
922         extra logging.
923
924 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
925
926         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
927         (gnus-max-image-proportion): New variable.
928         (gnus-html-rescale-image): New function.
929         (gnus-html-put-image): Rescale images.
930
931 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
932
933         Fix up some byte-compiler warnings.
934         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
935         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
936         (gnus-article-fill-cited-article, gnus-article-hide-citation)
937         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
938         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
939         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
940         (gnus-group-update-group): Use save-excursion and with-current-buffer.
941
942 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
943
944         * gnus-html.el (gnus-article-html): Decode contents by charset.
945
946 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
947
948         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
949         (gnus-html-frame-width, gnus-blocked-images)
950         * message.el (message-prune-recipient-rules): Add custom version.
951         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
952
953         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
954         functions.
955
956         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
957         gnus-process-get.
958
959 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
960
961         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
962         instead of lsub directly.
963
964 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
965
966         * nnwarchive.el: Removed.
967
968         * gnus-soup.el: Removed.
969
970         * nnsoup.el: Removed.
971
972         * nnultimate.el: Removed.
973
974         * gnus-html.el (gnus-blocked-images): New variable.
975
976         * message.el (message-prune-recipients): New function.
977         (message-prune-recipient-rules): New variable.
978
979         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
980         guess whether a long line is natural text or not.
981
982         * gnus-html.el (gnus-html-schedule-image-fetching): Use
983         gnus-process-plist and friends for compatibility.
984
985 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
986
987         * gnus-html.el: Require packages that define macros used in this file.
988         (gnus-article-mouse-face): Declare to silence byte-compiler.
989         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
990         process-get.
991         (gnus-html-put-image): Use plist-get to avoid getf.
992         (gnus-html-prefetch-images): Use with-current-buffer.
993
994 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
995
996         * gnus-ems.el: Provide compatibility functions for
997         gnus-set-process-plist.
998
999         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
1000         header-line-format for XEmacs 21.4.
1001
1002         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
1003         * gnus.el (gnus-valid-select-methods)
1004         * message.el (message-send-mail-partially-limit)
1005         * mm-decode.el (mm-text-html-renderer)
1006         * mml.el (mml-insert-mime-headers-always)
1007         * smiley.el (smiley-regexp-alist): Bump custom version.
1008
1009 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1010
1011         * gnus-html.el: require mm-url.
1012         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
1013         with the url to `url'.
1014         (gnus-html-wash-tags): Support cid: URLs/images.
1015
1016 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1017
1018         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
1019         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
1020         bindings, as they aren't useful at all.  `w' is moved to `W w'.
1021
1022         * gnus-move.el: Removed file, since it doesn't really work.
1023
1024         * gnus-html.el (gnus-article-html): Tell w3m that the input is
1025         UTF-8.  This seems to fix problems with some German web feeds.
1026
1027         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
1028         at the top so that the proper colours are applied.
1029
1030         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
1031         don't have dots in their names.
1032
1033         * gnus-art.el (gnus-article-view-part): Doc fix.
1034
1035         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
1036         XEmacs-compatible.
1037         (gnus-html-put-image): Don't do images on non-graphic displays.
1038
1039         * nnslashdot.el: Removed this unused backend.
1040
1041         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
1042         actions.
1043         (gnus-undo-register-1): Revert last change.
1044
1045         * gnus-group.el (gnus-group-completing-read): Protect against not
1046         having completion-styles bound.
1047
1048         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
1049         make broken recipients happier.
1050
1051         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
1052
1053         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
1054         point parameter.
1055
1056         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
1057
1058         * gnus-group.el (gnus-group-completing-read): Add 'substring to
1059         completion-styles for group selection.
1060
1061 2009-02-04  Andreas Schwab  <schwab@suse.de>
1062
1063         * gnus-score.el (gnus-score-string): Fix regex for matching extra
1064         headers and regexp-quote the match if necessary.
1065
1066 2009-03-24  Miles Bader  <miles@gnu.org>
1067
1068         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
1069         the blinking smiley.
1070
1071 2009-03-24  Simon Josefsson  <simon@josefsson.org>
1072
1073         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
1074         blink smiley.
1075
1076 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1077
1078         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
1079         where the dribbel file lives exists.
1080
1081         * message.el (message-send-mail-partially-limit): Change the default to
1082         nil, since most people don't want this.
1083
1084         * mm-url.el (mm-url-decode-entities): Also decode entities like
1085         &#x3212.
1086
1087 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
1088
1089         * gnus-sum.el (gnus-summary-idna-message):
1090         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
1091         Hyperlink urls in docstrings with URL `...'.
1092
1093 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
1094
1095         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
1096         functions.
1097
1098 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1099
1100         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
1101         say what the mouseover text should be.
1102
1103         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
1104         version of the mm-w3m-safe-url-regexp variable to only download images
1105         in the groups where we want that to happen.
1106
1107         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
1108
1109         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
1110         easier debugging.
1111         (gnus-article-beginning-of-window): Add kludge to allow spacing past
1112         big pictures in the article buffer.
1113
1114         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
1115         gnus-article-html.
1116         (mm-text-html-renderer): gnus-article-html needs curl in addition to
1117         w3m.
1118
1119         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
1120
1121 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1122
1123         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
1124         which doesn't exist.
1125
1126         * message.el (message-inhibit-ecomplete): New variable to allow some
1127         function to inhibit ecomplete address storage.
1128         (message-resend): Disable ecomplete message storage when resending
1129         messages.
1130
1131         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
1132
1133 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1134
1135         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
1136         Save excursion while copying, moving, and deleting articles in order to
1137         prevent the cursor from jumping to unforeseen place.
1138
1139 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1140
1141         * lpath.el: No need to bind bookmark-current-buffer,
1142         bookmark-yank-point and bookmark-make-record-function.
1143
1144 2010-08-17  Glenn Morris  <rgm@gnu.org>
1145
1146         * gnus-sync.el: Require gnus components whose functions are used.
1147
1148         * gnus-art.el (bookmark-make-record-function):
1149         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
1150         Declare for compiler.
1151
1152         * mm-url.el (mml-compute-boundary): Autoload.
1153
1154 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1155
1156         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
1157
1158 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
1159
1160         Typo fix "hoo4a" -> "hook".
1161
1162         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
1163
1164 2010-08-14  Glenn Morris  <rgm@gnu.org>
1165
1166         * gnus-sync.el (gnus-sync): Fix defgroup version.
1167
1168 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
1169
1170         Doc fixes and keep unknown groups (ammended for nunion bug fix).
1171
1172         * gnus-sync.el: Fix docs.
1173         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
1174         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
1175
1176 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1177
1178         Optimizations for gnus-sync.el.
1179
1180         * gnus-sync.el: Add docs about gnus-sync-backend
1181         possibilities.
1182         (gnus-sync-save): Remove unnecessary message.
1183         (gnus-sync-read): Optimize and show what groups were skipped.
1184
1185 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1186
1187         Minor bug fixes for gnus-sync.el.
1188
1189         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks): Don't
1190         read the sync on get-new-news.
1191
1192         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
1193         quiet.
1194
1195         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets' (fix typo).
1196
1197 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
1198
1199         Make saving and restoring of hidden threads work with overlays.
1200         Patch applied by Ted Zlatanov.
1201
1202         * gnus-sum.el (gnus-hidden-threads-configuration)
1203         (gnus-restore-hidden-threads-configuration): Update to deal with text
1204         properties, rather than searching for a magic character.
1205
1206 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1207
1208         New gnus-sync.el library for synchronization of marks.
1209
1210         * gnus-sync.el: New library for synchronization of marks.
1211
1212         * gnus-util.el (gnus-grep-in-list): Moved from gnus-registry.el and
1213         renamed from `gnus-registry-grep-in-list'.
1214
1215         * gnus-registry.el (gnus-registry-follow-group-p): Use `gnus-grep-in-list'.
1216
1217         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
1218
1219 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1220
1221         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
1222         determining charset of text fails.
1223
1224 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1225
1226         * nnmail.el (nnmail-get-new-mail-1): Revert.
1227
1228         * nnml.el (nnml-active-number): Make sure names of newly created groups
1229         in nnml-group-alist are encoded.
1230
1231 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1232
1233         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
1234         containing non-ASCII characters in active file for nnml back end.
1235
1236 2010-07-24  David Engster  <dengste@eml.cc>
1237
1238         * mml-smime.el (mml-smime-epg-verify): Also accept the older
1239         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
1240
1241 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
1242
1243         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
1244         tag (Bug#6654).
1245
1246 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1247
1248         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
1249         the article buffer, not the summary buffer.
1250
1251 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1252
1253         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
1254         Emacs 23 as well.
1255
1256 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1257
1258         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
1259         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
1260
1261 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1262
1263         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
1264         Patch applied by Karl Fogel.
1265
1266         * gnus-sum.el (gnus-summary-bookmark-make-record): Set
1267         `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
1268
1269 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1270
1271         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
1272         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
1273         C-w still not working correctly from Article buffers; Thierry's
1274         patch to fix that will be applied after this.
1275
1276         * gnus-art.el (bookmark-make-record-function): New local variable.
1277
1278         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
1279         article buffer.
1280         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
1281
1282 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
1283
1284         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
1285         on changes in bookmark.el.
1286
1287 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1288
1289         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
1290         `no-log' instead of message not to log prompt string.
1291
1292 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
1293
1294         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
1295         the *other* type of HTML form submission.
1296
1297 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
1298
1299         * auth-source.el (auth-source-pick): If choice does not contain a
1300         questioned keyword, set the check to t.
1301
1302 2010-06-12  Romain Francoise  <romain@orebokech.com>
1303
1304         * gnus-util.el (gnus-date-get-time): Move up before first use.
1305
1306 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1307
1308         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
1309         (gnus-article-edit-part): Bind it to make last part that is substituted
1310         or deleted visible.
1311         (gnus-mime-display-single): Buttonize part of which id equals to
1312         gnus-mime-buttonized-part-id.
1313
1314 2010-06-10  Dan Christensen  <jdc@uwo.ca>
1315
1316         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
1317         (gnus-dd-mmm): Use gnus-date-get-time.
1318         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
1319         simplify logic.
1320         (gnus-summary-limit-to-age): Use gnus-date-get-time.
1321         (gnus-sort-threads): emit message if gnus-sort-threads-loop used.
1322
1323 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
1324
1325         * auth-source.el (top): Autoload `secrets-list-collections',
1326         `secrets-create-item', `secrets-delete-item'.
1327         (auth-sources): Fix tag string.
1328         (auth-get-source, auth-source-retrieve, auth-source-create)
1329         (auth-source-delete): New defuns.
1330         (auth-source-pick): Rewrite in order to avoid 2 passes.
1331         (auth-source-forget-user-or-password): New parameter USERNAME.
1332         (auth-source-user-or-password): New parameters CREATE-MISSING and
1333         DELETE-EXISTING.  Retrieve password interactively, if needed.
1334
1335 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
1336
1337         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
1338         deleting unused directories when gnus-expert-user is t.
1339
1340 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1341
1342         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
1343         for each temp file when gnus-article-browse-delete-temp is ask.
1344
1345 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1346
1347         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
1348         Lisp calls to delete-backward-char by calls to delete-char.
1349
1350 2010-05-20  Kevin Ryde  <user42@zip.com.au>
1351
1352         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
1353
1354 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
1355
1356         * password-cache.el (password-cache-remove): Fix docstring.
1357
1358 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1359
1360         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
1361         article unless decoding article to be saved.
1362
1363 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1364
1365         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
1366         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
1367         generated within the mm-with-unibyte-current-buffer macro.
1368
1369 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1370
1371         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
1372         to nil when we're in a mml-preview buffer and no group is selected.
1373
1374 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
1375
1376         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
1377         when catching the `C-g'.  Reported by "Leo".
1378
1379 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1380
1381         * message.el (message-forward-make-body-plain)
1382         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
1383         multibyte-string-p.
1384
1385         * lpath.el: Revert.
1386
1387 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1388
1389         * message.el (message-forward-make-body-mml): Assume original message
1390         is multibyte string; error on unibyte.
1391         (message-forward-make-body-plain): Ditto; don't add excessive newline
1392         in body end.
1393
1394         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
1395
1396 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
1397
1398         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
1399         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
1400
1401 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1402
1403         * mm-extern.el (mm-extern-url): Don't use
1404         mm-with-unibyte-current-buffer.
1405         (mm-extern-cache-contents): Use with-current-buffer instead of
1406         save-excursion + set-buffer.
1407
1408 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1409
1410         * mm-util.el (mm-emacs-mule): Remove.
1411
1412 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
1413
1414         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
1415         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
1416         change.
1417
1418 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1419
1420         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
1421         bind the default value of enable-multibyte-characters to nil.
1422
1423 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1424
1425         * message.el (message-forward-make-body-plain)
1426         (message-forward-make-body-mml):
1427         Don't use mm-with-unibyte-current-buffer.
1428
1429 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1430
1431         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
1432
1433 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
1434
1435         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
1436         (Bug#5592).
1437
1438 2010-05-07  Julien Danjou  <julien@danjou.info>
1439
1440         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
1441         it to mm-pipe-part.
1442
1443         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
1444         it is given.
1445
1446 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1447
1448         * binhex.el (binhex-decode-region-internal)
1449         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
1450         (dns-query)
1451         * nnweb.el (nnweb-gmane-search)
1452         * pgg-parse.el (pgg-parse-armor)
1453         * pgg.el (pgg-verify-region)
1454         * sha1.el (sha1-string-external)
1455         * uudecode.el (uudecode-decode-region-internal)
1456         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
1457         XEmacs.
1458
1459         * gnus-art.el (gnus-article-browse-html-parts)
1460         * gnus-group.el (gnus-read-ephemeral-gmane-group)
1461         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
1462         make-temp-file.
1463
1464         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
1465         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
1466         compiling.
1467
1468         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
1469         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
1470         XEmacs when compiling.
1471
1472         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
1473         gnus-pick-mode-off-hook for XEmacs when compiling.
1474         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
1475         gnus-binary-mode-off-hook for XEmacs when compiling.
1476
1477         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate): Return
1478         nil if char-charset is not available.
1479
1480         * imap.el (imap-disable-multibyte)
1481         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
1482         macros.
1483
1484         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
1485         instead of encode-coding-string.
1486
1487         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
1488         'xemacs) instead of mm-emacs-mule to switch function definitions.
1489         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
1490
1491         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
1492         bind temporary-file-directory for XEmacs;
1493         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
1494         timer-set-function for XEmacs 21.4 and SXEmacs;
1495         bind timer-list for XEmacs 21.4 and SXEmacs;
1496         fbind char-charset and find-charset-region for non-Mule XEmacs;
1497         fbind decode-coding-region, decode-coding-string, detect-coding-region,
1498         encode-coding-region and encode-coding-string for XEmacs having no
1499         file-coding feature.
1500
1501 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
1502
1503         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
1504
1505 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1506
1507         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
1508         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
1509
1510 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
1511
1512         * mm-util.el (mm-decompress-buffer): Use `delete-file';
1513         alias `jka-compr-delete-temp-file' no longer exists.
1514
1515 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1516
1517         Use define-minor-mode in Gnus where applicable.
1518         * mml.el (mml-mode): Use define-minor-mode.
1519         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
1520         (gnus-undo-mode): Use define-minor-mode.
1521         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
1522         (gnus-dead-summary-mode): Use define-minor-mode.
1523         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
1524         Initialize in declaration.
1525         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
1526         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
1527         (gnus-mailing-list-mode): Use define-minor-mode.
1528         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
1529         (gnus-draft-mode): Use define-minor-mode.
1530         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
1531         (gnus-dired-mode): Use define-minor-mode.
1532
1533 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
1534
1535         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
1536         handles on recursive mml-to-mime translation and check them for
1537         boundary delimiter collisions.  Reported by Greg Troxel.
1538
1539 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1540
1541         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
1542
1543 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1544
1545         * mm-util.el (mm-find-buffer-file-coding-system):
1546         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
1547
1548 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
1549
1550         * message.el (message-generate-headers): Record insertion of optional
1551         headers as well.  Otherwise the check to prevent repeated insertion of
1552         optional headers is a no-op.
1553
1554 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
1555
1556         * smime.el: Don't mention CVS.
1557
1558         * nnrss.el (nnrss-fetch): Don't mention CVS.
1559
1560         * nnir.el: Don't mention CVS.
1561
1562 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1563
1564         * gnus-sum.el (gnus-summary-bookmark-make-record): Add `location' field.
1565
1566 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1567
1568         * lpath.el: Fbind bookmark-default-handler,
1569         bookmark-get-bookmark-record, bookmark-make-record-default,
1570         bookmark-prop-get for Emacs <23 and XEmacs.
1571
1572 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1573
1574         * gnus-sum.el: Add bookmark declarations to silence the compiler.
1575         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
1576         Use with-current-buffer to silence the byte-compiler.
1577         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
1578         bother to require `gnus'.
1579         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
1580
1581 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1582
1583         * gnus-sum.el (gnus-summary-bookmark-make-record)
1584         (gnus-summary-bookmark-jump): New functions.
1585         (gnus-summary-mode): Setup bookmark support.
1586
1587 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
1588
1589         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
1590         if set.
1591
1592 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1593
1594         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
1595         gnus-article-browse-html-save-cid-image; make it work recursively for
1596         forwarded messages as well.
1597         (gnus-article-browse-html-parts): Work when prefix arg is given.
1598         (gnus-article-browse-html-article): Doc fix.
1599
1600 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
1601
1602         * message.el (message-default-mail-headers):
1603         (message-default-headers): Carry the value mail-default-headers over
1604         into message-default-mail-headers, rather than message-default-headers.
1605
1606 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
1607
1608         * mm-decode.el (mm-add-meta-html-tag): Added option to override the
1609         charset.
1610
1611         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
1612         charset into the <meta> tag when the article is encoded to utf-8.
1613
1614 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1615
1616         * gnus-art.el (gnus-article-browse-delete-temp-files): Delete
1617         directories as well.
1618         (gnus-article-browse-html-parts): Work for images that do not specify
1619         file names; delete temp directory when quitting; insert header at the
1620         right place; use file: scheme for image files.
1621
1622 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
1623
1624         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
1625         (gnus-article-browse-html-parts): Use it to make temporary cid image
1626         files in addition to html file so that browser may display them.
1627
1628 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
1629
1630         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
1631
1632 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
1633
1634         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
1635
1636 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
1637
1638         * auth-source.el (auth-sources): Change default to be simpler.  Explain
1639         about Secret Service API sources.  Improve Customize options.
1640         (auth-source-pick): Change to accept any number of search parameters.
1641         Implement fallbacks iteratively, not recursively.  Add scoring on the
1642         second pass and sort by score.  Call Secret Service API when needed.
1643         (auth-source-user-or-password): Use it.  Call Secret Service API
1644         directly when needed to get the user name and the password.
1645
1646 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
1647
1648         * message.el (message-interactive): Doc fix.
1649         (message-qmail-inject-args): Reflow.
1650         (message-kill-to-signature): Fix typo in docstring.
1651
1652         * smiley.el (smiley-buffer): Fix typo in docstring.
1653
1654 2010-03-24  Glenn Morris  <rgm@gnu.org>
1655
1656         * mail-source.el (gnus-message): Declare.
1657         (mail-source-delete-old-incoming): Require gnus-util.
1658
1659 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1660
1661         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
1662
1663         * message.el (ecomplete-setup): Autoload it for Emacs <23.
1664
1665         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
1666         password-cache's default if it is not bound.
1667         (mml-secure-passphrase-cache-expiry): Default to 16 that is
1668         password-cache-expiry's default if it is not bound.
1669
1670         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
1671         available in Emacs 21.
1672
1673         * lpath.el: Suppress compiler warnings for:
1674         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
1675         XEmacs;
1676         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
1677         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
1678         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
1679
1680 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
1681
1682         * auth-source.el (auth-sources): Fix up definition so extra parameters
1683         are always inline.
1684
1685 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
1686
1687         * nnimap.el (nnimap-verify-uidvalidity): Fixed bug where uidvalidity
1688         wasn't updated after mismatch.  Clear cached mailbox info correctly
1689         when uidvalidity changes.
1690         (nnimap-group-prefixed-name): New function to avoid some code
1691         duplication.
1692         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
1693         (nnimap-request-group): Use it.
1694         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
1695         (nnimap-update-unseen): Significantly improved speed of Gnus startup
1696         with many imap folders.  This is done by caching the group status from
1697         the imap server persistently in a group parameter `imap-status'.  (This
1698         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
1699         but not persistently, so every Gnus startup was still very slow.)
1700
1701 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
1702
1703         * assistant.el (assistant-render-text): Run `widget-setup' and don't
1704         delete the extra newline.  Otherwise editing of :string and :number
1705         types don't work.
1706
1707 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1708
1709         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
1710         secrets.el dependency.
1711         (auth-sources): Add optional user name.  Add secrets.el configuration
1712         choice (unused right now).
1713
1714 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1715
1716         * gnus-sum.el (gnus-summary-make-menu-bar): Let
1717         `gnus-registry-install-shortcuts' fill in the functions.
1718
1719         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
1720         warnings.
1721         (gnus-registry-misc-menus): Variable to hold registry mark menus.
1722         (gnus-registry-install-shortcuts): Populate and use it in a
1723         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
1724
1725 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
1726
1727         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
1728         In-place substitutions for the group name encoding/decoding.
1729         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
1730         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
1731         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
1732         (nnimap-update-unseen, nnimap-request-list)
1733         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
1734         (nnimap-request-set-mark, nnimap-split-to-groups)
1735         (nnimap-split-articles, nnimap-request-newgroups)
1736         (nnimap-request-create-group, nnimap-request-accept-article)
1737         (nnimap-request-delete-group, nnimap-request-rename-group)
1738         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
1739         `encoded-mbx' for consistency.
1740         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
1741         variable `imap-current-mailbox'.
1742
1743         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
1744         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
1745
1746 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
1747
1748         * pop3.el (pop3-display-message-size-flag): Display message size byte
1749         counts during POP3 download.
1750         (pop3-movemail): Use it.
1751         (pop3-list): Implement listing of available messages.
1752
1753 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
1754
1755         * nnir.el (nnir-get-article-nov-override-function): New function to
1756         override the normal NOV retrieval.
1757         (nnir-retrieve-headers): Use it.
1758
1759 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
1760
1761         * auth-source.el (netrc-machine-user-or-password): Autoload.
1762
1763 2010-03-19  Glenn Morris  <rgm@gnu.org>
1764
1765         Stop message.el from loading about 40 libraries it doesn't always need.
1766         The general approach is to autoload rather than require, and to
1767         require in the specific functions rather than the file.  (Bug#5642)
1768
1769         * gmm-utils.el: Don't require wid-edit.
1770         (widget-create-child-value, widget-convert, widget-default-get):
1771         Autoload.
1772
1773         * gnus-util.el: Don't require time-date, netrc.
1774         (message-fetch-field, gnus-group-name-decode): Declare rather than
1775         autoloading.
1776         (gnus-fetch-field): Require message.
1777         (gnus-decode-newsgroups): Require gnus-group.
1778
1779         * ietf-drums.el: Don't require time-date.
1780
1781         * message.el: Don't require hashcash, canlock, ecomplete.
1782         Do require mail-utils.  Require nnheader only when compiling.
1783         (smtpmail-default-smtp-server): Remove declaration.
1784         (message-send-mail-function): Check smtpmail-default-smtp-server
1785         is bound rather than requiring smtpmail.
1786         (message-auto-save-directory, message-insert-signature): Use
1787         expand-file-name rather than nnheader-concat.
1788         (nnheader-insert-file-contents): Autoload.
1789         (hashcash-wait-async): Declare.
1790         (message-send-mail): Only call gnus-setup-posting-charset if
1791         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
1792         (message-send-mail-with-sendmail): Require sendmail.
1793         (canlock-password, canlock-password-for-verify): Declare.
1794         (message-canlock-password): Require canlock.
1795         (nnheader-get-report): Autoload.
1796         (gnus-setup-posting-charset): Declare.
1797         (message-send-news): Require gnus-msg.
1798         (message-make-references, message-make-in-reply-to): Use mail-header-id
1799         rather than the alias mail-header-message-id.
1800         (ecomplete-add-item, ecomplete-save): Declare.
1801         (message-put-addresses-in-ecomplete): Require ecomplete.
1802         (ecomplete-display-matches): Autoload.
1803
1804         * mm-decode.el: Don't require mailcap, gnus-util.
1805         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
1806         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
1807         Autoload.
1808         (mailcap-mime-extensions): Declare.
1809
1810         * mm-encode.el: Don't require mailcap.
1811         (mailcap-extension-to-mime): Autoload.
1812
1813         * mml-sec.el: Don't require password-cache.
1814
1815         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
1816         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
1817         (mml-minibuffer-read-type): Require mailcap.
1818         (mml-preview): Require gnus-msg.
1819
1820         * mml1991.el: Require password-cache.
1821         (password-cache-expiry): Remove declaration.
1822
1823         * mml2015.el: Require password-cache.
1824         (password-cache-expiry): Remove declaration.
1825
1826         * nneething.el (mailcap): Require mailcap.
1827
1828         * nnheader.el (declare-function): Add compatibility stub.
1829         (message-remove-header): Declare rather than autoload.
1830         (nnheader-replace-header): Require message.
1831
1832         * nnimap.el (declare-function): Add compatibility stub.
1833         (netrc-parse, netrc-machine-user-or-password): Declare.
1834         (nnimap-open-connection): Require netrc.
1835
1836         * nntp.el (declare-function): Add compatibility stub.
1837         (netrc-parse, netrc-machine, netrc-get): Declare.
1838         (nntp-send-authinfo): Require netrc.
1839
1840         * rfc2047.el: Don't require qp.
1841         (quoted-printable-encode-region, quoted-printable-decode-string):
1842         Autoload.
1843
1844         * sieve-mode.el: Don't require easymenu.
1845         (easy-menu-add-item): Autoload it.
1846
1847         * spam-stat.el (time-to-number-of-days): Autoload it.
1848
1849 2010-03-19  Glenn Morris  <rgm@gnu.org>
1850
1851         * password-cache.el (password-cache, password-cache-expiry): Autoload.
1852
1853 2010-03-18  Glenn Morris  <rgm@gnu.org>
1854
1855         * hashcash.el (declare-function): Remove duplicate definition.
1856
1857 2010-03-17  Kevin Ryde  <user42@zip.com.au>
1858
1859         * mml.el (mml-read-tag): Unquote values with `read' to reverse
1860         prin1 in mml-insert-tag (just stripping the quotes gave wrong
1861         value if any backslash escapes).
1862
1863 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1864
1865         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
1866         if it is available.  (bug#5647)
1867
1868         * lpath.el: Suppress compiler warning for coding-system-from-name for
1869         Emacs 21 and XEmacs.
1870
1871 2010-03-14  Juri Linkov  <juri@jurta.org>
1872
1873         * hmac-def.el:
1874         * hmac-md5.el:
1875         * netrc.el: Fix keywords.
1876
1877 2010-02-26  Glenn Morris  <rgm@gnu.org>
1878
1879         * message.el (message-send-mail-function): Change the default, so that
1880         it inherits from a customized send-mail-function.  (Bug#5643)
1881
1882 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1883
1884         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
1885         shell-command-to-string signals an error (bug#5299).
1886
1887 2010-02-24  Glenn Morris  <rgm@gnu.org>
1888
1889         * message.el (message-smtpmail-send-it)
1890         (message-send-mail-with-mailclient): Doc fixes.
1891
1892 2010-02-16  Glenn Morris  <rgm@gnu.org>
1893
1894         * message.el (message-default-mail-headers): Change the default value
1895         to ease the transition from mail-mode to message-mode.  (Bug#5555)
1896
1897 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1898
1899         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
1900         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
1901
1902 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
1903
1904         * time-date.el (date-to-time): Doc fix (Bug#5408).
1905
1906 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
1907
1908         * message.el (message-mail): Just pass yank-action on to message-setup.
1909         (message-setup): Handle (FUN . ARGS) form of yank-action.
1910         (message-with-reply-buffer, message-widen-reply)
1911         (message-yank-original): Handle non-buffer values of
1912         message-reply-buffer (Bug#4080).
1913         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
1914
1915 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
1916
1917         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
1918         Fix typo in docstring.
1919
1920 2010-01-08  Jason Rumney  <jasonr@gnu.org>
1921
1922         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
1923         response.
1924
1925 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1926
1927         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
1928
1929         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
1930
1931         * message.el (message-check-news-header-syntax): Protect against a
1932         string that `rfc822-addresses' returns when parsing fails.
1933
1934 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1935
1936         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
1937         (gnus-previous-char-property-change): New functions.
1938
1939         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
1940
1941 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
1942
1943         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
1944         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
1945
1946 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
1947
1948         * message.el (message-exchange-point-and-mark): Rework last change to
1949         avoid using optional arg of exchange-point-and-mark, for backward
1950         compatibility.
1951
1952 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
1953
1954         * message.el (message-exchange-point-and-mark): Call
1955         exchange-point-and-mark with an argument rather than setting
1956         mark-active by hand (Bug#5175).
1957
1958 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1959
1960         * nntp.el (nntp-service-to-port): Work for service expressed with
1961         numeric string; replace [:digit:] with [0-9] for XEmacs.
1962
1963 2009-12-17  Glenn Morris  <rgm@gnu.org>
1964
1965         * gnus-group.el (gnus-bug-group-download-format-alist):
1966         Change emacs entry to debbugs.gnu.org.  Bump :version.
1967
1968 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
1969
1970         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
1971
1972 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
1973
1974         * message.el (message-info): Explain why we use `Info-goto-node'.
1975
1976 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1977
1978         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
1979
1980 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1981
1982         * message.el (message-completion-in-region): New compatibility function.
1983         (message-expand-group): Use it.
1984
1985 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1986
1987         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
1988         with no unread article should be listed if the 2nd arg `predicate' is
1989         given.
1990
1991 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1992
1993         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
1994
1995 2009-11-29  Juri Linkov  <juri@jurta.org>
1996
1997         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
1998         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
1999         on `gnus-recenter'. (Bug#4698, Bug#4981)
2000
2001 2009-11-26  Kevin Ryde  <user42@zip.com.au>
2002
2003         * sha1.el (sha1-string-external): default-directory "/" in case
2004         otherwise non-existent.  process-connection-type pipe for touch of
2005         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
2006
2007 2009-11-25  Kevin Ryde  <user42@zip.com.au>
2008
2009         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
2010         it's comms related and sgml-mode.el has "comm" on that basis too.
2011
2012 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
2013
2014         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
2015         containing tspecial characters if they have been already quoted.
2016
2017 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
2018
2019         * dns-mode.el (auto-mode-alist): Purecopy string.
2020
2021 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2022
2023         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
2024
2025 2009-10-24  Glenn Morris  <rgm@gnu.org>
2026
2027         * gnus-art.el (help-xref-stack-item): Define for compiler.
2028
2029 2009-10-21  Kevin Ryde  <user42@zip.com.au>
2030
2031         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
2032
2033 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
2034
2035         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
2036
2037 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
2038
2039         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
2040         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
2041
2042 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2043
2044         * gnus.el (gnus-overlay-get): New alias to overlay-get.
2045         (gnus-overlays-in): New alias to overlays-in.
2046
2047         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
2048         gnus-overlay-get, and gnus-delete-overlay.
2049         (gnus-summary-show-thread): Make it work as well for systems in which
2050         next-single-char-property-change is not available.
2051         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
2052
2053         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
2054         (gnus-overlay-get): New alias to extent-property.
2055         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
2056
2057         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
2058         SXEmacs.
2059
2060         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
2061         SXEmacs.
2062
2063 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
2064
2065         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
2066
2067 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
2068
2069         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
2070         and XEmacs that don't have `remove-overlays'.
2071
2072 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2073
2074         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
2075         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
2076         selective display.  Use overlays instead.
2077
2078 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
2079
2080         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
2081
2082 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
2083
2084         * spam-stat.el (spam-stat-load): Fix typo in message.
2085
2086 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
2087
2088         * dig.el (dig-invoke): Fix typo in docstring.
2089         (query-dig): Reflow docstring.
2090
2091 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
2092
2093         * gnus-art.el (gnus-article-encrypt-body):
2094         * message.el (message-check-recipients):
2095         * mm-util.el (mm-codepage-setup):
2096         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
2097         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
2098
2099 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
2100
2101         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
2102         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
2103         keys from the menu if mm-{sign,encrypt}-option is 'guided.
2104         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
2105         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
2106
2107 2009-09-21  Kevin Ryde  <user42@zip.com.au>
2108
2109         * dig.el: Add "Keywords: comm", as per net-utils.el.
2110
2111 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2112
2113         * dig.el (dig-mode): Use define-derived-mode.
2114
2115 2009-09-19  Glenn Morris  <rgm@gnu.org>
2116
2117         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
2118
2119 2009-09-18  Glenn Morris  <rgm@gnu.org>
2120
2121         * gnus-diary.el (gnus-diary-check-message):
2122         * message.el (message-insert-formatted-citation-line):
2123         * nnbabyl.el (top-level):
2124         * nndiary.el (nndiary-schedule):
2125         Fix typos in condition-case handlers.
2126
2127 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2128
2129         * gnus-art.el (gnus-article-edit-part): Work for the buffer
2130         configuration that provides the sole article window in a frame;
2131         position point correctly after deleting a part.
2132
2133 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
2134
2135         * spam.el (spam-unregister-on-reregister): Add boolean variable.
2136         (spam-resolve-registrations-routine): Use it to unregister articles
2137         that change status.
2138
2139 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2140
2141         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
2142         with XEmacs.
2143         (parse-time-string-chars): Use it.
2144
2145 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
2146
2147         * imap.el (imap-interactive-login): Better messages.
2148         (imap-open): Fix bug with renamed buffer on reconnect.
2149         (imap-authenticate): Add buffer-local imap-last-authenticator variable
2150         for easier debugging and cleaner code.  On successful (guessed based on
2151         server capabilities) secondary authentication, set imap-state
2152         correctly.
2153         (imap-last-authenticator): Define imap-last-authenticator as a variable
2154         to avoid warnings.
2155
2156 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2157
2158         * nnrss.el (nnrss-request-article): Remove binding of
2159         default-enable-multibyte-characters that has gotten needless by
2160         the 2007-07-13 change in rfc2047-encode-message-header.
2161
2162         * mml.el (mml-insert-multipart): Error on the message header.
2163         (mml-insert-part): Error on the message header; position point at
2164         the end of a MIME tag.
2165
2166 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2167
2168         * time-date.el (autoload): Expand define-obsolete-function-alias into
2169         defalias and make-obsolete for old Emacsen that Gnus supports.
2170         (with-no-warnings): Define it for old Emacsen.
2171         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
2172         is available.
2173         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
2174         float-time is available; suppress compile warning for time-to-seconds.
2175
2176         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
2177         (gnus-float-time): Alias to float-time if it exists.
2178
2179         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
2180         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
2181         float-time is available; suppress compile warning for time-to-seconds.
2182
2183         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
2184         XEmacs.
2185
2186 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
2187
2188         * imap.el (imap-message-map): Docstring fix.
2189
2190 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2191
2192         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
2193         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
2194         Add the optional argument `encoding' that overrides the default.
2195
2196         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
2197         mm-encode-buffer.
2198
2199 2009-09-04  Glenn Morris  <rgm@gnu.org>
2200
2201         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
2202         mm-disable-multibyte, rather than default-enable-multibyte-characters.
2203         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
2204         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
2205         * mm-util.el (mm-with-unibyte-current-buffer)
2206         (mm-find-buffer-file-coding-system):
2207         * yenc.el (yenc-decode-region): Use default-value rather than
2208         default-enable-multibyte-characters.
2209
2210 2009-09-03  Glenn Morris  <rgm@gnu.org>
2211
2212         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
2213         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
2214         than default-enable-multibyte-characters.
2215
2216 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
2217
2218         * gnus-art.el (gnus-article-read-summary-keys):
2219         Fix gnus-buffer-configuration's value temporarily used.
2220
2221 2009-09-02  Glenn Morris  <rgm@gnu.org>
2222
2223         * gnus-util.el (gnus-float-time): New function.
2224         * gnus-delay.el (gnus-delay-article):
2225         * gnus-sum.el (gnus-thread-latest-date):
2226         * gnus-util.el (gnus-user-date): Use gnus-float-time.
2227         * nnspool.el (nnspool-request-newgroups):
2228         Use gnus-float-time rather than time-to-seconds.
2229         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
2230
2231         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
2232         (gnus-header-subject-face, gnus-header-newsgroups-face)
2233         (gnus-header-name-face, gnus-header-content-face):
2234         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
2235         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
2236         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
2237         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
2238         (gnus-cite-face-11):
2239         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
2240         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
2241         (gnus-server-closed-face, gnus-server-denied-face)
2242         (gnus-server-offline-face):
2243         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
2244         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
2245         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
2246         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
2247         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
2248         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
2249         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
2250         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
2251         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
2252         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
2253         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
2254         (gnus-summary-selected-face, gnus-summary-cancelled-face)
2255         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
2256         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
2257         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
2258         (gnus-summary-high-undownloaded-face)
2259         (gnus-summary-low-undownloaded-face)
2260         (gnus-summary-normal-undownloaded-face)
2261         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
2262         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
2263         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
2264         (gnus-splash-face):
2265         * message.el (message-header-to-face, message-header-cc-face)
2266         (message-header-subject-face, message-header-newsgroups-face)
2267         (message-header-other-face, message-header-name-face)
2268         (message-header-xheader-face, message-separator-face)
2269         (message-cited-text-face, message-mml-face):
2270         * sieve-mode.el (sieve-control-commands-face)
2271         (sieve-action-commands-face, sieve-test-commands-face)
2272         (sieve-tagged-arguments-face):
2273         * spam.el (spam-face):
2274         Mark face aliases with "-face" in the name as obsolete.
2275
2276 2009-09-01  Glenn Morris  <rgm@gnu.org>
2277
2278         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
2279         than goto-line.
2280
2281 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
2282
2283         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2284         Don't move point if the command is invoked inside the message header.
2285
2286 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2287
2288         * imap.el (imap-send-command): Simplify.
2289         (imap-wait-for-tag): point-max -> buffer-size.
2290
2291 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2292
2293         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
2294         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
2295         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
2296         * nnir.el (nnir-swish-e-index-file):
2297         * gnus-sum.el (gnus-summary-delete-marked-as-read)
2298         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
2299         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
2300         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
2301         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
2302         (gnus-treat-display-xface): Add Emacs version of obsolescence.
2303
2304 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2305
2306         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2307         Don't save excursion.
2308
2309 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2310
2311         * nnheader.el (nnheader-find-file-noselect):
2312         * mm-util.el (mm-insert-file-contents):
2313         Use (default-value 'major-mode) instead of default-major-mode.
2314
2315 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2316
2317         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
2318
2319 2009-08-26  Glenn Morris  <rgm@gnu.org>
2320
2321         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
2322         than placing in files.el.
2323
2324 2009-08-25  Glenn Morris  <rgm@gnu.org>
2325
2326         * nnir.el (top-level): Don't require cl at run-time.
2327         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
2328         Replace cl-function substitute with gnus-replace-in-string.
2329         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
2330         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
2331         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
2332         simplified expansions.
2333
2334 2009-08-25  Kevin Ryde  <user42@zip.com.au>
2335
2336         * dig.el (dig): Add autoload cookie.
2337
2338 2009-08-22  Glenn Morris  <rgm@gnu.org>
2339
2340         * gnus-art.el (gnus-button-patch): Use forward-line rather than
2341         goto-line.
2342
2343 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
2344
2345         * parse-time.el (parse-time-string-chars): Save match data.
2346
2347 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
2348
2349         * parse-time.el (parse-time-string-chars): Compute using character
2350         classes, to handle non-ascii characters (Bug#3190).
2351
2352 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2353
2354         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
2355
2356         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
2357         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
2358         (gnus-mm-display-part, gnus-mime-display-single)
2359         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
2360         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
2361
2362         * gnus-sum.el
2363         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
2364         (gnus-summary-move-article): Add expirable mark to articles copied or
2365         moved to group that has auto-expire turned on if the option is non-nil.
2366
2367 2009-07-24  Glenn Morris  <rgm@gnu.org>
2368
2369         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
2370         Fix typo.  (Bug#3903)
2371
2372 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2373
2374         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
2375         gnus-article-read-summary-keys rather than gnus-summary-edit-article
2376         that should not be used for draft articles.
2377         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
2378         that has no concern in minor mode keys.
2379         (gnus-article-summary-command, gnus-article-summary-command-nosave):
2380         Abolish.
2381
2382 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2383
2384         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
2385         article without making inquiry to a user for unknown encoding.
2386
2387         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
2388         (nnmaildir--scan): Assume i-node and device number that file-attributes
2389         returns might be cons-cell.
2390
2391         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
2392
2393         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
2394
2395 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
2396
2397         * auth-source.el: Remove docs now in auth.texi.  Don't use
2398         `gnus-message' for logging.  Add new variables `auth-source-debug' and
2399         `auth-source-hide-passwords' and use them.
2400
2401 2009-07-15  Glenn Morris  <rgm@gnu.org>
2402
2403         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
2404
2405 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2406
2407         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
2408         excessive whitespace from the default values of title and description.
2409
2410 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2411
2412         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
2413         mail-fetch-field to fetch Content-Description header in order to
2414         exclude newlines.
2415
2416 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
2417
2418         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
2419         format used by GnuPG 2.0.11.
2420
2421 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2422
2423         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
2424         to deleted part.
2425
2426 2009-05-30  David Engster  <dengste@eml.cc>
2427
2428         * nnmairix.el: Remove old documentation in the commentary block.
2429         (nnmairix-request-group): Do not update active file for nnml back ends.
2430         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
2431         end so that overview files are ignored.
2432         (nnmairix-update-groups): Make updating the groups more robust by using
2433         marks.
2434         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
2435         with dollar characters in message-id.
2436
2437 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
2438
2439         * spam.el: Use dns-query instead of query-dns.  Was renamed on
2440         2008-12-25 in dns.el.
2441
2442 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2443
2444         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
2445         could happen if the text is only composed of spaces and/or tabs.
2446
2447 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
2448
2449         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
2450         when sending a queued message to avoid extra mml tags.
2451
2452 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2453
2454         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
2455
2456 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2457
2458         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
2459         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
2460         rmail-toggle-header for XEmacs;
2461         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
2462
2463 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2464
2465         * gnus-dired.el: Remove autoload for gnus-setup-message.
2466         (gnus-dired-attach): Fake this-command value to prevent Gnus from
2467         displaying Gnus logo; always use compose-mail.
2468
2469 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2470
2471         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
2472
2473 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2474
2475         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
2476         (gnus-nocem-issuers): List currently active issuers; fix custom type.
2477         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
2478         available.
2479         (gnus-nocem-epg-verify): New function.
2480
2481 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
2482
2483         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
2484
2485 2009-02-15  Glenn Morris  <rgm@gnu.org>
2486
2487         * gnus-util.el (rmail-insert-rmail-file-header)
2488         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
2489         autoloads.
2490         (rmail-default-rmail-file): Remove unnecessary declaration.
2491         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
2492
2493 2009-02-14  Glenn Morris  <rgm@gnu.org>
2494
2495         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
2496         variable (only used in gnus-util, which declares it anyway).
2497         (rmail-output-to-rmail-file): Remove autoload of deleted function,
2498         which was only needed by gnus-art (changed to not use it any more).
2499         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
2500         only used in gnus-util, which autoloads it itself.
2501         (rmail-update-summary): Fix autoload.
2502
2503         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
2504         rather than rmail-output-to-rmail-file.
2505
2506 2009-02-07  Glenn Morris  <rgm@gnu.org>
2507
2508         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
2509         autoload of function that no longer exists.
2510         (rmail-toggle-header): Declare.
2511         (message-forward-rmail-make-body): Handle mbox Rmail.
2512
2513 2009-01-31  Glenn Morris  <rgm@gnu.org>
2514
2515         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
2516         2009-01-09 change.
2517
2518 2009-01-31  Dave Love  <fx@gnu.org>
2519
2520         * imap.el (imap-fetch-safe): Bind debug-on-error.
2521         (imap-debug): Add imap-fetch-safe.
2522
2523 2009-01-26  Teodor Zlatanov  <tzz@lifelogs.com>
2524
2525         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
2526         (auth-source-forget-all-cached): New convenience function.
2527         (auth-source-user-or-password): Accept list of modes or a single mode.
2528
2529         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
2530         auth-source modes.
2531
2532         * netrc.el (netrc-machine-user-or-password): Use list of
2533         auth-source modes.
2534
2535         * nnimap.el (nnimap-open-connection): Use list of
2536         auth-source modes.
2537
2538         * nntp.el (nntp-send-authinfo): Use list of
2539         auth-source modes.
2540
2541 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
2542
2543         * auth-source.el: Update docs to reflect epa-file-enable is to be used
2544         now.
2545
2546 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2547
2548         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
2549         coding system in XEmacs; add a workaround for XEmacs.
2550
2551         * lpath.el: Fbind coding-system-aliasee.
2552
2553 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2554
2555         * mm-util.el (mm-coding-system-priorities): Protect against nil value
2556         of current-language-environment.
2557
2558 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
2559
2560         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
2561         available at runtime.
2562
2563 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2564
2565         * gnus-art.el (article-date-ut): Fix end point of narrowing.
2566
2567 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
2568
2569         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
2570         the greatest positive fixnum value doesn't work under an XEmacs with
2571         bignum support; use the most-positive-fixnum constant instead,
2572         available since Emacs 21.1 with cl and XEmacs 21.1.
2573
2574 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2575
2576         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
2577         XEmacs gets not to work.
2578
2579 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2580
2581         * mm-util.el (mm-coding-system-priorities): Allow the value like
2582         "Japanese (UTF-8)" of current-language-environment.
2583
2584 2009-01-09  Glenn Morris  <rgm@gnu.org>
2585
2586         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
2587         with last-command-event.
2588
2589 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
2590
2591         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
2592         in the doc string.
2593
2594         * message.el (message-fix-before-sending): Amend comment.
2595
2596 2009-01-08  Dave Love  <fx@gnu.org>
2597
2598         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
2599
2600 2009-01-07  David Engster  <dengste@eml.cc>
2601
2602         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
2603         simplified server definitions by converting it via
2604         gnus-server-to-method.
2605
2606 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2607
2608         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
2609         parameter's operands.
2610
2611 2009-01-06  David Engster  <dengste@eml.cc>
2612
2613         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
2614         primary select method (for gnus-group-mark-article-as-read).
2615
2616 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
2617
2618         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
2619         `(gnus)Face', not `(gnus)X-Face'.
2620
2621 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2622
2623         * mm-util.el (mm-ucs-to-char): New function.
2624
2625         * mm-url.el (mm-url-decode-entities): Use it.
2626
2627         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
2628         unicode-to-char.
2629
2630 2009-01-05  Dave Love  <fx@gnu.org>
2631
2632         * time-date.el: Require cl for `declare'.
2633
2634 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
2635
2636         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
2637         Dave Love.
2638
2639 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
2640
2641         * message.el (message-fix-before-sending): Add `eight-bit' to
2642         illegible-text check.
2643
2644 2009-01-03  Michael Olson  <mwolson@gnu.org>
2645
2646         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
2647         `headers' is nil.  This can occur if the IMAP server does not have
2648         permissions to read messages from a folder, but can write new messages
2649         to the folder.
2650         (nnimap-request-article-part): Do not insert `data' if it is nil.
2651
2652         * imap.el (imap-parse-fetch): Courier can insert spurious blank
2653         characters which will confuse `read', so skip past them.
2654
2655 2009-01-01  Dave Love  <fx@gnu.org>
2656
2657         * imap.el (imap-string-to-integer): Fix typo.
2658         (imap-fetch-safe): New function.
2659         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
2660
2661         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
2662
2663         * imap.el (imap-process-connection-type, imap-debug, imap-open):
2664         (imap-parse-greeting): Fix doc strings.
2665         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
2666         (imap-parse-flag-list): Make messages unique.
2667         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
2668
2669         * nnimap.el: Fix author email.
2670         (nnimap-split-rule): Add FIXME comment.
2671         (nnimap-debug): Fix doc string.
2672
2673 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
2674
2675         * dns.el (dns-set-servers): Check "Address".  Fix typo.
2676
2677 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
2678
2679         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
2680         nslookup if resolv.conf isn't available.
2681         (dns-query): Rename from query-dns.
2682         (dns-query-cached): Rename from query-dns-cached.
2683
2684 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2685
2686         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
2687         overlay-arrow-position and overlay-arrow-string buffer-local; no need
2688         to check if those variables exist (first appeared in Emacs 18.50).
2689
2690 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2691
2692         * mm-util.el (mm-line-number-at-pos): New function.
2693
2694         * spam-report.el (spam-report-process-queue): Use it.
2695
2696 2008-12-24  David Engster  <dengste@eml.cc>
2697
2698         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
2699         parameters that haven't existed as variables as buffer-local variables.
2700
2701 2008-12-23  Dave Love  <fx@gnu.org>
2702
2703         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
2704         cadar.
2705
2706         * sieve-manage.el (sieve-manage-starttls-p): Renamed from
2707         imap-starttls-p.
2708         (sieve-manage-starttls-open): Renamed from imap-starttls-open.
2709
2710 2008-12-22  Dave Love  <fx@gnu.org>
2711
2712         * imap.el: Fix author email.  Doc fixes.
2713         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
2714         reply.
2715
2716 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
2717
2718         * spam-report.el (spam-report-gmane-max-requests): New constant.
2719         (spam-report-gmane-wait): New variable.
2720         (spam-report-gmane-ham, spam-report-gmane-spam)
2721         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
2722         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
2723         the server.
2724
2725         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
2726         Add explanations.
2727
2728         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
2729         nnheader-accept-process-output and nnheader-read-timeout if available.
2730         (pop3-movemail): Use it.
2731
2732         * message.el (message-check-news-body-syntax): Fix signature check if
2733         there's an attachment.
2734
2735 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2736
2737         * mm-util.el: Add comments to the mm- emulating functions.
2738
2739 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
2740
2741         * gnus-start.el (gnus-before-startup-hook): Fix doc string.  Reported
2742         by Stephen Berman <stephen.berman@gmx.net>.
2743
2744 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2745
2746         * mm-util.el (mm-substring-no-properties): New function.
2747         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
2748         (mm-special-display-p): Enable those lambda forms to be byte compiled.
2749         (mm-string-to-multibyte): Doc fix.
2750
2751         * mml.el (mml-attach-file): Use mm-substring-no-properties.
2752
2753 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
2754
2755         * mml.el (mml-attach-file): Strip text properties from file name.
2756         (Bug#1574)
2757
2758 2008-12-16  Glenn Morris  <rgm@gnu.org>
2759
2760         * mm-util.el (mm-charset-override-alist): Declare for compiler.
2761
2762 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2763
2764         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
2765         knows since the charset specified might be a bogus alias that
2766         mm-charset-synonym-alist provides.
2767
2768 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
2769
2770         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
2771         "ISO_8859-1".
2772
2773         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
2774
2775 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2776
2777         * mm-util.el (mm-charset-eval-alist):
2778         Define it before mm-charset-to-coding-system.
2779         (mm-charset-to-coding-system): Add optional argument `silent';
2780         define it before mm-charset-override-alist.
2781         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
2782         default value if it can be used in Emacs currently running;
2783         silence mm-charset-to-coding-system.
2784
2785 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2786
2787         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
2788         `allow-override' which says whether to use `mm-charset-override-alist'.
2789         (rfc2047-decode-encoded-words): Use it.
2790
2791         * mm-util.el (mm-charset-override-alist): Fix custom type;
2792         add `(gb2312 . gbk)' to choices.
2793
2794 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2795
2796         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
2797         fast.
2798
2799         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2800
2801         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
2802
2803 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
2804
2805         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
2806         on links.
2807
2808         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2809
2810 2008-12-03  Lute Kamstra  <lute@gnu.org>
2811
2812         * sha1.el: Remove leading * from docstrings of defcustoms,
2813         deffaces, defconsts and defuns.
2814
2815 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2816
2817         * message.el (message-idna-to-ascii-rhs-1): Protect against local
2818         users' addresses that don't have domain parts.
2819         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
2820         rather than message-narrow-to-head since there will be the message
2821         header separator.
2822
2823 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2824
2825         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
2826         since the result is inserted in a unibyte buffer anyway.
2827         (nnimap-demule-use-string-to-multibyte): Remove.
2828         (nnimap-demule): Alias it to mm-string-to-multibyte.
2829
2830 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
2831
2832         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
2833         variable for debugging bug#464 and bug#1174.
2834         (nnimap-demule): Use it.
2835
2836 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
2837
2838         * gnus-score.el (gnus-score-find-trace): Handle default score in total
2839         score calculation correctly.
2840
2841 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2842
2843         * message.el (message-send-mail): Just set the buffer to unibyte
2844         rather than use mm-with-unibyte-current-buffer which does a lot more.
2845         (message-send-mail-partially): Don't bother with
2846         mm-with-unibyte-current-buffer since it's already been made unibyte by
2847         message-send-mail.
2848
2849 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
2850
2851         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
2852
2853 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
2854
2855         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
2856
2857 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2858
2859         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
2860         require itself and to remove `with-no-warnings'.
2861
2862 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
2863
2864         * starttls.el (starttls-any-program-available): Get the name of the
2865         available TLS layer program.
2866         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
2867         well as the host name in the "opening" message.
2868
2869         * auth-source.el (auth-source-cache, auth-source-do-cache)
2870         (auth-source-user-or-password): Cache passwords and logins by default,
2871         allow override with `auth-source-do-cache'.
2872         (auth-source-forget-user-or-password): Allow users to remove cache
2873         entries if needed.
2874
2875 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
2876
2877         * md4.el (md4-buffer): Fix typo in docstring.
2878         (md4, md4-64): Doc fixes.
2879         (md4-pack-int32): Reflow docstring.
2880
2881 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2882
2883         * ietf-drums.el (ietf-drums-remove-comments): Localize second
2884         condition-case to only the forward-sexp call.
2885
2886 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2887
2888         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
2889         quotes contained.  Make it more robust regardless by an extra
2890         condition-case wrapper.
2891
2892 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2893
2894         * lpath.el: No need to fbind codepage-setup for Emacs 23.
2895
2896 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2897
2898         * nnml.el (nnml-request-expire-articles): Check if the function set to
2899         `nnmail-expiry-target' returns the symbol `delete'.
2900
2901         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
2902
2903         * nnmail.el (nnmail-expiry-target): Fix custom type.
2904
2905 2008-10-02  Glenn Morris  <rgm@gnu.org>
2906
2907         * mm-util.el (mm-codepage-setup): Tweak codepage error.
2908         Silence compiler warning.
2909
2910 2008-10-01  Magnus Henoch  <mange@freemail.hu>
2911
2912         * tls.el (open-tls-stream): Show the actual command being
2913         executed, instead of the format string.
2914
2915 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2916
2917         * lpath.el: Fbind codepage-setup for Emacs 23.
2918
2919 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
2920
2921         * mml.el (mml-menu): Don't assume mml2015 is bound.
2922
2923 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2924
2925         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
2926         exists.
2927
2928 2008-09-27  Glenn Morris  <rgm@gnu.org>
2929
2930         * gnus-util.el (mail-header-remove-comments): Autoload it.
2931
2932 2008-09-27  Andreas Schwab  <schwab@suse.de>
2933
2934         * gnus-util.el (gnus-split-references): Strip comments.
2935         (gnus-parent-id): Likewise.
2936
2937 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
2938
2939         * message.el (message-confirm-send): Fix version.
2940
2941 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2942
2943         * message.el (message-idna-to-ascii-rhs-1): Use
2944         mail-extract-address-components rather than mail-header-parse-addresses
2945         that is an alias by default to ietf-drums-parse-addresses that does not
2946         support non-ASCII names in headers' contents.
2947
2948 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
2949
2950         * message.el (message-confirm-send): Fixed variable documentation to
2951         avoid the "y/n" wording.
2952
2953 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
2954
2955         * message.el (message-set-auto-save-file-name): Save to a different
2956         filename so multiple messages (especially drafts) can be recovered.
2957
2958 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
2959
2960         * message.el (message-confirm-send): Add appropriate version.
2961
2962 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
2963
2964         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
2965         defvar.
2966
2967 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
2968
2969         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
2970         (mm-pkcs7-enveloped-magic): Ditto.
2971
2972 2008-09-17  Simon Josefsson  <simon@josefsson.org>
2973
2974         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
2975         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
2976
2977 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
2978
2979         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
2980         default, it's better.
2981
2982 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
2983
2984         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
2985         summary line gnus-number property and ignore them (with a warning
2986         message).
2987
2988 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2989
2990         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
2991         macro caddr in the interactive form since it won't be expanded.
2992
2993 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2994
2995         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
2996         `charset'; fix name of function called recursively.
2997         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
2998
2999 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
3000
3001         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
3002         (gnus-mime-set-charset-parameters): New function.
3003         (gnus-mime-view-part-as-charset): Use it to correctly display part
3004         specifying wrong charset.
3005
3006 2008-09-08  David Engster  <dengste@eml.cc>
3007
3008         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
3009         in completing-read for back end server.
3010
3011 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
3012
3013         * message.el (message-confirm-send): New variable to confirm sending a
3014         message.
3015         (message-send): Use it.
3016
3017 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
3018
3019         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
3020
3021 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
3022
3023         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
3024
3025 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
3026
3027         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
3028         prevent tracking too many groups.
3029         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
3030         Use it.
3031
3032 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
3033
3034         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
3035         moving point to the bottom of the window in order to avoid recentering.
3036
3037 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3038
3039         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
3040
3041         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
3042         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
3043         (gnus-article-beginning-of-window): Fix calculation.
3044
3045 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3046
3047         * gnus-msg.el (gnus-summary-supersede-article)
3048         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
3049         value of gnus-newsgroup-charset to decode non-MIME encoded text in
3050         message header.
3051
3052 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
3053
3054         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
3055         pending output coming after the status change.
3056
3057 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
3058
3059         * message.el:
3060         * gnus-start.el:
3061         * gnus-registry.el: Remove VMS support.
3062
3063 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3064
3065         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
3066         macro.
3067         (rfc2104-hash): Use it.
3068
3069 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
3070
3071         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
3072         (gnus-summary-sort-by-most-recent-date): New commands.
3073         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
3074         and menu entries.
3075
3076 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
3077
3078         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
3079         don't redisplay article for raw contents; remove plural articles stuff.
3080
3081         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
3082         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
3083         on gnus-summary-save-article; display results properly.
3084
3085 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
3086
3087         * lpath.el: No need to fbind ns-focus-frame.
3088
3089 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
3090
3091         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
3092
3093 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
3094
3095         * gnus-art.el (gnus-summary-save-in-pipe): Consider
3096         gnus-save-all-headers.
3097
3098 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
3099
3100         * gnus-util.el (ns-focus-frame): Remove declaration.
3101         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
3102         like x.
3103
3104 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
3105
3106         * rfc2104.el (rfc2104-zero): Delete defconst.
3107         (rfc2104-hex-alist): Likewise.
3108         (rfc2104-hex-to-int): Delete func.
3109         (rfc2104-hexstring-to-bitstring): Likewise.
3110         (rfc2104-nybbles): New defconst.
3111         (rfc2104-hash): Rewrite for speed.
3112
3113 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3114
3115         * tls.el (open-tls-stream): Make it work with the 2nd argument
3116         BUFFER that is a string but does not exist as a buffer object, as
3117         mentioned in the doc-string.
3118
3119 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3120
3121         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
3122         SXEmacs.
3123
3124 2008-07-16  Glenn Morris  <rgm@gnu.org>
3125
3126         * gnus-util.el (ns-focus-frame): Declare for compiler.
3127
3128 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3129
3130         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
3131         set as a group parameter.
3132         (gnus-summary-save-in-pipe): Work when it is called independently.
3133         (gnus-summary-pipe-to-muttprint): Don't modify
3134         gnus-summary-pipe-output-default-command.
3135
3136 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3137
3138         * message.el (message-send-mail-with-sendmail):
3139         Display the error message.
3140
3141 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3142
3143         * gnus-art.el (gnus-default-article-saver):
3144         Add gnus-summary-save-in-pipe to choices.
3145         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
3146         gnus-summary-pipe-output-default-command as the default command.
3147         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
3148         instead of gnus-last-shell-command.
3149
3150         * gnus-sum.el (gnus-summary-pipe-output-default-command):
3151         New user option.
3152         (gnus-summary-muttprint-program): Mention the value will be changed.
3153         (gnus-summary-save-article): Force showing of all headers.
3154         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
3155
3156 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
3157
3158         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
3159
3160 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
3161
3162         * nnimap.el (nnimap-id):
3163         * sieve-manage.el (sieve-manage-open): Doc fixes.
3164
3165 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
3166
3167         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
3168         if available.
3169
3170 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3171
3172         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
3173
3174         * nnkiboze.el (nnkiboze-generate-group):
3175         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
3176
3177         * nnmairix.el: Require CL.
3178
3179 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
3180
3181         * dgnushack.el: Autoload get-display-table and put-display-table for
3182         XEmacs 21.5.
3183
3184         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
3185         21.4 and SXEmacs.
3186
3187 2008-06-15  David Engster  <dengste@eml.cc>
3188
3189         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
3190
3191 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
3192
3193         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
3194         New macros that expand to an `aset'/`aref' call under Emacs, and to a
3195         runtime choice under XEmacs.
3196
3197         * gnus-sum.el (gnus-summary-set-display-table):
3198         Use `gnus-put-display-table', `gnus-get-display-table',
3199         `gnus-set-display-table' for the display table, instead of `aset'.
3200
3201         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
3202         Use `gnus-put-display-table', `gnus-get-display-table',
3203         `gnus-set-display-table' for the display table.
3204
3205 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3206
3207         * nnmairix.el: Add autoloads.
3208
3209 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3210
3211         * nnmairix.el (nnmairix-delete-recreate-group)
3212         (nnmairix-update-and-clear-marks): Fix error messages.
3213
3214 2008-06-14  David Engster  <dengste@eml.cc>
3215
3216         * nnmairix.el: Upgrade to version 0.6.
3217         (nnmairix-group-toggle-propmarks-this-group)
3218         (nnmairix-group-toggle-readmarks-this-group)
3219         (nnmairix-group-delete-recreate-this-group)
3220         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
3221         (nnmairix-remove-tick-mark-original-article): New commands.
3222         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
3223         (nnmairix-propagate-marks-to-nnmairix-groups)
3224         (nnmairix-only-use-registry, nnmairix-allowfast-default)
3225         (nnmairix-marks-cache, nnmairix-version-output): New variables.
3226         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
3227         functions needed for marks propagation and manipulation of read marks.
3228         (nnmairix-update-groups): New function.
3229         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
3230         (nnmairix-determine-original-group-from-registry)
3231         (nnmairix-determine-original-group-from-path)
3232         (nnmairix-get-group-from-file-path, nnmairix-map-range)
3233         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
3234         New helper functions.
3235         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
3236         keystrokes for new commands.
3237         (nnmairix-delete-and-create-on-change): Doc string cleanup.
3238         (nnmairix-request-group): Check allow-fast group parameter.
3239         (nnmairix-request-create-group): Set allow-fast group parameter if
3240         nnmairix-allowfast-default is set.
3241         (nnmairix-close-group): Propagate marks upon closing if needed.
3242         (nnmairix-group-toggle-threads-this-group): Use new.
3243         nnmairix-group-toggle-parameter helper function.
3244         (nnmairix-search): Better check for empty search result.
3245         (nnmairix-goto-original-article): Use new helper functions for
3246         determining original article.
3247         (nnmairix-show-original-article): Make sure message-id is in brackets.
3248         (nnmairix-call-mairix-binary): Change variable name.
3249         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
3250         helper function.
3251         (nnmairix-widget-toggle-activate): Fix doc string.
3252
3253 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3254
3255         * nnir.el: Require edmacro when compiling with XEmacs.
3256         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
3257         available in Emacs 21.
3258
3259 2008-06-11  Glenn Morris  <rgm@gnu.org>
3260
3261         * gnus-util.el (x-focus-frame):
3262         * gnus.el (image-size):
3263         * mm-decode.el (image-size): Declare.
3264
3265         * gnus-picon.el (declare-function): Add compat definition.
3266         (image-size): Declare.
3267
3268         * gnus-group.el (tool-bar-map):
3269         * gnus-sum.el (tool-bar-map): Define for compiler.
3270
3271         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
3272
3273         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
3274
3275         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
3276         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
3277         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
3278         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
3279         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
3280         * sieve-manage.el, spam-report.el, spam.el:
3281         Remove unnecessary eval-and-compile of autoloads.
3282
3283 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
3284
3285         * auth-source.el: Precise Tramp doc.
3286
3287 2008-06-07  Glenn Morris  <rgm@gnu.org>
3288
3289         * nnmairix.el: Remove unnecessary eval-when-compile.
3290
3291 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3292
3293         * lpath.el: Fbind propertize for XEmacs 21.4.
3294
3295 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
3296
3297         * nnir.el: Move here from ../contrib.
3298
3299 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3300
3301         * gnus-util.el (gnus-read-shell-command): New function.
3302         * mm-decode.el (mm-pipe-part):
3303         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
3304
3305 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3306
3307         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
3308
3309 2008-06-03  Glenn Morris  <rgm@gnu.org>
3310
3311         * pop3.el (nnheader-accept-process-output): Autoload it.
3312
3313 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3314
3315         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
3316         are not 2-digit hexadecimal characters that follow `%'s.
3317
3318 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
3319
3320         * message.el (message-bogus-recipient-p): Fix type in doc string.
3321         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
3322         (message-bogus-addresses): Rename from message-bogus-address-regexp.
3323         Improve custom options.
3324         (message-bogus-recipient-p): Adjust accordingly.
3325
3326 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
3327
3328         * parse-time.el (parse-time-months, parse-time-weekdays): Add
3329         long-form month and day names.
3330
3331 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3332
3333         * dgnushack.el: Autoload debug, eudc-expand-inline and
3334         pgg-snarf-keys-region for XEmacs.
3335
3336         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
3337
3338         * nnmairix.el: Require edmacro when compiling with XEmacs.
3339
3340 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
3341
3342         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
3343         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
3344
3345 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
3346
3347         * auth-source.el: Add more docs.
3348
3349         * netrc.el (netrc-machine): Always match if the port is not given.
3350
3351 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3352
3353         * nnheader.el (nnheader-read-timeout): Change the default timeout from
3354         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
3355         retrieval faster in some cases, but might make CPU usage larger.  If
3356         this has any bad side effects, we might revert this change.
3357
3358         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
3359         seems to make mail retrieval much, much faster.
3360         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
3361         unconditionally.
3362
3363         * gnus-draft.el (gnus-group-send-queue): Bind
3364         message-send-mail-partially-limit to nil to avoid being prompted.
3365
3366 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
3367
3368         * mml.el (mml-attach-buffer): Prompt for `disposition'.
3369
3370         * message.el (message-bogus-address-regexp): Fix and improve custom
3371         type.
3372         (message-setup-hook): Add message-check-recipients as custom option.
3373
3374 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
3375
3376         * message.el (message-cite-function): Remove bogus autoload which crept
3377         in during merge from v5-10.
3378
3379 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
3380
3381         * nnimap.el (nnimap-open-connection): Fix login/password bug.
3382
3383         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
3384
3385         * auth-source.el: Preliminary Tramp docs.
3386         (auth-sources): Change the default auth-sources to use
3387         EPA .gpg files.
3388
3389 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
3390
3391         * nntp.el: Autoload `auth-source-user-or-password'.
3392         (nntp-send-authinfo): Use it.
3393
3394         * nnimap.el: Autoload `auth-source-user-or-password'.
3395         (nnimap-open-connection): Use it.
3396
3397         * auth-source.el: Added docs on using with url-auth.  Import gnus-util
3398         for the gnus-message function.
3399         (auth-source-user-or-password): Use it.
3400
3401 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3402
3403         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
3404         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
3405         (rfc2104-hash): Use it.
3406
3407 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
3408
3409         * gnus-art.el (gnus-article-toggle-truncate-lines):
3410         Don't use `iff' in docstring.
3411
3412 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
3413
3414         * gnus-registry.el: Adjusted copyright dates and added a keyword.
3415
3416         * gnus-util.el (gnus-extract-address-component-name)
3417         (gnus-extract-address-component-email): Convenience functions around
3418         `gnus-extract-address-components'.
3419
3420         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
3421         Use `gnus-extract-address-component-email' to fix bug of comparing full
3422         sender name to `user-mail-address'.
3423
3424 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
3425
3426         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
3427         catch/throw to optimize.
3428         (gnus-registry-find-keywords): Just use member to find a keyword.
3429
3430 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3431
3432         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
3433         is current before calling gnus-server-prepare.
3434         (gnus-server-setup-buffer, gnus-server-update-server)
3435         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
3436
3437 2008-05-04  Juri Linkov  <juri@jurta.org>
3438
3439         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
3440         (mailcap-file-default-commands): Use mailcap-replace-in-string
3441         instead of replace-regexp-in-string, and mailcap-delete-duplicates
3442         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
3443
3444 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
3445
3446         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
3447
3448 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3449
3450         * gnus.el: Bump version to 0.11.
3451
3452 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3453
3454         * gnus.el: No Gnus v0.10 is released.
3455
3456 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3457
3458         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
3459         hooks.
3460         (gnus-update-read-articles): Speed up non-marks-using users.
3461         (gnus-use-marks): Define gnus-use-marks.
3462         (gnus-propagate-marks): Rename variable to something more sensible.
3463
3464 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
3465
3466         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
3467         (gmm-image-load-path-for-library): Fix typos in docstrings.
3468         (gmm-message): Reflow docstring.
3469
3470 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
3471
3472         * mail-source.el (mail-source-set-1, mail-source-bind):
3473         Move auth-source code out of the macro to clean it up and fix bugs.
3474
3475 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
3476
3477         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
3478         by sender if it's equal to user-mail-address, it's likely to be
3479         useless.
3480
3481         * mail-source.el (mail-source-bind): Don't use user or password if they
3482         are not bound.  Unintern them if they are nil.  Don't use server unless
3483         it's bound, and default it to empty string otherwise.
3484
3485 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
3486
3487         * mail-source.el: Load auth-source.el.
3488         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
3489         get user name or password, if auth-sources is set up.
3490
3491         * gnus-registry.el (gnus-registry-split-strategy): New variable for
3492         strategy of splitting with parent.
3493         (gnus-registry-split-fancy-with-parent)
3494         (gnus-registry-post-process-groups): Use it and fix prior
3495         bug (returning a list as the split result).
3496
3497         * auth-source.el (auth-sources): Remove server parameter.
3498         (auth-source-pick, auth-source-user-or-password)
3499         (auth-source-user-or-password-imap)
3500         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3501         (auth-source-user-or-password-sftp)
3502         (auth-source-user-or-password-smtp): Remove server parameter.
3503
3504 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
3505
3506         * smime.el (smime-sign-region, smime-encrypt-region)
3507         (smime-decrypt-region):
3508         Remove redundant calls to `generate-new-buffer-name'.
3509
3510 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
3511
3512         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
3513         Don't use QP for message/rfc822.
3514         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
3515
3516 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3517
3518         * sieve-manage.el (sieve-string-bytes): Remove.
3519         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
3520         correct byte-length only if the process's coding-system is the same as
3521         the one used internally by Emacs to represent strings.
3522
3523 2008-04-22  Juri Linkov  <juri@jurta.org>
3524
3525         * mailcap.el (mailcap-file-default-commands): New function.
3526
3527 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3528
3529         * message.el (message-signature-separator, message-cite-function):
3530         Change custom version.
3531
3532 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
3533
3534         * tls.el (tls-program): Add -ign_eof argument to call the openssl
3535         commands.
3536         (tls-checktrust): Ditto.
3537
3538 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3539
3540         * mm-decode.el (mm-display-external): Make temp file read-only.
3541
3542 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
3543
3544         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
3545         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
3546         `C-c C-f d'.
3547
3548 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
3549
3550         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
3551
3552 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
3553
3554         * gnus.el: Bump version to 0.9.
3555
3556 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
3557
3558         * gnus.el: No Gnus v0.8 is released.
3559
3560 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3561
3562         * mail-source.el (mail-source-value):
3563         Prefer fboundp to functionp so it works with macros as well.
3564
3565 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3566
3567         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3568         Fix last change in case the element is not even a symbol.
3569
3570 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3571
3572         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3573         Prefer fboundp to functionp so it works with macros as well.
3574
3575 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
3576
3577         * auth-source.el: Added docs.
3578         (auth-sources): Modify format to support server.
3579         (auth-source-pick, auth-source-user-or-password)
3580         (auth-source-user-or-password-imap)
3581         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3582         (auth-source-user-or-password-sftp)
3583         (auth-source-user-or-password-smtp): Add server parameter.
3584
3585 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
3586
3587         * gnus-registry.el: Initialize the registry when gnus-registry-install
3588         is t.
3589
3590 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3591
3592         * compface.el (uncompface): Make buffer unibyte.
3593
3594 2008-04-05  Glenn Morris  <rgm@gnu.org>
3595
3596         * gnus-ems.el (mm-disable-multibyte): Autoload it.
3597
3598 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3599
3600         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer): Prefer
3601         mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
3602
3603         * nnheader.el (nnheader-init-server-buffer): Change buffer's
3604         multibyteness after rather than before erasing it.
3605
3606         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
3607         mm-with-multibyte.
3608         (gnus-request-article-this-buffer): Make sure the proper decoding is
3609         used if gnus-original-article-buffer happens to be unibyte.
3610
3611         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
3612         default-enable-multibyte-characters.
3613
3614         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
3615         default-enable-multibyte-characters.
3616
3617         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
3618
3619         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
3620
3621 2008-04-02  Simon Josefsson  <simon@josefsson.org>
3622
3623         * imap.el (imap-enable-exchange-bug-workaround): New variable.
3624         (imap-message-copyuid-1): Use it.
3625         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
3626         J. Williams in
3627         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
3628
3629         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
3630         imap-enable-exchange-bug-workaround.
3631         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
3632
3633 2008-04-01  Simon Josefsson  <simon@josefsson.org>
3634
3635         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
3636         a 100 byte status-checks into a 2-3MB transfer for each group.
3637         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
3638         to enable bug workaround or not.
3639         (nnimap-find-minmax-uid): Only enable workaround conditionally.
3640
3641 2008-03-31  Glenn Morris  <rgm@gnu.org>
3642
3643         * message.el (mml2015-use): Declare for compiler.
3644         (message-info): Require mml2015 when appropriate.
3645
3646 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
3647
3648         * Makefile.in (EMACS_COMP): Quote directory name that might contain
3649         whitespace.
3650
3651 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3652
3653         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
3654         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
3655         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
3656         (nntp-service-to-port): New function.
3657         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
3658         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
3659         (nntp-open-netcat-stream): New function.
3660         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
3661
3662 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
3663
3664         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
3665
3666 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3667
3668         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
3669
3670 2008-03-28  Magnus Henoch  <mange@freemail.hu>
3671
3672         * dns.el (dns-write): Use set-buffer-multibyte.
3673
3674 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
3675
3676         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
3677
3678 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
3679
3680         * message.el (message-signature-separator): Change default.
3681         Improve custom type.
3682         (message-cite-function): Change default to
3683         message-cite-original-without-signature.
3684
3685         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
3686         toggle.
3687
3688         * message.el (message-check-news-body-syntax): Fix signature check.
3689         (message-setup-1): Mark buffer as unmodified _after_ running
3690         message-setup-hook and handling message-alternative-emails.
3691         (message-shorten-references): Be more strict when building list of
3692         valid references to comply with GNKSA.
3693
3694         * gnus-group.el (gnus-read-ephemeral-bug-group)
3695         (gnus-read-ephemeral-debian-bug-group)
3696         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
3697
3698         * message.el (message-info): Don't use booleanp which isn't supported
3699         in Emacs 21 and XEmacs.
3700
3701 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
3702
3703         * gnus-group.el (gnus-gmane-group-download-format): Rename from
3704         gnus-group-gmane-group-download-format.
3705         (gnus-group-read-ephemeral-gmane-group): Rename from
3706         gnus-group-read-ephemeral-gmane-group.
3707         (gnus-read-ephemeral-gmane-group-url): Rename from
3708         gnus-group-read-ephemeral-gmane-group-url.
3709         (gnus-bug-group-download-format-alist): New variable.
3710         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
3711         (gnus-read-ephemeral-emacs-bug-group): New commands.
3712
3713 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
3714
3715         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
3716         (gnus-visible-headers): Improve custom type.
3717
3718 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
3719
3720         * mml.el (mml-menu): Add workarounds for XEmacs.
3721
3722         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
3723         X-Boundary header.
3724
3725         * message.el (message-simplify-recipients): Fix previous commit.
3726
3727 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3728
3729         * mm-util.el (mm-set-buffer-multibyte): New function.
3730         * mm-decode.el (mm-copy-to-buffer): Use it.
3731
3732 2008-03-19  Glenn Morris  <rgm@gnu.org>
3733
3734         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
3735         Accidentally removed in the sync process with Emacs.
3736
3737 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
3738
3739         * message.el (message-alter-recipients-discard-bogus-full-name):
3740         New function.
3741         (message-alter-recipients-function): New variable.
3742         (message-get-reply-headers): Use it.
3743         (message-replace-header): New helper function.
3744         (message-recipients-without-full-name): New variable.
3745         (message-simplify-recipients): New command.
3746
3747         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
3748
3749         * message.el (message-info): Handle EasyPG manual.
3750
3751         * mml.el (mml-menu): Add entry for EasyPG.
3752
3753 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
3754
3755         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
3756         parameter.
3757
3758         * message.el (message-disassociate-draft): Specify drafts group name
3759         fully.
3760
3761 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
3762
3763         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Eliminate
3764         unnecessary duplicates from the match list.
3765
3766 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3767
3768         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
3769
3770         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
3771
3772         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
3773         args of `how-many' of which the XEmacs version doesn't take; declare
3774         Info-index-next as function.
3775
3776 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
3777
3778         * gnus-score.el (gnus-score-headers): Fix handling of
3779         gnus-inhibit-slow-scoring.
3780
3781         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
3782         string.
3783         (gnus-button-url-regexp): Improve handling of parenthesis.
3784         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
3785         (gnus-button-handle-info-keystrokes): Handle index entries.
3786
3787 2008-03-15  Glenn Morris  <rgm@gnu.org>
3788
3789         * parse-time.el (parse-time-string): Simplify.
3790
3791 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3792
3793         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
3794         Incoming* files.
3795
3796 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
3797
3798         * auth-source.el (auth-sources): Renamed from auth-source-choices.
3799         (auth-source-pick): Use it.
3800
3801 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3802
3803         * binhex.el (binhex-decode-region-internal):
3804         * uudecode.el (uudecode-decode-region-internal):
3805         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
3806         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
3807         setting default-enable-multibyte-characters.
3808
3809 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
3810
3811         * auth-source.el (auth-source-protocols)
3812         (auth-source-protocols-customize, auth-source-choices): Added and
3813         modified variable customizations and defaults.
3814         (auth-source-pick, auth-source-user-or-password)
3815         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
3816         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3817         (auth-source-user-or-password-sftp)
3818         (auth-source-user-or-password-smtp): Use new variables and provide an
3819         interface to netrc.el.
3820
3821 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3822
3823         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
3824         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
3825         Make sure the nntp port to specify is a string.
3826
3827 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3828
3829         * nntp.el: Use with-current-buffer.
3830         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
3831         dubious mm-with-unibyte-current-buffer.
3832         (nntp-with-open-group-function): New function extracted from
3833         nntp-with-open-group macro.
3834         (nntp-with-open-group): Use the function, so it's easier to debug.
3835         Add indentation and debugging info.
3836         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Recommend
3837         the use of the netcat alternatives.
3838
3839         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
3840         Avoid mm-string-as-multibyte as well.
3841
3842         * nnweb.el (nnweb-insert-html):
3843         Remove use of nnheader-string-as-multibyte.
3844
3845         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
3846         (nnheader-string-as-multibyte): Remove.
3847
3848         * mm-view.el: Use inhibit-read-only.
3849         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
3850         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
3851         or unibyte-string.
3852
3853         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
3854         (mm-uu-yenc-extract): Use with-current-buffer.
3855
3856         * gnus-soup.el (gnus-soup-send-packet): Don't use
3857         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
3858
3859         * nnmh.el: Use with-current-buffer.
3860         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
3861         mm-string-as-multibyte on the output of mm-encode-coding-string.
3862
3863         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
3864         (nnimap-request-move-article): Use with-current-buffer.
3865
3866         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
3867         inserting the handle-buffer's text, so the implicit multibyte->unibyte
3868         conversion uses string-make-unibyte rather than string-as-unibyte.
3869
3870         * gnus-msg.el: Use with-current-buffer.
3871
3872         * message.el (message-ignored-resent-headers): Add "Delivered-To".
3873
3874 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
3875
3876         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
3877         string for caching if it is 'PIN.
3878
3879 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3880
3881         * lpath.el: Consider the case without Emacs/W3.
3882
3883 2008-03-08  Glenn Morris  <rgm@gnu.org>
3884
3885         * time-date.el (date-to-time, time-subtract, time-add)
3886         (safe-date-to-time): Doc fixes.
3887
3888 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
3889
3890         * mail-source.el (mail-source-delete-old-incoming-confirm):
3891         Change default to nil.
3892         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
3893
3894 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3895
3896         * lpath.el: Rearrange.
3897
3898         * gnus-art.el (gnus-narrow-to-page): Position point properly.
3899         (gnus-article-goto-prev-page): Work for articles having ^L's.
3900
3901         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
3902
3903         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
3904
3905 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
3906
3907         * gnus-bookmark.el: Adjust for renames in bookmark.el.
3908         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
3909         (gnus-bookmark-jump): Adjust some variable names.
3910
3911 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
3912
3913         * auth-source.el: New package.
3914         (auth-source-choices): Add customization entry point variable.
3915
3916         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
3917         bug.
3918
3919 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
3920
3921         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
3922         (gnus-registry-initialize, gnus-registry-install-p): Use it.
3923         (gnus-registry-install-shortcuts): Rename from
3924         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
3925         the `gnus-registry-mark-map' keymap dynamically from
3926         `gnus-registry-marks'.  The generated functions update the summary line
3927         when a registry mark is added or deleted, and will call
3928         `gnus-registry-install-p' (see the comments in the code).
3929         (gnus-registry-user-format-function-M): Use concat intelligently.
3930
3931         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
3932         the registry mark functions.
3933
3934 2008-03-05  Glenn Morris  <rgm@gnu.org>
3935
3936         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
3937         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
3938         gnus-art.
3939         (top-level): No need to load own source when compiling.
3940
3941 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
3942
3943         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
3944         Suggested by <chris.anderton@zetnet.co.uk>.
3945
3946 2008-03-04  Glenn Morris  <rgm@gnu.org>
3947
3948         * gnus-sum.el (top-level): No need to require gnus when compiling,
3949         since unconditionally required near start of file.
3950         (gnus-summary-display-while-building): Move definition before use.
3951
3952 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
3953
3954         * gnus-registry.el (gnus-registry-user-format-function-M): Add
3955         formatting function.
3956
3957 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
3958
3959         * gnus-registry.el (gnus-registry-marks): Changed format to be nicer
3960         with plists.
3961         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
3962         Use new format.
3963
3964 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3965
3966         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
3967         `where-is-internal' that returns a range of key sequences.
3968
3969 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3970
3971         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
3972
3973         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
3974         (gnus-summary-jump-to-group): Consider windows on other displayed
3975         frames as well.  Similar changes might be needed elsewhere, but that's
3976         the one I've bumped into during my use.
3977
3978         * nndoc.el (nndoc-oe-dbx-type-p):
3979         * gnus-msg.el (gnus-debug):
3980         * gnus-group.el (gnus-update-group-mark-positions):
3981         Use mm-string-to-multibyte.
3982
3983 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
3984
3985         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
3986         doesn't handle NotDashEscaped.
3987
3988         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
3989         (mml-dnd-attach-options): Fix typo in custom choice.
3990
3991         * gnus-group.el (gnus-group-read-ephemeral-gmane-group): Change
3992         nndoc-article-type to mbox.
3993         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
3994
3995         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
3996         to nil, instead of html2text.
3997
3998         * imap.el (imap-debug): Add `imap-ping-server'.
3999
4000         * gnus-bookmark.el: Add FIXMEs.
4001
4002         * message.el (message-form-letter-separator)
4003         (message-send-form-letter-delay): New variables.
4004         (message-send-form-letter): Use them.  New command to send form
4005         letters.  Requested by Uwe Siart.
4006         (message-send-mail-function): Doc fix.  Add "Other" custom option.
4007
4008 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
4009
4010         * Update copyright years.
4011
4012 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
4013
4014         Sync from EMACS_22_BASE.
4015
4016         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
4017
4018 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
4019
4020         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
4021         empty author.
4022
4023 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
4024
4025         * gnus-registry.el (gnus-registry-marks): Add variable for
4026         customization of marks and their appearance.
4027         (gnus-registry-read-mark): Use it.
4028         (gnus-registry-do-marks): Add utility function to loop through
4029         `gnus-registry-marks'.
4030         (gnus-registry-install-shortcuts-and-menus): Add function to install
4031         shortcuts and menus.
4032         (gnus-registry-initialize): Use it.
4033         (gnus-registry-default-mark): Clarify documentation.
4034
4035 2008-02-29  Glenn Morris  <rgm@gnu.org>
4036
4037         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
4038         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
4039         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
4040         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
4041         Change defcustom :version from 23.0 to 23.1.
4042
4043 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
4044
4045         * gnus-registry.el (gnus-registry-follow-group-p)
4046         (gnus-registry-post-process-groups): Add functions to aid registry
4047         splitting and improve logging.  Clarify behavior in function
4048         documentation.
4049         (gnus-registry-split-fancy-with-parent): Use them.
4050
4051 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4052
4053         * gnus-art.el: Use with-current-buffer.
4054
4055 2008-02-27  David Engster  <dengste@eml.cc>
4056
4057         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
4058         Express real group name in the response.
4059
4060 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4061
4062         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
4063         (nnmairix-last-server, nnmairix-current-server): Defvar them.
4064         (nnmairix-goto-original-article): Defvar gnus-registry-install and
4065         autoload gnus-registry-fetch-group when compiling.
4066         (nnmairix-request-group-with-article-number-correction): Remove
4067         unreferenced argument passed to nnmairix-call-backend.
4068
4069 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
4070
4071         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
4072         (mm-uu-extract): Improve face for low color ttys.  Reported by Sascha
4073         Wilde.
4074
4075 2008-02-27  Glenn Morris  <rgm@gnu.org>
4076
4077         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
4078         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
4079         variables to defconsts.  Convert comments to doc-strings.
4080         (nnmairix-last-server, nnmairix-current-server): Convert from free
4081         variables to defvars.  Convert comments to doc-strings.
4082         (gnus-registry-fetch-group): Autoload.
4083         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
4084         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
4085         (nnmairix-widget-build-editable-fields): Use car cddr rather than
4086         caddr.
4087         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
4088         nnmairix-request-group-with-article-number-correction call.
4089         (nnmairix-fast, nnmairix-group): New, less general names, for free
4090         variables passed from nnmairix-request-group to
4091         nnmairix-request-group-with-article-number-correction.  Declare.
4092         (nnmairix-request-group-with-article-number-correction):
4093         Use nnmairix-fast, nnmairix-group rather than fast, group.
4094
4095 2008-02-26  David Engster  <dengste@eml.cc>
4096
4097         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
4098         version 0.5.
4099
4100 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
4101
4102         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
4103         instead of making an extra function call.  Don't add the current group
4104         to articles only when they have the group.  Use
4105         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
4106         Reported by David <de_bb@arcor.de>.
4107
4108 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4109
4110         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
4111         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
4112
4113 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
4114
4115         * mail-source.el (mail-source-delete-incoming): Change default.
4116         Supplement doc string.
4117
4118         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
4119
4120 2008-02-14  Glenn Morris  <rgm@gnu.org>
4121
4122         * time-date.el (format-seconds): New function.
4123
4124 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
4125
4126         * nnmail.el (nnmail-message-id-cache-file): Derive from
4127         `gnus-home-directory'.
4128
4129 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
4130
4131         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
4132         Document negative prefix.
4133
4134         * gnus-group.el (gnus-group-read-group): Document negative prefix.
4135
4136 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4137
4138         * message.el (message-unsent-separator): Add the Exim bounce
4139         separator.
4140
4141 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
4142
4143         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
4144         list.
4145         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
4146         recipient/signer list.
4147
4148 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4149
4150         * Makefile.in (datarootdir): Define.
4151         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
4152         name that might contain whitespace.
4153
4154 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
4155
4156         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
4157         fbound (Emacs 23 unicode), signal an error.
4158
4159 2008-02-08  Glenn Morris  <rgm@gnu.org>
4160
4161         * gnus-art.el (pgg-display-output-buffer): Declare as function.
4162
4163 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
4164
4165         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
4166         ports to the calls to `netrc-machine-user-or-password' in addition to
4167         "imap" and "imaps".
4168
4169 2008-02-01  Zhang Wei  <id.brep@gmail.com>
4170
4171         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
4172
4173         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
4174
4175 2008-02-01  Kenichi Handa  <handa@m17n.org>
4176
4177         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
4178         rfc2104-hexstring-to-bitstring and changed to return a byte list.
4179         (rfc2104-hash): Convert the result of concat to unibyte string.
4180
4181 2008-02-01  Dave Love  <fx@gnu.org>
4182
4183         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
4184         coding-system-for-read.
4185         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
4186
4187 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
4188
4189         * gnus.el (gnus-group-startup-message): Add `find-image' call before
4190         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
4191         <hanche@math.ntnu.no>.
4192
4193 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4194
4195         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
4196
4197         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
4198
4199 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
4200
4201         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
4202         * message.el (message-beginning-of-line): Use featurep instead of bound
4203         tests in order to resolve conditionals at compile time.
4204
4205 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
4206
4207         * mail-source.el (mail-sources): Add `group' choice.
4208
4209         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
4210         parameter `in-group' to control into which group the articles go.
4211         Add treatment of `group' mail-source.
4212
4213 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4214
4215         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
4216
4217         * mm-decode.el (mm-dissect-buffer): Decode description.
4218
4219         * mml.el (mml-to-mime): Encode message header first.
4220
4221 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4222
4223         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
4224         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
4225
4226         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
4227         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
4228
4229 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
4230
4231         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
4232
4233 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4234
4235         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
4236         prefix keys.
4237         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
4238         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
4239         gnus-xmas.el.
4240
4241         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
4242         (gnus-xmas-article-describe-bindings): New function.
4243         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
4244         gnus-xmas-article-describe-bindings.
4245
4246         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
4247
4248 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
4249
4250         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
4251         Add new variables for article mark management.
4252         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
4253         list of extra data entries which, when present, will indicate that the
4254         article ID should not be trimmed from the registry.
4255         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
4256         functions.
4257         (gnus-registry-read-mark): New function to read a mark name from the
4258         user.
4259         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
4260         (gnus-registry-set-article-mark-internal): New functions to add and
4261         remove marks.
4262         (gnus-registry-get-article-marks): New function to show the marks for
4263         an article, or retrieve them for further use.
4264
4265 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4266
4267         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
4268         keys when no argument is given.
4269
4270 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
4271
4272         * imap.el (imap-ping-server): New variable.
4273         (imap-opened): On add extra ping if imap-ping-server is non-nil.
4274         (imap-ping-server): Minor doc string fixes.
4275
4276 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
4277
4278         * imap.el (imap-ping-server): New function.
4279         (imap-opened): Call imap-ping-server.
4280
4281 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
4282
4283         * gnus-sum.el (gnus-article-sort-by-random)
4284         (gnus-thread-sort-by-random): Fix doc strings.  Reported by
4285         jidanni@jidanni.org.
4286
4287 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4288
4289         * gnus-art.el (gnus-article-describe-bindings): New function.
4290         (gnus-article-read-summary-keys): Use it.
4291         (gnus-article-mode-map): Bind `C-h b' to it.
4292
4293 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4294
4295         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
4296         XEmacs.
4297         (gnus-article-describe-key, gnus-article-describe-key-briefly): Protect
4298         against non-character events.
4299
4300         * lpath.el: Fbind map-keymap for Emacs 21.
4301
4302 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
4303
4304         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url): New
4305         command.
4306         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
4307         instead of END.  Change name of the temp file.
4308         (gnus-group-gmane-group-download-format): Add doc string.  Make it
4309         customizable.
4310
4311 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4312
4313         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
4314         bind `S W' to gnus-article-wide-reply-with-original; set default
4315         binding to gnus-article-read-summary-send-keys.
4316         (gnus-article-read-summary-keys): Fix the order of keys; display
4317         continuation keys correctly in the echo area; describe bindings
4318         correctly when keys end with `C-h'.
4319         (gnus-article-read-summary-send-keys): New function.
4320         (gnus-article-describe-key, gnus-article-describe-key-briefly): Work
4321         for gnus-article-read-summary-send-keys; display continuation keys
4322         correctly in the echo area.
4323         (gnus-article-reply-with-original): Ignore prefix argument.
4324         (gnus-article-wide-reply-with-original): New function.
4325
4326         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
4327         Emacs 21.
4328
4329 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
4330
4331         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
4332         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
4333
4334 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
4335
4336         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
4337         (gnus-group-read-ephemeral-gmane-group): New command.
4338
4339 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
4340
4341         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
4342
4343 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
4344
4345         * message.el (message-send-mail-function): Increase custom version.
4346
4347         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
4348         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
4349
4350 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
4351
4352         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
4353         for the cases where imap-authenticate is called with a nil buffer
4354         parameter.
4355
4356 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4357
4358         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
4359         html parts correctly; support forwarded messages.
4360         (gnus-article-browse-html-article): Remove work buffers.
4361
4362         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
4363         compiling.
4364         (netrc-bound-and-true-p): New macro.
4365         (netrc-parse): Use it instead of bound-and-true-p that is not available
4366         in XEmacs 21.4.
4367
4368 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
4369
4370         * gnus-registry.el (gnus-registry-mark-article)
4371         (gnus-registry-article-marks): Add functionality to mark articles
4372         through the Gnus registry.
4373
4374         * encrypt.el: Clarify documentation for the new pgg method.
4375         (encrypt-file-alist): Add PGG option.
4376         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
4377         functionality.  Abstract password key and messaging to external
4378         functions.
4379         (encrypt-password-key, encrypt-get-passphrase-if-needed)
4380         (encrypt-message-method-and-cipher): Add new convenience external
4381         functions.
4382         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
4383         (encrypt-pgg-process-buffer): Add PGG functionality glue.
4384
4385         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
4386         (netrc-parse): Use encrypt-file-alist to determine if
4387         encrypt-find-model or encrypt-insert-file-contents should be used.
4388
4389         * encrypt.el: Clarify documentation.  Load password-cache or
4390         password, whichever one is found first, instead of autoloading.
4391
4392 2007-12-19  Glenn Morris  <rgm@gnu.org>
4393
4394         * mml.el (message-options-set, message-narrow-to-head)
4395         (message-in-body-p, message-mail-p, message-encode-message-body):
4396         Autoload.
4397         (message-remove-header, message-narrow-to-headers-or-head)
4398         (message-subscribed-p, message-make-mail-followup-to)
4399         (message-position-on-field, message-news-p)
4400         (message-options-set-recipient, message-generate-headers)
4401         (message-sort-headers): Declare as functions.
4402
4403 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
4404
4405         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
4406         convention in doc string.
4407
4408 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4409
4410         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
4411         title to html parts.
4412         (gnus-article-browse-html-article): Pass message header to it.
4413
4414         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
4415
4416 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
4417
4418         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
4419         or password compatible with XEmacs.
4420
4421 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
4422
4423         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
4424         format document.
4425         (gnus-mime-delete-part): Don't write description line if empty.
4426         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
4427
4428 2007-12-14  Johan Bockgård  <bojohan@gnu.org>
4429
4430         * gnus-sum.el (gnus-summary-mark-unread-as-read)
4431         (gnus-summary-mark-read-and-unread-as-read)
4432         (gnus-summary-mark-current-read-and-unread-as-read)
4433         (gnus-summary-mark-unread-as-ticked): Doc fix.
4434         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
4435
4436 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4437
4438         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.  Reported by
4439         Christoph Conrad <christoph.conrad@gmx.de>.
4440
4441 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4442
4443         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
4444         yes-or-no-p.
4445
4446 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4447
4448         * mm-decode.el (mm-add-meta-html-tag): New function.
4449         (mm-save-part-to-file, mm-pipe-part): Use it.
4450
4451         * gnus-art.el (gnus-article-browse-delete-temp-files): Use
4452         gnus-y-or-n-p instead of y-or-n-p.
4453         (gnus-article-browse-html-parts): Work with message/external-body; use
4454         mm-add-meta-html-tag.
4455
4456 2007-12-11  Glenn Morris  <rgm@gnu.org>
4457
4458         * gnus-cache.el: Require gnus-sum not just when compiling.
4459
4460         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
4461
4462         * gnus-int.el (gnus-server-opened, gnus-status-message): Move
4463         definitions before use.
4464
4465         * mm-decode.el: Require gnus-util.
4466         (mm-remove-part): Only call delete-annotation on XEmacs.
4467
4468         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
4469
4470         * nnmail.el: Require gnus-int.
4471
4472         * spam.el: Move `require's before `eval-when-compile's.
4473
4474         * gnus-ems.el (gnus-alive-p):
4475         * gnus-fun.el (message-goto-eoh):
4476         * gnus-util.el (gnus-group-name-decode):
4477         * mail-source.el (gnus-compress-sequence):
4478         * message.el (Info-goto-node, format-spec):
4479         * mm-bodies.el (message-options-get):
4480         * mm-decode.el (mm-view-pkcs7):
4481         * mm-util.el (gmm-write-region):
4482         * mml-smime.el (mml-compute-boundary)
4483         (gnus-completing-read-with-default):
4484         * mml.el (widget-button-press, gnus-make-hashtable):
4485         * mml1991.el (mm-decode-content-transfer-encoding)
4486         (mm-encode-content-transfer-encoding)
4487         (message-options-get, message-options-set):
4488         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
4489         * nnfolder.el (gnus-request-group):
4490         * nnheader.el (ietf-drums-unfold-fws):
4491         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
4492         * smime.el (gnus-run-mode-hooks):
4493         * spam-stat.el (gnus-message): Autoload.
4494
4495         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
4496         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
4497         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
4498         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
4499         Add declare-function compatibility definition.
4500
4501         * gnus-cache.el (nnvirtual-find-group-art):
4502         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
4503         (gnus-add-image, gnus-add-wash-type):
4504         * gnus-group.el (nnkiboze-score-file):
4505         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
4506         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
4507         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
4508         (message-tokenize-header, gnus-get-buffer-create)
4509         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
4510         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
4511         * gnus.el (gnus-group-decoded-name):
4512         * mail-source.el (imap-capability):
4513         * mm-bodies.el (message-options-set):
4514         * mm-decode.el (gnus-configure-windows):
4515         * mm-extern.el (message-goto-body):
4516         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
4517         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
4518         (epg-sub-key-validity, message-options-set):
4519         * mml.el (widget-event-point, gnus-configure-windows):
4520         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
4521         * mml2015.el (epg-check-configuration, epg-configuration)
4522         (message-options-set):
4523         * nndb.el (nndb-request-article):
4524         * nnfolder.el (gnus-request-create-group):
4525         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
4526         * nnmaildir.el (gnus-group-mark-article-read):
4527         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
4528         * rfc1843.el (message-fetch-field):
4529         * spam.el (gnus-extract-address-components):
4530         Declare as functions.
4531
4532 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4533
4534         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
4535
4536         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
4537
4538         * lpath.el: Fbind run-mode-hooks for Emacs 21;
4539         bind show-trailing-whitespace for XEmacs.
4540
4541 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
4542
4543         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
4544         new no-op macro for backward compatibility.
4545
4546         * imap.el (imap-string-to-integer): New function.
4547
4548 2007-12-09  Glenn Morris  <rgm@gnu.org>
4549
4550         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
4551
4552         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
4553         * message.el, mm-view.el, sieve-manage.el, smime.el:
4554         Add declare-function compatibility definition.
4555
4556         * gnus-art.el (w3-region, w3m-region, Info-menu):
4557         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
4558         * gnus-sum.el (gnus-get-predicate):
4559         * gnus-util.el (mm-append-to-file, w32-focus-frame):
4560         * message.el (mail-abbrev-in-expansion-header-p):
4561         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
4562         (w3m-detect-meta-charset, w3m-region):
4563         * sieve-manage.el (password-read, password-cache-add)
4564         (password-cache-remove):
4565         * smime.el (password-read-and-add): Declare as functions.
4566
4567 2007-12-08  David Kastrup  <dak@gnu.org>
4568
4569         * gnus-sum.el (gnus-summary-simplify-subject-query):
4570         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
4571         `message'.
4572
4573 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4574
4575         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
4576         it to bind idna-program, installation-directory, defined-colors, and
4577         face-attribute for XEmacs of the version that compiles defcustom forms.
4578
4579 2007-12-07  Glenn Morris  <rgm@gnu.org>
4580
4581         * gnus-art.el (article-make-date-line): Revert previous change.
4582
4583 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
4584
4585         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
4586
4587 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
4588
4589         * nnmaildir.el (nnmaildir-request-update-info): Improved performance.
4590         Call gnus-add-to-range ranges only once with a prepared article-list.
4591
4592 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
4593
4594         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
4595         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
4596         group names with backslashes.  Reported by Tassilo Horn
4597         <tassilo@member.fsf.org>.
4598
4599 2007-12-06  Deepak Goel  <deego3@gmail.com>
4600
4601         * gnus-art.el (article-make-date-line):
4602         * gnus-start.el (gnus-load):
4603         * pop3.el (pop3-read-response): Fix buggy call to `error'.
4604
4605 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4606
4607         * gnus-art.el (gnus-use-idna)
4608         * gnus-start.el (gnus-site-init-file)
4609         * message.el (message-use-idna)
4610         * mm-uu.el (mm-uu-hide-markers)
4611         * smiley.el (smiley-style): Revert changes that suppress warnings.
4612
4613 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4614
4615         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
4616         specify charset to html source.  Reported by Christoph Conrad
4617         <christoph.conrad@gmx.de>.
4618
4619 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4620
4621         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
4622         idna-program in order to suppress byte compile warning issued by XEmacs
4623         that came to byte compile the default value section of defcustom forms
4624         recently.
4625
4626         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
4627         value of installation-directory.
4628
4629         * message.el (message-use-idna): Don't directly refer to the value of
4630         idna-program.
4631
4632         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
4633
4634         * smiley.el (smiley-style): Don't directly call face-attribute.
4635
4636 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
4637
4638         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
4639
4640         * gnus-dired.el: Reduce Gnus dependencies.
4641         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml): Don't
4642         require.  Use autoloads instead.
4643         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
4644         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
4645         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
4646         (gnus-dired-mode): Adjust doc string.
4647         (gnus-dired-mail-mode): New variable.
4648         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
4649         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
4650         (gnus-dired-mail-buffers): New function.  Return mail or message
4651         composition buffers.
4652         (gnus-dired-attach): Use it.
4653         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
4654         NO-DECODE.
4655         (gnus-dired-print): Use `gnus-print-buffer' depending on
4656         `gnus-dired-mail-mode'.
4657
4658 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
4659
4660         * rfc2047.el (rfc2047-encoded-word-regexp)
4661         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
4662         explaining what regexp patterns are for.
4663
4664 2007-12-04  Glenn Morris  <rgm@gnu.org>
4665
4666         * password.el: Move to password-cache.el.
4667
4668         * mml1991.el (password-read, password-cache-add, password-cache-remove):
4669         * mml2015.el (password-read, password-cache-add, password-cache-remove):
4670         * mml-smime.el (password-read, password-cache-add)
4671         (password-cache-remove):
4672         No need to autoload, since mml-sec requires password.
4673
4674         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
4675         * message.el (gnus-extract-address-components):
4676         * mml-smime.el (gnus-extract-address-components): Define for compiler.
4677
4678         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
4679         password.
4680
4681 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
4682
4683         * mailcap.el: Reduce dependencies.
4684         (mail-header-parse-content-type): Autoload.
4685         (mailcap-delete-duplicates): New alias.
4686         (mailcap-mime-info): Add optional argument NO-DECODE.
4687         (mailcap-mime-types): Use mailcap-delete-duplicates.
4688
4689         * message.el (message-ignored-supersedes-headers): Add "X-ID".
4690
4691 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
4692
4693         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
4694         (imap-parse-status): Upcase status-att for servers that sends them
4695         lower-case (e.g., MS Exchange 2007).
4696
4697 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4698
4699         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
4700         function.
4701
4702         * gnus-uu.el (gnus-uu-decode-yenc): New command.
4703         (gnus-uu-yenc-article): New function.
4704
4705         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
4706
4707         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original
4708         buffer.
4709
4710 2007-12-02  Glenn Morris  <rgm@gnu.org>
4711
4712         * binhex.el (binhex): New custom group.
4713         (binhex-decoder-program, binhex-decoder-switches)
4714         (binhex-use-external): Move to the binhex custom group.
4715
4716         * uudecode.el (uudecode): New custom group.
4717         (uudecode-decoder-program, uudecode-decoder-switches)
4718         (uudecode-use-external): Move to the uudecode custom group.
4719
4720         * netrc.el (top-level): Don't load `encrypt' features.
4721         (netrc-parse): Don't use encrypt.
4722         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
4723
4724         * encrypt.el: Remove file.
4725
4726 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
4727
4728         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
4729         matches on patches.
4730
4731         * gnus-art.el (gnus-article-browse-html-article): Mention
4732         `mm-text-html-renderer' in the doc string.
4733
4734         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
4735         string.  Add comments.
4736
4737         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
4738         if rhs is ASCII.
4739
4740 2007-12-01  Glenn Morris  <rgm@gnu.org>
4741
4742         * mail-source.el (top-level): Require format-spec before
4743         eval-when-compile.
4744
4745 2007-11-30  Glenn Morris  <rgm@gnu.org>
4746
4747         * encrypt.el: Require password, rather than autoloading password-read.
4748
4749 2007-11-29  Glenn Morris  <rgm@gnu.org>
4750
4751         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
4752         (sasl-make-client, sasl-next-step, sasl-step-data)
4753         (sasl-step-set-data): Declare as functions.
4754
4755 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
4756
4757         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
4758
4759 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
4760
4761         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
4762         certs should be verified and what is to be done in the event of a
4763         verification failure.
4764
4765         * gnus.el (gnus-method-to-server): Add an optional parameter so the
4766         caller can indicate whether the cache should be disregarded for this
4767         call.  This way the result of the call is reproducible at all times and
4768         can be considered a canonical server name for the supplied method.
4769         (gnus-agent-method-p): Canonicalize server names by pushing their
4770         method through `gnus-method-to-server' using the no-cache argument.
4771
4772         * gnus-srvr.el (gnus-server-insert-server-line): Call
4773         `gnus-method-to-server' with `no-cache' argument.
4774
4775         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
4776         gnus-agent-possibly-synchronize-flags as this should be called when the
4777         server is actually being opened.
4778         (gnus-agent-possibly-synchronize-flags)
4779         (gnus-agent-possibly-synchronize-flags-server): Move check for the
4780         flags file of an agentized server to the latter function.
4781
4782         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
4783         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
4784         after a connection has been established successfully.
4785
4786 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4787
4788         * gnus-art.el (article-display-face): Force to display face if called
4789         interactively; check if gnus-article-x-face-too-ugly matches author.
4790         (article-display-x-face): Display face even if From header is missing
4791         as article-display-face does.
4792
4793 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
4794
4795         * hashcash.el (message-narrow-to-headers-or-head)
4796         (message-fetch-field, message-goto-eoh)
4797         (message-narrow-to-headers): Declare as functions.
4798
4799 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
4800
4801         * mail-source.el (mail-sources): Default to fetch from file for
4802         compatibility with default of nnmail-spool-file.
4803
4804 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4805
4806         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
4807         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
4808         to look for encoded word that should be encoded again.
4809         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
4810         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
4811         encoding pattern.
4812         (rfc2047-decode-region): Switch strict regexp and loose one according
4813         to rfc2047-allow-irregular-q-encoded-words.
4814
4815 2007-11-25  Romain Francoise  <romain@orebokech.com>
4816
4817         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
4818
4819 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
4820
4821         * tls.el (tls-program): Provide more custom choices from
4822         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
4823         (tls-process-connection-type, tls-success): Remove "*" in doc string.
4824
4825 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4826
4827         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
4828         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
4829
4830         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
4831         `nnmail-spool-file'.
4832
4833         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
4834         `nnmail-spool-file'.
4835
4836         * gnus-move.el (gnus-change-server): Ditto.
4837
4838         * gnus-kill.el (gnus-batch-score): Ditto.
4839
4840         * gnus-cache.el (gnus-jog-cache): Ditto.
4841
4842         * gnus-msg.el (gnus-summary-reply):
4843         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
4844
4845 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4846
4847         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
4848         version.  Minor improvement to doc strings.
4849         (tls-program): Add comment.
4850
4851 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
4852
4853         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
4854         (tls-checktrust): New variable.  Check if GNU TLS complained about a
4855         mismatch between the hostname provided in the certificate and the name
4856         of the host connnecting to.
4857         (open-tls-stream): Use them.  Check certificates against trusted root
4858         certificates.
4859
4860 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4861
4862         * gnus-cache.el (gnus-cache-generate-nov-databases):
4863         Use nnml-generate-nov-databases-directory instead of
4864         nnml-generate-nov-databases-1.
4865
4866 2007-11-24  Glenn Morris  <rgm@gnu.org>
4867
4868         * message.el (message-tool-bar-retro): Update for rename
4869         mail_send.xpm->mail-send.xpm.
4870
4871 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
4872
4873         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
4874         `smime-ldap-search' for Emacs 22 and up.
4875
4876 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4877
4878         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
4879
4880         * message.el (message-send-mail-function): Fix error convention.
4881         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
4882         (message-widen-reply, message-send-mail, message-talkative-question)
4883         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
4884         (message-clone-locals, message-send-news): Use with-current-buffer.
4885         (message-insert-or-toggle-importance): Remove unused var `valid'.
4886         (message-make-references): Remove unused var `new-references'.
4887         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
4888
4889 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
4890
4891         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
4892         (spam-split-symbolic-return-positive): Reflow docstring.
4893         (spam-backends, spam-summary-exit-behavior)
4894         (spam-mark-ham-unread-before-move-from-spam-group)
4895         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
4896         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
4897         (spam-clear-cache, spam-backend-check, spam-install-backend)
4898         (spam-install-statistical-backend, spam-list-of-processors)
4899         (spam-group-processor-p, spam-split, spam-bogofilter-score)
4900         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
4901         (spam-check-crm114, spam-initialize, spam-unload-hook):
4902         Fix typos in docstrings.
4903
4904 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4905
4906         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
4907         been checked if they have never been read and those group levels are
4908         higher than the one that a user specified.
4909
4910 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4911
4912         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
4913         foreign groups unless a group level is specified by a user.
4914         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
4915
4916 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
4917
4918         * message.el (message-send-mail-function): Require sendmail.
4919
4920 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
4921
4922         * message.el (message-send-mail-function): Check for smtpmail too.
4923
4924         * utf7.el (utf7-encode, utf7-decode): Use coding system
4925         `utf-7'/`utf-7-imap' from utf-7.el' if available.
4926
4927         * message.el (message-send-mail-function): New function.
4928         (message-send-mail-function): Set default using
4929         message-send-mail-function.  Adjust doc string.
4930         (message-send-mail-with-mailclient): New function.
4931
4932 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
4933
4934         * smime.el (from):
4935         * rfc2047.el (message-posting-charset):
4936         * qp.el (mm-use-ultra-safe-encoding):
4937         * pop3.el (parse-time-months):
4938         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
4939         * nnml.el (files):
4940         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
4941         (jka-compr-compression-info-list, ange-ftp-path-format)
4942         (efs-path-regexp):
4943         * nndiary.el (files):
4944         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
4945         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
4946         (epg-digest-algorithm-alist, inhibit-redisplay)
4947         (password-cache-expiry):
4948         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
4949         (pgg-output-buffer, password-cache-expiry):
4950         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
4951         (efs-path-regexp):
4952         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
4953         (inhibit-redisplay):
4954         * mm-uu.el (file-name, start-point, end-point, entry)
4955         (gnus-newsgroup-name, gnus-newsgroup-charset):
4956         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
4957         (latin-unity-ucs-list):
4958         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
4959         (mm-uu-binhex-decode-function):
4960         * message.el (gnus-message-group-art, gnus-list-identifiers)
4961         (rmail-enable-mime-composing, gnus-local-organization)
4962         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
4963         (gnus-read-active-file, facemenu-add-face-function)
4964         (facemenu-remove-face-function, gnus-article-decoded-p)
4965         (tool-bar-mode):
4966         * mail-source.el (display-time-mail-function):
4967         * gnus-util.el (nnmail-pathname-coding-system)
4968         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
4969         (gnus-original-article-buffer, gnus-user-agent)
4970         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
4971         (xemacs-codename, sxemacs-codename, emacs-program-version):
4972         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
4973         * gnus-start.el (gnus-agent-covered-methods)
4974         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
4975         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
4976         (gnus-newsgroup-headers, gnus-group-list-mode)
4977         (gnus-group-mark-positions, gnus-newsgroup-data)
4978         (gnus-newsgroup-unreads, nnoo-state-alist)
4979         (gnus-current-select-method, mail-sources)
4980         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
4981         (nnmail-spool-file, gnus-cache-active-hashtb):
4982         * gnus-mh.el (mh-lib-progs):
4983         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
4984         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
4985         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
4986         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
4987         (gnus-group-buffer):
4988         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
4989         (font-lock-set-defaults):
4990         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
4991         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
4992         (gnus-summary-post-menu, total-parts, type, condition, length):
4993         * gnus-agent.el (gnus-agent-read-agentview):
4994         * flow-fill.el (show-trailing-whitespace):
4995         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
4996         eval-and-compile wrappers for byte compiler pacifiers.
4997
4998         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
4999         (mm-display-inline-fontify): Check for featurep 'xemacs not
5000         extent-list.
5001
5002         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
5003         itimer-list.
5004         (mm-create-image-xemacs): Only do something for XEmacs.
5005         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
5006
5007         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
5008
5009         * gnus-registry.el (gnus-adaptive-word-syntax-table):
5010         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
5011
5012 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
5013
5014         * nnimap.el (nnimap-split-download-body):
5015         * gnus-demon.el (gnus-demon):
5016         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
5017
5018 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5019
5020         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer): New
5021         macros.
5022         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
5023         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
5024         copy data from unibyte buffer to multibyte current buffer.
5025         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
5026         to copy data from unibyte current buffer to multibyte buffer.
5027         (nntp-make-process-buffer): Make process buffer unibyte.
5028
5029         * pop3.el (pop3-open-server): Fix typo in Lisp code.
5030
5031 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
5032
5033         * pop3.el (pop3-open-server): Accept and process data more robustly at
5034         connexion start to avoid spurious "POP SSL connexion failed" errors.
5035
5036 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5037
5038         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
5039         read group names.
5040
5041 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
5042
5043         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
5044
5045 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5046
5047         * nnmail.el (nnmail-parse-active): Make group names unibyte.
5048         (nnmail-save-active): Use a unibyte buffer when saving active file,
5049         which may contain non-ASCII group names.
5050
5051         * nnml.el (nnml-request-group): Decode group names in messages.
5052
5053 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
5054
5055         * message.el (message-citation-line-function)
5056         (message-insert-formatted-citation-line): Fix spelling of
5057         `message-insert-formated-citation-line'.
5058
5059 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
5060
5061         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
5062
5063 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5064
5065         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
5066         nnmail-pathname-coding-system.
5067
5068         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
5069         that a user enters; decode group names in messages.
5070
5071         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
5072
5073 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
5074
5075         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
5076
5077         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
5078
5079         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
5080         risky local variable.
5081
5082         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
5083
5084 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
5085
5086         * encrypt.el: Improve documentation to fix function name typo.
5087         Reported by Daiki Ueno <ueno@unixuser.org>.
5088
5089 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5090
5091         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
5092         even if the point is not in the last page of an article.
5093         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
5094         back to the previous page.
5095
5096 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
5097
5098         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
5099
5100 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5101
5102         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
5103
5104 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5105
5106         * message.el (message-check-news-body-syntax): Avoid
5107         mm-string-as-multibyte.
5108         (message-hide-headers): Don't assume (point-min)==1.
5109
5110 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
5111
5112         * message.el (message-remove-blank-cited-lines): Fix if remove is
5113         given.
5114         (message-bogus-address-regexp): New variable.
5115         (message-bogus-recipient-p): New function.
5116         (message-check-recipients): New command.
5117         (message-syntax-checks): Add `bogus-recipient'.
5118         (message-fix-before-sending): Add `bogus-recipient'.
5119
5120         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
5121         (gnus-treat-body-boundary): Don't test window-system.
5122
5123 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
5124
5125         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
5126
5127 2007-10-28  Miles Bader  <miles@gnu.org>
5128
5129         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
5130         at compile-time too.
5131
5132 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
5133
5134         * gnus-msg.el (gnus-message-setup-hook): Add
5135         `message-remove-blank-cited-lines' to options.
5136
5137 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
5138
5139         * message.el (message-remove-blank-cited-lines): New function.
5140         Suggested by Karl Plästerer.
5141
5142 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5143
5144         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
5145         mapc.
5146
5147         * imap.el (imap-open): Replace mapcar called for effect with mapc.
5148         (top-level): Use mapc to set functions to be traced for debugging.
5149
5150         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
5151         called for effect with while loop.
5152
5153         * message.el (message-talkative-question): Replace mapcar called for
5154         effect with mapc.
5155
5156         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
5157         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
5158         called for effect with dolist.
5159
5160         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
5161
5162         * nndiary.el: Use dolist instead of mapcar to add diary headers to
5163         gnus-extra-headers and nnmail-extra-headers.
5164
5165         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
5166         called for effect with dolist.
5167         (top-level): Use mapc to set functions to be traced for debugging.
5168
5169         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
5170         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
5171         dolist.
5172
5173         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
5174         Replace mapcar called for effect with mapc.
5175         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
5176         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
5177         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
5178         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
5179
5180         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
5181         remove-if that's a cl function.
5182
5183         * webmail.el (webmail-debug): Replace mapcar called for effect with
5184         dolist.
5185
5186         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
5187         with mapc.
5188
5189 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5190
5191         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
5192         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
5193         with while loop.
5194
5195         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
5196         functions from article-* functions.
5197         (gnus-multi-decode-header): Replace mapcar called for effect with
5198         dolist.
5199
5200         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
5201         (gnus-bookmark-show-details): Replace mapcar called for effect with
5202         while loop.
5203
5204         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
5205         called for effect with while loop.
5206
5207         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
5208         with dolist.
5209
5210         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Replace
5211         mapcar called for effect with dolist.
5212
5213         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
5214
5215         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
5216         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
5217         Replace mapcar called for effect with dolist.
5218         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
5219         mapc.
5220
5221         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
5222         Replace mapcar called for effect with dolist.
5223         (gnus-topic-list): Replace mapcar called for effect with mapc.
5224
5225         * gnus.el: Use mapc instead of mapcar to add autoloads.
5226
5227 2007-10-23  Richard Stallman  <rms@gnu.org>
5228
5229         * gnus-group.el (gnus-group-highlight): Mark as risky.
5230
5231 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5232
5233         * gnus.el (gnus-server-to-method): Return method found first in
5234         gnus-newsrc-alist.
5235
5236         * gnus-art.el (gnus-article-highlight-signature)
5237         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
5238         button overlay without the front stickiness.
5239
5240 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
5241
5242         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
5243         overview buffer needed a catch to receive its throw.
5244         (gnus-agent-flush-cache): Declared as interactive to make this function
5245         easier to use.
5246
5247 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
5248
5249         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
5250         `next-line'.
5251
5252 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5253
5254         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
5255         exclude address matching message-dont-reply-to-names.
5256
5257 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5258
5259         * gnus-util.el (gnus-string<): New function.
5260
5261         * gnus-sum.el (gnus-article-sort-by-author)
5262         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
5263
5264 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5265
5266         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
5267         the frame-focus tag is set in gnus-buffer-configuration.
5268
5269 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5270
5271         * gnus-art.el (gnus-article-add-button): Make a button overlay without
5272         the front stickiness.
5273
5274 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5275
5276         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
5277         url pattern; remove duplicate one.
5278         (gnus-article-extend-url-button): New function.
5279         (gnus-article-add-buttons): Use it.
5280         (gnus-button-push): Use concatenated url that it makes.
5281
5282 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
5283
5284         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
5285
5286 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5287
5288         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
5289         Don't hardcode point-min==1.
5290
5291 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
5292
5293         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
5294         Fix comment about "iso8859-1".
5295
5296 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
5297
5298         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
5299         ones returned from the verify-function.
5300
5301         * mm-uu.el (mm-uu-pgp-signed-extract-1): Call
5302         mml2015-extract-cleartext-signature if extraction failed.
5303
5304 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
5305
5306         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
5307         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
5308         failed.
5309
5310 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
5311
5312         * Relicense "GPLv2 or later" files to "GPLv3 or later".
5313
5314 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
5315
5316         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
5317         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
5318         recommends to use EasyPG instead of PGG.
5319
5320         * pgg.el: Revert to revision 6.23.2.16.
5321
5322         * pgg-def.el: Revert to revision 6.6.2.14.
5323
5324         * pgg-gpg.el: Revert to revision 6.23.2.34.
5325
5326 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
5327
5328         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
5329         to mark a thread as expirable.  Add variable `hide' to handle hiding of
5330         thread for both the null and zero (kill/expire thread) universal prefix
5331         cases.
5332         (gnus-summary-expire-thread): Add new function to expire a thread,
5333         using gnus-summary-kill-thread.
5334         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
5335         shortcuts for gnus-summary-expire-thread.
5336         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
5337         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
5338
5339 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
5340
5341         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
5342         extras value, so an extras entry can be deleted.
5343         (gnus-registry-delete-extra-entry): Use it.
5344         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
5345         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
5346         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
5347         storage through the gnus-registry, and provide an appropriate API for
5348         it.
5349
5350 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5351
5352         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
5353         Suggested by Leo <sdl.web@gmail.com>.
5354
5355         * gnus.el: Do.
5356
5357 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5358
5359         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
5360         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
5361
5362         * gnus-agent.el (gnus-agent-fetch-headers): Do.
5363
5364         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5365         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
5366
5367 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5368
5369         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
5370         newline.
5371         (nnmbox-request-accept-article): Don't change article in source buffer;
5372         narrow to header to use message-fetch-field rather than
5373         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
5374         (nnmbox-request-replace-article): Quote lines that'll be misidentified
5375         as delimiters; make sure article ends with newline.
5376         (nnmbox-delete-mail): Correct last position of article to be deleted;
5377         ignore X-Gnus-Newsgroup header in article body.
5378         (nnmbox-save-mail): Quote lines looking like delimiters at the right
5379         positions; make sure article ends with newline.
5380
5381         * message.el (message-display-abbrev): Don't infloop when a user
5382         inserts SPC in the beginning of header.
5383
5384         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
5385         coding-system-for-read and coding-system-for-write for XEmacs having no
5386         file-coding feature.
5387
5388         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
5389
5390 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
5391
5392         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
5393         list of groups not followed by default.  Fix type to be regexp.
5394         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
5395
5396 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
5397
5398         * hmac-def.el (define-hmac-function): Switch from old-style to
5399         new-style backquotes.
5400
5401         * md4.el (md4-make-step): Likewise.
5402
5403 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5404
5405         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
5406         raw-text coding system when saving .newsrc file, which may contain
5407         non-ASCII group names.
5408
5409 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5410
5411         * gnus-cus.el (gnus-score-extra): New widget.
5412         (gnus-score-extra-convert): New function.
5413         (gnus-score-customize): Use it for Extra.
5414
5415 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
5416
5417         * mml2015.el (mml2015-extract-cleartext-signature): New function.
5418         (mml2015-mailcrypt-clear-verify): Use it.
5419         (mml2015-gpg-clear-verify): Use it.
5420         (mml2015-pgg-clear-verify): Use it.
5421         (mml2015-epg-clear-verify): Replace the current part with the output
5422         from GnuPG; don't extract the plaintext by itself.
5423
5424         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
5425         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
5426         mml2015-clear-verify-function; don't touch the armor headers or
5427         dash-escaped text here.
5428
5429 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5430
5431         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
5432         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
5433         parts, or application/octet-stream as a last resort.
5434         (gnus-mime-view-part-as-type): Don't toggle display.
5435         (gnus-mime-view-part-as-charset): Don't turn off display before
5436         querying charset.
5437
5438         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
5439         stuff to undisplayer function in Emacs.
5440         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
5441
5442         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
5443         text/calendar parts.
5444
5445 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5446
5447         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
5448         decoding text/calendar parts.
5449
5450         * message.el (message-forward-make-body-mime): Always mark body as
5451         having no illegible text; remove signed-or-encrypted argument.
5452         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
5453
5454         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
5455         (mml-generate-mime-1): Don't encode body if it is specified to be in
5456         raw form; don't make buffer be unibyte when inserting multibyte string.
5457
5458 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5459
5460         * sha1.el: Fix up comment style.
5461         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
5462         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
5463
5464         * hex-util.el: Fix up comment style.
5465         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
5466
5467         * gnus-salt.el: Use with-current-buffer.
5468         (gnus-pick-setup-message): Fix long-standing typo.
5469
5470 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5471
5472         * imap.el (imap-logout-timeout): New variable.
5473         (imap-logout, imap-logout-wait): New functions.
5474         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
5475
5476         * nnimap.el (nnimap-logout-timeout): New server variable.
5477         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
5478         nnimap-logout-timeout.
5479
5480         * gnus-art.el (gnus-article-summary-command-nosave)
5481         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
5482
5483 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5484
5485         * gnus.el (gnus-maximum-newsgroup): New variable.
5486
5487         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
5488         according to gnus-maximum-newsgroup.
5489
5490         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5491         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
5492         Limit the range of articles according to gnus-maximum-newsgroup.
5493
5494 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
5495
5496         * gnus-art.el (gnus-sticky-article): Fixed problems described in
5497         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
5498         Don't perform gnus-configure-windows here; reuse existing sticky
5499         article buffer.
5500
5501         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
5502         it doesn't exist in gnus-article-mode.
5503
5504 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5505
5506         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
5507         (gnus-agent-decoded-group-name): New function.
5508         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
5509         (gnus-agent-expire-group-1): Use it; decode group name in messages.
5510
5511 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
5512
5513         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
5514         Add binding for gnus-sticky-article.
5515         (gnus-summary-exit): Don't kill sticky article buffers.
5516
5517         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
5518         article buffer.
5519         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
5520         (gnus-kill-sticky-article-buffers): New commands.
5521
5522 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5523
5524         * nntp.el (nntp-xref-number-is-evil): New server variable.
5525         (nntp-find-group-and-number): If it is non-nil, don't trust article
5526         numbers in the Xref header.
5527
5528 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5529
5530         * gnus-agent.el (gnus-agent-read-group): New function.
5531         (gnus-agent-flush-group, gnus-agent-expire-group)
5532         (gnus-agent-regenerate-group): Use it.
5533         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
5534         nnmail-pathname-coding-system.
5535
5536 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5537
5538         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
5539
5540         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
5541         that are unread as unread, and also as selected so that information of
5542         marks having been changed by a user may be updated when exiting group.
5543
5544 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5545
5546         * gnus-art.el (gnus-mime-display-single): Pass part number that is
5547         calculated ignoring signature parts to gnus-treat-article.
5548
5549 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5550
5551         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
5552         a point here in order to keep the window start.
5553         (gnus-insert-mime-security-button): Make a button overlay without the
5554         front stickiness.
5555         (gnus-mime-display-security): Goto the end of a button.
5556
5557         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
5558
5559 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5560
5561         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
5562         group-name-at-point.
5563         (gnus-group-completing-read): New function that offers decoded
5564         non-ASCII group names for completion.
5565         (gnus-fetch-group, gnus-group-read-ephemeral-group)
5566         (gnus-group-jump-to-group, gnus-group-make-group-simple)
5567         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
5568         (gnus-group-fetch-control): Use it.
5569         (gnus-fetch-group): Use group-name-at-point for the initial value
5570         rather than the default value; use gnus-alive-p.
5571
5572         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
5573         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
5574         (gnus-summary-post-news): Use gnus-group-completing-read.
5575
5576         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
5577         (gnus-read-move-group-name): Decode group name for completion.
5578
5579 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
5580
5581         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
5582         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
5583         Yamaoka slightly modified the code).
5584
5585 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5586
5587         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
5588         (nnmail-split-incoming): Bind it.
5589
5590         * nnml.el (nnml-group-name-charset): New function.
5591         (nnml-decoded-group-name): Use it; don't decode group name if
5592         nnmail-group-names-not-encoded-p is non-nil.
5593         (nnml-encoded-group-name): New function.
5594         (nnml-group-pathname): Inline nnml-decoded-group-name.
5595         (nnml-request-expire-articles): Decode group name in message.
5596         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
5597         nnmail-pathname-coding-system.
5598         (nnml-save-mail, nnml-active-number): Work with decoded group names and
5599         not decoded ones according to nnmail-group-names-not-encoded-p.
5600         (nnml-generate-active-info): Use nnml-encoded-group-name.
5601
5602 2007-08-08  Glenn Morris  <rgm@gnu.org>
5603
5604         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
5605         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
5606         doc-strings and comments.
5607
5608 2007-07-25  Glenn Morris  <rgm@gnu.org>
5609
5610         * Relicense all FSF files to GPLv3 or later.
5611
5612 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5613
5614         * gnus-sum.el (gnus-summary-move-article): Make
5615         gnus-summary-respool-article work.
5616
5617 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
5618
5619         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
5620         string.
5621
5622 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
5623
5624         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
5625         that should be ignored when comparing distant RSS articles with local
5626         ones.
5627         (nnrss-make-hash-index): New function.  Create a hash index according
5628         to the ignored fields.
5629         (nnrss-check-group): Use it.
5630
5631 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5632
5633         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
5634
5635         * gnus-art.el (article-decode-group-name): Decode Xref header too.
5636
5637         * gnus-group.el (gnus-group-make-group): Encode group name here unless
5638         the new optional argument ENCODED is non-nil.
5639         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
5640         coding system for encoding group name.
5641         (gnus-group-make-rss-group): Pass un-encoded group name to
5642         gnus-group-make-group.
5643         (gnus-group-set-info): Tell gnus-group-make-group that group name is
5644         encoded.
5645
5646         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
5647         Encode group name to which articles are moved or copied.
5648         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
5649         coding system for encoding Newsgroup, Followup-To and Xref headers.
5650
5651         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
5652         marks; use nnheader-file-coding-system to write a file.
5653         (nnagent-retrieve-headers): Bind file-name-coding-system to
5654         nnmail-pathname-coding-system.
5655
5656         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
5657
5658         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
5659         (nnml-request-article, nnml-request-create-group)
5660         (nnml-request-rename-group, nnml-find-id)
5661         (nnml-possibly-change-directory, nnml-possibly-create-directory)
5662         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
5663         (nnml-save-marks): Use nnml-group-pathname instead of
5664         nnmail-group-pathname.
5665
5666         (nnml-request-create-group, nnml-request-expire-articles)
5667         (nnml-request-move-article, nnml-request-delete-group)
5668         (nnml-deletable-article-p, nnml-possibly-create-directory)
5669         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
5670         (nnml-open-marks): Bind file-name-coding-system to
5671         nnmail-pathname-coding-system.
5672
5673         (nnml-request-article): Pass server argument to nnml-find-group-number.
5674         (nnml-request-create-group, nnml-active-number, nnml-save-marks): Pass
5675         server argument to nnml-possibly-create-directory.
5676         (nnml-request-accept-article): Pass server argument to
5677         nnml-active-number and nnml-save-mail.
5678         (nnml-find-group-number): Pass server argument to nnml-find-id.
5679         (nnml-request-update-info): Pass server argument to
5680         nnml-marks-changed-p.
5681
5682         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
5683         (nnml-save-mail, nnml-active-number): Add server argument.
5684
5685         (nnml-request-delete-group): Warn if group is missing.
5686         (nnml-get-nov-buffer): Decode group name.
5687         (nnml-generate-active-info): Encode group name.
5688         (nnml-open-marks): Decode group name in messages.
5689
5690 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5691
5692         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
5693         if it is not specified.
5694         (gnus-article-pipe-part, gnus-article-save-part)
5695         (gnus-article-interactively-view-part, gnus-article-copy-part)
5696         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
5697         (gnus-article-inline-part, gnus-article-save-part-and-strip)
5698         (gnus-article-replace-part, gnus-article-delete-part)
5699         (gnus-article-view-part-as-type): Pass raw prefix argument to
5700         gnus-article-part-wrapper.
5701
5702 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5703
5704         * gnus-agent.el (gnus-agent-save-active): Bind
5705         nnheader-file-coding-system to gnus-agent-file-coding-system.
5706
5707         * gnus-cache.el (gnus-cache-save-buffers)
5708         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
5709         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
5710         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
5711         (gnus-cache-braid-nov, gnus-cache-braid-heads)
5712         (gnus-cache-generate-active, gnus-cache-rename-group)
5713         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
5714         (gnus-cache-update-overview-total-fetched-for): Bind
5715         file-name-coding-system to nnmail-pathname-coding-system.
5716         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names): New
5717         variables.
5718         (gnus-cache-decoded-group-name): New function.
5719         (gnus-cache-file-name): Use it.
5720         (gnus-cache-generate-active): Use non-decoded group name for active.
5721
5722         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
5723         right place.
5724         (gnus-write-active-file): Don't break non-ASCII group names.
5725
5726         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
5727         nnmail-pathname-coding-system.
5728
5729         * lpath.el: Bind default-file-name-coding-system,
5730         file-name-coding-system and language-info-alist for XEmacs.
5731
5732         * gnus-uu.el (gnus-uu-decode-save): Typo.
5733
5734 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5735
5736         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
5737
5738 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5739
5740         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
5741         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
5742         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
5743         (gnus-agent-flush-group, gnus-agent-flush-cache)
5744         (gnus-agent-fetch-headers, gnus-agent-load-alist)
5745         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
5746         (gnus-agent-retrieve-headers, gnus-agent-request-article)
5747         (gnus-agent-regenerate-group)
5748         (gnus-agent-update-files-total-fetched-for)
5749         (gnus-agent-update-view-total-fetched-for): Bind
5750         file-name-coding-system to nnmail-pathname-coding-system.
5751         (gnus-agent-group-pathname): Don't encode file names by
5752         nnmail-pathname-coding-system.
5753         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
5754         coding-system-for-write instead of buffer-file-coding-system to
5755         gnus-agent-file-coding-system.
5756
5757         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
5758         Decode group name.
5759
5760         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
5761
5762         * gnus-start.el (gnus-update-active-hashtb-from-killed)
5763         (gnus-read-newsrc-el-file): Make group names unibyte.
5764
5765         * nnmail.el (nnmail-group-pathname): Don't encode file names by
5766         nnmail-pathname-coding-system.
5767
5768         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
5769         (nnrss-request-delete-group): Bind file-name-coding-system to
5770         nnmail-pathname-coding-system.
5771         (nnrss-read-server-data, nnrss-read-group-data): Bind
5772         file-name-coding-system correctly.
5773         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
5774
5775         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
5776         (nntp-server-to-method-cache): New variable.
5777         (nntp-group-pathname): New function that decodes non-ASCII group names.
5778         (nntp-possibly-create-directory, nntp-marks-changed-p)
5779         (nntp-save-marks, nntp-open-marks): Use it.
5780         (nntp-possibly-create-directory, nntp-open-marks):
5781         Bind file-name-coding-system to nnmail-pathname-coding-system.
5782         (nntp-open-marks): Decode group names when bootstrapping marks.
5783
5784         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
5785         Newsgroups and Folowup-To headers.
5786
5787 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5788
5789         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
5790         (gnus-server-closed-face, gnus-server-denied-face)
5791         (gnus-server-offline-face): Remove variable.
5792         (gnus-server-font-lock-keywords): Use faces that are not aliases.
5793
5794         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
5795         of modifying message-stack directly for XEmacs.
5796
5797         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
5798         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
5799         if the coding-system argument is nil for XEmacs.
5800
5801         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
5802         mm-charset-override-alist.
5803
5804         * rfc2047.el: Don't require base64; require rfc2045 for the function
5805         rfc2045-encode-string.
5806         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
5807         to quote the parameter value.
5808
5809 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5810
5811         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
5812         form in gnus-group-name-charset-method-alist.
5813
5814         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
5815         overrides the default layout edit-form.
5816
5817         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
5818
5819         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
5820
5821 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5822
5823         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
5824         as unfetched articles.
5825
5826 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
5827
5828         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
5829
5830 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5831
5832         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
5833         original back end that keeps marks in the local system.
5834
5835 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5836
5837         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
5838         arg of pop-to-buffer for XEmacs.
5839         (gnus-article-read-summary-keys): Ditto; don't restore window
5840         configuration if summary command ends up with neither article buffer
5841         nor summary buffer; describe bindings if summary keys end with C-h.
5842
5843 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5844
5845         * message.el (message-fix-before-sending): Skip raw message part to be
5846         forwarded while checking illegible text.
5847         (message-forward-make-body-mime, message-forward-make-body): Mark
5848         signed or encrypted raw message as having no illegible text.
5849
5850 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5851
5852         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
5853         (gnus-message-with-timestamp-1): New macro.
5854         (gnus-message-with-timestamp): New function.
5855         (gnus-message): Use them.
5856
5857         * nnheader.el (nnheader-message): Use them.
5858
5859 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
5860
5861         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
5862         .newsrc.eld file.
5863
5864 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5865
5866         * gnus-agent.el (gnus-agent-fetch-headers)
5867         (gnus-agent-retrieve-headers): Bind
5868         gnus-decode-encoded-address-function to identity.
5869
5870         * nntp.el (nntp-send-xover-command): Recognize an xover command is
5871         available also when the server returns simply a dot.
5872
5873         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
5874
5875 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5876
5877         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
5878
5879 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5880
5881         * gnus-ems.el (gnus-x-splash): Make it work.
5882
5883         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
5884         from being used.
5885
5886         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
5887
5888 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5889
5890         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
5891         4th and the 5th arguments.
5892
5893         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
5894         the front stickiness.
5895         (gnus-article-summary-command-nosave): Correct the order of the
5896         arguments passed to pop-to-buffer.
5897         (gnus-article-read-summary-keys): Ditto; make it work properly when the
5898         summary command ends up with the article buffer.
5899
5900         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
5901         the same faces.
5902
5903 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
5904
5905         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
5906
5907 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
5908
5909         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
5910         * gnus-sum.el (gnus-summary-highlight):
5911         * pgg.el (pgg-sign-region, pgg-sign):
5912         * mail-source.el (mail-source-delete-old-incoming-confirm):
5913         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
5914
5915 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5916
5917         * gnus-art.el (gnus-mime-view-part-externally)
5918         (gnus-mime-view-part-internally): Fix predicate function passed to
5919         completing-read.
5920
5921         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
5922
5923         * gnus.el (gnus-update-message-archive-method): Add :version.
5924
5925 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5926
5927         * gnus.el (gnus-update-message-archive-method): New variable.
5928
5929         * gnus-start.el (gnus-setup-news): Update saved "archive" method
5930         according to gnus-message-archive-method if
5931         gnus-update-message-archive-method is non-nil.
5932
5933 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5934
5935         * gnus-sum.el (gnus-summary-limit-to-address): New function.  Suggested
5936         by Loic Dachary <loic@dachary.org>.
5937         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
5938
5939 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5940
5941         * message.el (message-pop-to-buffer): Add switch-function argument.
5942         (message-mail): Pass switch-function argument to it.
5943
5944 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
5945
5946         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
5947         Improve doc string.
5948
5949 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5950
5951         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
5952         (gnus-header-content)
5953         * gnus-cite.el (gnus-cite-10)
5954         * gnus-srvr.el (gnus-server-closed)
5955         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
5956         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
5957         (gnus-group-mail-3-empty, gnus-group-mail-low)
5958         (gnus-group-mail-low-empty, gnus-splash)
5959         * message.el (message-header-to, message-header-cc)
5960         (message-header-subject, message-header-other, message-header-name)
5961         (message-header-xheader, message-separator, message-cited-text)
5962         (message-mml): Lighten colors of faces used for dark background.
5963
5964 2007-05-24  Simon Josefsson  <simon@josefsson.org>
5965
5966         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
5967         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
5968
5969 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5970
5971         * message.el (message-narrow-to-headers-or-head):
5972         Ignore mail-header-separator in the body.
5973
5974 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5975
5976         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
5977         same as window size.
5978
5979 2007-05-22  Kevin Ryde  <user42@zip.com.au>
5980
5981         * message.el (message-font-lock-keywords): Use message-header-xheader
5982         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
5983         ahead of the anything pattern, to get it recognised.
5984
5985 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5986
5987         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
5988         spam.el loads uses it in the compiled defadvice form.
5989
5990 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
5991
5992         * gnus-sum.el (gnus-articles-to-read)
5993         (gnus-summary-insert-old-articles): Don't truncate group name for
5994         `read-string'.
5995
5996         * gnus-util.el (gnus-limit-string): Delete this function.
5997
5998         * gnus-sum.el (gnus-simplify-subject-fully): Use
5999         `truncate-string-to-width' instead.
6000
6001 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
6002
6003         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.  Tell
6004         if, on summary exit, the next group has to be selected.
6005         (gnus-summary-exit): Use it.
6006
6007 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
6008
6009         * gnus-art.el (gnus-article-mode): Fix comment about displaying
6010         non-break space.
6011
6012 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6013
6014         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
6015         Check if group is not a directory.
6016         (nnfolder-request-expire-articles): Don't delete articles if the target
6017         group is not available.
6018
6019         * nnml.el (nnml-request-create-group): Properly check if group is not a
6020         file.
6021         (nnml-request-expire-articles): Don't delete articles if the target
6022         group is not available.
6023
6024         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
6025         Don't quote characters that are within parentheses.
6026
6027 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6028
6029         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
6030         (gnus-handle-ephemeral-exit): Select article according to it.
6031
6032 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
6033
6034         * message.el (message-insert-formated-citation-line): Remove newline.
6035         (message-citation-line-format): Add final \n here so that the user can
6036         avoid a blank line.
6037
6038 2007-05-03  Dan Christensen  <jdc@uwo.ca>
6039
6040         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
6041         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
6042         Update lanl/arXiv support.
6043
6044 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
6045
6046         * gnus.el: Bump version number.
6047
6048 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6049
6050         * gnus.el (gnus-version-number): Bump version.
6051
6052 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6053
6054         * gnus.el: No Gnus v0.6 is released.
6055
6056 2007-04-27  Didier Verna  <didier@xemacs.org>
6057
6058         * gnus-util.el (gnus-orify-regexp): Moved and renamed to ...
6059         * gmm-utils.el (gmm-regexp-concat): here.
6060         * message.el: Don't require 'gnus-util.
6061         (message-dont-reply-to-names): Handle name change above.
6062         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
6063
6064 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
6065
6066         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
6067         since the initial value varies according to the system.
6068
6069 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6070
6071         * mm-util.el (mm-charset-synonym-alist): Defcustom.
6072
6073 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
6074
6075         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
6076
6077 2007-04-24  Didier Verna  <didier@xemacs.org>
6078
6079         Improve the type of gnus-ignored-from-addresses.
6080         * gnus-util.el (gnus-orify-regexp): New function.
6081         * message.el (gnus-util): Require it.
6082         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
6083         * gnus-sum.el (gnus-ignored-from-addresses): New function.
6084         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
6085
6086 2007-04-24  Didier Verna  <didier@xemacs.org>
6087
6088         * gnus-sum.el:
6089         * gnus-utils.el: Fix some trailing whitespaces.
6090
6091 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
6092
6093         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
6094         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
6095         article's Message-ID; refer parent article in summary buffer.
6096
6097         * message.el (message-bounce): Call mime-to-mml.
6098
6099         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
6100         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
6101         optimize and/or forms properly.
6102
6103 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
6104
6105         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
6106         URL.
6107
6108 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6109
6110         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
6111
6112 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6113
6114         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
6115         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
6116         displayed of multipart/alternative part if it is invoked from summary
6117         buffer.
6118
6119         * mm-view.el (mm-inline-text-html-render-with-w3m)
6120         (mm-inline-text-html-render-with-w3m-standalone)
6121         (mm-inline-render-with-function): Use mail-parse-charset by default.
6122
6123 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
6124
6125         * parse-time.el (parse-time-string-chars): Check if CHAR
6126         is less than the length of parse-time-syntax.
6127
6128 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6129
6130         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
6131         from gnus-newsgroup-processable.
6132
6133 2007-04-16  Didier Verna  <didier@xemacs.org>
6134
6135         * gnus-msg.el (gnus-configure-posting-styles): Handle
6136         message-signature-directory properly with :file syntax.  Reported by
6137         "Leo".
6138
6139 2007-04-11  Didier Verna  <didier@xemacs.org>
6140
6141         New user option: message-signature-directory.
6142         * gnus-msg.el (gnus-configure-posting-styles): Support it.
6143         * message.el (message-insert-signature): Ditto.
6144         * message.el (message-signature-file): Doc update.
6145         * message.el (message-signature-directory): New.
6146
6147 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6148
6149         * gnus-msg.el (gnus-inews-yank-articles): Use
6150         message-exchange-point-and-mark instead of exchange-point-and-mark.
6151
6152 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6153
6154         * message.el (message-yank-original): Make sure cited text ends with
6155         newline; don't exchange point and mark.
6156
6157 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
6158
6159         * tls.el (open-tls-stream): Properly handle case where there
6160         is no associated buffer.
6161
6162 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
6163
6164         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
6165         message-yank-original, make sure (< mark TEXT point).
6166
6167 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
6168
6169         * message.el (message-fill-column): New variable.
6170         (message-mode): Use it.  Add comment on a possible new hook.
6171
6172         * nnmail.el (nnmail-spool-file): Mark as obsolete.
6173         (nnmail-get-new-mail): Reformat.
6174
6175         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
6176
6177         * gmm-utils.el: Fix Commentary.
6178         (gmm-tool-bar-from-list): Fix typo in doc string.
6179
6180 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
6181
6182         * message.el (message-yank-original): Don't switch point and mark
6183         unnecessarily to put point and mark as documented.
6184
6185 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6186
6187         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
6188         from the message heads.
6189
6190 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
6191
6192         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
6193         article buffer does not have a window.  This may not be the best
6194         solution but is certainly better than setting the start of the null,
6195         that is the current, window.
6196
6197 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
6198
6199         * gnus-draft.el (gnus-draft-setup-hook): New hook.
6200         (gnus-draft-setup): Run it.
6201
6202         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
6203         gnus-score-fast-scoring.  Allow regexp.
6204         (gnus-score-headers): Use it.
6205
6206         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
6207         XEmacs.
6208
6209         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
6210         string.
6211         (gnus-button-alist): Also catch `<f1> k ...'.
6212         (gnus-treat-display-x-face): Fix doc string.
6213
6214 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6215
6216         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
6217         evaluation of gnus-extended-version to ensure correct generation of the
6218         User-Agent header when message-generate-headers-first is used.
6219
6220 2007-03-24  Simon Josefsson  <simon@josefsson.org>
6221
6222         * hashcash.el (hashcash-generate-payment-async): Don't crash if
6223         hashcash-path is nil.  Don't call callback with incorrect number of
6224         parameters if val is 0.
6225
6226 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6227
6228         * message.el (message-required-news-headers):
6229         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
6230
6231 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
6232
6233         * tls.el (open-tls-stream): In handshake-waiting loop,
6234         don't wait more if there is output available to process.
6235
6236 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
6237
6238         * tls.el (tls-program): Doc fix.
6239
6240 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6241
6242         * message.el (message-generate-new-buffers): Change the meaning of the
6243         nil value; add `standard' to the choices; treat t as `unique'; improve
6244         doc string.
6245         (gnus-select-frame-set-input-focus): Autoload.
6246         (message-buffer-name): Search for the existing message buffer if
6247         message-generate-new-buffers is nil or `standard'; treat the value t of
6248         message-generate-new-buffers as `unique'.
6249         (message-pop-to-buffer): Raise the frame already displaying the message
6250         buffer; clear the echo area after querying.
6251         (message-setup): Pass the `continue' argument to compose-mail.
6252         (message-mail): Prefer `switch-function' if it is given; search for the
6253         existing message buffer if the `continue' argument is non-nil; pass
6254         continue and switch-function arguments to compose-mail by way of
6255         message-setup.
6256         (message-mail-other-window): Adjust argument of message-setup.
6257         (message-mail-other-frame): Ditto.
6258
6259 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6260
6261         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
6262         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
6263         to turn font-lock on when turning gnus-message-citation-mode on.
6264
6265 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
6266
6267         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
6268         (mml-smime-function-alist): New variable; add epg as the backend.
6269         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
6270         mml-smime- functions instead.
6271         * mm-view.el: Require smime.
6272
6273 2007-03-05  Didier Verna  <didier@xemacs.org>
6274
6275         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
6276         instead of just inheritance for posting styles.
6277         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
6278
6279 2007-02-24  Chris Moore  <dooglus@gmail.com>
6280
6281         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
6282         * pgg-pgp.el (pgg-pgp-encrypt-region):
6283         * pgg-gpg.el (pgg-gpg-encrypt-region):
6284         Check pgg-encrypt-for-me if no other recipients.
6285
6286 2007-02-24  John Paul Wallington  <jpw@pobox.com>
6287
6288         * tls.el (tls-certtool-program): Fix custom type.
6289
6290 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6291
6292         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
6293         and point-at-eol instead of line-(beginning|end)-position.
6294
6295         * assistant.el (assistant-parse-buffer): Ditto.
6296
6297         * netrc.el (netrc-parse-services): Ditto.
6298
6299 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
6300
6301         * mml2015.el (mml2015-epg-find-usable-key): New function.
6302         (mml2015-epg-sign): Use it.
6303         (mml2015-epg-encrypt): Use it.
6304
6305 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6306
6307         * message.el (message-make-in-reply-to): Quote name containing
6308         non-ASCII characters.  It will make the RFC2047 encoder cause an error
6309         if there are special characters.  Reported by NAKAJI Hiroyuki
6310         <nakaji@jp.freebsd.org>.
6311
6312 2007-02-27  Didier Verna  <didier@xemacs.org>
6313
6314         Include the group parameters as well as the topic ones in the
6315         inheritance filter process.
6316         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
6317         argument GROUP-PARAMS-LIST.
6318         * gnus-topic.el (gnus-group-topic-parameters): Use it.
6319
6320 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6321
6322         * nntp.el (nntp-never-echoes-commands)
6323         (nntp-open-connection-functions-never-echo-commands): New variables.
6324         (nntp-send-command): Use them.
6325
6326 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
6327
6328         * mml2015.el (mml2015-epg-verify): Simplified.
6329
6330 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6331
6332         * mml.el (mml-content-disposition-alist): New user option.
6333         (mml-content-disposition): New function.
6334         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
6335         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
6336
6337 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
6338
6339         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
6340         verification.
6341
6342 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6343
6344         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
6345         articles posted in the last 24 hours.
6346
6347 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
6348
6349         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
6350
6351 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
6352
6353         * nntp.el (nntp-send-command): Don't wait for echoes when
6354         nntp-open-ssl-stream is used.
6355
6356 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6357
6358         * gnus-cite.el (gnus-test-font-lock-add-keywords)
6359         (gnus-message-add-citation-keywords)
6360         (gnus-message-remove-citation-keywords): Remove.
6361         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
6362         directly, make the variables in font-lock-defaults buffer-local, add
6363         gnus-message-citation-keywords to them and then update the value of
6364         font-lock-keywords.
6365
6366 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6367
6368         * message.el (message-cite-original-1): Don't call
6369         gnus-article-highlight-citation.
6370
6371         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
6372         citations; fix line count.
6373
6374 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
6375
6376         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
6377         (gnus-message-add-citation-keywords)
6378         (gnus-message-remove-citation-keywords): Use it; fix the emulating
6379         versions of font-lock-add-keywords and font-lock-remove-keywords to
6380         work with XEmacs correctly.
6381
6382 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6383
6384         * gnus-cite.el (gnus-cite-face-list): Set the values of
6385         gnus-message-max-citation-depth and gnus-message-citation-keywords.
6386         (gnus-message-max-citation-depth): Use defvar rather than defconst.
6387         (gnus-message-cite-prefix-regexp): New variable.
6388         (gnus-message-search-citation-line): Use it; protect against long
6389         citation prefix; fill match data with nil rather than 0 for XEmacs; set
6390         the 0th match data for Emacs.
6391         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
6392         (gnus-message-add-citation-keywords): Append keywords rather than
6393         prepending; emulate font-lock-add-keywords if it is not available.
6394         (gnus-message-remove-citation-keywords): Emulate
6395         font-lock-remove-keywords if it is not available.
6396
6397         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
6398
6399         * message.el (message-cite-prefix-regexp): Set the value of
6400         gnus-message-cite-prefix-regexp.
6401
6402 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6403
6404         * nnweb.el (nnweb-google-parse-1): Update parser.
6405
6406 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
6407
6408         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
6409
6410 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6411
6412         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
6413         regexp.
6414
6415 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6416
6417         * uudecode.el (uudecode-string-to-multibyte): New function emulating
6418         string-to-multibyte.
6419         (uudecode-decode-region-internal): Use it.
6420
6421         * lpath.el: Fbind string-as-multibyte for XEmacs.
6422
6423 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
6424
6425         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix
6426         custom choice.
6427
6428         * gnus-art.el (gnus-signature-limit): Fix custom choice.
6429
6430 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
6431
6432         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
6433
6434         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
6435         `write-region' to respect `mm-inhibit-file-name-handlers'.
6436
6437 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
6438
6439         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
6440         Use gnus-home-directory instead of "~/" or "$HOME".
6441
6442 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
6443
6444         * encrypt.el (encrypt-insert-file-contents): Add better prompt
6445         to mention filename.
6446         Add comments at beginning regarding usage.
6447         (encrypt-write-file-contents): Change interactive so a string is
6448         acceptable.  If the file has no associated model, show an error instead
6449         of a nonsense prompt.
6450
6451 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
6452
6453         * spam.el (spam-bsfilter-ham-switch): Fix typo.
6454         Thanks to Yoshihiko Yamada for kind notification of this typo.
6455
6456 2007-01-12  Kenichi Handa  <handa@m17n.org>
6457
6458         * uudecode.el (uudecode-decode-region-internal): Make it work in a
6459         multibyte buffer.
6460
6461 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
6462
6463         * gnus-score.el (gnus-score-fast-scoring): New variable.
6464         (gnus-score-headers): Use it.
6465
6466         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
6467
6468         * message.el (message-cite-original-1): Call
6469         gnus-article-highlight-citation if requested.
6470         (message-make-from): Allow name and address as optional arguments.
6471
6472         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
6473
6474         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
6475         bugs to doc string.
6476         (gnus-button-alist): Add mid\\|message-id.
6477         (gnus-button-fetch-group): Extend for use in
6478         `browse-url-browser-function'.
6479         (gnus-button-url-regexp): Try to catch paired parentheses like in
6480         Wikipedia URLs.
6481
6482         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
6483         Suggested by Simon Krahnke <overlord@gmx.li>.
6484
6485 2007-01-13  Romain Francoise  <romain@orebokech.com>
6486
6487         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
6488         Update copyright.
6489
6490 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
6491
6492         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
6493
6494 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
6495
6496         * gnus-registry.el (gnus-registry-unfollowed-groups)
6497         (gnus-registry-split-fancy-with-parent): Fix documentation.
6498
6499 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6500
6501         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
6502         from nnweb groups.
6503
6504 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6505
6506         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
6507         Xref urls.  Erase buffer before requesting head.
6508
6509 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
6510
6511         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
6512         customizable.
6513
6514 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
6515
6516         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
6517         no signing key is found.
6518         (mml2015-epg-encrypt): Ask user whether to skip or abort if
6519         no encrypting and/or signing key is found.
6520
6521 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
6522
6523         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
6524
6525 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6526
6527         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
6528         headers read from disk with the ones newly found in the current search.
6529         This should no longer cause problems, because the article numbers in
6530         Gmane's `nov.php' output are ignored since the previous change.
6531
6532 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6533
6534         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
6535
6536 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6537
6538         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
6539         replace-regexp-in-string; bind url-version; fbind display-images-p and
6540         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
6541         find-face and set-itimer-function for Emacs; bind itimer-list for
6542         Emacs.
6543
6544         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
6545
6546 2007-01-01  Romain Francoise  <romain@orebokech.com>
6547
6548         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
6549
6550 2006-12-31  Steve Youngs  <steve@sxemacs.org>
6551
6552         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
6553         `define-minor-mode' macro definition expanded properly.
6554         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
6555         exclude it there.
6556
6557         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
6558         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
6559         `fboundp' test.
6560         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
6561         This is OK to autoload in (S)XEmacs now.
6562
6563 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6564
6565         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
6566         keystroke.
6567         (gnus-summary-limit-to-singletons): Fix typo.
6568
6569         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
6570         else fails.
6571
6572 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6573
6574         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
6575         docstring.
6576
6577         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
6578         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
6579         (gnus-summary-insert-dormant-articles): Fix typo in message.
6580
6581 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
6582
6583         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
6584         nil for XEmacs.
6585         (gnus-message-citation-mode): Don't autoload in XEmacs.
6586
6587         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
6588
6589 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
6590
6591         * nnimap.el (nnimap-expunge-search-string): Mention
6592         nnimap-search-uids-not-since-is-evil in docstring.
6593
6594 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
6595
6596         * spam.el: Revert to make-obsolete-variable because
6597         define-obsolete-variable-alias is not supported in Emacs 21.
6598
6599         * spam.el (spam-ifile-path, spam-ifile-database-path)
6600         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
6601         make-obsolete-variable.
6602         (spam-bsfilter-path, spam-bsfilter-program)
6603         (spam-spamassassin-path, spam-spamassassin-program)
6604         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.  Don't
6605         use "path" inappropriately.
6606         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
6607         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
6608         variable names.
6609
6610 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
6611
6612         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
6613         summary buffer.
6614
6615         * password.el (password-cache-remove): Use clear-string to burn
6616         password, if available.
6617
6618 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6619
6620         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
6621
6622         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
6623
6624         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
6625         (gnus-message-highlight-citation): Move defcustom here from
6626         gnus-cite.el.
6627         (gnus-message-citation-mode): Autoload.
6628
6629         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
6630         checks to make it compile with XEmacs.
6631         (gnus-message-citation-mode): New minor mode.
6632         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
6633         (gnus-message-highlight-citation): New variables.
6634         (gnus-message-search-citation-line)
6635         (gnus-message-add-citation-keywords)
6636         (gnus-message-remove-citation-keywords)
6637         (turn-on-gnus-message-citation-mode)
6638         (turn-off-gnus-message-citation-mode): New functions.
6639
6640 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
6641
6642         * gnus-cite.el: Enable highlighting of different citation levels in
6643         message-mode.
6644
6645 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6646
6647         * message.el (message-make-fqdn): Fix comment.
6648         (message-bogus-system-names): Add ".local".
6649
6650         * spam.el (spam-ifile-path, spam-ifile-program)
6651         (spam-ifile-database-path, spam-ifile-database)
6652         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
6653         Don't use "path" inappropriately.
6654         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
6655         strings.
6656         (spam-check-ifile, spam-ifile-register-with-ifile)
6657         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter): Use
6658         new variable names.
6659
6660         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
6661         (gnus-treat-display-smileys): Simplify using
6662         gnus-image-type-available-p.
6663
6664         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
6665         available.
6666
6667         * gnus-xmas.el (gnus-xmas-image-type-available-p): Use
6668         `display-images-p' if available.
6669
6670 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6671
6672         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
6673         one after turning on the buffer's multibyteness instead of decoding
6674         them directly in the unibyte buffer that causes unexpected conversion
6675         in Emacs 23 (unicode).
6676
6677 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6678
6679         * message.el (message-generate-hashcash): Fix custom type.
6680
6681 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6682
6683         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
6684
6685 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6686
6687         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
6688         disconnect icons.  Add help text.
6689
6690 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
6691
6692         * spam.el (spam-extra-header-to-number): CRM114 spam score is
6693         negated to be consistent with the others we handle.
6694
6695 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6696
6697         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
6698         version of gnus-summary-buffer to something, so that we can use two
6699         article buffers at the same time.
6700
6701 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
6702
6703         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
6704         trigger all the extra headers.
6705         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
6706         sorting.
6707
6708 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6709
6710         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
6711         solid groups.
6712
6713 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
6714
6715         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
6716
6717 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
6718
6719         * legacy-gnus-agent.el: Add Copyright notice.
6720
6721 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
6722
6723         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
6724
6725 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6726
6727         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
6728
6729         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
6730         to make it work reliably in CVS Emacs.
6731         (gnus-summary-limit-strange-charsets-predicate)
6732         (gnus-summary-limit-to-predicate): New functions.
6733
6734 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
6735
6736         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
6737         specifying array size.
6738         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
6739         array if it is too small.
6740         (gnus-sort-threads-recursive): Renamed from gnus-sort-thread-1.
6741         (gnus-sort-threads-loop): New function.
6742
6743 2006-12-06  Chris Moore  <dooglus@gmail.com>
6744
6745         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
6746         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
6747
6748 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
6749
6750         * mm-url.el (mm-url-predefined-programs): Call curl with correct
6751         options.
6752
6753 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6754
6755         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
6756         DOS-ing the recipient.
6757
6758         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
6759         the headers when creating the mapping to avoid mismappings.
6760         (nnweb-gmane-create-mapping): Always nix out old mapping.
6761
6762 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6763
6764         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
6765         and mm-verify-option to never.
6766
6767 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6768
6769         * message.el (message-signed-or-encrypted-p): New function.
6770         (message-forward-make-body): Use it.
6771
6772         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
6773         Replace encode-coding-string with mm-encode-coding-string.
6774
6775 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6776
6777         * nneething.el (nneething-decode-file-name): Replace
6778         decode-coding-string with mm-decode-coding-string.
6779
6780         * gnus-int.el (gnus-open-server): Say failed server's name.
6781
6782 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6783
6784         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
6785         strings to a single string.  Quote `errors-file-name'.
6786         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
6787         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
6788         Adjust calls.  Use `shell-quote-argument'.
6789
6790 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
6791
6792         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
6793         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
6794
6795         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
6796         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
6797         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
6798         (gnus-group-make-directory-group, gnus-group-transpose-groups):
6799         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
6800         (gnus-subscribe-newsgroup, gnus-1):
6801         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
6802         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
6803         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
6804         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
6805
6806 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6807
6808         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
6809         keystroke.
6810         (gnus-summary-limit-to-bodies): Implement headersp.
6811
6812 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6813
6814         * dns.el (query-dns): Protect against "Process dns deleted" strings.
6815
6816 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6817
6818         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
6819
6820 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6821
6822         * message.el (message-generate-hashcash): Expand range of values to
6823         include `opportunistic'.
6824         (message-send-mail): Use it.
6825
6826 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6827
6828         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
6829         and comment it.
6830
6831         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
6832
6833 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
6834
6835         * gnus-util.el (gnus-extract-address-components): Improve comment.
6836
6837 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6838
6839         * gnus-util.el (gnus-extract-address-components): Work with address in
6840         which the name portion contains @.
6841
6842         * lpath.el: Fbind custom-autoload.
6843
6844 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6845
6846         * gnus.el (gnus-start): Move custom group up.
6847         (gnus-select-method): Don't autoload, but make it available for
6848         `customize-variable'.
6849         (gnus-getenv-nntpserver): Don't autoload.
6850
6851 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
6852
6853         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
6854
6855 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6856
6857         * message.el (message-sendmail-extra-arguments): New variable.
6858         (message-send-mail-with-sendmail): Use it.
6859
6860 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6861
6862         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
6863         mm-with-unibyte-current-buffer to make string unibyte.
6864
6865         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
6866         mm-string-as-multibyte.
6867
6868 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
6869
6870         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
6871         Reported by Werner Koch <wk@gnupg.org>.
6872
6873 2006-11-14  Daiki Ueno  <ueno@p360>
6874
6875         * mml2015.el: Autoload epa-select-keys when compiling.
6876
6877 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6878
6879         * mml2015.el (mml2015-epg-sign): Save the signing keys in
6880         message-options.
6881         (mml2015-epg-encrypt): Save the recipient keys in message-options.
6882
6883 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6884
6885         * mml2015.el (mml2015-epg-encrypt): Removed backward compatibility for
6886         EasyPG (< 0.0.6).
6887         (mml2015-always-trust): New user option.
6888         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
6889         prompt.
6890
6891 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6892
6893         * nntp.el (nntp-authinfo-force): New variable.
6894         (nntp-send-authinfo): Use it.
6895
6896 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
6897
6898         * message.el (message-strip-subject-encoded-words): Allow _not_ to
6899         decode encoded words.  Improve prompt.  Add comment about forwarding.
6900         (message-replacement-char): Move up.
6901
6902 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
6903
6904         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
6905         instead of gnus-intersection because arguments of gnus-sorted-nunion
6906         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
6907
6908 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
6909
6910         * message.el (message-strip-subject-encoded-words): Reformat prompt.
6911         (message-simplify-subject-functions): Enable
6912         message-strip-subject-encoded-words by default.
6913
6914 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
6915
6916         * message.el (message-strip-subject-encoded-words): New function.
6917         (message-simplify-subject-functions): New variable.
6918         (message-simplify-subject): Use it.  Fix typo in doc string.
6919         Support message-strip-subject-encoded-words.
6920
6921 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
6922
6923         * gnus-diary.el (gnus-diary-delay-format-function):
6924         * nndiary.el (nndiary-reminders):
6925         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
6926
6927 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
6928
6929         * gnus-art.el (article-hide-boring-headers): Fetch date from
6930         gnus-original-article-buffer to avoid problems with localized date
6931         strings.
6932
6933 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6934
6935         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
6936
6937 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
6938
6939         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
6940         New variables.
6941         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6942         (mm-charset-synonym-alist): Move some entries to
6943         mm-codepage-iso-8859-list.
6944         (mm-charset-synonym-alist, mm-charset-override-alist): Add
6945         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6946
6947 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6948
6949         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
6950
6951 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
6952
6953         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
6954         with Emacs 21 and XEmacs.
6955
6956 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
6957
6958         * spam.el (spam-parse-address): New function for better parsing,
6959         catching errors, etc.
6960         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
6961
6962 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
6963
6964         * mm-view.el: Add interactive arg to html2text autoload.
6965
6966 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6967
6968         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
6969
6970 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
6971
6972         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list): New
6973         variables.
6974         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6975         (mm-charset-synonym-alist): Move some entries to
6976         mm-codepage-iso-8859-list.
6977
6978         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
6979
6980 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
6981
6982         * message.el (message-citation-line-format)
6983         (message-insert-formated-citation-line): Fix implementation of %E, %N
6984         and %n according to the doc string.
6985
6986 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
6987
6988         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6989         car-safe to avoid bad parses.
6990
6991 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6992
6993         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
6994         names.
6995
6996         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
6997
6998 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6999
7000         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
7001         header.
7002
7003         * message.el (message-draft-headers): Add Date.
7004         (message-headers-to-generate): Fix typo in docstring.
7005
7006         * nndraft.el (nndraft-required-headers): New variable.
7007         (nndraft-generate-headers): Use it.
7008
7009         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
7010
7011 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
7012
7013         * gnus-registry.el (gnus-registry-wash-for-keywords)
7014         (gnus-registry-find-keywords): New functions to allow easy searching of
7015         articles that are in the registry.
7016
7017 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
7018
7019         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
7020         ietf-drums-parse-address instead of gnus-extract-address-components.
7021         Reported by Damien Elmes <damien@repose.cx>.
7022
7023 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
7024
7025         * gnus.el (gnus-mime): Remove unused custom group.
7026
7027 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7028
7029         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
7030         "blank line" when searching for end of armor headers.
7031
7032 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7033
7034         * gmm-utils.el (gmm-write-region): Fix variable name.
7035
7036 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
7037
7038         * gmm-utils.el (gmm-write-region): New function based on compatibility
7039         code from `mm-make-temp-file'.
7040
7041         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
7042
7043         * nnmaildir.el (nnmaildir--update-nov)
7044         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
7045         Use `gmm-write-region'.
7046
7047 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
7048
7049         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist): Add
7050         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
7051
7052         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
7053
7054         * message.el (message-replacement-char): New variable.
7055         (message-fix-before-sending): Use it.
7056         (message-simplify-subject): New function to remove duplicate code.
7057         (message-reply, message-followup): Use it.
7058
7059         * gnus-sum.el (gnus-summary-make-menu-bar): Clarify
7060         gnus-summary-limit-to-articles.
7061
7062 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7063
7064         * gnus-util.el (gnus-with-local-quit): New macro.
7065
7066         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
7067
7068 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
7069
7070         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
7071         ignore non-string data.
7072
7073 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
7074
7075         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
7076         non-string data (needs to be done in the registry too).
7077
7078 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
7079
7080         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
7081         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
7082         (gnus-registry-split-fancy-with-parent)
7083         (gnus-registry-fetch-simplified-message-subject-fast)
7084         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
7085         Remove text properties on ingress into the registry and when it's saved.
7086         (gnus-registry-clean-empty-function): Fix bug with cleaning the
7087         registry from entries with no groups.
7088
7089 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
7090
7091         * gnus-util.el (gnus-string-remove-all-properties): Add utility
7092         function to remove string properties.
7093
7094 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
7095
7096         * gmm-utils.el (gmm): Adjust custom version.
7097
7098         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist): Adjust
7099         custom version.
7100
7101         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
7102
7103 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
7104
7105         * gnus-art.el (gnus-insert-prev-page-button)
7106         (gnus-insert-next-page-button): Simplify.  Reformat.
7107
7108 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
7109
7110         * gnus-art.el (gnus-insert-prev-page-button)
7111         (gnus-insert-next-page-button): Apply gnus-article-button-face.
7112
7113 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
7114
7115         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
7116
7117 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
7118
7119         * gnus-art.el (gnus-insert-mime-button)
7120         (gnus-insert-mime-security-button):
7121         Apply gnus-article-button-face to MIME and security buttons.
7122
7123 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
7124
7125         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
7126         readable.
7127
7128 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7129
7130         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
7131
7132 2006-09-20  Steve Youngs  <steve@sxemacs.org>
7133
7134         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
7135         `browse-url-of-file' instead of `browse-url'.
7136
7137 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7138
7139         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
7140         regexp.  Articles containing quotation were cut prematurely.
7141
7142 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7143
7144         * message.el (message-cite-original-1): Use nobody by default for the
7145         value of From header.
7146         (message-reply): Ditto.
7147
7148 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
7149
7150         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
7151         to the gnus-info.  This fixes a bug of inline-PGP message verification.
7152         Reported by Michael Piotrowski <mxp@dynalabs.de>.
7153
7154 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
7155
7156         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
7157         mails in the doc string.  Add some URLs in comment.
7158         (pop3-movemail): Warn about pop3-leave-mail-on-server.
7159
7160 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7161
7162         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
7163         backslashes handling and the way to find boundaries of quoted strings.
7164
7165 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
7166
7167         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
7168         mml1991-encrypt-to-self is set and mml1991-signers is not set.
7169         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
7170         mml2015-encrypt-to-self is set and mml2015-signers is not set.
7171
7172 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
7173
7174         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
7175         doc string.
7176         (gnus-button-regexp, gnus-button-last): Remove unused variables.
7177
7178 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7179
7180         * lpath.el: Fbind epg-check-configuration.
7181
7182 2006-09-06  Simon Josefsson  <jas@extundo.com>
7183
7184         * mml2015.el (mml2015-use): Doc fix, mention epg.
7185
7186 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
7187
7188         * mml2015.el (mml2015-use): Default to epg, if available.
7189
7190 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
7191
7192         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
7193         message-sender.
7194         (mml1991-epg-encrypt): Ditto.
7195         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
7196         message-sender.
7197         (mml2015-epg-encrypt): Ditto.
7198
7199 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
7200
7201         * message.el (message-send-mail-with-sendmail): Look for sendmail in
7202         several common directories.
7203
7204 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
7205
7206         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
7207         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
7208
7209 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7210
7211         * gnus-art.el (article-decode-encoded-words): Make it fast.
7212
7213 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7214
7215         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
7216
7217         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
7218         in quoted string into `\'.
7219
7220 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7221
7222         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7223         Use standard-syntax-table.
7224
7225 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7226
7227         * gnus-art.el (gnus-decode-address-function): New variable.
7228         (article-decode-encoded-words): Use it to decode headers which are
7229         assumed to contain addresses.
7230         (gnus-mime-delete-part): Remove useless `or'.
7231
7232         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
7233         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
7234         (gnus-nov-parse-line): Use it to decode From header.
7235         (gnus-get-newsgroup-headers): Ditto.
7236         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
7237
7238         * mail-parse.el (mail-decode-encoded-address-region): New alias.
7239         (mail-decode-encoded-address-string): New alias.
7240
7241         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7242         New function.
7243         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
7244         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
7245         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
7246         (rfc2047-decode-string): Ditto.
7247         (rfc2047-decode-address-region): New function.
7248         (rfc2047-decode-address-string): New function.
7249
7250 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
7251
7252         * message.el (message-caesar-buffer-body): Allow rotating headers.
7253
7254         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
7255
7256         * message.el (message-insert-formated-citation-line): Fix %f.
7257         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
7258
7259 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7260
7261         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
7262         (gnus-bookmark-mouse-available-p): New macro.
7263         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
7264         (gnus-bookmark-bmenu-show-infos): Use it.
7265         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
7266         (gnus-bookmark-bmenu-hide-infos): Ditto.
7267         (gnus-bookmark-remove-properties): New function.
7268         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
7269         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
7270         (gnus-bookmark-write-file): Bind coding-system-for-write.
7271         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
7272         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
7273         group before selecting it.
7274         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
7275         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
7276         quit-window if it is not available; use gnus-mouse-2 and bind it to
7277         gnus-bookmark-bmenu-select-by-mouse.
7278         (gnus-bookmark-show-details): Remove unused variable `details-list'.
7279         (gnus-bookmark-bmenu-select-by-mouse): New function.
7280
7281 2006-08-13  Romain Francoise  <romain@orebokech.com>
7282
7283         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
7284         space.
7285
7286 2006-08-10  Romain Francoise  <romain@orebokech.com>
7287
7288         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
7289         (dns-mode-soa-auto-increment-serial): New user option.
7290         (dns-mode-soa-maybe-increment-serial): New function.
7291         (dns-mode): Add the latter to `write-contents-functions'.
7292
7293 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7294
7295         * compface.el (uncompface): Use binary rather than raw-text-unix.
7296
7297 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7298
7299         * compface.el (uncompface): Make sure the eol conversion doesn't take
7300         place when communicating with the external programs.  Reported by
7301         ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
7302
7303 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7304
7305         * nnheader.el (nnheader-insert-head): Fix typo in comment.
7306
7307 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7308
7309         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7310         Make it more robust by parsing author and date independently.
7311
7312 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7313
7314         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
7315
7316 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
7317
7318         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
7319         first matching secret key.
7320         (mml2015-epg-encrypt): Ditto.
7321
7322         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
7323         first matching secret key.
7324         (mml1991-epg-encrypt): Ditto.
7325
7326         * mml2015.el (mml2015-encrypt-to-self): New user option.
7327         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
7328         mml2015-epg-encrypt-to-self is set.
7329
7330         * mml1991.el (mml1991-encrypt-to-self): New variable.
7331         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
7332         mml1991-epg-encrypt-to-self is set.
7333
7334         * mml2015.el (mml2015-signers): New user option.
7335         (mml2015-epg-sign): Reflect the value of mml2015-signers.
7336         (mml2015-epg-encrypt): Allow to select signing keys.
7337
7338         * mml1991.el (mml1991-signers): New variable.
7339         (mml1991-epg-sign): Reflect the value of mml1991-signers.
7340         (mml1991-epg-encrypt): Allow to select signing keys.
7341
7342 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7343
7344         * nnheader.el (nnheader-insert-head): Make it work even if the file
7345         uses CRLF for the line-break code.
7346
7347 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
7348
7349         * mml2015.el: Require mml-sec instead of password.
7350         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
7351         (mml2015-cache-passphrase): Inherit the default value from
7352         mml-secure-cache-passphrase.
7353         (mml2015-passphrase-cache-expiry): Inherit the default value from
7354         mml-secure-passphrase-cache-expiry.
7355
7356         * mml1991.el: Require mml-sec instead of password.
7357         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
7358         (mml1991-cache-passphrase): Inherit the default value from
7359         mml-secure-cache-passphrase.
7360         (mml1991-passphrase-cache-expiry): Inherit the default value from
7361         mml-secure-passphrase-cache-expiry.
7362
7363         * mml-sec.el: Require password.
7364         (mml-secure-verbose): New user option.
7365         (mml-secure-cache-passphrase): New user option.
7366         (mml-secure-passphrase-cache-expiry): New user option.
7367
7368 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
7369
7370         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
7371         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
7372         andreas@altroot.de (Andreas Vögele).
7373
7374         FIXME: Use `tiny change'?
7375
7376 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7377
7378         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
7379         workaround for the url package included with Emacs.
7380
7381         * nnweb.el (nnweb-google-create-mapping): Update regexp.
7382
7383 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7384
7385         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
7386         correctly.  This fixes a bug caused by the 2006-05-12 change.
7387
7388 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
7389
7390         * nnmail.el (nnmail-article-group): If splitting raises an error, give
7391         some information about the error when saying that the `bogus' mail
7392         group will be used.
7393
7394 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
7395
7396         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
7397         string.
7398
7399 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
7400
7401         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
7402
7403 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7404
7405         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
7406
7407 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7408
7409         * mml1991.el (mml1991-function-alist): Add epg.
7410         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
7411         (mml1991-epg-encrypt): New functions.
7412
7413 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7414
7415         * mml2015.el (mml2015-verbose): New variable.
7416         (mml2015-cache-passphrase): Ditto.
7417         (mml2015-passphrase-cache-expiry): Ditto.
7418         (mml2015-function-alist): Add epg.
7419         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
7420         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
7421         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt): New
7422         functions.
7423
7424 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7425
7426         * message.el (message-cite-original-1): Preserve region when removing
7427         quoted text due to X-No-Archive in order to avoid bogus attribution
7428         when citing multiple messages.
7429
7430 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7431
7432         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.  Reported by
7433         Kenneth Jacker <khj@be.cs.appstate.edu>.
7434
7435 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
7436
7437         * gnus-diary.el (gnus-user-format-function-d)
7438         (gnus-user-format-function-D): Autoload.
7439
7440         * imap.el (Commentary): Fix typo.
7441
7442         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
7443         2006-04-22 contribution.
7444
7445 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7446
7447         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
7448         It didn't really fix the bogosity I'm seeing with solid web groups.
7449
7450 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7451
7452         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
7453         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
7454         created using server names.  If we use the feature without declaring
7455         it, Gnus does not properly manage server and group state.
7456
7457         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
7458         bound.
7459
7460 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7461
7462         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
7463         looking up the method using GROUP's prefix before inventing a new one.
7464         It is used on killed/unknown groups in various places where returning
7465         an all-new method isn't expected by the caller.
7466
7467         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
7468         and match semantics of gnus-group-real-prefix.
7469
7470 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
7471
7472         * nnmail.el (nnmail-broken-references-mailers): New variable.
7473         (nnmail-ignore-broken-references): New function generalizing
7474         nnmail-fix-eudora-headers.
7475         (nnmail-fix-eudora-headers): Now obsolete.
7476
7477         * gnus-art.el (gnus-button-handle-custom): Support
7478         `customize-apropos*'.
7479
7480 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7481
7482         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
7483
7484         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
7485         articles.
7486
7487 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
7488
7489         * message.el (message-cite-reply-above): New variable.
7490         (message-yank-original): Use it.
7491
7492 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7493
7494         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
7495
7496 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
7497
7498         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
7499         as read.
7500
7501         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
7502
7503 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
7504
7505         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
7506         (gnus-bookmark-default-file): Use gnus-directory.
7507         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
7508         Remove "*" in doc string.
7509         (gnus-bookmark-write-file): Simplify.
7510         (gnus-bookmark-maybe-sort-alist): Use `when'.
7511         (gnus-bookmark-get-bookmark): Fix typo in doc string.
7512         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark): Add
7513         FIXME about Emacs 21 and XEmacs compatibility.
7514         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
7515         compatibility.
7516         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
7517         compatibility.
7518         (gnus-bookmark-menu-heading): Fix version.
7519
7520 2006-06-19  Bastien Guerry  <bzg@altern.org>
7521
7522         * gnus-bookmark.el: New file.
7523
7524 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7525
7526         * message.el (message-syntax-checks): Doc fix.
7527
7528 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7529
7530         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
7531         unsubscribed groups as if they were killed ones.  It causes duplicate
7532         entries in gnus-newsrc-alist.
7533
7534 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7535
7536         * message.el (message-syntax-checks): Doc fix.
7537         (message-send-mail): Add check for continuation headers.
7538         (message-check-news-header-syntax): Fix regexp used to check for
7539         continuation headers.
7540
7541 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7542
7543         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
7544
7545 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
7546
7547         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
7548
7549 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7550
7551         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
7552         default-truncate-lines.
7553
7554 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7555
7556         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
7557         to fill the utf-8 entry.
7558
7559         * lpath.el: Fbind unicode-precedence-list.
7560
7561 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7562
7563         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7564
7565 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
7566
7567         * gnus-agent.el (directory-files-and-attributes): Move all the way
7568         forward (the third and final move).
7569         (gnus-agent-read-agentview): Trap reconstruction errors due to
7570         nonexistant directory.  Handle by returning nil.
7571
7572 2006-05-30  Didier Verna  <didier@xemacs.org>
7573
7574         * message.el (message-dont-reply-to-names): Update the custom type.
7575         * message.el (message-dont-reply-to-names): New defsubst: potentially
7576         convert a list of regexps into a single one.
7577         * message.el (message-get-reply-headers): Use it.
7578         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
7579
7580 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7581
7582         * gnus-agent.el (directory-files-and-attributes): Move forward.
7583
7584 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7585
7586         * gnus-ml.el (gnus-mailing-list-subscribe)
7587         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
7588         (gnus-mailing-list-message): Fix doc strings.
7589
7590 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7591
7592         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
7593         of doing it manually.
7594
7595 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7596
7597         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
7598         comment.
7599
7600 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
7601
7602         * gnus-agent.el: Added gnus-agent-flush* to purge agent info.
7603         (gnus-agent-read-agentview): Fixed handling of end-of-file error.
7604         (gnus-agent-read-local): All symbols allocated in my-obarray.
7605         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
7606         (gnus-agent-regenerate-group): Check numeric names to see if they are
7607         messages or groups.
7608         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
7609         better way of do this...)
7610
7611         * gnus-cache.el (gnus-agent-total-fetched-for): Ignore
7612         'dummy.group' (there should be a better way of do this...)
7613
7614 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7615
7616         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
7617         (gnus-saved-headers): Ditto.
7618         (gnus-default-article-saver): Mention functions may have properties.
7619         (gnus-article-save): Override gnus-save-all-headers and
7620         gnus-saved-headers by :headers property which saver function may have.
7621         (gnus-summary-save-in-file): Add :headers property.
7622         (gnus-summary-write-to-file): Ditto.
7623
7624         * gnus-sum.el (gnus-summary-save-article): Bind
7625         gnus-prompt-before-saving to t when saving many articles in a file;
7626         always show all headers.
7627
7628         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
7629
7630 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
7631
7632         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
7633         marks.
7634
7635         * message.el (message-indent-citation): Add optional arguments to allow
7636         using it outside of message buffers.
7637
7638         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
7639         (gnus-article-treat-unfold-headers): Use it.
7640         (gnus-article-truncate-lines): New variable.
7641         (gnus-article-mode): Use it.
7642         (gnus-article-toggle-truncate-lines): New function.
7643
7644         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar): Add
7645         gnus-article-toggle-truncate-lines.
7646
7647         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
7648         coding system in XEmacs, use binary.
7649
7650 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7651
7652         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
7653         after-load-alist.
7654
7655         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
7656         this function should save decoded articles.
7657         (gnus-summary-write-to-file): Use property to specify this function
7658         should save decoded articles and specify gnus-summary-save-in-file
7659         should be used to save articles other than the first one when saving
7660         many articles.
7661         (gnus-summary-save-body-in-file): Use property to specify this
7662         function should save decoded articles.
7663         (gnus-summary-write-body-to-file): Use property to specify this
7664         function should save decoded articles and specify
7665         gnus-summary-save-body-in-file should be used to save articles other
7666         than the first one when saving many articles.
7667
7668         * gnus-sum.el (gnus-summary-save-article): Simplify.
7669
7670 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7671
7672         * gnus-art.el (gnus-default-article-saver): Add
7673         gnus-summary-write-body-to-file.
7674         (gnus-article-save-coding-system): Don't use coding system object
7675         in XEmacs.
7676         (gnus-read-save-file-name): Add optional `dir-var' argument which
7677         specifies directory in which files are saved; work even if optional
7678         `variable' argument is not specified.
7679         (gnus-summary-write-to-file): Read file name.
7680         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
7681         (gnus-summary-write-body-to-file): New function.
7682
7683         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
7684         (gnus-summary-local-variables): Add it.
7685         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
7686         (gnus-summary-save-article): Remove optional `decode' argument;
7687         determine whether to decode articles by the value of
7688         gnus-default-article-saver; when saving many files using
7689         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
7690         it first and use gnus-summary-save-in-file or
7691         gnus-summary-save-body-in-file thereafter unless
7692         gnus-prompt-before-saving is always; move point to article which
7693         will be saved.
7694         (gnus-summary-save-article-file): Revert.
7695         (gnus-summary-write-article-file): Revert.
7696         (gnus-summary-save-article-body-file): Revert.
7697         (gnus-summary-write-article-body-file): New function.
7698
7699 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7700
7701         * gnus-art.el (gnus-default-article-saver): Doc fix.
7702         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
7703         from gnus-summary-save-article-coding-system, and default to a
7704         certain coding system.
7705         (gnus-output-to-file): Add coding cookie and encode text according
7706         to gnus-article-save-coding-system; don't use mm-append-to-file.
7707
7708         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
7709         gnus-art.el and rename to gnus-article-save-coding-system.
7710         (gnus-summary-save-article): Require gnus-art; don't show all
7711         headers if it decodes articles; don't add coding cookie here;
7712         don't bind mm-text-coding-system-for-write.
7713         (gnus-summary-save-article-file): Save decoded articles.
7714         (gnus-summary-write-article-file): When saving many files, use
7715         gnus-summary-write-to-file first and gnus-summary-save-in-file
7716         thereafter unless gnus-prompt-before-saving is always.
7717         (gnus-summary-save-article-body-file): Save decoded articles.
7718
7719         * lpath.el: Fbind select-safe-coding-system for XEmacs.
7720
7721 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7722
7723         * nnrss.el (nnrss-check-group): Bind hash-index.
7724
7725 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
7726
7727         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
7728         its hash index.  Store this hash in `nnrss-group-data'.
7729         (nnrss-read-group-data): Update accordingly.
7730
7731 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7732
7733         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
7734         entry.
7735
7736         * gnus-sum.el (gnus-summary-make-menu-bar): Add
7737         gnus-article-browse-html-article.
7738
7739 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
7740
7741         * gnus-sum.el (gnus-summary-mime-map): Add
7742         gnus-article-browse-html-article.
7743
7744         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
7745
7746 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7747
7748         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
7749         suitable coding systems in customize.
7750
7751 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
7752
7753         * mail-source.el (mail-sources): Fix custom type.
7754
7755 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
7756
7757         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
7758         (gnus-summary-expire-articles-now): Shorten prompt.
7759
7760         * gmm-utils.el (wid-edit): Require.
7761         (defun-gmm): Renamed from `gmm-defun-compat'.
7762         (gmm-image-search-load-path): Use it.
7763         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
7764
7765 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7766
7767         * gnus-sum.el (gnus-summary-save-article-coding-system): New
7768         variable.
7769         (gnus-summary-save-article): Add optional `decode' argument.  If
7770         it is set and gnus-summary-save-article-coding-system is non-nil,
7771         save decoded article.
7772         (gnus-summary-write-article-file): Save decoded article if
7773         gnus-summary-save-article-coding-system is non-nil.
7774
7775         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
7776         type.
7777
7778 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7779
7780         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
7781
7782 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7783
7784         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
7785         first to test gnus-single-article-buffer which may be buffer-local.
7786
7787         * gnus-sum.el (gnus-summary-setup-buffer): Make
7788         gnus-single-article-buffer buffer-local and nil in ephemeral
7789         group; make gnus-article-buffer, gnus-article-current, and
7790         gnus-original-article-buffer always buffer-local.
7791         (gnus-summary-exit): Kill article buffer belonging to ephemeral
7792         group.
7793         (gnus-handle-ephemeral-exit): Don't move to next summary line.
7794
7795 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
7796
7797         * nnml.el (nnml-request-compact-group): Compressed files might not
7798         have .gz extension.
7799
7800 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7801
7802         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
7803         (mm-copy-to-buffer): Use with-current-buffer.
7804         (mm-display-part): Simplify.
7805         (mm-inlinable-p): Add optional arg `type'.
7806
7807 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7808
7809         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
7810         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
7811         Try harder to show the attachment internally or externally using
7812         gnus-mime-view-part-as-type.
7813
7814 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
7815
7816         * message.el (message-from-style, message-signature-separator)
7817         (message-user-organization-file, message-send-mail-function)
7818         (message-citation-line-function, message-yank-prefix)
7819         (message-indent-citation-function, message-signature)
7820         (message-signature-file, message-signature-insert-empty-line):
7821         Remove autoloads.
7822
7823         * gnus-art.el (gnus-buttonized-mime-types): Remove
7824         "multipart/signed".  Revert 2006-04-26 change.
7825
7826 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7827
7828         * gnus.el (gnus-version-number): Bump version.
7829
7830 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7831
7832         * gnus.el: No Gnus v0.5 is released.
7833
7834 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7835
7836         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
7837         fetching articles by message-id.
7838
7839 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7840
7841         * message.el (hashcash): Require hashcash as normal.
7842
7843         * ecomplete.el (ecomplete-highlight-match-line): Use
7844         point-at-eol.
7845         (ecomplete-highlight-match-line): Use `highlight', because that
7846         face exists in both Emacs and XEmacs.
7847
7848         * message.el (message-display-abbrev): Use point-at-bol.
7849
7850         * mail-source.el: Don't require timer/timer-funcs.
7851
7852         * gnus-async.el: Ditto.
7853
7854         * password.el: Ditto.
7855
7856         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
7857
7858         * mm-url.el: Ditto.
7859
7860         * gnus-xmas.el: Don't require timer-funcs.
7861
7862         * mm-util.el: Require timer/timer-funcs.
7863
7864 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7865
7866         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
7867         Close.
7868
7869 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7870
7871         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
7872         unibyte after clear-decrypt function runs.
7873
7874         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
7875         returns as a unibyte string.
7876
7877 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7878
7879         * lpath.el: Revert.
7880
7881         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
7882         (pgg-gpg-process-sentinel): Revert.
7883
7884         * pgg-pgp.el (pgg-pgp-process-region): Revert.
7885         (pgg-pgp-lookup-key): Revert.
7886
7887         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
7888         (pgg-pgp5-lookup-key): Revert.
7889
7890         * pgg.el (pgg-fetch-key): Revert.
7891
7892 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7893
7894         * lpath.el: Fbind string-as-multibyte for XEmacs.
7895
7896         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
7897         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
7898         (mml1991-pgg-encrypt): Ditto.
7899
7900         * pgg-gpg.el (pgg-string-to-multibyte): New function.
7901         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
7902         a multibyte buffer.
7903
7904         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
7905         (pgg-pgp-lookup-key): Ditto.
7906
7907         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
7908         (pgg-pgp5-lookup-key): Ditto.
7909
7910         * pgg.el (pgg-fetch-key): Ditto.
7911
7912 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
7913
7914         * message.el (message-user-organization-file): Check several
7915         locations of the organization file.
7916
7917         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
7918         Add gnus-article-view-part-as-type.
7919
7920         * gnus-art.el (gnus-article-view-part-as-type): New function.
7921
7922         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
7923         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
7924
7925         * mml.el: Simplify autoload.
7926         (mml-mode): defvar dnd-protocol-alist instead of using
7927         symbol-value.
7928         (mml-default-directory): New variable.
7929         (mml-minibuffer-read-file): Use it.
7930         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
7931
7932         * message.el (message-citation-line-format): New variable.
7933         (message-insert-formated-citation-line): New function.
7934         (message-citation-line-function): Add
7935         `message-insert-formated-citation-line' to custom type.
7936
7937         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
7938         to doc string.
7939
7940         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
7941         depending on mm-verify-option.
7942
7943 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7944
7945         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
7946         binding pgg-* variables; reimplement the section which prevents
7947         MIME header from being signed.
7948         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
7949         pgg-text-mode; remove a blank line at the top of body.
7950
7951         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
7952         lines at the top of body; use gnus-newsgroup-charset if there's no
7953         Charset header.
7954
7955 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7956
7957         * message.el (message-self-insert-commands): Doc fix.
7958
7959         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
7960         (mm-uu-pgp-encrypted-test): Ditto.
7961         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
7962         between header and body; return application/pgp-encrypted handle
7963         if decryption failed; decode decrypted body by charset.
7964
7965         * mm-decode.el (mm-automatic-display): Don't make application/pgp
7966         element match to application/pgp-*.
7967
7968 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7969
7970         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
7971         HTML.
7972
7973 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7974
7975         * mail-source.el (mail-source-call-script): Message the error
7976         string.
7977
7978 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7979
7980         * gnus-util.el (gnus-byte-compile): Use it.
7981
7982 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
7983
7984         * gnus-util.el (kill-empty-logs): New function.
7985
7986 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7987
7988         * message.el (message-mail-alias-type): Doc fix.
7989         (message-mail-alias-type-p): New function.
7990         (message-send): Use it.
7991         (message-mode): Ditto.
7992         (message-strip-forbidden-properties): Ditto.
7993
7994         * ecomplete.el (ecomplete-database-file-coding-system): New
7995         variable.
7996         (ecomplete-save): Use it.
7997         (ecomplete-setup): Use it.
7998
7999 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8000
8001         * message.el (message-self-insert-commands): New variable.
8002         (message-strip-forbidden-properties): Use it.
8003
8004 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8005
8006         * message.el (message-put-addresses-in-ecomplete): Use a regexp
8007         that doesn't make XEmacs choke.
8008
8009 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
8010
8011         * gnus-util.el (gnus-replace-in-string):
8012         Prefer replace-regexp-in-string over of replace-in-string.
8013
8014 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8015
8016         * gnus-util.el (gnus-select-frame-set-input-focus):
8017         Use select-frame-set-input-focus if it is available in XEmacs; use
8018         definition defined in Emacs 22 for old Emacsen.
8019
8020         * dgnushack.el: Autoload unmorse-region for XEmacs.
8021
8022         * lpath.el: Bind cursor-in-non-selected-windows and
8023         select-frame-set-input-focus for XEmacs.
8024
8025 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8026
8027         * mm-view.el (mm-inline-text): Use equal instead of equalp.
8028
8029 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
8030
8031         * gnus-registry.el (gnus-registry-cache-save): Remove text
8032         properties when saving via the temp buffer.
8033
8034 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
8035
8036         * message.el (message-generate-hashcash): Honor custom type.
8037
8038 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8039
8040         * message.el (message-generate-hashcash): Default to non-nil when
8041         hashcash is found.
8042
8043         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
8044         (gnus-refer-thread-limit): Increase default to 500.
8045
8046         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
8047
8048         * flow-fill.el (fill-flowed): Allow delete-space.
8049
8050 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
8051
8052         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
8053         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
8054         Remove autoloads.
8055
8056 2006-04-18  Simon Josefsson  <jas@extundo.com>
8057
8058         * message.el (message-generate-hashcash): Default to.
8059
8060 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8061
8062         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
8063         concatenating segments rather than before concatenating them.
8064
8065 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
8066
8067         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
8068
8069 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8070
8071         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
8072
8073         * message.el (message-forward-make-body-plain): Allow
8074         message-forward-ignored-headers to be a list.
8075         (message-remove-ignored-headers): Factor out into function.
8076         (message-forward-make-body-mml): Use it.
8077
8078         * imap.el (imap-quote-specials): New function.
8079         (imap-login-auth): Quote specials.
8080
8081         * rfc2231.el (rfc2231-parse-string): Remove dead code.
8082         (rfc2231-parse-string): Allow concatanation of parameters that
8083         aren't contiguous.  The test case is
8084           (mail-header-parse-content-type "message/external-body;
8085             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
8086             access-type=LOCAL-FILE;
8087             name*1*=plugh%2fhello-sailor%2fbing.pdf")
8088
8089 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8090
8091         * nntp.el (nntp-accept-process-output): Return the value of
8092         `nnheader-accept-process-output'.
8093
8094 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8095
8096         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
8097         (gnus-button-alist): Recognize more diff formats.
8098         (gnus-button-patch): Strip directory.
8099
8100 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
8101
8102         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
8103         Emacs 22 when setting focus.
8104
8105 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8106
8107         * gnus-art.el (gnus-article-treat-types): Do treatment of
8108         text/x-verbatim parts.
8109         (gnus-button-patch): New command.
8110
8111         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
8112         addresses that contain invalid characters.
8113
8114 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8115
8116         * message.el (message-put-addresses-in-ecomplete): Use
8117         gnus-replace-in-string.
8118         (message-is-yours-p): Use the more correct
8119         mail-header-parse-address instead of
8120         mail-extract-address-components.
8121         (message-put-addresses-in-ecomplete): Fix typo.
8122
8123         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
8124         keystroke.
8125
8126         * gnus-art.el (gnus-treatment-function-alist): Change order of
8127         newsgroups/generic header folding to avoid double-folding.
8128
8129         * message.el (message-hidden-headers): Add X-Draft-From.
8130
8131         * gnus-sum.el (gnus-summary-repeat-search-article-forward): New
8132         command.
8133         (gnus-summary-repeat-search-article-backward): New command.
8134
8135         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
8136         groups in the parent topic.
8137
8138 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
8139
8140         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
8141         (spam-extra-header-to-number): Return the CRM114 number as a
8142         number instead of a string.
8143
8144 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8145
8146         * gnus-art.el (gnus-face-properties-alist): Moved here from
8147         gnus-fun.
8148
8149         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
8150
8151 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8152
8153         * message.el (message-strip-forbidden-properties): Only display on
8154         self-insert-command.
8155
8156         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
8157         reindent.
8158         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
8159
8160 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
8161
8162         * smiley.el (smiley-style): Fix typo.
8163
8164 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8165
8166         * hashcash.el (hashcash-insert-payment-async-2): Use
8167         message-goto-eoh instead of doing it manually.
8168         (mail-add-payment): Use message-narrow-to-header instead of trying
8169         to do the same itself.
8170
8171         * message.el (message-hidden-headers): Add Face.
8172
8173         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
8174         reparenting code.
8175         (gnus-summary-reparent-children): Refactored out code.
8176         (gnus-summary-thread-map): New keystroke.
8177         (gnus-summary-reparent-children): Make into command.
8178
8179         * smiley.el (smiley-style): Default to `medium' if using a large
8180         font.
8181
8182         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
8183         does it itself.
8184
8185         * message.el (message-point-in-header-p): Simplify definition.
8186
8187 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8188
8189         * nnagent.el (nnagent-request-set-mark): Silence log file
8190         writing.
8191         (nnagent-request-set-mark): Use write-region instead of
8192         append-to-file.
8193
8194         * gnus-sum.el (gnus-read-header): Fudge article number if using a
8195         strange select method.
8196
8197         * ecomplete.el (ecomplete-display-matches): Get highlightling
8198         right.
8199         (ecomplete-display-matches): Use literals.
8200         (ecomplete-display-matches): Disable message logging.
8201
8202         * message.el (message-display-abbrev): Small optimization.
8203
8204         * ecomplete.el (ecomplete-display-matches): Allow automatic
8205         display.
8206
8207         * message.el (message-strip-forbidden-properties): Display
8208         abbrevs.
8209         (message-display-abbrev): Get automatic display right.
8210
8211         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
8212         keystrokes.
8213
8214 2006-04-13  Romain Francoise  <romain@orebokech.com>
8215
8216         TODO: Backport to v5-10!
8217
8218         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
8219         Moved here (and renamed) from gnus-registry.el.
8220
8221         * gnus-registry.el: Require gnus-util.
8222         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
8223
8224 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8225
8226         * gnus-group.el (gnus-group-catchup-current): Change
8227         if-then-else-if-then-else into cond.
8228         (gnus-group-catchup): Indent.
8229         (group-name-at-point): New function.
8230         (gnus-fetch-group): Provide default from thing at point.
8231
8232 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8233
8234         * message.el (message-display-abbrev): Fix regexp.
8235
8236         * ecomplete.el (ecomplete-highlight-match-line): Reimplement
8237         choosing.
8238         (ecomplete-highlight-match-line): Fix up code rewrite, remove
8239         dead variables.
8240
8241         * message.el (message-newline-and-indent): Remove debugging.
8242         (message-display-abbrev): Use new implementation.
8243
8244 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
8245
8246         * gnus-art.el (gnus-article-mode): Set
8247         cursor-in-non-selected-windows to nil.
8248
8249         * smiley.el: Revert previous change.
8250         (smiley-data-directory): defvar it before using it in the
8251         defcustom of `smiley-style'.
8252
8253 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8254
8255         * message.el (message-newline-and-indent): New function.
8256
8257         * ecomplete.el: Implement more bits.
8258
8259         * message.el (message-put-addresses-in-ecomplete): Clean up the
8260         string.
8261
8262         * ecomplete.el (ecomplete-add-item): Chop off decimals.
8263
8264         * gnus-sum.el (gnus-summary-save-parts): Bind
8265         gnus-summary-save-parts-counter and use it to make unique file
8266         names.
8267
8268         * gnus-art.el (gnus-ignored-headers): Add some more headers.
8269
8270         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
8271         parameter to say whether to actually parse the individual
8272         addresses.
8273
8274         * message.el (message-put-addresses-in-ecomplete): New function.
8275         (ecomplete): Require.
8276         (message-mail-alias-type): Add ecomplete as an option.
8277
8278 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
8279
8280         * flow-fill.el (fill-flowed): Remove trailing space from blank
8281         quoted lines.
8282
8283 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8284
8285         * smiley.el (smiley-style): Move definition later to avoid a
8286         compilation warning.
8287
8288 2006-04-12  Kenichi Handa  <handa@m17n.org>
8289
8290         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
8291         buffer and then decode the buffer text if necessary.
8292         (rfc2231-encode-string): Be sure to work on multibyte buffer at
8293         first, and after mm-encode-body, change the buffer to unibyte.
8294         Use mm-disable-multibyte instead of set-buffer-multibyte.
8295
8296 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8297
8298         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
8299         Content-Type header instead of Content-Disposition header.
8300         (gnus-mime-inline-part): Ditto.
8301         (gnus-mime-view-part-as-charset): Ignore charset that the part
8302         specifies.
8303
8304         * mm-decode.el (mm-display-part): Work with external parts and
8305         usual parts similarly.
8306
8307         * mm-extern.el (mm-inline-external-body): Use mm-display-part
8308         instead of gnus-display-mime.
8309
8310         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
8311         instead of with-temp-buffer.
8312
8313         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
8314         tag to summarized topics part in order to encode non-ASCII text.
8315
8316 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8317
8318         * smiley.el (smiley-style): New variable.
8319         (smiley-directory): New function.
8320         (smiley-data-directory): Derive from `smiley-style' using
8321         `smiley-directory'.
8322         (smiley-regexp-alist): Add new entries.
8323
8324         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
8325         (gnus-article-browse-delete-temp): Add :version.
8326
8327 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
8328
8329         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
8330         the sieve region.
8331
8332 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8333
8334         * gnus.el (gnus-version-number): Bump version.
8335
8336 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8337
8338         * gnus.el: No Gnus v0.4 is released.
8339
8340 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8341
8342         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
8343         layout.
8344
8345         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
8346         unknown charset.
8347
8348         * message.el (message-header-synonyms): Add Original-To to the
8349         default.
8350
8351         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
8352         optional parameter.
8353
8354 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
8355
8356         * gnus-fun.el (gnus): Require it for gnus-directory.
8357
8358 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8359
8360         * gnus-fun.el (gnus-face-properties-alist): Add :version.
8361
8362 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8363
8364         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
8365
8366 2006-04-05  Simon Josefsson  <jas@extundo.com>
8367
8368         * password.el (password-reset): New function.
8369
8370 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8371
8372         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region): Wait
8373         for BEGIN_SIGNING too, new in GnuPG 1.4.3.
8374
8375 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8376
8377         * nnweb.el (nnweb-google-create-mapping): Update regexp.
8378         Some whitespace was matched into the url, which broke browsing hits
8379         > 100 when mm-url-use-external was nil.
8380
8381 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
8382
8383         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Check
8384         gnus-extra-headers for 'Newsgroups.
8385
8386         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
8387         bound.
8388
8389 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
8390
8391         * pgg-gpg.el: Clean up process buffers every time gpg processes
8392         complete.
8393
8394 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
8395
8396         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
8397         doc string.
8398
8399 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
8400
8401         * pgg-gpg.el (pgg-gpg-process-filter)
8402         (pgg-gpg-wait-for-completion): Check if buffer is alive.
8403
8404         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
8405         lines, temporary fix.
8406
8407 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
8408
8409         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
8410
8411 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
8412
8413         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
8414         default-enable-multibyte-characters.  This reverts the change from
8415         revision 6.17 which is no longer necessary because the passphrase
8416         is sent separately now.  GnuPG messages are unreadable under
8417         multibyte locales with default-enable-multibyte-characters set to
8418         nil.
8419
8420 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
8421
8422         * message.el (message-tool-bar-gnome): Move "spell".
8423
8424 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
8425
8426         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
8427         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
8428         instead.
8429
8430 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
8431
8432         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Improve
8433         newsgroups handling for NNTP overviews which don't include
8434         Newsgroups.
8435
8436 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8437
8438         * message.el (message-resend): Bind message-generate-hashcash to nil.
8439
8440 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8441
8442         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
8443         when searching for already-paid recipients.
8444
8445 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
8446
8447         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
8448         passphrases when it is not needed.
8449         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
8450         passphrase stuff from gpg, should only be necessary when you use
8451         gpg with a smartcard.
8452
8453 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8454
8455         * mml.el (mml-insert-mime): Ignore cached contents of
8456         message/external-body part.
8457
8458         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
8459         (mm-insert-part): Ditto.
8460
8461 2006-03-23  Simon Josefsson  <jas@extundo.com>
8462
8463         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
8464         Reiner.
8465         (pgg-gpg-use-agent-p): Use it again.
8466
8467 2006-03-23  Simon Josefsson  <jas@extundo.com>
8468
8469         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
8470         older emacsen.
8471         (pgg-gpg-use-agent-p): Don't use it.
8472
8473 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
8474
8475         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
8476         if we can.
8477
8478 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
8479
8480         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
8481         (pgg-gpg-update-agent): New function.
8482         (pgg-gpg-use-agent-p): New function.
8483         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
8484         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
8485         (pgg-gpg-sign-region): Use it.
8486
8487 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8488
8489         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
8490         Reported by Ralf Wachinger <rwachinger@gmx.de>.
8491
8492 2006-03-21  Simon Josefsson  <jas@extundo.com>
8493
8494         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
8495         <wilde@sha-bang.de>.
8496         (pgg-gpg-use-agent): New variable.
8497         (pgg-gpg-process-region): Use it.
8498         (pgg-gpg-encrypt-region): Likewise.
8499         (pgg-gpg-encrypt-symmetric-region): Likewise.
8500         (pgg-gpg-decrypt-region): Likewise.
8501         (pgg-gpg-sign-region): Likewise.
8502         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
8503
8504 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
8505
8506         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
8507
8508         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
8509         Add comment on version.
8510
8511 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
8512
8513         * smiley.el: Add missing test smiley.
8514
8515 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8516
8517         * mm-decode.el (mm-with-part): New macro.
8518         (mm-get-part): Use it; work with message/external-body as well.
8519         (mm-save-part): Treat name and filename equally.
8520
8521         * mm-extern.el (mm-extern-cache-contents): New function.
8522         (mm-inline-external-body): Use it; force the part to be displayed;
8523         move undisplayer added to the cached handle to the parent.
8524
8525         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
8526         (gnus-mime-view-part-as-type): Work with message/external-body.
8527
8528         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
8529
8530 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
8531
8532         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
8533         images in image-load-path.  [Sync with image.el, revision 1.60, in
8534         Emacs.]
8535
8536 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
8537
8538         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
8539         path rather than symbol.  Always return list of directories.
8540         Guarantee that image directory comes first.  [Sync with image.el,
8541         revision 1.59, in Emacs.]
8542
8543         * message.el (message-make-tool-bar): Adjust to new API of
8544         `gmm-image-load-path-for-library'.
8545
8546         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8547
8548         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8549
8550 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8551
8552         * gnus-art.el (gnus-article-only-boring-p):
8553         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
8554         intangible text.
8555         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
8556
8557 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
8558
8559         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.  Use
8560         `defun' instead of `gmm-defun-compat'.
8561
8562 2006-03-14  Simon Josefsson  <jas@extundo.com>
8563
8564         * message.el (message-unique-id): Don't use message-number-base36
8565         if (user-uid) is a float.
8566         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
8567
8568 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8569
8570         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
8571
8572         * gnus-art.el (gnus-mime-display-single): Make sure there is an
8573         empty line between a part and a message part.
8574
8575 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
8576
8577         * smiley.el: Add more test smileys.
8578         (smiley-data-directory, smiley-regexp-alist)
8579         (gnus-smiley-file-types): Fix doc strings.
8580         (smiley-update-cache): Clear smiley-cached-regexp-alist before
8581         adding new elements.
8582         (smiley-mouse-map): Unused code.  Make it a comment.
8583
8584 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8585
8586         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
8587         scan latest NoCeM messages instead of old ones.
8588         (gnus-nocem-check-article): Fix regexps so as to match to PGP
8589         delimiters that are recently used.
8590         (gnus-nocem-load-cache): Add autoload cookie.
8591
8592         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
8593
8594         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
8595         level which is larger than gnus-use-nocem is specified.
8596
8597         * gnus-group.el (gnus-group-get-new-news): Ditto.
8598
8599 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
8600
8601         * gnus-util.el (gnus-tool-bar-update): New function.
8602
8603         * gnus-group.el (gnus-group-update-tool-bar): New variable.
8604         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
8605
8606         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
8607
8608         * gnus-group.el (gnus-group-redraw-when-idle)
8609         (gnus-group-redraw-check): Remove.
8610         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
8611
8612 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8613
8614         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
8615         if optional last element is specified in splits (FIELD VALUE...).
8616
8617 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
8618
8619         * message.el (message-make-tool-bar): Rename gmm-image-load-path
8620         to gmm-image-load-path-for-library.  Call with no-error argument.
8621         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
8622
8623         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8624
8625         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8626
8627         * gmm-utils.el (gmm-image-load-path): Remove alias.
8628
8629 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
8630
8631         * gmm-utils.el (gmm-image-load-path): Add alias.
8632
8633         * nnml.el (nnml-generate-nov-databases-directory): Rename from
8634         nnml-generate-nov-databases-1.
8635         (nnml-generate-nov-databases): Use it.
8636         (nnml-generate-nov-databases-directory): Document no-active
8637         argument.
8638
8639         * gmm-utils.el (gmm-image-load-path-for-library): Return single
8640         directory if path is t.  Add no-error.
8641
8642         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
8643         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
8644
8645         * gnus-art.el (gnus-article-browse-delete-temp-files): Simplify
8646         resetting gnus-article-browse-html-temp-list.
8647
8648         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
8649         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
8650         Add example to docstring.  Rename local variables.  Move error
8651         checks to default case in cond and simplify.
8652
8653 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8654
8655         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
8656         handle is multipart when calling it recursively.
8657         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
8658
8659 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
8660
8661         * nnimap.el (nnimap-request-update-info-internal): Optimize.
8662         Don't `gnus-uncompress-range' to avoid excessive memory usage.
8663
8664 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8665
8666         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
8667         is loaded.
8668
8669         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
8670         loaded.
8671
8672 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
8673
8674         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
8675         to "Emacs 23 (unicode)" in doc string.
8676
8677         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
8678         "Emacs 23 (unicode)" in comment.
8679
8680 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8681
8682         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
8683
8684         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
8685         characters 160 through 255 in Emacs 23.
8686
8687 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8688
8689         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
8690         gnus-article-browse-html-temp.
8691         (gnus-article-browse-delete-temp): Make it customizable.  Add
8692         `file'.  Adjust doc string.
8693         (gnus-article-browse-delete-temp-files): Add argument.  Allow
8694         query for each file.  Adjust doc string.
8695         (gnus-article-browse-html-parts): Add
8696         `gnus-article-browse-delete-temp-files' to
8697         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
8698
8699 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
8700
8701         * gnus-art.el (gnus-article-browse-html-temp)
8702         (gnus-article-browse-delete-temp): New variables.
8703         (gnus-article-browse-delete-temp-files): New function.
8704         (gnus-article-browse-html-parts): Use it.
8705
8706 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8707
8708         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
8709
8710         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
8711         string.
8712
8713         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
8714         gnus-summary-insert-new-articles when unplugged.  Remove
8715         gnus-summary-search-article-forward.
8716
8717         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
8718         display-visual-class instead of display-color-cells.
8719
8720 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8721
8722         * dgnushack.el: Autoload customize-group for XEmacs.
8723
8724         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
8725         message/* containing non-ASCII text properly.
8726
8727 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
8728
8729         * message.el: Require gmm-utils, remove autoloads.
8730         (message-tool-bar): Set default based on
8731         gmm-tool-bar-style.
8732         (message-tool-bar-gnome): Add gmm-customize-mode.
8733
8734         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
8735         gmm-tool-bar-style.
8736         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
8737
8738         * gnus-group.el (gnus-group-tool-bar): Set default based on
8739         gmm-tool-bar-style.
8740         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
8741
8742         * gmm-utils.el (gmm-image-directory): Rename variable from
8743         gmm-image-load-path.
8744         (gmm-image-load-path): Use gmm-image-directory.
8745         (gmm-customize-mode): New function.
8746         (gmm-tool-bar-style): New variable.
8747
8748         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
8749         gnus-group-redraw-line-number.
8750         (gnus-group-redraw-check): Simplify.
8751         (gnus-group-tool-bar-update): Remove redraw check.
8752         (gnus-group-make-tool-bar): Add redraw check.
8753
8754 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
8755
8756         * gnus-art.el (gnus-button): Add missing parentheses.
8757
8758 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8759
8760         * lpath.el: Fbind line-number-at-pos.
8761
8762 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8763
8764         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
8765
8766 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8767
8768         * gnus-art.el (gnus-button): New face.
8769         (gnus-article-button-face): Use it.
8770
8771         * gnus-sum.el (gnus-summary-tool-bar-gnome): Add
8772         gnus-summary-next-page.  Re-order.
8773
8774         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
8775         next-node are now included.
8776         (gnus-group-redraw-line-number): New internal variable.
8777         (gnus-group-redraw-check): Helper function for updating the tool
8778         bar.
8779         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
8780
8781         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
8782
8783         * spam.el (spam-spamassassin-score-regexp): New internal variable.
8784         (spam-extra-header-to-number, spam-check-spamassassin-headers):
8785         Use it to match format of Spamassassin 3.0 and later.  Reported by
8786         IRIE Tetsuya <irie@t.email.ne.jp>.
8787         (spam-check-bogofilter)
8788         (spam-bogofilter-register-with-bogofilter): Fix args of
8789         `gnus-error' calls.
8790
8791 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8792
8793         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
8794         unnecessary interaction when sending queued mails.  Reported by
8795         TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
8796
8797 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
8798
8799         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
8800         first or last are nil.
8801
8802 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8803
8804         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
8805
8806 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8807
8808         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
8809
8810 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8811
8812         * dns.el (query-dns): Protect more against buggy tcp output.
8813
8814 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
8815
8816         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
8817         nov.php.
8818
8819 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8820
8821         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
8822         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
8823         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
8824         output on the server side.
8825         (nnweb-google-create-mapping): Update regexps and add some
8826         progress indication.
8827
8828 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
8829
8830         * gnus-group.el (gnus-group-tool-bar-gnome): Fix
8831         gnus-agent-toggle-plugged.  Re-order icons.
8832         (gnus-group-tool-bar-gnome): Add
8833         gnus-group-{prev,next}-unread-group.
8834         (gnus-group-tool-bar-gnome): Re-order icons.
8835
8836         * gnus-sum.el (gnus-summary-tool-bar-gnome): Move
8837         gnus-summary-insert-new-articles.
8838
8839         * message.el (message-tool-bar-gnome, message-tool-bar-retro): Fix
8840         comments.
8841
8842         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
8843         also available in Emacs 21.3.
8844
8845         * message.el (message-fix-before-sending): Change "Emacs 22" to
8846         "Emacs 23 (unicode)" in comment.
8847
8848         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
8849         "Emacs 23 (unicode)" in comment.
8850
8851         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
8852         comment.
8853         (mm-coding-system-p): Add comment about no-MULE XEmacs.
8854
8855         * mm-view.el (mm-fill-flowed): Add :version.
8856
8857 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8858
8859         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
8860         and load-path.
8861
8862 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
8863
8864         * message.el: Autoload gmm-image-load-path.
8865         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
8866         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
8867         consitency.
8868
8869         * gmm-utils.el (gmm-image-load-path): Also search in
8870         "../etc/images".  Don't set gmm-image-load-path if we don't find
8871         the image.
8872
8873 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8874
8875         * gmm-utils.el (gmm-image-load-path): Don't make
8876         `gmm-image-load-path' include subdirectories which the second arg
8877         `image' might specify.
8878
8879         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
8880         subdirectory to icon file names.
8881
8882         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
8883
8884 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
8885
8886         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
8887         gmm-image-load-path calls.
8888
8889         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8890
8891         * message.el (message-make-tool-bar): Ditto.
8892
8893         * mml.el (mml-preview): Added comment concerning tool bar icons.
8894
8895         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
8896         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
8897
8898         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
8899         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
8900
8901         * message.el (message-tool-bar-gnome): Use new icon names.
8902         (message-make-tool-bar): Use `gmm-image-load-path'.
8903
8904         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path): New
8905         functions from MH-E.
8906         (gmm-image-load-path): New variable from MH-E.
8907         (gmm-image-load-path): New function from MH-E.  Added arguments
8908         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
8909         *-image-load-path-called-flag.
8910
8911 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
8912
8913         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
8914
8915 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
8916
8917         * nnimap.el (nnimap-request-move-article): Change folder back to
8918         source group before deleting.
8919
8920 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
8921
8922         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
8923
8924         * gnus-art.el (mm-url-insert-file-contents-external): Autoload
8925         mm-url.
8926
8927         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
8928
8929 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8930
8931         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
8932         coding system which mm-charset-to-coding-system returns for a
8933         given charset is valid.
8934
8935 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
8936
8937         * html2text.el (html2text-remove-tag-list):
8938         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
8939
8940 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
8941
8942         * gnus-cus.el: Revert 2005-10-17 change.
8943
8944 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8945
8946         * gnus-art.el (article-strip-banner): Call
8947         article-really-strip-banner only when the regexp match is made.
8948
8949 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8950
8951         * gnus-art.el (article-strip-banner): Use
8952         gnus-extract-address-components instead of
8953         mail-header-parse-addresses to make it work with non-ASCII text;
8954         remove mail-encode-encoded-word-string.
8955
8956         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
8957         values which are surrounded with \"...\"; make it never cause a
8958         Lisp error; give up parsing of parameters if it failed in
8959         extracting type.
8960
8961 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
8962
8963         * smime.el (smime-cert-by-ldap-1): Fix bug where
8964         `smime-ldap-search' returns results without userCertificates.
8965
8966 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8967
8968         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
8969
8970 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
8971
8972         * spam.el (spam-check-spamassassin-headers): Adapt format for
8973         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
8974         <ari@mbf.ocn.ne.jp>.
8975         (spam-list-of-processors): Add spam-use-gmane.
8976
8977 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8978
8979         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
8980         make-temp-file; make it work with XEmacs as well.
8981
8982         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
8983         mm-make-temp-file.
8984
8985         * mm-decode.el (mm-display-external): Use the 3rd arg of
8986         mm-make-temp-file.
8987         (mm-create-image-xemacs): Ditto.
8988
8989 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8990
8991         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
8992         with message-narrow-to-headers.
8993         (gnus-draft-setup): Narrow to header to run message-fetch-field.
8994         (gnus-draft-check-draft-articles): New function.
8995         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
8996
8997 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
8998
8999         * gnus-art.el (gnus-article-browse-html-parts):
9000         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
9001         Don't use suffix argument for mm-make-temp-file for Emacs 21
9002         compatibility.  Remove useless `format'.
9003
9004 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9005
9006         * nnweb.el (nnweb-google-wash-article): Update regexps.
9007         (nnweb-group-alist): Use defvoo instead of defvar.
9008
9009 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9010
9011         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
9012         re-loading nn* modules.
9013
9014 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
9015
9016         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
9017         for `tool-bar-mode' and don't check it's default-value.
9018
9019         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
9020
9021         * message.el (message-make-tool-bar): Ditto.
9022
9023         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
9024         `substring'.  Shorten tmp-file name.
9025
9026         * gnus.el: Remove bogus comment.
9027
9028 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
9029
9030         * gnus-art.el (gnus-article-browse-html-parts): New function.
9031         (gnus-article-browse-html-article): New function for viewing html
9032         articles with a browser.
9033
9034 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
9035
9036         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
9037         in elisp.
9038         (pgg-gpg-encrypt-symmetric-region): Ditto.
9039         (pgg-gpg-sign-region): Ditto.
9040
9041         * pgg-def.el (pgg-text-mode): New variable.
9042
9043         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
9044         (mml2015-pgg-encrypt): Ditto.
9045
9046         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
9047         (mml1991-pgg-encrypt): Ditto.
9048
9049 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
9050
9051         * nnfolder.el (nnfolder-insert-newsgroup-line): Use
9052         message-make-date instead of current-time-string.
9053
9054         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
9055         to gnus-decoded which mm-uu might set.
9056
9057 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
9058
9059         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
9060         don't decode quoted parameters; remove misimported Emacs code.
9061         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
9062         (rfc2231-decode-encoded-string): Don't use split-string which
9063         behaves differently according to Emacs version; use
9064         mm-decode-coding-region to convert charset to coding-system.
9065         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
9066         (rfc2231-encode-string): Remove misimported Emacs code.
9067
9068 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9069
9070         * gnus-art.el (article-decode-charset): Don't use ignore-errors
9071         when calling mail-header-parse-content-type.
9072         (article-de-quoted-unreadable): Ditto.
9073         (article-de-base64-unreadable): Ditto.
9074         (article-wash-html): Ditto.
9075
9076         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
9077         calling mail-header-parse-content-type and
9078         mail-header-parse-content-disposition.
9079         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
9080         mail-header-parse-content-type.
9081
9082         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
9083         insert charset and format parameters; encode description after
9084         inserting it to buffer.
9085         (mml-insert-parameter): Fold lines properly even if a parameter is
9086         segmented into two or more lines; change the max column to 76.
9087
9088         * rfc1843.el (rfc1843-decode-article-body): Don't use
9089         ignore-errors when calling mail-header-parse-content-type.
9090
9091         * rfc2231.el (rfc2231-parse-string): Return at least type if
9092         possible; don't cause an error even if it fails in parsing of
9093         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
9094         (rfc2231-encode-string): Don't break lines at the beginning, leave
9095         it to mml-insert-parameter.
9096
9097         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
9098         calling mail-header-parse-content-type.
9099
9100 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
9101
9102         * spam-report.el (spam-report-gmane-use-article-number):
9103         Improve doc string.
9104         (spam-report-gmane-internal): Check if a suitable header was found
9105         in the article.
9106
9107 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9108
9109         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
9110         (rfc2231-encode-string): Make param*=value always begin with LWSP.
9111
9112 2006-02-05  Romain Francoise  <romain@orebokech.com>
9113
9114         Update copyright notices of all files in the gnus directory.
9115
9116 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9117
9118         * nnweb.el (nnweb-request-group): Avoid growing overview files.
9119
9120 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
9121
9122         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
9123         segmented lines of parameter value to cope with Thunderbird 1.5
9124         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
9125         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
9126         (rfc2231-encode-string): Don't make lines exceeding 76 column.
9127
9128 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
9129
9130         * mml.el (mml-generate-mime-1): Correct the order of inline signed
9131         parts.
9132
9133 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9134
9135         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
9136         there's only one active file for all servers.
9137         (nnweb-request-scan): Make sure nnweb-articles is initialized on
9138         solid groups.  Gnus might have used a FAST request to select the group.
9139         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
9140         and nnweb-search redundantly in the active file.
9141         (nnweb-request-list): Don't list bogus groups.  There can only be one.
9142         (nnweb-request-create-group): Don't use ARGS.
9143         (nnweb-possibly-change-server, nnweb-request-group): Remove some
9144         initialisations.  Let nnoo do the work.
9145
9146 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9147
9148         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
9149         Say the part has been decoded.
9150
9151         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
9152
9153 2006-01-31  Kevin Ryde  <user42@zip.com.au>
9154
9155         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
9156         mailcap-viewer-test-cache when there's no 'test clause, since that
9157         will invert the meaning of a "nil" test previously determined by
9158         mailcap-mailcap-entry-passes-test.
9159
9160 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9161
9162         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
9163         compiling.
9164
9165         * gnus-sum.el: Ditto.
9166
9167         * message.el: Don't bind tool-bar-map when compiling.
9168
9169 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
9170
9171         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
9172
9173 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9174
9175         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
9176         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
9177         current Google Groups.
9178
9179 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
9180
9181         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
9182         and tool-bar-mode.
9183
9184         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
9185         and tool-bar-mode.
9186
9187         * message.el (message-tool-bar-update): Simplify.
9188         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
9189
9190         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
9191         gnus-summary-buffer.
9192         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
9193         gnus-summary-reply.
9194
9195         * gmm-utils.el (gmm): Add :version.
9196
9197 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9198
9199         * Makefile.in (clean): New rule.
9200         (distclean): Use it.
9201
9202 2006-01-26  Steve Youngs  <steve@sxemacs.org>
9203
9204         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list): Don't
9205         autoload.
9206
9207 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9208
9209         * gmm-utils.el (gmm-verbose): Add :group.
9210
9211 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
9212
9213         * message.el: Change some comments WRT tool-bars.
9214
9215         * gnus-sum.el (gnus-summary-tool-bar)
9216         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
9217         (gnus-summary-tool-bar-zap-list): New variables.
9218         (gnus-summary-make-tool-bar): Complete rewrite using
9219         `gmm-tool-bar-from-list'.
9220
9221         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
9222         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list): New
9223         variables.
9224         (gnus-group-make-tool-bar): Complete rewrite using
9225         `gmm-tool-bar-from-list'.
9226         (gnus-group-tool-bar-update): New function.
9227
9228         * message.el (message-mode-field-menu): Add "Show hidden Headers".
9229
9230 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9231
9232         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
9233         is dissected into a single part of which the type is the same as
9234         the given one; decode charset.
9235
9236 2006-01-21  Kevin Ryde  <user42@zip.com.au>
9237
9238         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
9239         into alists as symbol not string, since that's what
9240         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
9241         look for.
9242
9243 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
9244
9245         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
9246         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
9247
9248         * message.el (message-tool-bar-gnome): Use gmm-ignore.
9249
9250 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9251
9252         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
9253         (gnus-xmas-mime-security-button-menu): New function.
9254
9255         * gnus-art.el (gnus-mime-security-button-commands): New variable.
9256         (gnus-mime-security-button-menu): New definition.
9257         (gnus-mime-security-button-map): Use them.
9258         (gnus-mime-security-button-menu): New function.
9259         (gnus-insert-mime-security-button): Addition to help echo.
9260         (gnus-mime-security-run-function, gnus-mime-security-save-part)
9261         (gnus-mime-security-pipe-part): New functions.
9262
9263         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
9264         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
9265
9266         * mm-decode.el (mm-handle-set-disposition): Remove.
9267         (mm-handle-set-description): Remove.
9268
9269 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9270
9271         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
9272         (mm-w3m-standalone-supports-m17n-p): New function.
9273         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
9274         w3m usage.
9275
9276         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone): Use
9277         mm-w3m-standalone-supports-m17n-p to alter w3m usage.
9278
9279 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
9280
9281         * message.el (message-tool-bar-zap-list): Use
9282         gmm-tool-bar-zap-list as custom type.
9283         (message-tool-bar-update): New function.
9284         (message-tool-bar, message-tool-bar-gnome)
9285         (message-tool-bar-retro): Add message-tool-bar-update.
9286         (message-tool-bar-gnome): Add flyspell-buffer.
9287
9288         * gnus-util.el (gnus-error): Describe `args'.
9289
9290         * gmm-utils.el (gmm-error): Describe `args'.
9291         (gmm-tool-bar-zap-list): New widget.
9292         (gmm-tool-bar-from-list): Improve description of `zap-list'.
9293
9294 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9295
9296         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
9297         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
9298         the number of recursive calls.
9299
9300         * mm-decode.el (mm-handle-set-disposition): New macro.
9301         (mm-handle-set-description): New macro.
9302
9303 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9304
9305         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
9306         encoding.
9307
9308 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9309
9310         * message.el (message-tool-bar-zap-list, message-tool-bar)
9311         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
9312         (message-tool-bar-local-item-from-menu): Remove.
9313         (message-tool-bar-map): Replace by `message-make-tool-bar'.
9314         (message-make-tool-bar): New function.
9315         (message-mode): Use `message-make-tool-bar'.
9316
9317         * gmm-utils.el: New file.
9318         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
9319         (gmm-lazy): New widget copied from `nnmail.el'.
9320         (gmm-tool-bar-from-list): New function for creating customizable
9321         tool bars.
9322         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
9323         output.
9324         (gmm): Add :prefix to defgroup.
9325
9326 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
9327
9328         * gmm-utils.el (gmm-widget-p): New function.
9329
9330 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9331
9332         * mml.el (mml-attach-file): Describe `description' in doc string.
9333         (mml-menu): Add Emacs MIME manual and PGG manual.
9334
9335 2006-01-20  Richard M. Stallman  <rms@gnu.org>
9336
9337         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
9338
9339 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
9340
9341         * nntp.el (nntp-end-of-line): Doc fix.
9342
9343 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
9344
9345         * imap.el (imap-open): Handle case where buffer is a buffer
9346         object.
9347
9348 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9349
9350         * gnus-delay.el (gnus-delay): Don't autoload.
9351         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9352         to be re-loaded when customizing the `gnus-delay' group.
9353
9354 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
9355
9356         * message.el (message-insert-citation-line): Use newlines.
9357
9358 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9359
9360         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
9361         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
9362         these routines, so the passphrase can be managed externally and
9363         passed in to the system.
9364         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
9365         pgg-add-passphrase-to-cache function.
9366
9367         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
9368         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
9369         these routines, so the passphrase can be managed externally and
9370         passed in to the system.
9371         (pgg-pgp5-sign-region): Use new name of
9372         pgg-add-passphrase-to-cache function.
9373
9374 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9375
9376         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
9377         part of the decoded armor to find the key-identifier.
9378         (pgg-gpg-lookup-key-owner): New function to return the
9379         human-readable identifier of a key owner.
9380         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
9381         itself.
9382         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
9383         the key value) if we have a key and can match it against a secret
9384         key.  Also, added a note pointing out fact that the prompt only
9385         indicates the first matching key.
9386
9387         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
9388         pgg-decrypt-region.
9389         (pgg-add-passphrase-to-cache): Rename from
9390         `pgg-add-passphrase-cache' to reduce confusion (all callers
9391         changed).
9392         (pgg-remove-passphrase-from-cache): Rename from
9393         `pgg-remove-passphrase-cache' to reduce confusion (all callers
9394         changed).
9395         (pgg-read-passphrase, pgg-add-passphrase-cache)
9396         (pgg-remove-passphrase-cache): Add informative docstrings.
9397         (pgg-decrypt): Convey provided passphrase in subordinate call to
9398         pgg-decrypt-region.
9399
9400 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
9401
9402         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
9403         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
9404         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
9405         'passphrase' argument, so the passphrase can be managed externally
9406         and then passed in to the system.
9407
9408         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
9409         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
9410         so the passphrase cache can be used reliably with identifiers
9411         besides a pgp packet's key id.
9412
9413         * pgg-gpg.el (pgg-gpg-encrypt-region)
9414         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
9415         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
9416         these routines, so the passphrase can be managed externally and
9417         passed in to the system.
9418
9419         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
9420         'notruncate' argument, so the passphrase cache can be used
9421         reliably with identifiers besides a pgp packet's key id.
9422
9423 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
9424
9425         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
9426         symmetric encryption.
9427         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
9428         encrypted session key.
9429         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
9430         message ask for the passphrase in a proper way.
9431
9432         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
9433         New user commands for symmetric encryption.
9434
9435 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9436
9437         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
9438
9439         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
9440
9441 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
9442
9443         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
9444
9445 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9446
9447         * mm-decode.el (mm-inlined-types): Add application/pgp.
9448         (mm-automatic-display): Ditto.
9449
9450         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
9451         part as text.
9452
9453 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9454
9455         * nnrss.el: Update copyright.
9456         (nnrss-opml-import): Query whether to subscribe to each entry.
9457
9458         * gnus-art.el:
9459         * gnus-sum.el:
9460         * gnus-xmas.el:
9461         * messagexmas.el:
9462         * mm-uu.el:
9463         * mm-view.el: Update copyright.
9464
9465 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
9466
9467         * message.el (message-info): New function.
9468         (message-mode-menu): Add it.
9469         Update copyright.
9470
9471         * ChangeLog: Fix and update copyright.
9472
9473 2006-01-13  Romain Francoise  <romain@orebokech.com>
9474
9475         * message.el (message-forward-subject-name-subject): Prefer the
9476         address to 'nowhere' if the sender has no name.
9477         Fix typo.  Update copyright year.
9478
9479 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9480
9481         * gnus-art.el (article-wash-html): Use
9482         gnus-summary-show-article-charset-alist if a numeric arg is given.
9483         (gnus-article-wash-html-with-w3m-standalone): New function.
9484
9485         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
9486         mm-inline-text-html-render-with-w3m-standalone.
9487         (mm-text-html-washer-alist): Map w3m-standalone to
9488         gnus-article-wash-html-with-w3m-standalone.
9489         (mm-inline-text-html-render-with-w3m-standalone): New function.
9490
9491 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
9492
9493         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
9494         Improve LaTeX.
9495
9496 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9497
9498         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
9499         (nnrss-request-article): Render text/plain parts as HTML.
9500
9501         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
9502         the buffer.
9503
9504 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
9505
9506         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
9507         custom definition of `gnus-posting-styles'.
9508
9509         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bind
9510         print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
9511
9512 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
9513
9514         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
9515         Use nntp for bug archive.
9516
9517 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9518
9519         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
9520         parts.
9521         (nnrss-normalize-date): New function converts ISO 8601 date into
9522         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9523         (nnrss-check-group): Use it.
9524
9525 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9526
9527         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
9528
9529         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
9530         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9531         (nnrss-insert-w3): Ditto.
9532
9533 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9534
9535         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
9536         the articles to be forwarded including the case where neither a
9537         number of articles nor a region is specified.
9538
9539 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9540
9541         * nnrss.el (nnrss-request-article): Fix last change; fill
9542         text/plain parts.
9543
9544 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9545
9546         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
9547         in text/plain part.
9548         (nnrss-check-group): Don't add excessive newline to dc:subject.
9549
9550 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
9551
9552         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
9553         article.
9554
9555 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
9556
9557         * nnml.el: Don't require gnus-bcklg.  Autoload it.
9558         (nnml-use-compressed-files, nnml-save-mail): Support other
9559         comression programs such as bzip2.
9560
9561 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9562
9563         * dns.el (query-dns): Make sure we check the buffer size before
9564         removing tcp headers.
9565
9566 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9567
9568         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
9569         remove MIME buttons associated with multipart/alternative parts.
9570         (gnus-mime-display-alternative): Tag buttons using `article-type'
9571         text property.
9572
9573         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
9574         associated with multipart/alternative parts.
9575
9576         * gnus-art.el (gnus-signature-separator): Fix custom type.
9577
9578         * mm-decode.el (mm-inlined-types): Fix custom type.
9579         (mm-keep-viewer-alive-types): Ditto.
9580         (mm-automatic-display): Ditto.
9581         (mm-attachment-override-types): Ditto.
9582         (mm-inline-override-types): Ditto.
9583         (mm-automatic-external-display): Ditto.
9584
9585 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
9586
9587         * spam-report.el (spam-report-user-mail-address)
9588         (spam-report-user-agent): New variables.
9589         (spam-report-url-ping-plain): Use spam-report-user-agent.
9590
9591 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
9592
9593         * gnus-art.el (gnus-button-handle-custom): Do not just use
9594         `customize-apropos' for any "M-x customize-*" button but the
9595         function called for.  Accept both the function name and its
9596         argument in order to achieve this.
9597         (gnus-button-alist): Remove support for "custom:" URL's.  Pass
9598         function name to `gnus-button-handle-custom' in case of "M-x
9599         customize-*" buttons.
9600
9601 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9602
9603         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
9604         multipart/alternative and add xref to mm-discouraged-alternatives
9605         in doc string.
9606
9607         * mm-decode.el (mm-discouraged-alternatives): Add xref to
9608         gnus-buttonized-mime-types in doc string.
9609
9610 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
9611
9612         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
9613         Suggest image/.* in the doc string.
9614
9615 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
9616
9617         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
9618         message-marks (Debian bug #342521).
9619
9620 2005-12-12  Simon Josefsson  <jas@extundo.com>
9621
9622         * password.el (password-read-from-cache): Add.
9623         (password-read): Use it.
9624
9625 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9626
9627         * rfc2047.el (rfc2047-charset-to-coding-system): Recognize
9628         us-ascii as a MIME charset.
9629
9630         * mm-bodies.el (mm-decode-content-transfer-encoding): Protect
9631         against the case where the 2nd arg TYPE is nil.
9632
9633 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9634
9635         * pop3.el (pop3-stream-type): Fix custom version.
9636
9637         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
9638
9639 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9640
9641         * mm-decode.el (mm-display-external): Add missing cdr.
9642
9643 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9644
9645         * mm-decode.el (mm-display-external): Use nametemplate (defined in
9646         RFC1524) if it is in mailcap or add a suffix according to
9647         mailcap-mime-extensions when generating a temp filename; postpone
9648         deleting a temp file for 2 seconds for some wrappers, shell
9649         scripts, and so on, which might exit right after having started a
9650         viewer command as a background job.
9651
9652 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9653
9654         * nntp.el (nntp-marks-directory): Fix custom group.
9655
9656         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
9657         steps when < 10.
9658
9659         * gnus-start.el (gnus-no-server-1): Mention
9660         `gnus-level-default-subscribed' in doc string.
9661
9662 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9663
9664         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
9665         parens.
9666
9667 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9668
9669         * gnus-xmas.el (gnus-use-toolbar): Revert.
9670         (gnus-xmas-setup-toolbar): Use global default-toolbar if
9671         gnus-use-toolbar is default.
9672
9673         * messagexmas.el (message-use-toolbar): Revert.
9674         (message-setup-toolbar): Use global default-toolbar if
9675         message-use-toolbar is default.
9676
9677 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9678
9679         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
9680         according to default-toolbar-visible-p.
9681
9682         * messagexmas.el (message-use-toolbar): Ditto.
9683
9684 2005-11-26  Dave Love  <fx@gnu.org>
9685
9686         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
9687         (tls-program, tls-success): Provide openssl alternative.
9688
9689         * starttls.el: Doc fixes.
9690         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
9691         SERVICE to PORT.
9692
9693         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
9694         port null or service name.
9695         (starttls-negotiate): Autoload.
9696
9697 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9698
9699         * message.el (message-kill-to-signature): Fix interactive spec.
9700
9701 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9702
9703         * pop3.el (pop3-open-server): Recognize a string as a service name.
9704
9705 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
9706
9707         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
9708
9709 2005-11-23  Dave Love  <fx@gnu.org>
9710
9711         Add pop3s, pop3/starttls.
9712
9713         * pop3.el (pop3-authentication-scheme): Clarify doc.
9714         (open-tls-stream, starttls-open-stream): Autoload.
9715         (pop3-stream-type): New.
9716         (pop3-open-server): Use it.
9717
9718         * mail-source.el (mail-sources): Fix some :types.  Add stream type
9719         for POP.
9720         (mail-source-keyword-map): Add :stream for POP.
9721         (mail-source-fetch-pop): Use pop3-stream-type.
9722
9723 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9724
9725         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
9726         of current-time-string.
9727
9728 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
9729
9730         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
9731         date header.
9732
9733 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9734
9735         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
9736         it can seriously impact performance as it bypasses the agent's
9737         local caches.
9738
9739 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9740
9741         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
9742         must be explicitly online rather than "not explicitly offline" for
9743         its flags to be synchronized.
9744
9745         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
9746         that gnus-uu-unmark-thread will function correctly.
9747
9748         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
9749         1024K is instead displayed as 1M.
9750
9751 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9752
9753         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
9754
9755 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
9756
9757         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
9758
9759 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
9760
9761         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
9762         error message to display actual error condition.
9763         (gnus-agent-save-local): Avoid saving symbols that are bound to
9764         nil as they simply result in a warning message in
9765         gnus-agent-read-local.
9766
9767 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9768
9769         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
9770         rather than make-variable-buffer-local for file-precious-flag.
9771
9772 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9773
9774         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
9775         for duplicates which are removed.  The invalid sort check then
9776         triggers a rescan after the sort as sorting may have moved
9777         duplicate entries such that they can be cheaply detected.
9778
9779 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9780
9781         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
9782
9783 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9784
9785         * gnus-agent.el (gnus-agent-article-alist-save-format): Changed
9786         internal variable to a custom variable.  Changed default value
9787         from compressed(2) to uncompressed(1).
9788         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
9789         support for uncompressed agentview files.  Taken together, reading
9790         the agentview file should now be 6-7 times faster.
9791
9792 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
9793
9794         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
9795         as a buffer-local variable.  This avoids creating truncated
9796         dribble files as a result of a hang up, eg.
9797
9798 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
9799
9800         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
9801         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
9802         XEmacs.
9803
9804 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9805
9806         * gnus-start.el (gnus-start-draft-setup): Enforce
9807         `gnus-draft-mode' for nndraft:drafts at startup.
9808
9809         * gnus.el (gnus-splash): Change custom group.
9810         (gnus-group-get-parameter, gnus-group-parameter-value): Describe
9811         allow-list argument.
9812
9813         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
9814         string.
9815
9816 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9817
9818         * gnus-art.el (gnus-default-article-saver): Add user-defined
9819         `function' to custom type.
9820
9821 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9822
9823         * imap.el (imap-open): Handle case where buffer is a buffer
9824         object.
9825
9826 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
9827
9828         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
9829         long lines.
9830         (gnus-cache-delete-group): Wrap doc strings.
9831
9832         * gnus-agent.el (gnus-agent-rename-group)
9833         (gnus-agent-delete-group): Wrap doc strings.
9834
9835 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9836
9837         * messagexmas.el (message-use-toolbar): Change the valid values
9838         into default, top, bottom, left, and right.
9839         (message-toolbar-thickness): New variable.
9840         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
9841         well.
9842         (message-setup-toolbar): Make it work.
9843
9844         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
9845         (gnus-use-toolbar): Change the valid values into default, top,
9846         bottom, left, and right.
9847         (gnus-toolbar-thickness): New variable.
9848         (gnus-xmas-setup-toolbar): New function.
9849         (gnus-xmas-setup-group-toolbar): Use it.
9850         (gnus-xmas-setup-summary-toolbar): Use it.
9851
9852 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9853
9854         * gnus-start.el (gnus-1): Add "native" to
9855         gnus-predefined-server-alist.
9856
9857         * gnus.el (gnus-method-to-server): Don't add "native" to the
9858         lists here, because that leads to problems when
9859         gnus-select-method is bound.
9860
9861 2005-11-09  Simon Josefsson  <jas@extundo.com>
9862
9863         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
9864         use (not sort-by-date) instead.
9865
9866 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9867
9868         * gnus-delay.el (gnus-delay-group): Don't autoload.
9869         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9870         to be re-loaded when customizing the `gnus-delay' group.
9871
9872 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
9873
9874         * message.el: Revert last changes.
9875         (message-insert-citation-line): Use newlines.
9876
9877 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
9878
9879         * message.el (message-courtesy-message)
9880         (message-mark-insert-begin, message-mark-insert-end)
9881         (message-elide-ellipsis, message-cancel-message)
9882         (message-add-header, message-change-subject)
9883         (message-cross-post-followup-to-header)
9884         (message-cross-post-insert-note, message-reduce-to-to-cc)
9885         (message-widen-reply, message-delete-not-region)
9886         (message-kill-to-signature, message-insert-signature)
9887         (message-insert-importance-high, message-insert-importance-low)
9888         (message-insert-or-toggle-importance)
9889         (message-insert-disposition-notification-to)
9890         (message-indent-citation, message-yank-original)
9891         (message-cite-original-without-signature, message-cite-original)
9892         (message-insert-citation-line, message-position-on-field)
9893         (message-fix-before-sending, message-send-mail-partially)
9894         (message-send-mail, message-send-mail-with-sendmail)
9895         (message-send-mail-with-qmail, message-send-news)
9896         (message-check-news-header-syntax, message-generate-headers)
9897         (message-insert-courtesy-copy, message-fill-address)
9898         (message-fill-header, message-shorten-references)
9899         (message-setup-1, message-cancel-news)
9900         (message-forward-make-body-plain, message-forward-make-body-mime)
9901         (message-forward-make-body-mml, message-encode-message-body)
9902         (message-forward-make-body-digest-plain)
9903         (message-forward-make-body-digest-mime)
9904         (message-use-alternative-email-as-from): Insert `hard-newline'
9905         instead of ordinary newlines.
9906
9907 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9908
9909         * message.el (message-generate-headers): Downcase the argument
9910         given to message-check-element.
9911
9912 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
9913
9914         * nntp.el (nntp-authinfo-rejected): New error condition.
9915         (nntp-wait-for): Use new error condition to signal authentication
9916         error.
9917         (nntp-retrieve-data): Rethrow new error condition to break out of
9918         recursive call to nntp-send-authinfo.
9919
9920 2005-11-08  Romain Francoise  <romain@orebokech.com>
9921
9922         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
9923         (gnus-summary-exit-map): Bind to `Z p'.
9924         (gnus-summary-make-menu-bar): Add menu item.
9925
9926 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
9927
9928         * gnus-art.el (gnus-article-treat-custom): Add `first'.
9929         (gnus-treat-*): Add `first' in all doc strings.
9930
9931         * gnus-group.el (gnus-group-compact-group): Fix typo.
9932
9933 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9934
9935         * gnus.el (gnus-parameters-case-fold-search): New variable.
9936         (gnus-parameters-get-parameter): Use it.
9937
9938         * gnus-score.el (gnus-home-score-file): Doc fix.
9939
9940 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
9941
9942         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
9943
9944 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9945
9946         * mm-util.el (mm-special-display-p): New function.
9947
9948         * mml.el (mml-preview): Use it; doc fix.
9949
9950 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9951
9952         * imap.el (imap-open): Handle case where buffer is a buffer object.
9953
9954 2005-10-29  Romain Francoise  <romain@orebokech.com>
9955
9956         * message.el (message-fix-before-sending): Fix comment.
9957
9958 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9959
9960         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
9961
9962 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9963
9964         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
9965         Used in gnus-score.el.
9966
9967 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9968
9969         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
9970
9971 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
9972
9973         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
9974         whitespace removed in revision 7.8.  Use concatenated string to
9975         protect trailing whitespace.
9976
9977 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
9978
9979         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
9980         (nnimap-request-expire-articles): Use it to avoid sending 'UID
9981         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
9982         Courier IMAP ("some version from 2004").  Mostly based on similar
9983         code in the same function.
9984
9985 2005-10-26  Didier Verna  <didier@xemacs.org>
9986
9987         * gnus-group.el (gnus-group-compact-group): Invalidate original
9988         article buffer.
9989         * gnus-srvr.el (gnus-server-compact-server): Ditto.
9990         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
9991         NOV database and in article itself.
9992         Invalidate article backlog.
9993
9994 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9995
9996         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
9997
9998 2005-10-26  Simon Josefsson  <jas@extundo.com>
9999
10000         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
10001         part of 2004-07-25 change.
10002
10003 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10004
10005         * message.el (message-display-completion-list): New function.
10006         (message-expand-group): Use it; make sure the Completions buffer
10007         is modifiable.
10008 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
10009
10010         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
10011         user-mail-name is an empty string.
10012
10013 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
10014
10015         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
10016         depending on gnus-score-decay-constant.
10017
10018         * encrypt.el (encrypt-insert-file-contents)
10019         (encrypt-write-file-contents): Don't use `gnus-message'.
10020
10021         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
10022         arguments.
10023         (mm-uu-type-alist): Add message-marks and insert-marks.  Pass
10024         arguments to mm-uu-verbatim-marks-extract.
10025         (mm-uu-hide-markers): New variable.
10026         (mm-uu-extract): Use face similar to `gnus-cite-3'.
10027
10028         * gnus-fun.el (gnus-convert-image-to-x-face-command)
10029         (gnus-convert-image-to-face-command): Use "convert" by default to
10030         allow other input image formats.
10031         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
10032         accordingly.
10033
10034 2005-10-23  Simon Josefsson  <jas@extundo.com>
10035
10036         * imap.el (imap-gssapi-program): Align command line parameters
10037         with latest GNU SASL.
10038         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
10039
10040 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10041
10042         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
10043         HTML.
10044         (nnslashdot-request-article): Ditto.
10045
10046         * lpath.el (featurep): Add nobreak-char-display.
10047
10048 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
10049
10050         * mail-source.el (mail-source-fetch-pop): Require pop3.
10051         (mail-source-check-pop): Ditto.
10052
10053 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10054
10055         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
10056         errors.
10057
10058 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
10059
10060         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
10061         (gnus-treat-strip-leading-blank-lines): Improve doc string.
10062
10063         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
10064
10065         * mm-bodies.el (mm-decode-string): Call
10066         `mm-charset-to-coding-system' with allow-override argument.
10067
10068 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10069
10070         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
10071         (rfc2047-charset-to-coding-system): New function.
10072         (rfc2047-decode-encoded-words): New function.
10073         (rfc2047-decode-region): Use them.
10074         (rfc2047-decode-cte): Remove.
10075         (rfc2047-parse-and-decode): Remove.
10076         (rfc2047-decode): Remove.
10077
10078 2005-10-15  Kenichi Handa  <handa@m17n.org>
10079
10080         * rfc2047.el (rfc2047-decode-cte): New function.
10081         (rfc2047-decode-region): Change the way to decode successive
10082         encoded-words: decode B- or Q-encoding in each encoded-word,
10083         concatenate them, and decode it as charset.
10084
10085 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10086
10087         * lpath.el: Fbind codepage-setup for XEmacs.
10088
10089 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
10090
10091         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
10092         widget-move-and-invoke.
10093         (gnus-custom-mode): Use gnus-custom-map.
10094
10095 2005-10-15  Bill Wohler  <wohler@newt.com>
10096
10097         * message.el (message-tool-bar-map): Renamed image file from
10098         mail_send to mail/send.
10099
10100 2005-10-16  Masatake YAMATO  <jet@gyve.org>
10101
10102         * message.el (message-expand-group): Pass the common
10103         prefix substring of completion to `display-completion-list'.
10104
10105 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
10106
10107         * mml-sec.el (mml-secure-method): New internal variable.
10108         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
10109         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt): New
10110         functions using mml-secure-method.
10111
10112         * mml.el (mml-mode-map): Add key bindings for those functions.
10113         (mml-menu): Simplify security menu entries.  Suggested by Jesper
10114         Harder <harder@myrealbox.com>.
10115         (mml-attach-file, mml-attach-buffer, mml-attach-external): Goto
10116         end of message if point is the headers of the message.
10117
10118         * message.el (message-in-body-p): New function.
10119
10120         * assistant.el: Autoload gnus-util and netrc.
10121
10122         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
10123         Use `mm-charset-override-alist' only when decoding.
10124
10125         * mm-bodies.el (mm-decode-body): Call
10126         `mm-charset-to-coding-system' with allow-override argument.
10127
10128         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
10129         `filename' from Content-Disposition if Content-Type doesn't
10130         provide `name'.
10131         (gnus-mime-view-part-as-type): Set default instead of
10132         initial-input.
10133
10134 2005-10-09  Daniel Brockman  <daniel@brockman.se>
10135
10136         * format-spec.el (format-spec): Propagate text properties of % spec.
10137
10138 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
10139
10140         * gnus-art.el (gnus-treat-predicate): Add `first'.
10141
10142 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
10143
10144         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
10145         (mm-charset-override-alist): New variable.
10146         (mm-charset-to-coding-system): Use it.
10147         (mm-codepage-setup): New helper function.
10148         (mm-charset-eval-alist): New variable.
10149         (mm-charset-to-coding-system): Use mm-charset-eval-alist.  Warn
10150         about unknown charsets.
10151
10152         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
10153
10154 2005-10-04  David Hansen  <david.hansen@gmx.net>
10155
10156         * nnrss.el (nnrss-request-article): Add support for the comments tag.
10157         (nnrss-check-group): Ditto.
10158
10159 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
10160
10161         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
10162         Rename x-gnus-verbatim to x-verbatim.
10163         (mm-uu-type-alist): Fix regexp for verbatim-marks.
10164
10165         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
10166         x-verbatim.
10167
10168         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
10169
10170         * gnus-util.el (gnus-remove-duplicates): Remove.
10171
10172         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
10173         instead of gnus-remove-duplicates.
10174
10175         * message.el (message-remove-duplicates): Remove.
10176         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
10177         message-remove-duplicates.
10178
10179         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
10180         available, else use implementation from `delete-dups'.
10181
10182         * message.el (message-insert-expires): New function.
10183         (message-mode-map): Add key binding.
10184         (message-mode-field-menu): Add menu entry.
10185         (message-mode): Document it.
10186         (message-make-expires-date): Use `message-make-date'.
10187
10188 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
10189
10190         * message.el (message-make-expires-date): New function.
10191
10192 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10193
10194         * Makefile.in (list-installed-shadows): New entry.
10195         (install): Use it.
10196         (remove-installed-shadows): New entry.
10197
10198         * dgnushack.el (dgnushack-default-load-path): New variable.
10199         (dgnushack-find-lisp-shadows): New function.
10200         (dgnushack-remove-lisp-shadows): New function.
10201
10202 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10203
10204         * Makefile.in (install-el-elc): New entry.
10205         (install): Use it so that .el files are necessarily installed.
10206
10207 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10208
10209         * time-date.el: Autoload parse-time-string, XEmacs needs it.
10210
10211 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10212
10213         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
10214         function rather than the diff-mode.el package.
10215         (mm-display-external): Use with-current-buffer.
10216         (mm-viewer-completion-map, mm-viewer-completion-map):
10217         Move initialization inside declaration.
10218
10219 2005-09-29  Simon Josefsson  <jas@extundo.com>
10220
10221         * spam.el: Load hashcash when compiling, to avoid warnings.  Don't
10222         autoload mail-check-payment.
10223         (spam-check-hashcash): Define unconditionally, since hashcash.el
10224         is part of Gnus now.  Ignore errors from payment checking.
10225
10226 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
10227
10228         * message.el (message-bold-region, message-unbold-region): Rename
10229         from `bold-region' and `unbold-region'.
10230
10231         * message.el: Remove useless autoloads.
10232
10233 2005-09-28  Simon Josefsson  <jas@extundo.com>
10234
10235         * message.el (message-use-idna): Default to t.
10236         (message-use-idna): Test whether encoding works too.  Doc fix.
10237
10238 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10239
10240         * nntp.el (nntp-warn-about-losing-connection): Remove.
10241
10242 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
10243
10244         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
10245         customizable.  Change default value.
10246         (mm-uu-diff-groups-regexp): Change default value.
10247         (mm-uu-type-alist): Add doc string.
10248         (mm-uu-configure): Add doc string.  Make it interactive.
10249         (mm-uu-tex-groups-regexp): New variable.
10250         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
10251         (mm-uu-type-alist): Add LaTeX documents.
10252         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
10253         of "text/verbatim".
10254         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
10255
10256         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
10257         instead of "text/verbatim".
10258
10259         * message.el (message-mark-inserted-region)
10260         (message-mark-insert-file): Use slrn style marks when called with
10261         prefix argument.
10262
10263 2005-09-27  Simon Josefsson  <jas@extundo.com>
10264
10265         * message.el (message-idna-to-ascii-rhs-1): Reformat.
10266
10267 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
10268
10269         * message.el (message-remove-duplicates): New function.
10270         Implementation borrowed from `gnus-remove-duplicates'.
10271         (message-idna-to-ascii-rhs): Also encode idna addresses in
10272         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10273         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
10274         only ask about the same idna domain once per header and also tell
10275         in what header to replace the idna domain.
10276
10277         * gnus-art.el (article-decode-idna-rhs): Also decode idna
10278         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10279         (article-decode-idna-rhs): Fix regexp so that all idna-address in
10280         a header is decoded and not just the last one.
10281
10282 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10283
10284         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
10285         has been decoded.
10286
10287         * mm-decode.el (mm-automatic-display): Add text/verbatim.
10288         (mm-insert-part): Don't modify text if it has been decoded.
10289
10290         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
10291         decoded.
10292
10293         * mm-view.el (mm-inline-text): Don't strip text props unless
10294         decoding enriched or richtext parts.
10295
10296 2005-09-25  Romain Francoise  <romain@orebokech.com>
10297
10298         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
10299         * gnus-start.el (gnus-subscribe-interactively):
10300         * gnus-uu.el (gnus-uu-grab-articles):
10301         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
10302         space.
10303
10304 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
10305
10306         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
10307         * mm-view.el (mm-view-pkcs7-decrypt):
10308         * gnus-sum.el (gnus-summary-limit-to-extra)
10309         (gnus-summary-respool-article, gnus-read-move-group-name):
10310         * gnus-score.el (gnus-summary-increase-score):
10311         * gnus-util.el (gnus-completing-read-with-default):
10312         * gnus-art.el (gnus-read-save-file-name)
10313         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
10314         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
10315         * message.el (message-check-news-header-syntax):
10316         Follow convention for reading with the minibuffer.
10317
10318 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
10319
10320         * spam-report.el (spam-report-url-ping-plain):
10321         Use gnus-extended-version as User-Agent.
10322
10323         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
10324         default value is nil.
10325
10326         * mm-uu.el (mm-uu-type-alist): Added slrn style verbatim-marks.
10327         (mm-uu-verbatim-marks-extract): New function.
10328         (mm-uu-extract): New face.
10329         (mm-uu-copy-to-buffer): Use it.
10330
10331         * spam-report.el (spam-report-gmane-ham): Renamed from
10332         `spam-report-gmane-unspam'.
10333         (spam-report-gmane-internal): Renamed from `spam-report-gmane'.
10334         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
10335
10336         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
10337         Autoload.
10338         (spam-report-gmane-unregister-routine): Renamed
10339         `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
10340
10341 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
10342
10343         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
10344         (spam-report-gmane-unregister-routine): Add support for gmane
10345         unregistration.
10346
10347         * spam-report.el (spam-report-gmane-unspam)
10348         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
10349         (spam-report-gmane): Change to take a single article and do unspam
10350         registration.
10351
10352 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10353
10354         * mm-url.el (mm-url-decode-entities): Fix regexp.
10355
10356 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10357
10358         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
10359         default to nil, to be able to use Gnus at all.  If the default
10360         switches to something else, then the function should be fixed not
10361         be exceedingly slow.
10362
10363 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
10364
10365         * gnus-start.el (gnus-activate-group): If the server is nil, don't
10366         fail hard.
10367
10368         * spam-report.el: Add better Keywords line.
10369
10370         * spam.el: Add Maintainer and better Keywords line.
10371
10372 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10373
10374         * gnus-art.el (gnus-article-replace-part)
10375         (gnus-mime-replace-part): New functions.
10376         (gnus-mime-action-alist, gnus-mime-button-commands)
10377         (gnus-mime-save-part-and-strip): Added file argument.
10378         (gnus-article-part-wrapper): Added interactive argument.
10379
10380         * gnus-sum.el (gnus-summary-mime-map): Add
10381         `gnus-article-replace-part'.
10382
10383 2005-09-19  Didier Verna  <didier@xemacs.org>
10384
10385         The nnml compaction feature:
10386         * nnml.el (nnml-request-compact-group): New function.
10387         * nnml.el (nnml-request-compact): New function.
10388         * gnus-int.el (gnus-request-compact-group): New function.
10389         * gnus-int.el (gnus-request-compact): New function.
10390         * gnus-group.el (gnus-group-compact-group): New function.
10391         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
10392         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
10393         * gnus-srvr.el (gnus-server-compact-server): New function.
10394         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
10395         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
10396
10397 2005-09-18  Deepak Goel  <deego@gnufans.org>
10398
10399         * sieve.el (sieve-help): Fix `message' call: first arg should be a
10400         format spec.
10401
10402 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10403
10404         * gnus.el (gnus-group-startup-message): Bind image-load-path.
10405
10406 2005-09-15  Romain Francoise  <romain@orebokech.com>
10407
10408         * message.el (message-fill-paragraph): Clarify docstring.
10409
10410 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10411
10412         * gnus-art.el (gnus-mime-display-part): Protect against broken
10413         MIME messages.
10414
10415 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10416
10417         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
10418         before parsing header.
10419
10420 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
10421
10422         * html2text.el (html2text-replace-list): Add new entities.
10423
10424 2005-09-11  Romain Francoise  <romain@orebokech.com>
10425
10426         * message.el (message-alternative-emails): Improve docstring.
10427         (message-setup-1): Call `message-use-alternative-email-as-from'
10428         after `message-setup-hook' to give it precedence over posting
10429         styles, etc.
10430         (message-use-alternative-email-as-from): Add docstring.  Remove
10431         the original From header if present.
10432
10433         * nnml.el (nnml-compressed-files-size-threshold): New variable.
10434         (nnml-save-mail): Use it.
10435
10436         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
10437         articles.  Add new argument `silent'.
10438         (gnus-uu-mark-all): Report the total number of marked articles.
10439
10440 2005-09-10  Romain Francoise  <romain@orebokech.com>
10441
10442         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
10443         (gnus-uu-mark-series): Likewise.
10444
10445 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
10446
10447         * spam-report.el (spam-report-gmane): Fix generation of spam
10448         report URL.
10449
10450 2005-09-10  Simon Josefsson  <jas@extundo.com>
10451
10452         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
10453         t, based on discussion on the ding list with Robert Epprecht
10454         <epprecht@solnet.ch>.
10455
10456 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
10457
10458         * spam-report.el (spam-report-gmane): Make it work without
10459         X-Report-Spam header.  Gmane now only provides Archived-At.
10460         This is only used if `spam-report-gmane-use-article-number' is nil.
10461         (spam-report-gmane-spam-header): Remove.  Not used anymore.
10462
10463         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
10464         make `gnus-summary-sort-by-recipient' work with threading.
10465
10466         * nnweb.el (nnweb-google-wash-article): Print a message if article
10467         is not available.
10468
10469 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10470
10471         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
10472         change.  Decode text/* parts content before displaying.
10473
10474 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
10475
10476         * mml-smime.el: Remove defvar of gnus-extract-address-components.
10477
10478 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10479
10480         * mm-view.el (mm-display-inline-fontify): Disable support modes.
10481
10482         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
10483         url-package-name, url-package-version,
10484         w3m-cid-retrieve-function-alist, w3m-current-buffer,
10485         w3m-display-inline-images, and w3m-minor-mode-map.
10486
10487 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
10488
10489         * message.el (message-tab-body-function): Fix mismatched custom type.
10490
10491         * gnus.el (gnus-group-change-level-function): Ditto.
10492
10493         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
10494
10495         * gnus-art.el (gnus-signature-limit)
10496         (gnus-article-mime-part-function): Ditto.
10497
10498 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10499
10500         * mml.el (mml-mode): Silence the byte compiler.
10501
10502         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
10503         using `(sit-for 0)' before moving the point to the specified part;
10504         skip unbuttonized parts.
10505         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
10506         return to the summary window if gnus-auto-select-part is non-nil.
10507
10508 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
10509
10510         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options): New
10511         variables.
10512         (mml-dnd-attach-file, mml-mode): Use them.
10513
10514         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
10515         Make fetching article by MID work again for Google Groups.  Added
10516         FIXME concerning gnus-group-make-web-group.
10517
10518         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
10519         Don't depend on Gnus by using mail-extract-address-components if
10520         gnus-extract-address-components is not bound.
10521
10522 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10523
10524         * gnus-art.el (gnus-mime-display-security): Don't display the
10525         signature, but only the signed part.
10526
10527 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10528
10529         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
10530
10531         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
10532         list, not listp.
10533
10534 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
10535
10536         * mm-encode.el (mm-encode-content-transfer-encoding): Likewise
10537         when encoding.
10538
10539         * mm-bodies.el (mm-decode-content-transfer-encoding):
10540         De-canonicalize CRLF for all text content types, not just
10541         text/plain.
10542
10543 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10544
10545         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
10546         valid article; point arrow and cursor at the MIME button.
10547
10548 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10549
10550         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
10551         Suggested by Dan Christensen <jdc@uwo.ca>.
10552
10553         * mm-decode.el (mm-save-part): Enable change of prompt.
10554
10555 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
10556
10557         * gnus-msg.el (gnus-inews-add-send-actions): Made
10558         `message-post-method' lambda parameter ARG `&optional'.
10559
10560 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10561
10562         * gnus-sum.el (gnus-summary-mime-map): Added
10563         gnus-article-save-part-and-strip, gnus-article-delete-part and
10564         gnus-article-jump-to-part.
10565
10566         * gnus-art.el (gnus-article-edit-article): Added quiet argument.
10567         (gnus-article-edit-part): Use it.
10568         (gnus-article-part-wrapper): Added no-handle argument.
10569         (gnus-article-save-part-and-strip, gnus-article-delete-part): New
10570         functions.
10571
10572 2005-08-29  Romain Francoise  <romain@orebokech.com>
10573
10574         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
10575         docstring.
10576         (gnus-face-from-file): Likewise.
10577
10578 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10579
10580         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
10581         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
10582         non-nil.
10583         (gnus-auto-select-part): New variable.
10584         (gnus-article-jump-to-part): New function.
10585         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
10586         (gnus-mime-delete-part): Allow selecting specified part after
10587         deleting or stripping parts.
10588         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
10589         part if argument is bogus.
10590
10591 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
10592
10593         * gnus-art.el (w3m-minor-mode-map):
10594         * gnus-spec.el (gnus-newsrc-file-version):
10595         * gnus-util.el (nnmail-active-file-coding-system)
10596         (gnus-original-article-buffer, gnus-user-agent):
10597         * gnus.el (gnus-ham-process-destinations)
10598         (gnus-parameter-ham-marks-alist)
10599         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
10600         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
10601         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
10602         * mm-decode.el (gnus-current-window-configuration):
10603         * mm-extern.el (gnus-article-mime-handles):
10604         * mm-url.el (url-current-object, url-package-name)
10605         (url-package-version):
10606         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
10607         (smime-keys, w3m-cid-retrieve-function-alist)
10608         (w3m-current-buffer, w3m-display-inline-images)
10609         (w3m-minor-mode-map):
10610         * mml-smime.el (gnus-extract-address-components):
10611         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
10612         (gnus-newsrc-hashtb, message-default-charset)
10613         (message-deletable-headers, message-options)
10614         (message-posting-charset, message-required-mail-headers)
10615         (message-required-news-headers):
10616         * mml1991.el (mc-pgp-always-sign):
10617         * mml2015.el (mc-pgp-always-sign):
10618         * nnheader.el (nnmail-extra-headers):
10619         * rfc1843.el (gnus-decode-encoded-word-function)
10620         (gnus-decode-header-function, gnus-newsgroup-name):
10621         * spam-stat.el (gnus-original-article-buffer): Add defvars.
10622
10623 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
10624
10625         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
10626         the end of the date treatments.
10627
10628 2005-08-15  Simon Josefsson  <jas@extundo.com>
10629
10630         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
10631         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
10632         Capello and Romain Francoise.
10633         (pgg-fetch-key-function): Removed, not used?
10634         (pgg-insert-url-with-w3): Require url, to get
10635         url-insert-file-contents regardless of where it is defined.
10636
10637 2005-08-13  Romain Francoise  <romain@orebokech.com>
10638
10639         * message.el (message-cite-original-1): New function.
10640         (message-cite-original): Use it.
10641         (message-cite-original-without-signature): Ditto.
10642
10643 2005-08-08  Romain Francoise  <romain@orebokech.com>
10644
10645         * message.el (message-yank-empty-prefix): New variable.
10646         (message-indent-citation): Use it.
10647         (message-cite-original-without-signature): Respect X-No-Archive.
10648
10649 2005-08-08  Simon Josefsson  <jas@extundo.com>
10650
10651         * pgg.el: Autoload url-insert-file-contents instead of loading
10652         w3/url.
10653         (pgg-insert-url-with-w3): Don't load url here.
10654
10655 2005-08-07  Jesper Harder  <harder@phys.au.dk>
10656
10657         * message.el (message-kill-to-signature): Don't insert newline at
10658         bol.
10659         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
10660
10661 2005-08-06  Romain Francoise  <romain@orebokech.com>
10662
10663         * message.el (message-user-fqdn): Fix typo in docstring.
10664
10665 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
10666
10667         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
10668
10669         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
10670
10671 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10672
10673         * mm-bodies.el (mm-encode-body): Use coding system rather than
10674         charset to encode text.
10675
10676         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
10677         number of charsets if utf-8 is available (XEmacs).
10678
10679 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
10680
10681         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
10682         taken from `gnus-button-mid-or-mail-regexp'.
10683         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
10684         (gnus-button-alist): Improve regexp for domain part of the MIDs
10685         for news:localpart@domain buttons.
10686         (gnus-button-ctan-directory-regexp): Update.
10687
10688 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10689
10690         * sieve-manage.el (sieve-manage-interactive-login): Use
10691         make-local-variable rather than make-variable-buffer-local.
10692         (sieve-manage-open): Ditto.
10693         (sieve-manage-authenticate): Ditto.
10694
10695         * mml.el (mml-generate-mime-1): Make the content type default to
10696         text/plain if the filename is not specified.
10697
10698 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10699
10700         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
10701         instead of insert-buffer.
10702
10703         * message.el (message-yank-original): Ditto; set the mark at the
10704         end of the yanked message.
10705
10706 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10707
10708         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
10709         lines to scroll rather than to stop it.
10710
10711         * mml.el (mml-generate-default-type): Add doc string.
10712         (mml-generate-mime-1): Use mm-default-file-encoding or make it
10713         default to application/octet-stream when determining the content
10714         type if it is not specified for the part or the mml contents; add
10715         a comment about mml-generate-default-type.
10716
10717 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
10718
10719         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
10720         make it default to application/octet-stream when determining the
10721         content type if it is not specified for the external contents.
10722
10723 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10724
10725         * rfc2231.el (rfc2231-parse-string): Take care that not only a
10726         segmented parameter but also other parameters might be there.
10727
10728 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10729
10730         * mm-decode.el (mm-display-external): Delete temp file, directory
10731         and buffer immediately if the external process is exited.
10732
10733 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10734
10735         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
10736         fewer lines than that of scroll-margin.
10737         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
10738
10739 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10740
10741         * gnus-art.el (gnus-article-next-page): Revert.
10742         (gnus-article-beginning-of-window): New macro.
10743         (gnus-article-next-page-1): Use it.
10744         (gnus-article-prev-page): Ditto.
10745         (gnus-article-edit-part): Use insert-buffer-substring instead of
10746         insert-buffer.
10747         (gnus-article-edit-exit): Ditto.
10748
10749         * gnus-util.el (gnus-beginning-of-window): Remove.
10750         (gnus-end-of-window): Remove.
10751
10752         * lpath.el: Don't bind header-line-format and scroll-margin.
10753
10754 2005-07-25  Simon Josefsson  <jas@extundo.com>
10755
10756         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
10757         to have the url package without w3.  Reported by Daiki Ueno
10758         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
10759
10760 2005-07-20  Didier Verna  <didier@xemacs.org>
10761
10762         * gnus-diary.el: Remove the description comment (nndiary is now
10763         properly documented in the Gnus manual).
10764         Fix the spelling of "Back End".
10765         * nndiary.el: Ditto.
10766         Fix the copyright notice.
10767
10768 2005-07-18  Romain Francoise  <romain@orebokech.com>
10769
10770         * gnus-sum.el (gnus-summary-to-prefix)
10771         (gnus-summary-newsgroup-prefix): New variables.
10772         (gnus-summary-from-or-to-or-newsgroups): Use them.
10773
10774 2005-07-17  Romain Francoise  <romain@orebokech.com>
10775
10776         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
10777         space as it's generally not especially interesting to the user.
10778
10779 2005-07-16  Romain Francoise  <romain@orebokech.com>
10780
10781         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
10782         nil to avoid prompting and file modification if one of the
10783         messages at the top of the nnfolder file contains a copyright
10784         notice.
10785         Update copyright notice.
10786
10787         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
10788         instead of `current-time-string' as the latter creates a time
10789         string that is not RFC 2822 compliant (it lacks the zone).
10790         Update copyright notice.
10791
10792 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10793
10794         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
10795         for text/rtf.  Display default in prompt.  Pass default for M-n.
10796
10797         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
10798
10799 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10800
10801         * gnus-msg.el (gnus-button-mailto): Remove
10802         save-selected-window-window hackery because it relies on
10803         save-selected-window internals.
10804
10805 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10806
10807         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
10808         (gnus-article-next-page-1): Use gnus-beginning-of-window.
10809         (gnus-article-prev-page): Ditto.
10810
10811         * gnus-util.el (gnus-beginning-of-window): New function.
10812         (gnus-end-of-window): New function.
10813
10814         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
10815
10816 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
10817
10818         * gnus-score.el (gnus-score-edit-all-score): Set
10819         gnus-score-edit-exit-function to gnus-score-edit-done and call
10820         gnus-message.
10821
10822 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10823
10824         * gnus-msg.el (gnus-button-mailto): Remove
10825         save-selected-window-window hackery because it relies on
10826         save-selected-window internals.
10827
10828 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10829
10830         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
10831         add-minor-mode.
10832         (gnus-binary-mode): Ditto.
10833
10834         * gnus-topic.el (gnus-topic-mode): Ditto.
10835
10836 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
10837
10838         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
10839         (gnus-article-prev-page): Take scroll-margin into consideration.
10840
10841 2005-07-04  Lute Kamstra  <lute@gnu.org>
10842
10843         Update FSF's address in GPL notices.
10844
10845 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
10846
10847         * gnus.el (gnus-exit):
10848         * gnus-group.el (gnus-group-icons):
10849         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
10850
10851         * gnus-nocem.el (gnus-nocem):
10852         * message.el (message-various, message-buffers, message-sending)
10853         (message-interface, message-forwarding, message-insertion)
10854         (message-headers, message-news, message-mail):
10855         * pgg-gpg.el (pgg-gpg):
10856         * pgg-parse.el (pgg-parse):
10857         * pgg-pgp.el (pgg-pgp):
10858         * pgg-pgp5.el (pgg-pgp5):
10859         * pop3.el (pop3): Finish `defgroup' description with period.
10860
10861 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10862
10863         * gnus-art.el (article-display-face): Improve the efficiency.
10864         (article-display-x-face): Ditto; remove grey x-face stuff.
10865
10866 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10867
10868         * gnus-art.el (article-display-face): Correct the position in
10869         which Faces are inserted.
10870
10871 2005-06-29  Didier Verna  <didier@xemacs.org>
10872
10873         * gnus-art.el (article-display-face): Display faces in correct
10874         order.
10875
10876 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10877
10878         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
10879         (gnus-fill-real-hashtb): Use hash table instead of obarray.
10880         (gnus-nocem-check-article): Fetch the Type header.
10881         (gnus-nocem-message-wanted-p): Fix the way to examine types.
10882         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
10883         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
10884         make sure gnus-nocem-hashtb is initialized.
10885         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
10886         (gnus-nocem-unwanted-article-p): Ditto.
10887
10888         * pgg.el (pgg-verify): Return the verification result.
10889
10890 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10891
10892         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
10893         is ascii.
10894
10895 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
10896
10897         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
10898         `show-nonbreak-escape'.
10899
10900 2005-06-23  Lute Kamstra  <lute@gnu.org>
10901
10902         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
10903
10904         * dig.el (dig-mode):
10905         * smime.el (smime-mode): Use gnus-run-mode-hooks.
10906
10907 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
10908
10909         * nnimap.el (nnimap-split-download-body): Fix spellings.
10910
10911 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
10912
10913         * gnus-art.el (gnus-article-encrypt-body):
10914         * gnus-cus.el (gnus-score-customize):
10915         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
10916         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
10917
10918 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
10919
10920         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
10921         header by looking for magic "MII" at the beginnig.
10922
10923 2005-06-16  Miles Bader  <miles@gnu.org>
10924
10925         * gnus-xmas.el (gnus-xmas-group-startup-message):
10926         Use renamed gnus-splash face.
10927
10928         * assistant.el (assistant-field): Remove "-face" suffix from face name.
10929         (assistant-field-face): New backward-compatibility alias for renamed
10930         face.
10931         (assistant-render-text): Use renamed assistant-field face.
10932
10933         * spam.el (spam): Remove "-face" suffix from face name.
10934         (spam-face): New backward-compatibility alias for renamed face.
10935         (spam-face, spam-initialize): Use renamed spam face.
10936
10937         * message.el (message-header-to, message-header-cc)
10938         (message-header-subject, message-header-newsgroups)
10939         (message-header-other, message-header-name)
10940         (message-header-xheader, message-separator, message-cited-text)
10941         (message-mml): Remove "-face" suffix from face names.
10942         (message-header-to-face, message-header-cc-face)
10943         (message-header-subject-face, message-header-newsgroups-face)
10944         (message-header-other-face, message-header-name-face)
10945         (message-header-xheader-face, message-separator-face)
10946         (message-cited-text-face, message-mml-face):
10947         New backward-compatibility aliases for renamed faces.
10948         (message-font-lock-keywords): Use renamed message faces.
10949
10950         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
10951         (sieve-test-commands, sieve-tagged-arguments):
10952         Remove "-face" suffix from face names.
10953         (sieve-control-commands-face, sieve-action-commands-face)
10954         (sieve-test-commands-face, sieve-tagged-arguments-face):
10955         New backward-compatibility aliases for renamed faces.
10956         (sieve-control-commands-face, sieve-action-commands-face)
10957         (sieve-test-commands-face, sieve-tagged-arguments-face):
10958         Use renamed sieve faces.
10959
10960         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
10961         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
10962         (gnus-group-news-3-empty, gnus-group-news-4)
10963         (gnus-group-news-4-empty, gnus-group-news-5)
10964         (gnus-group-news-5-empty, gnus-group-news-6)
10965         (gnus-group-news-6-empty, gnus-group-news-low)
10966         (gnus-group-news-low-empty, gnus-group-mail-1)
10967         (gnus-group-mail-1-empty, gnus-group-mail-2)
10968         (gnus-group-mail-2-empty, gnus-group-mail-3)
10969         (gnus-group-mail-3-empty, gnus-group-mail-low)
10970         (gnus-group-mail-low-empty, gnus-summary-selected)
10971         (gnus-summary-cancelled, gnus-summary-high-ticked)
10972         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
10973         (gnus-summary-high-ancient, gnus-summary-low-ancient)
10974         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
10975         (gnus-summary-low-undownloaded)
10976         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
10977         (gnus-summary-low-unread, gnus-summary-normal-unread)
10978         (gnus-summary-high-read, gnus-summary-low-read)
10979         (gnus-summary-normal-read, gnus-splash):
10980         Remove "-face" suffix from face names.
10981         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
10982         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
10983         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
10984         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
10985         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
10986         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
10987         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
10988         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
10989         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
10990         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
10991         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
10992         (gnus-summary-selected-face, gnus-summary-cancelled-face)
10993         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
10994         (gnus-summary-normal-ticked-face)
10995         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
10996         (gnus-summary-normal-ancient-face)
10997         (gnus-summary-high-undownloaded-face)
10998         (gnus-summary-low-undownloaded-face)
10999         (gnus-summary-normal-undownloaded-face)
11000         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
11001         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
11002         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
11003         (gnus-splash-face):
11004         New backward-compatibility aliases for renamed faces.
11005         (gnus-group-startup-message): Use renamed gnus faces.
11006
11007         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
11008         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
11009         (gnus-server-agent): Remove "-face" suffix from face names.
11010         (gnus-server-agent-face, gnus-server-opened-face)
11011         (gnus-server-closed-face, gnus-server-denied-face)
11012         (gnus-server-offline-face):
11013         New backward-compatibility aliases for renamed faces.
11014         (gnus-server-agent-face, gnus-server-opened-face)
11015         (gnus-server-closed-face, gnus-server-denied-face)
11016         (gnus-server-offline-face): Use renamed gnus faces.
11017
11018         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
11019         Remove "-face" suffix from face names.
11020         (gnus-picon-xbm-face, gnus-picon-face):
11021         New backward-compatibility aliases for renamed faces.
11022
11023         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
11024         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
11025         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
11026         (gnus-cite-11): Remove "-face" suffix from face names.
11027         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
11028         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
11029         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
11030         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
11031         New backward-compatibility aliases for renamed faces.
11032         (gnus-cite-attribution-face, gnus-cite-face-list)
11033         (gnus-article-boring-faces): Use renamed gnus faces.
11034
11035         * gnus-art.el (gnus-signature, gnus-header-from)
11036         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
11037         (gnus-header-content): Remove "-face" suffix from face names.
11038         (gnus-signature-face, gnus-header-from-face)
11039         (gnus-header-subject-face, gnus-header-newsgroups-face)
11040         (gnus-header-name-face, gnus-header-content-face):
11041         New backward-compatibility aliases for renamed faces.
11042         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
11043
11044         * gnus-sum.el (gnus-summary-selected-face)
11045         (gnus-summary-highlight): Use renamed gnus faces.
11046         * gnus-group.el (gnus-group-highlight): Likewise.
11047
11048 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
11049
11050         * gnus-sieve.el (gnus-sieve-article-add-rule):
11051         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
11052         * spam-stat.el (spam-stat-buffer-change-to-spam)
11053         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
11054
11055         * message.el (message-is-yours-p):
11056         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
11057
11058 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11059
11060         * mm-view.el (mm-inline-text): Withdraw the last change.
11061
11062 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11063
11064         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
11065         executing enriched-decode.
11066
11067 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11068
11069         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
11070         charset of tar files.
11071
11072 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
11073
11074         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
11075
11076 2005-06-04  Lute Kamstra  <lute@gnu.org>
11077
11078         * nnfolder.el (nnfolder-read-folder): Make sure that undo
11079         information is never recorded.
11080
11081 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11082
11083         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
11084
11085 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11086
11087         * pop3.el (pop3-apop): Run md5 in the binary mode.
11088
11089         * starttls.el (starttls-set-process-query-on-exit-flag):
11090         Use eval-and-compile.
11091
11092 2005-05-31  Simon Josefsson  <jas@extundo.com>
11093
11094         * smime.el (smime-replace-in-string): Define.
11095         (smime-cert-by-ldap-1): Use it.
11096
11097 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
11098
11099         * gnus-art.el (article-display-x-face): Replace
11100         process-kill-without-query by gnus-set-process-query-on-exit-flag.
11101
11102         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
11103         set-process-query-on-exit-flag or process-kill-without-query.
11104
11105         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
11106         loop instead of replace-regexp.
11107
11108         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
11109         instead of process-kill-without-query if it is available.
11110
11111         * lpath.el: Fbind ldap-search-entries.
11112
11113         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
11114         instead of find-file-hooks if it is available.
11115
11116         * mml1991.el: Bind pgg-default-user-id when compiling.
11117
11118         * mml2015.el: Bind pgg-default-user-id when compiling.
11119
11120         * nndraft.el (nndraft-request-associate-buffer):
11121         Use write-contents-functions instead of write-contents-hooks if it is
11122         available.
11123
11124         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
11125         instead of find-file-hooks if it is available.
11126
11127         * nntp.el (nntp-open-connection): Replace
11128         process-kill-without-query by gnus-set-process-query-on-exit-flag.
11129         (nntp-open-ssl-stream): Ditto.
11130         (nntp-open-tls-stream): Ditto.
11131
11132         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
11133         set-process-query-on-exit-flag or process-kill-without-query.
11134         (starttls-open-stream-gnutls): Use it instead of
11135         process-kill-without-query.
11136         (starttls-open-stream): Ditto.
11137
11138 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
11139
11140         * smime.el (smime-cert-by-ldap-1): Don't use
11141         replace-regexp-in-string.
11142
11143 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
11144
11145         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
11146
11147         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
11148         in PEM format.  Adjust to the XEmacs compability.
11149
11150 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
11151
11152         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
11153         by `string-to-number'.
11154         * gnus-agent.el (gnus-agent-regenerate-group)
11155         (gnus-agent-fetch-articles): Ditto.
11156         * gnus-art.el (gnus-button-fetch-group): Ditto.
11157         * gnus-cache.el (gnus-cache-generate-active)
11158         (gnus-cache-articles-in-group): Ditto.
11159         * gnus-group.el (gnus-group-set-current-level)
11160         (gnus-group-insert-group-line): Ditto.
11161         * gnus-score.el (gnus-score-set-expunge-below)
11162         (gnus-score-set-mark-below, gnus-summary-score-effect)
11163         (gnus-summary-score-entry): Ditto.
11164         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
11165         (gnus-soup-pack): Ditto.
11166         * gnus-spec.el (gnus-xmas-format): Ditto.
11167         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
11168         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
11169         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
11170         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
11171         * nndb.el (nndb-get-remote-expire-response): Ditto.
11172         * nndiary.el (nndiary-parse-schedule-value)
11173         (nndiary-string-to-number, nndiary-request-replace-article)
11174         (nndiary-request-article): Ditto.
11175         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
11176         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
11177         * nneething.el (nneething-make-head): Ditto.
11178         * nnfolder.el (nnfolder-request-article)
11179         (nnfolder-retrieve-headers): Ditto.
11180         * nnheader.el (nnheader-file-to-number): Ditto.
11181         * nnkiboze.el (nnkiboze-request-article): Ditto.
11182         * nnmail.el (nnmail-process-unix-mail-format)
11183         (nnmail-process-babyl-mail-format): Ditto.
11184         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
11185         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
11186         (nnmh-request-create-group, nnmh-request-list-1)
11187         (nnmh-request-group, nnmh-request-article): Ditto.
11188         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
11189         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
11190         * nnsoup.el (nnsoup-make-active): Ditto.
11191         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
11192         * nntp.el (nntp-find-group-and-number)
11193         (nntp-retrieve-headers-with-xover): Ditto.
11194         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
11195         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
11196         (pgg-format-key-identifier): Ditto.
11197         * pop3.el (pop3-last, pop3-stat): Ditto.
11198         * qp.el (quoted-printable-decode-region): Ditto.
11199
11200         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
11201         of concat.
11202
11203 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11204
11205         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
11206
11207         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
11208
11209         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
11210
11211         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
11212
11213         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
11214
11215         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
11216
11217         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
11218         (gnus-carpal-mode): Ditto.
11219
11220         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
11221         (gnus-browse-mode): Ditto.
11222
11223         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
11224
11225         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
11226
11227 2005-05-29  Richard M. Stallman  <rms@gnu.org>
11228
11229         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
11230
11231 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11232
11233         * gnus-util.el (gnus-run-mode-hooks): New function.
11234
11235         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
11236
11237         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
11238         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
11239
11240 2005-05-27  Lute Kamstra  <lute@gnu.org>
11241
11242         * dns-mode.el (dns-mode): Specify customization group.
11243
11244 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
11245
11246         * gnus-agent.el (gnus-agent-make-mode-line-string):
11247         Use mode-line-highlight as mouse-face.
11248
11249 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11250
11251         * canlock.el (canlock): Change the parent group to news.
11252
11253         * deuglify.el (gnus-outlook-deuglify): Add :group.
11254
11255         * dig.el (dig): Add :group.
11256
11257         * dns-mode.el (dns-mode): Add :group.
11258
11259         * encrypt.el (encrypt): Add :group.
11260
11261         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
11262         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
11263         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
11264         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
11265         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
11266
11267         * gnus-diary.el (gnus-diary): Add :group.
11268
11269         * gnus.el (gnus-group-news-1-face): Add :group.
11270         (gnus-group-news-1-empty-face): Ditto.
11271         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
11272         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
11273         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
11274         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
11275         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
11276         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
11277         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
11278         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
11279         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
11280         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
11281         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
11282         (gnus-summary-high-ticked-face): Ditto.
11283         (gnus-summary-low-ticked-face): Ditto.
11284         (gnus-summary-normal-ticked-face): Ditto.
11285         (gnus-summary-high-ancient-face): Ditto.
11286         (gnus-summary-low-ancient-face): Ditto.
11287         (gnus-summary-normal-ancient-face): Ditto.
11288         (gnus-summary-high-undownloaded-face): Ditto.
11289         (gnus-summary-low-undownloaded-face): Ditto.
11290         (gnus-summary-normal-undownloaded-face): Ditto.
11291         (gnus-summary-high-unread-face): Ditto.
11292         (gnus-summary-low-unread-face): Ditto.
11293         (gnus-summary-normal-unread-face): Ditto.
11294         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
11295         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
11296
11297         * hashcash.el (hashcash): New custom group.
11298         (hashcash-default-payment): Add :group.
11299         (hashcash-payment-alist): Ditto.
11300         (hashcash-default-accept-payment): Ditto.
11301         (hashcash-accept-resources): Ditto.
11302         (hashcash-path): Ditto.
11303         (hashcash-extra-generate-parameters): Ditto.
11304         (hashcash-double-spend-database): Ditto.
11305         (hashcash-in-news): Ditto.
11306
11307         * message.el (message-minibuffer-local-map): Add :group.
11308
11309         * netrc.el (netrc): Add :group.
11310
11311         * sieve-manage.el (sieve-manage-log): Add :group.
11312         (sieve-manage-default-user): Diito.
11313         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
11314         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
11315         (sieve-manage-authenticators): Ditto.
11316         (sieve-manage-authenticator-alist): Ditto.
11317         (sieve-manage-default-port): Ditto.
11318
11319         * sieve-mode.el (sieve-control-commands-face): Add :group.
11320         (sieve-action-commands-face): Ditto.
11321         (sieve-test-commands-face): Ditto.
11322         (sieve-tagged-arguments-face): Ditto.
11323
11324         * smime.el (smime): Add :group.
11325
11326         * spam-report.el (spam-report): Add :group.
11327
11328         * spam.el (spam, spam-face): Add :group.
11329
11330 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11331
11332         * nntp.el (nntp-next-result-arrived-p): Some news servers may
11333         return \n.\n.\n at the end of articles.  Protect against that.
11334         (nntp-with-open-group): Allow debugging.
11335
11336         * nnheader.el (mail-header-set-extra): Make into a function
11337         because I just could't understand how to quote the list properly.
11338
11339         * dns.el (query-dns-cached): New function.
11340
11341 2005-05-26  Lute Kamstra  <lute@gnu.org>
11342
11343         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
11344
11345 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11346
11347         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
11348
11349         * gnus-art.el: Don't autoload mail-extract-address-components.
11350
11351         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
11352         eval-and-compile to evaluate it.
11353
11354         * hashcash.el: Don't autoload executable-find.
11355
11356         * nndb.el: Don't declare the nndb back end two or more times; don't
11357         autoload news-reply-mode, news-setup, cancel-timer and telnet.
11358
11359         * nntp.el: Autoload format-spec instead of format; use
11360         eval-and-compile to evaluate autoload forms.
11361
11362 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
11363
11364         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
11365
11366 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11367
11368         * gnus.el (gnus-version-number): Bump version.
11369
11370 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
11371
11372         * gnus.el: No Gnus v0.3 is released.
11373
11374 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11375
11376         * lpath.el (featurep): Bind show-nonbreak-escape.
11377
11378 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11379
11380         * gnus-art.el (gnus-article-edit-part): Disable undo.
11381
11382 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11383
11384         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
11385         gnus-article-date-lapsed-new-header is t if date timer is active;
11386         skip headers in which the original date value is empty.
11387         (gnus-article-save-original-date): Redefine it as a macro.
11388         (gnus-display-mime): Use it.
11389
11390 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11391
11392         * gnus-art.el (article-date-ut): Support converting date in
11393         forwarded parts as well.
11394         (gnus-article-save-original-date): New function.
11395         (gnus-display-mime): Use it.
11396
11397 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
11398
11399         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
11400         enclosure element of <item>.
11401
11402 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
11403
11404         * message.el (message-kill-buffer-query): Renamed from
11405         `message-kill-buffer-query-if-modified'.  Added :version.
11406
11407 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11408
11409         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
11410         window layout.
11411
11412 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11413
11414         * mml.el: Autoload dnd when compiling.
11415
11416 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
11417
11418         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
11419         x-dnd-*.
11420
11421 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11422
11423         * qp.el (quoted-printable-encode-region): Save excursion.
11424
11425 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
11426
11427         * message.el (message-kill-buffer-query-if-modified): Add new variable
11428         so the user can kill a modified message buffer quickly.
11429         (message-kill-buffer): Use it.
11430
11431 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11432
11433         * lpath.el: Fbind display-time-event-handler; don't fbind
11434         string-to-multibyte.
11435
11436         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
11437
11438 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11439
11440         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
11441         contained in text because xml.el decodes entities) with LFs.
11442
11443 2005-04-11  Lute Kamstra  <lute@gnu.org>
11444
11445         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
11446         differently.
11447
11448 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11449
11450         * mm-util.el (mm-detect-coding-region): Typo.
11451
11452 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11453
11454         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
11455
11456 2005-04-06  Deepak Goel  <deego@gnufans.org>
11457
11458         * spam-stat.el (spam-stat-score-buffer): Add a call to a
11459         user-function allow user modifications of the scores.
11460         (spam-stat-score-buffer-user): New function, to allow
11461         user-computed modifications to the score.
11462         (spam-stat-score-buffer-user-functions): List of additional
11463         scoring functions.
11464         (spam-stat-error-holder): Global temporary error holder.
11465         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
11466         variable.
11467
11468 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
11469
11470         * gnus-registry.el (gnus-registry-clean-empty-function)
11471         (gnus-registry-trim, gnus-registry-fetch-groups)
11472         (gnus-registry-delete-group): Groups that match
11473         `gnus-registry-ignored-groups' are removed from the registry
11474         entries, not just ignored for splitting.  This helps clean up the
11475         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
11476         to get all the groups a message ID is in.
11477
11478         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
11479         (spam-stat-split-fancy): Change "threshhold" to "threshold".
11480         (spam-stat-score-buffer-user-functions): Add :number custom type.
11481
11482 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11483
11484         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
11485         argument in XEmacs.
11486
11487         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
11488         (nnrss-request-group): Decode group name first.
11489         (nnrss-request-article): Make a text/plain article if mml-to-mime
11490         failed.
11491         (nnrss-get-encoding): Return a compatible encoding according to
11492         nnrss-compatible-encoding-alist.
11493         (nnrss-find-el): Use consp instead of listp.
11494         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
11495
11496 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11497
11498         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
11499         which Emacs 20 doesn't support.
11500         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
11501
11502 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
11503
11504         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
11505         silence the byte compiler inside the defun.
11506
11507         * gnus-demon.el (parse-time-string): Add autoload.
11508
11509         * gnus-delay.el (parse-time-string): Add autoload.
11510
11511         * gnus-art.el (parse-time-string): Add autoload.
11512
11513         * nnultimate.el (parse-time): Require for `parse-time-string'.
11514
11515 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
11516
11517         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
11518
11519         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
11520
11521         * smime.el (smime-ldap-host-list): Add :version.
11522
11523 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
11524
11525         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
11526         pass it to `gnus-browse-read-group'.
11527         (gnus-browse-read-group): Add NUMBER argument and pass it to
11528         `gnus-group-read-ephemeral-group'.
11529
11530         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
11531         argument and pass it to `gnus-group-read-group'.
11532
11533 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
11534
11535         * mm-util.el (mm-xemacs-find-mime-charset): Only call
11536         mm-xemacs-find-mime-charset-1 if we have the mule feature
11537         available at runtime.
11538
11539 2005-03-25  Werner Lemberg  <wl@gnu.org>
11540
11541         * nnmaildir.el: Replace `illegal' with `invalid'.
11542
11543 2005-03-23  Lute Kamstra  <lute@gnu.org>
11544
11545         * time-date.el: Add comment on time value formats.
11546         Don't require parse-time.
11547         (with-decoded-time-value): New macro.
11548         (encode-time-value): New function.
11549         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
11550         (days-to-time): Return a valid time value when arg is huge.
11551         (time-since): Use time-subtract.
11552         (time-to-number-of-days): Use time-to-seconds.
11553
11554 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11555
11556         * gnus-start.el (gnus-display-time-event-handler):
11557         Check display-time-timer at runtime rather than only at load time
11558         in case display-time-mode is turned off in the mean time.
11559
11560 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
11561
11562         * nnimap.el (nnimap-open-connection): Print which authinfo file is
11563         used.
11564
11565         * nneething.el (nneething-map-file-directory): Derive from
11566         `gnus-directory'.
11567
11568         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
11569         the To/Cc button.
11570
11571 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
11572
11573         * nnmaildir.el (nnmaildir-request-accept-article):
11574         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
11575
11576 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11577
11578         * gnus-async.el: Require timer-funcs at compile time when in
11579         XEmacs for `run-with-idle-timer'.
11580
11581 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11582
11583         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
11584         autoloaded function.
11585
11586 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11587
11588         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
11589
11590 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
11591
11592         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
11593
11594 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11595
11596         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Add
11597         gnus-expert-user to default.
11598
11599 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
11600
11601         * nnimap.el (nnimap-open-server): Ditto.
11602
11603         * imap.el (imap-authenticate): Fix typo.
11604
11605 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
11606
11607         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
11608         buffer (since IMAP server might return FETCH response out of
11609         order, and the nntp buffer must be sorted).
11610
11611 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
11612
11613         * gnus-start.el (gnus-convert-old-newsrc): Fixed numeric
11614         comparison on string.
11615
11616         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
11617         (gnus-agent-score): Renamed category keywords to match gnus-cus.
11618         (gnus-agent-summary-fetch-series): Modified to protect against
11619         gnus-agent-summary-fetch-group clearing processable flags.
11620         (gnus-agent-synchronize-group-flags): Update live group buffer as
11621         synchronization may occur due to the user toggle the plugged
11622         status.
11623         (gnus-agent-fetch-group-1): Clear downloadable flag when article
11624         successfully downloaded.
11625         (gnus-agent-expire-group-1): Avoid using markers when the overview
11626         is in ascending order; greatly improves performance.
11627         (gnus-agent-regenerate-group): Use
11628         gnus-agent-synchronize-group-flags to reset read status in both
11629         gnus and server.
11630         (gnus-agent-update-files-total-fetched-for): Fixed initial size.
11631
11632 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
11633
11634         * message.el: Don't autoload former message-utils variables.
11635         (message-strip-subject-trailing-was): Change doc string.
11636
11637         * nnweb.el: Fixes for `gnus-group-make-web-group'.
11638         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
11639         (nnweb-google-search): Add "hl=en" here.
11640         (nnweb-google-parse-1, nnweb-google-create-mapping):
11641         Don't hardcode URL.
11642
11643 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
11644
11645         * message.el (message-get-reply-headers, message-followup):
11646         Mention related variables `message-use-followup-to' and
11647         `message-use-mail-followup-to', in the information buffer.
11648
11649         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
11650         of broken groups(-beta).google.com.
11651
11652 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
11653
11654         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
11655         parameter to invoked gnus-request-move-article; remove the
11656         redundant gnus-sum-hint-move-is-internal variable; apply the marks
11657         all at once instead of once per article.
11658         (gnus-summary-remove-process-mark): Accept a list of articles as
11659         well as a single article for processing.
11660
11661         * gnus-int.el (gnus-request-move-article): Add move-is-internal
11662         parameter.
11663
11664         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
11665
11666         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
11667
11668         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
11669         parameter.
11670
11671         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
11672         parameter.
11673
11674         * nnimap.el (nnimap-request-move-article): Add move-is-internal
11675         parameter and remove the gnus-sum-hint-move-is-internal variable.
11676
11677         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
11678         parameter.
11679
11680         * nndraft.el (nndraft-request-move-article): Add move-is-internal
11681         parameter.
11682
11683         * nndiary.el (nndiary-request-move-article): Add move-is-internal
11684         parameter.
11685
11686         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
11687
11688         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
11689         parameter.
11690
11691         * nnagent.el (nnagent-request-move-article): Add move-is-internal
11692         parameter.
11693
11694 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11695
11696         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
11697         a more conservative way.
11698
11699 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11700
11701         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
11702         buffer, so it moves the window's cursor.
11703
11704 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
11705
11706         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
11707         `mm-dissect-multipart' and receive the from field as an (optional)
11708         argument from `mm-dissect-multipart'.
11709         (mm-dissect-multipart): Receive the from field as an argument and
11710         pass it on when we call `mm-dissect-buffer' on MIME parts.
11711         Fixes verification/decryption of signed/encrypted MIME parts.
11712
11713 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
11714
11715         * gnus-sum.el (gnus-summary-move-article): Set
11716         gnus-sum-hint-move-is-internal for gnus-request-move-article and
11717         whatever it calls (right now, only nnimap-request-move article
11718         respects it).
11719
11720         * nnimap.el (nnimap-request-move-article): When
11721         gnus-sum-hint-move-is-internal is set, don't do the extra
11722         nnimap-request-article.
11723
11724 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
11725
11726         * nnheader.el (nnheader-find-file-noselect): Add doc string.
11727
11728         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
11729         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
11730
11731         * gnus-sum.el (gnus-summary-caesar-message):
11732         Apply `gnus-treat-article' after rotation.
11733
11734         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
11735         doc string.
11736
11737 2005-02-22  Simon Josefsson  <jas@extundo.com>
11738
11739         * encrypt.el (encrypt-password-cache-expiry): Remove (use
11740         `password-cache-expiry' instead).  Reported by Arne Jørgensen
11741         <arne@arnested.dk>.
11742         (encrypt): Add password-cache and password-cache-expiry as group
11743         members.
11744
11745 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
11746
11747         * smime.el (smime-ldap-host-list): Doc fix.
11748         (smime-ask-passphrase): Use `password-read-and-add' to read (and
11749         cache) password.
11750         (smime-sign-region): Use it.
11751         (smime-decrypt-region): Use it.
11752         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
11753         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
11754         fails.
11755         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
11756         certificate from DER to PEM format rather than calling openssl.
11757
11758         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
11759
11760         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
11761         for signing/encryption.
11762
11763         * mml.el (mml-parse-1): Use them.
11764
11765 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
11766
11767         * nnrss.el (nnrss-verbose): Removed.
11768         (nnrss-request-group): Use `nnheader-message' instead.
11769
11770 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
11771
11772         * nnrss.el (nnrss-verbose): New variable.
11773         (nnrss-request-group): Make it say nnrss is requesting a group.
11774
11775 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
11776
11777         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
11778         Handle news URL with given port correctly.
11779
11780 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11781
11782         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
11783         containing special characters.
11784
11785         * gnus-sum.el (gnus-summary-edit-article): Ditto.
11786
11787         * mml.el (mime-to-mml): Ditto.
11788
11789         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
11790         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
11791         (rfc2047-decode-region): Quote decoded words containing special
11792         characters when rfc2047-quote-decoded-words-containing-tspecials
11793         is non-nil.
11794
11795 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
11796
11797         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
11798
11799         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
11800
11801 2005-02-15  Simon Josefsson  <jas@extundo.com>
11802
11803         * nnimap.el (nnimap-debug): Doc fix.
11804
11805         * imap.el (imap-debug): Doc fix.
11806
11807 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11808
11809         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
11810
11811 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
11812
11813         * gnus.el (spam-contents): Improve docs for spam-contents
11814         parameter in its variable incarnation.
11815
11816 2005-02-14  Simon Josefsson  <jas@extundo.com>
11817
11818         * smime-ldap.el: Use require instead of load-library for ldap.
11819         (smime-ldap-search): Indent.
11820         (smime-ldap-search-internal): Shorten line.
11821
11822         * smime.el (smime-cert-by-dns): Add doc-string.
11823         (smime-cert-by-ldap-1): Indent.
11824
11825         * mml-smime.el (mml-smime-get-ldap-cert): Renamed from
11826         mml-smime-get-dns-ldap.
11827         (mml-smime-encrypt-query): Use new function.  Default to ldap.
11828
11829 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
11830
11831         * smime.el: Require smime-ldap.
11832         (smime-ldap-host-list): New variable.
11833         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
11834
11835         * mml-smime.el (mml-smime-encrypt-query): New function.
11836         (mml-smime-encrypt-query): Use it.
11837
11838         * smime-ldap.el: New file.
11839
11840 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11841
11842         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
11843
11844 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
11845
11846         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
11847         argument in doc string.  Make query for type more clear.
11848
11849 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
11850
11851         * gnus.el (gnus-group-startup-message): Search for gnus images in
11852         etc/images/gnus.
11853         * mm-util.el (mm-image-load-path): Likewise.
11854         * smiley.el (smiley-data-directory): Search for smilies in
11855         etc/images/smilies.
11856
11857 2005-02-09  Kim F. Storm  <storm@cua.dk>
11858
11859         Change Emacs release version from 21.4 to 22.1 throughout.
11860         Change Emacs development version from 21.3.50 to 22.0.50.
11861
11862 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11863
11864         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
11865
11866         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
11867         non-Mule XEmacs as well.
11868         (mm-decompress-buffer): Signal an error intentionally if it does
11869         not decompress compressed data because auto-compression-mode is
11870         disabled.
11871
11872 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
11873
11874         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
11875         an ID in the registry even if it has no groups.
11876
11877 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11878
11879         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
11880         merge it into mm-decompress-buffer.
11881         (gnus-mime-copy-part): Use the MIME part charset, the value which
11882         a user specified or gnus-newsgroup-charset for decoding, like
11883         gnus-mime-inline-part does; set buffer-file-coding-system to tell
11884         save-buffer what was used.  Suggested by Kevin Ryde
11885         <user42@zip.com.au>.
11886         (gnus-mime-inline-part): Allow the name parameter as well as the
11887         filename parameter; force decompressing of compressed data; always
11888         display contents being not decoded as unibyte.
11889
11890         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
11891         as well as the filename parameter.
11892
11893         * mm-util.el (mm-decompress-buffer): Merge
11894         gnus-mime-jka-compr-maybe-uncompress.
11895         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
11896         of compressed data.
11897
11898 2005-02-08  Simon Josefsson  <jas@extundo.com>
11899
11900         * imap.el (imap-log): Doc fix.
11901
11902 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11903
11904         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
11905         the coding cookies; decompress compressed parts.
11906
11907         * mml.el (mml-generate-mime-1): Add the charset parameter according
11908         to the value which a user specified manually or the coding cookie.
11909
11910         * mm-util.el (mm-string-to-multibyte): New function.
11911         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
11912         (mm-coding-system-to-mime-charset): New function.
11913         (mm-decompress-buffer): New function.
11914         (mm-find-buffer-file-coding-system): New function.
11915
11916         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
11917         (mm-display-inline-fontify): Rewrite for decoding and decompressing
11918         parts.
11919
11920 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
11921
11922         * mm-view.el (mm-display-inline-fontify): Decode a part according
11923         to the charset parameter.
11924
11925 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11926
11927         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
11928         prefix arg is neither nil nor a number, as info specifies.
11929
11930 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11931
11932         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
11933         timestamps.
11934
11935 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
11936
11937         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
11938         groups error checking and notify user.
11939
11940 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
11941
11942         * message.el (message-send-mail-function): Check existence of
11943         sendmail-program first before using default value
11944         `message-send-mail-with-sendmail'.  Otherwise use more generic
11945         `smtpmail-send-it'.
11946
11947 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11948
11949         * nntp.el (nntp-request-update-info): Always return nil.
11950
11951 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11952
11953         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
11954
11955 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11956
11957         * message.el (message-beginning-of-line): Change the behavior when
11958         invoked between BOL and : so that it first moves backward.
11959
11960 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11961
11962         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
11963         article buffer when editing of the article is discarded.
11964         (gnus-article-prepare): Revert.
11965
11966 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11967
11968         * gnus-art.el (gnus-article-prepare):
11969         Remove message-strip-forbidden-properties from the local hook.
11970
11971 2005-01-27  Simon Josefsson  <jas@extundo.com>
11972
11973         * password.el (password-cache-add): Only start one timer per key.
11974         Reported by Derek Atkins <warlord@MIT.EDU>.
11975
11976 2005-01-26  Steve Youngs  <steve@sxemacs.org>
11977
11978         * run-at-time.el: Removed.  It is no longer needed as
11979         timer-funcs.el in the xemacs-base package has a working version of
11980         `run-at-time'.
11981
11982         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
11983
11984         * password.el: Require timer-funcs instead of run-at-time in
11985         XEmacs.
11986         Remove `password-run-at-time' macro.
11987         (password-cache-add): Use `run-at-time' instead of
11988         `password-run-at-time'.
11989
11990         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
11991         Remove `nnheader-cancel-function-timers' alias,
11992         `cancel-function-timers' exists in XEmacs in timer-funcs.
11993
11994         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
11995         for `run-with-idle-timer'.
11996
11997         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
11998         for `run-at-time'.
11999
12000         * mm-url.el: Require timer-funcs at compile time when in XEmacs
12001         for `with-timeout'.
12002
12003         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
12004         the same as for XEmacs 21.4.
12005         No need to ignore `run-with-idle-timer', this function exists in
12006         XEmacs now in timer-funcs.el in the xemacs-base package.
12007         (dgnushack-compile): No need to delete
12008         run-at-time.el from the list of files to compile because it
12009         doesn't exist anymore.
12010
12011 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
12012
12013         * mml.el (mml-generate-mime-1): Convert string into unibyte when
12014         inserting " *mml*" buffer's contents into a unibyte temp buffer.
12015
12016 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
12017
12018         * mail-source.el (mail-source-fetch-imap): Search for ^From case
12019         sensitively.
12020
12021 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
12022
12023         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
12024
12025 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12026
12027         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
12028         which will be inserted according to the multibyteness of a buffer
12029         rather than the type of contents.  Suggested by ARISAWA Akihiro
12030         <ari@mbf.ocn.ne.jp>.
12031
12032         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
12033         of string which old xml.el may return rather than a string.
12034
12035 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12036
12037         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
12038
12039 2005-01-16  Simon Josefsson  <jas@extundo.com>
12040
12041         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
12042         idn/idna.el isn't available.
12043         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
12044         <michael@waxrat.com>.
12045
12046         * hashcash.el: Remove non-FSF copyright header.
12047
12048         * hashcash.el (hashcash-extra-generate-parameters): New variable.
12049         (hashcash-generate-payment): Use it.
12050         (hashcash-generate-payment-async): Use it.
12051
12052 2005-01-15  Simon Josefsson  <jas@extundo.com>
12053
12054         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
12055         Suggested by Raymond Scholz <ray-2005@zonix.de>.
12056
12057         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
12058         gnus-summary-idna-message.
12059         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
12060         (gnus-summary-idna-message): New function.
12061
12062 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
12063
12064         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
12065         gnus-novice-user.
12066
12067 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12068
12069         * nnrss.el (nnrss-request-delete-group): Delete entries in
12070         nnrss-group-alist as well.
12071         (nnrss-save-server-data): Insert newline.
12072
12073 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
12074
12075         * gnus.el (gnus-user-agent): Use list of symbols instead of
12076         symbols.  Display full version number for (S)XEmacs.  Optionally
12077         display (S)XEmacs codename.
12078
12079         * gnus-util.el (gnus-emacs-version): Update for new
12080         `gnus-user-agent'.
12081
12082         * gnus-msg.el (gnus-extended-version): Make it possible to omit
12083         Gnus version.
12084
12085 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
12086
12087         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
12088         which is unreadable in some setups.
12089
12090 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12091
12092         * gnus-spec.el (gnus-update-format-specifications): Flush the
12093         group format spec cache if it doesn't support decoded group names.
12094
12095 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
12096
12097         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
12098         Allow to apply decay on score files matching a regexp.
12099
12100 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12101
12102         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
12103         compatibility in %g and %c.
12104
12105 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12106
12107         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
12108         name for only %g and %c.
12109         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
12110         of gnus-tmp-group to decoded group name.
12111         (gnus-group-make-rss-group): Exclude `/'s from group names.
12112
12113 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12114
12115         * nnrss.el (nnrss-get-encoding): Fix regexp.
12116
12117 2004-12-27  Simon Josefsson  <jas@extundo.com>
12118
12119         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
12120         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
12121         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
12122
12123 2004-12-17  Kim F. Storm  <storm@cua.dk>
12124
12125         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
12126
12127         * gnus-sum.el (gnus-summary-mode-map): Likewise.
12128
12129 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
12130
12131         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
12132
12133 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12134
12135         * nnrss.el: Require rfc2047 and mml.
12136         (nnrss-file-coding-system): New variable.
12137         (nnrss-format-string): Redefine it as an inline function.
12138         (nnrss-decode-group-name): New function.
12139         (nnrss-string-as-multibyte): Remove.
12140         (nnrss-retrieve-headers): Decode group name; don't use
12141         nnrss-format-string.
12142         (nnrss-request-group): Decode group name.
12143         (nnrss-request-article): Decode group name; allow a Message-ID as
12144         well as an article number; don't use nnrss-format-string; encode a
12145         Message-ID string which may contain non-ASCII characters; use
12146         mml-to-mime to compose a MIME article.
12147         (nnrss-request-expire-articles): Decode group name.
12148         (nnrss-request-delete-group): Decode group name.
12149         (nnrss-fetch): Clarify error message.
12150         (nnrss-read-server-data): Use insert-file-contents instead of load;
12151         bind file-name-coding-system; use multibyte buffer.
12152         (nnrss-save-server-data): Bind coding-system-for-write to the
12153         value of nnrss-file-coding-system; bind file-name-coding-system;
12154         add coding cookie.
12155         (nnrss-read-group-data): Use insert-file-contents instead of load;
12156         bind file-name-coding-system; use multibyte buffer.
12157         (nnrss-save-group-data): Bind coding-system-for-write to the
12158         value of nnrss-file-coding-system; bind file-name-coding-system.
12159         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
12160         make it work with non-ASCII text.
12161         (nnrss-find-el): Make it work with old xml.el as well.
12162
12163 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
12164
12165         * nnrss.el (nnrss-get-encoding): New function.
12166         (nnrss-fetch): Use unibyte buffer initially; bind
12167         coding-system-for-read while performing mm-url-insert; remove ^Ms;
12168         decode contents according to the encoding attribute.
12169         (nnrss-save-group-data): Add coding cookie.
12170         (nnrss-mime-encode-string): New function.
12171         (nnrss-check-group): Use it to encode subject and author.
12172
12173 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
12174
12175         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
12176         imaginary variable.
12177
12178 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12179
12180         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
12181         correctly even if there are wide characters.
12182
12183 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
12184
12185         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
12186         downcased symbol names; make a new cache instead of reusing
12187         bbdb-hashtable.
12188
12189 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12190
12191         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
12192         concatenating segments rather than before concatenating them.
12193         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12194
12195         * message.el (message-get-reply-headers): Bind `extra'.
12196
12197 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12198
12199         * message.el (message-extra-wide-headers): New variable.
12200         (message-get-reply-headers): Use it.
12201
12202 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12203
12204         * gnus-agent.el (gnus-agent-group-path): Decode group name.
12205         (gnus-agent-group-pathname): Ditto.
12206
12207         * gnus-cache.el (gnus-cache-file-name): Decode group name.
12208
12209         * gnus-group.el (gnus-group-make-group): Decode group name.
12210         (gnus-group-make-rss-group): Register the group data after opening
12211         the nnrss group.
12212
12213 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
12214
12215         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
12216         by expiry now get marked as read.
12217
12218 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12219
12220         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
12221
12222 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
12223
12224         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
12225         unify Latin characters in XEmacs.
12226         (mm-find-mime-charset-region): Use it.
12227
12228 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12229
12230         * gnus-util.el (gnus-delete-directory): New function.
12231
12232         * gnus-agent.el (gnus-agent-delete-group): Use it.
12233
12234         * gnus-cache.el (gnus-cache-delete-group): Use it.
12235
12236 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12237
12238         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
12239         names.
12240
12241 2004-12-16  Simon Josefsson  <jas@extundo.com>
12242
12243         * hashcash.el (hashcash-payment-alist): Fix custom :type.
12244
12245 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12246
12247         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
12248
12249         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
12250         (gnus-group-set-current-level): Decode group name.
12251
12252 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
12253
12254         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
12255         failed.
12256
12257 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12258
12259         * gnus-group.el (gnus-group-delete-group): Decode group name.
12260         (gnus-group-make-rss-group): Encode group name.
12261         (gnus-group-catchup-current): Decode group name.
12262         (gnus-group-kill-group): Decode group name.
12263
12264 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12265
12266         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
12267
12268 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12269
12270         * gnus-group.el (gnus-group-make-rss-group):
12271         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
12272
12273         * gnus-start.el (gnus-setup-news): Honor user's setting to
12274         gnus-message-archive-method.  Suggested by Lute Kamstra
12275         <lute@gnu.org>.
12276
12277 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
12278
12279         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
12280         global counterparts of the buffer-local variables.
12281
12282 2004-11-16  Romain Francoise  <romain@orebokech.com>
12283
12284         * gnus-sum.el (gnus-summary-exit): Don't clear the global
12285         counterparts of the buffer-local variables.
12286
12287 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12288
12289         * message.el (message-forbidden-properties): Fixed typo in doc
12290         string.
12291
12292 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12293
12294         * gnus-util.el (gnus-replace-in-string): Added doc string.
12295
12296         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
12297         to avoid problems when splitting mails with many recipients.
12298
12299 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12300
12301         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
12302         pop-to-buffer, covered by the subsequent gnus-configure-windows.
12303
12304 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
12305
12306         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
12307         if there is no hashtable in memory or file modification time is
12308         newer than cached timestamp.
12309
12310 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
12311
12312         * gnus-sum.el (gnus-summary-limit-to-recipient): Implement
12313         not-matching option.
12314
12315 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
12316
12317         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
12318         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
12319         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
12320         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
12321         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
12322         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
12323
12324 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12325
12326         * message.el (message-forward-make-body-mml): Remove headers
12327         according to message-forward-ignored-headers if a message is decoded.
12328
12329 2004-12-02  Romain Francoise  <romain@orebokech.com>
12330
12331         * message.el (message-forward-make-body-plain): Always remove
12332         headers according to message-forward-ignored-headers.
12333
12334 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
12335
12336         * spam.el (spam-summary-prepare-exit): Remove the
12337         gnus-summary-limit pop for now, it has problems with ham marks for
12338         me.
12339
12340 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
12341
12342         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
12343         correctly.
12344
12345 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
12346
12347         * format-spec.el (format-spec): Message the char.
12348
12349 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
12350
12351         * gnus-art.el (gnus-split-methods): Reformat comments.
12352
12353         * spam.el (spam-summary-prepare-exit): Remove article limits
12354         before exiting the summary buffer.
12355
12356 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12357
12358         * lpath.el: Remove bbdb-create-internal, bbdb-records,
12359         spam-BBDB-register-routine and spam-enter-ham-BBDB.
12360
12361         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
12362         order to silence the byte compiler.
12363
12364         * spam.el: Fix the way to silence the byte compiler, which
12365         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
12366         bbdb-search-simple, spam-BBDB-register-routine,
12367         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
12368         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
12369         spam-stat-buffer-is-spam, spam-stat-load,
12370         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
12371         spam-stat-save and spam-stat-split-fancy.
12372
12373 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12374
12375         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
12376         which may confuse users.
12377         (canlock-password-for-verify): Ditto.
12378
12379         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
12380
12381         * gnus-art.el (gnus-emphasis-alist): Ditto.
12382
12383         * gnus-registry.el (gnus-registry-max-entries): Ditto.
12384
12385         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
12386
12387         * gnus-start.el (gnus-save-killed-list): Ditto.
12388
12389         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
12390         (gnus-sum-thread-tree-root): Ditto.
12391         (gnus-sum-thread-tree-false-root): Ditto.
12392         (gnus-sum-thread-tree-single-indent): Ditto.
12393
12394         * message.el (message-courtesy-message): Ditto.
12395         (message-archive-note): Ditto.
12396         (message-subscribed-address-file): Ditto.
12397         (message-user-fqdn): Ditto.
12398
12399         * spam-report.el (spam-report-gmane-regex): Ditto.
12400
12401         * spam.el (spam-blackhole-good-server-regex): Ditto.
12402
12403 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12404
12405         * mml.el (mml-preview): Widen the message buffer before copying
12406         the contents to the preview buffer; sort headers before previewing.
12407
12408         * message.el (message-hidden-headers): Fix the way to avoid a bug
12409         in the `repeat' widget in Emacs 21.3 or earlier.
12410
12411 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12412
12413         * message.el (message-hidden-headers): Default to "^References:".
12414         Improve customization type.  Suggested by Reiner Steib
12415         <Reiner.Steib@gmx.de>.
12416
12417 2004-11-25  Romain Francoise  <romain@orebokech.com>
12418
12419         * message.el (message-strip-forbidden-properties): Remove check for
12420         obsolete `message-hidden' text property, hidden headers are not
12421         accessible in the buffer anymore.
12422
12423 2004-11-22  Romain Francoise  <romain@orebokech.com>
12424
12425         * message.el (message-header-format-alist): Add `From' in list
12426         so that it can be sorted.
12427         (message-fix-before-sending): Widen and sort headers before
12428         sending.
12429         (message-hide-headers): Use narrowing to hide headers by moving
12430         them to the top of the buffer and narrowing to the region
12431         underneath.
12432
12433 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12434
12435         * message.el (message-strip-forbidden-properties): Bind
12436         buffer-read-only (etc) to nil.
12437
12438 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12439
12440         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
12441         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12442
12443 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
12444
12445         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
12446
12447 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12448
12449         * dns.el (query-dns): Use sit-for to time instead of
12450         accept-process-output, since that doesn't seem to work on udp
12451         sockets.
12452
12453 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12454
12455         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
12456
12457 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
12458
12459         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
12460         doc string.  Improve doc string.
12461
12462 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12463
12464         * nntp.el (nntp-request-update-info): Return nil if
12465         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
12466         may not call gnus-activate-group which uselessly issues the GROUP
12467         commands for all nntp groups and wastes time.  Reported by Romain
12468         Francoise <romain@orebokech.com>.
12469
12470         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
12471
12472 2004-11-15  Simon Josefsson  <jas@extundo.com>
12473
12474         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
12475         headers separately.
12476         (gnus-button-openpgp): New function, inspired by Jochen Küpper
12477         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
12478
12479 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
12480
12481         * gnus-start.el (gnus-convert-old-newsrc):
12482         Assign legacy-gnus-agent to 5.10.7.
12483
12484 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12485
12486         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
12487         start of the lines.
12488
12489 2004-11-14  Magnus Henoch  <mange@freemail.hu>
12490
12491         * hashcash.el (hashcash-default-payment): Change default to 20.
12492         (hashcash-default-accept-payment): Change default to 20.
12493         (hashcash-process-alist): New variable.
12494         (hashcash-generate-payment-async): Add.
12495         (hashcash-already-paid-p): Add.
12496         (hashcash-insert-payment): Don't generate payments twice.
12497         (hashcash-insert-payment-async): Add.
12498         (hashcash-insert-payment-async-2): Add.
12499         (hashcash-cancel-async): Add.
12500         (hashcash-wait-async): Add.
12501         (hashcash-processes-running-p): Add.
12502         (hashcash-wait-or-cancel): Add.
12503         (mail-add-payment): New optional argument.  Conditionally start
12504         asynchronous calculation.
12505         (mail-add-payment-async): Add.
12506
12507         * message.el (message-send-mail): Wait for asynchronous hashcash
12508         results.  Don't clobber existing X-Hashcash headers.
12509         (message-setup-1): Call mail-add-payment-async when
12510         message-generate-hashcash is non-nil.
12511
12512 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12513
12514         * message.el (message-use-alternative-email-as-from): Examine the
12515         From header as well; use message-make-from in order to include a
12516         user's full name.
12517
12518 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12519
12520         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
12521         default; improve customization type.
12522         (gnus-emphasis-custom-with-format): New macro.
12523         (gnus-emphasis-custom-value-to-external): New function.
12524         (gnus-emphasis-custom-value-to-internal): New function.
12525
12526 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12527
12528         * dns.el (query-dns): Resolve reverse addresses.
12529
12530 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12531
12532         * gnus-group.el (gnus-group-get-new-news): Use it.
12533
12534         * gnus-start.el (gnus-check-reasonable-setup): New function.
12535
12536 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12537
12538         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
12539         "Args out of range" error.  Reported by Arnaud Giersch
12540         <arnaud.giersch@free.fr>.
12541
12542 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
12543
12544         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
12545
12546 2004-11-04  Richard M. Stallman  <rms@gnu.org>
12547
12548         * spam.el (spam group): Add :version.
12549
12550         * pgg-def.el (pgg group): Add :version.
12551
12552 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12553
12554         * gnus-art.el (gnus-article-edit-article): Don't associate the
12555         article buffer with a draft file.  This is a temporary measure
12556         against the 2004-08-22 change to gnus-article-edit-mode.
12557
12558 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12559
12560         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
12561         (html2text-format-tags): Remove unused variable `attr'.
12562
12563 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
12564
12565         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
12566
12567         * tls.el (tls-process-connection-type, tls-success)
12568         (tls-certtool-program): Add :version.
12569
12570         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
12571         (starttls-extra-arguments, starttls-process-connection-type)
12572         (starttls-connect, starttls-failure, starttls-success): Add :version.
12573
12574         * spam-stat.el (spam-stat): Add :version.
12575
12576         * sieve.el (sieve): Add :version.
12577
12578         * sha1.el (sha1): Add :version.
12579         (sha1-use-external): Remove redundant version.
12580
12581         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
12582         (nnmail-cache-ignore-groups, nnmail-spool-hook)
12583         (nnmail-split-fancy-match-partial-words)
12584         (nnmail-split-lowercase-expanded): Add :version.
12585
12586         * nndiary.el (nndiary): Add :version.
12587
12588         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
12589
12590         * mml-sec.el (mml-default-sign-method)
12591         (mml-default-encrypt-method, mml-signencrypt-style-alist):
12592         Add :version.
12593
12594         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
12595
12596         * mm-url.el (mm-url-use-external, mm-url-program)
12597         (mm-url-arguments): Add :version.
12598
12599         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
12600         (mm-attachment-file-modes, mm-decrypt-option)
12601         (mm-w3m-safe-url-regexp): Add :version.
12602
12603         * message.el (message-cite-prefix-regexp)
12604         (message-sendmail-envelope-from, message-minibuffer-local-map)
12605         (message-user-fqdn, message-completion-alist): Add :version.
12606
12607         * gnus-win.el (gnus-configure-windows-hook)
12608         (gnus-use-frames-on-any-display): Add :version.
12609
12610         * gnus-art.el (gnus-article-address-banner-alist)
12611         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
12612         (gnus-treat-from-picon, gnus-treat-mail-picon)
12613         (gnus-treat-x-pgp-sig): Add :version.
12614
12615         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
12616         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
12617         (gnus-summary-article-delete-hook)
12618         (gnus-summary-display-while-building): Add :version.
12619
12620         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
12621         (gnus-get-top-new-news-hook): Add :version.
12622
12623         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
12624         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
12625
12626         * gnus-registry.el (gnus-registry): Add :version.
12627
12628         * gnus-spec.el (gnus-use-correct-string-widths)
12629         (gnus-make-format-preserve-properties): Add :version.
12630
12631         * gnus.el (gnus-group-charter-alist)
12632         (gnus-group-fetch-control-use-browse-url)
12633         (gnus-install-group-spam-parameters): Add :version.
12634
12635         * gnus-diary.el (gnus-diary): Add :version.
12636
12637         * gnus-delay.el (gnus-delay): Add :version.
12638
12639         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
12640         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
12641         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
12642         Add :version.
12643
12644         * gnus-agent.el (gnus-agent-max-fetch-size)
12645         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
12646         (gnus-agent-prompt-send-queue): Add :version.
12647
12648         * deuglify.el (gnus-outlook-deuglify): Add :version.
12649
12650         * html2text.el: Beautify code.  Improve doc strings.  Some
12651         checkdoc cleanup.
12652         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
12653
12654 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
12655
12656         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
12657
12658 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
12659
12660         * gnus-registry.el (gnus-registry-hashtb): Create the registry
12661         when package is loaded.
12662
12663         * spam.el (spam-summary-score-preferred-header): Add global preference
12664         for people who want to override the default SpamAssassin over
12665         Bogofilter preference (when both are set).
12666         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
12667         (spam-user-format-function-S): Check
12668         spam-summary-score-preferred-header.
12669         (spam-extra-header-to-number): Add X-Bogosity header parsing.
12670         (spam-user-format-function-S): Format the score correctly.
12671
12672 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12673
12674         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
12675         signature file.  Suggested by Manoj Srivastava
12676         <srivasta@golden-gryphon.com>.
12677
12678         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
12679         iso-2022-jp even in the Japanese language environment.
12680         Suggested by Jason Rumney <jasonr@gnu.org>.
12681
12682 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12683
12684         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
12685         use the same characters as the dummy marks; make it free from
12686         getting affected by the language environment.
12687         (gnus-summary-read-group-1): Update mark positions only when the
12688         format spec is updated.
12689
12690         * gnus-spec.el (gnus-update-format-specifications): Return a list
12691         of updated types.
12692
12693 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12694
12695         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
12696         of boundp to check if display-warning is available.
12697
12698 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
12699
12700         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
12701
12702 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12703
12704         * nnspool.el (nnspool-spool-directory): Use news-path if the
12705         news-directory variable is not bound.
12706
12707         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
12708         function instead of display-warning if it is not available.
12709
12710 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
12711
12712         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
12713         v5-10: Use `point-at-bol'.
12714
12715 2004-10-26  Simon Josefsson  <jas@extundo.com>
12716
12717         * hashcash.el: Fix URL in comment, reported by Cheng Gao
12718         <chenggao@gmail.com>.
12719
12720 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
12721
12722         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
12723         instead.
12724
12725 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
12726
12727         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
12728         to remove a server from the nnimap-server-buffer-alist.
12729         (nnimap-open-connection, nnimap-close-server): Use it.
12730
12731         * gnus-encrypt.el: Remove file in favor of encrypt.el.
12732
12733 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12734
12735         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
12736         running the major-mode function.
12737
12738 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12739
12740         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
12741         dummy marks in the right way.
12742
12743 2004-10-18  David Edmondson  <dme@dme.org>
12744
12745         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
12746         excessively.
12747
12748 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
12749
12750         * gnus-util.el (gnus-split-references): Accept a nil references
12751         string and go on blissfully.
12752
12753         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
12754         cases where the references string is non-nil but has no references.
12755
12756         * encrypt.el: Add autoload tags.
12757
12758         * spam.el (spam-resolve-registrations-routine): Remove article
12759         from unregistration list too.  Reported by David Hanak
12760         <dhanak@isis.vanderbilt.edu>
12761
12762 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
12763
12764         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
12765         nil.  Changed custom type.
12766
12767 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
12768
12769         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
12770
12771         * gnus-sum.el (gnus-summary-move-article): Use it.
12772
12773 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
12774
12775         * encrypt.el: Add autoload cookies.
12776
12777         * spam.el (spam-backend-article-list-property)
12778         (spam-backend-get-article-todo-list)
12779         (spam-backend-put-article-todo-list)
12780         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
12781         Resolve registrations separately.
12782         (spam-register-routine): Format comments.
12783         (spam-unregister-routine, spam-register-routine): Always call with
12784         specific-articles, no default list.
12785         (spam-summary-prepare-exit): Use the spam-classifications function.
12786
12787         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
12788         gnus-encrypt.el.
12789
12790         * encrypt.el: Copied from gnus-encrypt.el.
12791
12792         * gnus-encrypt.el: Commented that it's obsolete.
12793
12794 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12795
12796         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
12797         (gnus-score-save): Use it.
12798
12799         * message.el (message-bury): Use `window-dedicated-p'.
12800
12801 2004-10-15  Simon Josefsson  <jas@extundo.com>
12802
12803         * pop3.el (top-level): Don't require nnheader.
12804         (pop3-read-timeout): Add.
12805         (pop3-accept-process-output): Add.
12806         (pop3-read-response, pop3-retr): Use it.
12807
12808 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
12809
12810         * spam.el (spam-register-routine): Move comment.
12811         (spam-verify-bogofilter): Use 'unknown for the initial
12812         spam-bogofilter-valid state, not 'never.
12813
12814         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
12815         for netrc-machine.
12816
12817         * nnimap.el (nnimap-open-connection): Use
12818         netrc-machine-user-or-password.
12819
12820 2004-10-17  Richard M. Stallman  <rms@gnu.org>
12821
12822         * gnus-registry.el (gnus-registry-unload-hook):
12823         Set as a variable with add-hook.
12824
12825         * nnspool.el (nnspool-spool-directory): Use news-directory instead
12826         of news-path.
12827
12828         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
12829
12830         * spam.el: Delete duplicate `provide'.
12831         (spam-unload-hook): Set as a variable with add-hook.
12832
12833 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12834
12835         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
12836         in the doc string.
12837
12838         * message.el (message-ignored-news-headers)
12839         (message-ignored-supersedes-headers)
12840         (message-ignored-resent-headers)
12841         (message-forward-ignored-headers): Improve custom type.
12842
12843 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12844
12845         * message.el (message-tokenize-header): Fix 2004-09-06 change
12846         which used point-min in the wrong place.
12847
12848 2004-10-12  Simon Josefsson  <jas@extundo.com>
12849
12850         * tls.el (tls-certtool-program): New variable.
12851         (tls-certificate-information): New function, based on
12852         ssl-certificate-information.
12853
12854 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12855
12856         * compface.el: Move the version of ELisp-based uncompface program
12857         to the contrib directory because of the copyright problem.
12858
12859 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
12860
12861         * message.el (message-kill-buffer): Raise the current frame.
12862
12863 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
12864
12865         * gnus-sum.el: Mention that multibyte characters don't work as marks.
12866
12867         * gnus.el (message-y-or-n-p): Autoload.
12868
12869         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
12870         (pop3-password-required, pop3-authentication-scheme)
12871         (pop3-leave-mail-on-server): Made customizable.
12872         (pop3): New custom group.
12873         (pop3-retr): Remove `sleep-for' statements.
12874         Suggested by Dave Love <fx@gnu.org>.
12875
12876         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
12877         Windows/DOS.
12878
12879         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
12880         (imap-parse-body): Fix incorrect use of `assert'.  Suggested by
12881         Dave Love <fx@gnu.org>.
12882
12883         * mml.el (mml-minibuffer-read-disposition): Require match.
12884         Suggested by Dave Love <fx@gnu.org>.
12885
12886 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
12887
12888         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
12889         doc string.
12890
12891 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12892
12893         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
12894
12895 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
12896
12897         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
12898         instead of calling `mm-insert-inline', to decode text/* parts
12899         before displaying them.
12900
12901 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12902
12903         * mm-uu.el (mm-uu-text-plain-type): New variable.
12904         (mm-uu-pgp-signed-extract-1): Use it.
12905         (mm-uu-pgp-encrypted-extract-1): Use it.
12906         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
12907         bind mm-uu-text-plain-type with that value.
12908         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
12909         mm-uu-dissect.
12910
12911 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12912
12913         * gnus-group.el (gnus-update-group-mark-positions):
12914         * gnus-sum.el (gnus-update-summary-mark-positions):
12915         * message.el (message-check-news-body-syntax):
12916         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
12917         of string-as-multibyte.
12918
12919 2004-10-05  Juri Linkov  <juri@jurta.org>
12920
12921         * gnus-group.el (gnus-update-group-mark-positions):
12922         * gnus-sum.el (gnus-update-summary-mark-positions):
12923         * message.el (message-check-news-body-syntax):
12924         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
12925         8-bit unibyte values to a multibyte string for search functions.
12926
12927 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12928
12929         * mm-uu.el (mm-uu-dissect): Allow optional arg.
12930         (mm-uu-dissect-text-parts): New function.
12931
12932         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
12933         dissect text parts.
12934
12935         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
12936         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
12937
12938         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
12939
12940         * gnus-topic.el (gnus-topic-hierarchical-parameters): Use
12941         gnus-current-topics instead of gnus-current-topic.
12942
12943 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
12944
12945         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
12946
12947 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
12948
12949         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
12950         where approriate.
12951
12952         * nnml.el (nnml-generate-active-info): do.
12953
12954         * nndiary.el (nndiary-generate-active-info): do.
12955
12956         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
12957         (gnus-topic-move): do.
12958
12959         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
12960         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
12961
12962         * gnus-srvr.el (gnus-server-prepare)
12963         (gnus-server-open-all-servers): do.
12964
12965         * gnus-msg.el (gnus-summary-cancel-article)
12966         (gnus-summary-resend-message)
12967         (gnus-summary-mail-crosspost-complaint): do.
12968
12969         * gnus-move.el (gnus-change-server): do.
12970
12971         * gnus-group.el (gnus-group-unmark-all-groups)
12972         (gnus-group-set-current-level): do.
12973
12974 2004-10-04  Simon Josefsson  <jas@extundo.com>
12975
12976         * message.el (message-generate-hashcash): Doc fix.
12977
12978 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
12979
12980         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
12981         avoid infinite recursion via gnus-get-function.
12982
12983 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
12984
12985         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
12986
12987         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
12988
12989         * nnmail.el (nnmail-split-history): do.
12990
12991         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
12992         (nnml-request-delete-group): do.
12993
12994         * nnslashdot.el (nnslashdot-read-groups): do.
12995
12996         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
12997         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
12998
12999         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
13000         (nnspool-sift-nov-with-sed): Use last.
13001         (nnspool-retrieve-headers-with-nov): Use mapc.
13002         (nnspool-request-newgroups): Use dolist.
13003         (nnspool-request-group): Use last.
13004
13005         * nntp.el (nntp-read-server-type): Use dolist.
13006
13007         * nnvirtual.el (nnvirtual-create-mapping)
13008         (nnvirtual-update-read-and-marked): Use dolist.
13009         (nnvirtual-convert-headers): Simplify.
13010
13011 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
13012
13013         * gnus-agent.el (gnus-agent-synchronize-group-flags): Added
13014         support for sync'ing tick marks.
13015
13016 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13017
13018         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
13019         there's no visible header.
13020
13021 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
13022
13023         * gnus-agent.el (gnus-agent-synchronize-group-flags): When
13024         necessary, pass full group name to gnus-request-set-marks.
13025
13026 2004-10-01  Simon Josefsson  <jas@extundo.com>
13027
13028         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
13029         acroread.
13030
13031 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13032
13033         * spam-report.el (spam-report-gmane): Fix interactive.
13034
13035         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
13036
13037         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
13038         when writing file.
13039         (gnus-agent-synchronize-flags): Don't default to being
13040         interactive.
13041
13042 2004-09-30  Simon Josefsson  <jas@extundo.com>
13043
13044         * message.el (message-generate-hashcash): Add.
13045         (message-send-mail): Use it, call mail-add-payment.
13046
13047 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
13048
13049         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
13050
13051 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
13052
13053         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replaced
13054         gnus-requst-update-info with explicit code to sync the in-memory
13055         info read flags with the marks being sync'd to the backend.
13056
13057         *gnus-util.el (gnus-pp): Added optional stream to match pp API.
13058
13059 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
13060
13061         * spam.el (spam-verify-bogofilter): Add new function.
13062         (spam-check-bogofilter)
13063         (spam-bogofilter-register-with-bogofilter): Use it.
13064         (spam-verify-bogofilter): Add small fixes.
13065
13066 2004-09-28  Simon Josefsson  <jas@extundo.com>
13067
13068         * hashcash.el (hashcash-generate-payment): Revert.
13069
13070 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
13071
13072         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Use
13073         gnus-extract-references instead of gnus-split-references.
13074
13075         * gnus-util.el (gnus-extract-references): Add new function, analogous
13076         to gnus-split-references but extracts only the message-ID without
13077         anything extra.
13078
13079         * hashcash.el (hashcash-generate-payment)
13080         (hashcash-check-payment): Do the right thing if hashcash-path is
13081         nil (because the hashcash program could not be found).
13082
13083         * spam.el (spam-use-hashcash): Remove comment.
13084
13085 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
13086
13087         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
13088         (gnus-cache-enter-article, gnus-cache-remove-article)
13089         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
13090
13091         * gnus-async.el (gnus-async-prefetch-remove-group): do.
13092
13093         * gnus-art.el (article-hide-boring-headers)
13094         (article-translate-strings, article-display-face)
13095         (gnus-article-mime-match-handle-first)
13096         (gnus-article-highlight-headers)
13097         (gnus-article-add-buttons-to-head): do.
13098
13099 2004-09-27  Simon Josefsson  <jas@extundo.com>
13100
13101         * hashcash.el: New version, from
13102         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
13103         ../contrib/.
13104
13105 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13106
13107         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
13108
13109 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
13110
13111         * gnus-dup.el (gnus-dup-open): Use mapc.
13112         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
13113
13114         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
13115         Reported by Stefan Wiens <s.wi@gmx.net>.
13116
13117         * gnus.el (gnus-shutdown): Use dolist.
13118
13119         * gnus-undo.el (gnus-undo): Use mapc.
13120
13121         * nnrss.el (nnrss-generate-active): do.
13122
13123         * message.el (message-cite-original-without-signature)
13124         (message-cite-original): Use mapc.
13125         (message-do-actions, message-make-forward-subject): Use dolist.
13126
13127 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
13128
13129         * gnus-agent.el (gnus-agent-check-overview-buffer): Fixed range of
13130         deletion to remove entire duplicate line.  Fixes merged article
13131         number bug.
13132
13133 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
13134
13135         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
13136         servers that are offline.  Avoids having gnus-agent-toggle-plugged
13137         first ask if you want to open a server and then, even when you
13138         responded with no, asking if you want to synchronize the server's
13139         flags.
13140         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
13141         multi-line expressions.
13142         (gnus-agent-synchronize-group-flags): New internal function.
13143         Updates marks in memory (in the info structure) AND in the
13144         backend.
13145
13146         * gnus-util.el (gnus-remassoc): Fixed typo in documentation.
13147
13148         * nnagent.el (nnagent-request-set-mark): Use
13149         gnus-agent-synchronize-group-flags, not backend's request-set-mark
13150         method, to ensure that synchronization updates marks in the
13151         backend and in the info (in memory) structure.
13152
13153 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13154
13155         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
13156         convention fully; don't miss the root article of a thread; make
13157         the X-Draft-From header with correct article numbers.
13158
13159 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
13160
13161         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
13162         unless plugged.  Disable the agent so that an open failure causes
13163         an error.
13164
13165         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
13166         Reverted 2004-09-21 change.  The backend must be opened while
13167         synchronizing flags even when the backend stores the flags
13168         locally.
13169
13170 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
13171
13172         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
13173         in `header' match.  Reported by Svend Tollak Munkejord.
13174
13175         * message.el (message-cite-original): Fix use of
13176         `message-cite-articles-with-x-no-archive'.
13177
13178 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13179
13180         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
13181         (gnus-window-to-buffer): Ditto.
13182
13183         * mml.el (mml-preview-buffer): New variable.
13184         (mml-preview): Manage window layout with gnus-buffer-configuration.
13185
13186         * gnus-msg.el (gnus-setup-message): Put article numbers into the
13187         X-Draft-From header even if those articles aren't quoted.
13188
13189 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
13190
13191         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
13192         (gnus-request-set-mark, gnus-request-update-mark): Use new
13193         g-s-t-u-l-m to decide to use backend even when unplugged.
13194
13195 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13196
13197         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
13198         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
13199
13200 2004-09-20  Simon Josefsson  <jas@extundo.com>
13201
13202         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
13203         "utf-16-le".
13204
13205 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13206
13207         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
13208
13209 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
13210
13211         * uudecode.el (uudecode-use-external): Add :version.
13212
13213         * smime.el (smime-CA-file, smime-encrypt-cipher)
13214         (smime-dns-server): Add :version.
13215
13216         * smiley.el (gnus-smiley-file-types): Add :version.
13217
13218         * sha1.el (sha1-use-external): Add :version.
13219
13220         * pgg-def.el (pgg-query-keyserver): Add :version.
13221
13222         * nnmail.el (nnmail-fancy-expiry-targets)
13223         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
13224         Add :version.
13225
13226         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
13227         (nnimap-retrieve-groups-asynchronous): Add :version.
13228         (nnimap-close-asynchronous): Add :version.  Fixed typo in doc string.
13229
13230         * mml.el (mml-content-disposition-parameters)
13231         (mml-insert-mime-headers-always): Add :version.
13232
13233         * mm-util.el (mm-coding-system-priorities): Add :version.
13234
13235         * mm-decode.el (mm-inline-text-html-with-images)
13236         (mm-keep-viewer-alive-types, mm-external-terminal-program)
13237         (mm-verify-option): Add :version.
13238         (mm-text-html-renderer): Change :version.
13239
13240         * message.el (message-fcc-externalize-attachments)
13241         (message-required-headers, message-draft-headers)
13242         (message-subject-trailing-was-query)
13243         (message-subject-trailing-was-ask-regexp)
13244         (message-subject-trailing-was-regexp, message-mark-insert-begin)
13245         (message-mark-insert-end, message-archive-header)
13246         (message-archive-note, message-cross-post-default)
13247         (message-cross-post-note, message-followup-to-note)
13248         (message-cross-post-note-function, message-use-mail-followup-to)
13249         (message-subscribed-address-functions)
13250         (message-subscribed-address-file, message-subscribed-addresses)
13251         (message-subscribed-regexps, message-allow-no-recipients)
13252         (message-yank-cited-prefix, message-signature-insert-empty-line)
13253         (message-hidden-headers, message-hierarchical-addresses)
13254         (message-mail-user-agent, message-use-idna)
13255         (message-valid-fqdn-regexp)
13256         (message-strip-special-text-properties, message-header-synonyms)
13257         (message-beginning-of-line, message-tab-body-function): Add :version.
13258         (message-insert-canlock, message-wide-reply-confirm-recipients):
13259         Change :version.
13260
13261         * mail-source.el (mail-source-ignore-errors): Add :group, :type
13262         and :version.
13263         (mail-source-delete-old-incoming-confirm)
13264         (mail-source-movemail-program): Add :version.
13265
13266         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
13267         (gnus-agent-cache, gnus-agent): Change :version.
13268
13269         * gnus-util.el (gnus-use-byte-compile): Change :version.
13270
13271         * gnus-sum.el (gnus-summary-make-false-root-always)
13272         (gnus-summary-default-high-score)
13273         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
13274         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
13275         (gnus-read-all-available-headers, gnus-article-emulate-mime)
13276         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
13277         (gnus-sum-thread-tree-single-indent)
13278         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
13279         (gnus-sum-thread-tree-leaf-with-other)
13280         (gnus-sum-thread-tree-single-leaf): Add :version.
13281         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
13282         (gnus-article-loose-mime): Change :version.
13283
13284         * gnus-start.el (gnus-backup-startup-file)
13285         (gnus-save-startup-file-via-temp-buffer): Add :version.
13286
13287         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
13288         (gnus-server-offline-face): Add :version.
13289
13290         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
13291
13292         * gnus-msg.el (gnus-gcc-externalize-attachments)
13293         (gnus-debug-files, gnus-debug-exclude-variables)
13294         (gnus-discouraged-post-methods): Change :version.
13295         (gnus-confirm-mail-reply-to-news)
13296         (gnus-confirm-treat-mail-like-news): Add :version.
13297
13298         * gnus-int.el (gnus-server-unopen-status): Add :version.
13299
13300         * gnus-group.el (gnus-group-jump-to-group-prompt)
13301         (gnus-large-ephemeral-newsgroup)
13302         (gnus-fetch-old-ephemeral-headers): Add :version.
13303
13304         * gnus-fun.el (gnus-x-face-directory)
13305         (gnus-convert-pbm-to-x-face-command)
13306         (gnus-convert-image-to-x-face-command)
13307         (gnus-convert-image-to-face-command): Add :version.
13308
13309         * gnus-delay.el (gnus-delay-default-hour): Add :version.
13310
13311         * gnus-cite.el (gnus-cite-blank-line-after-header)
13312         (gnus-article-boring-faces): Add :version.
13313
13314         * gnus-art.el (gnus-buttonized-mime-types)
13315         (gnus-inhibit-mime-unbuttonizing)
13316         (gnus-treat-display-face)
13317         (gnus-treat-body-boundary): Change :version.
13318         (gnus-body-boundary-delimiter, gnus-picon-databases)
13319         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
13320         (gnus-treat-date-english, gnus-treat-fold-headers)
13321         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
13322         (gnus-treat-mail-picon, gnus-treat-wash-html)
13323         (gnus-article-encrypt-protocol)
13324         (gnus-use-idna, gnus-article-over-scroll)
13325         (gnus-mime-display-multipart-alternative-as-mixed)
13326         (gnus-mime-display-multipart-related-as-mixed)
13327         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
13328         (gnus-ctan-url, gnus-button-ctan-handler)
13329         (gnus-button-handle-ctan-bogus-regexp)
13330         (gnus-button-ctan-directory-regexp)
13331         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
13332         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
13333         (gnus-button-man-level, gnus-button-emacs-level)
13334         (gnus-button-message-level, gnus-button-browse-level): Add :version.
13335
13336         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
13337         (gnus-agent-go-online): Change :version.
13338         (gnus-agent-expire-unagentized-dirs)
13339         (gnus-agent-auto-agentize-methods): Add :version.
13340
13341         * flow-fill.el (fill-flowed-display-column)
13342         (fill-flowed-encode-column): Add :version.
13343
13344         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
13345         (gnus-outlook-deuglify-unwrap-max)
13346         (gnus-outlook-deuglify-cite-marks)
13347         (gnus-outlook-deuglify-unwrap-stop-chars)
13348         (gnus-outlook-deuglify-no-wrap-chars)
13349         (gnus-outlook-deuglify-attrib-cut-regexp)
13350         (gnus-outlook-deuglify-attrib-verb-regexp)
13351         (gnus-outlook-deuglify-attrib-end-regexp)
13352         (gnus-outlook-display-hook): Add :version.
13353
13354         * binhex.el (binhex-use-external): Add :version.
13355
13356 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
13357
13358         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
13359         and `invisible'.
13360
13361 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
13362
13363         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
13364         in gnus-registry-trim.
13365
13366 2004-09-13  Simon Josefsson  <jas@extundo.com>
13367
13368         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
13369
13370         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
13371
13372         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
13373         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13374         <yamaoka@jpl.org>.
13375         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
13376         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13377         <yamaoka@jpl.org>.
13378
13379         * sieve.el (sieve-manage-mode): Ditto.
13380
13381 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
13382
13383         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
13384
13385 2004-09-11  Simon Josefsson  <jas@extundo.com>
13386
13387         * dns-mode.el: Add.
13388
13389         * mm-view.el (mm-display-dns-inline): Add.
13390
13391         * mm-decode.el (mm-inline-media-tests): Add text/dns.
13392         (mm-automatic-display): Ditto.
13393
13394         * mailcap.el (mailcap-mime-data): Add text/dns.
13395         (mailcap-mime-extensions): Map .soa to text/dns.
13396
13397 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
13398
13399         * gnus-art.el (article-decode-mime-words, article-babel)
13400         (gnus-article-highlight-signature, gnus-article-add-buttons)
13401         (gnus-signature-toggle): Remove unnecessary bindings of
13402         `inhibit-read-only' inherited from v5.10 merge.
13403
13404 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
13405
13406         * nntp.el (nntp): New customization group.
13407         (nntp-authinfo-file): Add customization group.
13408
13409         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
13410
13411         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
13412
13413         * gnus.el (to-address, to-list, subscribed)
13414         (large-newsgroup-initial): Ditto.
13415
13416         * flow-fill.el (fill-flowed-display-column)
13417         (fill-flowed-encode-column): Ditto.
13418
13419 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13420
13421         * message.el (message-tokenize-header, message-send-mail-with-qmail):
13422         Use point-min rather than 1.
13423         (message-send-mail): Use buffer-size rather than point-max.
13424
13425         * gnus-sum.el (gnus-summary-search-article-forward):
13426         Signal a specific `search-failed' rather than a generic `error'.
13427
13428         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
13429         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
13430         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
13431
13432 2004-09-10  Simon Josefsson  <jas@extundo.com>
13433
13434         * nndb.el (require): Remove tcp and duplicate cl.
13435
13436 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13437
13438         * gnus-agent.el (directory-files-and-attributes): Move forward.
13439
13440 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13441
13442         * gnus-agent.el (directory-files-and-attributes): Optionally
13443         defined to support XEmacs.
13444
13445 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13446
13447         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
13448         to avoid run-time CL dependencies.
13449         (gnus-agent-unfetch-articles): New function.
13450         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
13451         article numbers even when local .overview file is missing.
13452         (gnus-agent-read-article-number): New function.  Only accepts
13453         27-bit article numbers.
13454         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles): Use
13455         gnus-agent-read-article-number.
13456         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
13457         from backend while recognizing that article numbers in .overview
13458         must be valid.
13459         (gnus-agent-update-files-total-fetched-for): Use
13460         directory-files-and-attributes to improve performance.
13461         * gnus-int.el (gnus-request-move-article): Use
13462         gnus-agent-unfetch-articles in place of gnus-agent-expire to
13463         improve performance.
13464
13465         * gnus-start.el (gnus-convert-old-newsrc): Changed message text as
13466         some users confused by references to .newsrc when they only have a
13467         .newsrc.eld file.
13468         (gnus-convert-mark-converter-prompt)
13469         (gnus-convert-converter-needs-prompt): Fixed use of property list.
13470         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
13471         New function.  Used internally to only display 'gnus converting
13472         files' message when actually necessary.
13473
13474         * gnus-sum.el (): Removed (require 'gnus-agent) as required
13475         methods now autoloaded.
13476
13477 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13478
13479         * gnus-sum.el (gnus-summary-insert-subject): Remove list
13480         identifiers.
13481
13482 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
13483
13484         * gnus-picon.el: Fix indentation and closing parenthesis.
13485
13486 2004-09-01  Simon Josefsson  <jas@extundo.com>
13487
13488         * message.el (message-canlock-generate): Require sha1, not
13489         sha1-el.  (Can we get rid of this require altogether?  It is ugly
13490         to require within a function.  Sadly, if sha1.el isn't loaded, the
13491         let binding in m-c-g will hide the defcustom definition, which is
13492         bad.)
13493
13494         * canlock.el: Require sha1, not sha1-el.
13495
13496         * message.el: Don't autoload sha1 (there is a autoload cookie in
13497         sha1.el).
13498
13499         * sha1-el.el: Renamed to sha1.el.
13500
13501 2004-08-30  Juanma Barranquero  <lektu@terra.es>
13502
13503         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
13504
13505 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13506
13507         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
13508
13509 2004-08-30  Kim F. Storm  <storm@cua.dk>
13510
13511         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
13512
13513         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
13514         Add :group 'nnimap.
13515
13516 2004-08-30  Andreas Schwab  <schwab@suse.de>
13517
13518         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
13519         ?* and ?\;.
13520
13521         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
13522         and ?\' to symbol instead of whitespace.
13523
13524 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13525
13526         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
13527
13528         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
13529         instead of re-search-forward.
13530
13531         * gnus-uu.el (gnus-uu-save-article): Ditto.
13532         (gnus-uu-post-encode-uuencode): Ditto.
13533
13534         * html2text.el (html2text-clean-list-items): Ditto.
13535         (html2text-clean-dtdd): Ditto.
13536         (html2text-format-tags): Ditto.
13537
13538         * message.el (message-send-mail-with-sendmail): Fix regexp.
13539         (message-fill-field-general): Use search-forward instead of
13540         re-search-forward.
13541         (unbold-region): Ditto.
13542
13543         * nnrss.el (nnrss-request-article): Ditto.
13544
13545         * nnslashdot.el (nnslashdot-request-article): Ditto.
13546
13547         * nnweb.el (nnweb-gmane-wash-article): Ditto.
13548
13549         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
13550         "Unrecognized menu descriptor" error in XEmacs.
13551
13552 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
13553
13554         * gnus-sum.el (gnus-read-header): Don't remove a header for the
13555         parent article of a sparse article in the thread hashtb.
13556
13557 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
13558
13559         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
13560         (nnmail-expand-newtext): Lowercase expanded entries if
13561         nnmail-split-lowercase-expanded is non-nil.
13562
13563 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13564
13565         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
13566
13567         * gnus-group.el (gnus-group-line-format-alist): Convert the value
13568         of gnus-tmp-news-method into string under XEmacs.  It will be
13569         passed to gnus-correct-length which takes only a string argument.
13570
13571 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13572
13573         * gnus-util.el (gnus-bind-print-variables): New macro.
13574         (gnus-prin1): Use it.
13575         (gnus-prin1-to-string): Use it.
13576         (gnus-pp): New function.
13577         (gnus-pp-to-string): New function.
13578
13579         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
13580         Replace pp-to-string with gnus-pp-to-string.
13581         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
13582         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
13583         * gnus-msg.el (gnus-debug): Ditto.
13584         * gnus-score.el (gnus-score-save): Ditto.
13585         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
13586         gnus-pp-to-string.
13587         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
13588         with gnus-pp.
13589         * score-mode.el (gnus-score-pretty-print): Ditto.
13590         * webmail.el (webmail-debug): Ditto.
13591
13592 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13593
13594         * gnus-art.el (article-display-face, article-display-x-face):
13595         Use buffer-read-only.
13596
13597 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13598
13599         * gnus-art.el (article-hide-list-identifiers):
13600         Bind inhibit-read-only as t.
13601
13602 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
13603
13604         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
13605
13606 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13607
13608         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
13609         (gnus-narrow-to-page): Don't assume point-min == 1.
13610         (gnus-article-edit-mode): Derive from message-mode.
13611
13612         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
13613         point-min == 1.
13614
13615         * imap.el (imap-parse-address-list, imap-parse-body-ext):
13616         Disable incorrect use of `assert'.
13617
13618         * message.el (message-mode): Set comment-start-skip.
13619
13620
13621 2004-08-22  Sam Steingold  <sds@gnu.org>
13622
13623         * pop3.el (pop3-leave-mail-on-server): New user variable.
13624         (pop3-movemail): Delete mail only when it is nil.
13625
13626 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
13627
13628         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
13629
13630         * mml.el (mml-preview): Use `pop-to-buffer'.
13631
13632         * message.el (message-goto-mail-followup-to): Insert after "To".
13633         (message-carefully-insert-headers): Add comment.
13634
13635         * gnus.el: Remove unused variable `gnus-article-check-size'.
13636
13637         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
13638
13639         * gnus-art.el (gnus-button-alist): Improve
13640         `gnus-button-handle-library' entry.
13641
13642 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
13643
13644         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p): Use
13645         downcase, since XEmacs capitalizes error messages differently.
13646
13647 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
13648
13649         * nntp.el: Add (require 'gnus) due to reference to
13650         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
13651
13652 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
13653
13654         * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Bind
13655         `mm-fill-flowed'.
13656
13657         * mm-decode.el (mm-dissect-singlepart): Check it.
13658
13659 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
13660
13661         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
13662         'imap' for netrc parsing.
13663
13664 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
13665
13666         * mailcap.el (mailcap-mime-data): Mark as risky.
13667
13668 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13669
13670         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
13671         may be included in the encoded word.
13672         (rfc2047-encode): Don't append a space if the encoded word
13673         includes close parenthesis.
13674
13675 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13676
13677         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
13678         of text within parentheses.
13679
13680 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
13681
13682         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
13683         (gnus-encrypt-write-file-contents): Make the password key the file
13684         name PLUS the cipher, not just the cipher.  Also remove failed
13685         passwords from the cache.
13686
13687 2004-08-06  Simon Josefsson  <jas@extundo.com>
13688
13689         * gnus-sum.el (gnus-article-loose-mime): Change default to t.  Doc
13690         fix.
13691
13692 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13693
13694         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
13695         LWSP.
13696
13697 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
13698
13699         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Try
13700         to append in-reply-to: data to the references: header.
13701
13702         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
13703         (netrc-parse): Use gnus-encrypt.el functions.
13704
13705         * gnus-encrypt.el: Add new file for encryption support; currently
13706         does only a few GPG ciphers and an internal XOR cipher.
13707
13708         * password.el: Add comments on using password-read-and-add.
13709         (password-read-and-add): Add function to read and add the
13710         password to the cache at once.
13711
13712 2004-07-28  Simon Josefsson  <jas@extundo.com>
13713
13714         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
13715         parameter (but don't use it, for now).
13716
13717         * imap.el (imap-ssl-open): Use imap-process-connection-type,
13718         instead of hard coding to nil.
13719
13720 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13721
13722         * mm-view.el (mm-inline-image-emacs): Open lines under an image
13723         as mm-inline-image-xemacs does.
13724
13725 2004-07-26  Simon Josefsson  <jas@extundo.com>
13726
13727         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
13728         Revert part of 2004-07-17 change below.
13729
13730 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13731
13732         * rfc2047.el (rfc2047-encode-region): Don't infloop.  Suggested by
13733         Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
13734
13735 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13736
13737         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
13738         quotes that actually start with ">" at the beginning of the
13739         lines.
13740
13741 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13742
13743         * rfc2047.el (rfc2047-encode-region): Fix last change.
13744         (rfc2047-encode-parameter): Remove useless concat.
13745
13746 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13747
13748         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
13749         encode special characters; fix some kind of misconfigured headers;
13750         signal a real error if debug-on-quit or debug-on-error is non-nil.
13751         (rfc2047-encode-max-chars): New variable.
13752         (rfc2047-encode-1): Use it.
13753         (rfc2047-encode-parameter): New function.
13754
13755         * mml.el (mml-insert-parameter): Remove an excessive space.
13756
13757 2004-07-17  Simon Josefsson  <jas@extundo.com>
13758
13759         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
13760         Kai Grossjohann <kai@emptydomain.de>.
13761         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
13762         (gnus-group-make-menu-bar): Ditto.
13763
13764         * gnus-util.el (gnus-group-server): Add.
13765
13766 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
13767
13768         * message.el (message-clone-locals): Clone sendmail and smtp
13769         variables.
13770
13771 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13772
13773         * rfc2047.el (rfc2047-encode-region): Fix last change.
13774
13775 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13776
13777         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
13778         characters as non-special.
13779
13780 2004-07-09  Simon Josefsson  <jas@extundo.com>
13781
13782         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
13783         Users will lose all flag changes made while unplugged with
13784         e.g. nntp unless flag synchronization happens, thus `nil' is not a
13785         good default.  See numerous reports on ding mailing list.
13786
13787 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13788
13789         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
13790         add generate-head-function and generate-article-function to the
13791         rfc822-forward entry.
13792         (nndoc-rfc822-forward-generate-article): New function.
13793         (nndoc-rfc822-forward-generate-head): New function.
13794
13795         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
13796
13797 2004-07-06  Dan Christensen  <jdc@uwo.ca>
13798
13799         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
13800         respect display group parameter and gnus-summary-expunge-below.
13801         (gnus-articles-to-read): Remove unused reference to display group
13802         parameter.
13803
13804 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13805
13806         * nnheader.el (nnheader-uniquify-message-id): New experimental
13807         variable.
13808         (nnheader-nov-read-message-id): Use it.
13809
13810         * spam-report.el (spam-report-gmane): Add interactive.
13811
13812 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13813
13814         * mm-encode.el (mm-content-transfer-encoding-defaults): Use
13815         qp-or-base64 for the application/* types.
13816
13817 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
13818
13819         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
13820
13821 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
13822
13823         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
13824         trim value.
13825
13826 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
13827
13828         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
13829         New macro and function.
13830         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
13831
13832 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13833
13834         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
13835         after-load-alist.
13836
13837 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13838
13839         * gnus-group.el (gnus-group-get-new-news-this-group): Don't
13840         update info that isn't there.
13841
13842 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
13843
13844         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
13845         entry.
13846
13847 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13848
13849         * mm-view.el (mm-inline-render-with-function): Use multibyte
13850         buffer; decode html source by charset.
13851
13852         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
13853
13854         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
13855         Mule-UCS is loaded under XEmacs.
13856         (mm-mime-mule-charset-alist): Avoid duplicated entries.
13857
13858 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
13859
13860         * nnheader.el (nnheader-max-head-length): Increase to 8192.
13861
13862 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13863
13864         * mm-util.el (mm-coding-system-p): Return a coding-system.
13865         (mm-mime-mule-charset-alist): Use shift_jis instead of
13866         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
13867         entries for the mime charsets iso-2022-jp-3 and shift_jis.
13868         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
13869         instead of japanese-shift-jis and iso-latin-1 respectively in
13870         order to share the default value with both Emacs and XEmacs-mule.
13871         (mm-mule-charset-to-mime-charset): Make
13872         mm-coding-system-priorities effective.
13873         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
13874         while predicating of candidates upon the priorities.
13875
13876 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
13877
13878         * gnus-sum.el (gnus-summary-make-menu-bar): Add
13879         gnus-uu-invert-processable.
13880
13881         * gnus.el: Autoload gnus-uu-invert-processable.
13882
13883 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13884
13885         * mm-util.el (mm-with-multibyte-buffer): New macro.
13886
13887         * rfc2047.el (rfc2047-encode-string): Use it.
13888         (rfc2047-encode-region): Move point to the end of the region after
13889         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
13890
13891 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13892
13893         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
13894         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
13895
13896 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13897
13898         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
13899         (gnus-cite-parse): Ignore quoted envelope From_.  Suggested by
13900         Karl Chen <quarl@nospam.quarl.org>.
13901
13902 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
13903
13904         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
13905         invalid addresses.
13906
13907 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
13908
13909         * spam.el: Change section markers, revise TODO list.
13910         (spam-backends): Make new master list of all installed backends.
13911         (spam-summary-exit-behavior): Add new variable to determine how
13912         messages moves are done at summary exit.
13913         (spam-move-spam-nonspam-groups-only)
13914         (spam-process-ham-in-nonham-groups)
13915         (spam-process-ham-in-spam-groups): Remove variables, the
13916         spam-summary-exit-behavior variable should be used to manage this
13917         behavior.
13918         (spam-old-ham-articles, spam-old-spam-articles): Remove.
13919         (spam-old-articles): Add variable, replacing spam-old-ham-articles
13920         and spam-old-spam-articles.
13921         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
13922         Add empty variables, placeholders for the backends they represent.
13923         (spam-set-difference): Move, unchanged.
13924         (spam-list-of-processors): Declare OBSOLETE, not used anymore
13925         unless the user has a processor variable.
13926         (spam-classifications, spam-classification-valid-p)
13927         (spam-backend-properties, spam-backend-property-valid-p)
13928         (spam-backend-function-type-valid-p)
13929         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
13930         (spam-report-articles-gmane, spam-report-articles-resend):
13931         Remove functions, they are not needed.
13932         (spam-install-backend-super, spam-backend-list)
13933         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
13934         (spam-backend-function, spam-backend-ham-registration-function)
13935         (spam-backend-spam-registration-function)
13936         (spam-backend-ham-unregistration-function)
13937         (spam-backend-spam-unregistration-function)
13938         (spam-backend-statistical-p, spam-backend-mover-p)
13939         (spam-install-backend-alias, spam-install-checkonly-backend)
13940         (spam-install-mover-backend, spam-install-nocheck-backend)
13941         (spam-install-backend, spam-install-statistical-backend)
13942         (spam-install-statistical-checkonly-backend): Add backend installation
13943         support.
13944         (spam-summary-prepare-exit): Rewrite to use the new backend code.
13945         (spam-group-processor-p): Use the new backend code and respect the
13946         summary exit behavior.
13947         (spam-mark-spam-as-expired-and-move-routine): Remove.
13948         (spam-summary-prepare): Change to use the new spam-old-articles
13949         variable.
13950         (spam-copy-or-move-routine, spam-copy-spam-routine)
13951         (spam-move-spam-routine, spam-copy-ham-routine)
13952         (spam-move-ham-routine): Add code to copy/move ham or spam.
13953         (spam-fetch-field-fast): Improve doc and code, plus allow the
13954         'number request.
13955         (spam-list-of-checks, spam-list-of-statistical-checks): Remove
13956         variables.
13957         (spam-split, spam-find-spam): Use the new backend code.
13958         (spam-registration-functions): Remove variable.
13959         (spam-unregister-routine): Add convenience wrapper.
13960         (spam-log-undo-registration, spam-register-routine)
13961         (spam-log-processing-to-registry)
13962         (spam-log-unregistration-needed-p): Rename "check" to "backend"
13963         where possible.
13964         (spam-check-gmane-xref, spam-check-regex-headers)
13965         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
13966         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
13967         (spam-check-bogofilter-headers, spam-check-spamoracle)
13968         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
13969         (spam-check-crm114-headers): Use the spam-split-group that
13970         spam-split prepares, no need to determine it every time.
13971
13972         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
13973         to the nnheader-parse-naked-head call.
13974
13975         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
13976
13977         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
13978         the nnheader-nov-read-message-id call.
13979
13980 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13981
13982         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
13983         gnus-activate-group twice.  Suggested by Markus Peter
13984         <warp@spin.de>.
13985
13986 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13987
13988         * gnus-art.el (gnus-article-time-format): Exchange the order of
13989         day and month in the default value; fix customization type.
13990         (article-date-ut): Use add-text-properties.
13991         (article-make-date-line): Use message-make-date instead of
13992         current-time-string.
13993
13994         * message.el (message-fetch-field): Don't use set-text-properties.
13995         (message-make-date): Simplify.
13996
13997         * messagexmas.el (message-xmas-make-date): New function.
13998         (message-xmas-redefine): Defalias message-make-date to it.
13999
14000 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14001
14002         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
14003         (rfc2047-encode-region): Treat text within parentheses as special;
14004         show the original text when error has occurred.
14005
14006         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
14007         already-computed method to gnus-activate-group.
14008
14009         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
14010         same select-methods identical Lisp objects.
14011
14012         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
14013         object when modifying the info.
14014
14015 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14016
14017         * gnus-srvr.el (gnus-server-set-info): Remove the server from
14018         gnus-opened-servers since it has never been opened with the new
14019         configuration yet.
14020
14021 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14022
14023         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
14024         arg to nnheader-generate-fake-message-id.
14025
14026 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
14027
14028         * nnheader.el (nnheader-generate-fake-message-id): Accept a
14029         number and build a fake message ID localized to a group and
14030         article number (so it's repeatable from that point on).
14031         (nnheader-fake-message-id-p): Change regex to accomodate new fake
14032         ID format.
14033
14034         * gnus-sum.el (gnus-get-newsgroup-headers): Call
14035         nnheader-generate-fake-message-id with the article number.
14036
14037 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
14038
14039         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
14040         end-of-buffer.
14041
14042 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14043
14044         * message.el (message-ignored-supersedes-headers): Add Approved.
14045
14046 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14047
14048         * rfc2047.el (rfc2047-encode-message-header): Remove useless
14049         goto-char.
14050         (rfc2047-encode): Fold the line before encoding.
14051
14052 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14053
14054         * rfc2047.el (rfc2047-encode-message-header): Disabled header
14055         folding -- not all headers can be folded, and this should be done
14056         by the message composition mode.  Probably.  I think.
14057
14058 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14059
14060         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
14061         fast.
14062
14063         * gnus-ems.el (gnus-remove-image): Don't use
14064         message-text-with-property; remove only the image found first.
14065
14066         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
14067         found first.
14068
14069 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
14070
14071         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
14072
14073 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14074
14075         * message.el (message-text-with-property): Make it fast and accept
14076         optional arguments.
14077         (message-strip-forbidden-properties): Use it.
14078         (message-fix-before-sending): Follow the m-t-w-p change.
14079
14080         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
14081
14082 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14083
14084         * gnus-art.el (article-hide-headers): Don't change the buffer
14085         mistakenly when performing mml-preview even if
14086         gnus-single-article-buffer is nil.
14087
14088 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
14089
14090         * message.el (message-expand-name-databases): New user option.
14091         (message-expand-name): Use it.
14092
14093 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
14094
14095         * spam.el (spam-report-articles-resend)
14096         (spam-report-resend-register-routine): Allow ham reporting.
14097         (spam-report-resend-register-ham-routine): Add wrapper.
14098         (spam-registration-functions): Add ham resending functions.
14099         (spam-list-of-processors): Add ham resend processor.
14100
14101         * gnus.el (ham-resend-to): Add new group parameter.
14102         (spam-process): Add ham resend option.
14103
14104         * spam-report.el (spam-report-resend): Allow reporting ham.
14105         (spam-report-resend-ham): Add wrapper.
14106
14107 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14108
14109         * message.el (message-cite-articles-with-x-no-archive): New
14110         variable.
14111         (message-cite-original): Use it.
14112
14113 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14114
14115         * message.el (message-cite-original): Respect X-No-Archive.
14116
14117 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14118
14119         * gnus-art.el (article-hide-headers): Refer to the values for
14120         gnus-ignored-headers and gnus-visible-headers in the summary
14121         buffer since a user may have set them as group parameters.
14122
14123 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
14124
14125         * assistant.el (assistant-node-name): Add convenience function.
14126         (assistant-render-text, assistant-render-node): Add error handling,
14127         plus handle multiple next nodes.
14128         (assistant-find-next-node): Comment out for now.
14129         (assistant-find-next-nodes): Add function, returns list of next
14130         nodes.
14131
14132 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
14133
14134         * mail-source.el (mail-source-directory): Fix doc-string.
14135
14136 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
14137
14138         * assistant.el (assistant-render-text, assistant-eval): Add :set
14139         widget type, which is different because it takes and returns a
14140         list.  Much hilarity ensues.
14141
14142 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
14143
14144         * gnus-art.el (gnus-button-alist): Fixed regexp for manual links.
14145
14146         * gnus-group.el (gnus-group-get-new-news-this-group): Added
14147         doc-string.
14148
14149         * gnus-start.el (gnus-activate-group): Added doc-string.
14150
14151 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14152
14153         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
14154
14155 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
14156
14157         * assistant.el (assistant-render-text): Try to add a :set
14158         widget, more to come.
14159
14160         * spam.el (spam-group-spam-contents-p): Handle empty groupname
14161         strings.
14162         (spam-report-articles-resend)
14163         (spam-register-routine): Do registration iff any articles warrant
14164         it.
14165         (spam-summary-prepare-exit): Change log message for nil group
14166         destinations.
14167
14168 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
14169
14170         * spam.el (spam-report-resend-register-routine): Allow
14171         spam-report-resend-to to be a group parameter or a global value.
14172
14173 2004-05-26  Simon Josefsson  <jas@extundo.com>
14174
14175         * starttls.el: Merge with my GNUTLS based starttls.el.
14176         (starttls-gnutls-program, starttls-use-gnutls)
14177         (starttls-extra-arguments, starttls-process-connection-type)
14178         (starttls-connect, starttls-failure, starttls-success): New
14179         variables.
14180         (starttls-program, starttls-extra-args): Doc fix.
14181         (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New
14182         functions.
14183         (starttls-negotiate, starttls-open-stream): Check
14184         `starttls-use-gnutls' and pass on to corresponding *-gnutls
14185         function if it is set.
14186
14187 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14188
14189         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
14190         structured fields.
14191
14192 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14193
14194         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
14195
14196 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
14197
14198         * spam.el (spam-mark-new-messages-in-spam-group-as-spam): Add
14199         variable.
14200         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
14201         assigning the spam-mark to new messages.
14202
14203 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
14204
14205         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
14206
14207 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14208
14209         * dgnushack.el: Autoload customize-set-variable for XEmacs.
14210
14211         * rfc2047.el (rfc2047-encodable-p): Don't move point.
14212         (rfc2047-decode): Treat the ascii coding-system as raw-text by
14213         default.
14214
14215 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
14216
14217         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
14218         correct data.
14219
14220 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
14221
14222         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
14223         (spam-group-processor-p): Fix function.
14224         (spam-group-processor-multiple-p)
14225         (spam-group-spam-processor-report-gmane-p)
14226         (spam-group-spam-processor-report-resend-p)
14227         (spam-group-spam-processor-bogofilter-p)
14228         (spam-group-spam-processor-blacklist-p)
14229         (spam-group-spam-processor-ifile-p)
14230         (spam-group-ham-processor-ifile-p)
14231         (spam-group-spam-processor-spamoracle-p)
14232         (spam-group-spam-processor-crm114-p)
14233         (spam-group-ham-processor-bogofilter-p)
14234         (spam-group-spam-processor-stat-p)
14235         (spam-group-ham-processor-stat-p)
14236         (spam-group-ham-processor-whitelist-p)
14237         (spam-group-ham-processor-BBDB-p)
14238         (spam-group-ham-processor-spamoracle-p)
14239         (spam-group-ham-processor-copy-p): Remove functions with some
14240         prejudice against unneeded code.
14241         (spam-report-articles-resend)
14242         (spam-report-resend-register-routine): Allow the group/topic
14243         spam-resend-to value to override spam-report-resend-to.
14244         (spam-summary-prepare-exit): Invoke spam-group-processor-p
14245         properly now.
14246
14247         * gnus.el (spam-resend-to): Add group/topic parameter.
14248         (spam-process): Move the OBSOLETE processors to the end of the
14249         choices.
14250
14251 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
14252
14253         * spam-report.el (spam-report-resend-to, spam-report-resend): Start
14254         with resend-to set to nil, and then ask the user if necessary.
14255         (spam-report-resend): spam-report-resend takes a list of articles, not
14256         separate article numbers.
14257
14258 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14259
14260         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
14261         addition to emacs-w3m.
14262
14263 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14264
14265         * assistant.el (assistant-authinfo-data): New function.
14266         (assistant-eval): Eval for entire assistant.
14267
14268         * netrc.el (netrc-services-file): New variable.
14269         (netrc-parse-services): New function.
14270         (netrc-find-service-name): New function.
14271         (netrc-find-service-number): New function.
14272         (netrc-port-equal): New function.
14273         (netrc-machine): Use it.
14274
14275         * nnimap.el (nnimap-open-connection): Use netrc.
14276
14277         * gnus-util.el (gnus-netrc-get): Remove aliases.
14278
14279         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
14280
14281         * assistant.el (wid-edit): Fix compilation.
14282
14283         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
14284
14285 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
14286
14287         * gnus-util.el (gnus-set-file-modes): New function.  (small
14288         patch).
14289
14290 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14291
14292         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
14293
14294         * assistant.el (assistant-render-node): Fix up rendering and
14295         read-only text.
14296         (assistant-render-node): Reset.
14297         (assistant-make-read-only): Not sticky.
14298
14299 2004-05-20  Danny Siu  <dsiu@adobe.com>
14300
14301         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
14302         centered even when gnus-auto-center-summary is t.
14303
14304 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14305
14306         * dns.el (dns-get-txt-answer): New function.
14307         (dns-read-txt): Ditto.
14308         (query-dns): Use it.
14309
14310 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14311
14312         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
14313         active for foreign groups even if the group level is higher than
14314         the specified value.
14315
14316 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14317
14318         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
14319         non-active groups.
14320
14321         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
14322
14323 2004-05-20  Magnus Henoch  <mange@freemail.hu>
14324
14325         * dns.el (dns-read-type): Add support for SVR.  (small patch)
14326
14327 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
14328
14329         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
14330         (spam-crm114-header, spam-crm114-spam-switch)
14331         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
14332         (spam-crm114-positive-spam-header)
14333         (spam-crm114-database-directory, spam-list-of-processors)
14334         (spam-group-spam-processor-crm114-p)
14335         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
14336         (spam-generic-score, spam-list-of-checks)
14337         (spam-list-of-statistical-checks, spam-registration-functions)
14338         (spam-check-crm114-headers, spam-crm114-score)
14339         (spam-check-crm114, spam-crm114-register-with-crm114)
14340         (spam-crm114-register-spam-routine)
14341         (spam-crm114-unregister-spam-routine)
14342         (spam-crm114-register-ham-routine)
14343         (spam-crm114-unregister-ham-routine): Add CRM114 support.  From
14344         asjo@koldfront.dk (Adam Sjøgren).
14345
14346         * gnus.el: Add spam-use-crm114.
14347
14348         * spam.el (spam-list-of-processors, spam-registration-functions):
14349         Add spam-use-resend.
14350         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
14351         (spam-report-articles-gmane): Add doc fix.
14352         (spam-report-articles-resend, spam-report-resend-register-routine):
14353         Add wrappers around spam-report-resend-to.
14354
14355         * spam-report.el (spam-report-resend-to, spam-report-resend):
14356         Add support for resending spam.
14357         (spam-report-gmane): Fix line length >80.
14358
14359         * gnus.el (spam-process): Add spam-use-resend.
14360
14361 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14362
14363         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
14364         number of processed spam messages.
14365         (spam-ham-copy-or-move-routine): Return the number of processed
14366         ham messages.
14367         (spam-summary-prepare-exit): Use the above values to decide
14368         whether status messages shouled be displayed.
14369
14370 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14371
14372         * rfc2047.el (rfc2047-encode-function-alist): Renamed from
14373         `rfc2047-encoding-function-alist' in order to avoid conflicting
14374         with the old version.
14375         (rfc2047-encode-region): Concatenate words containing non-ASCII
14376         characters in structured fields; don't encode space-delimited
14377         ASCII words even in unstructured fields; don't break words at
14378         char-category boundaries.
14379         (rfc2047-encode-1): New function.
14380         (rfc2047-encode): Use it; encode text so that it occupies the
14381         maximum width within 76-column; work correctly on Q encoding for
14382         iso-2022-* charsets.
14383         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
14384         sure not to break a line just after the header name.
14385         (rfc2047-b-encode-region): Removed.
14386         (rfc2047-b-encode-string): New function.
14387         (rfc2047-q-encode-region): Removed.
14388         (rfc2047-q-encode-string): New function.
14389
14390         * mm-util.el (mm-replace-in-string): New function.
14391
14392 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14393
14394         * gnus-msg.el (gnus-inews-make-draft-meta-information): Really
14395         get it right.
14396         (gnus-inews-make-draft): Really.
14397
14398 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
14399
14400         * nnmh.el (nnmh-request-list-1): Don't check the link count
14401         before descending.  (small patch)
14402
14403 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14404
14405         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
14406         stuff.
14407
14408         * gnus-start.el (gnus-subscribe-hierarchical-interactive): Match
14409         on real group name.
14410
14411         * gnus-art.el (gnus-signature-limit): Doc fix.
14412
14413         * gnus-msg.el (gnus-inews-make-draft): Quote list.
14414
14415         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
14416
14417 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
14418
14419         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
14420         isn't a string.
14421
14422 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14423
14424         * gnus-draft.el (gnus-draft-send): Bind
14425         rfc2047-encode-encoded-words.
14426
14427         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
14428         (rfc2047-encodable-p): Say that =? needs encoding.
14429         (rfc2047-encode-encoded-words): New variable.
14430
14431         * gnus-group.el (gnus-group-select-group): Doc fix.
14432
14433         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
14434
14435         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
14436         to nil.
14437
14438         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
14439
14440         * nnheader.el (nnheader-get-lines-and-char): New function.
14441
14442 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
14443
14444         * gnus-msg.el (gnus-summary-followup-with-original): Document
14445         yanking of region when active.
14446
14447 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14448
14449         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
14450         groups if the group level is higher than the specified value.
14451
14452 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14453
14454         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
14455         (gnus-group-jump-to-group): Added prefix argument using
14456         `gnus-group-jump-to-group-prompt'.  Query before jumping to
14457         non-active group.
14458
14459         * compface.el (uncompface): Be verbose when changing
14460         `uncompface-use-external'.
14461
14462         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
14463         handle manual section.
14464
14465 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14466
14467         * gnus-art.el (gnus-button-alist): Revert previous change.
14468
14469 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14470
14471         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
14472
14473 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14474
14475         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
14476         whether backend can accept message.
14477
14478         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
14479
14480 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
14481
14482         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
14483         Avoid creating directory when nntp-marks-is-evil is true.
14484         Reported by Reiner Steib.
14485
14486 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14487
14488         * gnus-picon.el (gnus-picon-style): New variable.
14489         (gnus-picon-insert-glyph): Added optional `nostring' argument.
14490         (gnus-picon-transform-address): Support `gnus-picon-style'.  From
14491         Jesper Harder <harder@ifa.au.dk>.
14492
14493 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14494
14495         * message.el (message-fill-field): Return point.
14496         (message-generate-headers): Go to end of field.
14497
14498         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
14499         stuff for non-living groups.
14500
14501 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
14502
14503         * gnus-art.el (gnus-article-followup-with-original)
14504         (gnus-article-reply-with-original): gnus-mark-active-p ->
14505         gnus-region-active-p.
14506
14507 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
14508
14509         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
14510         only when there is spam or ham to be processed.
14511
14512 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14513
14514         * mail-source.el (mail-source-delete-crash-box): Refactor.
14515         (mail-source-fetch): Use it.
14516         (mail-source-fetch-file): Ditto.
14517         (mail-source-fetch-directory): Run postscript in loop.
14518         (mail-source-fetch-pop): Delete.
14519         (mail-source-fetch-maildir): Ditto.
14520         (mail-source-fetch-imap): Ditto.
14521
14522         * imap.el (imap-authenticators): Comment out sasl.
14523
14524         * message.el (message-skip-to-next-address): New function.
14525         (message-fill-header-address): Refactor.
14526         (message-fill-address): Use it.
14527         (message-delete-address): Use it.
14528         (message-fill-header-general): Refactor.
14529         (message-fill-field-address): Rename.
14530         (message-narrow-to-field): Find the start of the header.
14531         (message-header-format-alist): Don't pre-fill.
14532         (message-fill-header): Removed.
14533         (message-insert-header): New function.
14534         (message-shorten-references): Use it.
14535
14536         * rfc2047.el (rfc2047-field-value): Strip props.
14537
14538         * mail-parse.el (mail-header-make-address): New alias.
14539
14540         * ietf-drums.el (ietf-drums-make-address): New function.
14541
14542         * imap.el: Add compiler directives.
14543
14544         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
14545
14546         * gnus-art.el (article-decode-idna-rhs): Don't use
14547         message-idna-inside-rhs-p.
14548
14549 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14550
14551         * message.el (message-idna-inside-rhs-p): Removed.
14552         (message-idna-to-ascii-rhs-1): Use proper address parsing.
14553
14554         * gnus-art.el (gnus-emphasis-alist): Removed strikethru; too many
14555         false positives.
14556
14557 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
14558
14559         * imap.el (imap-sasl-make-mechanisms): Use sasl.
14560
14561 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14562
14563         * nneething.el (nneething-file-name): Don't create spurious
14564         files.
14565
14566         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
14567         (gnus-inews-do-gcc): Remove sleep.
14568
14569         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
14570         part under point.
14571
14572         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
14573         (gnus-agent-regenerate-group): Using nil messages aren't valid.
14574
14575 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
14576
14577         * spam.el (spam-summary-prepare-exit): Fixed (length).
14578
14579 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
14580
14581         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
14582         as expired without moving it" message when there are spam
14583         messages left.
14584
14585 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
14586
14587         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
14588         header is not nil.
14589
14590 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
14591
14592         * nntp.el (nntp-request-set-mark, nntp-request-update-info): Call
14593         nntp-possibly-create-directory, not nntp-possibly-change-group.
14594         (nntp-marks-changed-p): New arg SERVER.
14595         (nntp-request-update-info): Adjust caller.
14596
14597 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
14598
14599         * nntp.el (nntp-save-marks): Pass missing arg.
14600
14601 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
14602
14603         * nntp.el: Support marks.
14604         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
14605         (nntp-marks-modtime, nntp-marks-directory): New variables.
14606         (nntp-request-set-mark, nntp-request-update-info)
14607         (nntp-possibly-create-directory, nntp-marks-changed-p)
14608         (nntp-save-marks, nntp-open-marks, nntp-marks-directory): New
14609         functions.
14610
14611 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
14612
14613         * gnus-xmas.el (gnus-xmas-select-lowest-window)
14614         (gnus-xmas-redefine): Rename.
14615
14616         * gnus-score.el (gnus-score-insert-help): Use
14617         gnus-select-lowest-window.
14618
14619         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
14620         appt-select-lowest-window and rename to gnus-select-lowest-window.
14621
14622         * gnus.el: do.
14623
14624 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14625
14626         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
14627         encodings of MIME-encoded words, in order to improve
14628         interoperability with several broken MUAs.
14629
14630 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14631
14632         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
14633         tags, only when charsets are not specified in headers.
14634         (mm-inline-text-html-render-with-w3m): Ditto.
14635
14636         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
14637         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
14638
14639 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14640
14641         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
14642         instead of MIME-decoded from fields when checking
14643         `gnus-article-address-banner-alist'.
14644
14645 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
14646
14647         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
14648         description rather than subject.
14649
14650 2004-05-02  Steve Youngs  <steve@youngs.au.com>
14651
14652         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
14653
14654 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14655
14656         * gnus.el (gnus-version-number): Bump.
14657
14658 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14659
14660         * gnus.el: No Gnus v0.2 is released.
14661
14662 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14663
14664         * gnus-agent.el (gnus-agent-read-agentview): Inline
14665         gnus-uncompress-range.
14666
14667 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14668
14669         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
14670         `exec-installed-p'.
14671
14672 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14673
14674         * gnus.el (spam-process, spam-autodetect-methods): Add
14675         bsfilter and bsfilter-headers.
14676
14677         * spam.el (spam-bsfilter): New customize group.
14678         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
14679         (spam-bsfilter-header, spam-bsfilter-probability-header)
14680         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
14681         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
14682         (spam-bsfilter-database-directory): New options.
14683         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
14684         (spam-list-of-statistical-checks, spam-registration-functions):
14685         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
14686         (spam-bsfilter-score): New command.
14687         (spam-check-bsfilter-headers, spam-check-bsfilter)
14688         (spam-bsfilter-register-with-bsfilter)
14689         (spam-bsfilter-register-spam-routine)
14690         (spam-bsfilter-unregister-spam-routine)
14691         (spam-bsfilter-register-ham-routine)
14692         (spam-bsfilter-unregister-ham-routine): New functions.
14693         (spam-generic-score): Support bsfilter; Accept an optional argument
14694         to recalcurate spam score even if scoring header has already been
14695         added.
14696         (spam-bogofilter-score, spam-spamassassin-score): Accept an
14697         optional argument to recalcurate spam score even if scoring header
14698         has already been added.
14699
14700 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
14701
14702         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
14703         strings!  Reported by David D. Smith <davidsmith@acm.org>.
14704         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
14705         link is missing.
14706
14707 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
14708
14709         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
14710         (html2text-get-attr): Rewrite.
14711
14712         * message.el (message-setup-1): Remove redundant put-text-property
14713         on mail-header-separator.
14714
14715 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
14716
14717         * gnus-registry.el (gnus-registry-cache-whitespace)
14718         (gnus-registry-action, gnus-registry-spool-action)
14719         (gnus-registry-split-fancy-with-parent): Change message levels
14720         from 5 to 3 or 7, as needed.
14721
14722         * spam.el (spam-summary-prepare-exit)
14723         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
14724         (spam-split, spam-find-spam, spam-log-undo-registration)
14725         (spam-check-blackholes, spam-enter-ham-BBDB): Changed message
14726         level from 5 to 6.
14727
14728 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14729
14730         * gnus-ems.el: Autoload appt-select-lowest-window (revert
14731         2004-03-04 change).
14732
14733 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
14734
14735         * sieve-manage.el (sieve-manage-open):
14736         * nnweb.el (nnweb-insert-html):
14737         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
14738         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
14739         * nnspool.el (nnspool-request-group):
14740         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
14741         * nnml.el (nnml-request-update-info):
14742         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
14743         (nnmh-request-create-group, nnmh-update-gnus-unreads):
14744         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
14745         (nnimap-request-set-mark):
14746         * nnfolder.el (nnfolder-request-update-info):
14747         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
14748         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
14749         * gnus-uu.el (gnus-uu-find-articles-matching):
14750         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
14751         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
14752         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
14753         * gnus-nocem.el (gnus-nocem-scan-groups):
14754         * gnus-int.el (gnus-start-news-server):
14755         * gnus-group.el (gnus-group-make-kiboze-group)
14756         (gnus-group-browse-foreign-server):
14757         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
14758         Use mapc when appropriate.
14759
14760 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
14761
14762         FIXME: Make separate entries for each person.
14763
14764         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
14765         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
14766         <shields@msrl.com>:
14767
14768         * spam.el (spam-necessary-extra-headers): Get the extra headers we
14769         may need for spam sorting and scoring.
14770         (spam-user-format-function-S): Add user format function suitable for
14771         general use.
14772         (spam-article-sort-by-spam-status): Add sorting function for summary
14773         sorting.
14774         (spam-extra-header-to-number): Add function to get a score from a
14775         header.
14776         (spam-summary-score): Add function to get a numeric score from the
14777         headers.
14778         (spam-generic-score): Fix function doc, was in wrong place.
14779         (spam-initialize): Take symbols when it's run, and install the
14780         extra headers that spam-necessary-extra-headers thinks we need.
14781
14782 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
14783
14784         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
14785         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
14786
14787 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
14788
14789         * gnus-sum.el (gnus-set-global-variables)
14790         (gnus-build-all-threads, gnus-get-newsgroup-headers)
14791         (gnus-article-get-xrefs, gnus-summary-best-group)
14792         (gnus-summary-next-article, gnus-summary-enter-digest-group)
14793         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
14794         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
14795         Use with-current-buffer.
14796
14797 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
14798
14799         * spam.el (spam-summary-prepare-exit): Simplify logic.
14800         (spam-fetch-article-header): Read the article header if it's not
14801         available.
14802         (spam-list-articles): Simplify logic.
14803         (spam-filelist-register-routine): Fix bug with unregister-list.
14804
14805         * gnus-registry.el: Fix comments at beginning.
14806
14807 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
14808
14809         * message.el (message-cater-to-broken-inn): Remove.
14810         (message-shorten-references): Make sure the total folded length of
14811         References is shorter than 998 characters to cater to a bug in INN
14812         2.3.  Also, don't pretend that references aren't folded -- this
14813         hasn't worked for a while.
14814
14815 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14816
14817         * gnus-agent.el (gnus-agentize):
14818         gnus-agent-send-mail-real-function no longer set to current value
14819         of message-send-mail-function but rather a lambda that calls
14820         message-send-mail-function.  The change makes the agent real-time
14821         responsive to user changes to message-send-mail-function.
14822
14823 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14824
14825         * legacy-gnus-agent.el
14826         (gnus-agent-convert-to-compressed-agentview): Fixed typos with
14827         help from Florian Weimer <fw@deneb.enyo.de>
14828
14829 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14830
14831         * nnmail.el (nnmail-cache-insert): Revert last change.
14832
14833 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14834
14835         * nnmail.el (nnmail-cache-insert): Always check whether
14836         nnmail-cache-ignore-groups matches a group name.
14837
14838 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
14839
14840         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
14841         (spam-find-spam, spam-log-processing-to-registry)
14842         (spam-log-registered-p, spam-log-unregistration-needed-p)
14843         (spam-log-undo-registration): Use gnus-message instead of
14844         gnus-error, none of these errors are fatal.
14845
14846         * gnus-registry.el (gnus-registry-clean-empty-function)
14847         (gnus-registry-clean-empty): Remove only empty entries without
14848         extra data.
14849
14850 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
14851
14852         * spam-stat.el (spam-stat-buffer-change-to-spam)
14853         (spam-stat-buffer-change-to-non-spam): Change (error) to
14854         (gnus-message 8) invocation.
14855
14856 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14857
14858         * nntp.el (nntp-via-netcat-command): New variable.
14859         (nntp-via-netcat-switches): New variable.
14860         (nntp-open-via-rlogin-and-netcat): New function.
14861         (nntp-open-connection-function): Doc fix.
14862         (nntp-telnet-command): Doc fix.
14863         (nntp-end-of-line): Doc fix.
14864         (nntp-via-rlogin-command): Doc fix.
14865         (nntp-via-user-name): Doc fix.
14866         (nntp-via-address): Doc fix.
14867
14868 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14869
14870         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
14871         error in Emacs 21.1.
14872
14873 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
14874
14875         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
14876
14877 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14878
14879         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
14880         (gnus-agent-with-refreshed-group): New macro.
14881         (gnus-agent-rename-group): New function.
14882         (gnus-agent-delete-group): New function.
14883         (gnus-agent-save-group-info): Use gnus-command-method when
14884         `method' parameter is nil.  Don't write nil entries into the
14885         active file.
14886         (gnus-agent-get-group-info): New function.
14887         (gnus-agent-fetch-articles): Use
14888         gnus-agent-update-files-total-fetched-for to increment disk space
14889         used.
14890         (gnus-agent-fetch-headers, gnus-agent-save-alist): Use
14891         gnus-agent-update-view-total-fetched-for to increment disk space
14892         used.
14893         (gnus-agent-get-local): Added optional parameters to avoid calling
14894         gnus-group-real-name and gnus-find-method-for-group.
14895         (gnus-agent-set-local): Delete stored entry if either min, or max,
14896         are nil.
14897         (gnus-agent-fetch-session): Reworded error/quit messages.  On
14898         quit, use gnus-agent-regenerate-group to record existance of any
14899         articles fetched to disk before the quit occurred.
14900         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
14901         gnus-agent-update-view-total-fetched-for, and
14902         gnus-agent-update-files-total-fetched-for to decrement disk space
14903         used.
14904         (gnus-agent-retrieve-headers): Use
14905         gnus-agent-update-view-total-fetched-for to increment disk space
14906         used.
14907         (gnus-agent-regenerate-group): Replace gnus-group-update-group
14908         with gnus-agent-update-files-total-fetched-for to decrement disk
14909         space and fresh group buffer.
14910         (gnus-agent-inhibit-update-total-fetched-for): New variable.
14911         (gnus-agent-need-update-total-fetched-for): New variable.
14912         (gnus-agent-update-files-total-fetched-for): New function.
14913         (gnus-agent-update-view-total-fetched-for): New function.
14914         (gnus-agent-total-fetched-for): New function.
14915
14916         * gnus-cache.el (gnus-cache-save-buffers): Use
14917         gnus-cache-update-overview-total-fetched-for to change disk space
14918         used by this group.
14919         (gnus-cache-possibly-enter-article): Use
14920         gnus-cache-update-file-total-fetched-for to increment disk space
14921         used by this group.
14922         (gnus-cache-possibly-remove-article): Use
14923         gnus-cache-update-file-total-fetched-for to decrement disk space
14924         used by this group.
14925         (gnus-cache-generate-nov-databases): Purge total fetched cache.
14926         (gnus-cache-rename-group): New function.
14927         (gnus-cache-delete-group): New function.
14928         (gnus-cache-inhibit-update-total-fetched-for): New variable.
14929         (gnus-cache-need-update-total-fetched-for): New variable.
14930         (gnus-cache-with-refreshed-group): New macro.
14931         (gnus-cache-update-file-total-fetched-for): New function.
14932         (gnus-cache-update-overview-total-fetched-for): New function.
14933         (gnus-cache-rename-group-total-fetched-for): New function.
14934         (gnus-cache-delete-group-total-fetched-for): New function.
14935         (gnus-cache-total-fetched-for): New function.
14936
14937         * gnus-group.el: Require gnus-sum and autoload functions to
14938         resolve warnings when gnus-group.el compiled alone.
14939         (gnus-group-line-format): Documented new %F.
14940         (size of Fetched data) group line format; identifies disk space
14941         used by agent and cache.
14942         (gnus-group-line-format-alist): Defined new F format.
14943         (gnus-total-fetched-for): New function.
14944         (gnus-group-delete-group): No longer update
14945         gnus-cache-active-altered as gnus-request-delete-group now keeps
14946         the cache in sync.
14947         (gnus-group-list-active): Let the agent store a server's active
14948         list if currently plugged.
14949
14950         * gnus-int.el (gnus-request-delete-group):
14951         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
14952         local disk in sync with the server.
14953         (gnus-request-rename-group):
14954         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
14955         local disk in sync with the server.
14956
14957         * gnus-start.el (gnus-get-unread-articles):
14958         Cosmetic simplification to logic.
14959
14960         * gnus-util.el (gnus-rename-file): New function.
14961
14962 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
14963
14964         * mm-util.el (mm-image-load-path): Handle nil in load-path.
14965
14966 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
14967
14968         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
14969         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
14970
14971 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
14972
14973         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
14974         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
14975
14976 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
14977
14978         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
14979
14980 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
14981
14982         * spam.el (spam-set-difference): Add function to replace
14983         gnus-set-difference in spam.el.
14984         (spam-summary-prepare-exit): Use spam-set-difference.
14985
14986 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
14987
14988         * gnus-registry.el (gnus-registry-cache-file): Update to use
14989         gnus-dribble-directory OR gnus-home-directory OR ~.
14990         (gnus-registry-split-fancy-with-parent): Fix doc.
14991
14992 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14993
14994         * message.el (message-exchange-point-and-mark): Use
14995         message-mark-active-p.  Suggested by Jesper Harder
14996         <harder@ifa.au.dk>.
14997
14998 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14999
15000         * message.el (message-exchange-point-and-mark): Don't activate
15001         region if it was inactive.  Suggested by Hiroshi Fujishima
15002         <pooh@nature.tsukuba.ac.jp>.
15003
15004 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15005
15006         * gnus-art.el (article-display-face): Display Faces in the same
15007         order as X-Faces.
15008
15009 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15010
15011         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
15012
15013 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15014
15015         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
15016         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
15017         (gnus-article-mime-hierarchy): Remove.
15018         (gnus-article-mime-hierarchy-next): Remove.
15019         (gnus-article-mode): Revert 2004-03-19 change.
15020         (gnus-article-setup-buffer): Revert 2004-03-19 change.
15021         (gnus-insert-mime-button): Revert 2004-03-19 change.
15022         (gnus-mime-accumulate-hierarchy): Remove.
15023         (gnus-mime-enter-multipart): Remove.
15024         (gnus-mime-leave-multipart): Remove.
15025         (gnus-mime-display-part): Revert 2004-03-19 change.
15026         (gnus-mime-display-alternative): Revert 2004-03-19 change.
15027
15028         * mml.el (mml-preview): Revert 2004-03-19 change.
15029
15030 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
15031
15032         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
15033
15034 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
15035
15036         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
15037         t while entering a file name using the mm-with-multibyte macro.
15038         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
15039
15040         * mm-util.el (mm-with-multibyte): New macro.
15041
15042 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15043
15044         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): New
15045         user option.
15046         (gnus-mime-multipart-functions): Doc and customization fix.
15047         (gnus-article-mime-hierarchy): New variable.
15048         (gnus-article-mime-hierarchy-next): New variable.
15049         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
15050         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
15051         gnus-article-mime-hierarchy-next to nil.
15052         (gnus-insert-mime-button): Show hierarchy numbers.
15053         (gnus-mime-accumulate-hierarchy): New function.
15054         (gnus-mime-enter-multipart): New function.
15055         (gnus-mime-leave-multipart): New function.
15056         (gnus-mime-display-part): Recompute hierarchical MIME structure.
15057         (gnus-mime-display-alternative): Show hierarchy numbers.
15058
15059         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
15060         gnus-article-mime-hierarchy-next to nil.
15061
15062 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
15063
15064         * dns.el: Don't require gnus-xmas.
15065
15066 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
15067
15068         * mml.el (mml-generate-mime-1): Don't use format=flowed with
15069         inline PGP.
15070         (mml-menu): Disable mml-quote-region if mark is inactive.
15071
15072 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15073
15074         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
15075         when the group's active is not available.
15076
15077 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15078
15079         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
15080         error.
15081
15082 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
15083
15084         * imap.el (imap-store-password): New variable.
15085         (imap-interactive-login): Use it.
15086         Suggested by Mark Plaksin <happy@mcplaksin.org>.
15087
15088 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15089
15090         * gnus-art.el (gnus-article-read-summary-keys): Restore new
15091         window-start and hscroll to summary window.
15092
15093 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15094
15095         * gnus-start.el (gnus-convert-old-newsrc): Only write the
15096         conversion message to newsrc-dribble when an actual conversion is
15097         performed.
15098
15099 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
15100
15101         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
15102
15103 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15104
15105         * mm-decode.el (mm-complicated-handles): New function reviving
15106         former definition of mm-multiple-handles.
15107
15108         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
15109         (gnus-mime-delete-part): Use it.
15110
15111 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15112
15113         * gnus-agent.el (gnus-agent-read-local): Bind
15114         nnheader-file-coding-system to gnus-agent-file-coding-system to
15115         avoid the implicit assumption that they will always be equal.
15116         (gnus-agent-save-local): Bind buffer-file-coding-system, not
15117         coding-system-for-write, as the with-temp-file macro first prints
15118         to a buffer then saves the buffer.
15119
15120 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15121
15122         * gnus-art.el (gnus-article-edit-part): New function.
15123         (gnus-mime-save-part-and-strip): Use it; do query instead of
15124         signaling an error; don't use mm-multiple-handles.
15125         (gnus-mime-delete-part): Ditto.
15126
15127 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15128
15129         * gnus-agent.el (gnus-agent-read-agentview): Removed support for
15130         old file versions.
15131         (gnus-group-prepare-hook): Removed function that converted list
15132         form of gnus-agent-expire-days to group properties.
15133
15134         * gnus-int.el: Autoload gnus-agent-regenerate-group.
15135         (gnus-request-accept-article): Re-indented.
15136
15137         * gnus-start.el (gnus-convert-old-newsrc): Registered new
15138         converters to handle old agent file formats.  Added logic for a
15139         "backup before upgrading warning".
15140         (gnus-convert-mark-converter-prompt): Developers can mark
15141         functions as needing (default), or not needing,
15142         gnus-convert-old-newsrc's "backup before upgrading warning".
15143         (gnus-convert-converter-needs-prompt): Tests whether the user
15144         should be protected from potentially irreversable changes by the
15145         function.
15146
15147         * legacy-gnus-agent.el: New.  Provides converters that are only
15148         loaded when gnus-convert-old-newsrc needs to call them.
15149
15150 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15151
15152         * mail-source.el (mail-source-touch-pop): Doc fix.
15153
15154         * message.el (message-smtpmail-send-it): Doc fix.
15155
15156 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
15157
15158         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
15159
15160         * nnmail.el (nnmail-split-fancy): do.
15161
15162         * gnus-kill.el (gnus-kill, gnus-execute): do.
15163
15164 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
15165
15166         * gnus-sum.el (gnus-widget-reversible-match)
15167         (gnus-widget-reversible-to-internal)
15168         (gnus-widget-reversible-to-external): New functions.
15169         (gnus-widget-reversible): New widget.
15170         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
15171
15172 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
15173
15174         * gnus-sum.el (gnus-thread-sort-functions)
15175         (gnus-article-sort-functions): Document `(not F)' items.
15176
15177 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
15178
15179         * spam.el (spam-use-gmane-xref): Add new backend.
15180         (spam-gmane-xref-spam-group): Add variable to control the name of the
15181         Gmane spam group.
15182         (spam-blackhole-servers, spam-blackhole-good-server-regex)
15183         (spam-regex-headers-spam, spam-regex-headers-ham)
15184         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
15185         (spam-list-of-checks): Add spam-use-gmane-xref to list of
15186         backends and checks.
15187         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
15188
15189         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
15190         an autodetect method.
15191
15192 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15193
15194         * gnus-int.el (gnus-request-accept-article): Inform the agent that
15195         articles are being added to a group.
15196         (gnus-request-replace-article): Inform the agent that articles
15197         need to be uncached as the cached contents are no longer valid.
15198
15199 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15200
15201         * binhex.el: Don't autoload executable-find.
15202
15203         * canlock.el: Don't autoload mail-fetch-field.
15204
15205         * dgnushack.el: Autoload c-mode for XEmacs.
15206
15207         * gnus-ems.el: Don't autoload appt-select-lowest-window.
15208
15209         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
15210         rmail-dont-reply-to and rmail-output.
15211
15212         * gnus-score.el: Don't autoload ffap-string-at-point.
15213
15214         * gnus-setup.el: Don't autoload sc-cite-original.
15215
15216         * imap.el: Don't autoload base64-decode-string,
15217         base64-encode-string and md5.
15218
15219         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
15220         and rmail-msg-restore-non-pruned-header.
15221
15222         * mm-decode.el: Don't autoload executable-find.
15223
15224         * mm-url.el: Don't autoload executable-find.
15225
15226         * mm-view.el: Don't autoload diff-mode.
15227
15228         * nndb.el: Don't autoload news-reply-mode, news-setup,
15229         cancel-timer and telnet.
15230
15231         * password.el: Don't autoload run-at-time for Emacs.
15232
15233         * sha1-el.el: Don't autoload executable-find.
15234
15235         * sieve-mode.el: Don't autoload c-mode.
15236
15237         * uudecode.el: Don't autoload executable-find.
15238
15239 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15240
15241         * gnus-agent.el (gnus-agent-file-header-cache): Removed.
15242         (gnus-agent-possibly-alter-active): Avoid null in numeric
15243         comparison.
15244         (gnus-agent-set-local): Refuse to save null in local object table.
15245         (gnus-agent-regenerate-group): The REREAD parameter can now be a
15246         list of articles that will be marked as unread.
15247
15248 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15249
15250         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
15251
15252 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
15253
15254         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
15255         language tags.
15256
15257 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
15258
15259         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
15260         Don't bind "obarray".
15261
15262         * gnus-sum.el (gnus-thread-sort-functions): Added
15263         `gnus-thread-sort-by-most-recent-number' and
15264         `gnus-thread-sort-by-most-recent-date'.
15265         Reported by Kai Grossjohann <kai@emptydomain.de>.
15266
15267 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15268
15269         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
15270
15271 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15272
15273         * gnus-cus.el (gnus-agent-customize-category): Removed
15274         ignore-errors macro reference that required cl to be loaded at
15275         run-time.
15276
15277         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
15278         single-interval range of the form (min . max).  Previously the
15279         range had to look like ((min . max)).  Likewise, return
15280         (min . max) rather than ((min . max)).
15281         (gnus-range-map): Use gnus-range-normalize to accept
15282         single-interval range.
15283
15284         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
15285         the cache, but not the agent, now appear with their usual face.
15286
15287         * dgnushack.el (loaddir): New variable that is bound to the
15288         directory containing the dgnushack.el file. Use loaddir, rather
15289         than srcdir, to update load-path. Change lets dgnushack compile
15290         code in directories other than GNUS/lisp.
15291
15292 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15293
15294         * lpath.el: Don't bind w3m-safe-url-regexp.
15295
15296         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
15297         w3m-safe-url-regexp variable buffer-local.
15298
15299         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15300
15301 2004-02-27  Simon Josefsson  <jas@extundo.com>
15302
15303         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
15304         gnus-group-real-prefix.
15305         (gnus-summary-move-article): Use it, instead of
15306         gnus-group-real-prefix.
15307
15308 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15309
15310         * lpath.el: Bind w3m-safe-url-regexp.
15311
15312         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
15313         w3m-safe-url-regexp variable buffer-local and set it as the value
15314         of mm-w3m-safe-url-regexp.
15315
15316         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15317
15318         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
15319         parsing gnus-posting-styles when the message is not for replying.
15320
15321         * dgnushack.el: Autoload sgml-mode for XEmacs.
15322
15323         * nnrss.el (nnrss-opml-export): Use
15324         mm-set-buffer-file-coding-system instead of
15325         set-buffer-file-coding-system.
15326
15327 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
15328
15329         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
15330         of checkdoc.el).
15331         * nnrss.el: do.
15332         * gnus-mlspl.el: do.
15333         * gnus-ml.el: do.
15334         * gnus-srvr.el: do.
15335
15336         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
15337
15338 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
15339
15340         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
15341         Corrections to custom-manual links.
15342
15343         * gnus-art.el (gnus-article): Ditto.
15344
15345         * mm-decode.el (mime-display, mime-security): Ditto.
15346
15347 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15348
15349         * flow-fill.el: Typo.
15350
15351 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
15352
15353         * spam-wash.el: New file.
15354
15355 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
15356
15357         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
15358
15359 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
15360
15361         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
15362         to be run with new-articles as LIST1, not LIST2.
15363         (spam-registration-functions): Add spam-use-ham-copy as a nil
15364         registration backend.
15365
15366 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15367
15368         * spam-stat.el (spam-stat-washing-hook): New option.
15369         (spam-stat-buffer-words): Use it.
15370         (spam-stat-process-directory, spam-stat-test-directory): Use
15371         insert-file-contents-literally.
15372         (spam-stat-coding-system): New variable.
15373         (spam-stat-load, spam-stat-save): Use it.
15374
15375 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15376
15377         * spam-report.el (spam-report-plug-agent): Quote
15378         spam-report-url-to-file and spam-report-url-ping-plain.
15379
15380 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
15381
15382         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Allow
15383         / in mailto URLs.
15384
15385 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
15386
15387         * spam-report.el (spam-report-process-queue): Fix interactive use.
15388         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
15389         (spam-report-unplug-agent): Doc fixes.
15390         (spam-report-url-ping-mm-url, spam-report-url-to-file)
15391         (spam-report-agentize, spam-report-deagentize): Autoload.
15392
15393 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15394
15395         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
15396
15397         * message.el (message-setup-fill-variables): Add mml tags to
15398         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
15399         <ajk@iu.edu>.
15400         (message-mode): Don't modify paragraph-separate there.
15401
15402 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15403
15404         * compface.el (uncompface-use-external): Default to undecided.
15405         (uncompface-use-external-threshold): New variable.
15406         (uncompface-float-time): New macro.
15407         (uncompface): Determine whether to use the external decoder if
15408         uncompface-use-external is undecided.
15409
15410 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15411
15412         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
15413         after images.
15414
15415         * gnus-art.el (gnus-mime-display-single): Remove dead code.
15416
15417 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
15418
15419         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
15420
15421         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
15422
15423         * gnus-sum.el (gnus-summary-limit-to-age)
15424         (gnus-summary-limit-children): do.
15425
15426         * gnus-int.el (gnus-request-scan): do.
15427
15428         * gnus-group.el (gnus-group-suspend): do.
15429
15430         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
15431
15432         * gnus-cite.el (gnus-cite-parse-attributions): do.
15433
15434         * gnus-agent.el (gnus-summary-set-agent-mark)
15435         (gnus-agent-regenerate-group): do.
15436
15437         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
15438
15439         * binhex.el (binhex-decode-region-internal): do.
15440
15441 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15442
15443         * gnus-fun.el (gnus-face-properties-alist): New user option.
15444         (gnus-display-x-face-in-from): Use it.
15445
15446         * gnus-art.el (article-display-face): Ditto.
15447
15448         * compface.el (uncompface-use-external): Default to nil.
15449
15450 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
15451
15452         * nntp.el (nntp-erase-buffer): New function.
15453         (nntp-retrieve-data, nntp-send-command)
15454         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
15455         (nntp-possibly-change-group): Use it.
15456
15457         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list): Use
15458         with-current-buffer.
15459
15460 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
15461
15462         * compface.el: Merge the ELisp-based uncompface program.
15463         (compface): New customization group.
15464         (uncompface-use-external): New user option.
15465         (uncompface): Call uncompface-internal if uncompface-use-external
15466         is nil.
15467         (uncompface-internal): New function.  Note that there are also
15468         some other functions and variables added for this function.
15469
15470 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
15471
15472         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
15473         if necessary.
15474
15475 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
15476
15477         * spam-report.el (spam-report-unplug-agent)
15478         (spam-report-plug-agent, spam-report-deagentize)
15479         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
15480         Add support for the Agent in spam-report: when unplugged, report to a
15481         file; when plugged, submit all the requests.
15482
15483         * spam.el (spam-register-routine): Fix message about
15484         registration.
15485
15486 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
15487
15488         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
15489         dependencies.
15490         (rfc2047-encode): Use it.
15491
15492         * gnus-art.el (gnus-button-marker-list): Move before first
15493         reference.
15494
15495         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
15496         (imap-parse-body): Fix format string mismatch.
15497
15498         * gnus-score.el (gnus-summary-increase-score): do.
15499
15500         * nnrss.el (nnrss-close): New function.
15501
15502 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
15503
15504         * nnrss.el (nnrss-make-filename): New function.
15505         (nnrss-request-delete-group, nnrss-read-server-data)
15506         (nnrss-save-server-data, nnrss-read-group-data)
15507         (nnrss-save-group-data): Use it.
15508         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
15509         (nnrss-read-server-data, nnrss-read-group-data): Use load.
15510         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
15511
15512 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
15513
15514         * mml.el (mml-compute-boundary-1): Don't uncompress files.
15515
15516 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
15517
15518         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
15519         files.
15520
15521         * message.el (message-generate-headers-first): Don't quote nil
15522         and t in docstrings.
15523
15524         * imap.el (imap-id): do.
15525
15526         * gnus-agent.el (gnus-agent-consider-all-articles)
15527         (gnus-agent-queue-mail): do.
15528
15529 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
15530
15531         * spam-report.el (spam-report-process-queue): New function.
15532         Process requests from `spam-report-requests-file'.
15533         (spam-report-process-queue): Doc fix.
15534
15535 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
15536
15537         * spam.el (spam-register-routine)
15538         (spam-log-processing-to-registry, spam-log-registered-p)
15539         (spam-log-unregistration-needed-p, spam-log-undo-registration):
15540         Change "check" to "spam-check" for semi-clarity.
15541
15542 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
15543
15544         * pop3.el: Require nnheader.
15545
15546         * mml-smime.el: Require cl.  Autoload message-fetch-field.
15547
15548         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
15549
15550         * gnus-picon.el: Require cl.
15551
15552         * gnus-fun.el: Require gnus-ems and gnus-util.
15553
15554         * gnus.el (gnus-method-to-server): Move defsubst before first use.
15555
15556         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
15557
15558         * gnus-art.el (gnus-article-edit-mode): Define before first
15559         reference.
15560
15561 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
15562
15563         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
15564         (gnus-uu-post-encoded): Use point-at-bol.
15565
15566         * gnus-topic.el (gnus-group-active-topic-p): do.
15567
15568         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
15569
15570         * gnus-group.el (gnus-group-kill-region): do.
15571
15572         * gnus-art.el (article-date-ut): do.
15573
15574         * message.el (message-fetch-field): Remove redundant
15575         case-fold-search binding.
15576         (message-narrow-to-field): Simplify.
15577
15578 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
15579
15580         * spam.el (spam-directory): Derive from `gnus-directory'.
15581
15582         * spam-report.el (spam-report-url-to-file)
15583         (spam-report-requests-file): New function and variable for offline
15584         reporting.
15585         (spam-report-url-ping-function): Add `spam-report-url-to-file'
15586         and user defined function.
15587         (spam-report-url-ping-mm-url): Remove doubled slash.
15588
15589 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
15590
15591         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
15592
15593 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
15594
15595         * spam.el (spam-check-spamoracle, spam-spamoracle-learn): Fix
15596         format string mismatch.
15597
15598         * sieve.el (sieve-deactivate-all): do.
15599
15600         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
15601
15602         * nnlistserv.el (nnlistserv-kk-wash-article): do.
15603
15604         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
15605
15606         * mm-bodies.el (mm-7bit-chars): Don't include \r.
15607
15608 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
15609
15610         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
15611         the list of checks.
15612
15613 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
15614
15615         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
15616         padding.
15617
15618 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
15619
15620         * mm-view.el (mm-fill-flowed): New variable.
15621         (mm-inline-text): Use it.
15622
15623 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
15624
15625         * spam.el (spam-spamassassin-register-ham-routine)
15626         (spam-spamassassin-register-spam-routine): Fix function names.
15627
15628 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15629
15630         * gnus.el (gnus-tmp-grouplens): Remove.
15631         (gnus-summary-line-format): Remove grouplens.
15632
15633         * gnus-group.el (gnus-group-line-format): Ditto.
15634
15635         * gnus-spec.el (gnus-format-specs): Ditto.
15636         (gnus-update-format-specifications): Flush the group format spec
15637         cache if there's the grouplens stuff.
15638         (gnus-parse-simple-format): Replace %l with the empty string.
15639
15640 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
15641
15642         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
15643         omission.
15644
15645 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15646
15647         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
15648         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
15649
15650 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
15651
15652         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
15653         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
15654         New macros and functions.
15655         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
15656         Handle > NLINK_MAX messages.
15657         * nnmaildir.el (nnmaildir-request-set-mark): Use
15658         nnmaildir--emlink-p and nnmaildir--eexist-p.
15659
15660 2004-01-25  Alex Schroeder  <alex@gnu.org>
15661
15662         * spam-stat.el (spam-stat-process-directory-age): New option.
15663         (spam-stat-process-directory): Use it.
15664
15665 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
15666
15667         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
15668         (spam-stat-save): Accept prefix argument.
15669
15670 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
15671
15672         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
15673         links" error.
15674
15675 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15676
15677         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
15678         the rest of the and/or forms.
15679
15680 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15681
15682         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
15683         compatibility with old .newsrc.eld files.
15684
15685         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
15686
15687         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
15688
15689         * gnus-start.el (gnus-1): do.
15690
15691         * gnus-group.el (gnus-group-line-format-alist): do.
15692
15693         * gnus.el (gnus-use-grouplens, gnus-visual): do.
15694
15695         * gnus-gl.el: Remove.
15696
15697 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15698
15699         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
15700         marks consisting of a single range {for example, (3 . 5)} rather
15701         than a list of a single range { ((3 . 5)) }.
15702
15703 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15704
15705         * spam-stat.el (spam-stat-store-gnus-article-buffer): Use
15706         with-current-buffer.
15707         (spam-stat-store-current-buffer): Use insert-buffer-substring to
15708         avoid consing a string.
15709
15710         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
15711         Remove obsolete entries for big5 and gb2312.
15712
15713 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15714
15715         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
15716         uncompressed list.
15717
15718 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
15719
15720         * spam-stat.el (spam-stat-strip-xref): New function.
15721         (spam-stat-process-directory): Use it.
15722
15723         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
15724         here -- it's done in message-fetch-field.
15725
15726 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15727
15728         * gnus-agent.el (gnus-agent-queue-mail)
15729         (gnus-agent-prompt-send-queue): New variables.
15730         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
15731         * gnus-draft.el (gnus-group-send-queue): Pass the group name
15732         "nndraft:queue" along to gnus-draft-send.  Use
15733         gnus-agent-prompt-send-queue.
15734         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
15735         is "nndraft:queue".  Suggested by Gaute Strokkenes
15736         <gs234@srcf.ucam.org>
15737
15738         * gnus-agent.el (agent-disable-undownloaded-faces): Removed.
15739         (agent-enable-undownloaded-faces): Added.
15740         (gnus-agent-cat-groups): Use eval-and-compile, not
15741         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
15742         method of gnus-agent-cat-groups even when the buffer has been
15743         evaled.
15744         (gnus-agent-save-active, gnus-agent-save-active-1): Merged to
15745         delete gnus-agent-save-active-1.
15746         (gnus-agent-save-groups): Deleted.  Identical to
15747         gnus-agent-save-active.
15748         (gnus-agent-write-active): No longer adjust agent's copy of active
15749         file as agent's adjustments are now stored in their own
15750         file.  Removed optional parameter.
15751         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
15752         servers.  Add use of min/max range limits from server's local
15753         file.
15754         (gnus-agent-save-alist): Removed unused optional argument.
15755         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
15756         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
15757         (gnus-agent-set-local): A per-server file that keeps min/max range
15758         limits for articles known to the agent.  Provides a fast mechanism
15759         for altering many active ranges.
15760         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
15761         active file (local makes it unnecessary).
15762         (gnus-agent-regenerate-group): Fixed XEmacs compatibility.
15763
15764         * gnus-cus.el (agent-disable-undownloaded-faces): Removed.
15765         (agent-enable-undownloaded-faces): Added.
15766
15767         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
15768         disable it when sending to "nndraft:queue".
15769         (gnus-group-send-queue): Add safety check to avoid sending queue
15770         when unplugged.
15771
15772         * gnus-group.el (gnus-group-catchup): Use new
15773         gnus-sequence-of-unread-articles, not
15774         gnus-list-of-unread-articles, to avoid exhausting memory with huge
15775         numbers of articles.  Use gnus-range-map to avoid having to
15776         uncompress the unread list.
15777         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
15778         Fixed invalid ange-ftp reference.
15779
15780         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
15781         (gnus-sorted-range-intersection): Intersection of two ranges
15782         without requiring that they first be uncompressed.
15783
15784         * gnus-start.el (gnus-activate-group): Unless blocked by the
15785         caller, possibly expand the active range to include both cached
15786         and agentized articles.
15787         (gnus-convert-old-newsrc): Rewrote in anticipation of having
15788         multiple version-dependent converters.
15789         (gnus-groups-to-gnus-format): Replaced gnus-agent-save-groups with
15790         gnus-agent-save-active.
15791         (gnus-save-newsrc-file): Save dirty agent range limits.
15792
15793         * gnus-sum.el (gnus-select-newgroup): Replaced inline code with
15794         gnus-agent-possibly-alter-active.
15795         (gnus-adjust-marked-articles): Faster handling of simple lists.
15796
15797 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
15798
15799         * spam-stat.el (spam-stat-test-directory): New optional argument
15800         displays a list of files detected.  Suggested by Andrew Cohen
15801         <cohen@andy.bu.edu>.
15802         (spam-stat-buffer-words-with-scores): Don't narrow and change
15803         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
15804
15805 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
15806
15807         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
15808         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
15809         (spam-spamassassin-arguments)
15810         (spam-spamassassin-spam-flag-header)
15811         (spam-spamassassin-positive-spam-flag-header)
15812         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
15813         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
15814         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
15815         (spam-list-of-processors, spam-list-of-checks)
15816         (spam-list-of-statistical-checks, spam-registration-functions)
15817         (spam-check-spamassassin-headers, spam-check-spamassassin)
15818         (spam-spamassassin-score)
15819         (spam-spamassassin-register-with-sa-learn)
15820         (spam-spamassassin-register-spam-routine)
15821         (spam-spamassassin-register-ham-routine)
15822         (spam-assassin-register-spam-routine)
15823         (spam-assassin-register-ham-routine): Add SpamAssassin support.
15824         (spam-bogofilter-score): Fix to show article before scoring.
15825
15826 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
15827
15828         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
15829         default scoring function.
15830         (spam-generic-score): Call spam-spamassassin-score if
15831         spam-use-spamassassin or spam-use-spamassassin-headers is on;
15832         spam-bogofilter-score otherwise.
15833
15834         * gnus.el (spam-process, spam-autodetect-methods): Add
15835         spamassassin and spamassassin-headers.
15836
15837 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
15838
15839         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
15840         Suppress unnecessary messages.
15841
15842 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
15843
15844         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
15845         make-hash-table.
15846
15847 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15848
15849         * canlock.el (base64-encode-string): Don't autoload it.
15850
15851 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15852
15853         * run-at-time.el: Remove useless (require 'itimer),
15854         eval-and-compile and (featurep 'xemacs).
15855
15856 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
15857
15858         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
15859         GROUP is a virtual group.
15860
15861 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
15862
15863         * gnus.el: Autoload `message-y-or-n-p'.
15864
15865 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
15866
15867         * pgg-parse.el: Remove unnecessary (require 'custom).
15868
15869         * pgg-def.el: do.
15870
15871         * nnmail.el: do.
15872
15873         * gnus-undo.el: do.
15874
15875         * gnus-picon.el: do.
15876
15877         * gnus-util.el: do.
15878
15879 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
15880
15881         * gnus-sum.el (gnus-pick-line-number): Add autoload.
15882
15883 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15884
15885         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
15886         handle, as well as a list.
15887
15888         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
15889         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
15890         (mm-w3m-cid-retrieve): Simplify.
15891
15892 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
15893
15894         * message.el (message-kill-to-signature): Allow prefix arg to
15895         specify number of lines to keep before signature.
15896
15897 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
15898
15899         * message.el (message-kill-to-signature): Change docstring.
15900
15901 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15902
15903         * canlock.el: Always require sha1-el.
15904         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
15905
15906         * message.el: Autoload sha1 only when compiling.
15907
15908         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
15909         eudc-expand-inline for XEmacs.
15910
15911 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15912
15913         * message.el (message-canlock-generate): Require sha1-el.
15914
15915 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
15916
15917         * message.el (message-expand-name): Silence the byte compiler.
15918
15919         * lpath.el: Add detect-coding-system.
15920
15921         * dgnushack.el (dgnushack-compile): Remove obsolete check for
15922         cus-edit.
15923
15924 2004-01-13  Simon Josefsson  <jas@extundo.com>
15925
15926         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
15927         Invoke gnus-score-mode.  Reported by
15928         bojohan+news@dd.chalmers.se (Johan Bockgård).
15929
15930         * gnus-range.el (gnus-compress-sequence): Doc fix.  Suggested by
15931         Jim Blandy <jimb@redhat.com> (tiny change).
15932
15933 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15934
15935         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
15936
15937 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
15938
15939         * spam.el (spam-get-article-as-string): Update to use
15940         gnus-request-article-this-buffer, much simpler.
15941         (spam-get-article-as-buffer): Remove.
15942
15943 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
15944
15945         * message.el (message-expand-name): Use EUDC if the user uses that.
15946
15947 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15948
15949         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
15950         character for the encoding to avoid consing a string.
15951
15952         * rfc2047.el (rfc2047-decode-string): Don't cons a string
15953         unnecessarily.
15954
15955         * mm-util.el (mm-replace-chars-in-string): Remove.
15956
15957         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
15958         of mm-replace-chars-in-string.
15959
15960 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
15961
15962         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
15963
15964         * mm-util.el (mm-subst-char-in-string): Support inplace.
15965
15966         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
15967         a new string in every iteration.  Use shy groups.
15968
15969 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
15970
15971         * gnus-srvr.el (gnus-browse-unsubscribe-group):
15972         * gnus-soup.el (gnus-soup-group-brew):
15973         * gnus-msg.el (gnus-put-message):
15974         * gnus-move.el (gnus-group-move-group-to-server):
15975         * gnus-kill.el (gnus-batch-score):
15976         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
15977         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
15978         (gnus-group-update-group, gnus-group-read-group)
15979         (gnus-group-make-group, gnus-group-make-help-group)
15980         (gnus-group-make-archive-group, gnus-group-make-directory-group)
15981         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
15982         (gnus-group-sort-by-unread, gnus-group-catchup)
15983         (gnus-group-unsubscribe-group, gnus-group-kill-group)
15984         (gnus-group-yank-group, gnus-group-set-info)
15985         (gnus-group-list-groups):
15986         * gnus.el (gnus-generate-new-group-name):
15987         * gnus-delay.el (gnus-delay-send-queue):
15988         * nnvirtual.el (nnvirtual-catchup-group):
15989         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
15990         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
15991         (gnus-group-prepare-topics, gnus-topic-check-topology):
15992         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
15993         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
15994         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
15995         (gnus-group-make-articles-read):
15996         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
15997         (gnus-group-change-level, gnus-kill-newsgroup)
15998         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
15999         (gnus-get-unread-articles, gnus-make-articles-unread)
16000         (gnus-make-ascending-articles-unread): Use accessor
16001         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
16002         to get group information for improved readability.
16003
16004
16005 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
16006
16007         * gnus-art.el (article-decode-mime-words, article-babel)
16008         (gnus-article-highlight-signature, gnus-article-add-buttons)
16009         (gnus-signature-toggle): Use gnus-with-article-buffer.
16010
16011         * gnus-art.el (gnus-article-highlight-headers)
16012         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
16013
16014         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
16015         (gnus-article-set-globals, gnus-request-article-this-buffer)
16016         (gnus-button-message-id, gnus-article-maybe-hide-headers)
16017         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
16018         (gnus-mime-display-alternative): Use with-current-buffer.
16019
16020 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
16021
16022         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
16023         also under 80 char limit, and call gnus-error if needed.
16024         (spam-fetch-article-header): Fix - it was a
16025         buffer-local variable (gnus-newsgroup-data).
16026         (spam-find-spam): Use spam-generate-fake-headers, forget about
16027         spam-insert-fake-headers.
16028         (spam-insert-fake-headers): Remove.
16029
16030 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
16031
16032         * deuglify.el (gnus-article-outlook-unwrap-lines)
16033         (gnus-outlook-rearrange-article)
16034         (gnus-outlook-repair-attribution-outlook)
16035         (gnus-outlook-repair-attribution-block)
16036         (gnus-outlook-repair-attribution-other): Remove redundant
16037         save-excursion.
16038
16039 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
16040
16041         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
16042         (spam-fetch-field-subject-fast)
16043         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
16044         (spam-fetch-article-header): Add functions to deal with Gnus
16045         internals for fast retrieval of article header data.
16046         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
16047
16048 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
16049
16050         * pop3.el (pop3-md5): Remove.
16051         (pop3-apop): Replace pop3-md5 with md5.
16052
16053         * mm-bodies.el: base64 is always built-in.
16054
16055         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use
16056         with-current-buffer.
16057
16058 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
16059
16060         * canlock.el (canlock-insert-header): Remove excessive grouping in
16061         regexp.
16062
16063         * gnus-sum.el (gnus-summary-read-document): Ditto.
16064
16065         * gnus-uu.el (gnus-uu-part-number): Ditto.
16066
16067         * html2text.el (html2text-remove-tags): Ditto.
16068         (html2text-format-tags): Ditto.
16069         (html2text-format-single-elements): Ditto.
16070
16071         * mml.el (mml-parse-1): Ditto.
16072
16073 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
16074
16075         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
16076
16077         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
16078
16079         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
16080
16081         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
16082
16083 2003-11-15  Simon Josefsson  <jas@extundo.com>
16084
16085         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
16086         (pgg-gpg-lookup-key): Use regexp match instead of
16087         split-string (split-string is different between emacs 21.2 and
16088         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
16089
16090 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
16091
16092         * gnus-art.el (gnus-mime-view-all-parts)
16093         (gnus-article-part-wrapper, gnus-article-view-part): Use
16094         with-current-buffer.
16095
16096 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
16097
16098         * spam.el (spam-disable-spam-split-during-ham-respool)
16099         (spam-spamoracle-database, spam-cache-lookups)
16100         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
16101         (spam-group-ham-mark-p, spam-group-spam-mark-p)
16102         (spam-group-ham-marks, spam-group-spam-marks)
16103         (spam-group-spam-contents-p, spam-group-ham-contents-p)
16104         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
16105         also add spam-use-blackholes to the statistical checks.
16106         (spam-fetch-field-fast): Add interface to fetching fields, may
16107         become a macro.
16108         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
16109         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
16110         (spam-insert-fake-headers): Fake an article when needed.
16111         (spam-find-spam): Fake article when possible.
16112         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
16113         (spam-check-bogofilter-headers): Use message-fetch-field instead
16114         of nnmail-fetch-field.
16115
16116 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
16117
16118         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
16119
16120 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
16121
16122         * spam.el (spam-split): Do not require spam-use-CHECK to be
16123         enabled if that check is passed to spam-split explicitly; also
16124         fix so 'spam doesn't get converted to spam-split-group when
16125         spam-split-symbolic-return is t.
16126         (spam-find-spam): Find registrations of the article and use those
16127         instead of re-running spam-split to find the spam/ham
16128         classification of the article.
16129         (spam-log-processing-to-registry, spam-log-registered-p)
16130         (spam-log-unregistration-needed-p, spam-log-undo-registration):
16131         Use gnus-error instead of gnus-message.
16132         (spam-log-registration-type): Add function to determine the
16133         classification of a message based on registry entries; will
16134         return nil if both 'spam and 'ham are found.
16135         (spam-check-BBDB): Expand all the BBDB macros here so we can have
16136         a reasonably fast local cache without the loading errors.
16137         (spam-cache-lookups): Set to t by default.
16138         (spam-find-spam): Don't try to guess spam-cache-lookups.
16139         (spam-enter-whitelist, spam-enter-blacklist): Clear the
16140         spam-caches entry.
16141         (spam-filelist-build-cache, spam-filelist-check-cache): Fix
16142         caching of whitelist/blacklist entries.
16143         (spam-check-whitelist, spam-check-blacklist): Invoke
16144         spam-from-listed-p with a type, not a cache variable.
16145         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
16146
16147 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
16148
16149         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
16150
16151         * nnmail.el (nnmail-split-fancy): do.
16152
16153         * mml.el (mml-parse): do.
16154
16155         * gnus-score.el (gnus-enter-score-words-into-hashtb)
16156         (gnus-score-adaptive): do.
16157
16158 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16159
16160         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
16161         (gnus-mime-button-map): Don't set keymap parent.
16162         (gnus-button-ctan-directory-regexp): Use shy grouping.
16163         (gnus-prev-page-map): Don't set keymap parent.
16164         (gnus-prev-page-map): Remove duplicated one.
16165         (gnus-next-page-map): Don't set keymap parent.
16166         (gnus-mime-security-button-map): Ditto.
16167
16168         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
16169         version number.
16170
16171         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
16172
16173 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16174
16175         * canlock.el (canlock-sha1-function): Remove.
16176         (canlock-sha1-function-for-verify): Remove.
16177         (canlock-openssl-program): Remove.
16178         (canlock-openssl-args): Remove.
16179         (canlock-ignore-errors): Remove.
16180         (canlock-sha1-with-openssl): Remove.
16181         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
16182         (canlock-verify): Don't use canlock-ignore-errors.
16183
16184         * sha1-el.el (sha1-string-external): Make it can return a string
16185         in binary form.
16186         (sha1-region-external): Ditto.
16187         (sha1-string-internal): Ditto.
16188         (sha1-region-internal): Ditto.
16189         (sha1-region): Ditto.
16190         (sha1-string): Ditto.
16191         (sha1): Ditto.
16192
16193 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16194
16195         * spam.el (spam-report-articles-gmane): New command.
16196
16197 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16198
16199         * gnus.el: Don't make unnecessary *Group* buffer when loading.
16200
16201         * run-at-time.el (run-at-time-saved): Remove.
16202         (run-at-time): Doc fix.
16203
16204 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
16205
16206         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
16207         (gnus-summary-limit-map): Add it.
16208         (gnus-summary-make-menu-bar): do.
16209
16210 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
16211
16212         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
16213         Make attempt at some caching support (done for BBDB only now).
16214         (spam-find-spam): Set spam-cache-lookups if there are more than 2
16215         addresses to be checked.
16216         (spam-clear-cache-BBDB): Add function, to be invoked by
16217         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
16218         (spam-check-BBDB): Check and use the caches, if
16219         spam-cache-lookups is on, remove superfluous (provide).
16220
16221 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
16222
16223         * gnus-art.el (gnus-treat-ansi-sequences): Changed default.
16224
16225 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
16226
16227         * run-at-time.el (run-at-time-saved): Move to after the definition
16228         of `run-at-time'.
16229
16230         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
16231
16232 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16233
16234         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
16235         mm-w3m-local-map-property.
16236
16237         * mm-view.el (mm-w3m-mode-map): Remove.
16238         (mm-w3m-local-map-property): Remove.
16239         (mm-inline-text-html-render-with-w3m): Don't use
16240         mm-w3m-local-map-property.
16241
16242 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16243
16244         * run-at-time.el: New file.
16245
16246         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
16247         under Emacs.
16248
16249         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
16250         of gnus-set-text-properties.
16251
16252         * gnus-uu.el (gnus-uu-save-article): Ditto.
16253
16254         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
16255
16256         * gnus-cite.el (gnus-cite-parse): Ditto.
16257
16258         * gnus-art.el (gnus-button-push): Use set-text-properties instead
16259         of gnus-.
16260
16261         * gnus-xmas.el (run-at-time): Require run-at-time.
16262
16263         * gnus.el: Changed calls to nnheader-run-at-time and
16264         password-run-at-time throughout to use run-at-time directly.
16265
16266         * password.el: Removed definition of run-at-time.
16267
16268         * nnheaderxm.el: Remove definition of run-at-time.
16269
16270 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
16271
16272         * mml.el (mml-minibuffer-read-disposition): Show attachment type
16273         in prompt.
16274
16275 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16276
16277         * messagexmas.el (message-xmas-redefine): Alias
16278         `message-make-caesar-translation-table' to
16279         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
16280         version.
16281
16282         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
16283         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
16284         `gnus-xmas-set-text-properties'.
16285         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
16286         `gnus-xmas-completing-read'.
16287         (gnus-xmas-completing-read): Removed.
16288         (gnus-xmas-open-network-stream): Removed.
16289
16290         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
16291         XEmacs version.
16292
16293         * dns.el (dns-make-network-process): Use `open-network-stream'
16294         instead of `gnus-xmas-open-network-stream'.
16295
16296         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
16297
16298         * .cvsignore: Add auto-autoloads.el, custom-load.el.
16299
16300 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16301
16302         * gnus-art.el (gnus-mime-display-alternative)
16303         (gnus-insert-mime-button, gnus-insert-mime-security-button)
16304         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
16305         Don't use gnus-local-map-property.
16306
16307         * gnus-util.el (gnus-local-map-property): Remove.
16308
16309         * mm-view.el (mm-view-pkcs7-decrypt): Replace
16310         gnus-completing-read-maybe-default with completing-read.
16311
16312         * gnus-util.el (gnus-completing-read): do.
16313         (gnus-completing-read-maybe-default): Remove.
16314
16315 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16316
16317         * password.el: Only autoload `run-at-time' if not XEmacs.
16318         Only autoload the itimer functions if XEmacs.
16319
16320 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16321
16322         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
16323         XEmacsen.
16324
16325         * dgnushack.el: Autoload executable-find for XEmacs.
16326
16327 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16328
16329         * gnus-art.el (gnus-read-string): Remove.
16330         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
16331         read-string.
16332
16333 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
16334
16335         * netrc.el: Autoload password-read.
16336         (netrc): Add configuration group.
16337         (netrc-encoding-method, netrc-openssl-path): Add
16338         variables for encoding and decoding of files with symmetric
16339         ciphers.
16340         (netrc-encode): Add assistant function to encode a file with
16341         netrc-encoding-method.
16342         (netrc-parse): Add interactive parameter, added optional
16343         decoding if netrc-encoding-method is non-nil but otherwise
16344         behavior is standard.
16345         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
16346         Do s/encode/encrypt/ everywhere.
16347
16348         * spam.el: Remove executable-find autoload.
16349
16350 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16351
16352         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
16353
16354         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
16355
16356 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
16357
16358         * gnus-art.el (gnus-treat-ansi-sequences)
16359         (article-treat-ansi-sequences): New variable and function.
16360         Suggested by Dan Jacobson <jidanni@jidanni.org>.
16361
16362         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
16363         Use it.
16364
16365 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16366
16367         * mm-util.el (mm-quote-arg): Remove.
16368
16369         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
16370         shell-quote-argument.
16371
16372         * gnus-uu.el (gnus-uu-command): do.
16373
16374         * gnus-sum.el (gnus-summary-insert-pseudos): do.
16375
16376         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
16377         with make-char.
16378
16379         * mm-util.el (mm-make-char): Remove.
16380
16381         * mml.el (mml-mode): Replace gnus-add-minor-mode with
16382         add-minor-mode.
16383
16384         * gnus-undo.el (gnus-undo-mode): do.
16385
16386         * gnus-topic.el (gnus-topic-mode): do.
16387
16388         * gnus-sum.el (gnus-dead-summary-mode): do.
16389
16390         * gnus-start.el (gnus-slave-mode): do.
16391
16392         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
16393
16394         * gnus-ml.el (gnus-mailing-list-mode): do.
16395
16396         * gnus-gl.el (gnus-grouplens-mode): do.
16397
16398         * gnus-draft.el (gnus-draft-mode): do.
16399
16400         * gnus-dired.el (gnus-dired-mode): do.
16401
16402         * gnus-ems.el (gnus-add-minor-mode): Remove.
16403
16404         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16405         Replace gnus-char-width with char-width.
16406
16407         * gnus-ems.el (gnus-char-width): Remove.
16408
16409         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16410         Replace gnus-char-width with char-width.
16411
16412         * gnus-ems.el (gnus-char-width): Remove.
16413
16414         * spam-stat.el (with-syntax-table): Remove with-syntax-table
16415         definition.
16416         Remove Emacs 20 hash table compatibility code.
16417
16418         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
16419         20 compatibility code.
16420
16421         * spam.el (spam-point-at-eol): Replace with point-at-eol.
16422
16423         * smime.el (smime-point-at-eol): Replace with point-at-eol.
16424
16425         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol): Replace
16426         with point-at-{eol,bol}.
16427
16428         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
16429
16430         * imap.el (imap-point-at-eol): Replace with point-at-eol.
16431
16432         * flow-fill.el (fill-flowed-point-at-bol)
16433         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
16434
16435         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
16436         Replace with point-at-{eol,bol} throughout all files.
16437
16438 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16439
16440         * ntlm.el (ntlm-string-as-unibyte): New macro.
16441         (ntlm-build-auth-response): Use it.
16442
16443         Remove Emacs 20 stuff:
16444         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
16445         (butlast, mapc, remove): Remove the compiler macros.
16446         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
16447         of delq and copy-sequence.
16448         * gnus-art.el (popup-menu): Remove the compiler macro.
16449         * nnmail.el (nnmail-split-fancy): Don't support customizing with
16450         Emacs 20.
16451
16452 2004-01-05  Simon Josefsson  <jas@extundo.com>
16453
16454         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
16455         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
16456         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
16457         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
16458         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
16459         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
16460         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
16461         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
16462         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
16463         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
16464         ntlm-string-permute, string-lshift into ntlm-string-lshift,
16465         string-xor into ntlm-string-xor.  Suggested by
16466         Jesper Harder <harder@myrealbox.com>.
16467
16468         * ntlm.el: Don't include poem.
16469
16470         * md4.el (print-int32, print-string-hexa): Remove.  Suggested by
16471         Jesper Harder <harder@myrealbox.com>.
16472
16473         * sasl-ntlm.el, ntlm.el, md4.el: New files.
16474
16475         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
16476         probably breaks emacs with DL patch, but do we care? Is anyone
16477         still using the DL stuff?)
16478
16479         * sieve-manage.el: Use the password package.
16480         (sieve-manage-read-passwd): Remove.
16481         (sieve-manage-interactive-login): Use password.  Re-add
16482         condition-case around loop.
16483
16484         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
16485         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache): Use
16486         the password package.
16487
16488 2003-02-19  Simon Josefsson  <jas@extundo.com>
16489
16490         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
16491         token.
16492
16493 2002-08-07  Simon Josefsson  <jas@extundo.com>
16494
16495         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
16496         (sieve-manage-authenticators):
16497         (sieve-manage-authenticator-alist): Add some SASL mechs.
16498         (sieve-sasl-auth): New function.
16499         (sieve-manage-cram-md5-auth):
16500         (sieve-manage-plain-auth): Rewrite using SASL library.
16501         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
16502         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
16503         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
16504         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
16505
16506 2004-01-05  Simon Josefsson  <jas@extundo.com>
16507
16508         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
16509         New files.
16510
16511 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16512
16513         * gnus-group.el (gnus-no-groups-message): Update.
16514
16515         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
16516
16517 2003-11-09  Simon Josefsson  <jas@extundo.com>
16518
16519         * imap.el: Support for ID IMAP extension (RFC 2971).
16520         (imap-local-variables): Add imap-id.
16521         (imap-id): New variable.
16522         (imap-id): New function.
16523         (imap-parse-response): Parse untagged ID response.
16524         * nnimap.el (nnimap-id): New variable.
16525         (nnimap-open-connection): Use it.
16526
16527 2003-12-28  Simon Josefsson  <jas@extundo.com>
16528
16529         * gnus-score.el (gnus-score-edit-all-score): New.
16530         * gnus-group.el (gnus-group-score-map): Bind it to W e.
16531
16532 2004-01-04  Simon Josefsson  <jas@extundo.com>
16533
16534         * password.el: Add.
16535
16536 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
16537
16538         * dns.el (dns-query-types): Fix typo.
16539         (dns-query-types): New function.
16540         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
16541         PTR and SOA replies, see RFC 1035.
16542
16543 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16544
16545         * gnus.el (gnus-logo-color-style): Changed colors to `no'.
16546
16547         * Moved to Changelog.2.
16548
16549 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16550
16551         * gnus.el (gnus-version-number): Bump version.
16552
16553 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16554
16555         * gnus.el: No Gnus v0.1 is released.
16556
16557 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16558
16559         * gnus.el: No Gnus v0.0 is released.
16560
16561 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16562
16563         * gnus.el (gnus-version-number): Bump.
16564         (gnus-version): No.
16565
16566 See ChangeLog.2 for earlier changes.
16567
16568     Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
16569       Free Software Foundation, Inc.
16570
16571   This file is part of GNU Emacs.
16572
16573   GNU Emacs is free software: you can redistribute it and/or modify
16574   it under the terms of the GNU General Public License as published by
16575   the Free Software Foundation, either version 3 of the License, or
16576   (at your option) any later version.
16577
16578   GNU Emacs is distributed in the hope that it will be useful,
16579   but WITHOUT ANY WARRANTY; without even the implied warranty of
16580   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16581   GNU General Public License for more details.
16582
16583   You should have received a copy of the GNU General Public License
16584   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
16585
16586 ;; Local Variables:
16587 ;; coding: utf-8
16588 ;; fill-column: 79
16589 ;; add-log-time-zone-rule: t
16590 ;; End: