Hack to avoid adjusting marks for nnimap, which is seldom the right thing to do.
[gnus] / lisp / ChangeLog
1 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
4         marks for nnimap, which is seldom the right thing to do.
5
6         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
7         (gnus-same-method-different-name): New function.
8
9         * nnimap.el (parse-time): Require.
10
11         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
12         method in the presence of many similar methods.
13
14         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
15
16         * nnimap.el (nnimap-find-expired-articles): Don't refer to
17         nnml-inhibit-expiry.
18
19         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
20         find out whether methods are equal.
21
22         * nnimap.el (nnimap-find-expired-articles): New function.
23         (nnimap-process-expiry-targets): New function.
24         (nnimap-request-move-article): Request the article before looking at
25         what the Message-ID is.  Fix found by Andrew Cohen.
26         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
27
28         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
29         for oldness in addition to being a predicate.
30
31         * nnimap.el (nnimap-request-group): When we have zero articles, return
32         the right data to Gnus.
33         (nnimap-request-expire-articles): Only delete articles immediately if
34         the target is 'delete.
35
36         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
37         method, this would bug out.
38
39         * gnus-group.el (gnus-group-expunge-group): Renamed from
40         gnus-group-nnimap-expunge, and implemented as a normal interface
41         function.
42
43         * gnus-int.el (gnus-request-expunge-group): New function.
44
45         * nnimap.el (nnimap-request-create-group): Implement.
46         (nnimap-request-expunge-group): New function.
47
48 2010-09-21  Julien Danjou  <julien@danjou.info>
49
50         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
51         (gnus-html-cache-expired): Add new function.
52         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
53         wethever we should display image for fetch it.
54         Compute alt-text earlier to pass it to the fetching function too.
55         (gnus-html-schedule-image-fetching): Change function argument to only
56         get one image at a time, not a list.
57         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
58         cache.
59         (gnus-html-get-image-data): New function to retrieve image data from
60         cache.
61         (gnus-html-put-image): Change buffer argument to use image data rather
62         than file, and place image above region rather than inserting a new
63         one. Do not take alt-text as argument, since it's useless now: we place
64         the image above alt-text.
65         (gnus-html-prune-cache): Remove.
66         (gnus-html-show-images): Start to fetch image when we find one, do not
67         push into a temporary list.
68         (gnus-html-prefetch-images): Only fetch image if they have expired.
69         (gnus-html-browse-image): Fix, use 'gnus-image-url.
70         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
71
72 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
73
74         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
75
76 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
77
78         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
79         spec inser "*" if the group isn't active instead of 0.
80
81         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
82         opening the server.
83         (nnimap-request-delete-group): Implement group deletion.
84         (nnimap-transform-headers): Return the size of the entire message in
85         the Bytes header, not just the size of the first part.
86         (nnimap-request-move-article): When moving an article from nnimap,
87         request the article first so the accepting form has an article to
88         accept.  Reported by Dan Christensen.
89         (nnimap-command): Make sure that the error message doesn't error out.
90
91 2010-09-20  David Edmondson  <dme@dme.org>  (tiny change)
92
93         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
94         we haven't requested anything.
95
96 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
97
98         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
99         "".  Fix found by Andrew Cohen.
100
101         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
102         instead of -encode-string.
103
104 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
105
106         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
107
108         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
109         by mm-subst-char-in-string.
110
111 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
112
113         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
114         waiting for the connection string.
115
116         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
117         arriving.
118
119         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
120         bogus characters.  This allows selecting certain Gmail groups.
121
122         * nnimap.el (nnimap-find-wanted-parts-1): New function.
123         (nnimap-fetch-partial-articles): New variable.
124         (nnimap-open-connection): When looking for credentials, also use the
125         nnimap-server-port.
126         (nnimap-request-article): Return the group/article number, so that Gnus
127         `^' works as expected.
128         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants
129         them.
130
131         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
132         comments.
133         (gnus-methods-sloppily-equal): New function.
134         (gnus): When using the development version of Gnus, load the gnus-load
135         file.
136
137         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
138         `gnus-open-server' on each method before trying to scan them etc.  This
139         ensures that all the backend parameters are set correctly.
140
141         * nnimap.el (nnimap-authenticator): New variable.
142         (nnimap-open-connection): Allow anonymous login.
143         (nnimap-transform-headers): The chars header is called Chars not
144         Bytes.
145         (nnimap-wait-for-response): Don't infloop if the IMAP connection
146         drops.
147
148         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
149         patch, found by Knut Anders Hatlen.
150
151 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
152
153         * gnus-agent.el (gnus-agent-batch-confirmation)
154         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
155         to gnus-message.
156         * gnus-art.el (gnus-article-describe-briefly): Likewise.
157         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
158         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
159         * gnus-int.el (gnus-open-server): Likewise.
160         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
161         (gnus-score-check-syntax): Likewise.
162         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
163         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
164         Likewise.
165         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
166
167 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
168
169         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
170         calling conventions so that prefetch doesn't bug out.
171
172 2010-09-19  Julien Danjou  <julien@danjou.info>
173
174         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
175         rather than `subst-char-in-region' in order to be able to replace ASCII
176         char by UTF-8 ones.
177
178         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
179         than curl.
180         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
181         the right URL and ALT text on images.
182         (gnus-html-wash-tags): Fix tag case.
183         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
184         (gnus-article-html): Add -o display_ins_del=2 option.
185         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
186
187 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
188
189         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
190         the extra mail headers, which sometimes seem to happen for unknown
191         reasons.
192
193         * mail-parse.el (mail-header-encode-parameter): Define as
194         rfc2045-encode-string instead of as rfc2231-encode-string, since some
195         (or most, perhaps?) mail readers don't understand the latter, but do
196         understand the former.
197
198         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
199         to nil, so that no methods are automatically agentized.  I think this
200         is probably what most users want.
201
202         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
203         from url-retrieve, for instance about invalid URLs.
204
205         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
206         groups that have no articles.
207         (nnimap-request-article): Check that we really got an article when we
208         requested one.
209
210         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
211         doesn't exist.
212
213         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
214         nntp buffer so the agent can save it.
215         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
216         that CRLF doesn't get translated to \n.
217         (nnimap-open-connection): Don't make 'shell commands only send \n.
218
219 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
220
221         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
222         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
223         Update var name.
224         (nnml-generate-nov-file): Use dolist.
225         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
226         Use with-current-buffer.
227
228 2010-09-18  Julien Danjou  <julien@danjou.info>
229
230         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
231         parallel.
232
233 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
234
235         * nnimap.el (nnimap-update-info): When doing partial marks update, get
236         the range update right.
237         (nnimap-request-group): Don't make `M-g' bug out on group with no
238         marks.
239         (nnoo): Required, so that other packages can require nnimap.
240         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
241         command we're looking for.  This helps when the server sends more
242         responses after we've gotten everything we expected.
243         (nnimap): Add a `newlinep' field to keep track of end-of-line
244         conventions.
245         Don't send CRLF to things that don't want it.
246         (nnimap-request-accept-article): Ditto.
247
248 2010-09-18  Julien Danjou  <julien@danjou.info>
249
250         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
251         than curl to retrieve images.
252
253 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
254
255         * nnimap.el (nnimap-update-info): Extend the info so that we can set
256         the marks.
257         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
258         (nnimap-wait-for-connection): New function.
259         (nnimap-open-connection): If we have PREAUTH, don't query for login
260         credentials.
261         (nnimap-update-info): Fix off-by-one error when concatenating ranges
262         when doing a partial update.
263
264 2010-09-18  Julien Danjou  <julien@danjou.info>
265
266         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
267         tags.
268
269 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
270
271         * nnimap.el (nnimap-credentials): New function.
272         (nnimap-open-connection): Use the new function to look for credentials
273         also on the numeric equivalents of "imap" and "imaps".
274
275         * gnus-start.el (gnus-activate-group): Send the info to
276         gnus-request-group.
277
278         * nnimap.el (nnimap-request-group): Have the "check" version of the
279         function parse flags and update the info, so that a `M-g' get a total
280         resync of all flags from the group.
281
282         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
283         to allow backends to alter the info on group selection.  Also alter all
284         the backend -request-group functions to take the parameter.
285
286         * nnimap.el (nnimap-store-info): New function.
287         (nnimap-update-info): Store the info for later usage.
288         (nnimap-request-group): Use the stored info for the dont-check case, so
289         that we don't retrieve all marks when we enter a group.
290
291         * nnimap.el: Use deffoo instead of defun for interface functions.
292
293         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
294         update the group info.  This makes the nndraft groups, for instance, go
295         back to their old behaviour.
296
297         * gnus-sum.el (gnus-select-newsgroup): Indent.
298
299         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
300         in.
301         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
302         nothing.
303
304         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
305         from methods that are denied.
306
307         * gnus-int.el (gnus-method-denied-p): New function.
308
309         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
310         store the password instead of netrc.
311         (nnimap-open-connection): Don't error out when we can't make a
312         connections.
313
314         * auth-source.el (auth-source-create): In the password prompt, say what
315         we're querying for.  Also prompt for user name if that hasn't been
316         given.
317
318         * nnimap.el (nnimap-with-process-buffer): Removed.
319
320 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
321
322         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
323         method when we're reading from the agent.
324
325         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
326
327         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
328         that's probably most useful for users.
329
330         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
331         "failed" all the time.
332
333         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
334         ...)) with (with-current-buffer ... ).
335
336         * nntp.el (nntp-open-server): Return whether the open was successful or
337         not.
338
339         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
340         select an unread unseen article first.
341
342         * nnimap.el (nnimap-open-connection): If the user doesn't have a
343         /etc/services, supply some sensible port defaults.
344
345         * dgnushack.el: Define netrc-credentials.
346
347 2010-09-17  Julien Danjou  <julien@danjou.info>
348
349         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
350
351 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
352
353         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
354         doesn't have any parameters.
355
356 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
357
358         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
359         only upcased checks.
360
361         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
362
363         * nnimap.el (nnimap-open-shell-stream): New function.
364         (nnimap-open-connection): Use it.
365         (nnimap-transform-headers): Get the number of lines in each message.
366         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
367         number of lines.
368         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
369         problem.
370
371         * utf7.el (utf7-encode): Autoload.
372
373         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
374         to allow the mail splitting to not return a default group.  This is
375         useful for nnimap, which will leave unmatched mail in the inbox.
376
377         * nnimap.el: Rewritten.
378
379         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
380         nnimap usage.
381
382         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
383         if the move is internal, so that nnimap can do fast internal moves.
384
385         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
386         data.
387         (gnus-read-active-for-groups): Support finishing the early retrieval of
388         data.
389
390         * gnus-range.el (gnus-range-nconcat): New function.
391
392         * gnus-int.el (gnus-finish-retrieve-group-infos)
393         (gnus-retrieve-group-data-early): New functions.
394
395 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
396
397         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
398         (nnrss-retrieve-groups):
399         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
400         (pop3-quit): Use with-current-buffer.
401
402 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
403
404         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
405         instead of nnheader-accept-process-output.
406
407         * dgnushack.el (dgnushack-compile): Add comment.
408
409         * lpath.el: No need to fbind propertize for XEmacs 21.4.
410
411         * gnus-html.el (gnus-html-schedule-image-fetching)
412         (gnus-html-prefetch-images): Replace process-kill-without-query by
413         gnus-set-process-query-on-exit-flag.
414
415 2010-09-16  Romain Francoise  <romain@orebokech.com>
416
417         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
418
419 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
420
421         * gnus-registry.el (gnus-registry-install-shortcuts): The second
422         parameter to unintern is mandatory-ish in Emacs 24.
423
424         * gnus-html.el (gnus-html-schedule-image-fetching)
425         (gnus-html-prefetch-images): Check for curl before using it.
426
427         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
428         depend on curl, which isn't essential.
429
430         * imap.el: Revert back to version
431         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
432         seem problematic.
433
434 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
435
436         * gnus-registry.el (gnus-registry-install-shortcuts):
437         Explicitly pass `obarray' to `unintern' to avoid a warning.
438
439 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
440
441         * gnus-start.el (gnus-read-active-for-groups): Reverted the previous
442         change.
443
444         * nnrss.el (nnrss-request-list): Removed this function and related
445         functions, including the moreover stuff.
446
447 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
448
449         * nnrss.el (nnrss-retrieve-groups): New function.
450
451 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
452
453         * .dir-locals.el: Add no-byte-compile cookie.
454
455 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
456
457         * time-date.el (format-seconds): Comment fix.
458
459         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
460         for back end that doesn't support request-scan.
461
462 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
463
464         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
465         then do request scans from the backends.
466
467         * netrc.el (netrc-credentials): New conveniency function.
468
469         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
470         avoid running a hook per line, since this takes a lot of time,
471         profiling shows.
472         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
473         directly if gnus-visual-p is true.
474
475 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
476
477         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
478         groups; replace mapcar with dolist which is a bit faster; pass groups
479         info to gnus-read-active-file-1.
480         (gnus-read-active-file-1): Scan only specified groups if the new
481         optional arg `infos' is given.
482
483 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
484
485         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
486
487         * pop3.el (pop3-movemail): Removed.
488         (pop3-streaming-movemail): Renamed to pop3-movemail.
489
490         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
491         don't restrict end-tag searches to the end of the line.
492
493 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
494
495         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
496         articles of every unchecked group to t, which means unknown since the
497         server has never been opened.
498
499 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
500
501         * gnus-html.el (gnus-html-show-alt-text): New command.
502         (gnus-html-browse-image): Ditto.
503         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
504         to browse the image directly.
505         (gnus-html-wash-tags): Search for images first, so that <a><img> works
506         better.
507
508         * gnus-async.el (gnus-async-article-callback): Call
509         `gnus-html-prefetch-images' unconditionally.
510
511         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
512         before feeding URLs to curl.
513
514 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
515
516         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
517         internal images as deletable by `W D D'.
518
519         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
520         (gnus-async-article-callback): Fix typo.
521
522 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
523
524         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
525         current line to work around bugs in the output from w3m.
526
527         * gnus-async.el (gnus-async-article-callback): Always prefetch images
528         for groups that want that.
529
530         * nntp.el (nntp-wait-for-string): Supply a timeout for
531         accept-process-output to ensure progress.
532
533         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
534         level to get unread articles from, then use that for foreign groups,
535         too.
536
537         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
538         confuses the rest of the function.
539
540         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
541         for the methods that support -retrieve-groups, too.
542
543         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
544
545 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
546
547         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
548         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
549
550         * pop3.el: Require cl when compiling.
551         (pop3-number-of-responses): Search for "+OK", not "+OK ".
552
553 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
554
555         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
556         that aren't going to be activated.
557         (gnus-get-unread-articles): Fix up the last commit.
558
559         * gnus-html.el (gnus-article-html): Allow calling without specifying
560         the handle.  In that case, dissect the buffer first.
561
562         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
563
564         * nnimap.el (nnimap-open-connection): Revert the change that would look
565         into authinfo for imaps instead of imap.
566
567         * gnus-start.el (gnus-activate-group): Take an optional parameter to
568         say that you don't want to call gnus-request-group with don-check, but
569         do check the reponse.  This is for virtual groups only.
570         (gnus-get-unread-articles): Count the archive groups as secondary, so
571         that they're activated the same way as before.
572
573         * imap.el (imap-message-map): Removed optional buffer parameter, since
574         no callers use it.
575         (imap-message-get): Ditto.
576         (imap-message-put): Ditto.
577         (imap-mailbox-map): Ditto.
578         (imap-mailbox-put): Ditto.
579         (imap-mailbox-get): Ditto.
580         (imap-mailbox-get): Revert last change for this function.
581
582         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
583         case-insensitively.
584         (nnimap-debug): Removed.
585
586         * imap.el (imap-fetch-safe): Removed function, and altered all callers
587         to use `imap-fetch' instead.  According to the comments, this should be
588         safe, since all other IMAP clients use the 1:* syntax.
589         (imap-enable-exchange-bug-workaround): Removed.
590         (imap-debug): Removed -- doesn't seem very useful.
591
592         * mail-source.el (mail-source-fetch): Don't message if we're fetching
593         mail from a file, and the file doesn't exist.
594
595         * imap.el (imap-log): New convenience function used throughout instead
596         of repeating the same code all over the place.
597
598         * pop3.el (pop3-streaming-movemail): Return t for success.
599
600         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
601         .authinfo if we're using ssl connection.
602
603         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
604         already have if we're in a main Gnus `g' run.
605
606         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
607
608 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
609
610         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
611
612         * nnmh.el (nnmh-request-list-1): Bind `file'.
613
614         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
615         alias to set-process-query-on-exit-flag or process-kill-without-query.
616         (pop3-open-server): Use it.
617
618 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
619
620         * mail-source.el (mail-source-delete-crash-box): Always move the crash
621         box to the Incoming file.  Fixes mistake in previous checkin.
622
623         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
624         request loop (for debugging purposes) removed.
625
626         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
627         culprit is more visible.
628         (nnml-save-incremental-nov, nnml-open-incremental-nov)
629         (nnml-add-incremental-nov): New functions to do "incremental" nov
630         updates, where we just append to the end of the existing nov files
631         without reading/writing them in full.
632
633         * mail-source.el (mail-source-delete-crash-box): Really only check the
634         incoming files once in a while.
635
636         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
637
638         * mail-source.el (mail-source-delete-crash-box): Only check the
639         incoming files for deletion once per day to save a lot of file
640         accesses.
641
642         * pop3.el (pop3-logon): Fix up unbound variable typo.
643
644         * mail-source.el (pop3-streaming-movemail): Autoload.
645
646         * pop3.el (pop3-streaming-movemail): Respect
647         pop3-leave-mail-on-server.
648
649         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
650         retrieval.
651
652         * pop3.el (pop3-process-filter): Removed unused function.
653         (pop3-streaming-movemail, pop3-send-streaming-command)
654         (pop3-wait-for-messages, pop3-write-to-file)
655         (pop3-number-of-responses): New functions for streaming pop3
656         retrieval.
657
658         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
659         come from no known methods.
660         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
661         list.
662
663         * pop3.el (pop3-display-message-size-flag): Removed -- everybody wants
664         message sizes.
665         (pop3-movemail): Use erase-buffer instead of looping and deleting
666         regions, which seems rather odd.
667
668         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
669         file once per `g' run.
670
671         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
672         directories.  This makes the draft queue directory work.
673
674         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
675         data from the backends, so that we only request the list of groups from
676         each method once.  This should speed things up considerably.
677
678         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
679         detect that it's not implemented.
680
681         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
682         we actually do recurse down into the tree, but don't stat all leaf
683         nodes.
684
685         * gnus-html.el (gnus-html-show-images): If there are no images to show,
686         then say so instead of bugging out.
687
688         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
689         files exist before trying to read them.
690
691         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
692         around <pre_int>.
693
694         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
695
696         * nnmh.el (nnmh-request-list-1): Optimize for speed.
697
698 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
699
700         * mm-util.el (mm-image-load-path): Just return the image directories,
701         not all directories in the path in addition to the image directories.
702         (mm-image-load-path): Maintain a cache of the image directories so that
703         the `g' command in Gnus doesn't have to stat dozens of directories each
704         time.
705
706         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
707         (gnus-html-wash-tags): Add a new `i' command to insert images.
708         (gnus-html-insert-image): New command and keystroke.
709         (gnus-html-redisplay-with-images): New command and keystroke.
710         (gnus-html-show-images): Renamed command.
711         (gnus-html-wash-tags): Remove more white space before <pre_int> image
712         spacers.
713         (gnus-html-wash-tags): Decode entities at the end, so that entities
714         inside the tags don't mess up the rest of the "parsing".
715
716         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
717         so that nnimap methods aren't agentized by default.  There's apparently
718         many problems related to agent/imap behaviour.
719
720         * gnus-art.el (gnus-article-copy-string): New command and key binding.
721
722         * gnus-html.el: Doc fix.
723
724 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
725
726         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
727         specifier-spec-list for Emacs 21.
728
729         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
730         glyph-width and glyph-height instead of display-graphic-p and
731         image-size; make avoidance of displaying small images work for XEmacs.
732
733         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
734         for XEmacs.
735
736         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
737         of symbol that holds plist data.
738         (gnus-process-plist): Remove plist of process after getting it.
739
740 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
741
742         * message.el (message-generate-hashcash): Change default to
743         'opportunistic if hashcash is installed.
744
745         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
746         (gnus-html-put-image): Only call image-size once, since it's somewhat
747         time-consuming on remote X servers.
748
749 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
750
751         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
752         type on data, not a file name.
753
754         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
755         window-pixel-edges for Emacs 21.
756
757         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
758         decoded contents.
759         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
760
761 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
762
763         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
764         group line format, since it isn't very interesting.
765
766         * gnus-agent.el (gnus-agent-short-article),
767         (gnus-agent-long-article): Increase values for these two variables,
768         since most people are likely to have more network connection and
769         storage than before.
770
771         * gnus.el (gnus-refer-article-method): Change default to 'current.
772         When referring an article, the common behaviour is to refer it from the
773         current select method, not the native select method.  The chances of
774         the native select method having the message in question is rather slim
775         these days.
776
777         * gnus-sum.el (gnus-auto-select-subject): Change default to
778         `unseen-or-unread'.  I think it's likely that most people want to
779         select an unseen article over a previously seen, but unread one.
780
781         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
782         means that in the article buffer none of the minor mode elements will
783         be shown, usually, and this is not desirable in most cases.
784
785         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
786         that commands like `d' (and the like) go to the next line in the
787         buffer, instead of the next unread article.  I think this is the
788         behaviour that is most natural for most users.
789         (gnus-single-article-buffer): Change default to nil, so that people can
790         have as many article buffers open as they have summary buffer.  I think
791         this is the most natural way for the groups to behave.
792
793         * message.el (message-generate-new-buffers): Change default to
794         `unsent', so that all new message buffers start their names with the
795         string "*unsent", and it's easier to find the buffers if you move from
796         them.
797
798 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
799
800         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
801         small.  They're probably tracking images.
802         (gnus-html-wash-tags): Remove all <pre_int> place holders.
803         (gnus-html-rescale-image): Yet another try at getting the image sizing
804         right.
805
806         * nntp.el (nntp-request-set-mark): Refuse to do marks if
807         nntp-marks-file-name is nil.
808
809 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
810
811         * gnus-html.el (gnus-html-wash-tags)
812         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
813         Better logging.
814
815 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
816
817         * nndoc.el (nndoc-type-alist): Added a new type for Google digests.
818
819         * gnus-html.el (gnus-html-wash-tags): Check the value of
820         gnus-blocked-images in the summary buffer.
821
822 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
823
824         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
825
826 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
827
828         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
829         like "a", it seems like.
830         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
831         since it needs to be picked from the correct buffer.
832
833         * nnwfm.el: Removed.
834
835         * nnlistserv.el: Removed.
836
837 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
838
839         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
840         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
841
842 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
843
844         * nnkiboze.el: Removed.
845
846         * nndb.el: Removed.
847
848         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
849         alt text.
850         (gnus-html-rescale-image): Try to get the rescaling logic right for
851         images that are just wide and not tall.
852
853         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
854         overshadow variable bindings.
855
856 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
857
858         * gnus-html.el (gnus-html-wash-tags)
859         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images): Add
860         extra logging.
861
862 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
863
864         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
865         (gnus-max-image-proportion): New variable.
866         (gnus-html-rescale-image): New function.
867         (gnus-html-put-image): Rescale images.
868
869 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
870
871         Fix up some byte-compiler warnings.
872         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
873         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
874         (gnus-article-fill-cited-article, gnus-article-hide-citation)
875         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
876         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
877         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
878         (gnus-group-update-group): Use save-excursion and with-current-buffer.
879
880 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
881
882         * gnus-html.el (gnus-article-html): Decode contents by charset.
883
884 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
885
886         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
887         (gnus-html-frame-width, gnus-blocked-images)
888         * message.el (message-prune-recipient-rules): Add custom version.
889         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
890
891         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
892         functions.
893
894         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
895         gnus-process-get.
896
897 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
898
899         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
900         instead of lsub directly.
901
902 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
903
904         * nnwarchive.el: Removed.
905
906         * gnus-soup.el: Removed.
907
908         * nnsoup.el: Removed.
909
910         * nnultimate.el: Removed.
911
912         * gnus-html.el (gnus-blocked-images): New variable.
913
914         * message.el (message-prune-recipients): New function.
915         (message-prune-recipient-rules): New variable.
916
917         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
918         guess whether a long line is natural text or not.
919
920         * gnus-html.el (gnus-html-schedule-image-fetching): Use
921         gnus-process-plist and friends for compatibility.
922
923 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
924
925         * gnus-html.el: Require packages that define macros used in this file.
926         (gnus-article-mouse-face): Declare to silence byte-compiler.
927         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
928         process-get.
929         (gnus-html-put-image): Use plist-get to avoid getf.
930         (gnus-html-prefetch-images): Use with-current-buffer.
931
932 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
933
934         * gnus-ems.el: Provide compatibility functions for
935         gnus-set-process-plist.
936
937         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
938         header-line-format for XEmacs 21.4.
939
940         * gnus-sum.el (gnus-summary-stop-at-end-of-message)
941         * gnus.el (gnus-valid-select-methods)
942         * message.el (message-send-mail-partially-limit)
943         * mm-decode.el (mm-text-html-renderer)
944         * mml.el (mml-insert-mime-headers-always)
945         * smiley.el (smiley-regexp-alist): Bump custom version.
946
947 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
948
949         * gnus-html.el: require mm-url.
950         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
951         with the url to `url'.
952         (gnus-html-wash-tags): Support cid: URLs/images.
953
954 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
955
956         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
957         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
958         bindings, as they aren't useful at all.  `w' is moved to `W w'.
959
960         * gnus-move.el: Removed file, since it doesn't really work.
961
962         * gnus-html.el (gnus-article-html): Tell w3m that the input is
963         UTF-8.  This seems to fix problems with some German web feeds.
964
965         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
966         at the top so that the proper colours are applied.
967
968         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
969         don't have dots in their names.
970
971         * gnus-art.el (gnus-article-view-part): Doc fix.
972
973         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
974         XEmacs-compatible.
975         (gnus-html-put-image): Don't do images on non-graphic displays.
976
977         * nnslashdot.el: Removed this unused backend.
978
979         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
980         actions.
981         (gnus-undo-register-1): Revert last change.
982
983         * gnus-group.el (gnus-group-completing-read): Protect against not
984         having completion-styles bound.
985
986         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
987         make broken recipients happier.
988
989         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
990
991         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
992         point parameter.
993
994         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
995
996         * gnus-group.el (gnus-group-completing-read): Add 'substring to
997         completion-styles for group selection.
998
999 2009-02-04  Andreas Schwab  <schwab@suse.de>
1000
1001         * gnus-score.el (gnus-score-string): Fix regex for matching extra
1002         headers and regexp-quote the match if necessary.
1003
1004 2009-03-24  Miles Bader  <miles@gnu.org>
1005
1006         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
1007         the blinking smiley.
1008
1009 2009-03-24  Simon Josefsson  <simon@josefsson.org>
1010
1011         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
1012         blink smiley.
1013
1014 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1015
1016         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
1017         where the dribbel file lives exists.
1018
1019         * message.el (message-send-mail-partially-limit): Change the default to
1020         nil, since most people don't want this.
1021
1022         * mm-url.el (mm-url-decode-entities): Also decode entities like
1023         &#x3212.
1024
1025 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
1026
1027         * gnus-sum.el (gnus-summary-idna-message):
1028         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
1029         Hyperlink urls in docstrings with URL `...'.
1030
1031 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
1032
1033         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
1034         functions.
1035
1036 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1037
1038         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
1039         say what the mouseover text should be.
1040
1041         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
1042         version of the mm-w3m-safe-url-regexp variable to only download images
1043         in the groups where we want that to happen.
1044
1045         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
1046
1047         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
1048         easier debugging.
1049         (gnus-article-beginning-of-window): Add kludge to allow spacing past
1050         big pictures in the article buffer.
1051
1052         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
1053         gnus-article-html.
1054         (mm-text-html-renderer): gnus-article-html needs curl in addition to
1055         w3m.
1056
1057         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
1058
1059 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1060
1061         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
1062         which doesn't exist.
1063
1064         * message.el (message-inhibit-ecomplete): New variable to allow some
1065         function to inhibit ecomplete address storage.
1066         (message-resend): Disable ecomplete message storage when resending
1067         messages.
1068
1069         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
1070
1071 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1072
1073         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
1074         Save excursion while copying, moving, and deleting articles in order to
1075         prevent the cursor from jumping to unforeseen place.
1076
1077 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1078
1079         * lpath.el: No need to bind bookmark-current-buffer,
1080         bookmark-yank-point and bookmark-make-record-function.
1081
1082 2010-08-17  Glenn Morris  <rgm@gnu.org>
1083
1084         * gnus-sync.el: Require gnus components whose functions are used.
1085
1086         * gnus-art.el (bookmark-make-record-function):
1087         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
1088         Declare for compiler.
1089
1090         * mm-url.el (mml-compute-boundary): Autoload.
1091
1092 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1093
1094         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
1095
1096 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
1097
1098         Typo fix "hoo4a" -> "hook".
1099
1100         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
1101
1102 2010-08-14  Glenn Morris  <rgm@gnu.org>
1103
1104         * gnus-sync.el (gnus-sync): Fix defgroup version.
1105
1106 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
1107
1108         Doc fixes and keep unknown groups (ammended for nunion bug fix).
1109
1110         * gnus-sync.el: Fix docs.
1111         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
1112         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
1113
1114 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1115
1116         Optimizations for gnus-sync.el.
1117
1118         * gnus-sync.el: Add docs about gnus-sync-backend
1119         possibilities.
1120         (gnus-sync-save): Remove unnecessary message.
1121         (gnus-sync-read): Optimize and show what groups were skipped.
1122
1123 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1124
1125         Minor bug fixes for gnus-sync.el.
1126
1127         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks): Don't
1128         read the sync on get-new-news.
1129
1130         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
1131         quiet.
1132
1133         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets' (fix typo).
1134
1135 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
1136
1137         Make saving and restoring of hidden threads work with overlays.
1138         Patch applied by Ted Zlatanov.
1139
1140         * gnus-sum.el (gnus-hidden-threads-configuration)
1141         (gnus-restore-hidden-threads-configuration): Update to deal with text
1142         properties, rather than searching for a magic character.
1143
1144 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
1145
1146         New gnus-sync.el library for synchronization of marks.
1147
1148         * gnus-sync.el: New library for synchronization of marks.
1149
1150         * gnus-util.el (gnus-grep-in-list): Moved from gnus-registry.el and
1151         renamed from `gnus-registry-grep-in-list'.
1152
1153         * gnus-registry.el (gnus-registry-follow-group-p): Use `gnus-grep-in-list'.
1154
1155         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
1156
1157 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1158
1159         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
1160         determining charset of text fails.
1161
1162 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1163
1164         * nnmail.el (nnmail-get-new-mail-1): Revert.
1165
1166         * nnml.el (nnml-active-number): Make sure names of newly created groups
1167         in nnml-group-alist are encoded.
1168
1169 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1170
1171         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
1172         containing non-ASCII characters in active file for nnml back end.
1173
1174 2010-07-24  David Engster  <dengste@eml.cc>
1175
1176         * mml-smime.el (mml-smime-epg-verify): Also accept the older
1177         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
1178
1179 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
1180
1181         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
1182         tag (Bug#6654).
1183
1184 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1185
1186         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
1187         the article buffer, not the summary buffer.
1188
1189 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1190
1191         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
1192         Emacs 23 as well.
1193
1194 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1195
1196         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
1197         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
1198
1199 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1200
1201         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
1202         Patch applied by Karl Fogel.
1203
1204         * gnus-sum.el (gnus-summary-bookmark-make-record): Set
1205         `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
1206
1207 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1208
1209         Allow bookmarks to be set from Gnus Article buffers (Bug #5975).
1210         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
1211         C-w still not working correctly from Article buffers; Thierry's
1212         patch to fix that will be applied after this.
1213
1214         * gnus-art.el (bookmark-make-record-function): New local variable.
1215
1216         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
1217         article buffer.
1218         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
1219
1220 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
1221
1222         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
1223         on changes in bookmark.el.
1224
1225 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1226
1227         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
1228         `no-log' instead of message not to log prompt string.
1229
1230 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
1231
1232         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
1233         the *other* type of HTML form submission.
1234
1235 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
1236
1237         * auth-source.el (auth-source-pick): If choice does not contain a
1238         questioned keyword, set the check to t.
1239
1240 2010-06-12  Romain Francoise  <romain@orebokech.com>
1241
1242         * gnus-util.el (gnus-date-get-time): Move up before first use.
1243
1244 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1245
1246         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
1247         (gnus-article-edit-part): Bind it to make last part that is substituted
1248         or deleted visible.
1249         (gnus-mime-display-single): Buttonize part of which id equals to
1250         gnus-mime-buttonized-part-id.
1251
1252 2010-06-10  Dan Christensen  <jdc@uwo.ca>
1253
1254         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
1255         (gnus-dd-mmm): Use gnus-date-get-time.
1256         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
1257         simplify logic.
1258         (gnus-summary-limit-to-age): Use gnus-date-get-time.
1259         (gnus-sort-threads): emit message if gnus-sort-threads-loop used.
1260
1261 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
1262
1263         * auth-source.el (top): Autoload `secrets-list-collections',
1264         `secrets-create-item', `secrets-delete-item'.
1265         (auth-sources): Fix tag string.
1266         (auth-get-source, auth-source-retrieve, auth-source-create)
1267         (auth-source-delete): New defuns.
1268         (auth-source-pick): Rewrite in order to avoid 2 passes.
1269         (auth-source-forget-user-or-password): New parameter USERNAME.
1270         (auth-source-user-or-password): New parameters CREATE-MISSING and
1271         DELETE-EXISTING.  Retrieve password interactively, if needed.
1272
1273 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
1274
1275         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
1276         deleting unused directories when gnus-expert-user is t.
1277
1278 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1279
1280         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
1281         for each temp file when gnus-article-browse-delete-temp is ask.
1282
1283 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1284
1285         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el: Replace
1286         Lisp calls to delete-backward-char by calls to delete-char.
1287
1288 2010-05-20  Kevin Ryde  <user42@zip.com.au>
1289
1290         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
1291
1292 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
1293
1294         * password-cache.el (password-cache-remove): Fix docstring.
1295
1296 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1297
1298         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
1299         article unless decoding article to be saved.
1300
1301 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1302
1303         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt)
1304         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
1305         generated within the mm-with-unibyte-current-buffer macro.
1306
1307 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1308
1309         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
1310         to nil when we're in a mml-preview buffer and no group is selected.
1311
1312 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
1313
1314         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
1315         when catching the `C-g'.  Reported by "Leo".
1316
1317 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1318
1319         * message.el (message-forward-make-body-plain)
1320         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
1321         multibyte-string-p.
1322
1323         * lpath.el: Revert.
1324
1325 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1326
1327         * message.el (message-forward-make-body-mml): Assume original message
1328         is multibyte string; error on unibyte.
1329         (message-forward-make-body-plain): Ditto; don't add excessive newline
1330         in body end.
1331
1332         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
1333
1334 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
1335
1336         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
1337         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
1338
1339 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1340
1341         * mm-extern.el (mm-extern-url): Don't use
1342         mm-with-unibyte-current-buffer.
1343         (mm-extern-cache-contents): Use with-current-buffer instead of
1344         save-excursion + set-buffer.
1345
1346 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1347
1348         * mm-util.el (mm-emacs-mule): Remove.
1349
1350 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
1351
1352         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
1353         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
1354         change.
1355
1356 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1357
1358         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
1359         bind the default value of enable-multibyte-characters to nil.
1360
1361 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1362
1363         * message.el (message-forward-make-body-plain)
1364         (message-forward-make-body-mml):
1365         Don't use mm-with-unibyte-current-buffer.
1366
1367 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1368
1369         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
1370
1371 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
1372
1373         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
1374         (Bug#5592).
1375
1376 2010-05-07  Julien Danjou  <julien@danjou.info>
1377
1378         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
1379         it to mm-pipe-part.
1380
1381         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
1382         it is given.
1383
1384 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1385
1386         * binhex.el (binhex-decode-region-internal)
1387         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type)
1388         (dns-query)
1389         * nnweb.el (nnweb-gmane-search)
1390         * pgg-parse.el (pgg-parse-armor)
1391         * pgg.el (pgg-verify-region)
1392         * sha1.el (sha1-string-external)
1393         * uudecode.el (uudecode-decode-region-internal)
1394         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
1395         XEmacs.
1396
1397         * gnus-art.el (gnus-article-browse-html-parts)
1398         * gnus-group.el (gnus-read-ephemeral-gmane-group)
1399         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
1400         make-temp-file.
1401
1402         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
1403         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
1404         compiling.
1405
1406         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
1407         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
1408         XEmacs when compiling.
1409
1410         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
1411         gnus-pick-mode-off-hook for XEmacs when compiling.
1412         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
1413         gnus-binary-mode-off-hook for XEmacs when compiling.
1414
1415         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate): Return
1416         nil if char-charset is not available.
1417
1418         * imap.el (imap-disable-multibyte)
1419         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
1420         macros.
1421
1422         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
1423         instead of encode-coding-string.
1424
1425         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
1426         'xemacs) instead of mm-emacs-mule to switch function definitions.
1427         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
1428
1429         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
1430         bind temporary-file-directory for XEmacs;
1431         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
1432         timer-set-function for XEmacs 21.4 and SXEmacs;
1433         bind timer-list for XEmacs 21.4 and SXEmacs;
1434         fbind char-charset and find-charset-region for non-Mule XEmacs;
1435         fbind decode-coding-region, decode-coding-string, detect-coding-region,
1436         encode-coding-region and encode-coding-string for XEmacs having no
1437         file-coding feature.
1438
1439 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
1440
1441         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
1442
1443 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1444
1445         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
1446         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
1447
1448 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
1449
1450         * mm-util.el (mm-decompress-buffer): Use `delete-file';
1451         alias `jka-compr-delete-temp-file' no longer exists.
1452
1453 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1454
1455         Use define-minor-mode in Gnus where applicable.
1456         * mml.el (mml-mode): Use define-minor-mode.
1457         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
1458         (gnus-undo-mode): Use define-minor-mode.
1459         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
1460         (gnus-dead-summary-mode): Use define-minor-mode.
1461         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
1462         Initialize in declaration.
1463         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
1464         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
1465         (gnus-mailing-list-mode): Use define-minor-mode.
1466         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
1467         (gnus-draft-mode): Use define-minor-mode.
1468         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
1469         (gnus-dired-mode): Use define-minor-mode.
1470
1471 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
1472
1473         * mml.el (mml-generate-mime-1,mml-compute-boundary-1): Update 'mml
1474         handles on recursive mml-to-mime translation and check them for
1475         boundary delimiter collisions.  Reported by Greg Troxel.
1476
1477 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1478
1479         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
1480
1481 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1482
1483         * mm-util.el (mm-find-buffer-file-coding-system):
1484         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
1485
1486 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
1487
1488         * message.el (message-generate-headers): Record insertion of optional
1489         headers as well.  Otherwise the check to prevent repeated insertion of
1490         optional headers is a no-op.
1491
1492 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
1493
1494         * smime.el: Don't mention CVS.
1495
1496         * nnrss.el (nnrss-fetch): Don't mention CVS.
1497
1498         * nnir.el: Don't mention CVS.
1499
1500 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1501
1502         * gnus-sum.el (gnus-summary-bookmark-make-record): Add `location' field.
1503
1504 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1505
1506         * lpath.el: Fbind bookmark-default-handler,
1507         bookmark-get-bookmark-record, bookmark-make-record-default,
1508         bookmark-prop-get for Emacs <23 and XEmacs.
1509
1510 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1511
1512         * gnus-sum.el: Add bookmark declarations to silence the compiler.
1513         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
1514         Use with-current-buffer to silence the byte-compiler.
1515         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
1516         bother to require `gnus'.
1517         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
1518
1519 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1520
1521         * gnus-sum.el (gnus-summary-bookmark-make-record)
1522         (gnus-summary-bookmark-jump): New functions.
1523         (gnus-summary-mode): Setup bookmark support.
1524
1525 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
1526
1527         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
1528         if set.
1529
1530 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
1531
1532         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
1533         gnus-article-browse-html-save-cid-image; make it work recursively for
1534         forwarded messages as well.
1535         (gnus-article-browse-html-parts): Work when prefix arg is given.
1536         (gnus-article-browse-html-article): Doc fix.
1537
1538 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
1539
1540         * message.el (message-default-mail-headers):
1541         (message-default-headers): Carry the value mail-default-headers over
1542         into message-default-mail-headers, rather than message-default-headers.
1543
1544 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
1545
1546         * mm-decode.el (mm-add-meta-html-tag): Added option to override the
1547         charset.
1548
1549         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
1550         charset into the <meta> tag when the article is encoded to utf-8.
1551
1552 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1553
1554         * gnus-art.el (gnus-article-browse-delete-temp-files): Delete
1555         directories as well.
1556         (gnus-article-browse-html-parts): Work for images that do not specify
1557         file names; delete temp directory when quitting; insert header at the
1558         right place; use file: scheme for image files.
1559
1560 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
1561
1562         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
1563         (gnus-article-browse-html-parts): Use it to make temporary cid image
1564         files in addition to html file so that browser may display them.
1565
1566 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
1567
1568         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
1569
1570 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
1571
1572         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
1573
1574 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
1575
1576         * auth-source.el (auth-sources): Change default to be simpler.  Explain
1577         about Secret Service API sources.  Improve Customize options.
1578         (auth-source-pick): Change to accept any number of search parameters.
1579         Implement fallbacks iteratively, not recursively.  Add scoring on the
1580         second pass and sort by score.  Call Secret Service API when needed.
1581         (auth-source-user-or-password): Use it.  Call Secret Service API
1582         directly when needed to get the user name and the password.
1583
1584 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
1585
1586         * message.el (message-interactive): Doc fix.
1587         (message-qmail-inject-args): Reflow.
1588         (message-kill-to-signature): Fix typo in docstring.
1589
1590         * smiley.el (smiley-buffer): Fix typo in docstring.
1591
1592 2010-03-24  Glenn Morris  <rgm@gnu.org>
1593
1594         * mail-source.el (gnus-message): Declare.
1595         (mail-source-delete-old-incoming): Require gnus-util.
1596
1597 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1598
1599         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
1600
1601         * message.el (ecomplete-setup): Autoload it for Emacs <23.
1602
1603         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
1604         password-cache's default if it is not bound.
1605         (mml-secure-passphrase-cache-expiry): Default to 16 that is
1606         password-cache-expiry's default if it is not bound.
1607
1608         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
1609         available in Emacs 21.
1610
1611         * lpath.el: Suppress compiler warnings for:
1612         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
1613         XEmacs;
1614         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
1615         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
1616         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
1617
1618 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
1619
1620         * auth-source.el (auth-sources): Fix up definition so extra parameters
1621         are always inline.
1622
1623 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
1624
1625         * nnimap.el (nnimap-verify-uidvalidity): Fixed bug where uidvalidity
1626         wasn't updated after mismatch.  Clear cached mailbox info correctly
1627         when uidvalidity changes.
1628         (nnimap-group-prefixed-name): New function to avoid some code
1629         duplication.
1630         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
1631         (nnimap-request-group): Use it.
1632         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
1633         (nnimap-update-unseen): Significantly improved speed of Gnus startup
1634         with many imap folders.  This is done by caching the group status from
1635         the imap server persistently in a group parameter `imap-status'.  (This
1636         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
1637         but not persistently, so every Gnus startup was still very slow.)
1638
1639 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
1640
1641         * assistant.el (assistant-render-text): Run `widget-setup' and don't
1642         delete the extra newline.  Otherwise editing of :string and :number
1643         types don't work.
1644
1645 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1646
1647         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
1648         secrets.el dependency.
1649         (auth-sources): Add optional user name.  Add secrets.el configuration
1650         choice (unused right now).
1651
1652 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
1653
1654         * gnus-sum.el (gnus-summary-make-menu-bar): Let
1655         `gnus-registry-install-shortcuts' fill in the functions.
1656
1657         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
1658         warnings.
1659         (gnus-registry-misc-menus): Variable to hold registry mark menus.
1660         (gnus-registry-install-shortcuts): Populate and use it in a
1661         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
1662
1663 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
1664
1665         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
1666         In-place substitutions for the group name encoding/decoding.
1667         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
1668         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
1669         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
1670         (nnimap-update-unseen, nnimap-request-list)
1671         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
1672         (nnimap-request-set-mark, nnimap-split-to-groups)
1673         (nnimap-split-articles, nnimap-request-newgroups)
1674         (nnimap-request-create-group, nnimap-request-accept-article)
1675         (nnimap-request-delete-group, nnimap-request-rename-group)
1676         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
1677         `encoded-mbx' for consistency.
1678         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
1679         variable `imap-current-mailbox'.
1680
1681         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
1682         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
1683
1684 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
1685
1686         * pop3.el (pop3-display-message-size-flag): Display message size byte
1687         counts during POP3 download.
1688         (pop3-movemail): Use it.
1689         (pop3-list): Implement listing of available messages.
1690
1691 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
1692
1693         * nnir.el (nnir-get-article-nov-override-function): New function to
1694         override the normal NOV retrieval.
1695         (nnir-retrieve-headers): Use it.
1696
1697 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
1698
1699         * auth-source.el (netrc-machine-user-or-password): Autoload.
1700
1701 2010-03-19  Glenn Morris  <rgm@gnu.org>
1702
1703         Stop message.el from loading about 40 libraries it doesn't always need.
1704         The general approach is to autoload rather than require, and to
1705         require in the specific functions rather than the file.  (Bug#5642)
1706
1707         * gmm-utils.el: Don't require wid-edit.
1708         (widget-create-child-value, widget-convert, widget-default-get):
1709         Autoload.
1710
1711         * gnus-util.el: Don't require time-date, netrc.
1712         (message-fetch-field, gnus-group-name-decode): Declare rather than
1713         autoloading.
1714         (gnus-fetch-field): Require message.
1715         (gnus-decode-newsgroups): Require gnus-group.
1716
1717         * ietf-drums.el: Don't require time-date.
1718
1719         * message.el: Don't require hashcash, canlock, ecomplete.
1720         Do require mail-utils.  Require nnheader only when compiling.
1721         (smtpmail-default-smtp-server): Remove declaration.
1722         (message-send-mail-function): Check smtpmail-default-smtp-server
1723         is bound rather than requiring smtpmail.
1724         (message-auto-save-directory, message-insert-signature): Use
1725         expand-file-name rather than nnheader-concat.
1726         (nnheader-insert-file-contents): Autoload.
1727         (hashcash-wait-async): Declare.
1728         (message-send-mail): Only call gnus-setup-posting-charset if
1729         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
1730         (message-send-mail-with-sendmail): Require sendmail.
1731         (canlock-password, canlock-password-for-verify): Declare.
1732         (message-canlock-password): Require canlock.
1733         (nnheader-get-report): Autoload.
1734         (gnus-setup-posting-charset): Declare.
1735         (message-send-news): Require gnus-msg.
1736         (message-make-references, message-make-in-reply-to): Use mail-header-id
1737         rather than the alias mail-header-message-id.
1738         (ecomplete-add-item, ecomplete-save): Declare.
1739         (message-put-addresses-in-ecomplete): Require ecomplete.
1740         (ecomplete-display-matches): Autoload.
1741
1742         * mm-decode.el: Don't require mailcap, gnus-util.
1743         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
1744         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
1745         Autoload.
1746         (mailcap-mime-extensions): Declare.
1747
1748         * mm-encode.el: Don't require mailcap.
1749         (mailcap-extension-to-mime): Autoload.
1750
1751         * mml-sec.el: Don't require password-cache.
1752
1753         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
1754         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
1755         (mml-minibuffer-read-type): Require mailcap.
1756         (mml-preview): Require gnus-msg.
1757
1758         * mml1991.el: Require password-cache.
1759         (password-cache-expiry): Remove declaration.
1760
1761         * mml2015.el: Require password-cache.
1762         (password-cache-expiry): Remove declaration.
1763
1764         * nneething.el (mailcap): Require mailcap.
1765
1766         * nnheader.el (declare-function): Add compatibility stub.
1767         (message-remove-header): Declare rather than autoload.
1768         (nnheader-replace-header): Require message.
1769
1770         * nnimap.el (declare-function): Add compatibility stub.
1771         (netrc-parse, netrc-machine-user-or-password): Declare.
1772         (nnimap-open-connection): Require netrc.
1773
1774         * nntp.el (declare-function): Add compatibility stub.
1775         (netrc-parse, netrc-machine, netrc-get): Declare.
1776         (nntp-send-authinfo): Require netrc.
1777
1778         * rfc2047.el: Don't require qp.
1779         (quoted-printable-encode-region, quoted-printable-decode-string):
1780         Autoload.
1781
1782         * sieve-mode.el: Don't require easymenu.
1783         (easy-menu-add-item): Autoload it.
1784
1785         * spam-stat.el (time-to-number-of-days): Autoload it.
1786
1787 2010-03-19  Glenn Morris  <rgm@gnu.org>
1788
1789         * password-cache.el (password-cache, password-cache-expiry): Autoload.
1790
1791 2010-03-18  Glenn Morris  <rgm@gnu.org>
1792
1793         * hashcash.el (declare-function): Remove duplicate definition.
1794
1795 2010-03-17  Kevin Ryde  <user42@zip.com.au>
1796
1797         * mml.el (mml-read-tag): Unquote values with `read' to reverse
1798         prin1 in mml-insert-tag (just stripping the quotes gave wrong
1799         value if any backslash escapes).
1800
1801 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1802
1803         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
1804         if it is available.  (bug#5647)
1805
1806         * lpath.el: Suppress compiler warning for coding-system-from-name for
1807         Emacs 21 and XEmacs.
1808
1809 2010-03-14  Juri Linkov  <juri@jurta.org>
1810
1811         * hmac-def.el:
1812         * hmac-md5.el:
1813         * netrc.el: Fix keywords.
1814
1815 2010-02-26  Glenn Morris  <rgm@gnu.org>
1816
1817         * message.el (message-send-mail-function): Change the default, so that
1818         it inherits from a customized send-mail-function.  (Bug#5643)
1819
1820 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1821
1822         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
1823         shell-command-to-string signals an error (bug#5299).
1824
1825 2010-02-24  Glenn Morris  <rgm@gnu.org>
1826
1827         * message.el (message-smtpmail-send-it)
1828         (message-send-mail-with-mailclient): Doc fixes.
1829
1830 2010-02-16  Glenn Morris  <rgm@gnu.org>
1831
1832         * message.el (message-default-mail-headers): Change the default value
1833         to ease the transition from mail-mode to message-mode.  (Bug#5555)
1834
1835 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1836
1837         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
1838         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
1839
1840 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
1841
1842         * time-date.el (date-to-time): Doc fix (Bug#5408).
1843
1844 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
1845
1846         * message.el (message-mail): Just pass yank-action on to message-setup.
1847         (message-setup): Handle (FUN . ARGS) form of yank-action.
1848         (message-with-reply-buffer, message-widen-reply)
1849         (message-yank-original): Handle non-buffer values of
1850         message-reply-buffer (Bug#4080).
1851         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
1852
1853 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
1854
1855         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
1856         Fix typo in docstring.
1857
1858 2010-01-08  Jason Rumney  <jasonr@gnu.org>
1859
1860         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
1861         response.
1862
1863 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1864
1865         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
1866
1867         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
1868
1869         * message.el (message-check-news-header-syntax): Protect against a
1870         string that `rfc822-addresses' returns when parsing fails.
1871
1872 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1873
1874         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
1875         (gnus-previous-char-property-change): New functions.
1876
1877         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
1878
1879 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
1880
1881         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
1882         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
1883
1884 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
1885
1886         * message.el (message-exchange-point-and-mark): Rework last change to
1887         avoid using optional arg of exchange-point-and-mark, for backward
1888         compatibility.
1889
1890 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
1891
1892         * message.el (message-exchange-point-and-mark): Call
1893         exchange-point-and-mark with an argument rather than setting
1894         mark-active by hand (Bug#5175).
1895
1896 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1897
1898         * nntp.el (nntp-service-to-port): Work for service expressed with
1899         numeric string; replace [:digit:] with [0-9] for XEmacs.
1900
1901 2009-12-17  Glenn Morris  <rgm@gnu.org>
1902
1903         * gnus-group.el (gnus-bug-group-download-format-alist):
1904         Change emacs entry to debbugs.gnu.org.  Bump :version.
1905
1906 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
1907
1908         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
1909
1910 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
1911
1912         * message.el (message-info): Explain why we use `Info-goto-node'.
1913
1914 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1915
1916         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
1917
1918 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1919
1920         * message.el (message-completion-in-region): New compatibility function.
1921         (message-expand-group): Use it.
1922
1923 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1924
1925         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
1926         with no unread article should be listed if the 2nd arg `predicate' is
1927         given.
1928
1929 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1930
1931         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
1932
1933 2009-11-29  Juri Linkov  <juri@jurta.org>
1934
1935         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
1936         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
1937         on `gnus-recenter'. (Bug#4698, Bug#4981)
1938
1939 2009-11-26  Kevin Ryde  <user42@zip.com.au>
1940
1941         * sha1.el (sha1-string-external): default-directory "/" in case
1942         otherwise non-existent.  process-connection-type pipe for touch of
1943         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
1944
1945 2009-11-25  Kevin Ryde  <user42@zip.com.au>
1946
1947         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
1948         it's comms related and sgml-mode.el has "comm" on that basis too.
1949
1950 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1951
1952         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
1953         containing tspecial characters if they have been already quoted.
1954
1955 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
1956
1957         * dns-mode.el (auto-mode-alist): Purecopy string.
1958
1959 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1960
1961         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
1962
1963 2009-10-24  Glenn Morris  <rgm@gnu.org>
1964
1965         * gnus-art.el (help-xref-stack-item): Define for compiler.
1966
1967 2009-10-21  Kevin Ryde  <user42@zip.com.au>
1968
1969         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
1970
1971 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1972
1973         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
1974
1975 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1976
1977         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
1978         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
1979
1980 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1981
1982         * gnus.el (gnus-overlay-get): New alias to overlay-get.
1983         (gnus-overlays-in): New alias to overlays-in.
1984
1985         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
1986         gnus-overlay-get, and gnus-delete-overlay.
1987         (gnus-summary-show-thread): Make it work as well for systems in which
1988         next-single-char-property-change is not available.
1989         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
1990
1991         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
1992         (gnus-overlay-get): New alias to extent-property.
1993         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
1994
1995         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
1996         SXEmacs.
1997
1998         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
1999         SXEmacs.
2000
2001 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
2002
2003         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
2004
2005 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
2006
2007         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
2008         and XEmacs that don't have `remove-overlays'.
2009
2010 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2011
2012         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
2013         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
2014         selective display.  Use overlays instead.
2015
2016 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
2017
2018         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
2019
2020 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
2021
2022         * spam-stat.el (spam-stat-load): Fix typo in message.
2023
2024 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
2025
2026         * dig.el (dig-invoke): Fix typo in docstring.
2027         (query-dig): Reflow docstring.
2028
2029 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
2030
2031         * gnus-art.el (gnus-article-encrypt-body):
2032         * message.el (message-check-recipients):
2033         * mm-util.el (mm-codepage-setup):
2034         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
2035         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
2036
2037 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
2038
2039         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
2040         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
2041         keys from the menu if mm-{sign,encrypt}-option is 'guided.
2042         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
2043         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
2044
2045 2009-09-21  Kevin Ryde  <user42@zip.com.au>
2046
2047         * dig.el: Add "Keywords: comm", as per net-utils.el.
2048
2049 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2050
2051         * dig.el (dig-mode): Use define-derived-mode.
2052
2053 2009-09-19  Glenn Morris  <rgm@gnu.org>
2054
2055         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
2056
2057 2009-09-18  Glenn Morris  <rgm@gnu.org>
2058
2059         * gnus-diary.el (gnus-diary-check-message):
2060         * message.el (message-insert-formatted-citation-line):
2061         * nnbabyl.el (top-level):
2062         * nndiary.el (nndiary-schedule):
2063         Fix typos in condition-case handlers.
2064
2065 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2066
2067         * gnus-art.el (gnus-article-edit-part): Work for the buffer
2068         configuration that provides the sole article window in a frame;
2069         position point correctly after deleting a part.
2070
2071 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
2072
2073         * spam.el (spam-unregister-on-reregister): Add boolean variable.
2074         (spam-resolve-registrations-routine): Use it to unregister articles
2075         that change status.
2076
2077 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2078
2079         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
2080         with XEmacs.
2081         (parse-time-string-chars): Use it.
2082
2083 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
2084
2085         * imap.el (imap-interactive-login): Better messages.
2086         (imap-open): Fix bug with renamed buffer on reconnect.
2087         (imap-authenticate): Add buffer-local imap-last-authenticator variable
2088         for easier debugging and cleaner code.  On successful (guessed based on
2089         server capabilities) secondary authentication, set imap-state
2090         correctly.
2091         (imap-last-authenticator): Define imap-last-authenticator as a variable
2092         to avoid warnings.
2093
2094 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2095
2096         * nnrss.el (nnrss-request-article): Remove binding of
2097         default-enable-multibyte-characters that has gotten needless by
2098         the 2007-07-13 change in rfc2047-encode-message-header.
2099
2100         * mml.el (mml-insert-multipart): Error on the message header.
2101         (mml-insert-part): Error on the message header; position point at
2102         the end of a MIME tag.
2103
2104 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2105
2106         * time-date.el (autoload): Expand define-obsolete-function-alias into
2107         defalias and make-obsolete for old Emacsen that Gnus supports.
2108         (with-no-warnings): Define it for old Emacsen.
2109         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
2110         is available.
2111         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
2112         float-time is available; suppress compile warning for time-to-seconds.
2113
2114         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
2115         (gnus-float-time): Alias to float-time if it exists.
2116
2117         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
2118         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
2119         float-time is available; suppress compile warning for time-to-seconds.
2120
2121         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
2122         XEmacs.
2123
2124 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
2125
2126         * imap.el (imap-message-map): Docstring fix.
2127
2128 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2129
2130         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
2131         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
2132         Add the optional argument `encoding' that overrides the default.
2133
2134         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
2135         mm-encode-buffer.
2136
2137 2009-09-04  Glenn Morris  <rgm@gnu.org>
2138
2139         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
2140         mm-disable-multibyte, rather than default-enable-multibyte-characters.
2141         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
2142         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
2143         * mm-util.el (mm-with-unibyte-current-buffer)
2144         (mm-find-buffer-file-coding-system):
2145         * yenc.el (yenc-decode-region): Use default-value rather than
2146         default-enable-multibyte-characters.
2147
2148 2009-09-03  Glenn Morris  <rgm@gnu.org>
2149
2150         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
2151         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
2152         than default-enable-multibyte-characters.
2153
2154 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
2155
2156         * gnus-art.el (gnus-article-read-summary-keys):
2157         Fix gnus-buffer-configuration's value temporarily used.
2158
2159 2009-09-02  Glenn Morris  <rgm@gnu.org>
2160
2161         * gnus-util.el (gnus-float-time): New function.
2162         * gnus-delay.el (gnus-delay-article):
2163         * gnus-sum.el (gnus-thread-latest-date):
2164         * gnus-util.el (gnus-user-date): Use gnus-float-time.
2165         * nnspool.el (nnspool-request-newgroups):
2166         Use gnus-float-time rather than time-to-seconds.
2167         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
2168
2169         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
2170         (gnus-header-subject-face, gnus-header-newsgroups-face)
2171         (gnus-header-name-face, gnus-header-content-face):
2172         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
2173         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
2174         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
2175         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
2176         (gnus-cite-face-11):
2177         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
2178         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
2179         (gnus-server-closed-face, gnus-server-denied-face)
2180         (gnus-server-offline-face):
2181         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
2182         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
2183         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
2184         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
2185         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
2186         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
2187         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
2188         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
2189         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
2190         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
2191         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
2192         (gnus-summary-selected-face, gnus-summary-cancelled-face)
2193         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
2194         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
2195         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
2196         (gnus-summary-high-undownloaded-face)
2197         (gnus-summary-low-undownloaded-face)
2198         (gnus-summary-normal-undownloaded-face)
2199         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
2200         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
2201         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
2202         (gnus-splash-face):
2203         * message.el (message-header-to-face, message-header-cc-face)
2204         (message-header-subject-face, message-header-newsgroups-face)
2205         (message-header-other-face, message-header-name-face)
2206         (message-header-xheader-face, message-separator-face)
2207         (message-cited-text-face, message-mml-face):
2208         * sieve-mode.el (sieve-control-commands-face)
2209         (sieve-action-commands-face, sieve-test-commands-face)
2210         (sieve-tagged-arguments-face):
2211         * spam.el (spam-face):
2212         Mark face aliases with "-face" in the name as obsolete.
2213
2214 2009-09-01  Glenn Morris  <rgm@gnu.org>
2215
2216         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
2217         than goto-line.
2218
2219 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
2220
2221         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2222         Don't move point if the command is invoked inside the message header.
2223
2224 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2225
2226         * imap.el (imap-send-command): Simplify.
2227         (imap-wait-for-tag): point-max -> buffer-size.
2228
2229 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2230
2231         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
2232         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
2233         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
2234         * nnir.el (nnir-swish-e-index-file):
2235         * gnus-sum.el (gnus-summary-delete-marked-as-read)
2236         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
2237         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
2238         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
2239         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
2240         (gnus-treat-display-xface): Add Emacs version of obsolescence.
2241
2242 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2243
2244         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
2245         Don't save excursion.
2246
2247 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2248
2249         * nnheader.el (nnheader-find-file-noselect):
2250         * mm-util.el (mm-insert-file-contents):
2251         Use (default-value 'major-mode) instead of default-major-mode.
2252
2253 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2254
2255         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
2256
2257 2009-08-26  Glenn Morris  <rgm@gnu.org>
2258
2259         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
2260         than placing in files.el.
2261
2262 2009-08-25  Glenn Morris  <rgm@gnu.org>
2263
2264         * nnir.el (top-level): Don't require cl at run-time.
2265         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
2266         Replace cl-function substitute with gnus-replace-in-string.
2267         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
2268         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
2269         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
2270         simplified expansions.
2271
2272 2009-08-25  Kevin Ryde  <user42@zip.com.au>
2273
2274         * dig.el (dig): Add autoload cookie.
2275
2276 2009-08-22  Glenn Morris  <rgm@gnu.org>
2277
2278         * gnus-art.el (gnus-button-patch): Use forward-line rather than
2279         goto-line.
2280
2281 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
2282
2283         * parse-time.el (parse-time-string-chars): Save match data.
2284
2285 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
2286
2287         * parse-time.el (parse-time-string-chars): Compute using character
2288         classes, to handle non-ascii characters (Bug#3190).
2289
2290 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2291
2292         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
2293
2294         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
2295         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
2296         (gnus-mm-display-part, gnus-mime-display-single)
2297         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
2298         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
2299
2300         * gnus-sum.el
2301         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
2302         (gnus-summary-move-article): Add expirable mark to articles copied or
2303         moved to group that has auto-expire turned on if the option is non-nil.
2304
2305 2009-07-24  Glenn Morris  <rgm@gnu.org>
2306
2307         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
2308         Fix typo.  (Bug#3903)
2309
2310 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2311
2312         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
2313         gnus-article-read-summary-keys rather than gnus-summary-edit-article
2314         that should not be used for draft articles.
2315         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
2316         that has no concern in minor mode keys.
2317         (gnus-article-summary-command, gnus-article-summary-command-nosave):
2318         Abolish.
2319
2320 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2321
2322         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
2323         article without making inquiry to a user for unknown encoding.
2324
2325         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
2326         (nnmaildir--scan): Assume i-node and device number that file-attributes
2327         returns might be cons-cell.
2328
2329         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
2330
2331         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
2332
2333 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
2334
2335         * auth-source.el: Remove docs now in auth.texi.  Don't use
2336         `gnus-message' for logging.  Add new variables `auth-source-debug' and
2337         `auth-source-hide-passwords' and use them.
2338
2339 2009-07-15  Glenn Morris  <rgm@gnu.org>
2340
2341         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
2342
2343 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2344
2345         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
2346         excessive whitespace from the default values of title and description.
2347
2348 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2349
2350         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
2351         mail-fetch-field to fetch Content-Description header in order to
2352         exclude newlines.
2353
2354 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
2355
2356         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
2357         format used by GnuPG 2.0.11.
2358
2359 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2360
2361         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
2362         to deleted part.
2363
2364 2009-05-30  David Engster  <dengste@eml.cc>
2365
2366         * nnmairix.el: Remove old documentation in the commentary block.
2367         (nnmairix-request-group): Do not update active file for nnml back ends.
2368         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
2369         end so that overview files are ignored.
2370         (nnmairix-update-groups): Make updating the groups more robust by using
2371         marks.
2372         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
2373         with dollar characters in message-id.
2374
2375 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
2376
2377         * spam.el: Use dns-query instead of query-dns.  Was renamed on
2378         2008-12-25 in dns.el.
2379
2380 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2381
2382         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
2383         could happen if the text is only composed of spaces and/or tabs.
2384
2385 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
2386
2387         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
2388         when sending a queued message to avoid extra mml tags.
2389
2390 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
2391
2392         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
2393
2394 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2395
2396         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
2397         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
2398         rmail-toggle-header for XEmacs;
2399         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
2400
2401 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2402
2403         * gnus-dired.el: Remove autoload for gnus-setup-message.
2404         (gnus-dired-attach): Fake this-command value to prevent Gnus from
2405         displaying Gnus logo; always use compose-mail.
2406
2407 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
2408
2409         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
2410
2411 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2412
2413         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
2414         (gnus-nocem-issuers): List currently active issuers; fix custom type.
2415         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
2416         available.
2417         (gnus-nocem-epg-verify): New function.
2418
2419 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
2420
2421         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
2422
2423 2009-02-15  Glenn Morris  <rgm@gnu.org>
2424
2425         * gnus-util.el (rmail-insert-rmail-file-header)
2426         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
2427         autoloads.
2428         (rmail-default-rmail-file): Remove unnecessary declaration.
2429         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
2430
2431 2009-02-14  Glenn Morris  <rgm@gnu.org>
2432
2433         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
2434         variable (only used in gnus-util, which declares it anyway).
2435         (rmail-output-to-rmail-file): Remove autoload of deleted function,
2436         which was only needed by gnus-art (changed to not use it any more).
2437         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
2438         only used in gnus-util, which autoloads it itself.
2439         (rmail-update-summary): Fix autoload.
2440
2441         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
2442         rather than rmail-output-to-rmail-file.
2443
2444 2009-02-07  Glenn Morris  <rgm@gnu.org>
2445
2446         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
2447         autoload of function that no longer exists.
2448         (rmail-toggle-header): Declare.
2449         (message-forward-rmail-make-body): Handle mbox Rmail.
2450
2451 2009-01-31  Glenn Morris  <rgm@gnu.org>
2452
2453         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
2454         2009-01-09 change.
2455
2456 2009-01-31  Dave Love  <fx@gnu.org>
2457
2458         * imap.el (imap-fetch-safe): Bind debug-on-error.
2459         (imap-debug): Add imap-fetch-safe.
2460
2461 2009-01-26  Teodor Zlatanov  <tzz@lifelogs.com>
2462
2463         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
2464         (auth-source-forget-all-cached): New convenience function.
2465         (auth-source-user-or-password): Accept list of modes or a single mode.
2466
2467         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
2468         auth-source modes.
2469
2470         * netrc.el (netrc-machine-user-or-password): Use list of
2471         auth-source modes.
2472
2473         * nnimap.el (nnimap-open-connection): Use list of
2474         auth-source modes.
2475
2476         * nntp.el (nntp-send-authinfo): Use list of
2477         auth-source modes.
2478
2479 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
2480
2481         * auth-source.el: Update docs to reflect epa-file-enable is to be used
2482         now.
2483
2484 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2485
2486         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
2487         coding system in XEmacs; add a workaround for XEmacs.
2488
2489         * lpath.el: Fbind coding-system-aliasee.
2490
2491 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2492
2493         * mm-util.el (mm-coding-system-priorities): Protect against nil value
2494         of current-language-environment.
2495
2496 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
2497
2498         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
2499         available at runtime.
2500
2501 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2502
2503         * gnus-art.el (article-date-ut): Fix end point of narrowing.
2504
2505 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
2506
2507         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
2508         the greatest positive fixnum value doesn't work under an XEmacs with
2509         bignum support; use the most-positive-fixnum constant instead,
2510         available since Emacs 21.1 with cl and XEmacs 21.1.
2511
2512 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2513
2514         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
2515         XEmacs gets not to work.
2516
2517 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2518
2519         * mm-util.el (mm-coding-system-priorities): Allow the value like
2520         "Japanese (UTF-8)" of current-language-environment.
2521
2522 2009-01-09  Glenn Morris  <rgm@gnu.org>
2523
2524         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
2525         with last-command-event.
2526
2527 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
2528
2529         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
2530         in the doc string.
2531
2532         * message.el (message-fix-before-sending): Amend comment.
2533
2534 2009-01-08  Dave Love  <fx@gnu.org>
2535
2536         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
2537
2538 2009-01-07  David Engster  <dengste@eml.cc>
2539
2540         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
2541         simplified server definitions by converting it via
2542         gnus-server-to-method.
2543
2544 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2545
2546         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
2547         parameter's operands.
2548
2549 2009-01-06  David Engster  <dengste@eml.cc>
2550
2551         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
2552         primary select method (for gnus-group-mark-article-as-read).
2553
2554 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
2555
2556         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
2557         `(gnus)Face', not `(gnus)X-Face'.
2558
2559 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2560
2561         * mm-util.el (mm-ucs-to-char): New function.
2562
2563         * mm-url.el (mm-url-decode-entities): Use it.
2564
2565         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
2566         unicode-to-char.
2567
2568 2009-01-05  Dave Love  <fx@gnu.org>
2569
2570         * time-date.el: Require cl for `declare'.
2571
2572 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
2573
2574         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
2575         Dave Love.
2576
2577 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
2578
2579         * message.el (message-fix-before-sending): Add `eight-bit' to
2580         illegible-text check.
2581
2582 2009-01-03  Michael Olson  <mwolson@gnu.org>
2583
2584         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
2585         `headers' is nil.  This can occur if the IMAP server does not have
2586         permissions to read messages from a folder, but can write new messages
2587         to the folder.
2588         (nnimap-request-article-part): Do not insert `data' if it is nil.
2589
2590         * imap.el (imap-parse-fetch): Courier can insert spurious blank
2591         characters which will confuse `read', so skip past them.
2592
2593 2009-01-01  Dave Love  <fx@gnu.org>
2594
2595         * imap.el (imap-string-to-integer): Fix typo.
2596         (imap-fetch-safe): New function.
2597         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
2598
2599         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
2600
2601         * imap.el (imap-process-connection-type, imap-debug, imap-open):
2602         (imap-parse-greeting): Fix doc strings.
2603         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
2604         (imap-parse-flag-list): Make messages unique.
2605         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
2606
2607         * nnimap.el: Fix author email.
2608         (nnimap-split-rule): Add FIXME comment.
2609         (nnimap-debug): Fix doc string.
2610
2611 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
2612
2613         * dns.el (dns-set-servers): Check "Address".  Fix typo.
2614
2615 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
2616
2617         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
2618         nslookup if resolv.conf isn't available.
2619         (dns-query): Rename from query-dns.
2620         (dns-query-cached): Rename from query-dns-cached.
2621
2622 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2623
2624         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
2625         overlay-arrow-position and overlay-arrow-string buffer-local; no need
2626         to check if those variables exist (first appeared in Emacs 18.50).
2627
2628 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2629
2630         * mm-util.el (mm-line-number-at-pos): New function.
2631
2632         * spam-report.el (spam-report-process-queue): Use it.
2633
2634 2008-12-24  David Engster  <dengste@eml.cc>
2635
2636         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
2637         parameters that haven't existed as variables as buffer-local variables.
2638
2639 2008-12-23  Dave Love  <fx@gnu.org>
2640
2641         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
2642         cadar.
2643
2644         * sieve-manage.el (sieve-manage-starttls-p): Renamed from
2645         imap-starttls-p.
2646         (sieve-manage-starttls-open): Renamed from imap-starttls-open.
2647
2648 2008-12-22  Dave Love  <fx@gnu.org>
2649
2650         * imap.el: Fix author email.  Doc fixes.
2651         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
2652         reply.
2653
2654 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
2655
2656         * spam-report.el (spam-report-gmane-max-requests): New constant.
2657         (spam-report-gmane-wait): New variable.
2658         (spam-report-gmane-ham, spam-report-gmane-spam)
2659         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
2660         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
2661         the server.
2662
2663         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
2664         Add explanations.
2665
2666         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
2667         nnheader-accept-process-output and nnheader-read-timeout if available.
2668         (pop3-movemail): Use it.
2669
2670         * message.el (message-check-news-body-syntax): Fix signature check if
2671         there's an attachment.
2672
2673 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2674
2675         * mm-util.el: Add comments to the mm- emulating functions.
2676
2677 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
2678
2679         * gnus-start.el (gnus-before-startup-hook): Fix doc string.  Reported
2680         by Stephen Berman <stephen.berman@gmx.net>.
2681
2682 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2683
2684         * mm-util.el (mm-substring-no-properties): New function.
2685         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
2686         (mm-special-display-p): Enable those lambda forms to be byte compiled.
2687         (mm-string-to-multibyte): Doc fix.
2688
2689         * mml.el (mml-attach-file): Use mm-substring-no-properties.
2690
2691 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
2692
2693         * mml.el (mml-attach-file): Strip text properties from file name.
2694         (Bug#1574)
2695
2696 2008-12-16  Glenn Morris  <rgm@gnu.org>
2697
2698         * mm-util.el (mm-charset-override-alist): Declare for compiler.
2699
2700 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2701
2702         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
2703         knows since the charset specified might be a bogus alias that
2704         mm-charset-synonym-alist provides.
2705
2706 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
2707
2708         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
2709         "ISO_8859-1".
2710
2711         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
2712
2713 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
2714
2715         * mm-util.el (mm-charset-eval-alist):
2716         Define it before mm-charset-to-coding-system.
2717         (mm-charset-to-coding-system): Add optional argument `silent';
2718         define it before mm-charset-override-alist.
2719         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
2720         default value if it can be used in Emacs currently running;
2721         silence mm-charset-to-coding-system.
2722
2723 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2724
2725         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
2726         `allow-override' which says whether to use `mm-charset-override-alist'.
2727         (rfc2047-decode-encoded-words): Use it.
2728
2729         * mm-util.el (mm-charset-override-alist): Fix custom type;
2730         add `(gb2312 . gbk)' to choices.
2731
2732 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2733
2734         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
2735         fast.
2736
2737         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2738
2739         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
2740
2741 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
2742
2743         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
2744         on links.
2745
2746         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
2747
2748 2008-12-03  Lute Kamstra  <lute@gnu.org>
2749
2750         * sha1.el: Remove leading * from docstrings of defcustoms,
2751         deffaces, defconsts and defuns.
2752
2753 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2754
2755         * message.el (message-idna-to-ascii-rhs-1): Protect against local
2756         users' addresses that don't have domain parts.
2757         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
2758         rather than message-narrow-to-head since there will be the message
2759         header separator.
2760
2761 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2762
2763         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
2764         since the result is inserted in a unibyte buffer anyway.
2765         (nnimap-demule-use-string-to-multibyte): Remove.
2766         (nnimap-demule): Alias it to mm-string-to-multibyte.
2767
2768 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
2769
2770         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
2771         variable for debugging bug#464 and bug#1174.
2772         (nnimap-demule): Use it.
2773
2774 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
2775
2776         * gnus-score.el (gnus-score-find-trace): Handle default score in total
2777         score calculation correctly.
2778
2779 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2780
2781         * message.el (message-send-mail): Just set the buffer to unibyte
2782         rather than use mm-with-unibyte-current-buffer which does a lot more.
2783         (message-send-mail-partially): Don't bother with
2784         mm-with-unibyte-current-buffer since it's already been made unibyte by
2785         message-send-mail.
2786
2787 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
2788
2789         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
2790
2791 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
2792
2793         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
2794
2795 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2796
2797         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
2798         require itself and to remove `with-no-warnings'.
2799
2800 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
2801
2802         * starttls.el (starttls-any-program-available): Get the name of the
2803         available TLS layer program.
2804         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
2805         well as the host name in the "opening" message.
2806
2807         * auth-source.el (auth-source-cache, auth-source-do-cache)
2808         (auth-source-user-or-password): Cache passwords and logins by default,
2809         allow override with `auth-source-do-cache'.
2810         (auth-source-forget-user-or-password): Allow users to remove cache
2811         entries if needed.
2812
2813 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
2814
2815         * md4.el (md4-buffer): Fix typo in docstring.
2816         (md4, md4-64): Doc fixes.
2817         (md4-pack-int32): Reflow docstring.
2818
2819 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2820
2821         * ietf-drums.el (ietf-drums-remove-comments): Localize second
2822         condition-case to only the forward-sexp call.
2823
2824 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
2825
2826         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
2827         quotes contained.  Make it more robust regardless by an extra
2828         condition-case wrapper.
2829
2830 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2831
2832         * lpath.el: No need to fbind codepage-setup for Emacs 23.
2833
2834 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2835
2836         * nnml.el (nnml-request-expire-articles): Check if the function set to
2837         `nnmail-expiry-target' returns the symbol `delete'.
2838
2839         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
2840
2841         * nnmail.el (nnmail-expiry-target): Fix custom type.
2842
2843 2008-10-02  Glenn Morris  <rgm@gnu.org>
2844
2845         * mm-util.el (mm-codepage-setup): Tweak codepage error.
2846         Silence compiler warning.
2847
2848 2008-10-01  Magnus Henoch  <mange@freemail.hu>
2849
2850         * tls.el (open-tls-stream): Show the actual command being
2851         executed, instead of the format string.
2852
2853 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2854
2855         * lpath.el: Fbind codepage-setup for Emacs 23.
2856
2857 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
2858
2859         * mml.el (mml-menu): Don't assume mml2015 is bound.
2860
2861 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2862
2863         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
2864         exists.
2865
2866 2008-09-27  Glenn Morris  <rgm@gnu.org>
2867
2868         * gnus-util.el (mail-header-remove-comments): Autoload it.
2869
2870 2008-09-27  Andreas Schwab  <schwab@suse.de>
2871
2872         * gnus-util.el (gnus-split-references): Strip comments.
2873         (gnus-parent-id): Likewise.
2874
2875 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
2876
2877         * message.el (message-confirm-send): Fix version.
2878
2879 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2880
2881         * message.el (message-idna-to-ascii-rhs-1): Use
2882         mail-extract-address-components rather than mail-header-parse-addresses
2883         that is an alias by default to ietf-drums-parse-addresses that does not
2884         support non-ASCII names in headers' contents.
2885
2886 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
2887
2888         * message.el (message-confirm-send): Fixed variable documentation to
2889         avoid the "y/n" wording.
2890
2891 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
2892
2893         * message.el (message-set-auto-save-file-name): Save to a different
2894         filename so multiple messages (especially drafts) can be recovered.
2895
2896 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
2897
2898         * message.el (message-confirm-send): Add appropriate version.
2899
2900 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
2901
2902         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
2903         defvar.
2904
2905 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
2906
2907         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
2908         (mm-pkcs7-enveloped-magic): Ditto.
2909
2910 2008-09-17  Simon Josefsson  <simon@josefsson.org>
2911
2912         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
2913         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
2914
2915 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
2916
2917         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
2918         default, it's better.
2919
2920 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
2921
2922         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
2923         summary line gnus-number property and ignore them (with a warning
2924         message).
2925
2926 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
2927
2928         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
2929         macro caddr in the interactive form since it won't be expanded.
2930
2931 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2932
2933         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
2934         `charset'; fix name of function called recursively.
2935         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
2936
2937 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2938
2939         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
2940         (gnus-mime-set-charset-parameters): New function.
2941         (gnus-mime-view-part-as-charset): Use it to correctly display part
2942         specifying wrong charset.
2943
2944 2008-09-08  David Engster  <dengste@eml.cc>
2945
2946         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
2947         in completing-read for back end server.
2948
2949 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
2950
2951         * message.el (message-confirm-send): New variable to confirm sending a
2952         message.
2953         (message-send): Use it.
2954
2955 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
2956
2957         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
2958
2959 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
2960
2961         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
2962
2963 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
2964
2965         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
2966         prevent tracking too many groups.
2967         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
2968         Use it.
2969
2970 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
2971
2972         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
2973         moving point to the bottom of the window in order to avoid recentering.
2974
2975 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
2976
2977         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
2978
2979         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
2980         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
2981         (gnus-article-beginning-of-window): Fix calculation.
2982
2983 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2984
2985         * gnus-msg.el (gnus-summary-supersede-article)
2986         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
2987         value of gnus-newsgroup-charset to decode non-MIME encoded text in
2988         message header.
2989
2990 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
2991
2992         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
2993         pending output coming after the status change.
2994
2995 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
2996
2997         * message.el:
2998         * gnus-start.el:
2999         * gnus-registry.el: Remove VMS support.
3000
3001 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3002
3003         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
3004         macro.
3005         (rfc2104-hash): Use it.
3006
3007 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
3008
3009         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
3010         (gnus-summary-sort-by-most-recent-date): New commands.
3011         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
3012         and menu entries.
3013
3014 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
3015
3016         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
3017         don't redisplay article for raw contents; remove plural articles stuff.
3018
3019         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
3020         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
3021         on gnus-summary-save-article; display results properly.
3022
3023 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
3024
3025         * lpath.el: No need to fbind ns-focus-frame.
3026
3027 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
3028
3029         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
3030
3031 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
3032
3033         * gnus-art.el (gnus-summary-save-in-pipe): Consider
3034         gnus-save-all-headers.
3035
3036 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
3037
3038         * gnus-util.el (ns-focus-frame): Remove declaration.
3039         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
3040         like x.
3041
3042 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
3043
3044         * rfc2104.el (rfc2104-zero): Delete defconst.
3045         (rfc2104-hex-alist): Likewise.
3046         (rfc2104-hex-to-int): Delete func.
3047         (rfc2104-hexstring-to-bitstring): Likewise.
3048         (rfc2104-nybbles): New defconst.
3049         (rfc2104-hash): Rewrite for speed.
3050
3051 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3052
3053         * tls.el (open-tls-stream): Make it work with the 2nd argument
3054         BUFFER that is a string but does not exist as a buffer object, as
3055         mentioned in the doc-string.
3056
3057 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
3058
3059         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
3060         SXEmacs.
3061
3062 2008-07-16  Glenn Morris  <rgm@gnu.org>
3063
3064         * gnus-util.el (ns-focus-frame): Declare for compiler.
3065
3066 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3067
3068         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
3069         set as a group parameter.
3070         (gnus-summary-save-in-pipe): Work when it is called independently.
3071         (gnus-summary-pipe-to-muttprint): Don't modify
3072         gnus-summary-pipe-output-default-command.
3073
3074 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3075
3076         * message.el (message-send-mail-with-sendmail):
3077         Display the error message.
3078
3079 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3080
3081         * gnus-art.el (gnus-default-article-saver):
3082         Add gnus-summary-save-in-pipe to choices.
3083         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
3084         gnus-summary-pipe-output-default-command as the default command.
3085         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
3086         instead of gnus-last-shell-command.
3087
3088         * gnus-sum.el (gnus-summary-pipe-output-default-command):
3089         New user option.
3090         (gnus-summary-muttprint-program): Mention the value will be changed.
3091         (gnus-summary-save-article): Force showing of all headers.
3092         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
3093
3094 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
3095
3096         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
3097
3098 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
3099
3100         * nnimap.el (nnimap-id):
3101         * sieve-manage.el (sieve-manage-open): Doc fixes.
3102
3103 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
3104
3105         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
3106         if available.
3107
3108 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3109
3110         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
3111
3112         * nnkiboze.el (nnkiboze-generate-group):
3113         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
3114
3115         * nnmairix.el: Require CL.
3116
3117 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
3118
3119         * dgnushack.el: Autoload get-display-table and put-display-table for
3120         XEmacs 21.5.
3121
3122         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
3123         21.4 and SXEmacs.
3124
3125 2008-06-15  David Engster  <dengste@eml.cc>
3126
3127         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
3128
3129 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
3130
3131         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
3132         New macros that expand to an `aset'/`aref' call under Emacs, and to a
3133         runtime choice under XEmacs.
3134
3135         * gnus-sum.el (gnus-summary-set-display-table):
3136         Use `gnus-put-display-table', `gnus-get-display-table',
3137         `gnus-set-display-table' for the display table, instead of `aset'.
3138
3139         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
3140         Use `gnus-put-display-table', `gnus-get-display-table',
3141         `gnus-set-display-table' for the display table.
3142
3143 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3144
3145         * nnmairix.el: Add autoloads.
3146
3147 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
3148
3149         * nnmairix.el (nnmairix-delete-recreate-group)
3150         (nnmairix-update-and-clear-marks): Fix error messages.
3151
3152 2008-06-14  David Engster  <dengste@eml.cc>
3153
3154         * nnmairix.el: Upgrade to version 0.6.
3155         (nnmairix-group-toggle-propmarks-this-group)
3156         (nnmairix-group-toggle-readmarks-this-group)
3157         (nnmairix-group-delete-recreate-this-group)
3158         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
3159         (nnmairix-remove-tick-mark-original-article): New commands.
3160         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
3161         (nnmairix-propagate-marks-to-nnmairix-groups)
3162         (nnmairix-only-use-registry, nnmairix-allowfast-default)
3163         (nnmairix-marks-cache, nnmairix-version-output): New variables.
3164         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
3165         functions needed for marks propagation and manipulation of read marks.
3166         (nnmairix-update-groups): New function.
3167         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
3168         (nnmairix-determine-original-group-from-registry)
3169         (nnmairix-determine-original-group-from-path)
3170         (nnmairix-get-group-from-file-path, nnmairix-map-range)
3171         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
3172         New helper functions.
3173         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
3174         keystrokes for new commands.
3175         (nnmairix-delete-and-create-on-change): Doc string cleanup.
3176         (nnmairix-request-group): Check allow-fast group parameter.
3177         (nnmairix-request-create-group): Set allow-fast group parameter if
3178         nnmairix-allowfast-default is set.
3179         (nnmairix-close-group): Propagate marks upon closing if needed.
3180         (nnmairix-group-toggle-threads-this-group): Use new.
3181         nnmairix-group-toggle-parameter helper function.
3182         (nnmairix-search): Better check for empty search result.
3183         (nnmairix-goto-original-article): Use new helper functions for
3184         determining original article.
3185         (nnmairix-show-original-article): Make sure message-id is in brackets.
3186         (nnmairix-call-mairix-binary): Change variable name.
3187         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
3188         helper function.
3189         (nnmairix-widget-toggle-activate): Fix doc string.
3190
3191 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3192
3193         * nnir.el: Require edmacro when compiling with XEmacs.
3194         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
3195         available in Emacs 21.
3196
3197 2008-06-11  Glenn Morris  <rgm@gnu.org>
3198
3199         * gnus-util.el (x-focus-frame):
3200         * gnus.el (image-size):
3201         * mm-decode.el (image-size): Declare.
3202
3203         * gnus-picon.el (declare-function): Add compat definition.
3204         (image-size): Declare.
3205
3206         * gnus-group.el (tool-bar-map):
3207         * gnus-sum.el (tool-bar-map): Define for compiler.
3208
3209         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
3210
3211         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
3212
3213         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
3214         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
3215         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
3216         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
3217         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
3218         * sieve-manage.el, spam-report.el, spam.el:
3219         Remove unnecessary eval-and-compile of autoloads.
3220
3221 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
3222
3223         * auth-source.el: Precise Tramp doc.
3224
3225 2008-06-07  Glenn Morris  <rgm@gnu.org>
3226
3227         * nnmairix.el: Remove unnecessary eval-when-compile.
3228
3229 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3230
3231         * lpath.el: Fbind propertize for XEmacs 21.4.
3232
3233 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
3234
3235         * nnir.el: Move here from ../contrib.
3236
3237 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3238
3239         * gnus-util.el (gnus-read-shell-command): New function.
3240         * mm-decode.el (mm-pipe-part):
3241         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
3242
3243 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3244
3245         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
3246
3247 2008-06-03  Glenn Morris  <rgm@gnu.org>
3248
3249         * pop3.el (nnheader-accept-process-output): Autoload it.
3250
3251 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
3252
3253         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
3254         are not 2-digit hexadecimal characters that follow `%'s.
3255
3256 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
3257
3258         * message.el (message-bogus-recipient-p): Fix type in doc string.
3259         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
3260         (message-bogus-addresses): Rename from message-bogus-address-regexp.
3261         Improve custom options.
3262         (message-bogus-recipient-p): Adjust accordingly.
3263
3264 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
3265
3266         * parse-time.el (parse-time-months, parse-time-weekdays): Add
3267         long-form month and day names.
3268
3269 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3270
3271         * dgnushack.el: Autoload debug, eudc-expand-inline and
3272         pgg-snarf-keys-region for XEmacs.
3273
3274         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
3275
3276         * nnmairix.el: Require edmacro when compiling with XEmacs.
3277
3278 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
3279
3280         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
3281         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
3282
3283 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
3284
3285         * auth-source.el: Add more docs.
3286
3287         * netrc.el (netrc-machine): Always match if the port is not given.
3288
3289 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3290
3291         * nnheader.el (nnheader-read-timeout): Change the default timeout from
3292         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
3293         retrieval faster in some cases, but might make CPU usage larger.  If
3294         this has any bad side effects, we might revert this change.
3295
3296         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
3297         seems to make mail retrieval much, much faster.
3298         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
3299         unconditionally.
3300
3301         * gnus-draft.el (gnus-group-send-queue): Bind
3302         message-send-mail-partially-limit to nil to avoid being prompted.
3303
3304 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
3305
3306         * mml.el (mml-attach-buffer): Prompt for `disposition'.
3307
3308         * message.el (message-bogus-address-regexp): Fix and improve custom
3309         type.
3310         (message-setup-hook): Add message-check-recipients as custom option.
3311
3312 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
3313
3314         * message.el (message-cite-function): Remove bogus autoload which crept
3315         in during merge from v5-10.
3316
3317 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
3318
3319         * nnimap.el (nnimap-open-connection): Fix login/password bug.
3320
3321         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
3322
3323         * auth-source.el: Preliminary Tramp docs.
3324         (auth-sources): Change the default auth-sources to use
3325         EPA .gpg files.
3326
3327 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
3328
3329         * nntp.el: Autoload `auth-source-user-or-password'.
3330         (nntp-send-authinfo): Use it.
3331
3332         * nnimap.el: Autoload `auth-source-user-or-password'.
3333         (nnimap-open-connection): Use it.
3334
3335         * auth-source.el: Added docs on using with url-auth.  Import gnus-util
3336         for the gnus-message function.
3337         (auth-source-user-or-password): Use it.
3338
3339 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3340
3341         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
3342         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
3343         (rfc2104-hash): Use it.
3344
3345 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
3346
3347         * gnus-art.el (gnus-article-toggle-truncate-lines):
3348         Don't use `iff' in docstring.
3349
3350 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
3351
3352         * gnus-registry.el: Adjusted copyright dates and added a keyword.
3353
3354         * gnus-util.el (gnus-extract-address-component-name)
3355         (gnus-extract-address-component-email): Convenience functions around
3356         `gnus-extract-address-components'.
3357
3358         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
3359         Use `gnus-extract-address-component-email' to fix bug of comparing full
3360         sender name to `user-mail-address'.
3361
3362 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
3363
3364         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
3365         catch/throw to optimize.
3366         (gnus-registry-find-keywords): Just use member to find a keyword.
3367
3368 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3369
3370         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
3371         is current before calling gnus-server-prepare.
3372         (gnus-server-setup-buffer, gnus-server-update-server)
3373         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
3374
3375 2008-05-04  Juri Linkov  <juri@jurta.org>
3376
3377         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
3378         (mailcap-file-default-commands): Use mailcap-replace-in-string
3379         instead of replace-regexp-in-string, and mailcap-delete-duplicates
3380         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
3381
3382 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
3383
3384         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
3385
3386 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3387
3388         * gnus.el: Bump version to 0.11.
3389
3390 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3391
3392         * gnus.el: No Gnus v0.10 is released.
3393
3394 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3395
3396         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
3397         hooks.
3398         (gnus-update-read-articles): Speed up non-marks-using users.
3399         (gnus-use-marks): Define gnus-use-marks.
3400         (gnus-propagate-marks): Rename variable to something more sensible.
3401
3402 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
3403
3404         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
3405         (gmm-image-load-path-for-library): Fix typos in docstrings.
3406         (gmm-message): Reflow docstring.
3407
3408 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
3409
3410         * mail-source.el (mail-source-set-1, mail-source-bind):
3411         Move auth-source code out of the macro to clean it up and fix bugs.
3412
3413 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
3414
3415         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
3416         by sender if it's equal to user-mail-address, it's likely to be
3417         useless.
3418
3419         * mail-source.el (mail-source-bind): Don't use user or password if they
3420         are not bound.  Unintern them if they are nil.  Don't use server unless
3421         it's bound, and default it to empty string otherwise.
3422
3423 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
3424
3425         * mail-source.el: Load auth-source.el.
3426         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
3427         get user name or password, if auth-sources is set up.
3428
3429         * gnus-registry.el (gnus-registry-split-strategy): New variable for
3430         strategy of splitting with parent.
3431         (gnus-registry-split-fancy-with-parent)
3432         (gnus-registry-post-process-groups): Use it and fix prior
3433         bug (returning a list as the split result).
3434
3435         * auth-source.el (auth-sources): Remove server parameter.
3436         (auth-source-pick, auth-source-user-or-password)
3437         (auth-source-user-or-password-imap)
3438         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3439         (auth-source-user-or-password-sftp)
3440         (auth-source-user-or-password-smtp): Remove server parameter.
3441
3442 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
3443
3444         * smime.el (smime-sign-region, smime-encrypt-region)
3445         (smime-decrypt-region):
3446         Remove redundant calls to `generate-new-buffer-name'.
3447
3448 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
3449
3450         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
3451         Don't use QP for message/rfc822.
3452         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
3453
3454 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3455
3456         * sieve-manage.el (sieve-string-bytes): Remove.
3457         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
3458         correct byte-length only if the process's coding-system is the same as
3459         the one used internally by Emacs to represent strings.
3460
3461 2008-04-22  Juri Linkov  <juri@jurta.org>
3462
3463         * mailcap.el (mailcap-file-default-commands): New function.
3464
3465 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3466
3467         * message.el (message-signature-separator, message-cite-function):
3468         Change custom version.
3469
3470 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
3471
3472         * tls.el (tls-program): Add -ign_eof argument to call the openssl
3473         commands.
3474         (tls-checktrust): Ditto.
3475
3476 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
3477
3478         * mm-decode.el (mm-display-external): Make temp file read-only.
3479
3480 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
3481
3482         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
3483         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
3484         `C-c C-f d'.
3485
3486 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
3487
3488         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
3489
3490 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
3491
3492         * gnus.el: Bump version to 0.9.
3493
3494 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
3495
3496         * gnus.el: No Gnus v0.8 is released.
3497
3498 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3499
3500         * mail-source.el (mail-source-value):
3501         Prefer fboundp to functionp so it works with macros as well.
3502
3503 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3504
3505         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3506         Fix last change in case the element is not even a symbol.
3507
3508 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3509
3510         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
3511         Prefer fboundp to functionp so it works with macros as well.
3512
3513 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
3514
3515         * auth-source.el: Added docs.
3516         (auth-sources): Modify format to support server.
3517         (auth-source-pick, auth-source-user-or-password)
3518         (auth-source-user-or-password-imap)
3519         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3520         (auth-source-user-or-password-sftp)
3521         (auth-source-user-or-password-smtp): Add server parameter.
3522
3523 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
3524
3525         * gnus-registry.el: Initialize the registry when gnus-registry-install
3526         is t.
3527
3528 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3529
3530         * compface.el (uncompface): Make buffer unibyte.
3531
3532 2008-04-05  Glenn Morris  <rgm@gnu.org>
3533
3534         * gnus-ems.el (mm-disable-multibyte): Autoload it.
3535
3536 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3537
3538         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer): Prefer
3539         mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
3540
3541         * nnheader.el (nnheader-init-server-buffer): Change buffer's
3542         multibyteness after rather than before erasing it.
3543
3544         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
3545         mm-with-multibyte.
3546         (gnus-request-article-this-buffer): Make sure the proper decoding is
3547         used if gnus-original-article-buffer happens to be unibyte.
3548
3549         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
3550         default-enable-multibyte-characters.
3551
3552         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
3553         default-enable-multibyte-characters.
3554
3555         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
3556
3557         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
3558
3559 2008-04-02  Simon Josefsson  <simon@josefsson.org>
3560
3561         * imap.el (imap-enable-exchange-bug-workaround): New variable.
3562         (imap-message-copyuid-1): Use it.
3563         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
3564         J. Williams in
3565         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
3566
3567         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
3568         imap-enable-exchange-bug-workaround.
3569         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
3570
3571 2008-04-01  Simon Josefsson  <simon@josefsson.org>
3572
3573         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
3574         a 100 byte status-checks into a 2-3MB transfer for each group.
3575         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
3576         to enable bug workaround or not.
3577         (nnimap-find-minmax-uid): Only enable workaround conditionally.
3578
3579 2008-03-31  Glenn Morris  <rgm@gnu.org>
3580
3581         * message.el (mml2015-use): Declare for compiler.
3582         (message-info): Require mml2015 when appropriate.
3583
3584 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
3585
3586         * Makefile.in (EMACS_COMP): Quote directory name that might contain
3587         whitespace.
3588
3589 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3590
3591         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
3592         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
3593         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
3594         (nntp-service-to-port): New function.
3595         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
3596         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
3597         (nntp-open-netcat-stream): New function.
3598         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
3599
3600 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
3601
3602         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
3603
3604 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3605
3606         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
3607
3608 2008-03-28  Magnus Henoch  <mange@freemail.hu>
3609
3610         * dns.el (dns-write): Use set-buffer-multibyte.
3611
3612 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
3613
3614         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
3615
3616 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
3617
3618         * message.el (message-signature-separator): Change default.
3619         Improve custom type.
3620         (message-cite-function): Change default to
3621         message-cite-original-without-signature.
3622
3623         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
3624         toggle.
3625
3626         * message.el (message-check-news-body-syntax): Fix signature check.
3627         (message-setup-1): Mark buffer as unmodified _after_ running
3628         message-setup-hook and handling message-alternative-emails.
3629         (message-shorten-references): Be more strict when building list of
3630         valid references to comply with GNKSA.
3631
3632         * gnus-group.el (gnus-read-ephemeral-bug-group)
3633         (gnus-read-ephemeral-debian-bug-group)
3634         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
3635
3636         * message.el (message-info): Don't use booleanp which isn't supported
3637         in Emacs 21 and XEmacs.
3638
3639 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
3640
3641         * gnus-group.el (gnus-gmane-group-download-format): Rename from
3642         gnus-group-gmane-group-download-format.
3643         (gnus-group-read-ephemeral-gmane-group): Rename from
3644         gnus-group-read-ephemeral-gmane-group.
3645         (gnus-read-ephemeral-gmane-group-url): Rename from
3646         gnus-group-read-ephemeral-gmane-group-url.
3647         (gnus-bug-group-download-format-alist): New variable.
3648         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
3649         (gnus-read-ephemeral-emacs-bug-group): New commands.
3650
3651 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
3652
3653         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
3654         (gnus-visible-headers): Improve custom type.
3655
3656 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
3657
3658         * mml.el (mml-menu): Add workarounds for XEmacs.
3659
3660         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
3661         X-Boundary header.
3662
3663         * message.el (message-simplify-recipients): Fix previous commit.
3664
3665 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3666
3667         * mm-util.el (mm-set-buffer-multibyte): New function.
3668         * mm-decode.el (mm-copy-to-buffer): Use it.
3669
3670 2008-03-19  Glenn Morris  <rgm@gnu.org>
3671
3672         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
3673         Accidentally removed in the sync process with Emacs.
3674
3675 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
3676
3677         * message.el (message-alter-recipients-discard-bogus-full-name):
3678         New function.
3679         (message-alter-recipients-function): New variable.
3680         (message-get-reply-headers): Use it.
3681         (message-replace-header): New helper function.
3682         (message-recipients-without-full-name): New variable.
3683         (message-simplify-recipients): New command.
3684
3685         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
3686
3687         * message.el (message-info): Handle EasyPG manual.
3688
3689         * mml.el (mml-menu): Add entry for EasyPG.
3690
3691 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
3692
3693         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
3694         parameter.
3695
3696         * message.el (message-disassociate-draft): Specify drafts group name
3697         fully.
3698
3699 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
3700
3701         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Eliminate
3702         unnecessary duplicates from the match list.
3703
3704 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
3705
3706         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
3707
3708         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
3709
3710         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
3711         args of `how-many' of which the XEmacs version doesn't take; declare
3712         Info-index-next as function.
3713
3714 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
3715
3716         * gnus-score.el (gnus-score-headers): Fix handling of
3717         gnus-inhibit-slow-scoring.
3718
3719         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
3720         string.
3721         (gnus-button-url-regexp): Improve handling of parenthesis.
3722         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
3723         (gnus-button-handle-info-keystrokes): Handle index entries.
3724
3725 2008-03-15  Glenn Morris  <rgm@gnu.org>
3726
3727         * parse-time.el (parse-time-string): Simplify.
3728
3729 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3730
3731         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
3732         Incoming* files.
3733
3734 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
3735
3736         * auth-source.el (auth-sources): Renamed from auth-source-choices.
3737         (auth-source-pick): Use it.
3738
3739 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3740
3741         * binhex.el (binhex-decode-region-internal):
3742         * uudecode.el (uudecode-decode-region-internal):
3743         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
3744         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
3745         setting default-enable-multibyte-characters.
3746
3747 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
3748
3749         * auth-source.el (auth-source-protocols)
3750         (auth-source-protocols-customize, auth-source-choices): Added and
3751         modified variable customizations and defaults.
3752         (auth-source-pick, auth-source-user-or-password)
3753         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
3754         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
3755         (auth-source-user-or-password-sftp)
3756         (auth-source-user-or-password-smtp): Use new variables and provide an
3757         interface to netrc.el.
3758
3759 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3760
3761         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
3762         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
3763         Make sure the nntp port to specify is a string.
3764
3765 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3766
3767         * nntp.el: Use with-current-buffer.
3768         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
3769         dubious mm-with-unibyte-current-buffer.
3770         (nntp-with-open-group-function): New function extracted from
3771         nntp-with-open-group macro.
3772         (nntp-with-open-group): Use the function, so it's easier to debug.
3773         Add indentation and debugging info.
3774         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Recommend
3775         the use of the netcat alternatives.
3776
3777         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
3778         Avoid mm-string-as-multibyte as well.
3779
3780         * nnweb.el (nnweb-insert-html):
3781         Remove use of nnheader-string-as-multibyte.
3782
3783         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
3784         (nnheader-string-as-multibyte): Remove.
3785
3786         * mm-view.el: Use inhibit-read-only.
3787         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
3788         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
3789         or unibyte-string.
3790
3791         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
3792         (mm-uu-yenc-extract): Use with-current-buffer.
3793
3794         * gnus-soup.el (gnus-soup-send-packet): Don't use
3795         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
3796
3797         * nnmh.el: Use with-current-buffer.
3798         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
3799         mm-string-as-multibyte on the output of mm-encode-coding-string.
3800
3801         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
3802         (nnimap-request-move-article): Use with-current-buffer.
3803
3804         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
3805         inserting the handle-buffer's text, so the implicit multibyte->unibyte
3806         conversion uses string-make-unibyte rather than string-as-unibyte.
3807
3808         * gnus-msg.el: Use with-current-buffer.
3809
3810         * message.el (message-ignored-resent-headers): Add "Delivered-To".
3811
3812 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
3813
3814         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
3815         string for caching if it is 'PIN.
3816
3817 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
3818
3819         * lpath.el: Consider the case without Emacs/W3.
3820
3821 2008-03-08  Glenn Morris  <rgm@gnu.org>
3822
3823         * time-date.el (date-to-time, time-subtract, time-add)
3824         (safe-date-to-time): Doc fixes.
3825
3826 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
3827
3828         * mail-source.el (mail-source-delete-old-incoming-confirm):
3829         Change default to nil.
3830         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
3831
3832 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3833
3834         * lpath.el: Rearrange.
3835
3836         * gnus-art.el (gnus-narrow-to-page): Position point properly.
3837         (gnus-article-goto-prev-page): Work for articles having ^L's.
3838
3839         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
3840
3841         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
3842
3843 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
3844
3845         * gnus-bookmark.el: Adjust for renames in bookmark.el.
3846         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
3847         (gnus-bookmark-jump): Adjust some variable names.
3848
3849 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
3850
3851         * auth-source.el: New package.
3852         (auth-source-choices): Add customization entry point variable.
3853
3854         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
3855         bug.
3856
3857 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
3858
3859         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
3860         (gnus-registry-initialize, gnus-registry-install-p): Use it.
3861         (gnus-registry-install-shortcuts): Rename from
3862         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
3863         the `gnus-registry-mark-map' keymap dynamically from
3864         `gnus-registry-marks'.  The generated functions update the summary line
3865         when a registry mark is added or deleted, and will call
3866         `gnus-registry-install-p' (see the comments in the code).
3867         (gnus-registry-user-format-function-M): Use concat intelligently.
3868
3869         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
3870         the registry mark functions.
3871
3872 2008-03-05  Glenn Morris  <rgm@gnu.org>
3873
3874         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
3875         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
3876         gnus-art.
3877         (top-level): No need to load own source when compiling.
3878
3879 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
3880
3881         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
3882         Suggested by <chris.anderton@zetnet.co.uk>.
3883
3884 2008-03-04  Glenn Morris  <rgm@gnu.org>
3885
3886         * gnus-sum.el (top-level): No need to require gnus when compiling,
3887         since unconditionally required near start of file.
3888         (gnus-summary-display-while-building): Move definition before use.
3889
3890 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
3891
3892         * gnus-registry.el (gnus-registry-user-format-function-M): Add
3893         formatting function.
3894
3895 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
3896
3897         * gnus-registry.el (gnus-registry-marks): Changed format to be nicer
3898         with plists.
3899         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
3900         Use new format.
3901
3902 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3903
3904         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
3905         `where-is-internal' that returns a range of key sequences.
3906
3907 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3908
3909         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
3910
3911         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
3912         (gnus-summary-jump-to-group): Consider windows on other displayed
3913         frames as well.  Similar changes might be needed elsewhere, but that's
3914         the one I've bumped into during my use.
3915
3916         * nndoc.el (nndoc-oe-dbx-type-p):
3917         * gnus-msg.el (gnus-debug):
3918         * gnus-group.el (gnus-update-group-mark-positions):
3919         Use mm-string-to-multibyte.
3920
3921 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
3922
3923         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
3924         doesn't handle NotDashEscaped.
3925
3926         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
3927         (mml-dnd-attach-options): Fix typo in custom choice.
3928
3929         * gnus-group.el (gnus-group-read-ephemeral-gmane-group): Change
3930         nndoc-article-type to mbox.
3931         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
3932
3933         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
3934         to nil, instead of html2text.
3935
3936         * imap.el (imap-debug): Add `imap-ping-server'.
3937
3938         * gnus-bookmark.el: Add FIXMEs.
3939
3940         * message.el (message-form-letter-separator)
3941         (message-send-form-letter-delay): New variables.
3942         (message-send-form-letter): Use them.  New command to send form
3943         letters.  Requested by Uwe Siart.
3944         (message-send-mail-function): Doc fix.  Add "Other" custom option.
3945
3946 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3947
3948         * Update copyright years.
3949
3950 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
3951
3952         Sync from EMACS_22_BASE.
3953
3954         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
3955
3956 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
3957
3958         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
3959         empty author.
3960
3961 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
3962
3963         * gnus-registry.el (gnus-registry-marks): Add variable for
3964         customization of marks and their appearance.
3965         (gnus-registry-read-mark): Use it.
3966         (gnus-registry-do-marks): Add utility function to loop through
3967         `gnus-registry-marks'.
3968         (gnus-registry-install-shortcuts-and-menus): Add function to install
3969         shortcuts and menus.
3970         (gnus-registry-initialize): Use it.
3971         (gnus-registry-default-mark): Clarify documentation.
3972
3973 2008-02-29  Glenn Morris  <rgm@gnu.org>
3974
3975         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
3976         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
3977         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
3978         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
3979         Change defcustom :version from 23.0 to 23.1.
3980
3981 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
3982
3983         * gnus-registry.el (gnus-registry-follow-group-p)
3984         (gnus-registry-post-process-groups): Add functions to aid registry
3985         splitting and improve logging.  Clarify behavior in function
3986         documentation.
3987         (gnus-registry-split-fancy-with-parent): Use them.
3988
3989 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3990
3991         * gnus-art.el: Use with-current-buffer.
3992
3993 2008-02-27  David Engster  <dengste@eml.cc>
3994
3995         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
3996         Express real group name in the response.
3997
3998 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3999
4000         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
4001         (nnmairix-last-server, nnmairix-current-server): Defvar them.
4002         (nnmairix-goto-original-article): Defvar gnus-registry-install and
4003         autoload gnus-registry-fetch-group when compiling.
4004         (nnmairix-request-group-with-article-number-correction): Remove
4005         unreferenced argument passed to nnmairix-call-backend.
4006
4007 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
4008
4009         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
4010         (mm-uu-extract): Improve face for low color ttys.  Reported by Sascha
4011         Wilde.
4012
4013 2008-02-27  Glenn Morris  <rgm@gnu.org>
4014
4015         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
4016         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
4017         variables to defconsts.  Convert comments to doc-strings.
4018         (nnmairix-last-server, nnmairix-current-server): Convert from free
4019         variables to defvars.  Convert comments to doc-strings.
4020         (gnus-registry-fetch-group): Autoload.
4021         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
4022         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
4023         (nnmairix-widget-build-editable-fields): Use car cddr rather than
4024         caddr.
4025         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
4026         nnmairix-request-group-with-article-number-correction call.
4027         (nnmairix-fast, nnmairix-group): New, less general names, for free
4028         variables passed from nnmairix-request-group to
4029         nnmairix-request-group-with-article-number-correction.  Declare.
4030         (nnmairix-request-group-with-article-number-correction):
4031         Use nnmairix-fast, nnmairix-group rather than fast, group.
4032
4033 2008-02-26  David Engster  <dengste@eml.cc>
4034
4035         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
4036         version 0.5.
4037
4038 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
4039
4040         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
4041         instead of making an extra function call.  Don't add the current group
4042         to articles only when they have the group.  Use
4043         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
4044         Reported by David <de_bb@arcor.de>.
4045
4046 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4047
4048         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
4049         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
4050
4051 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
4052
4053         * mail-source.el (mail-source-delete-incoming): Change default.
4054         Supplement doc string.
4055
4056         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
4057
4058 2008-02-14  Glenn Morris  <rgm@gnu.org>
4059
4060         * time-date.el (format-seconds): New function.
4061
4062 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
4063
4064         * nnmail.el (nnmail-message-id-cache-file): Derive from
4065         `gnus-home-directory'.
4066
4067 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
4068
4069         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
4070         Document negative prefix.
4071
4072         * gnus-group.el (gnus-group-read-group): Document negative prefix.
4073
4074 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4075
4076         * message.el (message-unsent-separator): Add the Exim bounce
4077         separator.
4078
4079 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
4080
4081         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
4082         list.
4083         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
4084         recipient/signer list.
4085
4086 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4087
4088         * Makefile.in (datarootdir): Define.
4089         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
4090         name that might contain whitespace.
4091
4092 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
4093
4094         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
4095         fbound (Emacs 23 unicode), signal an error.
4096
4097 2008-02-08  Glenn Morris  <rgm@gnu.org>
4098
4099         * gnus-art.el (pgg-display-output-buffer): Declare as function.
4100
4101 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
4102
4103         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
4104         ports to the calls to `netrc-machine-user-or-password' in addition to
4105         "imap" and "imaps".
4106
4107 2008-02-01  Zhang Wei  <id.brep@gmail.com>
4108
4109         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
4110
4111         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
4112
4113 2008-02-01  Kenichi Handa  <handa@m17n.org>
4114
4115         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
4116         rfc2104-hexstring-to-bitstring and changed to return a byte list.
4117         (rfc2104-hash): Convert the result of concat to unibyte string.
4118
4119 2008-02-01  Dave Love  <fx@gnu.org>
4120
4121         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
4122         coding-system-for-read.
4123         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
4124
4125 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
4126
4127         * gnus.el (gnus-group-startup-message): Add `find-image' call before
4128         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
4129         <hanche@math.ntnu.no>.
4130
4131 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4132
4133         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
4134
4135         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
4136
4137 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
4138
4139         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
4140         * message.el (message-beginning-of-line): Use featurep instead of bound
4141         tests in order to resolve conditionals at compile time.
4142
4143 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
4144
4145         * mail-source.el (mail-sources): Add `group' choice.
4146
4147         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
4148         parameter `in-group' to control into which group the articles go.
4149         Add treatment of `group' mail-source.
4150
4151 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4152
4153         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
4154
4155         * mm-decode.el (mm-dissect-buffer): Decode description.
4156
4157         * mml.el (mml-to-mime): Encode message header first.
4158
4159 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
4160
4161         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
4162         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
4163
4164         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
4165         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
4166
4167 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
4168
4169         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
4170
4171 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4172
4173         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
4174         prefix keys.
4175         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
4176         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
4177         gnus-xmas.el.
4178
4179         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
4180         (gnus-xmas-article-describe-bindings): New function.
4181         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
4182         gnus-xmas-article-describe-bindings.
4183
4184         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
4185
4186 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
4187
4188         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
4189         Add new variables for article mark management.
4190         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
4191         list of extra data entries which, when present, will indicate that the
4192         article ID should not be trimmed from the registry.
4193         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
4194         functions.
4195         (gnus-registry-read-mark): New function to read a mark name from the
4196         user.
4197         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
4198         (gnus-registry-set-article-mark-internal): New functions to add and
4199         remove marks.
4200         (gnus-registry-get-article-marks): New function to show the marks for
4201         an article, or retrieve them for further use.
4202
4203 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
4204
4205         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
4206         keys when no argument is given.
4207
4208 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
4209
4210         * imap.el (imap-ping-server): New variable.
4211         (imap-opened): On add extra ping if imap-ping-server is non-nil.
4212         (imap-ping-server): Minor doc string fixes.
4213
4214 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
4215
4216         * imap.el (imap-ping-server): New function.
4217         (imap-opened): Call imap-ping-server.
4218
4219 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
4220
4221         * gnus-sum.el (gnus-article-sort-by-random)
4222         (gnus-thread-sort-by-random): Fix doc strings.  Reported by
4223         jidanni@jidanni.org.
4224
4225 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4226
4227         * gnus-art.el (gnus-article-describe-bindings): New function.
4228         (gnus-article-read-summary-keys): Use it.
4229         (gnus-article-mode-map): Bind `C-h b' to it.
4230
4231 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4232
4233         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
4234         XEmacs.
4235         (gnus-article-describe-key, gnus-article-describe-key-briefly): Protect
4236         against non-character events.
4237
4238         * lpath.el: Fbind map-keymap for Emacs 21.
4239
4240 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
4241
4242         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url): New
4243         command.
4244         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
4245         instead of END.  Change name of the temp file.
4246         (gnus-group-gmane-group-download-format): Add doc string.  Make it
4247         customizable.
4248
4249 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4250
4251         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
4252         bind `S W' to gnus-article-wide-reply-with-original; set default
4253         binding to gnus-article-read-summary-send-keys.
4254         (gnus-article-read-summary-keys): Fix the order of keys; display
4255         continuation keys correctly in the echo area; describe bindings
4256         correctly when keys end with `C-h'.
4257         (gnus-article-read-summary-send-keys): New function.
4258         (gnus-article-describe-key, gnus-article-describe-key-briefly): Work
4259         for gnus-article-read-summary-send-keys; display continuation keys
4260         correctly in the echo area.
4261         (gnus-article-reply-with-original): Ignore prefix argument.
4262         (gnus-article-wide-reply-with-original): New function.
4263
4264         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
4265         Emacs 21.
4266
4267 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
4268
4269         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
4270         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
4271
4272 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
4273
4274         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
4275         (gnus-group-read-ephemeral-gmane-group): New command.
4276
4277 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
4278
4279         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
4280
4281 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
4282
4283         * message.el (message-send-mail-function): Increase custom version.
4284
4285         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
4286         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
4287
4288 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
4289
4290         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
4291         for the cases where imap-authenticate is called with a nil buffer
4292         parameter.
4293
4294 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4295
4296         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
4297         html parts correctly; support forwarded messages.
4298         (gnus-article-browse-html-article): Remove work buffers.
4299
4300         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
4301         compiling.
4302         (netrc-bound-and-true-p): New macro.
4303         (netrc-parse): Use it instead of bound-and-true-p that is not available
4304         in XEmacs 21.4.
4305
4306 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
4307
4308         * gnus-registry.el (gnus-registry-mark-article)
4309         (gnus-registry-article-marks): Add functionality to mark articles
4310         through the Gnus registry.
4311
4312         * encrypt.el: Clarify documentation for the new pgg method.
4313         (encrypt-file-alist): Add PGG option.
4314         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
4315         functionality.  Abstract password key and messaging to external
4316         functions.
4317         (encrypt-password-key, encrypt-get-passphrase-if-needed)
4318         (encrypt-message-method-and-cipher): Add new convenience external
4319         functions.
4320         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
4321         (encrypt-pgg-process-buffer): Add PGG functionality glue.
4322
4323         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
4324         (netrc-parse): Use encrypt-file-alist to determine if
4325         encrypt-find-model or encrypt-insert-file-contents should be used.
4326
4327         * encrypt.el: Clarify documentation.  Load password-cache or
4328         password, whichever one is found first, instead of autoloading.
4329
4330 2007-12-19  Glenn Morris  <rgm@gnu.org>
4331
4332         * mml.el (message-options-set, message-narrow-to-head)
4333         (message-in-body-p, message-mail-p, message-encode-message-body):
4334         Autoload.
4335         (message-remove-header, message-narrow-to-headers-or-head)
4336         (message-subscribed-p, message-make-mail-followup-to)
4337         (message-position-on-field, message-news-p)
4338         (message-options-set-recipient, message-generate-headers)
4339         (message-sort-headers): Declare as functions.
4340
4341 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
4342
4343         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
4344         convention in doc string.
4345
4346 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4347
4348         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
4349         title to html parts.
4350         (gnus-article-browse-html-article): Pass message header to it.
4351
4352         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
4353
4354 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
4355
4356         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
4357         or password compatible with XEmacs.
4358
4359 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
4360
4361         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
4362         format document.
4363         (gnus-mime-delete-part): Don't write description line if empty.
4364         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
4365
4366 2007-12-14  Johan BockgÃ¥rd  <bojohan@gnu.org>
4367
4368         * gnus-sum.el (gnus-summary-mark-unread-as-read)
4369         (gnus-summary-mark-read-and-unread-as-read)
4370         (gnus-summary-mark-current-read-and-unread-as-read)
4371         (gnus-summary-mark-unread-as-ticked): Doc fix.
4372         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
4373
4374 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4375
4376         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.  Reported by
4377         Christoph Conrad <christoph.conrad@gmx.de>.
4378
4379 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
4380
4381         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
4382         yes-or-no-p.
4383
4384 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4385
4386         * mm-decode.el (mm-add-meta-html-tag): New function.
4387         (mm-save-part-to-file, mm-pipe-part): Use it.
4388
4389         * gnus-art.el (gnus-article-browse-delete-temp-files): Use
4390         gnus-y-or-n-p instead of y-or-n-p.
4391         (gnus-article-browse-html-parts): Work with message/external-body; use
4392         mm-add-meta-html-tag.
4393
4394 2007-12-11  Glenn Morris  <rgm@gnu.org>
4395
4396         * gnus-cache.el: Require gnus-sum not just when compiling.
4397
4398         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
4399
4400         * gnus-int.el (gnus-server-opened, gnus-status-message): Move
4401         definitions before use.
4402
4403         * mm-decode.el: Require gnus-util.
4404         (mm-remove-part): Only call delete-annotation on XEmacs.
4405
4406         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
4407
4408         * nnmail.el: Require gnus-int.
4409
4410         * spam.el: Move `require's before `eval-when-compile's.
4411
4412         * gnus-ems.el (gnus-alive-p):
4413         * gnus-fun.el (message-goto-eoh):
4414         * gnus-util.el (gnus-group-name-decode):
4415         * mail-source.el (gnus-compress-sequence):
4416         * message.el (Info-goto-node, format-spec):
4417         * mm-bodies.el (message-options-get):
4418         * mm-decode.el (mm-view-pkcs7):
4419         * mm-util.el (gmm-write-region):
4420         * mml-smime.el (mml-compute-boundary)
4421         (gnus-completing-read-with-default):
4422         * mml.el (widget-button-press, gnus-make-hashtable):
4423         * mml1991.el (mm-decode-content-transfer-encoding)
4424         (mm-encode-content-transfer-encoding)
4425         (message-options-get, message-options-set):
4426         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
4427         * nnfolder.el (gnus-request-group):
4428         * nnheader.el (ietf-drums-unfold-fws):
4429         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
4430         * smime.el (gnus-run-mode-hooks):
4431         * spam-stat.el (gnus-message): Autoload.
4432
4433         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
4434         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
4435         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
4436         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
4437         Add declare-function compatibility definition.
4438
4439         * gnus-cache.el (nnvirtual-find-group-art):
4440         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
4441         (gnus-add-image, gnus-add-wash-type):
4442         * gnus-group.el (nnkiboze-score-file):
4443         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
4444         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
4445         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
4446         (message-tokenize-header, gnus-get-buffer-create)
4447         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
4448         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
4449         * gnus.el (gnus-group-decoded-name):
4450         * mail-source.el (imap-capability):
4451         * mm-bodies.el (message-options-set):
4452         * mm-decode.el (gnus-configure-windows):
4453         * mm-extern.el (message-goto-body):
4454         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
4455         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
4456         (epg-sub-key-validity, message-options-set):
4457         * mml.el (widget-event-point, gnus-configure-windows):
4458         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
4459         * mml2015.el (epg-check-configuration, epg-configuration)
4460         (message-options-set):
4461         * nndb.el (nndb-request-article):
4462         * nnfolder.el (gnus-request-create-group):
4463         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
4464         * nnmaildir.el (gnus-group-mark-article-read):
4465         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
4466         * rfc1843.el (message-fetch-field):
4467         * spam.el (gnus-extract-address-components):
4468         Declare as functions.
4469
4470 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
4471
4472         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
4473
4474         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
4475
4476         * lpath.el: Fbind run-mode-hooks for Emacs 21;
4477         bind show-trailing-whitespace for XEmacs.
4478
4479 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
4480
4481         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
4482         new no-op macro for backward compatibility.
4483
4484         * imap.el (imap-string-to-integer): New function.
4485
4486 2007-12-09  Glenn Morris  <rgm@gnu.org>
4487
4488         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
4489
4490         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
4491         * message.el, mm-view.el, sieve-manage.el, smime.el:
4492         Add declare-function compatibility definition.
4493
4494         * gnus-art.el (w3-region, w3m-region, Info-menu):
4495         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
4496         * gnus-sum.el (gnus-get-predicate):
4497         * gnus-util.el (mm-append-to-file, w32-focus-frame):
4498         * message.el (mail-abbrev-in-expansion-header-p):
4499         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
4500         (w3m-detect-meta-charset, w3m-region):
4501         * sieve-manage.el (password-read, password-cache-add)
4502         (password-cache-remove):
4503         * smime.el (password-read-and-add): Declare as functions.
4504
4505 2007-12-08  David Kastrup  <dak@gnu.org>
4506
4507         * gnus-sum.el (gnus-summary-simplify-subject-query):
4508         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
4509         `message'.
4510
4511 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4512
4513         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
4514         it to bind idna-program, installation-directory, defined-colors, and
4515         face-attribute for XEmacs of the version that compiles defcustom forms.
4516
4517 2007-12-07  Glenn Morris  <rgm@gnu.org>
4518
4519         * gnus-art.el (article-make-date-line): Revert previous change.
4520
4521 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
4522
4523         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
4524
4525 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
4526
4527         * nnmaildir.el (nnmaildir-request-update-info): Improved performance.
4528         Call gnus-add-to-range ranges only once with a prepared article-list.
4529
4530 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
4531
4532         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
4533         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
4534         group names with backslashes.  Reported by Tassilo Horn
4535         <tassilo@member.fsf.org>.
4536
4537 2007-12-06  Deepak Goel  <deego3@gmail.com>
4538
4539         * gnus-art.el (article-make-date-line):
4540         * gnus-start.el (gnus-load):
4541         * pop3.el (pop3-read-response): Fix buggy call to `error'.
4542
4543 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4544
4545         * gnus-art.el (gnus-use-idna)
4546         * gnus-start.el (gnus-site-init-file)
4547         * message.el (message-use-idna)
4548         * mm-uu.el (mm-uu-hide-markers)
4549         * smiley.el (smiley-style): Revert changes that suppress warnings.
4550
4551 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4552
4553         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
4554         specify charset to html source.  Reported by Christoph Conrad
4555         <christoph.conrad@gmx.de>.
4556
4557 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
4558
4559         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
4560         idna-program in order to suppress byte compile warning issued by XEmacs
4561         that came to byte compile the default value section of defcustom forms
4562         recently.
4563
4564         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
4565         value of installation-directory.
4566
4567         * message.el (message-use-idna): Don't directly refer to the value of
4568         idna-program.
4569
4570         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
4571
4572         * smiley.el (smiley-style): Don't directly call face-attribute.
4573
4574 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
4575
4576         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
4577
4578         * gnus-dired.el: Reduce Gnus dependencies.
4579         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml): Don't
4580         require.  Use autoloads instead.
4581         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
4582         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
4583         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
4584         (gnus-dired-mode): Adjust doc string.
4585         (gnus-dired-mail-mode): New variable.
4586         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
4587         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
4588         (gnus-dired-mail-buffers): New function.  Return mail or message
4589         composition buffers.
4590         (gnus-dired-attach): Use it.
4591         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
4592         NO-DECODE.
4593         (gnus-dired-print): Use `gnus-print-buffer' depending on
4594         `gnus-dired-mail-mode'.
4595
4596 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
4597
4598         * rfc2047.el (rfc2047-encoded-word-regexp)
4599         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
4600         explaining what regexp patterns are for.
4601
4602 2007-12-04  Glenn Morris  <rgm@gnu.org>
4603
4604         * password.el: Move to password-cache.el.
4605
4606         * mml1991.el (password-read, password-cache-add, password-cache-remove):
4607         * mml2015.el (password-read, password-cache-add, password-cache-remove):
4608         * mml-smime.el (password-read, password-cache-add)
4609         (password-cache-remove):
4610         No need to autoload, since mml-sec requires password.
4611
4612         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
4613         * message.el (gnus-extract-address-components):
4614         * mml-smime.el (gnus-extract-address-components): Define for compiler.
4615
4616         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
4617         password.
4618
4619 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
4620
4621         * mailcap.el: Reduce dependencies.
4622         (mail-header-parse-content-type): Autoload.
4623         (mailcap-delete-duplicates): New alias.
4624         (mailcap-mime-info): Add optional argument NO-DECODE.
4625         (mailcap-mime-types): Use mailcap-delete-duplicates.
4626
4627         * message.el (message-ignored-supersedes-headers): Add "X-ID".
4628
4629 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
4630
4631         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
4632         (imap-parse-status): Upcase status-att for servers that sends them
4633         lower-case (e.g., MS Exchange 2007).
4634
4635 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4636
4637         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
4638         function.
4639
4640         * gnus-uu.el (gnus-uu-decode-yenc): New command.
4641         (gnus-uu-yenc-article): New function.
4642
4643         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
4644
4645         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original
4646         buffer.
4647
4648 2007-12-02  Glenn Morris  <rgm@gnu.org>
4649
4650         * binhex.el (binhex): New custom group.
4651         (binhex-decoder-program, binhex-decoder-switches)
4652         (binhex-use-external): Move to the binhex custom group.
4653
4654         * uudecode.el (uudecode): New custom group.
4655         (uudecode-decoder-program, uudecode-decoder-switches)
4656         (uudecode-use-external): Move to the uudecode custom group.
4657
4658         * netrc.el (top-level): Don't load `encrypt' features.
4659         (netrc-parse): Don't use encrypt.
4660         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
4661
4662         * encrypt.el: Remove file.
4663
4664 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
4665
4666         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
4667         matches on patches.
4668
4669         * gnus-art.el (gnus-article-browse-html-article): Mention
4670         `mm-text-html-renderer' in the doc string.
4671
4672         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
4673         string.  Add comments.
4674
4675         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
4676         if rhs is ASCII.
4677
4678 2007-12-01  Glenn Morris  <rgm@gnu.org>
4679
4680         * mail-source.el (top-level): Require format-spec before
4681         eval-when-compile.
4682
4683 2007-11-30  Glenn Morris  <rgm@gnu.org>
4684
4685         * encrypt.el: Require password, rather than autoloading password-read.
4686
4687 2007-11-29  Glenn Morris  <rgm@gnu.org>
4688
4689         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
4690         (sasl-make-client, sasl-next-step, sasl-step-data)
4691         (sasl-step-set-data): Declare as functions.
4692
4693 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
4694
4695         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
4696
4697 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
4698
4699         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
4700         certs should be verified and what is to be done in the event of a
4701         verification failure.
4702
4703         * gnus.el (gnus-method-to-server): Add an optional parameter so the
4704         caller can indicate whether the cache should be disregarded for this
4705         call.  This way the result of the call is reproducible at all times and
4706         can be considered a canonical server name for the supplied method.
4707         (gnus-agent-method-p): Canonicalize server names by pushing their
4708         method through `gnus-method-to-server' using the no-cache argument.
4709
4710         * gnus-srvr.el (gnus-server-insert-server-line): Call
4711         `gnus-method-to-server' with `no-cache' argument.
4712
4713         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
4714         gnus-agent-possibly-synchronize-flags as this should be called when the
4715         server is actually being opened.
4716         (gnus-agent-possibly-synchronize-flags)
4717         (gnus-agent-possibly-synchronize-flags-server): Move check for the
4718         flags file of an agentized server to the latter function.
4719
4720         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
4721         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
4722         after a connection has been established successfully.
4723
4724 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4725
4726         * gnus-art.el (article-display-face): Force to display face if called
4727         interactively; check if gnus-article-x-face-too-ugly matches author.
4728         (article-display-x-face): Display face even if From header is missing
4729         as article-display-face does.
4730
4731 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
4732
4733         * hashcash.el (message-narrow-to-headers-or-head)
4734         (message-fetch-field, message-goto-eoh)
4735         (message-narrow-to-headers): Declare as functions.
4736
4737 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
4738
4739         * mail-source.el (mail-sources): Default to fetch from file for
4740         compatibility with default of nnmail-spool-file.
4741
4742 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
4743
4744         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
4745         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
4746         to look for encoded word that should be encoded again.
4747         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
4748         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
4749         encoding pattern.
4750         (rfc2047-decode-region): Switch strict regexp and loose one according
4751         to rfc2047-allow-irregular-q-encoded-words.
4752
4753 2007-11-25  Romain Francoise  <romain@orebokech.com>
4754
4755         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
4756
4757 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
4758
4759         * tls.el (tls-program): Provide more custom choices from
4760         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
4761         (tls-process-connection-type, tls-success): Remove "*" in doc string.
4762
4763 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4764
4765         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
4766         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
4767
4768         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
4769         `nnmail-spool-file'.
4770
4771         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
4772         `nnmail-spool-file'.
4773
4774         * gnus-move.el (gnus-change-server): Ditto.
4775
4776         * gnus-kill.el (gnus-batch-score): Ditto.
4777
4778         * gnus-cache.el (gnus-jog-cache): Ditto.
4779
4780         * gnus-msg.el (gnus-summary-reply):
4781         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
4782
4783 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4784
4785         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
4786         version.  Minor improvement to doc strings.
4787         (tls-program): Add comment.
4788
4789 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
4790
4791         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
4792         (tls-checktrust): New variable.  Check if GNU TLS complained about a
4793         mismatch between the hostname provided in the certificate and the name
4794         of the host connnecting to.
4795         (open-tls-stream): Use them.  Check certificates against trusted root
4796         certificates.
4797
4798 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
4799
4800         * gnus-cache.el (gnus-cache-generate-nov-databases):
4801         Use nnml-generate-nov-databases-directory instead of
4802         nnml-generate-nov-databases-1.
4803
4804 2007-11-24  Glenn Morris  <rgm@gnu.org>
4805
4806         * message.el (message-tool-bar-retro): Update for rename
4807         mail_send.xpm->mail-send.xpm.
4808
4809 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
4810
4811         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
4812         `smime-ldap-search' for Emacs 22 and up.
4813
4814 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4815
4816         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
4817
4818         * message.el (message-send-mail-function): Fix error convention.
4819         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
4820         (message-widen-reply, message-send-mail, message-talkative-question)
4821         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
4822         (message-clone-locals, message-send-news): Use with-current-buffer.
4823         (message-insert-or-toggle-importance): Remove unused var `valid'.
4824         (message-make-references): Remove unused var `new-references'.
4825         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
4826
4827 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
4828
4829         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
4830         (spam-split-symbolic-return-positive): Reflow docstring.
4831         (spam-backends, spam-summary-exit-behavior)
4832         (spam-mark-ham-unread-before-move-from-spam-group)
4833         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
4834         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
4835         (spam-clear-cache, spam-backend-check, spam-install-backend)
4836         (spam-install-statistical-backend, spam-list-of-processors)
4837         (spam-group-processor-p, spam-split, spam-bogofilter-score)
4838         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
4839         (spam-check-crm114, spam-initialize, spam-unload-hook):
4840         Fix typos in docstrings.
4841
4842 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4843
4844         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
4845         been checked if they have never been read and those group levels are
4846         higher than the one that a user specified.
4847
4848 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4849
4850         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
4851         foreign groups unless a group level is specified by a user.
4852         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
4853
4854 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
4855
4856         * message.el (message-send-mail-function): Require sendmail.
4857
4858 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
4859
4860         * message.el (message-send-mail-function): Check for smtpmail too.
4861
4862         * utf7.el (utf7-encode, utf7-decode): Use coding system
4863         `utf-7'/`utf-7-imap' from utf-7.el' if available.
4864
4865         * message.el (message-send-mail-function): New function.
4866         (message-send-mail-function): Set default using
4867         message-send-mail-function.  Adjust doc string.
4868         (message-send-mail-with-mailclient): New function.
4869
4870 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
4871
4872         * smime.el (from):
4873         * rfc2047.el (message-posting-charset):
4874         * qp.el (mm-use-ultra-safe-encoding):
4875         * pop3.el (parse-time-months):
4876         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
4877         * nnml.el (files):
4878         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
4879         (jka-compr-compression-info-list, ange-ftp-path-format)
4880         (efs-path-regexp):
4881         * nndiary.el (files):
4882         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
4883         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
4884         (epg-digest-algorithm-alist, inhibit-redisplay)
4885         (password-cache-expiry):
4886         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
4887         (pgg-output-buffer, password-cache-expiry):
4888         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
4889         (efs-path-regexp):
4890         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
4891         (inhibit-redisplay):
4892         * mm-uu.el (file-name, start-point, end-point, entry)
4893         (gnus-newsgroup-name, gnus-newsgroup-charset):
4894         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
4895         (latin-unity-ucs-list):
4896         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
4897         (mm-uu-binhex-decode-function):
4898         * message.el (gnus-message-group-art, gnus-list-identifiers)
4899         (rmail-enable-mime-composing, gnus-local-organization)
4900         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
4901         (gnus-read-active-file, facemenu-add-face-function)
4902         (facemenu-remove-face-function, gnus-article-decoded-p)
4903         (tool-bar-mode):
4904         * mail-source.el (display-time-mail-function):
4905         * gnus-util.el (nnmail-pathname-coding-system)
4906         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
4907         (gnus-original-article-buffer, gnus-user-agent)
4908         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
4909         (xemacs-codename, sxemacs-codename, emacs-program-version):
4910         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
4911         * gnus-start.el (gnus-agent-covered-methods)
4912         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
4913         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
4914         (gnus-newsgroup-headers, gnus-group-list-mode)
4915         (gnus-group-mark-positions, gnus-newsgroup-data)
4916         (gnus-newsgroup-unreads, nnoo-state-alist)
4917         (gnus-current-select-method, mail-sources)
4918         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
4919         (nnmail-spool-file, gnus-cache-active-hashtb):
4920         * gnus-mh.el (mh-lib-progs):
4921         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
4922         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
4923         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
4924         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
4925         (gnus-group-buffer):
4926         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
4927         (font-lock-set-defaults):
4928         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
4929         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
4930         (gnus-summary-post-menu, total-parts, type, condition, length):
4931         * gnus-agent.el (gnus-agent-read-agentview):
4932         * flow-fill.el (show-trailing-whitespace):
4933         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
4934         eval-and-compile wrappers for byte compiler pacifiers.
4935
4936         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
4937         (mm-display-inline-fontify): Check for featurep 'xemacs not
4938         extent-list.
4939
4940         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
4941         itimer-list.
4942         (mm-create-image-xemacs): Only do something for XEmacs.
4943         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
4944
4945         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
4946
4947         * gnus-registry.el (gnus-adaptive-word-syntax-table):
4948         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
4949
4950 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
4951
4952         * nnimap.el (nnimap-split-download-body):
4953         * gnus-demon.el (gnus-demon):
4954         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
4955
4956 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4957
4958         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer): New
4959         macros.
4960         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
4961         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
4962         copy data from unibyte buffer to multibyte current buffer.
4963         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
4964         to copy data from unibyte current buffer to multibyte buffer.
4965         (nntp-make-process-buffer): Make process buffer unibyte.
4966
4967         * pop3.el (pop3-open-server): Fix typo in Lisp code.
4968
4969 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
4970
4971         * pop3.el (pop3-open-server): Accept and process data more robustly at
4972         connexion start to avoid spurious "POP SSL connexion failed" errors.
4973
4974 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
4975
4976         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
4977         read group names.
4978
4979 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
4980
4981         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
4982
4983 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
4984
4985         * nnmail.el (nnmail-parse-active): Make group names unibyte.
4986         (nnmail-save-active): Use a unibyte buffer when saving active file,
4987         which may contain non-ASCII group names.
4988
4989         * nnml.el (nnml-request-group): Decode group names in messages.
4990
4991 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
4992
4993         * message.el (message-citation-line-function)
4994         (message-insert-formatted-citation-line): Fix spelling of
4995         `message-insert-formated-citation-line'.
4996
4997 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
4998
4999         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
5000
5001 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5002
5003         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
5004         nnmail-pathname-coding-system.
5005
5006         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
5007         that a user enters; decode group names in messages.
5008
5009         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
5010
5011 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
5012
5013         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
5014
5015         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
5016
5017         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
5018         risky local variable.
5019
5020         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
5021
5022 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
5023
5024         * encrypt.el: Improve documentation to fix function name typo.
5025         Reported by Daiki Ueno <ueno@unixuser.org>.
5026
5027 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5028
5029         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
5030         even if the point is not in the last page of an article.
5031         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
5032         back to the previous page.
5033
5034 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
5035
5036         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
5037
5038 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5039
5040         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
5041
5042 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5043
5044         * message.el (message-check-news-body-syntax): Avoid
5045         mm-string-as-multibyte.
5046         (message-hide-headers): Don't assume (point-min)==1.
5047
5048 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
5049
5050         * message.el (message-remove-blank-cited-lines): Fix if remove is
5051         given.
5052         (message-bogus-address-regexp): New variable.
5053         (message-bogus-recipient-p): New function.
5054         (message-check-recipients): New command.
5055         (message-syntax-checks): Add `bogus-recipient'.
5056         (message-fix-before-sending): Add `bogus-recipient'.
5057
5058         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
5059         (gnus-treat-body-boundary): Don't test window-system.
5060
5061 2007-10-28  Leo  <sdl.web@gmail.com>  (tiny change)
5062
5063         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
5064
5065 2007-10-28  Miles Bader  <miles@gnu.org>
5066
5067         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
5068         at compile-time too.
5069
5070 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
5071
5072         * gnus-msg.el (gnus-message-setup-hook): Add
5073         `message-remove-blank-cited-lines' to options.
5074
5075 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
5076
5077         * message.el (message-remove-blank-cited-lines): New function.
5078         Suggested by Karl Plästerer.
5079
5080 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5081
5082         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
5083         mapc.
5084
5085         * imap.el (imap-open): Replace mapcar called for effect with mapc.
5086         (top-level): Use mapc to set functions to be traced for debugging.
5087
5088         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
5089         called for effect with while loop.
5090
5091         * message.el (message-talkative-question): Replace mapcar called for
5092         effect with mapc.
5093
5094         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
5095         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
5096         called for effect with dolist.
5097
5098         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
5099
5100         * nndiary.el: Use dolist instead of mapcar to add diary headers to
5101         gnus-extra-headers and nnmail-extra-headers.
5102
5103         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
5104         called for effect with dolist.
5105         (top-level): Use mapc to set functions to be traced for debugging.
5106
5107         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
5108         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
5109         dolist.
5110
5111         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
5112         Replace mapcar called for effect with mapc.
5113         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
5114         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
5115         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
5116         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
5117
5118         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
5119         remove-if that's a cl function.
5120
5121         * webmail.el (webmail-debug): Replace mapcar called for effect with
5122         dolist.
5123
5124         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
5125         with mapc.
5126
5127 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5128
5129         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
5130         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
5131         with while loop.
5132
5133         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
5134         functions from article-* functions.
5135         (gnus-multi-decode-header): Replace mapcar called for effect with
5136         dolist.
5137
5138         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
5139         (gnus-bookmark-show-details): Replace mapcar called for effect with
5140         while loop.
5141
5142         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
5143         called for effect with while loop.
5144
5145         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
5146         with dolist.
5147
5148         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Replace
5149         mapcar called for effect with dolist.
5150
5151         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
5152
5153         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
5154         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
5155         Replace mapcar called for effect with dolist.
5156         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
5157         mapc.
5158
5159         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
5160         Replace mapcar called for effect with dolist.
5161         (gnus-topic-list): Replace mapcar called for effect with mapc.
5162
5163         * gnus.el: Use mapc instead of mapcar to add autoloads.
5164
5165 2007-10-23  Richard Stallman  <rms@gnu.org>
5166
5167         * gnus-group.el (gnus-group-highlight): Mark as risky.
5168
5169 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5170
5171         * gnus.el (gnus-server-to-method): Return method found first in
5172         gnus-newsrc-alist.
5173
5174         * gnus-art.el (gnus-article-highlight-signature)
5175         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
5176         button overlay without the front stickiness.
5177
5178 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
5179
5180         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
5181         overview buffer needed a catch to receive its throw.
5182         (gnus-agent-flush-cache): Declared as interactive to make this function
5183         easier to use.
5184
5185 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
5186
5187         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
5188         `next-line'.
5189
5190 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5191
5192         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
5193         exclude address matching message-dont-reply-to-names.
5194
5195 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5196
5197         * gnus-util.el (gnus-string<): New function.
5198
5199         * gnus-sum.el (gnus-article-sort-by-author)
5200         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
5201
5202 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5203
5204         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
5205         the frame-focus tag is set in gnus-buffer-configuration.
5206
5207 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
5208
5209         * gnus-art.el (gnus-article-add-button): Make a button overlay without
5210         the front stickiness.
5211
5212 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5213
5214         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
5215         url pattern; remove duplicate one.
5216         (gnus-article-extend-url-button): New function.
5217         (gnus-article-add-buttons): Use it.
5218         (gnus-button-push): Use concatenated url that it makes.
5219
5220 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
5221
5222         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
5223
5224 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5225
5226         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
5227         Don't hardcode point-min==1.
5228
5229 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
5230
5231         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
5232         Fix comment about "iso8859-1".
5233
5234 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
5235
5236         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
5237         ones returned from the verify-function.
5238
5239         * mm-uu.el (mm-uu-pgp-signed-extract-1): Call
5240         mml2015-extract-cleartext-signature if extraction failed.
5241
5242 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
5243
5244         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
5245         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
5246         failed.
5247
5248 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
5249
5250         * Relicense "GPLv2 or later" files to "GPLv3 or later".
5251
5252 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
5253
5254         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
5255         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
5256         recommends to use EasyPG instead of PGG.
5257
5258         * pgg.el: Revert to revision 6.23.2.16.
5259
5260         * pgg-def.el: Revert to revision 6.6.2.14.
5261
5262         * pgg-gpg.el: Revert to revision 6.23.2.34.
5263
5264 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
5265
5266         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
5267         to mark a thread as expirable.  Add variable `hide' to handle hiding of
5268         thread for both the null and zero (kill/expire thread) universal prefix
5269         cases.
5270         (gnus-summary-expire-thread): Add new function to expire a thread,
5271         using gnus-summary-kill-thread.
5272         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
5273         shortcuts for gnus-summary-expire-thread.
5274         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
5275         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
5276
5277 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
5278
5279         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
5280         extras value, so an extras entry can be deleted.
5281         (gnus-registry-delete-extra-entry): Use it.
5282         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
5283         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
5284         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
5285         storage through the gnus-registry, and provide an appropriate API for
5286         it.
5287
5288 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5289
5290         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
5291         Suggested by Leo <sdl.web@gmail.com>.
5292
5293         * gnus.el: Do.
5294
5295 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5296
5297         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
5298         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
5299
5300         * gnus-agent.el (gnus-agent-fetch-headers): Do.
5301
5302         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5303         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
5304
5305 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5306
5307         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
5308         newline.
5309         (nnmbox-request-accept-article): Don't change article in source buffer;
5310         narrow to header to use message-fetch-field rather than
5311         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
5312         (nnmbox-request-replace-article): Quote lines that'll be misidentified
5313         as delimiters; make sure article ends with newline.
5314         (nnmbox-delete-mail): Correct last position of article to be deleted;
5315         ignore X-Gnus-Newsgroup header in article body.
5316         (nnmbox-save-mail): Quote lines looking like delimiters at the right
5317         positions; make sure article ends with newline.
5318
5319         * message.el (message-display-abbrev): Don't infloop when a user
5320         inserts SPC in the beginning of header.
5321
5322         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
5323         coding-system-for-read and coding-system-for-write for XEmacs having no
5324         file-coding feature.
5325
5326         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
5327
5328 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
5329
5330         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
5331         list of groups not followed by default.  Fix type to be regexp.
5332         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
5333
5334 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
5335
5336         * hmac-def.el (define-hmac-function): Switch from old-style to
5337         new-style backquotes.
5338
5339         * md4.el (md4-make-step): Likewise.
5340
5341 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5342
5343         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
5344         raw-text coding system when saving .newsrc file, which may contain
5345         non-ASCII group names.
5346
5347 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5348
5349         * gnus-cus.el (gnus-score-extra): New widget.
5350         (gnus-score-extra-convert): New function.
5351         (gnus-score-customize): Use it for Extra.
5352
5353 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
5354
5355         * mml2015.el (mml2015-extract-cleartext-signature): New function.
5356         (mml2015-mailcrypt-clear-verify): Use it.
5357         (mml2015-gpg-clear-verify): Use it.
5358         (mml2015-pgg-clear-verify): Use it.
5359         (mml2015-epg-clear-verify): Replace the current part with the output
5360         from GnuPG; don't extract the plaintext by itself.
5361
5362         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
5363         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
5364         mml2015-clear-verify-function; don't touch the armor headers or
5365         dash-escaped text here.
5366
5367 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5368
5369         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
5370         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
5371         parts, or application/octet-stream as a last resort.
5372         (gnus-mime-view-part-as-type): Don't toggle display.
5373         (gnus-mime-view-part-as-charset): Don't turn off display before
5374         querying charset.
5375
5376         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
5377         stuff to undisplayer function in Emacs.
5378         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
5379
5380         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
5381         text/calendar parts.
5382
5383 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5384
5385         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
5386         decoding text/calendar parts.
5387
5388         * message.el (message-forward-make-body-mime): Always mark body as
5389         having no illegible text; remove signed-or-encrypted argument.
5390         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
5391
5392         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
5393         (mml-generate-mime-1): Don't encode body if it is specified to be in
5394         raw form; don't make buffer be unibyte when inserting multibyte string.
5395
5396 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5397
5398         * sha1.el: Fix up comment style.
5399         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
5400         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
5401
5402         * hex-util.el: Fix up comment style.
5403         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
5404
5405         * gnus-salt.el: Use with-current-buffer.
5406         (gnus-pick-setup-message): Fix long-standing typo.
5407
5408 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5409
5410         * imap.el (imap-logout-timeout): New variable.
5411         (imap-logout, imap-logout-wait): New functions.
5412         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
5413
5414         * nnimap.el (nnimap-logout-timeout): New server variable.
5415         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
5416         nnimap-logout-timeout.
5417
5418         * gnus-art.el (gnus-article-summary-command-nosave)
5419         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
5420
5421 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5422
5423         * gnus.el (gnus-maximum-newsgroup): New variable.
5424
5425         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
5426         according to gnus-maximum-newsgroup.
5427
5428         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
5429         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
5430         Limit the range of articles according to gnus-maximum-newsgroup.
5431
5432 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
5433
5434         * gnus-art.el (gnus-sticky-article): Fixed problems described in
5435         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
5436         Don't perform gnus-configure-windows here; reuse existing sticky
5437         article buffer.
5438
5439         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
5440         it doesn't exist in gnus-article-mode.
5441
5442 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5443
5444         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
5445         (gnus-agent-decoded-group-name): New function.
5446         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
5447         (gnus-agent-expire-group-1): Use it; decode group name in messages.
5448
5449 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
5450
5451         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
5452         Add binding for gnus-sticky-article.
5453         (gnus-summary-exit): Don't kill sticky article buffers.
5454
5455         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
5456         article buffer.
5457         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
5458         (gnus-kill-sticky-article-buffers): New commands.
5459
5460 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5461
5462         * nntp.el (nntp-xref-number-is-evil): New server variable.
5463         (nntp-find-group-and-number): If it is non-nil, don't trust article
5464         numbers in the Xref header.
5465
5466 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5467
5468         * gnus-agent.el (gnus-agent-read-group): New function.
5469         (gnus-agent-flush-group, gnus-agent-expire-group)
5470         (gnus-agent-regenerate-group): Use it.
5471         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
5472         nnmail-pathname-coding-system.
5473
5474 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5475
5476         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
5477
5478         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
5479         that are unread as unread, and also as selected so that information of
5480         marks having been changed by a user may be updated when exiting group.
5481
5482 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
5483
5484         * gnus-art.el (gnus-mime-display-single): Pass part number that is
5485         calculated ignoring signature parts to gnus-treat-article.
5486
5487 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5488
5489         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
5490         a point here in order to keep the window start.
5491         (gnus-insert-mime-security-button): Make a button overlay without the
5492         front stickiness.
5493         (gnus-mime-display-security): Goto the end of a button.
5494
5495         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
5496
5497 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5498
5499         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
5500         group-name-at-point.
5501         (gnus-group-completing-read): New function that offers decoded
5502         non-ASCII group names for completion.
5503         (gnus-fetch-group, gnus-group-read-ephemeral-group)
5504         (gnus-group-jump-to-group, gnus-group-make-group-simple)
5505         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
5506         (gnus-group-fetch-control): Use it.
5507         (gnus-fetch-group): Use group-name-at-point for the initial value
5508         rather than the default value; use gnus-alive-p.
5509
5510         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
5511         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
5512         (gnus-summary-post-news): Use gnus-group-completing-read.
5513
5514         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
5515         (gnus-read-move-group-name): Decode group name for completion.
5516
5517 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
5518
5519         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
5520         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
5521         Yamaoka slightly modified the code).
5522
5523 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5524
5525         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
5526         (nnmail-split-incoming): Bind it.
5527
5528         * nnml.el (nnml-group-name-charset): New function.
5529         (nnml-decoded-group-name): Use it; don't decode group name if
5530         nnmail-group-names-not-encoded-p is non-nil.
5531         (nnml-encoded-group-name): New function.
5532         (nnml-group-pathname): Inline nnml-decoded-group-name.
5533         (nnml-request-expire-articles): Decode group name in message.
5534         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
5535         nnmail-pathname-coding-system.
5536         (nnml-save-mail, nnml-active-number): Work with decoded group names and
5537         not decoded ones according to nnmail-group-names-not-encoded-p.
5538         (nnml-generate-active-info): Use nnml-encoded-group-name.
5539
5540 2007-08-08  Glenn Morris  <rgm@gnu.org>
5541
5542         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
5543         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
5544         doc-strings and comments.
5545
5546 2007-07-25  Glenn Morris  <rgm@gnu.org>
5547
5548         * Relicense all FSF files to GPLv3 or later.
5549
5550 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5551
5552         * gnus-sum.el (gnus-summary-move-article): Make
5553         gnus-summary-respool-article work.
5554
5555 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
5556
5557         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
5558         string.
5559
5560 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
5561
5562         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
5563         that should be ignored when comparing distant RSS articles with local
5564         ones.
5565         (nnrss-make-hash-index): New function.  Create a hash index according
5566         to the ignored fields.
5567         (nnrss-check-group): Use it.
5568
5569 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5570
5571         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
5572
5573         * gnus-art.el (article-decode-group-name): Decode Xref header too.
5574
5575         * gnus-group.el (gnus-group-make-group): Encode group name here unless
5576         the new optional argument ENCODED is non-nil.
5577         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
5578         coding system for encoding group name.
5579         (gnus-group-make-rss-group): Pass un-encoded group name to
5580         gnus-group-make-group.
5581         (gnus-group-set-info): Tell gnus-group-make-group that group name is
5582         encoded.
5583
5584         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
5585         Encode group name to which articles are moved or copied.
5586         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
5587         coding system for encoding Newsgroup, Followup-To and Xref headers.
5588
5589         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
5590         marks; use nnheader-file-coding-system to write a file.
5591         (nnagent-retrieve-headers): Bind file-name-coding-system to
5592         nnmail-pathname-coding-system.
5593
5594         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
5595
5596         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
5597         (nnml-request-article, nnml-request-create-group)
5598         (nnml-request-rename-group, nnml-find-id)
5599         (nnml-possibly-change-directory, nnml-possibly-create-directory)
5600         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
5601         (nnml-save-marks): Use nnml-group-pathname instead of
5602         nnmail-group-pathname.
5603
5604         (nnml-request-create-group, nnml-request-expire-articles)
5605         (nnml-request-move-article, nnml-request-delete-group)
5606         (nnml-deletable-article-p, nnml-possibly-create-directory)
5607         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
5608         (nnml-open-marks): Bind file-name-coding-system to
5609         nnmail-pathname-coding-system.
5610
5611         (nnml-request-article): Pass server argument to nnml-find-group-number.
5612         (nnml-request-create-group, nnml-active-number, nnml-save-marks): Pass
5613         server argument to nnml-possibly-create-directory.
5614         (nnml-request-accept-article): Pass server argument to
5615         nnml-active-number and nnml-save-mail.
5616         (nnml-find-group-number): Pass server argument to nnml-find-id.
5617         (nnml-request-update-info): Pass server argument to
5618         nnml-marks-changed-p.
5619
5620         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
5621         (nnml-save-mail, nnml-active-number): Add server argument.
5622
5623         (nnml-request-delete-group): Warn if group is missing.
5624         (nnml-get-nov-buffer): Decode group name.
5625         (nnml-generate-active-info): Encode group name.
5626         (nnml-open-marks): Decode group name in messages.
5627
5628 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5629
5630         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
5631         if it is not specified.
5632         (gnus-article-pipe-part, gnus-article-save-part)
5633         (gnus-article-interactively-view-part, gnus-article-copy-part)
5634         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
5635         (gnus-article-inline-part, gnus-article-save-part-and-strip)
5636         (gnus-article-replace-part, gnus-article-delete-part)
5637         (gnus-article-view-part-as-type): Pass raw prefix argument to
5638         gnus-article-part-wrapper.
5639
5640 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5641
5642         * gnus-agent.el (gnus-agent-save-active): Bind
5643         nnheader-file-coding-system to gnus-agent-file-coding-system.
5644
5645         * gnus-cache.el (gnus-cache-save-buffers)
5646         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
5647         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
5648         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
5649         (gnus-cache-braid-nov, gnus-cache-braid-heads)
5650         (gnus-cache-generate-active, gnus-cache-rename-group)
5651         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
5652         (gnus-cache-update-overview-total-fetched-for): Bind
5653         file-name-coding-system to nnmail-pathname-coding-system.
5654         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names): New
5655         variables.
5656         (gnus-cache-decoded-group-name): New function.
5657         (gnus-cache-file-name): Use it.
5658         (gnus-cache-generate-active): Use non-decoded group name for active.
5659
5660         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
5661         right place.
5662         (gnus-write-active-file): Don't break non-ASCII group names.
5663
5664         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
5665         nnmail-pathname-coding-system.
5666
5667         * lpath.el: Bind default-file-name-coding-system,
5668         file-name-coding-system and language-info-alist for XEmacs.
5669
5670         * gnus-uu.el (gnus-uu-decode-save): Typo.
5671
5672 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5673
5674         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
5675
5676 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5677
5678         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
5679         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
5680         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
5681         (gnus-agent-flush-group, gnus-agent-flush-cache)
5682         (gnus-agent-fetch-headers, gnus-agent-load-alist)
5683         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
5684         (gnus-agent-retrieve-headers, gnus-agent-request-article)
5685         (gnus-agent-regenerate-group)
5686         (gnus-agent-update-files-total-fetched-for)
5687         (gnus-agent-update-view-total-fetched-for): Bind
5688         file-name-coding-system to nnmail-pathname-coding-system.
5689         (gnus-agent-group-pathname): Don't encode file names by
5690         nnmail-pathname-coding-system.
5691         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
5692         coding-system-for-write instead of buffer-file-coding-system to
5693         gnus-agent-file-coding-system.
5694
5695         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
5696         Decode group name.
5697
5698         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
5699
5700         * gnus-start.el (gnus-update-active-hashtb-from-killed)
5701         (gnus-read-newsrc-el-file): Make group names unibyte.
5702
5703         * nnmail.el (nnmail-group-pathname): Don't encode file names by
5704         nnmail-pathname-coding-system.
5705
5706         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
5707         (nnrss-request-delete-group): Bind file-name-coding-system to
5708         nnmail-pathname-coding-system.
5709         (nnrss-read-server-data, nnrss-read-group-data): Bind
5710         file-name-coding-system correctly.
5711         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
5712
5713         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
5714         (nntp-server-to-method-cache): New variable.
5715         (nntp-group-pathname): New function that decodes non-ASCII group names.
5716         (nntp-possibly-create-directory, nntp-marks-changed-p)
5717         (nntp-save-marks, nntp-open-marks): Use it.
5718         (nntp-possibly-create-directory, nntp-open-marks):
5719         Bind file-name-coding-system to nnmail-pathname-coding-system.
5720         (nntp-open-marks): Decode group names when bootstrapping marks.
5721
5722         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
5723         Newsgroups and Folowup-To headers.
5724
5725 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5726
5727         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
5728         (gnus-server-closed-face, gnus-server-denied-face)
5729         (gnus-server-offline-face): Remove variable.
5730         (gnus-server-font-lock-keywords): Use faces that are not aliases.
5731
5732         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
5733         of modifying message-stack directly for XEmacs.
5734
5735         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
5736         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
5737         if the coding-system argument is nil for XEmacs.
5738
5739         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
5740         mm-charset-override-alist.
5741
5742         * rfc2047.el: Don't require base64; require rfc2045 for the function
5743         rfc2045-encode-string.
5744         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
5745         to quote the parameter value.
5746
5747 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5748
5749         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
5750         form in gnus-group-name-charset-method-alist.
5751
5752         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
5753         overrides the default layout edit-form.
5754
5755         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
5756
5757         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
5758
5759 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5760
5761         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
5762         as unfetched articles.
5763
5764 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
5765
5766         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
5767
5768 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
5769
5770         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
5771         original back end that keeps marks in the local system.
5772
5773 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5774
5775         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
5776         arg of pop-to-buffer for XEmacs.
5777         (gnus-article-read-summary-keys): Ditto; don't restore window
5778         configuration if summary command ends up with neither article buffer
5779         nor summary buffer; describe bindings if summary keys end with C-h.
5780
5781 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5782
5783         * message.el (message-fix-before-sending): Skip raw message part to be
5784         forwarded while checking illegible text.
5785         (message-forward-make-body-mime, message-forward-make-body): Mark
5786         signed or encrypted raw message as having no illegible text.
5787
5788 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5789
5790         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
5791         (gnus-message-with-timestamp-1): New macro.
5792         (gnus-message-with-timestamp): New function.
5793         (gnus-message): Use them.
5794
5795         * nnheader.el (nnheader-message): Use them.
5796
5797 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
5798
5799         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
5800         .newsrc.eld file.
5801
5802 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
5803
5804         * gnus-agent.el (gnus-agent-fetch-headers)
5805         (gnus-agent-retrieve-headers): Bind
5806         gnus-decode-encoded-address-function to identity.
5807
5808         * nntp.el (nntp-send-xover-command): Recognize an xover command is
5809         available also when the server returns simply a dot.
5810
5811         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
5812
5813 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
5814
5815         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
5816
5817 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
5818
5819         * gnus-ems.el (gnus-x-splash): Make it work.
5820
5821         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
5822         from being used.
5823
5824         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
5825
5826 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
5827
5828         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
5829         4th and the 5th arguments.
5830
5831         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
5832         the front stickiness.
5833         (gnus-article-summary-command-nosave): Correct the order of the
5834         arguments passed to pop-to-buffer.
5835         (gnus-article-read-summary-keys): Ditto; make it work properly when the
5836         summary command ends up with the article buffer.
5837
5838         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
5839         the same faces.
5840
5841 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
5842
5843         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
5844
5845 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
5846
5847         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
5848         * gnus-sum.el (gnus-summary-highlight):
5849         * pgg.el (pgg-sign-region, pgg-sign):
5850         * mail-source.el (mail-source-delete-old-incoming-confirm):
5851         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
5852
5853 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5854
5855         * gnus-art.el (gnus-mime-view-part-externally)
5856         (gnus-mime-view-part-internally): Fix predicate function passed to
5857         completing-read.
5858
5859         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
5860
5861         * gnus.el (gnus-update-message-archive-method): Add :version.
5862
5863 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5864
5865         * gnus.el (gnus-update-message-archive-method): New variable.
5866
5867         * gnus-start.el (gnus-setup-news): Update saved "archive" method
5868         according to gnus-message-archive-method if
5869         gnus-update-message-archive-method is non-nil.
5870
5871 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
5872
5873         * gnus-sum.el (gnus-summary-limit-to-address): New function.  Suggested
5874         by Loic Dachary <loic@dachary.org>.
5875         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
5876
5877 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
5878
5879         * message.el (message-pop-to-buffer): Add switch-function argument.
5880         (message-mail): Pass switch-function argument to it.
5881
5882 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
5883
5884         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
5885         Improve doc string.
5886
5887 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
5888
5889         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
5890         (gnus-header-content)
5891         * gnus-cite.el (gnus-cite-10)
5892         * gnus-srvr.el (gnus-server-closed)
5893         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
5894         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
5895         (gnus-group-mail-3-empty, gnus-group-mail-low)
5896         (gnus-group-mail-low-empty, gnus-splash)
5897         * message.el (message-header-to, message-header-cc)
5898         (message-header-subject, message-header-other, message-header-name)
5899         (message-header-xheader, message-separator, message-cited-text)
5900         (message-mml): Lighten colors of faces used for dark background.
5901
5902 2007-05-24  Simon Josefsson  <simon@josefsson.org>
5903
5904         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
5905         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
5906
5907 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5908
5909         * message.el (message-narrow-to-headers-or-head):
5910         Ignore mail-header-separator in the body.
5911
5912 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5913
5914         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
5915         same as window size.
5916
5917 2007-05-22  Kevin Ryde  <user42@zip.com.au>
5918
5919         * message.el (message-font-lock-keywords): Use message-header-xheader
5920         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
5921         ahead of the anything pattern, to get it recognised.
5922
5923 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5924
5925         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
5926         spam.el loads uses it in the compiled defadvice form.
5927
5928 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
5929
5930         * gnus-sum.el (gnus-articles-to-read)
5931         (gnus-summary-insert-old-articles): Don't truncate group name for
5932         `read-string'.
5933
5934         * gnus-util.el (gnus-limit-string): Delete this function.
5935
5936         * gnus-sum.el (gnus-simplify-subject-fully): Use
5937         `truncate-string-to-width' instead.
5938
5939 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
5940
5941         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.  Tell
5942         if, on summary exit, the next group has to be selected.
5943         (gnus-summary-exit): Use it.
5944
5945 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
5946
5947         * gnus-art.el (gnus-article-mode): Fix comment about displaying
5948         non-break space.
5949
5950 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5951
5952         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
5953         Check if group is not a directory.
5954         (nnfolder-request-expire-articles): Don't delete articles if the target
5955         group is not available.
5956
5957         * nnml.el (nnml-request-create-group): Properly check if group is not a
5958         file.
5959         (nnml-request-expire-articles): Don't delete articles if the target
5960         group is not available.
5961
5962         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
5963         Don't quote characters that are within parentheses.
5964
5965 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5966
5967         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
5968         (gnus-handle-ephemeral-exit): Select article according to it.
5969
5970 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
5971
5972         * message.el (message-insert-formated-citation-line): Remove newline.
5973         (message-citation-line-format): Add final \n here so that the user can
5974         avoid a blank line.
5975
5976 2007-05-03  Dan Christensen  <jdc@uwo.ca>
5977
5978         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
5979         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
5980         Update lanl/arXiv support.
5981
5982 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
5983
5984         * gnus.el: Bump version number.
5985
5986 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5987
5988         * gnus.el (gnus-version-number): Bump version.
5989
5990 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5991
5992         * gnus.el: No Gnus v0.6 is released.
5993
5994 2007-04-27  Didier Verna  <didier@xemacs.org>
5995
5996         * gnus-util.el (gnus-orify-regexp): Moved and renamed to ...
5997         * gmm-utils.el (gmm-regexp-concat): here.
5998         * message.el: Don't require 'gnus-util.
5999         (message-dont-reply-to-names): Handle name change above.
6000         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
6001
6002 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
6003
6004         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
6005         since the initial value varies according to the system.
6006
6007 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6008
6009         * mm-util.el (mm-charset-synonym-alist): Defcustom.
6010
6011 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
6012
6013         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
6014
6015 2007-04-24  Didier Verna  <didier@xemacs.org>
6016
6017         Improve the type of gnus-ignored-from-addresses.
6018         * gnus-util.el (gnus-orify-regexp): New function.
6019         * message.el (gnus-util): Require it.
6020         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
6021         * gnus-sum.el (gnus-ignored-from-addresses): New function.
6022         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
6023
6024 2007-04-24  Didier Verna  <didier@xemacs.org>
6025
6026         * gnus-sum.el:
6027         * gnus-utils.el: Fix some trailing whitespaces.
6028
6029 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
6030
6031         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
6032         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
6033         article's Message-ID; refer parent article in summary buffer.
6034
6035         * message.el (message-bounce): Call mime-to-mml.
6036
6037         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
6038         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
6039         optimize and/or forms properly.
6040
6041 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
6042
6043         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
6044         URL.
6045
6046 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6047
6048         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
6049
6050 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6051
6052         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
6053         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
6054         displayed of multipart/alternative part if it is invoked from summary
6055         buffer.
6056
6057         * mm-view.el (mm-inline-text-html-render-with-w3m)
6058         (mm-inline-text-html-render-with-w3m-standalone)
6059         (mm-inline-render-with-function): Use mail-parse-charset by default.
6060
6061 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
6062
6063         * parse-time.el (parse-time-string-chars): Check if CHAR
6064         is less than the length of parse-time-syntax.
6065
6066 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6067
6068         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
6069         from gnus-newsgroup-processable.
6070
6071 2007-04-16  Didier Verna  <didier@xemacs.org>
6072
6073         * gnus-msg.el (gnus-configure-posting-styles): Handle
6074         message-signature-directory properly with :file syntax.  Reported by
6075         "Leo".
6076
6077 2007-04-11  Didier Verna  <didier@xemacs.org>
6078
6079         New user option: message-signature-directory.
6080         * gnus-msg.el (gnus-configure-posting-styles): Support it.
6081         * message.el (message-insert-signature): Ditto.
6082         * message.el (message-signature-file): Doc update.
6083         * message.el (message-signature-directory): New.
6084
6085 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6086
6087         * gnus-msg.el (gnus-inews-yank-articles): Use
6088         message-exchange-point-and-mark instead of exchange-point-and-mark.
6089
6090 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6091
6092         * message.el (message-yank-original): Make sure cited text ends with
6093         newline; don't exchange point and mark.
6094
6095 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
6096
6097         * tls.el (open-tls-stream): Properly handle case where there
6098         is no associated buffer.
6099
6100 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
6101
6102         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
6103         message-yank-original, make sure (< mark TEXT point).
6104
6105 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
6106
6107         * message.el (message-fill-column): New variable.
6108         (message-mode): Use it.  Add comment on a possible new hook.
6109
6110         * nnmail.el (nnmail-spool-file): Mark as obsolete.
6111         (nnmail-get-new-mail): Reformat.
6112
6113         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
6114
6115         * gmm-utils.el: Fix Commentary.
6116         (gmm-tool-bar-from-list): Fix typo in doc string.
6117
6118 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
6119
6120         * message.el (message-yank-original): Don't switch point and mark
6121         unnecessarily to put point and mark as documented.
6122
6123 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6124
6125         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
6126         from the message heads.
6127
6128 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
6129
6130         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
6131         article buffer does not have a window.  This may not be the best
6132         solution but is certainly better than setting the start of the null,
6133         that is the current, window.
6134
6135 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
6136
6137         * gnus-draft.el (gnus-draft-setup-hook): New hook.
6138         (gnus-draft-setup): Run it.
6139
6140         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
6141         gnus-score-fast-scoring.  Allow regexp.
6142         (gnus-score-headers): Use it.
6143
6144         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
6145         XEmacs.
6146
6147         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
6148         string.
6149         (gnus-button-alist): Also catch `<f1> k ...'.
6150         (gnus-treat-display-x-face): Fix doc string.
6151
6152 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6153
6154         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
6155         evaluation of gnus-extended-version to ensure correct generation of the
6156         User-Agent header when message-generate-headers-first is used.
6157
6158 2007-03-24  Simon Josefsson  <simon@josefsson.org>
6159
6160         * hashcash.el (hashcash-generate-payment-async): Don't crash if
6161         hashcash-path is nil.  Don't call callback with incorrect number of
6162         parameters if val is 0.
6163
6164 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6165
6166         * message.el (message-required-news-headers):
6167         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
6168
6169 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
6170
6171         * tls.el (open-tls-stream): In handshake-waiting loop,
6172         don't wait more if there is output available to process.
6173
6174 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
6175
6176         * tls.el (tls-program): Doc fix.
6177
6178 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
6179
6180         * message.el (message-generate-new-buffers): Change the meaning of the
6181         nil value; add `standard' to the choices; treat t as `unique'; improve
6182         doc string.
6183         (gnus-select-frame-set-input-focus): Autoload.
6184         (message-buffer-name): Search for the existing message buffer if
6185         message-generate-new-buffers is nil or `standard'; treat the value t of
6186         message-generate-new-buffers as `unique'.
6187         (message-pop-to-buffer): Raise the frame already displaying the message
6188         buffer; clear the echo area after querying.
6189         (message-setup): Pass the `continue' argument to compose-mail.
6190         (message-mail): Prefer `switch-function' if it is given; search for the
6191         existing message buffer if the `continue' argument is non-nil; pass
6192         continue and switch-function arguments to compose-mail by way of
6193         message-setup.
6194         (message-mail-other-window): Adjust argument of message-setup.
6195         (message-mail-other-frame): Ditto.
6196
6197 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6198
6199         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
6200         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
6201         to turn font-lock on when turning gnus-message-citation-mode on.
6202
6203 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
6204
6205         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
6206         (mml-smime-function-alist): New variable; add epg as the backend.
6207         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
6208         mml-smime- functions instead.
6209         * mm-view.el: Require smime.
6210
6211 2007-03-05  Didier Verna  <didier@xemacs.org>
6212
6213         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
6214         instead of just inheritance for posting styles.
6215         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
6216
6217 2007-02-24  Chris Moore  <dooglus@gmail.com>
6218
6219         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
6220         * pgg-pgp.el (pgg-pgp-encrypt-region):
6221         * pgg-gpg.el (pgg-gpg-encrypt-region):
6222         Check pgg-encrypt-for-me if no other recipients.
6223
6224 2007-02-24  John Paul Wallington  <jpw@pobox.com>
6225
6226         * tls.el (tls-certtool-program): Fix custom type.
6227
6228 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6229
6230         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
6231         and point-at-eol instead of line-(beginning|end)-position.
6232
6233         * assistant.el (assistant-parse-buffer): Ditto.
6234
6235         * netrc.el (netrc-parse-services): Ditto.
6236
6237 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
6238
6239         * mml2015.el (mml2015-epg-find-usable-key): New function.
6240         (mml2015-epg-sign): Use it.
6241         (mml2015-epg-encrypt): Use it.
6242
6243 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
6244
6245         * message.el (message-make-in-reply-to): Quote name containing
6246         non-ASCII characters.  It will make the RFC2047 encoder cause an error
6247         if there are special characters.  Reported by NAKAJI Hiroyuki
6248         <nakaji@jp.freebsd.org>.
6249
6250 2007-02-27  Didier Verna  <didier@xemacs.org>
6251
6252         Include the group parameters as well as the topic ones in the
6253         inheritance filter process.
6254         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
6255         argument GROUP-PARAMS-LIST.
6256         * gnus-topic.el (gnus-group-topic-parameters): Use it.
6257
6258 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
6259
6260         * nntp.el (nntp-never-echoes-commands)
6261         (nntp-open-connection-functions-never-echo-commands): New variables.
6262         (nntp-send-command): Use them.
6263
6264 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
6265
6266         * mml2015.el (mml2015-epg-verify): Simplified.
6267
6268 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6269
6270         * mml.el (mml-content-disposition-alist): New user option.
6271         (mml-content-disposition): New function.
6272         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
6273         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
6274
6275 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
6276
6277         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
6278         verification.
6279
6280 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6281
6282         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
6283         articles posted in the last 24 hours.
6284
6285 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
6286
6287         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
6288
6289 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
6290
6291         * nntp.el (nntp-send-command): Don't wait for echoes when
6292         nntp-open-ssl-stream is used.
6293
6294 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6295
6296         * gnus-cite.el (gnus-test-font-lock-add-keywords)
6297         (gnus-message-add-citation-keywords)
6298         (gnus-message-remove-citation-keywords): Remove.
6299         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
6300         directly, make the variables in font-lock-defaults buffer-local, add
6301         gnus-message-citation-keywords to them and then update the value of
6302         font-lock-keywords.
6303
6304 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
6305
6306         * message.el (message-cite-original-1): Don't call
6307         gnus-article-highlight-citation.
6308
6309         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
6310         citations; fix line count.
6311
6312 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
6313
6314         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
6315         (gnus-message-add-citation-keywords)
6316         (gnus-message-remove-citation-keywords): Use it; fix the emulating
6317         versions of font-lock-add-keywords and font-lock-remove-keywords to
6318         work with XEmacs correctly.
6319
6320 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
6321
6322         * gnus-cite.el (gnus-cite-face-list): Set the values of
6323         gnus-message-max-citation-depth and gnus-message-citation-keywords.
6324         (gnus-message-max-citation-depth): Use defvar rather than defconst.
6325         (gnus-message-cite-prefix-regexp): New variable.
6326         (gnus-message-search-citation-line): Use it; protect against long
6327         citation prefix; fill match data with nil rather than 0 for XEmacs; set
6328         the 0th match data for Emacs.
6329         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
6330         (gnus-message-add-citation-keywords): Append keywords rather than
6331         prepending; emulate font-lock-add-keywords if it is not available.
6332         (gnus-message-remove-citation-keywords): Emulate
6333         font-lock-remove-keywords if it is not available.
6334
6335         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
6336
6337         * message.el (message-cite-prefix-regexp): Set the value of
6338         gnus-message-cite-prefix-regexp.
6339
6340 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6341
6342         * nnweb.el (nnweb-google-parse-1): Update parser.
6343
6344 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
6345
6346         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
6347
6348 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6349
6350         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
6351         regexp.
6352
6353 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6354
6355         * uudecode.el (uudecode-string-to-multibyte): New function emulating
6356         string-to-multibyte.
6357         (uudecode-decode-region-internal): Use it.
6358
6359         * lpath.el: Fbind string-as-multibyte for XEmacs.
6360
6361 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
6362
6363         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix
6364         custom choice.
6365
6366         * gnus-art.el (gnus-signature-limit): Fix custom choice.
6367
6368 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
6369
6370         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
6371
6372         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
6373         `write-region' to respect `mm-inhibit-file-name-handlers'.
6374
6375 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
6376
6377         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
6378         Use gnus-home-directory instead of "~/" or "$HOME".
6379
6380 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
6381
6382         * encrypt.el (encrypt-insert-file-contents): Add better prompt
6383         to mention filename.
6384         Add comments at beginning regarding usage.
6385         (encrypt-write-file-contents): Change interactive so a string is
6386         acceptable.  If the file has no associated model, show an error instead
6387         of a nonsense prompt.
6388
6389 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
6390
6391         * spam.el (spam-bsfilter-ham-switch): Fix typo.
6392         Thanks to Yoshihiko Yamada for kind notification of this typo.
6393
6394 2007-01-12  Kenichi Handa  <handa@m17n.org>
6395
6396         * uudecode.el (uudecode-decode-region-internal): Make it work in a
6397         multibyte buffer.
6398
6399 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
6400
6401         * gnus-score.el (gnus-score-fast-scoring): New variable.
6402         (gnus-score-headers): Use it.
6403
6404         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
6405
6406         * message.el (message-cite-original-1): Call
6407         gnus-article-highlight-citation if requested.
6408         (message-make-from): Allow name and address as optional arguments.
6409
6410         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
6411
6412         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
6413         bugs to doc string.
6414         (gnus-button-alist): Add mid\\|message-id.
6415         (gnus-button-fetch-group): Extend for use in
6416         `browse-url-browser-function'.
6417         (gnus-button-url-regexp): Try to catch paired parentheses like in
6418         Wikipedia URLs.
6419
6420         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
6421         Suggested by Simon Krahnke <overlord@gmx.li>.
6422
6423 2007-01-13  Romain Francoise  <romain@orebokech.com>
6424
6425         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
6426         Update copyright.
6427
6428 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
6429
6430         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
6431
6432 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
6433
6434         * gnus-registry.el (gnus-registry-unfollowed-groups)
6435         (gnus-registry-split-fancy-with-parent): Fix documentation.
6436
6437 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6438
6439         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
6440         from nnweb groups.
6441
6442 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6443
6444         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
6445         Xref urls.  Erase buffer before requesting head.
6446
6447 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
6448
6449         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
6450         customizable.
6451
6452 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
6453
6454         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
6455         no signing key is found.
6456         (mml2015-epg-encrypt): Ask user whether to skip or abort if
6457         no encrypting and/or signing key is found.
6458
6459 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
6460
6461         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
6462
6463 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6464
6465         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
6466         headers read from disk with the ones newly found in the current search.
6467         This should no longer cause problems, because the article numbers in
6468         Gmane's `nov.php' output are ignored since the previous change.
6469
6470 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6471
6472         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
6473
6474 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6475
6476         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
6477         replace-regexp-in-string; bind url-version; fbind display-images-p and
6478         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
6479         find-face and set-itimer-function for Emacs; bind itimer-list for
6480         Emacs.
6481
6482         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
6483
6484 2007-01-01  Romain Francoise  <romain@orebokech.com>
6485
6486         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
6487
6488 2006-12-31  Steve Youngs  <steve@sxemacs.org>
6489
6490         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
6491         `define-minor-mode' macro definition expanded properly.
6492         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
6493         exclude it there.
6494
6495         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
6496         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
6497         `fboundp' test.
6498         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
6499         This is OK to autoload in (S)XEmacs now.
6500
6501 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6502
6503         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
6504         keystroke.
6505         (gnus-summary-limit-to-singletons): Fix typo.
6506
6507         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
6508         else fails.
6509
6510 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6511
6512         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
6513         docstring.
6514
6515         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
6516         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
6517         (gnus-summary-insert-dormant-articles): Fix typo in message.
6518
6519 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
6520
6521         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
6522         nil for XEmacs.
6523         (gnus-message-citation-mode): Don't autoload in XEmacs.
6524
6525         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
6526
6527 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
6528
6529         * nnimap.el (nnimap-expunge-search-string): Mention
6530         nnimap-search-uids-not-since-is-evil in docstring.
6531
6532 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
6533
6534         * spam.el: Revert to make-obsolete-variable because
6535         define-obsolete-variable-alias is not supported in Emacs 21.
6536
6537         * spam.el (spam-ifile-path, spam-ifile-database-path)
6538         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
6539         make-obsolete-variable.
6540         (spam-bsfilter-path, spam-bsfilter-program)
6541         (spam-spamassassin-path, spam-spamassassin-program)
6542         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.  Don't
6543         use "path" inappropriately.
6544         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
6545         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
6546         variable names.
6547
6548 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
6549
6550         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
6551         summary buffer.
6552
6553         * password.el (password-cache-remove): Use clear-string to burn
6554         password, if available.
6555
6556 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6557
6558         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
6559
6560         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
6561
6562         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
6563         (gnus-message-highlight-citation): Move defcustom here from
6564         gnus-cite.el.
6565         (gnus-message-citation-mode): Autoload.
6566
6567         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
6568         checks to make it compile with XEmacs.
6569         (gnus-message-citation-mode): New minor mode.
6570         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
6571         (gnus-message-highlight-citation): New variables.
6572         (gnus-message-search-citation-line)
6573         (gnus-message-add-citation-keywords)
6574         (gnus-message-remove-citation-keywords)
6575         (turn-on-gnus-message-citation-mode)
6576         (turn-off-gnus-message-citation-mode): New functions.
6577
6578 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
6579
6580         * gnus-cite.el: Enable highlighting of different citation levels in
6581         message-mode.
6582
6583 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
6584
6585         * message.el (message-make-fqdn): Fix comment.
6586         (message-bogus-system-names): Add ".local".
6587
6588         * spam.el (spam-ifile-path, spam-ifile-program)
6589         (spam-ifile-database-path, spam-ifile-database)
6590         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
6591         Don't use "path" inappropriately.
6592         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
6593         strings.
6594         (spam-check-ifile, spam-ifile-register-with-ifile)
6595         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter): Use
6596         new variable names.
6597
6598         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
6599         (gnus-treat-display-smileys): Simplify using
6600         gnus-image-type-available-p.
6601
6602         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
6603         available.
6604
6605         * gnus-xmas.el (gnus-xmas-image-type-available-p): Use
6606         `display-images-p' if available.
6607
6608 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
6609
6610         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
6611         one after turning on the buffer's multibyteness instead of decoding
6612         them directly in the unibyte buffer that causes unexpected conversion
6613         in Emacs 23 (unicode).
6614
6615 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6616
6617         * message.el (message-generate-hashcash): Fix custom type.
6618
6619 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6620
6621         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
6622
6623 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
6624
6625         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
6626         disconnect icons.  Add help text.
6627
6628 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
6629
6630         * spam.el (spam-extra-header-to-number): CRM114 spam score is
6631         negated to be consistent with the others we handle.
6632
6633 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6634
6635         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
6636         version of gnus-summary-buffer to something, so that we can use two
6637         article buffers at the same time.
6638
6639 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
6640
6641         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
6642         trigger all the extra headers.
6643         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
6644         sorting.
6645
6646 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6647
6648         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
6649         solid groups.
6650
6651 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
6652
6653         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
6654
6655 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
6656
6657         * legacy-gnus-agent.el: Add Copyright notice.
6658
6659 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
6660
6661         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
6662
6663 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6664
6665         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
6666
6667         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
6668         to make it work reliably in CVS Emacs.
6669         (gnus-summary-limit-strange-charsets-predicate)
6670         (gnus-summary-limit-to-predicate): New functions.
6671
6672 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
6673
6674         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
6675         specifying array size.
6676         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
6677         array if it is too small.
6678         (gnus-sort-threads-recursive): Renamed from gnus-sort-thread-1.
6679         (gnus-sort-threads-loop): New function.
6680
6681 2006-12-06  Chris Moore  <dooglus@gmail.com>
6682
6683         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
6684         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
6685
6686 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
6687
6688         * mm-url.el (mm-url-predefined-programs): Call curl with correct
6689         options.
6690
6691 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6692
6693         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
6694         DOS-ing the recipient.
6695
6696         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
6697         the headers when creating the mapping to avoid mismappings.
6698         (nnweb-gmane-create-mapping): Always nix out old mapping.
6699
6700 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6701
6702         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
6703         and mm-verify-option to never.
6704
6705 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6706
6707         * message.el (message-signed-or-encrypted-p): New function.
6708         (message-forward-make-body): Use it.
6709
6710         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
6711         Replace encode-coding-string with mm-encode-coding-string.
6712
6713 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6714
6715         * nneething.el (nneething-decode-file-name): Replace
6716         decode-coding-string with mm-decode-coding-string.
6717
6718         * gnus-int.el (gnus-open-server): Say failed server's name.
6719
6720 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6721
6722         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
6723         strings to a single string.  Quote `errors-file-name'.
6724         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
6725         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
6726         Adjust calls.  Use `shell-quote-argument'.
6727
6728 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
6729
6730         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
6731         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
6732
6733         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
6734         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
6735         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
6736         (gnus-group-make-directory-group, gnus-group-transpose-groups):
6737         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
6738         (gnus-subscribe-newsgroup, gnus-1):
6739         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
6740         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
6741         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
6742         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
6743
6744 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6745
6746         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
6747         keystroke.
6748         (gnus-summary-limit-to-bodies): Implement headersp.
6749
6750 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6751
6752         * dns.el (query-dns): Protect against "Process dns deleted" strings.
6753
6754 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
6755
6756         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
6757
6758 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6759
6760         * message.el (message-generate-hashcash): Expand range of values to
6761         include `opportunistic'.
6762         (message-send-mail): Use it.
6763
6764 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6765
6766         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
6767         and comment it.
6768
6769         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
6770
6771 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
6772
6773         * gnus-util.el (gnus-extract-address-components): Improve comment.
6774
6775 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6776
6777         * gnus-util.el (gnus-extract-address-components): Work with address in
6778         which the name portion contains @.
6779
6780         * lpath.el: Fbind custom-autoload.
6781
6782 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6783
6784         * gnus.el (gnus-start): Move custom group up.
6785         (gnus-select-method): Don't autoload, but make it available for
6786         `customize-variable'.
6787         (gnus-getenv-nntpserver): Don't autoload.
6788
6789 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
6790
6791         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
6792
6793 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
6794
6795         * message.el (message-sendmail-extra-arguments): New variable.
6796         (message-send-mail-with-sendmail): Use it.
6797
6798 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6799
6800         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
6801         mm-with-unibyte-current-buffer to make string unibyte.
6802
6803         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
6804         mm-string-as-multibyte.
6805
6806 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
6807
6808         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
6809         Reported by Werner Koch <wk@gnupg.org>.
6810
6811 2006-11-14  Daiki Ueno  <ueno@p360>
6812
6813         * mml2015.el: Autoload epa-select-keys when compiling.
6814
6815 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6816
6817         * mml2015.el (mml2015-epg-sign): Save the signing keys in
6818         message-options.
6819         (mml2015-epg-encrypt): Save the recipient keys in message-options.
6820
6821 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
6822
6823         * mml2015.el (mml2015-epg-encrypt): Removed backward compatibility for
6824         EasyPG (< 0.0.6).
6825         (mml2015-always-trust): New user option.
6826         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
6827         prompt.
6828
6829 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6830
6831         * nntp.el (nntp-authinfo-force): New variable.
6832         (nntp-send-authinfo): Use it.
6833
6834 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
6835
6836         * message.el (message-strip-subject-encoded-words): Allow _not_ to
6837         decode encoded words.  Improve prompt.  Add comment about forwarding.
6838         (message-replacement-char): Move up.
6839
6840 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
6841
6842         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
6843         instead of gnus-intersection because arguments of gnus-sorted-nunion
6844         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
6845
6846 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
6847
6848         * message.el (message-strip-subject-encoded-words): Reformat prompt.
6849         (message-simplify-subject-functions): Enable
6850         message-strip-subject-encoded-words by default.
6851
6852 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
6853
6854         * message.el (message-strip-subject-encoded-words): New function.
6855         (message-simplify-subject-functions): New variable.
6856         (message-simplify-subject): Use it.  Fix typo in doc string.
6857         Support message-strip-subject-encoded-words.
6858
6859 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
6860
6861         * gnus-diary.el (gnus-diary-delay-format-function):
6862         * nndiary.el (nndiary-reminders):
6863         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
6864
6865 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
6866
6867         * gnus-art.el (article-hide-boring-headers): Fetch date from
6868         gnus-original-article-buffer to avoid problems with localized date
6869         strings.
6870
6871 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6872
6873         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
6874
6875 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
6876
6877         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
6878         New variables.
6879         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6880         (mm-charset-synonym-alist): Move some entries to
6881         mm-codepage-iso-8859-list.
6882         (mm-charset-synonym-alist, mm-charset-override-alist): Add
6883         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6884
6885 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
6886
6887         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
6888
6889 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
6890
6891         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
6892         with Emacs 21 and XEmacs.
6893
6894 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
6895
6896         * spam.el (spam-parse-address): New function for better parsing,
6897         catching errors, etc.
6898         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
6899
6900 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
6901
6902         * mm-view.el: Add interactive arg to html2text autoload.
6903
6904 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
6905
6906         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
6907
6908 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
6909
6910         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list): New
6911         variables.
6912         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
6913         (mm-charset-synonym-alist): Move some entries to
6914         mm-codepage-iso-8859-list.
6915
6916         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
6917
6918 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
6919
6920         * message.el (message-citation-line-format)
6921         (message-insert-formated-citation-line): Fix implementation of %E, %N
6922         and %n according to the doc string.
6923
6924 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
6925
6926         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6927         car-safe to avoid bad parses.
6928
6929 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6930
6931         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
6932         names.
6933
6934         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
6935
6936 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6937
6938         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
6939         header.
6940
6941         * message.el (message-draft-headers): Add Date.
6942         (message-headers-to-generate): Fix typo in docstring.
6943
6944         * nndraft.el (nndraft-required-headers): New variable.
6945         (nndraft-generate-headers): Use it.
6946
6947         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
6948
6949 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6950
6951         * gnus-registry.el (gnus-registry-wash-for-keywords)
6952         (gnus-registry-find-keywords): New functions to allow easy searching of
6953         articles that are in the registry.
6954
6955 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
6956
6957         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
6958         ietf-drums-parse-address instead of gnus-extract-address-components.
6959         Reported by Damien Elmes <damien@repose.cx>.
6960
6961 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
6962
6963         * gnus.el (gnus-mime): Remove unused custom group.
6964
6965 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
6966
6967         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
6968         "blank line" when searching for end of armor headers.
6969
6970 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6971
6972         * gmm-utils.el (gmm-write-region): Fix variable name.
6973
6974 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
6975
6976         * gmm-utils.el (gmm-write-region): New function based on compatibility
6977         code from `mm-make-temp-file'.
6978
6979         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
6980
6981         * nnmaildir.el (nnmaildir--update-nov)
6982         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
6983         Use `gmm-write-region'.
6984
6985 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
6986
6987         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist): Add
6988         iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
6989
6990         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
6991
6992         * message.el (message-replacement-char): New variable.
6993         (message-fix-before-sending): Use it.
6994         (message-simplify-subject): New function to remove duplicate code.
6995         (message-reply, message-followup): Use it.
6996
6997         * gnus-sum.el (gnus-summary-make-menu-bar): Clarify
6998         gnus-summary-limit-to-articles.
6999
7000 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
7001
7002         * gnus-util.el (gnus-with-local-quit): New macro.
7003
7004         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
7005
7006 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
7007
7008         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
7009         ignore non-string data.
7010
7011 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
7012
7013         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
7014         non-string data (needs to be done in the registry too).
7015
7016 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
7017
7018         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
7019         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
7020         (gnus-registry-split-fancy-with-parent)
7021         (gnus-registry-fetch-simplified-message-subject-fast)
7022         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
7023         Remove text properties on ingress into the registry and when it's saved.
7024         (gnus-registry-clean-empty-function): Fix bug with cleaning the
7025         registry from entries with no groups.
7026
7027 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
7028
7029         * gnus-util.el (gnus-string-remove-all-properties): Add utility
7030         function to remove string properties.
7031
7032 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
7033
7034         * gmm-utils.el (gmm): Adjust custom version.
7035
7036         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist): Adjust
7037         custom version.
7038
7039         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
7040
7041 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
7042
7043         * gnus-art.el (gnus-insert-prev-page-button)
7044         (gnus-insert-next-page-button): Simplify.  Reformat.
7045
7046 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
7047
7048         * gnus-art.el (gnus-insert-prev-page-button)
7049         (gnus-insert-next-page-button): Apply gnus-article-button-face.
7050
7051 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
7052
7053         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
7054
7055 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
7056
7057         * gnus-art.el (gnus-insert-mime-button)
7058         (gnus-insert-mime-security-button):
7059         Apply gnus-article-button-face to MIME and security buttons.
7060
7061 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
7062
7063         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
7064         readable.
7065
7066 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7067
7068         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
7069
7070 2006-09-20  Steve Youngs  <steve@sxemacs.org>
7071
7072         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
7073         `browse-url-of-file' instead of `browse-url'.
7074
7075 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7076
7077         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
7078         regexp.  Articles containing quotation were cut prematurely.
7079
7080 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7081
7082         * message.el (message-cite-original-1): Use nobody by default for the
7083         value of From header.
7084         (message-reply): Ditto.
7085
7086 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
7087
7088         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
7089         to the gnus-info.  This fixes a bug of inline-PGP message verification.
7090         Reported by Michael Piotrowski <mxp@dynalabs.de>.
7091
7092 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
7093
7094         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
7095         mails in the doc string.  Add some URLs in comment.
7096         (pop3-movemail): Warn about pop3-leave-mail-on-server.
7097
7098 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7099
7100         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
7101         backslashes handling and the way to find boundaries of quoted strings.
7102
7103 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
7104
7105         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
7106         mml1991-encrypt-to-self is set and mml1991-signers is not set.
7107         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
7108         mml2015-encrypt-to-self is set and mml2015-signers is not set.
7109
7110 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
7111
7112         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
7113         doc string.
7114         (gnus-button-regexp, gnus-button-last): Remove unused variables.
7115
7116 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7117
7118         * lpath.el: Fbind epg-check-configuration.
7119
7120 2006-09-06  Simon Josefsson  <jas@extundo.com>
7121
7122         * mml2015.el (mml2015-use): Doc fix, mention epg.
7123
7124 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
7125
7126         * mml2015.el (mml2015-use): Default to epg, if available.
7127
7128 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
7129
7130         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
7131         message-sender.
7132         (mml1991-epg-encrypt): Ditto.
7133         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
7134         message-sender.
7135         (mml2015-epg-encrypt): Ditto.
7136
7137 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
7138
7139         * message.el (message-send-mail-with-sendmail): Look for sendmail in
7140         several common directories.
7141
7142 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
7143
7144         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
7145         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
7146
7147 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7148
7149         * gnus-art.el (article-decode-encoded-words): Make it fast.
7150
7151 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
7152
7153         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
7154
7155         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
7156         in quoted string into `\'.
7157
7158 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7159
7160         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7161         Use standard-syntax-table.
7162
7163 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
7164
7165         * gnus-art.el (gnus-decode-address-function): New variable.
7166         (article-decode-encoded-words): Use it to decode headers which are
7167         assumed to contain addresses.
7168         (gnus-mime-delete-part): Remove useless `or'.
7169
7170         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
7171         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
7172         (gnus-nov-parse-line): Use it to decode From header.
7173         (gnus-get-newsgroup-headers): Ditto.
7174         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
7175
7176         * mail-parse.el (mail-decode-encoded-address-region): New alias.
7177         (mail-decode-encoded-address-string): New alias.
7178
7179         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
7180         New function.
7181         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
7182         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
7183         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
7184         (rfc2047-decode-string): Ditto.
7185         (rfc2047-decode-address-region): New function.
7186         (rfc2047-decode-address-string): New function.
7187
7188 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
7189
7190         * message.el (message-caesar-buffer-body): Allow rotating headers.
7191
7192         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
7193
7194         * message.el (message-insert-formated-citation-line): Fix %f.
7195         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
7196
7197 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7198
7199         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
7200         (gnus-bookmark-mouse-available-p): New macro.
7201         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
7202         (gnus-bookmark-bmenu-show-infos): Use it.
7203         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
7204         (gnus-bookmark-bmenu-hide-infos): Ditto.
7205         (gnus-bookmark-remove-properties): New function.
7206         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
7207         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
7208         (gnus-bookmark-write-file): Bind coding-system-for-write.
7209         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
7210         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
7211         group before selecting it.
7212         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
7213         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
7214         quit-window if it is not available; use gnus-mouse-2 and bind it to
7215         gnus-bookmark-bmenu-select-by-mouse.
7216         (gnus-bookmark-show-details): Remove unused variable `details-list'.
7217         (gnus-bookmark-bmenu-select-by-mouse): New function.
7218
7219 2006-08-13  Romain Francoise  <romain@orebokech.com>
7220
7221         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
7222         space.
7223
7224 2006-08-10  Romain Francoise  <romain@orebokech.com>
7225
7226         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
7227         (dns-mode-soa-auto-increment-serial): New user option.
7228         (dns-mode-soa-maybe-increment-serial): New function.
7229         (dns-mode): Add the latter to `write-contents-functions'.
7230
7231 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7232
7233         * compface.el (uncompface): Use binary rather than raw-text-unix.
7234
7235 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7236
7237         * compface.el (uncompface): Make sure the eol conversion doesn't take
7238         place when communicating with the external programs.  Reported by
7239         ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
7240
7241 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7242
7243         * nnheader.el (nnheader-insert-head): Fix typo in comment.
7244
7245 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7246
7247         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7248         Make it more robust by parsing author and date independently.
7249
7250 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7251
7252         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
7253
7254 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
7255
7256         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
7257         first matching secret key.
7258         (mml2015-epg-encrypt): Ditto.
7259
7260         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
7261         first matching secret key.
7262         (mml1991-epg-encrypt): Ditto.
7263
7264         * mml2015.el (mml2015-encrypt-to-self): New user option.
7265         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
7266         mml2015-epg-encrypt-to-self is set.
7267
7268         * mml1991.el (mml1991-encrypt-to-self): New variable.
7269         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
7270         mml1991-epg-encrypt-to-self is set.
7271
7272         * mml2015.el (mml2015-signers): New user option.
7273         (mml2015-epg-sign): Reflect the value of mml2015-signers.
7274         (mml2015-epg-encrypt): Allow to select signing keys.
7275
7276         * mml1991.el (mml1991-signers): New variable.
7277         (mml1991-epg-sign): Reflect the value of mml1991-signers.
7278         (mml1991-epg-encrypt): Allow to select signing keys.
7279
7280 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7281
7282         * nnheader.el (nnheader-insert-head): Make it work even if the file
7283         uses CRLF for the line-break code.
7284
7285 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
7286
7287         * mml2015.el: Require mml-sec instead of password.
7288         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
7289         (mml2015-cache-passphrase): Inherit the default value from
7290         mml-secure-cache-passphrase.
7291         (mml2015-passphrase-cache-expiry): Inherit the default value from
7292         mml-secure-passphrase-cache-expiry.
7293
7294         * mml1991.el: Require mml-sec instead of password.
7295         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
7296         (mml1991-cache-passphrase): Inherit the default value from
7297         mml-secure-cache-passphrase.
7298         (mml1991-passphrase-cache-expiry): Inherit the default value from
7299         mml-secure-passphrase-cache-expiry.
7300
7301         * mml-sec.el: Require password.
7302         (mml-secure-verbose): New user option.
7303         (mml-secure-cache-passphrase): New user option.
7304         (mml-secure-passphrase-cache-expiry): New user option.
7305
7306 2006-07-24  Daiki Ueno  <ueno@unixuser.org>
7307
7308         * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
7309         letters from the end.  Thanks to "David Smith" <davidsmith@acm.org> and
7310         andreas@altroot.de (Andreas Vögele).
7311
7312         FIXME: Use `tiny change'?
7313
7314 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7315
7316         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
7317         workaround for the url package included with Emacs.
7318
7319         * nnweb.el (nnweb-google-create-mapping): Update regexp.
7320
7321 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7322
7323         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
7324         correctly.  This fixes a bug caused by the 2006-05-12 change.
7325
7326 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
7327
7328         * nnmail.el (nnmail-article-group): If splitting raises an error, give
7329         some information about the error when saying that the `bogus' mail
7330         group will be used.
7331
7332 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
7333
7334         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
7335         string.
7336
7337 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
7338
7339         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
7340
7341 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7342
7343         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
7344
7345 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7346
7347         * mml1991.el (mml1991-function-alist): Add epg.
7348         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
7349         (mml1991-epg-encrypt): New functions.
7350
7351 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
7352
7353         * mml2015.el (mml2015-verbose): New variable.
7354         (mml2015-cache-passphrase): Ditto.
7355         (mml2015-passphrase-cache-expiry): Ditto.
7356         (mml2015-function-alist): Add epg.
7357         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
7358         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
7359         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt): New
7360         functions.
7361
7362 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7363
7364         * message.el (message-cite-original-1): Preserve region when removing
7365         quoted text due to X-No-Archive in order to avoid bogus attribution
7366         when citing multiple messages.
7367
7368 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7369
7370         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.  Reported by
7371         Kenneth Jacker <khj@be.cs.appstate.edu>.
7372
7373 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
7374
7375         * gnus-diary.el (gnus-user-format-function-d)
7376         (gnus-user-format-function-D): Autoload.
7377
7378         * imap.el (Commentary): Fix typo.
7379
7380         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
7381         2006-04-22 contribution.
7382
7383 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7384
7385         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
7386         It didn't really fix the bogosity I'm seeing with solid web groups.
7387
7388 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7389
7390         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
7391         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
7392         created using server names.  If we use the feature without declaring
7393         it, Gnus does not properly manage server and group state.
7394
7395         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
7396         bound.
7397
7398 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7399
7400         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
7401         looking up the method using GROUP's prefix before inventing a new one.
7402         It is used on killed/unknown groups in various places where returning
7403         an all-new method isn't expected by the caller.
7404
7405         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
7406         and match semantics of gnus-group-real-prefix.
7407
7408 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
7409
7410         * nnmail.el (nnmail-broken-references-mailers): New variable.
7411         (nnmail-ignore-broken-references): New function generalizing
7412         nnmail-fix-eudora-headers.
7413         (nnmail-fix-eudora-headers): Now obsolete.
7414
7415         * gnus-art.el (gnus-button-handle-custom): Support
7416         `customize-apropos*'.
7417
7418 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7419
7420         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
7421
7422         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
7423         articles.
7424
7425 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
7426
7427         * message.el (message-cite-reply-above): New variable.
7428         (message-yank-original): Use it.
7429
7430 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7431
7432         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
7433
7434 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
7435
7436         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
7437         as read.
7438
7439         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
7440
7441 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
7442
7443         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
7444         (gnus-bookmark-default-file): Use gnus-directory.
7445         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
7446         Remove "*" in doc string.
7447         (gnus-bookmark-write-file): Simplify.
7448         (gnus-bookmark-maybe-sort-alist): Use `when'.
7449         (gnus-bookmark-get-bookmark): Fix typo in doc string.
7450         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark): Add
7451         FIXME about Emacs 21 and XEmacs compatibility.
7452         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
7453         compatibility.
7454         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
7455         compatibility.
7456         (gnus-bookmark-menu-heading): Fix version.
7457
7458 2006-06-19  Bastien Guerry  <bzg@altern.org>
7459
7460         * gnus-bookmark.el: New file.
7461
7462 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7463
7464         * message.el (message-syntax-checks): Doc fix.
7465
7466 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7467
7468         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
7469         unsubscribed groups as if they were killed ones.  It causes duplicate
7470         entries in gnus-newsrc-alist.
7471
7472 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7473
7474         * message.el (message-syntax-checks): Doc fix.
7475         (message-send-mail): Add check for continuation headers.
7476         (message-check-news-header-syntax): Fix regexp used to check for
7477         continuation headers.
7478
7479 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7480
7481         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
7482
7483 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
7484
7485         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
7486
7487 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
7488
7489         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
7490         default-truncate-lines.
7491
7492 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7493
7494         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
7495         to fill the utf-8 entry.
7496
7497         * lpath.el: Fbind unicode-precedence-list.
7498
7499 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7500
7501         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
7502
7503 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
7504
7505         * gnus-agent.el (directory-files-and-attributes): Move all the way
7506         forward (the third and final move).
7507         (gnus-agent-read-agentview): Trap reconstruction errors due to
7508         nonexistant directory.  Handle by returning nil.
7509
7510 2006-05-30  Didier Verna  <didier@xemacs.org>
7511
7512         * message.el (message-dont-reply-to-names): Update the custom type.
7513         * message.el (message-dont-reply-to-names): New defsubst: potentially
7514         convert a list of regexps into a single one.
7515         * message.el (message-get-reply-headers): Use it.
7516         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
7517
7518 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
7519
7520         * gnus-agent.el (directory-files-and-attributes): Move forward.
7521
7522 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7523
7524         * gnus-ml.el (gnus-mailing-list-subscribe)
7525         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
7526         (gnus-mailing-list-message): Fix doc strings.
7527
7528 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7529
7530         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
7531         of doing it manually.
7532
7533 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
7534
7535         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
7536         comment.
7537
7538 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
7539
7540         * gnus-agent.el: Added gnus-agent-flush* to purge agent info.
7541         (gnus-agent-read-agentview): Fixed handling of end-of-file error.
7542         (gnus-agent-read-local): All symbols allocated in my-obarray.
7543         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
7544         (gnus-agent-regenerate-group): Check numeric names to see if they are
7545         messages or groups.
7546         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
7547         better way of do this...)
7548
7549         * gnus-cache.el (gnus-agent-total-fetched-for): Ignore
7550         'dummy.group' (there should be a better way of do this...)
7551
7552 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
7553
7554         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
7555         (gnus-saved-headers): Ditto.
7556         (gnus-default-article-saver): Mention functions may have properties.
7557         (gnus-article-save): Override gnus-save-all-headers and
7558         gnus-saved-headers by :headers property which saver function may have.
7559         (gnus-summary-save-in-file): Add :headers property.
7560         (gnus-summary-write-to-file): Ditto.
7561
7562         * gnus-sum.el (gnus-summary-save-article): Bind
7563         gnus-prompt-before-saving to t when saving many articles in a file;
7564         always show all headers.
7565
7566         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
7567
7568 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
7569
7570         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
7571         marks.
7572
7573         * message.el (message-indent-citation): Add optional arguments to allow
7574         using it outside of message buffers.
7575
7576         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
7577         (gnus-article-treat-unfold-headers): Use it.
7578         (gnus-article-truncate-lines): New variable.
7579         (gnus-article-mode): Use it.
7580         (gnus-article-toggle-truncate-lines): New function.
7581
7582         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar): Add
7583         gnus-article-toggle-truncate-lines.
7584
7585         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
7586         coding system in XEmacs, use binary.
7587
7588 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7589
7590         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
7591         after-load-alist.
7592
7593         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
7594         this function should save decoded articles.
7595         (gnus-summary-write-to-file): Use property to specify this function
7596         should save decoded articles and specify gnus-summary-save-in-file
7597         should be used to save articles other than the first one when saving
7598         many articles.
7599         (gnus-summary-save-body-in-file): Use property to specify this
7600         function should save decoded articles.
7601         (gnus-summary-write-body-to-file): Use property to specify this
7602         function should save decoded articles and specify
7603         gnus-summary-save-body-in-file should be used to save articles other
7604         than the first one when saving many articles.
7605
7606         * gnus-sum.el (gnus-summary-save-article): Simplify.
7607
7608 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7609
7610         * gnus-art.el (gnus-default-article-saver): Add
7611         gnus-summary-write-body-to-file.
7612         (gnus-article-save-coding-system): Don't use coding system object
7613         in XEmacs.
7614         (gnus-read-save-file-name): Add optional `dir-var' argument which
7615         specifies directory in which files are saved; work even if optional
7616         `variable' argument is not specified.
7617         (gnus-summary-write-to-file): Read file name.
7618         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
7619         (gnus-summary-write-body-to-file): New function.
7620
7621         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
7622         (gnus-summary-local-variables): Add it.
7623         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
7624         (gnus-summary-save-article): Remove optional `decode' argument;
7625         determine whether to decode articles by the value of
7626         gnus-default-article-saver; when saving many files using
7627         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
7628         it first and use gnus-summary-save-in-file or
7629         gnus-summary-save-body-in-file thereafter unless
7630         gnus-prompt-before-saving is always; move point to article which
7631         will be saved.
7632         (gnus-summary-save-article-file): Revert.
7633         (gnus-summary-write-article-file): Revert.
7634         (gnus-summary-save-article-body-file): Revert.
7635         (gnus-summary-write-article-body-file): New function.
7636
7637 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7638
7639         * gnus-art.el (gnus-default-article-saver): Doc fix.
7640         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
7641         from gnus-summary-save-article-coding-system, and default to a
7642         certain coding system.
7643         (gnus-output-to-file): Add coding cookie and encode text according
7644         to gnus-article-save-coding-system; don't use mm-append-to-file.
7645
7646         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
7647         gnus-art.el and rename to gnus-article-save-coding-system.
7648         (gnus-summary-save-article): Require gnus-art; don't show all
7649         headers if it decodes articles; don't add coding cookie here;
7650         don't bind mm-text-coding-system-for-write.
7651         (gnus-summary-save-article-file): Save decoded articles.
7652         (gnus-summary-write-article-file): When saving many files, use
7653         gnus-summary-write-to-file first and gnus-summary-save-in-file
7654         thereafter unless gnus-prompt-before-saving is always.
7655         (gnus-summary-save-article-body-file): Save decoded articles.
7656
7657         * lpath.el: Fbind select-safe-coding-system for XEmacs.
7658
7659 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7660
7661         * nnrss.el (nnrss-check-group): Bind hash-index.
7662
7663 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
7664
7665         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
7666         its hash index.  Store this hash in `nnrss-group-data'.
7667         (nnrss-read-group-data): Update accordingly.
7668
7669 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7670
7671         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
7672         entry.
7673
7674         * gnus-sum.el (gnus-summary-make-menu-bar): Add
7675         gnus-article-browse-html-article.
7676
7677 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
7678
7679         * gnus-sum.el (gnus-summary-mime-map): Add
7680         gnus-article-browse-html-article.
7681
7682         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
7683
7684 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
7685
7686         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
7687         suitable coding systems in customize.
7688
7689 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
7690
7691         * mail-source.el (mail-sources): Fix custom type.
7692
7693 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
7694
7695         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
7696         (gnus-summary-expire-articles-now): Shorten prompt.
7697
7698         * gmm-utils.el (wid-edit): Require.
7699         (defun-gmm): Renamed from `gmm-defun-compat'.
7700         (gmm-image-search-load-path): Use it.
7701         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
7702
7703 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7704
7705         * gnus-sum.el (gnus-summary-save-article-coding-system): New
7706         variable.
7707         (gnus-summary-save-article): Add optional `decode' argument.  If
7708         it is set and gnus-summary-save-article-coding-system is non-nil,
7709         save decoded article.
7710         (gnus-summary-write-article-file): Save decoded article if
7711         gnus-summary-save-article-coding-system is non-nil.
7712
7713         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
7714         type.
7715
7716 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7717
7718         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
7719
7720 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
7721
7722         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
7723         first to test gnus-single-article-buffer which may be buffer-local.
7724
7725         * gnus-sum.el (gnus-summary-setup-buffer): Make
7726         gnus-single-article-buffer buffer-local and nil in ephemeral
7727         group; make gnus-article-buffer, gnus-article-current, and
7728         gnus-original-article-buffer always buffer-local.
7729         (gnus-summary-exit): Kill article buffer belonging to ephemeral
7730         group.
7731         (gnus-handle-ephemeral-exit): Don't move to next summary line.
7732
7733 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
7734
7735         * nnml.el (nnml-request-compact-group): Compressed files might not
7736         have .gz extension.
7737
7738 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7739
7740         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
7741         (mm-copy-to-buffer): Use with-current-buffer.
7742         (mm-display-part): Simplify.
7743         (mm-inlinable-p): Add optional arg `type'.
7744
7745 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7746
7747         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
7748         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
7749         Try harder to show the attachment internally or externally using
7750         gnus-mime-view-part-as-type.
7751
7752 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
7753
7754         * message.el (message-from-style, message-signature-separator)
7755         (message-user-organization-file, message-send-mail-function)
7756         (message-citation-line-function, message-yank-prefix)
7757         (message-indent-citation-function, message-signature)
7758         (message-signature-file, message-signature-insert-empty-line):
7759         Remove autoloads.
7760
7761         * gnus-art.el (gnus-buttonized-mime-types): Remove
7762         "multipart/signed".  Revert 2006-04-26 change.
7763
7764 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7765
7766         * gnus.el (gnus-version-number): Bump version.
7767
7768 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7769
7770         * gnus.el: No Gnus v0.5 is released.
7771
7772 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7773
7774         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
7775         fetching articles by message-id.
7776
7777 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7778
7779         * message.el (hashcash): Require hashcash as normal.
7780
7781         * ecomplete.el (ecomplete-highlight-match-line): Use
7782         point-at-eol.
7783         (ecomplete-highlight-match-line): Use `highlight', because that
7784         face exists in both Emacs and XEmacs.
7785
7786         * message.el (message-display-abbrev): Use point-at-bol.
7787
7788         * mail-source.el: Don't require timer/timer-funcs.
7789
7790         * gnus-async.el: Ditto.
7791
7792         * password.el: Ditto.
7793
7794         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
7795
7796         * mm-url.el: Ditto.
7797
7798         * gnus-xmas.el: Don't require timer-funcs.
7799
7800         * mm-util.el: Require timer/timer-funcs.
7801
7802 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7803
7804         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
7805         Close.
7806
7807 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
7808
7809         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
7810         unibyte after clear-decrypt function runs.
7811
7812         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
7813         returns as a unibyte string.
7814
7815 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7816
7817         * lpath.el: Revert.
7818
7819         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
7820         (pgg-gpg-process-sentinel): Revert.
7821
7822         * pgg-pgp.el (pgg-pgp-process-region): Revert.
7823         (pgg-pgp-lookup-key): Revert.
7824
7825         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
7826         (pgg-pgp5-lookup-key): Revert.
7827
7828         * pgg.el (pgg-fetch-key): Revert.
7829
7830 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7831
7832         * lpath.el: Fbind string-as-multibyte for XEmacs.
7833
7834         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
7835         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
7836         (mml1991-pgg-encrypt): Ditto.
7837
7838         * pgg-gpg.el (pgg-string-to-multibyte): New function.
7839         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
7840         a multibyte buffer.
7841
7842         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
7843         (pgg-pgp-lookup-key): Ditto.
7844
7845         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
7846         (pgg-pgp5-lookup-key): Ditto.
7847
7848         * pgg.el (pgg-fetch-key): Ditto.
7849
7850 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
7851
7852         * message.el (message-user-organization-file): Check several
7853         locations of the organization file.
7854
7855         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
7856         Add gnus-article-view-part-as-type.
7857
7858         * gnus-art.el (gnus-article-view-part-as-type): New function.
7859
7860         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
7861         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
7862
7863         * mml.el: Simplify autoload.
7864         (mml-mode): defvar dnd-protocol-alist instead of using
7865         symbol-value.
7866         (mml-default-directory): New variable.
7867         (mml-minibuffer-read-file): Use it.
7868         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
7869
7870         * message.el (message-citation-line-format): New variable.
7871         (message-insert-formated-citation-line): New function.
7872         (message-citation-line-function): Add
7873         `message-insert-formated-citation-line' to custom type.
7874
7875         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
7876         to doc string.
7877
7878         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
7879         depending on mm-verify-option.
7880
7881 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
7882
7883         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
7884         binding pgg-* variables; reimplement the section which prevents
7885         MIME header from being signed.
7886         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
7887         pgg-text-mode; remove a blank line at the top of body.
7888
7889         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
7890         lines at the top of body; use gnus-newsgroup-charset if there's no
7891         Charset header.
7892
7893 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7894
7895         * message.el (message-self-insert-commands): Doc fix.
7896
7897         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
7898         (mm-uu-pgp-encrypted-test): Ditto.
7899         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
7900         between header and body; return application/pgp-encrypted handle
7901         if decryption failed; decode decrypted body by charset.
7902
7903         * mm-decode.el (mm-automatic-display): Don't make application/pgp
7904         element match to application/pgp-*.
7905
7906 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
7907
7908         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
7909         HTML.
7910
7911 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7912
7913         * mail-source.el (mail-source-call-script): Message the error
7914         string.
7915
7916 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7917
7918         * gnus-util.el (gnus-byte-compile): Use it.
7919
7920 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
7921
7922         * gnus-util.el (kill-empty-logs): New function.
7923
7924 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7925
7926         * message.el (message-mail-alias-type): Doc fix.
7927         (message-mail-alias-type-p): New function.
7928         (message-send): Use it.
7929         (message-mode): Ditto.
7930         (message-strip-forbidden-properties): Ditto.
7931
7932         * ecomplete.el (ecomplete-database-file-coding-system): New
7933         variable.
7934         (ecomplete-save): Use it.
7935         (ecomplete-setup): Use it.
7936
7937 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
7938
7939         * message.el (message-self-insert-commands): New variable.
7940         (message-strip-forbidden-properties): Use it.
7941
7942 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7943
7944         * message.el (message-put-addresses-in-ecomplete): Use a regexp
7945         that doesn't make XEmacs choke.
7946
7947 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
7948
7949         * gnus-util.el (gnus-replace-in-string):
7950         Prefer replace-regexp-in-string over of replace-in-string.
7951
7952 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
7953
7954         * gnus-util.el (gnus-select-frame-set-input-focus):
7955         Use select-frame-set-input-focus if it is available in XEmacs; use
7956         definition defined in Emacs 22 for old Emacsen.
7957
7958         * dgnushack.el: Autoload unmorse-region for XEmacs.
7959
7960         * lpath.el: Bind cursor-in-non-selected-windows and
7961         select-frame-set-input-focus for XEmacs.
7962
7963 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7964
7965         * mm-view.el (mm-inline-text): Use equal instead of equalp.
7966
7967 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
7968
7969         * gnus-registry.el (gnus-registry-cache-save): Remove text
7970         properties when saving via the temp buffer.
7971
7972 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7973
7974         * message.el (message-generate-hashcash): Honor custom type.
7975
7976 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7977
7978         * message.el (message-generate-hashcash): Default to non-nil when
7979         hashcash is found.
7980
7981         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
7982         (gnus-refer-thread-limit): Increase default to 500.
7983
7984         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
7985
7986         * flow-fill.el (fill-flowed): Allow delete-space.
7987
7988 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
7989
7990         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
7991         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
7992         Remove autoloads.
7993
7994 2006-04-18  Simon Josefsson  <jas@extundo.com>
7995
7996         * message.el (message-generate-hashcash): Default to.
7997
7998 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
7999
8000         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
8001         concatenating segments rather than before concatenating them.
8002
8003 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
8004
8005         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
8006
8007 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8008
8009         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
8010
8011         * message.el (message-forward-make-body-plain): Allow
8012         message-forward-ignored-headers to be a list.
8013         (message-remove-ignored-headers): Factor out into function.
8014         (message-forward-make-body-mml): Use it.
8015
8016         * imap.el (imap-quote-specials): New function.
8017         (imap-login-auth): Quote specials.
8018
8019         * rfc2231.el (rfc2231-parse-string): Remove dead code.
8020         (rfc2231-parse-string): Allow concatanation of parameters that
8021         aren't contiguous.  The test case is
8022           (mail-header-parse-content-type "message/external-body;
8023             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
8024             access-type=LOCAL-FILE;
8025             name*1*=plugh%2fhello-sailor%2fbing.pdf")
8026
8027 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8028
8029         * nntp.el (nntp-accept-process-output): Return the value of
8030         `nnheader-accept-process-output'.
8031
8032 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8033
8034         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
8035         (gnus-button-alist): Recognize more diff formats.
8036         (gnus-button-patch): Strip directory.
8037
8038 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
8039
8040         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
8041         Emacs 22 when setting focus.
8042
8043 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8044
8045         * gnus-art.el (gnus-article-treat-types): Do treatment of
8046         text/x-verbatim parts.
8047         (gnus-button-patch): New command.
8048
8049         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
8050         addresses that contain invalid characters.
8051
8052 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8053
8054         * message.el (message-put-addresses-in-ecomplete): Use
8055         gnus-replace-in-string.
8056         (message-is-yours-p): Use the more correct
8057         mail-header-parse-address instead of
8058         mail-extract-address-components.
8059         (message-put-addresses-in-ecomplete): Fix typo.
8060
8061         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
8062         keystroke.
8063
8064         * gnus-art.el (gnus-treatment-function-alist): Change order of
8065         newsgroups/generic header folding to avoid double-folding.
8066
8067         * message.el (message-hidden-headers): Add X-Draft-From.
8068
8069         * gnus-sum.el (gnus-summary-repeat-search-article-forward): New
8070         command.
8071         (gnus-summary-repeat-search-article-backward): New command.
8072
8073         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
8074         groups in the parent topic.
8075
8076 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
8077
8078         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
8079         (spam-extra-header-to-number): Return the CRM114 number as a
8080         number instead of a string.
8081
8082 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8083
8084         * gnus-art.el (gnus-face-properties-alist): Moved here from
8085         gnus-fun.
8086
8087         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
8088
8089 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8090
8091         * message.el (message-strip-forbidden-properties): Only display on
8092         self-insert-command.
8093
8094         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
8095         reindent.
8096         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
8097
8098 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
8099
8100         * smiley.el (smiley-style): Fix typo.
8101
8102 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8103
8104         * hashcash.el (hashcash-insert-payment-async-2): Use
8105         message-goto-eoh instead of doing it manually.
8106         (mail-add-payment): Use message-narrow-to-header instead of trying
8107         to do the same itself.
8108
8109         * message.el (message-hidden-headers): Add Face.
8110
8111         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
8112         reparenting code.
8113         (gnus-summary-reparent-children): Refactored out code.
8114         (gnus-summary-thread-map): New keystroke.
8115         (gnus-summary-reparent-children): Make into command.
8116
8117         * smiley.el (smiley-style): Default to `medium' if using a large
8118         font.
8119
8120         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
8121         does it itself.
8122
8123         * message.el (message-point-in-header-p): Simplify definition.
8124
8125 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8126
8127         * nnagent.el (nnagent-request-set-mark): Silence log file
8128         writing.
8129         (nnagent-request-set-mark): Use write-region instead of
8130         append-to-file.
8131
8132         * gnus-sum.el (gnus-read-header): Fudge article number if using a
8133         strange select method.
8134
8135         * ecomplete.el (ecomplete-display-matches): Get highlightling
8136         right.
8137         (ecomplete-display-matches): Use literals.
8138         (ecomplete-display-matches): Disable message logging.
8139
8140         * message.el (message-display-abbrev): Small optimization.
8141
8142         * ecomplete.el (ecomplete-display-matches): Allow automatic
8143         display.
8144
8145         * message.el (message-strip-forbidden-properties): Display
8146         abbrevs.
8147         (message-display-abbrev): Get automatic display right.
8148
8149         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
8150         keystrokes.
8151
8152 2006-04-13  Romain Francoise  <romain@orebokech.com>
8153
8154         TODO: Backport to v5-10!
8155
8156         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
8157         Moved here (and renamed) from gnus-registry.el.
8158
8159         * gnus-registry.el: Require gnus-util.
8160         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
8161
8162 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8163
8164         * gnus-group.el (gnus-group-catchup-current): Change
8165         if-then-else-if-then-else into cond.
8166         (gnus-group-catchup): Indent.
8167         (group-name-at-point): New function.
8168         (gnus-fetch-group): Provide default from thing at point.
8169
8170 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8171
8172         * message.el (message-display-abbrev): Fix regexp.
8173
8174         * ecomplete.el (ecomplete-highlight-match-line): Reimplement
8175         choosing.
8176         (ecomplete-highlight-match-line): Fix up code rewrite, remove
8177         dead variables.
8178
8179         * message.el (message-newline-and-indent): Remove debugging.
8180         (message-display-abbrev): Use new implementation.
8181
8182 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
8183
8184         * gnus-art.el (gnus-article-mode): Set
8185         cursor-in-non-selected-windows to nil.
8186
8187         * smiley.el: Revert previous change.
8188         (smiley-data-directory): defvar it before using it in the
8189         defcustom of `smiley-style'.
8190
8191 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8192
8193         * message.el (message-newline-and-indent): New function.
8194
8195         * ecomplete.el: Implement more bits.
8196
8197         * message.el (message-put-addresses-in-ecomplete): Clean up the
8198         string.
8199
8200         * ecomplete.el (ecomplete-add-item): Chop off decimals.
8201
8202         * gnus-sum.el (gnus-summary-save-parts): Bind
8203         gnus-summary-save-parts-counter and use it to make unique file
8204         names.
8205
8206         * gnus-art.el (gnus-ignored-headers): Add some more headers.
8207
8208         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
8209         parameter to say whether to actually parse the individual
8210         addresses.
8211
8212         * message.el (message-put-addresses-in-ecomplete): New function.
8213         (ecomplete): Require.
8214         (message-mail-alias-type): Add ecomplete as an option.
8215
8216 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
8217
8218         * flow-fill.el (fill-flowed): Remove trailing space from blank
8219         quoted lines.
8220
8221 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8222
8223         * smiley.el (smiley-style): Move definition later to avoid a
8224         compilation warning.
8225
8226 2006-04-12  Kenichi Handa  <handa@m17n.org>
8227
8228         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
8229         buffer and then decode the buffer text if necessary.
8230         (rfc2231-encode-string): Be sure to work on multibyte buffer at
8231         first, and after mm-encode-body, change the buffer to unibyte.
8232         Use mm-disable-multibyte instead of set-buffer-multibyte.
8233
8234 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8235
8236         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
8237         Content-Type header instead of Content-Disposition header.
8238         (gnus-mime-inline-part): Ditto.
8239         (gnus-mime-view-part-as-charset): Ignore charset that the part
8240         specifies.
8241
8242         * mm-decode.el (mm-display-part): Work with external parts and
8243         usual parts similarly.
8244
8245         * mm-extern.el (mm-inline-external-body): Use mm-display-part
8246         instead of gnus-display-mime.
8247
8248         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
8249         instead of with-temp-buffer.
8250
8251         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
8252         tag to summarized topics part in order to encode non-ASCII text.
8253
8254 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8255
8256         * smiley.el (smiley-style): New variable.
8257         (smiley-directory): New function.
8258         (smiley-data-directory): Derive from `smiley-style' using
8259         `smiley-directory'.
8260         (smiley-regexp-alist): Add new entries.
8261
8262         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
8263         (gnus-article-browse-delete-temp): Add :version.
8264
8265 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
8266
8267         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
8268         the sieve region.
8269
8270 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8271
8272         * gnus.el (gnus-version-number): Bump version.
8273
8274 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
8275
8276         * gnus.el: No Gnus v0.4 is released.
8277
8278 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8279
8280         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
8281         layout.
8282
8283         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
8284         unknown charset.
8285
8286         * message.el (message-header-synonyms): Add Original-To to the
8287         default.
8288
8289         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
8290         optional parameter.
8291
8292 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
8293
8294         * gnus-fun.el (gnus): Require it for gnus-directory.
8295
8296 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8297
8298         * gnus-fun.el (gnus-face-properties-alist): Add :version.
8299
8300 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8301
8302         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
8303
8304 2006-04-05  Simon Josefsson  <jas@extundo.com>
8305
8306         * password.el (password-reset): New function.
8307
8308 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
8309
8310         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region): Wait
8311         for BEGIN_SIGNING too, new in GnuPG 1.4.3.
8312
8313 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8314
8315         * nnweb.el (nnweb-google-create-mapping): Update regexp.
8316         Some whitespace was matched into the url, which broke browsing hits
8317         > 100 when mm-url-use-external was nil.
8318
8319 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
8320
8321         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Check
8322         gnus-extra-headers for 'Newsgroups.
8323
8324         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
8325         bound.
8326
8327 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
8328
8329         * pgg-gpg.el: Clean up process buffers every time gpg processes
8330         complete.
8331
8332 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
8333
8334         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
8335         doc string.
8336
8337 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
8338
8339         * pgg-gpg.el (pgg-gpg-process-filter)
8340         (pgg-gpg-wait-for-completion): Check if buffer is alive.
8341
8342         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
8343         lines, temporary fix.
8344
8345 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
8346
8347         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
8348
8349 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
8350
8351         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
8352         default-enable-multibyte-characters.  This reverts the change from
8353         revision 6.17 which is no longer necessary because the passphrase
8354         is sent separately now.  GnuPG messages are unreadable under
8355         multibyte locales with default-enable-multibyte-characters set to
8356         nil.
8357
8358 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
8359
8360         * message.el (message-tool-bar-gnome): Move "spell".
8361
8362 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
8363
8364         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
8365         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
8366         instead.
8367
8368 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
8369
8370         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Improve
8371         newsgroups handling for NNTP overviews which don't include
8372         Newsgroups.
8373
8374 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8375
8376         * message.el (message-resend): Bind message-generate-hashcash to nil.
8377
8378 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8379
8380         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
8381         when searching for already-paid recipients.
8382
8383 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
8384
8385         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
8386         passphrases when it is not needed.
8387         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
8388         passphrase stuff from gpg, should only be necessary when you use
8389         gpg with a smartcard.
8390
8391 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8392
8393         * mml.el (mml-insert-mime): Ignore cached contents of
8394         message/external-body part.
8395
8396         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
8397         (mm-insert-part): Ditto.
8398
8399 2006-03-23  Simon Josefsson  <jas@extundo.com>
8400
8401         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
8402         Reiner.
8403         (pgg-gpg-use-agent-p): Use it again.
8404
8405 2006-03-23  Simon Josefsson  <jas@extundo.com>
8406
8407         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
8408         older emacsen.
8409         (pgg-gpg-use-agent-p): Don't use it.
8410
8411 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
8412
8413         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
8414         if we can.
8415
8416 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
8417
8418         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
8419         (pgg-gpg-update-agent): New function.
8420         (pgg-gpg-use-agent-p): New function.
8421         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
8422         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
8423         (pgg-gpg-sign-region): Use it.
8424
8425 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8426
8427         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
8428         Reported by Ralf Wachinger <rwachinger@gmx.de>.
8429
8430 2006-03-21  Simon Josefsson  <jas@extundo.com>
8431
8432         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
8433         <wilde@sha-bang.de>.
8434         (pgg-gpg-use-agent): New variable.
8435         (pgg-gpg-process-region): Use it.
8436         (pgg-gpg-encrypt-region): Likewise.
8437         (pgg-gpg-encrypt-symmetric-region): Likewise.
8438         (pgg-gpg-decrypt-region): Likewise.
8439         (pgg-gpg-sign-region): Likewise.
8440         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
8441
8442 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
8443
8444         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
8445
8446         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
8447         Add comment on version.
8448
8449 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
8450
8451         * smiley.el: Add missing test smiley.
8452
8453 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8454
8455         * mm-decode.el (mm-with-part): New macro.
8456         (mm-get-part): Use it; work with message/external-body as well.
8457         (mm-save-part): Treat name and filename equally.
8458
8459         * mm-extern.el (mm-extern-cache-contents): New function.
8460         (mm-inline-external-body): Use it; force the part to be displayed;
8461         move undisplayer added to the cached handle to the parent.
8462
8463         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
8464         (gnus-mime-view-part-as-type): Work with message/external-body.
8465
8466         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
8467
8468 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
8469
8470         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
8471         images in image-load-path.  [Sync with image.el, revision 1.60, in
8472         Emacs.]
8473
8474 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
8475
8476         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
8477         path rather than symbol.  Always return list of directories.
8478         Guarantee that image directory comes first.  [Sync with image.el,
8479         revision 1.59, in Emacs.]
8480
8481         * message.el (message-make-tool-bar): Adjust to new API of
8482         `gmm-image-load-path-for-library'.
8483
8484         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8485
8486         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8487
8488 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8489
8490         * gnus-art.el (gnus-article-only-boring-p):
8491         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
8492         intangible text.
8493         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
8494
8495 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
8496
8497         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.  Use
8498         `defun' instead of `gmm-defun-compat'.
8499
8500 2006-03-14  Simon Josefsson  <jas@extundo.com>
8501
8502         * message.el (message-unique-id): Don't use message-number-base36
8503         if (user-uid) is a float.
8504         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
8505
8506 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8507
8508         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
8509
8510         * gnus-art.el (gnus-mime-display-single): Make sure there is an
8511         empty line between a part and a message part.
8512
8513 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
8514
8515         * smiley.el: Add more test smileys.
8516         (smiley-data-directory, smiley-regexp-alist)
8517         (gnus-smiley-file-types): Fix doc strings.
8518         (smiley-update-cache): Clear smiley-cached-regexp-alist before
8519         adding new elements.
8520         (smiley-mouse-map): Unused code.  Make it a comment.
8521
8522 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8523
8524         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
8525         scan latest NoCeM messages instead of old ones.
8526         (gnus-nocem-check-article): Fix regexps so as to match to PGP
8527         delimiters that are recently used.
8528         (gnus-nocem-load-cache): Add autoload cookie.
8529
8530         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
8531
8532         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
8533         level which is larger than gnus-use-nocem is specified.
8534
8535         * gnus-group.el (gnus-group-get-new-news): Ditto.
8536
8537 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
8538
8539         * gnus-util.el (gnus-tool-bar-update): New function.
8540
8541         * gnus-group.el (gnus-group-update-tool-bar): New variable.
8542         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
8543
8544         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
8545
8546         * gnus-group.el (gnus-group-redraw-when-idle)
8547         (gnus-group-redraw-check): Remove.
8548         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
8549
8550 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8551
8552         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
8553         if optional last element is specified in splits (FIELD VALUE...).
8554
8555 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
8556
8557         * message.el (message-make-tool-bar): Rename gmm-image-load-path
8558         to gmm-image-load-path-for-library.  Call with no-error argument.
8559         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
8560
8561         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8562
8563         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
8564
8565         * gmm-utils.el (gmm-image-load-path): Remove alias.
8566
8567 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
8568
8569         * gmm-utils.el (gmm-image-load-path): Add alias.
8570
8571         * nnml.el (nnml-generate-nov-databases-directory): Rename from
8572         nnml-generate-nov-databases-1.
8573         (nnml-generate-nov-databases): Use it.
8574         (nnml-generate-nov-databases-directory): Document no-active
8575         argument.
8576
8577         * gmm-utils.el (gmm-image-load-path-for-library): Return single
8578         directory if path is t.  Add no-error.
8579
8580         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
8581         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
8582
8583         * gnus-art.el (gnus-article-browse-delete-temp-files): Simplify
8584         resetting gnus-article-browse-html-temp-list.
8585
8586         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
8587         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
8588         Add example to docstring.  Rename local variables.  Move error
8589         checks to default case in cond and simplify.
8590
8591 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8592
8593         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
8594         handle is multipart when calling it recursively.
8595         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
8596
8597 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
8598
8599         * nnimap.el (nnimap-request-update-info-internal): Optimize.
8600         Don't `gnus-uncompress-range' to avoid excessive memory usage.
8601
8602 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8603
8604         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
8605         is loaded.
8606
8607         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
8608         loaded.
8609
8610 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
8611
8612         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
8613         to "Emacs 23 (unicode)" in doc string.
8614
8615         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
8616         "Emacs 23 (unicode)" in comment.
8617
8618 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8619
8620         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
8621
8622         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
8623         characters 160 through 255 in Emacs 23.
8624
8625 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8626
8627         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
8628         gnus-article-browse-html-temp.
8629         (gnus-article-browse-delete-temp): Make it customizable.  Add
8630         `file'.  Adjust doc string.
8631         (gnus-article-browse-delete-temp-files): Add argument.  Allow
8632         query for each file.  Adjust doc string.
8633         (gnus-article-browse-html-parts): Add
8634         `gnus-article-browse-delete-temp-files' to
8635         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
8636
8637 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
8638
8639         * gnus-art.el (gnus-article-browse-html-temp)
8640         (gnus-article-browse-delete-temp): New variables.
8641         (gnus-article-browse-delete-temp-files): New function.
8642         (gnus-article-browse-html-parts): Use it.
8643
8644 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
8645
8646         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
8647
8648         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
8649         string.
8650
8651         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
8652         gnus-summary-insert-new-articles when unplugged.  Remove
8653         gnus-summary-search-article-forward.
8654
8655         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
8656         display-visual-class instead of display-color-cells.
8657
8658 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8659
8660         * dgnushack.el: Autoload customize-group for XEmacs.
8661
8662         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
8663         message/* containing non-ASCII text properly.
8664
8665 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
8666
8667         * message.el: Require gmm-utils, remove autoloads.
8668         (message-tool-bar): Set default based on
8669         gmm-tool-bar-style.
8670         (message-tool-bar-gnome): Add gmm-customize-mode.
8671
8672         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
8673         gmm-tool-bar-style.
8674         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
8675
8676         * gnus-group.el (gnus-group-tool-bar): Set default based on
8677         gmm-tool-bar-style.
8678         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
8679
8680         * gmm-utils.el (gmm-image-directory): Rename variable from
8681         gmm-image-load-path.
8682         (gmm-image-load-path): Use gmm-image-directory.
8683         (gmm-customize-mode): New function.
8684         (gmm-tool-bar-style): New variable.
8685
8686         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
8687         gnus-group-redraw-line-number.
8688         (gnus-group-redraw-check): Simplify.
8689         (gnus-group-tool-bar-update): Remove redraw check.
8690         (gnus-group-make-tool-bar): Add redraw check.
8691
8692 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
8693
8694         * gnus-art.el (gnus-button): Add missing parentheses.
8695
8696 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8697
8698         * lpath.el: Fbind line-number-at-pos.
8699
8700 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
8701
8702         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
8703
8704 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8705
8706         * gnus-art.el (gnus-button): New face.
8707         (gnus-article-button-face): Use it.
8708
8709         * gnus-sum.el (gnus-summary-tool-bar-gnome): Add
8710         gnus-summary-next-page.  Re-order.
8711
8712         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
8713         next-node are now included.
8714         (gnus-group-redraw-line-number): New internal variable.
8715         (gnus-group-redraw-check): Helper function for updating the tool
8716         bar.
8717         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
8718
8719         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
8720
8721         * spam.el (spam-spamassassin-score-regexp): New internal variable.
8722         (spam-extra-header-to-number, spam-check-spamassassin-headers):
8723         Use it to match format of Spamassassin 3.0 and later.  Reported by
8724         IRIE Tetsuya <irie@t.email.ne.jp>.
8725         (spam-check-bogofilter)
8726         (spam-bogofilter-register-with-bogofilter): Fix args of
8727         `gnus-error' calls.
8728
8729 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
8730
8731         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
8732         unnecessary interaction when sending queued mails.  Reported by
8733         TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
8734
8735 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
8736
8737         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
8738         first or last are nil.
8739
8740 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
8741
8742         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
8743
8744 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8745
8746         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
8747
8748 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8749
8750         * dns.el (query-dns): Protect more against buggy tcp output.
8751
8752 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
8753
8754         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
8755         nov.php.
8756
8757 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8758
8759         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
8760         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
8761         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
8762         output on the server side.
8763         (nnweb-google-create-mapping): Update regexps and add some
8764         progress indication.
8765
8766 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
8767
8768         * gnus-group.el (gnus-group-tool-bar-gnome): Fix
8769         gnus-agent-toggle-plugged.  Re-order icons.
8770         (gnus-group-tool-bar-gnome): Add
8771         gnus-group-{prev,next}-unread-group.
8772         (gnus-group-tool-bar-gnome): Re-order icons.
8773
8774         * gnus-sum.el (gnus-summary-tool-bar-gnome): Move
8775         gnus-summary-insert-new-articles.
8776
8777         * message.el (message-tool-bar-gnome, message-tool-bar-retro): Fix
8778         comments.
8779
8780         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
8781         also available in Emacs 21.3.
8782
8783         * message.el (message-fix-before-sending): Change "Emacs 22" to
8784         "Emacs 23 (unicode)" in comment.
8785
8786         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
8787         "Emacs 23 (unicode)" in comment.
8788
8789         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
8790         comment.
8791         (mm-coding-system-p): Add comment about no-MULE XEmacs.
8792
8793         * mm-view.el (mm-fill-flowed): Add :version.
8794
8795 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
8796
8797         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
8798         and load-path.
8799
8800 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
8801
8802         * message.el: Autoload gmm-image-load-path.
8803         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
8804         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
8805         consitency.
8806
8807         * gmm-utils.el (gmm-image-load-path): Also search in
8808         "../etc/images".  Don't set gmm-image-load-path if we don't find
8809         the image.
8810
8811 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
8812
8813         * gmm-utils.el (gmm-image-load-path): Don't make
8814         `gmm-image-load-path' include subdirectories which the second arg
8815         `image' might specify.
8816
8817         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
8818         subdirectory to icon file names.
8819
8820         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
8821
8822 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
8823
8824         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
8825         gmm-image-load-path calls.
8826
8827         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8828
8829         * message.el (message-make-tool-bar): Ditto.
8830
8831         * mml.el (mml-preview): Added comment concerning tool bar icons.
8832
8833         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
8834         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
8835
8836         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
8837         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
8838
8839         * message.el (message-tool-bar-gnome): Use new icon names.
8840         (message-make-tool-bar): Use `gmm-image-load-path'.
8841
8842         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path): New
8843         functions from MH-E.
8844         (gmm-image-load-path): New variable from MH-E.
8845         (gmm-image-load-path): New function from MH-E.  Added arguments
8846         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
8847         *-image-load-path-called-flag.
8848
8849 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
8850
8851         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
8852
8853 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
8854
8855         * nnimap.el (nnimap-request-move-article): Change folder back to
8856         source group before deleting.
8857
8858 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
8859
8860         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
8861
8862         * gnus-art.el (mm-url-insert-file-contents-external): Autoload
8863         mm-url.
8864
8865         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
8866
8867 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8868
8869         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
8870         coding system which mm-charset-to-coding-system returns for a
8871         given charset is valid.
8872
8873 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
8874
8875         * html2text.el (html2text-remove-tag-list):
8876         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
8877
8878 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
8879
8880         * gnus-cus.el: Revert 2005-10-17 change.
8881
8882 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8883
8884         * gnus-art.el (article-strip-banner): Call
8885         article-really-strip-banner only when the regexp match is made.
8886
8887 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8888
8889         * gnus-art.el (article-strip-banner): Use
8890         gnus-extract-address-components instead of
8891         mail-header-parse-addresses to make it work with non-ASCII text;
8892         remove mail-encode-encoded-word-string.
8893
8894         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
8895         values which are surrounded with \"...\"; make it never cause a
8896         Lisp error; give up parsing of parameters if it failed in
8897         extracting type.
8898
8899 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
8900
8901         * smime.el (smime-cert-by-ldap-1): Fix bug where
8902         `smime-ldap-search' returns results without userCertificates.
8903
8904 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8905
8906         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
8907
8908 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
8909
8910         * spam.el (spam-check-spamassassin-headers): Adapt format for
8911         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
8912         <ari@mbf.ocn.ne.jp>.
8913         (spam-list-of-processors): Add spam-use-gmane.
8914
8915 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8916
8917         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
8918         make-temp-file; make it work with XEmacs as well.
8919
8920         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
8921         mm-make-temp-file.
8922
8923         * mm-decode.el (mm-display-external): Use the 3rd arg of
8924         mm-make-temp-file.
8925         (mm-create-image-xemacs): Ditto.
8926
8927 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8928
8929         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
8930         with message-narrow-to-headers.
8931         (gnus-draft-setup): Narrow to header to run message-fetch-field.
8932         (gnus-draft-check-draft-articles): New function.
8933         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
8934
8935 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
8936
8937         * gnus-art.el (gnus-article-browse-html-parts):
8938         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
8939         Don't use suffix argument for mm-make-temp-file for Emacs 21
8940         compatibility.  Remove useless `format'.
8941
8942 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
8943
8944         * nnweb.el (nnweb-google-wash-article): Update regexps.
8945         (nnweb-group-alist): Use defvoo instead of defvar.
8946
8947 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
8948
8949         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
8950         re-loading nn* modules.
8951
8952 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
8953
8954         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
8955         for `tool-bar-mode' and don't check it's default-value.
8956
8957         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
8958
8959         * message.el (message-make-tool-bar): Ditto.
8960
8961         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
8962         `substring'.  Shorten tmp-file name.
8963
8964         * gnus.el: Remove bogus comment.
8965
8966 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
8967
8968         * gnus-art.el (gnus-article-browse-html-parts): New function.
8969         (gnus-article-browse-html-article): New function for viewing html
8970         articles with a browser.
8971
8972 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
8973
8974         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
8975         in elisp.
8976         (pgg-gpg-encrypt-symmetric-region): Ditto.
8977         (pgg-gpg-sign-region): Ditto.
8978
8979         * pgg-def.el (pgg-text-mode): New variable.
8980
8981         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
8982         (mml2015-pgg-encrypt): Ditto.
8983
8984         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
8985         (mml1991-pgg-encrypt): Ditto.
8986
8987 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8988
8989         * nnfolder.el (nnfolder-insert-newsgroup-line): Use
8990         message-make-date instead of current-time-string.
8991
8992         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
8993         to gnus-decoded which mm-uu might set.
8994
8995 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
8996
8997         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
8998         don't decode quoted parameters; remove misimported Emacs code.
8999         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
9000         (rfc2231-decode-encoded-string): Don't use split-string which
9001         behaves differently according to Emacs version; use
9002         mm-decode-coding-region to convert charset to coding-system.
9003         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
9004         (rfc2231-encode-string): Remove misimported Emacs code.
9005
9006 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9007
9008         * gnus-art.el (article-decode-charset): Don't use ignore-errors
9009         when calling mail-header-parse-content-type.
9010         (article-de-quoted-unreadable): Ditto.
9011         (article-de-base64-unreadable): Ditto.
9012         (article-wash-html): Ditto.
9013
9014         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
9015         calling mail-header-parse-content-type and
9016         mail-header-parse-content-disposition.
9017         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
9018         mail-header-parse-content-type.
9019
9020         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
9021         insert charset and format parameters; encode description after
9022         inserting it to buffer.
9023         (mml-insert-parameter): Fold lines properly even if a parameter is
9024         segmented into two or more lines; change the max column to 76.
9025
9026         * rfc1843.el (rfc1843-decode-article-body): Don't use
9027         ignore-errors when calling mail-header-parse-content-type.
9028
9029         * rfc2231.el (rfc2231-parse-string): Return at least type if
9030         possible; don't cause an error even if it fails in parsing of
9031         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
9032         (rfc2231-encode-string): Don't break lines at the beginning, leave
9033         it to mml-insert-parameter.
9034
9035         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
9036         calling mail-header-parse-content-type.
9037
9038 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
9039
9040         * spam-report.el (spam-report-gmane-use-article-number):
9041         Improve doc string.
9042         (spam-report-gmane-internal): Check if a suitable header was found
9043         in the article.
9044
9045 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9046
9047         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
9048         (rfc2231-encode-string): Make param*=value always begin with LWSP.
9049
9050 2006-02-05  Romain Francoise  <romain@orebokech.com>
9051
9052         Update copyright notices of all files in the gnus directory.
9053
9054 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9055
9056         * nnweb.el (nnweb-request-group): Avoid growing overview files.
9057
9058 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
9059
9060         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
9061         segmented lines of parameter value to cope with Thunderbird 1.5
9062         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
9063         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
9064         (rfc2231-encode-string): Don't make lines exceeding 76 column.
9065
9066 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
9067
9068         * mml.el (mml-generate-mime-1): Correct the order of inline signed
9069         parts.
9070
9071 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9072
9073         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
9074         there's only one active file for all servers.
9075         (nnweb-request-scan): Make sure nnweb-articles is initialized on
9076         solid groups.  Gnus might have used a FAST request to select the group.
9077         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
9078         and nnweb-search redundantly in the active file.
9079         (nnweb-request-list): Don't list bogus groups.  There can only be one.
9080         (nnweb-request-create-group): Don't use ARGS.
9081         (nnweb-possibly-change-server, nnweb-request-group): Remove some
9082         initialisations.  Let nnoo do the work.
9083
9084 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9085
9086         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
9087         Say the part has been decoded.
9088
9089         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
9090
9091 2006-01-31  Kevin Ryde  <user42@zip.com.au>
9092
9093         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
9094         mailcap-viewer-test-cache when there's no 'test clause, since that
9095         will invert the meaning of a "nil" test previously determined by
9096         mailcap-mailcap-entry-passes-test.
9097
9098 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9099
9100         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
9101         compiling.
9102
9103         * gnus-sum.el: Ditto.
9104
9105         * message.el: Don't bind tool-bar-map when compiling.
9106
9107 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
9108
9109         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
9110
9111 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
9112
9113         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
9114         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
9115         current Google Groups.
9116
9117 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
9118
9119         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
9120         and tool-bar-mode.
9121
9122         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
9123         and tool-bar-mode.
9124
9125         * message.el (message-tool-bar-update): Simplify.
9126         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
9127
9128         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
9129         gnus-summary-buffer.
9130         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
9131         gnus-summary-reply.
9132
9133         * gmm-utils.el (gmm): Add :version.
9134
9135 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9136
9137         * Makefile.in (clean): New rule.
9138         (distclean): Use it.
9139
9140 2006-01-26  Steve Youngs  <steve@sxemacs.org>
9141
9142         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list): Don't
9143         autoload.
9144
9145 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9146
9147         * gmm-utils.el (gmm-verbose): Add :group.
9148
9149 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
9150
9151         * message.el: Change some comments WRT tool-bars.
9152
9153         * gnus-sum.el (gnus-summary-tool-bar)
9154         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
9155         (gnus-summary-tool-bar-zap-list): New variables.
9156         (gnus-summary-make-tool-bar): Complete rewrite using
9157         `gmm-tool-bar-from-list'.
9158
9159         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
9160         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list): New
9161         variables.
9162         (gnus-group-make-tool-bar): Complete rewrite using
9163         `gmm-tool-bar-from-list'.
9164         (gnus-group-tool-bar-update): New function.
9165
9166         * message.el (message-mode-field-menu): Add "Show hidden Headers".
9167
9168 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9169
9170         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
9171         is dissected into a single part of which the type is the same as
9172         the given one; decode charset.
9173
9174 2006-01-21  Kevin Ryde  <user42@zip.com.au>
9175
9176         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
9177         into alists as symbol not string, since that's what
9178         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
9179         look for.
9180
9181 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
9182
9183         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
9184         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
9185
9186         * message.el (message-tool-bar-gnome): Use gmm-ignore.
9187
9188 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9189
9190         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
9191         (gnus-xmas-mime-security-button-menu): New function.
9192
9193         * gnus-art.el (gnus-mime-security-button-commands): New variable.
9194         (gnus-mime-security-button-menu): New definition.
9195         (gnus-mime-security-button-map): Use them.
9196         (gnus-mime-security-button-menu): New function.
9197         (gnus-insert-mime-security-button): Addition to help echo.
9198         (gnus-mime-security-run-function, gnus-mime-security-save-part)
9199         (gnus-mime-security-pipe-part): New functions.
9200
9201         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
9202         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
9203
9204         * mm-decode.el (mm-handle-set-disposition): Remove.
9205         (mm-handle-set-description): Remove.
9206
9207 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9208
9209         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
9210         (mm-w3m-standalone-supports-m17n-p): New function.
9211         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
9212         w3m usage.
9213
9214         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone): Use
9215         mm-w3m-standalone-supports-m17n-p to alter w3m usage.
9216
9217 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
9218
9219         * message.el (message-tool-bar-zap-list): Use
9220         gmm-tool-bar-zap-list as custom type.
9221         (message-tool-bar-update): New function.
9222         (message-tool-bar, message-tool-bar-gnome)
9223         (message-tool-bar-retro): Add message-tool-bar-update.
9224         (message-tool-bar-gnome): Add flyspell-buffer.
9225
9226         * gnus-util.el (gnus-error): Describe `args'.
9227
9228         * gmm-utils.el (gmm-error): Describe `args'.
9229         (gmm-tool-bar-zap-list): New widget.
9230         (gmm-tool-bar-from-list): Improve description of `zap-list'.
9231
9232 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9233
9234         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
9235         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
9236         the number of recursive calls.
9237
9238         * mm-decode.el (mm-handle-set-disposition): New macro.
9239         (mm-handle-set-description): New macro.
9240
9241 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
9242
9243         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
9244         encoding.
9245
9246 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9247
9248         * message.el (message-tool-bar-zap-list, message-tool-bar)
9249         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
9250         (message-tool-bar-local-item-from-menu): Remove.
9251         (message-tool-bar-map): Replace by `message-make-tool-bar'.
9252         (message-make-tool-bar): New function.
9253         (message-mode): Use `message-make-tool-bar'.
9254
9255         * gmm-utils.el: New file.
9256         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
9257         (gmm-lazy): New widget copied from `nnmail.el'.
9258         (gmm-tool-bar-from-list): New function for creating customizable
9259         tool bars.
9260         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
9261         output.
9262         (gmm): Add :prefix to defgroup.
9263
9264 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
9265
9266         * gmm-utils.el (gmm-widget-p): New function.
9267
9268 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
9269
9270         * mml.el (mml-attach-file): Describe `description' in doc string.
9271         (mml-menu): Add Emacs MIME manual and PGG manual.
9272
9273 2006-01-20  Richard M. Stallman  <rms@gnu.org>
9274
9275         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
9276
9277 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
9278
9279         * nntp.el (nntp-end-of-line): Doc fix.
9280
9281 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
9282
9283         * imap.el (imap-open): Handle case where buffer is a buffer
9284         object.
9285
9286 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9287
9288         * gnus-delay.el (gnus-delay): Don't autoload.
9289         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9290         to be re-loaded when customizing the `gnus-delay' group.
9291
9292 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
9293
9294         * message.el (message-insert-citation-line): Use newlines.
9295
9296 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9297
9298         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
9299         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
9300         these routines, so the passphrase can be managed externally and
9301         passed in to the system.
9302         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
9303         pgg-add-passphrase-to-cache function.
9304
9305         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
9306         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
9307         these routines, so the passphrase can be managed externally and
9308         passed in to the system.
9309         (pgg-pgp5-sign-region): Use new name of
9310         pgg-add-passphrase-to-cache function.
9311
9312 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
9313
9314         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
9315         part of the decoded armor to find the key-identifier.
9316         (pgg-gpg-lookup-key-owner): New function to return the
9317         human-readable identifier of a key owner.
9318         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
9319         itself.
9320         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
9321         the key value) if we have a key and can match it against a secret
9322         key.  Also, added a note pointing out fact that the prompt only
9323         indicates the first matching key.
9324
9325         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
9326         pgg-decrypt-region.
9327         (pgg-add-passphrase-to-cache): Rename from
9328         `pgg-add-passphrase-cache' to reduce confusion (all callers
9329         changed).
9330         (pgg-remove-passphrase-from-cache): Rename from
9331         `pgg-remove-passphrase-cache' to reduce confusion (all callers
9332         changed).
9333         (pgg-read-passphrase, pgg-add-passphrase-cache)
9334         (pgg-remove-passphrase-cache): Add informative docstrings.
9335         (pgg-decrypt): Convey provided passphrase in subordinate call to
9336         pgg-decrypt-region.
9337
9338 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
9339
9340         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
9341         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
9342         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
9343         'passphrase' argument, so the passphrase can be managed externally
9344         and then passed in to the system.
9345
9346         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
9347         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
9348         so the passphrase cache can be used reliably with identifiers
9349         besides a pgp packet's key id.
9350
9351         * pgg-gpg.el (pgg-gpg-encrypt-region)
9352         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
9353         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
9354         these routines, so the passphrase can be managed externally and
9355         passed in to the system.
9356
9357         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
9358         'notruncate' argument, so the passphrase cache can be used
9359         reliably with identifiers besides a pgp packet's key id.
9360
9361 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
9362
9363         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
9364         symmetric encryption.
9365         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
9366         encrypted session key.
9367         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
9368         message ask for the passphrase in a proper way.
9369
9370         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
9371         New user commands for symmetric encryption.
9372
9373 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9374
9375         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
9376
9377         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
9378
9379 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
9380
9381         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
9382
9383 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9384
9385         * mm-decode.el (mm-inlined-types): Add application/pgp.
9386         (mm-automatic-display): Ditto.
9387
9388         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
9389         part as text.
9390
9391 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9392
9393         * nnrss.el: Update copyright.
9394         (nnrss-opml-import): Query whether to subscribe to each entry.
9395
9396         * gnus-art.el:
9397         * gnus-sum.el:
9398         * gnus-xmas.el:
9399         * messagexmas.el:
9400         * mm-uu.el:
9401         * mm-view.el: Update copyright.
9402
9403 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
9404
9405         * message.el (message-info): New function.
9406         (message-mode-menu): Add it.
9407         Update copyright.
9408
9409         * ChangeLog: Fix and update copyright.
9410
9411 2006-01-13  Romain Francoise  <romain@orebokech.com>
9412
9413         * message.el (message-forward-subject-name-subject): Prefer the
9414         address to 'nowhere' if the sender has no name.
9415         Fix typo.  Update copyright year.
9416
9417 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9418
9419         * gnus-art.el (article-wash-html): Use
9420         gnus-summary-show-article-charset-alist if a numeric arg is given.
9421         (gnus-article-wash-html-with-w3m-standalone): New function.
9422
9423         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
9424         mm-inline-text-html-render-with-w3m-standalone.
9425         (mm-text-html-washer-alist): Map w3m-standalone to
9426         gnus-article-wash-html-with-w3m-standalone.
9427         (mm-inline-text-html-render-with-w3m-standalone): New function.
9428
9429 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
9430
9431         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
9432         Improve LaTeX.
9433
9434 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9435
9436         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
9437         (nnrss-request-article): Render text/plain parts as HTML.
9438
9439         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
9440         the buffer.
9441
9442 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
9443
9444         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
9445         custom definition of `gnus-posting-styles'.
9446
9447         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bind
9448         print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
9449
9450 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
9451
9452         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
9453         Use nntp for bug archive.
9454
9455 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9456
9457         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
9458         parts.
9459         (nnrss-normalize-date): New function converts ISO 8601 date into
9460         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9461         (nnrss-check-group): Use it.
9462
9463 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9464
9465         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
9466
9467         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
9468         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
9469         (nnrss-insert-w3): Ditto.
9470
9471 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9472
9473         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
9474         the articles to be forwarded including the case where neither a
9475         number of articles nor a region is specified.
9476
9477 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9478
9479         * nnrss.el (nnrss-request-article): Fix last change; fill
9480         text/plain parts.
9481
9482 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9483
9484         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
9485         in text/plain part.
9486         (nnrss-check-group): Don't add excessive newline to dc:subject.
9487
9488 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
9489
9490         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
9491         article.
9492
9493 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
9494
9495         * nnml.el: Don't require gnus-bcklg.  Autoload it.
9496         (nnml-use-compressed-files, nnml-save-mail): Support other
9497         comression programs such as bzip2.
9498
9499 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9500
9501         * dns.el (query-dns): Make sure we check the buffer size before
9502         removing tcp headers.
9503
9504 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
9505
9506         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
9507         remove MIME buttons associated with multipart/alternative parts.
9508         (gnus-mime-display-alternative): Tag buttons using `article-type'
9509         text property.
9510
9511         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
9512         associated with multipart/alternative parts.
9513
9514         * gnus-art.el (gnus-signature-separator): Fix custom type.
9515
9516         * mm-decode.el (mm-inlined-types): Fix custom type.
9517         (mm-keep-viewer-alive-types): Ditto.
9518         (mm-automatic-display): Ditto.
9519         (mm-attachment-override-types): Ditto.
9520         (mm-inline-override-types): Ditto.
9521         (mm-automatic-external-display): Ditto.
9522
9523 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
9524
9525         * spam-report.el (spam-report-user-mail-address)
9526         (spam-report-user-agent): New variables.
9527         (spam-report-url-ping-plain): Use spam-report-user-agent.
9528
9529 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
9530
9531         * gnus-art.el (gnus-button-handle-custom): Do not just use
9532         `customize-apropos' for any "M-x customize-*" button but the
9533         function called for.  Accept both the function name and its
9534         argument in order to achieve this.
9535         (gnus-button-alist): Remove support for "custom:" URL's.  Pass
9536         function name to `gnus-button-handle-custom' in case of "M-x
9537         customize-*" buttons.
9538
9539 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9540
9541         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
9542         multipart/alternative and add xref to mm-discouraged-alternatives
9543         in doc string.
9544
9545         * mm-decode.el (mm-discouraged-alternatives): Add xref to
9546         gnus-buttonized-mime-types in doc string.
9547
9548 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
9549
9550         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
9551         Suggest image/.* in the doc string.
9552
9553 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
9554
9555         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
9556         message-marks (Debian bug #342521).
9557
9558 2005-12-12  Simon Josefsson  <jas@extundo.com>
9559
9560         * password.el (password-read-from-cache): Add.
9561         (password-read): Use it.
9562
9563 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9564
9565         * rfc2047.el (rfc2047-charset-to-coding-system): Recognize
9566         us-ascii as a MIME charset.
9567
9568         * mm-bodies.el (mm-decode-content-transfer-encoding): Protect
9569         against the case where the 2nd arg TYPE is nil.
9570
9571 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9572
9573         * pop3.el (pop3-stream-type): Fix custom version.
9574
9575         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
9576
9577 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9578
9579         * mm-decode.el (mm-display-external): Add missing cdr.
9580
9581 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9582
9583         * mm-decode.el (mm-display-external): Use nametemplate (defined in
9584         RFC1524) if it is in mailcap or add a suffix according to
9585         mailcap-mime-extensions when generating a temp filename; postpone
9586         deleting a temp file for 2 seconds for some wrappers, shell
9587         scripts, and so on, which might exit right after having started a
9588         viewer command as a background job.
9589
9590 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9591
9592         * nntp.el (nntp-marks-directory): Fix custom group.
9593
9594         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
9595         steps when < 10.
9596
9597         * gnus-start.el (gnus-no-server-1): Mention
9598         `gnus-level-default-subscribed' in doc string.
9599
9600 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
9601
9602         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
9603         parens.
9604
9605 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9606
9607         * gnus-xmas.el (gnus-use-toolbar): Revert.
9608         (gnus-xmas-setup-toolbar): Use global default-toolbar if
9609         gnus-use-toolbar is default.
9610
9611         * messagexmas.el (message-use-toolbar): Revert.
9612         (message-setup-toolbar): Use global default-toolbar if
9613         message-use-toolbar is default.
9614
9615 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
9616
9617         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
9618         according to default-toolbar-visible-p.
9619
9620         * messagexmas.el (message-use-toolbar): Ditto.
9621
9622 2005-11-26  Dave Love  <fx@gnu.org>
9623
9624         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
9625         (tls-program, tls-success): Provide openssl alternative.
9626
9627         * starttls.el: Doc fixes.
9628         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
9629         SERVICE to PORT.
9630
9631         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
9632         port null or service name.
9633         (starttls-negotiate): Autoload.
9634
9635 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9636
9637         * message.el (message-kill-to-signature): Fix interactive spec.
9638
9639 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9640
9641         * pop3.el (pop3-open-server): Recognize a string as a service name.
9642
9643 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
9644
9645         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
9646
9647 2005-11-23  Dave Love  <fx@gnu.org>
9648
9649         Add pop3s, pop3/starttls.
9650
9651         * pop3.el (pop3-authentication-scheme): Clarify doc.
9652         (open-tls-stream, starttls-open-stream): Autoload.
9653         (pop3-stream-type): New.
9654         (pop3-open-server): Use it.
9655
9656         * mail-source.el (mail-sources): Fix some :types.  Add stream type
9657         for POP.
9658         (mail-source-keyword-map): Add :stream for POP.
9659         (mail-source-fetch-pop): Use pop3-stream-type.
9660
9661 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9662
9663         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
9664         of current-time-string.
9665
9666 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
9667
9668         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
9669         date header.
9670
9671 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9672
9673         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
9674         it can seriously impact performance as it bypasses the agent's
9675         local caches.
9676
9677 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
9678
9679         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
9680         must be explicitly online rather than "not explicitly offline" for
9681         its flags to be synchronized.
9682
9683         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
9684         that gnus-uu-unmark-thread will function correctly.
9685
9686         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
9687         1024K is instead displayed as 1M.
9688
9689 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9690
9691         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
9692
9693 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
9694
9695         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
9696
9697 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
9698
9699         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
9700         error message to display actual error condition.
9701         (gnus-agent-save-local): Avoid saving symbols that are bound to
9702         nil as they simply result in a warning message in
9703         gnus-agent-read-local.
9704
9705 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9706
9707         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
9708         rather than make-variable-buffer-local for file-precious-flag.
9709
9710 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9711
9712         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
9713         for duplicates which are removed.  The invalid sort check then
9714         triggers a rescan after the sort as sorting may have moved
9715         duplicate entries such that they can be cheaply detected.
9716
9717 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9718
9719         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
9720
9721 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
9722
9723         * gnus-agent.el (gnus-agent-article-alist-save-format): Changed
9724         internal variable to a custom variable.  Changed default value
9725         from compressed(2) to uncompressed(1).
9726         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
9727         support for uncompressed agentview files.  Taken together, reading
9728         the agentview file should now be 6-7 times faster.
9729
9730 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
9731
9732         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
9733         as a buffer-local variable.  This avoids creating truncated
9734         dribble files as a result of a hang up, eg.
9735
9736 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
9737
9738         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
9739         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
9740         XEmacs.
9741
9742 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
9743
9744         * gnus-start.el (gnus-start-draft-setup): Enforce
9745         `gnus-draft-mode' for nndraft:drafts at startup.
9746
9747         * gnus.el (gnus-splash): Change custom group.
9748         (gnus-group-get-parameter, gnus-group-parameter-value): Describe
9749         allow-list argument.
9750
9751         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
9752         string.
9753
9754 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
9755
9756         * gnus-art.el (gnus-default-article-saver): Add user-defined
9757         `function' to custom type.
9758
9759 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9760
9761         * imap.el (imap-open): Handle case where buffer is a buffer
9762         object.
9763
9764 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
9765
9766         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
9767         long lines.
9768         (gnus-cache-delete-group): Wrap doc strings.
9769
9770         * gnus-agent.el (gnus-agent-rename-group)
9771         (gnus-agent-delete-group): Wrap doc strings.
9772
9773 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9774
9775         * messagexmas.el (message-use-toolbar): Change the valid values
9776         into default, top, bottom, left, and right.
9777         (message-toolbar-thickness): New variable.
9778         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
9779         well.
9780         (message-setup-toolbar): Make it work.
9781
9782         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
9783         (gnus-use-toolbar): Change the valid values into default, top,
9784         bottom, left, and right.
9785         (gnus-toolbar-thickness): New variable.
9786         (gnus-xmas-setup-toolbar): New function.
9787         (gnus-xmas-setup-group-toolbar): Use it.
9788         (gnus-xmas-setup-summary-toolbar): Use it.
9789
9790 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9791
9792         * gnus-start.el (gnus-1): Add "native" to
9793         gnus-predefined-server-alist.
9794
9795         * gnus.el (gnus-method-to-server): Don't add "native" to the
9796         lists here, because that leads to problems when
9797         gnus-select-method is bound.
9798
9799 2005-11-09  Simon Josefsson  <jas@extundo.com>
9800
9801         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
9802         use (not sort-by-date) instead.
9803
9804 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9805
9806         * gnus-delay.el (gnus-delay-group): Don't autoload.
9807         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
9808         to be re-loaded when customizing the `gnus-delay' group.
9809
9810 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
9811
9812         * message.el: Revert last changes.
9813         (message-insert-citation-line): Use newlines.
9814
9815 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
9816
9817         * message.el (message-courtesy-message)
9818         (message-mark-insert-begin, message-mark-insert-end)
9819         (message-elide-ellipsis, message-cancel-message)
9820         (message-add-header, message-change-subject)
9821         (message-cross-post-followup-to-header)
9822         (message-cross-post-insert-note, message-reduce-to-to-cc)
9823         (message-widen-reply, message-delete-not-region)
9824         (message-kill-to-signature, message-insert-signature)
9825         (message-insert-importance-high, message-insert-importance-low)
9826         (message-insert-or-toggle-importance)
9827         (message-insert-disposition-notification-to)
9828         (message-indent-citation, message-yank-original)
9829         (message-cite-original-without-signature, message-cite-original)
9830         (message-insert-citation-line, message-position-on-field)
9831         (message-fix-before-sending, message-send-mail-partially)
9832         (message-send-mail, message-send-mail-with-sendmail)
9833         (message-send-mail-with-qmail, message-send-news)
9834         (message-check-news-header-syntax, message-generate-headers)
9835         (message-insert-courtesy-copy, message-fill-address)
9836         (message-fill-header, message-shorten-references)
9837         (message-setup-1, message-cancel-news)
9838         (message-forward-make-body-plain, message-forward-make-body-mime)
9839         (message-forward-make-body-mml, message-encode-message-body)
9840         (message-forward-make-body-digest-plain)
9841         (message-forward-make-body-digest-mime)
9842         (message-use-alternative-email-as-from): Insert `hard-newline'
9843         instead of ordinary newlines.
9844
9845 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
9846
9847         * message.el (message-generate-headers): Downcase the argument
9848         given to message-check-element.
9849
9850 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
9851
9852         * nntp.el (nntp-authinfo-rejected): New error condition.
9853         (nntp-wait-for): Use new error condition to signal authentication
9854         error.
9855         (nntp-retrieve-data): Rethrow new error condition to break out of
9856         recursive call to nntp-send-authinfo.
9857
9858 2005-11-08  Romain Francoise  <romain@orebokech.com>
9859
9860         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
9861         (gnus-summary-exit-map): Bind to `Z p'.
9862         (gnus-summary-make-menu-bar): Add menu item.
9863
9864 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
9865
9866         * gnus-art.el (gnus-article-treat-custom): Add `first'.
9867         (gnus-treat-*): Add `first' in all doc strings.
9868
9869         * gnus-group.el (gnus-group-compact-group): Fix typo.
9870
9871 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9872
9873         * gnus.el (gnus-parameters-case-fold-search): New variable.
9874         (gnus-parameters-get-parameter): Use it.
9875
9876         * gnus-score.el (gnus-home-score-file): Doc fix.
9877
9878 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
9879
9880         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
9881
9882 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
9883
9884         * mm-util.el (mm-special-display-p): New function.
9885
9886         * mml.el (mml-preview): Use it; doc fix.
9887
9888 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
9889
9890         * imap.el (imap-open): Handle case where buffer is a buffer object.
9891
9892 2005-10-29  Romain Francoise  <romain@orebokech.com>
9893
9894         * message.el (message-fix-before-sending): Fix comment.
9895
9896 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9897
9898         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
9899
9900 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
9901
9902         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
9903         Used in gnus-score.el.
9904
9905 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
9906
9907         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
9908
9909 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
9910
9911         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
9912         whitespace removed in revision 7.8.  Use concatenated string to
9913         protect trailing whitespace.
9914
9915 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
9916
9917         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
9918         (nnimap-request-expire-articles): Use it to avoid sending 'UID
9919         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
9920         Courier IMAP ("some version from 2004").  Mostly based on similar
9921         code in the same function.
9922
9923 2005-10-26  Didier Verna  <didier@xemacs.org>
9924
9925         * gnus-group.el (gnus-group-compact-group): Invalidate original
9926         article buffer.
9927         * gnus-srvr.el (gnus-server-compact-server): Ditto.
9928         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
9929         NOV database and in article itself.
9930         Invalidate article backlog.
9931
9932 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
9933
9934         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
9935
9936 2005-10-26  Simon Josefsson  <jas@extundo.com>
9937
9938         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
9939         part of 2004-07-25 change.
9940
9941 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9942
9943         * message.el (message-display-completion-list): New function.
9944         (message-expand-group): Use it; make sure the Completions buffer
9945         is modifiable.
9946 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
9947
9948         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
9949         user-mail-name is an empty string.
9950
9951 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
9952
9953         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
9954         depending on gnus-score-decay-constant.
9955
9956         * encrypt.el (encrypt-insert-file-contents)
9957         (encrypt-write-file-contents): Don't use `gnus-message'.
9958
9959         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
9960         arguments.
9961         (mm-uu-type-alist): Add message-marks and insert-marks.  Pass
9962         arguments to mm-uu-verbatim-marks-extract.
9963         (mm-uu-hide-markers): New variable.
9964         (mm-uu-extract): Use face similar to `gnus-cite-3'.
9965
9966         * gnus-fun.el (gnus-convert-image-to-x-face-command)
9967         (gnus-convert-image-to-face-command): Use "convert" by default to
9968         allow other input image formats.
9969         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
9970         accordingly.
9971
9972 2005-10-23  Simon Josefsson  <jas@extundo.com>
9973
9974         * imap.el (imap-gssapi-program): Align command line parameters
9975         with latest GNU SASL.
9976         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
9977
9978 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9979
9980         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
9981         HTML.
9982         (nnslashdot-request-article): Ditto.
9983
9984         * lpath.el (featurep): Add nobreak-char-display.
9985
9986 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
9987
9988         * mail-source.el (mail-source-fetch-pop): Require pop3.
9989         (mail-source-check-pop): Ditto.
9990
9991 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9992
9993         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
9994         errors.
9995
9996 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
9997
9998         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
9999         (gnus-treat-strip-leading-blank-lines): Improve doc string.
10000
10001         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
10002
10003         * mm-bodies.el (mm-decode-string): Call
10004         `mm-charset-to-coding-system' with allow-override argument.
10005
10006 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10007
10008         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
10009         (rfc2047-charset-to-coding-system): New function.
10010         (rfc2047-decode-encoded-words): New function.
10011         (rfc2047-decode-region): Use them.
10012         (rfc2047-decode-cte): Remove.
10013         (rfc2047-parse-and-decode): Remove.
10014         (rfc2047-decode): Remove.
10015
10016 2005-10-15  Kenichi Handa  <handa@m17n.org>
10017
10018         * rfc2047.el (rfc2047-decode-cte): New function.
10019         (rfc2047-decode-region): Change the way to decode successive
10020         encoded-words: decode B- or Q-encoding in each encoded-word,
10021         concatenate them, and decode it as charset.
10022
10023 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10024
10025         * lpath.el: Fbind codepage-setup for XEmacs.
10026
10027 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
10028
10029         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
10030         widget-move-and-invoke.
10031         (gnus-custom-mode): Use gnus-custom-map.
10032
10033 2005-10-15  Bill Wohler  <wohler@newt.com>
10034
10035         * message.el (message-tool-bar-map): Renamed image file from
10036         mail_send to mail/send.
10037
10038 2005-10-16  Masatake YAMATO  <jet@gyve.org>
10039
10040         * message.el (message-expand-group): Pass the common
10041         prefix substring of completion to `display-completion-list'.
10042
10043 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
10044
10045         * mml-sec.el (mml-secure-method): New internal variable.
10046         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
10047         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt): New
10048         functions using mml-secure-method.
10049
10050         * mml.el (mml-mode-map): Add key bindings for those functions.
10051         (mml-menu): Simplify security menu entries.  Suggested by Jesper
10052         Harder <harder@myrealbox.com>.
10053         (mml-attach-file, mml-attach-buffer, mml-attach-external): Goto
10054         end of message if point is the headers of the message.
10055
10056         * message.el (message-in-body-p): New function.
10057
10058         * assistant.el: Autoload gnus-util and netrc.
10059
10060         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
10061         Use `mm-charset-override-alist' only when decoding.
10062
10063         * mm-bodies.el (mm-decode-body): Call
10064         `mm-charset-to-coding-system' with allow-override argument.
10065
10066         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
10067         `filename' from Content-Disposition if Content-Type doesn't
10068         provide `name'.
10069         (gnus-mime-view-part-as-type): Set default instead of
10070         initial-input.
10071
10072 2005-10-09  Daniel Brockman  <daniel@brockman.se>
10073
10074         * format-spec.el (format-spec): Propagate text properties of % spec.
10075
10076 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
10077
10078         * gnus-art.el (gnus-treat-predicate): Add `first'.
10079
10080 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
10081
10082         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
10083         (mm-charset-override-alist): New variable.
10084         (mm-charset-to-coding-system): Use it.
10085         (mm-codepage-setup): New helper function.
10086         (mm-charset-eval-alist): New variable.
10087         (mm-charset-to-coding-system): Use mm-charset-eval-alist.  Warn
10088         about unknown charsets.
10089
10090         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
10091
10092 2005-10-04  David Hansen  <david.hansen@gmx.net>
10093
10094         * nnrss.el (nnrss-request-article): Add support for the comments tag.
10095         (nnrss-check-group): Ditto.
10096
10097 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
10098
10099         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
10100         Rename x-gnus-verbatim to x-verbatim.
10101         (mm-uu-type-alist): Fix regexp for verbatim-marks.
10102
10103         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
10104         x-verbatim.
10105
10106         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
10107
10108         * gnus-util.el (gnus-remove-duplicates): Remove.
10109
10110         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
10111         instead of gnus-remove-duplicates.
10112
10113         * message.el (message-remove-duplicates): Remove.
10114         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
10115         message-remove-duplicates.
10116
10117         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
10118         available, else use implementation from `delete-dups'.
10119
10120         * message.el (message-insert-expires): New function.
10121         (message-mode-map): Add key binding.
10122         (message-mode-field-menu): Add menu entry.
10123         (message-mode): Document it.
10124         (message-make-expires-date): Use `message-make-date'.
10125
10126 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
10127
10128         * message.el (message-make-expires-date): New function.
10129
10130 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
10131
10132         * Makefile.in (list-installed-shadows): New entry.
10133         (install): Use it.
10134         (remove-installed-shadows): New entry.
10135
10136         * dgnushack.el (dgnushack-default-load-path): New variable.
10137         (dgnushack-find-lisp-shadows): New function.
10138         (dgnushack-remove-lisp-shadows): New function.
10139
10140 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10141
10142         * Makefile.in (install-el-elc): New entry.
10143         (install): Use it so that .el files are necessarily installed.
10144
10145 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10146
10147         * time-date.el: Autoload parse-time-string, XEmacs needs it.
10148
10149 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10150
10151         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
10152         function rather than the diff-mode.el package.
10153         (mm-display-external): Use with-current-buffer.
10154         (mm-viewer-completion-map, mm-viewer-completion-map):
10155         Move initialization inside declaration.
10156
10157 2005-09-29  Simon Josefsson  <jas@extundo.com>
10158
10159         * spam.el: Load hashcash when compiling, to avoid warnings.  Don't
10160         autoload mail-check-payment.
10161         (spam-check-hashcash): Define unconditionally, since hashcash.el
10162         is part of Gnus now.  Ignore errors from payment checking.
10163
10164 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
10165
10166         * message.el (message-bold-region, message-unbold-region): Rename
10167         from `bold-region' and `unbold-region'.
10168
10169         * message.el: Remove useless autoloads.
10170
10171 2005-09-28  Simon Josefsson  <jas@extundo.com>
10172
10173         * message.el (message-use-idna): Default to t.
10174         (message-use-idna): Test whether encoding works too.  Doc fix.
10175
10176 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10177
10178         * nntp.el (nntp-warn-about-losing-connection): Remove.
10179
10180 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
10181
10182         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
10183         customizable.  Change default value.
10184         (mm-uu-diff-groups-regexp): Change default value.
10185         (mm-uu-type-alist): Add doc string.
10186         (mm-uu-configure): Add doc string.  Make it interactive.
10187         (mm-uu-tex-groups-regexp): New variable.
10188         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
10189         (mm-uu-type-alist): Add LaTeX documents.
10190         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
10191         of "text/verbatim".
10192         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
10193
10194         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
10195         instead of "text/verbatim".
10196
10197         * message.el (message-mark-inserted-region)
10198         (message-mark-insert-file): Use slrn style marks when called with
10199         prefix argument.
10200
10201 2005-09-27  Simon Josefsson  <jas@extundo.com>
10202
10203         * message.el (message-idna-to-ascii-rhs-1): Reformat.
10204
10205 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
10206
10207         * message.el (message-remove-duplicates): New function.
10208         Implementation borrowed from `gnus-remove-duplicates'.
10209         (message-idna-to-ascii-rhs): Also encode idna addresses in
10210         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10211         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
10212         only ask about the same idna domain once per header and also tell
10213         in what header to replace the idna domain.
10214
10215         * gnus-art.el (article-decode-idna-rhs): Also decode idna
10216         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
10217         (article-decode-idna-rhs): Fix regexp so that all idna-address in
10218         a header is decoded and not just the last one.
10219
10220 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10221
10222         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
10223         has been decoded.
10224
10225         * mm-decode.el (mm-automatic-display): Add text/verbatim.
10226         (mm-insert-part): Don't modify text if it has been decoded.
10227
10228         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
10229         decoded.
10230
10231         * mm-view.el (mm-inline-text): Don't strip text props unless
10232         decoding enriched or richtext parts.
10233
10234 2005-09-25  Romain Francoise  <romain@orebokech.com>
10235
10236         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
10237         * gnus-start.el (gnus-subscribe-interactively):
10238         * gnus-uu.el (gnus-uu-grab-articles):
10239         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
10240         space.
10241
10242 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
10243
10244         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
10245         * mm-view.el (mm-view-pkcs7-decrypt):
10246         * gnus-sum.el (gnus-summary-limit-to-extra)
10247         (gnus-summary-respool-article, gnus-read-move-group-name):
10248         * gnus-score.el (gnus-summary-increase-score):
10249         * gnus-util.el (gnus-completing-read-with-default):
10250         * gnus-art.el (gnus-read-save-file-name)
10251         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
10252         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
10253         * message.el (message-check-news-header-syntax):
10254         Follow convention for reading with the minibuffer.
10255
10256 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
10257
10258         * spam-report.el (spam-report-url-ping-plain):
10259         Use gnus-extended-version as User-Agent.
10260
10261         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
10262         default value is nil.
10263
10264         * mm-uu.el (mm-uu-type-alist): Added slrn style verbatim-marks.
10265         (mm-uu-verbatim-marks-extract): New function.
10266         (mm-uu-extract): New face.
10267         (mm-uu-copy-to-buffer): Use it.
10268
10269         * spam-report.el (spam-report-gmane-ham): Renamed from
10270         `spam-report-gmane-unspam'.
10271         (spam-report-gmane-internal): Renamed from `spam-report-gmane'.
10272         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
10273
10274         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
10275         Autoload.
10276         (spam-report-gmane-unregister-routine): Renamed
10277         `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
10278
10279 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
10280
10281         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
10282         (spam-report-gmane-unregister-routine): Add support for gmane
10283         unregistration.
10284
10285         * spam-report.el (spam-report-gmane-unspam)
10286         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
10287         (spam-report-gmane): Change to take a single article and do unspam
10288         registration.
10289
10290 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10291
10292         * mm-url.el (mm-url-decode-entities): Fix regexp.
10293
10294 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10295
10296         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
10297         default to nil, to be able to use Gnus at all.  If the default
10298         switches to something else, then the function should be fixed not
10299         be exceedingly slow.
10300
10301 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
10302
10303         * gnus-start.el (gnus-activate-group): If the server is nil, don't
10304         fail hard.
10305
10306         * spam-report.el: Add better Keywords line.
10307
10308         * spam.el: Add Maintainer and better Keywords line.
10309
10310 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
10311
10312         * gnus-art.el (gnus-article-replace-part)
10313         (gnus-mime-replace-part): New functions.
10314         (gnus-mime-action-alist, gnus-mime-button-commands)
10315         (gnus-mime-save-part-and-strip): Added file argument.
10316         (gnus-article-part-wrapper): Added interactive argument.
10317
10318         * gnus-sum.el (gnus-summary-mime-map): Add
10319         `gnus-article-replace-part'.
10320
10321 2005-09-19  Didier Verna  <didier@xemacs.org>
10322
10323         The nnml compaction feature:
10324         * nnml.el (nnml-request-compact-group): New function.
10325         * nnml.el (nnml-request-compact): New function.
10326         * gnus-int.el (gnus-request-compact-group): New function.
10327         * gnus-int.el (gnus-request-compact): New function.
10328         * gnus-group.el (gnus-group-compact-group): New function.
10329         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
10330         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
10331         * gnus-srvr.el (gnus-server-compact-server): New function.
10332         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
10333         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
10334
10335 2005-09-18  Deepak Goel  <deego@gnufans.org>
10336
10337         * sieve.el (sieve-help): Fix `message' call: first arg should be a
10338         format spec.
10339
10340 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
10341
10342         * gnus.el (gnus-group-startup-message): Bind image-load-path.
10343
10344 2005-09-15  Romain Francoise  <romain@orebokech.com>
10345
10346         * message.el (message-fill-paragraph): Clarify docstring.
10347
10348 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10349
10350         * gnus-art.el (gnus-mime-display-part): Protect against broken
10351         MIME messages.
10352
10353 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10354
10355         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
10356         before parsing header.
10357
10358 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
10359
10360         * html2text.el (html2text-replace-list): Add new entities.
10361
10362 2005-09-11  Romain Francoise  <romain@orebokech.com>
10363
10364         * message.el (message-alternative-emails): Improve docstring.
10365         (message-setup-1): Call `message-use-alternative-email-as-from'
10366         after `message-setup-hook' to give it precedence over posting
10367         styles, etc.
10368         (message-use-alternative-email-as-from): Add docstring.  Remove
10369         the original From header if present.
10370
10371         * nnml.el (nnml-compressed-files-size-threshold): New variable.
10372         (nnml-save-mail): Use it.
10373
10374         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
10375         articles.  Add new argument `silent'.
10376         (gnus-uu-mark-all): Report the total number of marked articles.
10377
10378 2005-09-10  Romain Francoise  <romain@orebokech.com>
10379
10380         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
10381         (gnus-uu-mark-series): Likewise.
10382
10383 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
10384
10385         * spam-report.el (spam-report-gmane): Fix generation of spam
10386         report URL.
10387
10388 2005-09-10  Simon Josefsson  <jas@extundo.com>
10389
10390         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
10391         t, based on discussion on the ding list with Robert Epprecht
10392         <epprecht@solnet.ch>.
10393
10394 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
10395
10396         * spam-report.el (spam-report-gmane): Make it work without
10397         X-Report-Spam header.  Gmane now only provides Archived-At.
10398         This is only used if `spam-report-gmane-use-article-number' is nil.
10399         (spam-report-gmane-spam-header): Remove.  Not used anymore.
10400
10401         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
10402         make `gnus-summary-sort-by-recipient' work with threading.
10403
10404         * nnweb.el (nnweb-google-wash-article): Print a message if article
10405         is not available.
10406
10407 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
10408
10409         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
10410         change.  Decode text/* parts content before displaying.
10411
10412 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
10413
10414         * mml-smime.el: Remove defvar of gnus-extract-address-components.
10415
10416 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10417
10418         * mm-view.el (mm-display-inline-fontify): Disable support modes.
10419
10420         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
10421         url-package-name, url-package-version,
10422         w3m-cid-retrieve-function-alist, w3m-current-buffer,
10423         w3m-display-inline-images, and w3m-minor-mode-map.
10424
10425 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
10426
10427         * message.el (message-tab-body-function): Fix mismatched custom type.
10428
10429         * gnus.el (gnus-group-change-level-function): Ditto.
10430
10431         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
10432
10433         * gnus-art.el (gnus-signature-limit)
10434         (gnus-article-mime-part-function): Ditto.
10435
10436 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10437
10438         * mml.el (mml-mode): Silence the byte compiler.
10439
10440         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
10441         using `(sit-for 0)' before moving the point to the specified part;
10442         skip unbuttonized parts.
10443         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
10444         return to the summary window if gnus-auto-select-part is non-nil.
10445
10446 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
10447
10448         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options): New
10449         variables.
10450         (mml-dnd-attach-file, mml-mode): Use them.
10451
10452         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
10453         Make fetching article by MID work again for Google Groups.  Added
10454         FIXME concerning gnus-group-make-web-group.
10455
10456         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
10457         Don't depend on Gnus by using mail-extract-address-components if
10458         gnus-extract-address-components is not bound.
10459
10460 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10461
10462         * gnus-art.el (gnus-mime-display-security): Don't display the
10463         signature, but only the signed part.
10464
10465 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10466
10467         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
10468
10469         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
10470         list, not listp.
10471
10472 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
10473
10474         * mm-encode.el (mm-encode-content-transfer-encoding): Likewise
10475         when encoding.
10476
10477         * mm-bodies.el (mm-decode-content-transfer-encoding):
10478         De-canonicalize CRLF for all text content types, not just
10479         text/plain.
10480
10481 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10482
10483         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
10484         valid article; point arrow and cursor at the MIME button.
10485
10486 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10487
10488         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
10489         Suggested by Dan Christensen <jdc@uwo.ca>.
10490
10491         * mm-decode.el (mm-save-part): Enable change of prompt.
10492
10493 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
10494
10495         * gnus-msg.el (gnus-inews-add-send-actions): Made
10496         `message-post-method' lambda parameter ARG `&optional'.
10497
10498 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10499
10500         * gnus-sum.el (gnus-summary-mime-map): Added
10501         gnus-article-save-part-and-strip, gnus-article-delete-part and
10502         gnus-article-jump-to-part.
10503
10504         * gnus-art.el (gnus-article-edit-article): Added quiet argument.
10505         (gnus-article-edit-part): Use it.
10506         (gnus-article-part-wrapper): Added no-handle argument.
10507         (gnus-article-save-part-and-strip, gnus-article-delete-part): New
10508         functions.
10509
10510 2005-08-29  Romain Francoise  <romain@orebokech.com>
10511
10512         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
10513         docstring.
10514         (gnus-face-from-file): Likewise.
10515
10516 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
10517
10518         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
10519         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
10520         non-nil.
10521         (gnus-auto-select-part): New variable.
10522         (gnus-article-jump-to-part): New function.
10523         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
10524         (gnus-mime-delete-part): Allow selecting specified part after
10525         deleting or stripping parts.
10526         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
10527         part if argument is bogus.
10528
10529 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
10530
10531         * gnus-art.el (w3m-minor-mode-map):
10532         * gnus-spec.el (gnus-newsrc-file-version):
10533         * gnus-util.el (nnmail-active-file-coding-system)
10534         (gnus-original-article-buffer, gnus-user-agent):
10535         * gnus.el (gnus-ham-process-destinations)
10536         (gnus-parameter-ham-marks-alist)
10537         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
10538         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
10539         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
10540         * mm-decode.el (gnus-current-window-configuration):
10541         * mm-extern.el (gnus-article-mime-handles):
10542         * mm-url.el (url-current-object, url-package-name)
10543         (url-package-version):
10544         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
10545         (smime-keys, w3m-cid-retrieve-function-alist)
10546         (w3m-current-buffer, w3m-display-inline-images)
10547         (w3m-minor-mode-map):
10548         * mml-smime.el (gnus-extract-address-components):
10549         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
10550         (gnus-newsrc-hashtb, message-default-charset)
10551         (message-deletable-headers, message-options)
10552         (message-posting-charset, message-required-mail-headers)
10553         (message-required-news-headers):
10554         * mml1991.el (mc-pgp-always-sign):
10555         * mml2015.el (mc-pgp-always-sign):
10556         * nnheader.el (nnmail-extra-headers):
10557         * rfc1843.el (gnus-decode-encoded-word-function)
10558         (gnus-decode-header-function, gnus-newsgroup-name):
10559         * spam-stat.el (gnus-original-article-buffer): Add defvars.
10560
10561 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
10562
10563         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
10564         the end of the date treatments.
10565
10566 2005-08-15  Simon Josefsson  <jas@extundo.com>
10567
10568         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
10569         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
10570         Capello and Romain Francoise.
10571         (pgg-fetch-key-function): Removed, not used?
10572         (pgg-insert-url-with-w3): Require url, to get
10573         url-insert-file-contents regardless of where it is defined.
10574
10575 2005-08-13  Romain Francoise  <romain@orebokech.com>
10576
10577         * message.el (message-cite-original-1): New function.
10578         (message-cite-original): Use it.
10579         (message-cite-original-without-signature): Ditto.
10580
10581 2005-08-08  Romain Francoise  <romain@orebokech.com>
10582
10583         * message.el (message-yank-empty-prefix): New variable.
10584         (message-indent-citation): Use it.
10585         (message-cite-original-without-signature): Respect X-No-Archive.
10586
10587 2005-08-08  Simon Josefsson  <jas@extundo.com>
10588
10589         * pgg.el: Autoload url-insert-file-contents instead of loading
10590         w3/url.
10591         (pgg-insert-url-with-w3): Don't load url here.
10592
10593 2005-08-07  Jesper Harder  <harder@phys.au.dk>
10594
10595         * message.el (message-kill-to-signature): Don't insert newline at
10596         bol.
10597         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
10598
10599 2005-08-06  Romain Francoise  <romain@orebokech.com>
10600
10601         * message.el (message-user-fqdn): Fix typo in docstring.
10602
10603 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
10604
10605         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
10606
10607         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
10608
10609 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10610
10611         * mm-bodies.el (mm-encode-body): Use coding system rather than
10612         charset to encode text.
10613
10614         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
10615         number of charsets if utf-8 is available (XEmacs).
10616
10617 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
10618
10619         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
10620         taken from `gnus-button-mid-or-mail-regexp'.
10621         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
10622         (gnus-button-alist): Improve regexp for domain part of the MIDs
10623         for news:localpart@domain buttons.
10624         (gnus-button-ctan-directory-regexp): Update.
10625
10626 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
10627
10628         * sieve-manage.el (sieve-manage-interactive-login): Use
10629         make-local-variable rather than make-variable-buffer-local.
10630         (sieve-manage-open): Ditto.
10631         (sieve-manage-authenticate): Ditto.
10632
10633         * mml.el (mml-generate-mime-1): Make the content type default to
10634         text/plain if the filename is not specified.
10635
10636 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10637
10638         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
10639         instead of insert-buffer.
10640
10641         * message.el (message-yank-original): Ditto; set the mark at the
10642         end of the yanked message.
10643
10644 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10645
10646         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
10647         lines to scroll rather than to stop it.
10648
10649         * mml.el (mml-generate-default-type): Add doc string.
10650         (mml-generate-mime-1): Use mm-default-file-encoding or make it
10651         default to application/octet-stream when determining the content
10652         type if it is not specified for the part or the mml contents; add
10653         a comment about mml-generate-default-type.
10654
10655 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
10656
10657         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
10658         make it default to application/octet-stream when determining the
10659         content type if it is not specified for the external contents.
10660
10661 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10662
10663         * rfc2231.el (rfc2231-parse-string): Take care that not only a
10664         segmented parameter but also other parameters might be there.
10665
10666 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10667
10668         * mm-decode.el (mm-display-external): Delete temp file, directory
10669         and buffer immediately if the external process is exited.
10670
10671 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
10672
10673         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
10674         fewer lines than that of scroll-margin.
10675         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
10676
10677 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10678
10679         * gnus-art.el (gnus-article-next-page): Revert.
10680         (gnus-article-beginning-of-window): New macro.
10681         (gnus-article-next-page-1): Use it.
10682         (gnus-article-prev-page): Ditto.
10683         (gnus-article-edit-part): Use insert-buffer-substring instead of
10684         insert-buffer.
10685         (gnus-article-edit-exit): Ditto.
10686
10687         * gnus-util.el (gnus-beginning-of-window): Remove.
10688         (gnus-end-of-window): Remove.
10689
10690         * lpath.el: Don't bind header-line-format and scroll-margin.
10691
10692 2005-07-25  Simon Josefsson  <jas@extundo.com>
10693
10694         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
10695         to have the url package without w3.  Reported by Daiki Ueno
10696         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
10697
10698 2005-07-20  Didier Verna  <didier@xemacs.org>
10699
10700         * gnus-diary.el: Remove the description comment (nndiary is now
10701         properly documented in the Gnus manual).
10702         Fix the spelling of "Back End".
10703         * nndiary.el: Ditto.
10704         Fix the copyright notice.
10705
10706 2005-07-18  Romain Francoise  <romain@orebokech.com>
10707
10708         * gnus-sum.el (gnus-summary-to-prefix)
10709         (gnus-summary-newsgroup-prefix): New variables.
10710         (gnus-summary-from-or-to-or-newsgroups): Use them.
10711
10712 2005-07-17  Romain Francoise  <romain@orebokech.com>
10713
10714         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
10715         space as it's generally not especially interesting to the user.
10716
10717 2005-07-16  Romain Francoise  <romain@orebokech.com>
10718
10719         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
10720         nil to avoid prompting and file modification if one of the
10721         messages at the top of the nnfolder file contains a copyright
10722         notice.
10723         Update copyright notice.
10724
10725         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
10726         instead of `current-time-string' as the latter creates a time
10727         string that is not RFC 2822 compliant (it lacks the zone).
10728         Update copyright notice.
10729
10730 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10731
10732         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
10733         for text/rtf.  Display default in prompt.  Pass default for M-n.
10734
10735         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
10736
10737 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10738
10739         * gnus-msg.el (gnus-button-mailto): Remove
10740         save-selected-window-window hackery because it relies on
10741         save-selected-window internals.
10742
10743 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10744
10745         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
10746         (gnus-article-next-page-1): Use gnus-beginning-of-window.
10747         (gnus-article-prev-page): Ditto.
10748
10749         * gnus-util.el (gnus-beginning-of-window): New function.
10750         (gnus-end-of-window): New function.
10751
10752         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
10753
10754 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
10755
10756         * gnus-score.el (gnus-score-edit-all-score): Set
10757         gnus-score-edit-exit-function to gnus-score-edit-done and call
10758         gnus-message.
10759
10760 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10761
10762         * gnus-msg.el (gnus-button-mailto): Remove
10763         save-selected-window-window hackery because it relies on
10764         save-selected-window internals.
10765
10766 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10767
10768         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
10769         add-minor-mode.
10770         (gnus-binary-mode): Ditto.
10771
10772         * gnus-topic.el (gnus-topic-mode): Ditto.
10773
10774 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
10775
10776         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
10777         (gnus-article-prev-page): Take scroll-margin into consideration.
10778
10779 2005-07-04  Lute Kamstra  <lute@gnu.org>
10780
10781         Update FSF's address in GPL notices.
10782
10783 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
10784
10785         * gnus.el (gnus-exit):
10786         * gnus-group.el (gnus-group-icons):
10787         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
10788
10789         * gnus-nocem.el (gnus-nocem):
10790         * message.el (message-various, message-buffers, message-sending)
10791         (message-interface, message-forwarding, message-insertion)
10792         (message-headers, message-news, message-mail):
10793         * pgg-gpg.el (pgg-gpg):
10794         * pgg-parse.el (pgg-parse):
10795         * pgg-pgp.el (pgg-pgp):
10796         * pgg-pgp5.el (pgg-pgp5):
10797         * pop3.el (pop3): Finish `defgroup' description with period.
10798
10799 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10800
10801         * gnus-art.el (article-display-face): Improve the efficiency.
10802         (article-display-x-face): Ditto; remove grey x-face stuff.
10803
10804 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
10805
10806         * gnus-art.el (article-display-face): Correct the position in
10807         which Faces are inserted.
10808
10809 2005-06-29  Didier Verna  <didier@xemacs.org>
10810
10811         * gnus-art.el (article-display-face): Display faces in correct
10812         order.
10813
10814 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10815
10816         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
10817         (gnus-fill-real-hashtb): Use hash table instead of obarray.
10818         (gnus-nocem-check-article): Fetch the Type header.
10819         (gnus-nocem-message-wanted-p): Fix the way to examine types.
10820         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
10821         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
10822         make sure gnus-nocem-hashtb is initialized.
10823         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
10824         (gnus-nocem-unwanted-article-p): Ditto.
10825
10826         * pgg.el (pgg-verify): Return the verification result.
10827
10828 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10829
10830         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
10831         is ascii.
10832
10833 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
10834
10835         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
10836         `show-nonbreak-escape'.
10837
10838 2005-06-23  Lute Kamstra  <lute@gnu.org>
10839
10840         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
10841
10842         * dig.el (dig-mode):
10843         * smime.el (smime-mode): Use gnus-run-mode-hooks.
10844
10845 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
10846
10847         * nnimap.el (nnimap-split-download-body): Fix spellings.
10848
10849 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
10850
10851         * gnus-art.el (gnus-article-encrypt-body):
10852         * gnus-cus.el (gnus-score-customize):
10853         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
10854         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
10855
10856 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
10857
10858         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
10859         header by looking for magic "MII" at the beginnig.
10860
10861 2005-06-16  Miles Bader  <miles@gnu.org>
10862
10863         * gnus-xmas.el (gnus-xmas-group-startup-message):
10864         Use renamed gnus-splash face.
10865
10866         * assistant.el (assistant-field): Remove "-face" suffix from face name.
10867         (assistant-field-face): New backward-compatibility alias for renamed
10868         face.
10869         (assistant-render-text): Use renamed assistant-field face.
10870
10871         * spam.el (spam): Remove "-face" suffix from face name.
10872         (spam-face): New backward-compatibility alias for renamed face.
10873         (spam-face, spam-initialize): Use renamed spam face.
10874
10875         * message.el (message-header-to, message-header-cc)
10876         (message-header-subject, message-header-newsgroups)
10877         (message-header-other, message-header-name)
10878         (message-header-xheader, message-separator, message-cited-text)
10879         (message-mml): Remove "-face" suffix from face names.
10880         (message-header-to-face, message-header-cc-face)
10881         (message-header-subject-face, message-header-newsgroups-face)
10882         (message-header-other-face, message-header-name-face)
10883         (message-header-xheader-face, message-separator-face)
10884         (message-cited-text-face, message-mml-face):
10885         New backward-compatibility aliases for renamed faces.
10886         (message-font-lock-keywords): Use renamed message faces.
10887
10888         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
10889         (sieve-test-commands, sieve-tagged-arguments):
10890         Remove "-face" suffix from face names.
10891         (sieve-control-commands-face, sieve-action-commands-face)
10892         (sieve-test-commands-face, sieve-tagged-arguments-face):
10893         New backward-compatibility aliases for renamed faces.
10894         (sieve-control-commands-face, sieve-action-commands-face)
10895         (sieve-test-commands-face, sieve-tagged-arguments-face):
10896         Use renamed sieve faces.
10897
10898         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
10899         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
10900         (gnus-group-news-3-empty, gnus-group-news-4)
10901         (gnus-group-news-4-empty, gnus-group-news-5)
10902         (gnus-group-news-5-empty, gnus-group-news-6)
10903         (gnus-group-news-6-empty, gnus-group-news-low)
10904         (gnus-group-news-low-empty, gnus-group-mail-1)
10905         (gnus-group-mail-1-empty, gnus-group-mail-2)
10906         (gnus-group-mail-2-empty, gnus-group-mail-3)
10907         (gnus-group-mail-3-empty, gnus-group-mail-low)
10908         (gnus-group-mail-low-empty, gnus-summary-selected)
10909         (gnus-summary-cancelled, gnus-summary-high-ticked)
10910         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
10911         (gnus-summary-high-ancient, gnus-summary-low-ancient)
10912         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
10913         (gnus-summary-low-undownloaded)
10914         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
10915         (gnus-summary-low-unread, gnus-summary-normal-unread)
10916         (gnus-summary-high-read, gnus-summary-low-read)
10917         (gnus-summary-normal-read, gnus-splash):
10918         Remove "-face" suffix from face names.
10919         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
10920         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
10921         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
10922         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
10923         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
10924         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
10925         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
10926         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
10927         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
10928         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
10929         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
10930         (gnus-summary-selected-face, gnus-summary-cancelled-face)
10931         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
10932         (gnus-summary-normal-ticked-face)
10933         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
10934         (gnus-summary-normal-ancient-face)
10935         (gnus-summary-high-undownloaded-face)
10936         (gnus-summary-low-undownloaded-face)
10937         (gnus-summary-normal-undownloaded-face)
10938         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
10939         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
10940         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
10941         (gnus-splash-face):
10942         New backward-compatibility aliases for renamed faces.
10943         (gnus-group-startup-message): Use renamed gnus faces.
10944
10945         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
10946         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
10947         (gnus-server-agent): Remove "-face" suffix from face names.
10948         (gnus-server-agent-face, gnus-server-opened-face)
10949         (gnus-server-closed-face, gnus-server-denied-face)
10950         (gnus-server-offline-face):
10951         New backward-compatibility aliases for renamed faces.
10952         (gnus-server-agent-face, gnus-server-opened-face)
10953         (gnus-server-closed-face, gnus-server-denied-face)
10954         (gnus-server-offline-face): Use renamed gnus faces.
10955
10956         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
10957         Remove "-face" suffix from face names.
10958         (gnus-picon-xbm-face, gnus-picon-face):
10959         New backward-compatibility aliases for renamed faces.
10960
10961         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
10962         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
10963         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
10964         (gnus-cite-11): Remove "-face" suffix from face names.
10965         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
10966         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
10967         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
10968         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
10969         New backward-compatibility aliases for renamed faces.
10970         (gnus-cite-attribution-face, gnus-cite-face-list)
10971         (gnus-article-boring-faces): Use renamed gnus faces.
10972
10973         * gnus-art.el (gnus-signature, gnus-header-from)
10974         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
10975         (gnus-header-content): Remove "-face" suffix from face names.
10976         (gnus-signature-face, gnus-header-from-face)
10977         (gnus-header-subject-face, gnus-header-newsgroups-face)
10978         (gnus-header-name-face, gnus-header-content-face):
10979         New backward-compatibility aliases for renamed faces.
10980         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
10981
10982         * gnus-sum.el (gnus-summary-selected-face)
10983         (gnus-summary-highlight): Use renamed gnus faces.
10984         * gnus-group.el (gnus-group-highlight): Likewise.
10985
10986 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
10987
10988         * gnus-sieve.el (gnus-sieve-article-add-rule):
10989         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
10990         * spam-stat.el (spam-stat-buffer-change-to-spam)
10991         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
10992
10993         * message.el (message-is-yours-p):
10994         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
10995
10996 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
10997
10998         * mm-view.el (mm-inline-text): Withdraw the last change.
10999
11000 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11001
11002         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
11003         executing enriched-decode.
11004
11005 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11006
11007         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
11008         charset of tar files.
11009
11010 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
11011
11012         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
11013
11014 2005-06-04  Lute Kamstra  <lute@gnu.org>
11015
11016         * nnfolder.el (nnfolder-read-folder): Make sure that undo
11017         information is never recorded.
11018
11019 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11020
11021         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
11022
11023 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11024
11025         * pop3.el (pop3-apop): Run md5 in the binary mode.
11026
11027         * starttls.el (starttls-set-process-query-on-exit-flag):
11028         Use eval-and-compile.
11029
11030 2005-05-31  Simon Josefsson  <jas@extundo.com>
11031
11032         * smime.el (smime-replace-in-string): Define.
11033         (smime-cert-by-ldap-1): Use it.
11034
11035 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
11036
11037         * gnus-art.el (article-display-x-face): Replace
11038         process-kill-without-query by gnus-set-process-query-on-exit-flag.
11039
11040         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
11041         set-process-query-on-exit-flag or process-kill-without-query.
11042
11043         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
11044         loop instead of replace-regexp.
11045
11046         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
11047         instead of process-kill-without-query if it is available.
11048
11049         * lpath.el: Fbind ldap-search-entries.
11050
11051         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
11052         instead of find-file-hooks if it is available.
11053
11054         * mml1991.el: Bind pgg-default-user-id when compiling.
11055
11056         * mml2015.el: Bind pgg-default-user-id when compiling.
11057
11058         * nndraft.el (nndraft-request-associate-buffer):
11059         Use write-contents-functions instead of write-contents-hooks if it is
11060         available.
11061
11062         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
11063         instead of find-file-hooks if it is available.
11064
11065         * nntp.el (nntp-open-connection): Replace
11066         process-kill-without-query by gnus-set-process-query-on-exit-flag.
11067         (nntp-open-ssl-stream): Ditto.
11068         (nntp-open-tls-stream): Ditto.
11069
11070         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
11071         set-process-query-on-exit-flag or process-kill-without-query.
11072         (starttls-open-stream-gnutls): Use it instead of
11073         process-kill-without-query.
11074         (starttls-open-stream): Ditto.
11075
11076 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
11077
11078         * smime.el (smime-cert-by-ldap-1): Don't use
11079         replace-regexp-in-string.
11080
11081 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
11082
11083         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
11084
11085         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
11086         in PEM format.  Adjust to the XEmacs compability.
11087
11088 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
11089
11090         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
11091         by `string-to-number'.
11092         * gnus-agent.el (gnus-agent-regenerate-group)
11093         (gnus-agent-fetch-articles): Ditto.
11094         * gnus-art.el (gnus-button-fetch-group): Ditto.
11095         * gnus-cache.el (gnus-cache-generate-active)
11096         (gnus-cache-articles-in-group): Ditto.
11097         * gnus-group.el (gnus-group-set-current-level)
11098         (gnus-group-insert-group-line): Ditto.
11099         * gnus-score.el (gnus-score-set-expunge-below)
11100         (gnus-score-set-mark-below, gnus-summary-score-effect)
11101         (gnus-summary-score-entry): Ditto.
11102         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
11103         (gnus-soup-pack): Ditto.
11104         * gnus-spec.el (gnus-xmas-format): Ditto.
11105         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
11106         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
11107         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
11108         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
11109         * nndb.el (nndb-get-remote-expire-response): Ditto.
11110         * nndiary.el (nndiary-parse-schedule-value)
11111         (nndiary-string-to-number, nndiary-request-replace-article)
11112         (nndiary-request-article): Ditto.
11113         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
11114         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
11115         * nneething.el (nneething-make-head): Ditto.
11116         * nnfolder.el (nnfolder-request-article)
11117         (nnfolder-retrieve-headers): Ditto.
11118         * nnheader.el (nnheader-file-to-number): Ditto.
11119         * nnkiboze.el (nnkiboze-request-article): Ditto.
11120         * nnmail.el (nnmail-process-unix-mail-format)
11121         (nnmail-process-babyl-mail-format): Ditto.
11122         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
11123         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
11124         (nnmh-request-create-group, nnmh-request-list-1)
11125         (nnmh-request-group, nnmh-request-article): Ditto.
11126         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
11127         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
11128         * nnsoup.el (nnsoup-make-active): Ditto.
11129         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
11130         * nntp.el (nntp-find-group-and-number)
11131         (nntp-retrieve-headers-with-xover): Ditto.
11132         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
11133         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
11134         (pgg-format-key-identifier): Ditto.
11135         * pop3.el (pop3-last, pop3-stat): Ditto.
11136         * qp.el (quoted-printable-decode-region): Ditto.
11137
11138         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
11139         of concat.
11140
11141 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
11142
11143         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
11144
11145         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
11146
11147         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
11148
11149         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
11150
11151         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
11152
11153         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
11154
11155         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
11156         (gnus-carpal-mode): Ditto.
11157
11158         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
11159         (gnus-browse-mode): Ditto.
11160
11161         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
11162
11163         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
11164
11165 2005-05-29  Richard M. Stallman  <rms@gnu.org>
11166
11167         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
11168
11169 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11170
11171         * gnus-util.el (gnus-run-mode-hooks): New function.
11172
11173         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
11174
11175         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
11176         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
11177
11178 2005-05-27  Lute Kamstra  <lute@gnu.org>
11179
11180         * dns-mode.el (dns-mode): Specify customization group.
11181
11182 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
11183
11184         * gnus-agent.el (gnus-agent-make-mode-line-string):
11185         Use mode-line-highlight as mouse-face.
11186
11187 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11188
11189         * canlock.el (canlock): Change the parent group to news.
11190
11191         * deuglify.el (gnus-outlook-deuglify): Add :group.
11192
11193         * dig.el (dig): Add :group.
11194
11195         * dns-mode.el (dns-mode): Add :group.
11196
11197         * encrypt.el (encrypt): Add :group.
11198
11199         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
11200         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
11201         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
11202         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
11203         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
11204
11205         * gnus-diary.el (gnus-diary): Add :group.
11206
11207         * gnus.el (gnus-group-news-1-face): Add :group.
11208         (gnus-group-news-1-empty-face): Ditto.
11209         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
11210         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
11211         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
11212         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
11213         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
11214         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
11215         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
11216         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
11217         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
11218         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
11219         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
11220         (gnus-summary-high-ticked-face): Ditto.
11221         (gnus-summary-low-ticked-face): Ditto.
11222         (gnus-summary-normal-ticked-face): Ditto.
11223         (gnus-summary-high-ancient-face): Ditto.
11224         (gnus-summary-low-ancient-face): Ditto.
11225         (gnus-summary-normal-ancient-face): Ditto.
11226         (gnus-summary-high-undownloaded-face): Ditto.
11227         (gnus-summary-low-undownloaded-face): Ditto.
11228         (gnus-summary-normal-undownloaded-face): Ditto.
11229         (gnus-summary-high-unread-face): Ditto.
11230         (gnus-summary-low-unread-face): Ditto.
11231         (gnus-summary-normal-unread-face): Ditto.
11232         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
11233         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
11234
11235         * hashcash.el (hashcash): New custom group.
11236         (hashcash-default-payment): Add :group.
11237         (hashcash-payment-alist): Ditto.
11238         (hashcash-default-accept-payment): Ditto.
11239         (hashcash-accept-resources): Ditto.
11240         (hashcash-path): Ditto.
11241         (hashcash-extra-generate-parameters): Ditto.
11242         (hashcash-double-spend-database): Ditto.
11243         (hashcash-in-news): Ditto.
11244
11245         * message.el (message-minibuffer-local-map): Add :group.
11246
11247         * netrc.el (netrc): Add :group.
11248
11249         * sieve-manage.el (sieve-manage-log): Add :group.
11250         (sieve-manage-default-user): Diito.
11251         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
11252         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
11253         (sieve-manage-authenticators): Ditto.
11254         (sieve-manage-authenticator-alist): Ditto.
11255         (sieve-manage-default-port): Ditto.
11256
11257         * sieve-mode.el (sieve-control-commands-face): Add :group.
11258         (sieve-action-commands-face): Ditto.
11259         (sieve-test-commands-face): Ditto.
11260         (sieve-tagged-arguments-face): Ditto.
11261
11262         * smime.el (smime): Add :group.
11263
11264         * spam-report.el (spam-report): Add :group.
11265
11266         * spam.el (spam, spam-face): Add :group.
11267
11268 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11269
11270         * nntp.el (nntp-next-result-arrived-p): Some news servers may
11271         return \n.\n.\n at the end of articles.  Protect against that.
11272         (nntp-with-open-group): Allow debugging.
11273
11274         * nnheader.el (mail-header-set-extra): Make into a function
11275         because I just could't understand how to quote the list properly.
11276
11277         * dns.el (query-dns-cached): New function.
11278
11279 2005-05-26  Lute Kamstra  <lute@gnu.org>
11280
11281         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
11282
11283 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
11284
11285         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
11286
11287         * gnus-art.el: Don't autoload mail-extract-address-components.
11288
11289         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
11290         eval-and-compile to evaluate it.
11291
11292         * hashcash.el: Don't autoload executable-find.
11293
11294         * nndb.el: Don't declare the nndb back end two or more times; don't
11295         autoload news-reply-mode, news-setup, cancel-timer and telnet.
11296
11297         * nntp.el: Autoload format-spec instead of format; use
11298         eval-and-compile to evaluate autoload forms.
11299
11300 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
11301
11302         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
11303
11304 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11305
11306         * gnus.el (gnus-version-number): Bump version.
11307
11308 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
11309
11310         * gnus.el: No Gnus v0.3 is released.
11311
11312 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11313
11314         * lpath.el (featurep): Bind show-nonbreak-escape.
11315
11316 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11317
11318         * gnus-art.el (gnus-article-edit-part): Disable undo.
11319
11320 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
11321
11322         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
11323         gnus-article-date-lapsed-new-header is t if date timer is active;
11324         skip headers in which the original date value is empty.
11325         (gnus-article-save-original-date): Redefine it as a macro.
11326         (gnus-display-mime): Use it.
11327
11328 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11329
11330         * gnus-art.el (article-date-ut): Support converting date in
11331         forwarded parts as well.
11332         (gnus-article-save-original-date): New function.
11333         (gnus-display-mime): Use it.
11334
11335 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
11336
11337         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
11338         enclosure element of <item>.
11339
11340 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
11341
11342         * message.el (message-kill-buffer-query): Renamed from
11343         `message-kill-buffer-query-if-modified'.  Added :version.
11344
11345 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11346
11347         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
11348         window layout.
11349
11350 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11351
11352         * mml.el: Autoload dnd when compiling.
11353
11354 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
11355
11356         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
11357         x-dnd-*.
11358
11359 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
11360
11361         * qp.el (quoted-printable-encode-region): Save excursion.
11362
11363 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
11364
11365         * message.el (message-kill-buffer-query-if-modified): Add new variable
11366         so the user can kill a modified message buffer quickly.
11367         (message-kill-buffer): Use it.
11368
11369 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11370
11371         * lpath.el: Fbind display-time-event-handler; don't fbind
11372         string-to-multibyte.
11373
11374         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
11375
11376 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11377
11378         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
11379         contained in text because xml.el decodes entities) with LFs.
11380
11381 2005-04-11  Lute Kamstra  <lute@gnu.org>
11382
11383         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
11384         differently.
11385
11386 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11387
11388         * mm-util.el (mm-detect-coding-region): Typo.
11389
11390 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
11391
11392         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
11393
11394 2005-04-06  Deepak Goel  <deego@gnufans.org>
11395
11396         * spam-stat.el (spam-stat-score-buffer): Add a call to a
11397         user-function allow user modifications of the scores.
11398         (spam-stat-score-buffer-user): New function, to allow
11399         user-computed modifications to the score.
11400         (spam-stat-score-buffer-user-functions): List of additional
11401         scoring functions.
11402         (spam-stat-error-holder): Global temporary error holder.
11403         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
11404         variable.
11405
11406 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
11407
11408         * gnus-registry.el (gnus-registry-clean-empty-function)
11409         (gnus-registry-trim, gnus-registry-fetch-groups)
11410         (gnus-registry-delete-group): Groups that match
11411         `gnus-registry-ignored-groups' are removed from the registry
11412         entries, not just ignored for splitting.  This helps clean up the
11413         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
11414         to get all the groups a message ID is in.
11415
11416         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
11417         (spam-stat-split-fancy): Change "threshhold" to "threshold".
11418         (spam-stat-score-buffer-user-functions): Add :number custom type.
11419
11420 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11421
11422         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
11423         argument in XEmacs.
11424
11425         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
11426         (nnrss-request-group): Decode group name first.
11427         (nnrss-request-article): Make a text/plain article if mml-to-mime
11428         failed.
11429         (nnrss-get-encoding): Return a compatible encoding according to
11430         nnrss-compatible-encoding-alist.
11431         (nnrss-find-el): Use consp instead of listp.
11432         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
11433
11434 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11435
11436         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
11437         which Emacs 20 doesn't support.
11438         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
11439
11440 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
11441
11442         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
11443         silence the byte compiler inside the defun.
11444
11445         * gnus-demon.el (parse-time-string): Add autoload.
11446
11447         * gnus-delay.el (parse-time-string): Add autoload.
11448
11449         * gnus-art.el (parse-time-string): Add autoload.
11450
11451         * nnultimate.el (parse-time): Require for `parse-time-string'.
11452
11453 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
11454
11455         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
11456
11457         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
11458
11459         * smime.el (smime-ldap-host-list): Add :version.
11460
11461 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
11462
11463         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
11464         pass it to `gnus-browse-read-group'.
11465         (gnus-browse-read-group): Add NUMBER argument and pass it to
11466         `gnus-group-read-ephemeral-group'.
11467
11468         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
11469         argument and pass it to `gnus-group-read-group'.
11470
11471 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
11472
11473         * mm-util.el (mm-xemacs-find-mime-charset): Only call
11474         mm-xemacs-find-mime-charset-1 if we have the mule feature
11475         available at runtime.
11476
11477 2005-03-25  Werner Lemberg  <wl@gnu.org>
11478
11479         * nnmaildir.el: Replace `illegal' with `invalid'.
11480
11481 2005-03-23  Lute Kamstra  <lute@gnu.org>
11482
11483         * time-date.el: Add comment on time value formats.
11484         Don't require parse-time.
11485         (with-decoded-time-value): New macro.
11486         (encode-time-value): New function.
11487         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
11488         (days-to-time): Return a valid time value when arg is huge.
11489         (time-since): Use time-subtract.
11490         (time-to-number-of-days): Use time-to-seconds.
11491
11492 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11493
11494         * gnus-start.el (gnus-display-time-event-handler):
11495         Check display-time-timer at runtime rather than only at load time
11496         in case display-time-mode is turned off in the mean time.
11497
11498 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
11499
11500         * nnimap.el (nnimap-open-connection): Print which authinfo file is
11501         used.
11502
11503         * nneething.el (nneething-map-file-directory): Derive from
11504         `gnus-directory'.
11505
11506         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
11507         the To/Cc button.
11508
11509 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
11510
11511         * nnmaildir.el (nnmaildir-request-accept-article):
11512         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
11513
11514 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11515
11516         * gnus-async.el: Require timer-funcs at compile time when in
11517         XEmacs for `run-with-idle-timer'.
11518
11519 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
11520
11521         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
11522         autoloaded function.
11523
11524 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11525
11526         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
11527
11528 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
11529
11530         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
11531
11532 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11533
11534         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Add
11535         gnus-expert-user to default.
11536
11537 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
11538
11539         * nnimap.el (nnimap-open-server): Ditto.
11540
11541         * imap.el (imap-authenticate): Fix typo.
11542
11543 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
11544
11545         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
11546         buffer (since IMAP server might return FETCH response out of
11547         order, and the nntp buffer must be sorted).
11548
11549 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
11550
11551         * gnus-start.el (gnus-convert-old-newsrc): Fixed numeric
11552         comparison on string.
11553
11554         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
11555         (gnus-agent-score): Renamed category keywords to match gnus-cus.
11556         (gnus-agent-summary-fetch-series): Modified to protect against
11557         gnus-agent-summary-fetch-group clearing processable flags.
11558         (gnus-agent-synchronize-group-flags): Update live group buffer as
11559         synchronization may occur due to the user toggle the plugged
11560         status.
11561         (gnus-agent-fetch-group-1): Clear downloadable flag when article
11562         successfully downloaded.
11563         (gnus-agent-expire-group-1): Avoid using markers when the overview
11564         is in ascending order; greatly improves performance.
11565         (gnus-agent-regenerate-group): Use
11566         gnus-agent-synchronize-group-flags to reset read status in both
11567         gnus and server.
11568         (gnus-agent-update-files-total-fetched-for): Fixed initial size.
11569
11570 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
11571
11572         * message.el: Don't autoload former message-utils variables.
11573         (message-strip-subject-trailing-was): Change doc string.
11574
11575         * nnweb.el: Fixes for `gnus-group-make-web-group'.
11576         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
11577         (nnweb-google-search): Add "hl=en" here.
11578         (nnweb-google-parse-1, nnweb-google-create-mapping):
11579         Don't hardcode URL.
11580
11581 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
11582
11583         * message.el (message-get-reply-headers, message-followup):
11584         Mention related variables `message-use-followup-to' and
11585         `message-use-mail-followup-to', in the information buffer.
11586
11587         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
11588         of broken groups(-beta).google.com.
11589
11590 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
11591
11592         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
11593         parameter to invoked gnus-request-move-article; remove the
11594         redundant gnus-sum-hint-move-is-internal variable; apply the marks
11595         all at once instead of once per article.
11596         (gnus-summary-remove-process-mark): Accept a list of articles as
11597         well as a single article for processing.
11598
11599         * gnus-int.el (gnus-request-move-article): Add move-is-internal
11600         parameter.
11601
11602         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
11603
11604         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
11605
11606         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
11607         parameter.
11608
11609         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
11610         parameter.
11611
11612         * nnimap.el (nnimap-request-move-article): Add move-is-internal
11613         parameter and remove the gnus-sum-hint-move-is-internal variable.
11614
11615         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
11616         parameter.
11617
11618         * nndraft.el (nndraft-request-move-article): Add move-is-internal
11619         parameter.
11620
11621         * nndiary.el (nndiary-request-move-article): Add move-is-internal
11622         parameter.
11623
11624         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
11625
11626         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
11627         parameter.
11628
11629         * nnagent.el (nnagent-request-move-article): Add move-is-internal
11630         parameter.
11631
11632 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11633
11634         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
11635         a more conservative way.
11636
11637 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11638
11639         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
11640         buffer, so it moves the window's cursor.
11641
11642 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
11643
11644         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
11645         `mm-dissect-multipart' and receive the from field as an (optional)
11646         argument from `mm-dissect-multipart'.
11647         (mm-dissect-multipart): Receive the from field as an argument and
11648         pass it on when we call `mm-dissect-buffer' on MIME parts.
11649         Fixes verification/decryption of signed/encrypted MIME parts.
11650
11651 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
11652
11653         * gnus-sum.el (gnus-summary-move-article): Set
11654         gnus-sum-hint-move-is-internal for gnus-request-move-article and
11655         whatever it calls (right now, only nnimap-request-move article
11656         respects it).
11657
11658         * nnimap.el (nnimap-request-move-article): When
11659         gnus-sum-hint-move-is-internal is set, don't do the extra
11660         nnimap-request-article.
11661
11662 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
11663
11664         * nnheader.el (nnheader-find-file-noselect): Add doc string.
11665
11666         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
11667         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
11668
11669         * gnus-sum.el (gnus-summary-caesar-message):
11670         Apply `gnus-treat-article' after rotation.
11671
11672         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
11673         doc string.
11674
11675 2005-02-22  Simon Josefsson  <jas@extundo.com>
11676
11677         * encrypt.el (encrypt-password-cache-expiry): Remove (use
11678         `password-cache-expiry' instead).  Reported by Arne Jørgensen
11679         <arne@arnested.dk>.
11680         (encrypt): Add password-cache and password-cache-expiry as group
11681         members.
11682
11683 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
11684
11685         * smime.el (smime-ldap-host-list): Doc fix.
11686         (smime-ask-passphrase): Use `password-read-and-add' to read (and
11687         cache) password.
11688         (smime-sign-region): Use it.
11689         (smime-decrypt-region): Use it.
11690         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
11691         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
11692         fails.
11693         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
11694         certificate from DER to PEM format rather than calling openssl.
11695
11696         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
11697
11698         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
11699         for signing/encryption.
11700
11701         * mml.el (mml-parse-1): Use them.
11702
11703 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
11704
11705         * nnrss.el (nnrss-verbose): Removed.
11706         (nnrss-request-group): Use `nnheader-message' instead.
11707
11708 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
11709
11710         * nnrss.el (nnrss-verbose): New variable.
11711         (nnrss-request-group): Make it say nnrss is requesting a group.
11712
11713 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
11714
11715         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
11716         Handle news URL with given port correctly.
11717
11718 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
11719
11720         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
11721         containing special characters.
11722
11723         * gnus-sum.el (gnus-summary-edit-article): Ditto.
11724
11725         * mml.el (mime-to-mml): Ditto.
11726
11727         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
11728         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
11729         (rfc2047-decode-region): Quote decoded words containing special
11730         characters when rfc2047-quote-decoded-words-containing-tspecials
11731         is non-nil.
11732
11733 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
11734
11735         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
11736
11737         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
11738
11739 2005-02-15  Simon Josefsson  <jas@extundo.com>
11740
11741         * nnimap.el (nnimap-debug): Doc fix.
11742
11743         * imap.el (imap-debug): Doc fix.
11744
11745 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
11746
11747         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
11748
11749 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
11750
11751         * gnus.el (spam-contents): Improve docs for spam-contents
11752         parameter in its variable incarnation.
11753
11754 2005-02-14  Simon Josefsson  <jas@extundo.com>
11755
11756         * smime-ldap.el: Use require instead of load-library for ldap.
11757         (smime-ldap-search): Indent.
11758         (smime-ldap-search-internal): Shorten line.
11759
11760         * smime.el (smime-cert-by-dns): Add doc-string.
11761         (smime-cert-by-ldap-1): Indent.
11762
11763         * mml-smime.el (mml-smime-get-ldap-cert): Renamed from
11764         mml-smime-get-dns-ldap.
11765         (mml-smime-encrypt-query): Use new function.  Default to ldap.
11766
11767 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
11768
11769         * smime.el: Require smime-ldap.
11770         (smime-ldap-host-list): New variable.
11771         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
11772
11773         * mml-smime.el (mml-smime-encrypt-query): New function.
11774         (mml-smime-encrypt-query): Use it.
11775
11776         * smime-ldap.el: New file.
11777
11778 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
11779
11780         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
11781
11782 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
11783
11784         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
11785         argument in doc string.  Make query for type more clear.
11786
11787 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
11788
11789         * gnus.el (gnus-group-startup-message): Search for gnus images in
11790         etc/images/gnus.
11791         * mm-util.el (mm-image-load-path): Likewise.
11792         * smiley.el (smiley-data-directory): Search for smilies in
11793         etc/images/smilies.
11794
11795 2005-02-09  Kim F. Storm  <storm@cua.dk>
11796
11797         Change Emacs release version from 21.4 to 22.1 throughout.
11798         Change Emacs development version from 21.3.50 to 22.0.50.
11799
11800 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
11801
11802         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
11803
11804         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
11805         non-Mule XEmacs as well.
11806         (mm-decompress-buffer): Signal an error intentionally if it does
11807         not decompress compressed data because auto-compression-mode is
11808         disabled.
11809
11810 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
11811
11812         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
11813         an ID in the registry even if it has no groups.
11814
11815 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11816
11817         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
11818         merge it into mm-decompress-buffer.
11819         (gnus-mime-copy-part): Use the MIME part charset, the value which
11820         a user specified or gnus-newsgroup-charset for decoding, like
11821         gnus-mime-inline-part does; set buffer-file-coding-system to tell
11822         save-buffer what was used.  Suggested by Kevin Ryde
11823         <user42@zip.com.au>.
11824         (gnus-mime-inline-part): Allow the name parameter as well as the
11825         filename parameter; force decompressing of compressed data; always
11826         display contents being not decoded as unibyte.
11827
11828         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
11829         as well as the filename parameter.
11830
11831         * mm-util.el (mm-decompress-buffer): Merge
11832         gnus-mime-jka-compr-maybe-uncompress.
11833         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
11834         of compressed data.
11835
11836 2005-02-08  Simon Josefsson  <jas@extundo.com>
11837
11838         * imap.el (imap-log): Doc fix.
11839
11840 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11841
11842         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
11843         the coding cookies; decompress compressed parts.
11844
11845         * mml.el (mml-generate-mime-1): Add the charset parameter according
11846         to the value which a user specified manually or the coding cookie.
11847
11848         * mm-util.el (mm-string-to-multibyte): New function.
11849         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
11850         (mm-coding-system-to-mime-charset): New function.
11851         (mm-decompress-buffer): New function.
11852         (mm-find-buffer-file-coding-system): New function.
11853
11854         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
11855         (mm-display-inline-fontify): Rewrite for decoding and decompressing
11856         parts.
11857
11858 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
11859
11860         * mm-view.el (mm-display-inline-fontify): Decode a part according
11861         to the charset parameter.
11862
11863 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11864
11865         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
11866         prefix arg is neither nil nor a number, as info specifies.
11867
11868 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11869
11870         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
11871         timestamps.
11872
11873 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
11874
11875         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
11876         groups error checking and notify user.
11877
11878 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
11879
11880         * message.el (message-send-mail-function): Check existence of
11881         sendmail-program first before using default value
11882         `message-send-mail-with-sendmail'.  Otherwise use more generic
11883         `smtpmail-send-it'.
11884
11885 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11886
11887         * nntp.el (nntp-request-update-info): Always return nil.
11888
11889 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11890
11891         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
11892
11893 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11894
11895         * message.el (message-beginning-of-line): Change the behavior when
11896         invoked between BOL and : so that it first moves backward.
11897
11898 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11899
11900         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
11901         article buffer when editing of the article is discarded.
11902         (gnus-article-prepare): Revert.
11903
11904 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11905
11906         * gnus-art.el (gnus-article-prepare):
11907         Remove message-strip-forbidden-properties from the local hook.
11908
11909 2005-01-27  Simon Josefsson  <jas@extundo.com>
11910
11911         * password.el (password-cache-add): Only start one timer per key.
11912         Reported by Derek Atkins <warlord@MIT.EDU>.
11913
11914 2005-01-26  Steve Youngs  <steve@sxemacs.org>
11915
11916         * run-at-time.el: Removed.  It is no longer needed as
11917         timer-funcs.el in the xemacs-base package has a working version of
11918         `run-at-time'.
11919
11920         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
11921
11922         * password.el: Require timer-funcs instead of run-at-time in
11923         XEmacs.
11924         Remove `password-run-at-time' macro.
11925         (password-cache-add): Use `run-at-time' instead of
11926         `password-run-at-time'.
11927
11928         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
11929         Remove `nnheader-cancel-function-timers' alias,
11930         `cancel-function-timers' exists in XEmacs in timer-funcs.
11931
11932         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
11933         for `run-with-idle-timer'.
11934
11935         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
11936         for `run-at-time'.
11937
11938         * mm-url.el: Require timer-funcs at compile time when in XEmacs
11939         for `with-timeout'.
11940
11941         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
11942         the same as for XEmacs 21.4.
11943         No need to ignore `run-with-idle-timer', this function exists in
11944         XEmacs now in timer-funcs.el in the xemacs-base package.
11945         (dgnushack-compile): No need to delete
11946         run-at-time.el from the list of files to compile because it
11947         doesn't exist anymore.
11948
11949 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11950
11951         * mml.el (mml-generate-mime-1): Convert string into unibyte when
11952         inserting " *mml*" buffer's contents into a unibyte temp buffer.
11953
11954 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
11955
11956         * mail-source.el (mail-source-fetch-imap): Search for ^From case
11957         sensitively.
11958
11959 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
11960
11961         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
11962
11963 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11964
11965         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
11966         which will be inserted according to the multibyteness of a buffer
11967         rather than the type of contents.  Suggested by ARISAWA Akihiro
11968         <ari@mbf.ocn.ne.jp>.
11969
11970         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
11971         of string which old xml.el may return rather than a string.
11972
11973 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11974
11975         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
11976
11977 2005-01-16  Simon Josefsson  <jas@extundo.com>
11978
11979         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
11980         idn/idna.el isn't available.
11981         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
11982         <michael@waxrat.com>.
11983
11984         * hashcash.el: Remove non-FSF copyright header.
11985
11986         * hashcash.el (hashcash-extra-generate-parameters): New variable.
11987         (hashcash-generate-payment): Use it.
11988         (hashcash-generate-payment-async): Use it.
11989
11990 2005-01-15  Simon Josefsson  <jas@extundo.com>
11991
11992         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
11993         Suggested by Raymond Scholz <ray-2005@zonix.de>.
11994
11995         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
11996         gnus-summary-idna-message.
11997         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
11998         (gnus-summary-idna-message): New function.
11999
12000 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
12001
12002         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
12003         gnus-novice-user.
12004
12005 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12006
12007         * nnrss.el (nnrss-request-delete-group): Delete entries in
12008         nnrss-group-alist as well.
12009         (nnrss-save-server-data): Insert newline.
12010
12011 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
12012
12013         * gnus.el (gnus-user-agent): Use list of symbols instead of
12014         symbols.  Display full version number for (S)XEmacs.  Optionally
12015         display (S)XEmacs codename.
12016
12017         * gnus-util.el (gnus-emacs-version): Update for new
12018         `gnus-user-agent'.
12019
12020         * gnus-msg.el (gnus-extended-version): Make it possible to omit
12021         Gnus version.
12022
12023 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
12024
12025         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
12026         which is unreadable in some setups.
12027
12028 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12029
12030         * gnus-spec.el (gnus-update-format-specifications): Flush the
12031         group format spec cache if it doesn't support decoded group names.
12032
12033 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
12034
12035         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
12036         Allow to apply decay on score files matching a regexp.
12037
12038 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12039
12040         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
12041         compatibility in %g and %c.
12042
12043 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12044
12045         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
12046         name for only %g and %c.
12047         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
12048         of gnus-tmp-group to decoded group name.
12049         (gnus-group-make-rss-group): Exclude `/'s from group names.
12050
12051 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12052
12053         * nnrss.el (nnrss-get-encoding): Fix regexp.
12054
12055 2004-12-27  Simon Josefsson  <jas@extundo.com>
12056
12057         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
12058         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
12059         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
12060
12061 2004-12-17  Kim F. Storm  <storm@cua.dk>
12062
12063         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
12064
12065         * gnus-sum.el (gnus-summary-mode-map): Likewise.
12066
12067 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
12068
12069         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
12070
12071 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12072
12073         * nnrss.el: Require rfc2047 and mml.
12074         (nnrss-file-coding-system): New variable.
12075         (nnrss-format-string): Redefine it as an inline function.
12076         (nnrss-decode-group-name): New function.
12077         (nnrss-string-as-multibyte): Remove.
12078         (nnrss-retrieve-headers): Decode group name; don't use
12079         nnrss-format-string.
12080         (nnrss-request-group): Decode group name.
12081         (nnrss-request-article): Decode group name; allow a Message-ID as
12082         well as an article number; don't use nnrss-format-string; encode a
12083         Message-ID string which may contain non-ASCII characters; use
12084         mml-to-mime to compose a MIME article.
12085         (nnrss-request-expire-articles): Decode group name.
12086         (nnrss-request-delete-group): Decode group name.
12087         (nnrss-fetch): Clarify error message.
12088         (nnrss-read-server-data): Use insert-file-contents instead of load;
12089         bind file-name-coding-system; use multibyte buffer.
12090         (nnrss-save-server-data): Bind coding-system-for-write to the
12091         value of nnrss-file-coding-system; bind file-name-coding-system;
12092         add coding cookie.
12093         (nnrss-read-group-data): Use insert-file-contents instead of load;
12094         bind file-name-coding-system; use multibyte buffer.
12095         (nnrss-save-group-data): Bind coding-system-for-write to the
12096         value of nnrss-file-coding-system; bind file-name-coding-system.
12097         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
12098         make it work with non-ASCII text.
12099         (nnrss-find-el): Make it work with old xml.el as well.
12100
12101 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
12102
12103         * nnrss.el (nnrss-get-encoding): New function.
12104         (nnrss-fetch): Use unibyte buffer initially; bind
12105         coding-system-for-read while performing mm-url-insert; remove ^Ms;
12106         decode contents according to the encoding attribute.
12107         (nnrss-save-group-data): Add coding cookie.
12108         (nnrss-mime-encode-string): New function.
12109         (nnrss-check-group): Use it to encode subject and author.
12110
12111 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
12112
12113         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
12114         imaginary variable.
12115
12116 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
12117
12118         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
12119         correctly even if there are wide characters.
12120
12121 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
12122
12123         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
12124         downcased symbol names; make a new cache instead of reusing
12125         bbdb-hashtable.
12126
12127 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12128
12129         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
12130         concatenating segments rather than before concatenating them.
12131         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12132
12133         * message.el (message-get-reply-headers): Bind `extra'.
12134
12135 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12136
12137         * message.el (message-extra-wide-headers): New variable.
12138         (message-get-reply-headers): Use it.
12139
12140 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12141
12142         * gnus-agent.el (gnus-agent-group-path): Decode group name.
12143         (gnus-agent-group-pathname): Ditto.
12144
12145         * gnus-cache.el (gnus-cache-file-name): Decode group name.
12146
12147         * gnus-group.el (gnus-group-make-group): Decode group name.
12148         (gnus-group-make-rss-group): Register the group data after opening
12149         the nnrss group.
12150
12151 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
12152
12153         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
12154         by expiry now get marked as read.
12155
12156 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12157
12158         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
12159
12160 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
12161
12162         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
12163         unify Latin characters in XEmacs.
12164         (mm-find-mime-charset-region): Use it.
12165
12166 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12167
12168         * gnus-util.el (gnus-delete-directory): New function.
12169
12170         * gnus-agent.el (gnus-agent-delete-group): Use it.
12171
12172         * gnus-cache.el (gnus-cache-delete-group): Use it.
12173
12174 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
12175
12176         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
12177         names.
12178
12179 2004-12-16  Simon Josefsson  <jas@extundo.com>
12180
12181         * hashcash.el (hashcash-payment-alist): Fix custom :type.
12182
12183 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12184
12185         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
12186
12187         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
12188         (gnus-group-set-current-level): Decode group name.
12189
12190 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
12191
12192         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
12193         failed.
12194
12195 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12196
12197         * gnus-group.el (gnus-group-delete-group): Decode group name.
12198         (gnus-group-make-rss-group): Encode group name.
12199         (gnus-group-catchup-current): Decode group name.
12200         (gnus-group-kill-group): Decode group name.
12201
12202 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12203
12204         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
12205
12206 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12207
12208         * gnus-group.el (gnus-group-make-rss-group):
12209         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
12210
12211         * gnus-start.el (gnus-setup-news): Honor user's setting to
12212         gnus-message-archive-method.  Suggested by Lute Kamstra
12213         <lute@gnu.org>.
12214
12215 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
12216
12217         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
12218         global counterparts of the buffer-local variables.
12219
12220 2004-11-16  Romain Francoise  <romain@orebokech.com>
12221
12222         * gnus-sum.el (gnus-summary-exit): Don't clear the global
12223         counterparts of the buffer-local variables.
12224
12225 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12226
12227         * message.el (message-forbidden-properties): Fixed typo in doc
12228         string.
12229
12230 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
12231
12232         * gnus-util.el (gnus-replace-in-string): Added doc string.
12233
12234         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
12235         to avoid problems when splitting mails with many recipients.
12236
12237 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12238
12239         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
12240         pop-to-buffer, covered by the subsequent gnus-configure-windows.
12241
12242 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
12243
12244         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
12245         if there is no hashtable in memory or file modification time is
12246         newer than cached timestamp.
12247
12248 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
12249
12250         * gnus-sum.el (gnus-summary-limit-to-recipient): Implement
12251         not-matching option.
12252
12253 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
12254
12255         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
12256         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
12257         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
12258         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
12259         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
12260         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
12261
12262 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12263
12264         * message.el (message-forward-make-body-mml): Remove headers
12265         according to message-forward-ignored-headers if a message is decoded.
12266
12267 2004-12-02  Romain Francoise  <romain@orebokech.com>
12268
12269         * message.el (message-forward-make-body-plain): Always remove
12270         headers according to message-forward-ignored-headers.
12271
12272 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
12273
12274         * spam.el (spam-summary-prepare-exit): Remove the
12275         gnus-summary-limit pop for now, it has problems with ham marks for
12276         me.
12277
12278 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
12279
12280         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
12281         correctly.
12282
12283 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
12284
12285         * format-spec.el (format-spec): Message the char.
12286
12287 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
12288
12289         * gnus-art.el (gnus-split-methods): Reformat comments.
12290
12291         * spam.el (spam-summary-prepare-exit): Remove article limits
12292         before exiting the summary buffer.
12293
12294 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12295
12296         * lpath.el: Remove bbdb-create-internal, bbdb-records,
12297         spam-BBDB-register-routine and spam-enter-ham-BBDB.
12298
12299         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
12300         order to silence the byte compiler.
12301
12302         * spam.el: Fix the way to silence the byte compiler, which
12303         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
12304         bbdb-search-simple, spam-BBDB-register-routine,
12305         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
12306         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
12307         spam-stat-buffer-is-spam, spam-stat-load,
12308         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
12309         spam-stat-save and spam-stat-split-fancy.
12310
12311 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12312
12313         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
12314         which may confuse users.
12315         (canlock-password-for-verify): Ditto.
12316
12317         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
12318
12319         * gnus-art.el (gnus-emphasis-alist): Ditto.
12320
12321         * gnus-registry.el (gnus-registry-max-entries): Ditto.
12322
12323         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
12324
12325         * gnus-start.el (gnus-save-killed-list): Ditto.
12326
12327         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
12328         (gnus-sum-thread-tree-root): Ditto.
12329         (gnus-sum-thread-tree-false-root): Ditto.
12330         (gnus-sum-thread-tree-single-indent): Ditto.
12331
12332         * message.el (message-courtesy-message): Ditto.
12333         (message-archive-note): Ditto.
12334         (message-subscribed-address-file): Ditto.
12335         (message-user-fqdn): Ditto.
12336
12337         * spam-report.el (spam-report-gmane-regex): Ditto.
12338
12339         * spam.el (spam-blackhole-good-server-regex): Ditto.
12340
12341 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12342
12343         * mml.el (mml-preview): Widen the message buffer before copying
12344         the contents to the preview buffer; sort headers before previewing.
12345
12346         * message.el (message-hidden-headers): Fix the way to avoid a bug
12347         in the `repeat' widget in Emacs 21.3 or earlier.
12348
12349 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12350
12351         * message.el (message-hidden-headers): Default to "^References:".
12352         Improve customization type.  Suggested by Reiner Steib
12353         <Reiner.Steib@gmx.de>.
12354
12355 2004-11-25  Romain Francoise  <romain@orebokech.com>
12356
12357         * message.el (message-strip-forbidden-properties): Remove check for
12358         obsolete `message-hidden' text property, hidden headers are not
12359         accessible in the buffer anymore.
12360
12361 2004-11-22  Romain Francoise  <romain@orebokech.com>
12362
12363         * message.el (message-header-format-alist): Add `From' in list
12364         so that it can be sorted.
12365         (message-fix-before-sending): Widen and sort headers before
12366         sending.
12367         (message-hide-headers): Use narrowing to hide headers by moving
12368         them to the top of the buffer and narrowing to the region
12369         underneath.
12370
12371 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12372
12373         * message.el (message-strip-forbidden-properties): Bind
12374         buffer-read-only (etc) to nil.
12375
12376 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12377
12378         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
12379         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
12380
12381 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
12382
12383         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
12384
12385 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12386
12387         * dns.el (query-dns): Use sit-for to time instead of
12388         accept-process-output, since that doesn't seem to work on udp
12389         sockets.
12390
12391 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12392
12393         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
12394
12395 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
12396
12397         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
12398         doc string.  Improve doc string.
12399
12400 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12401
12402         * nntp.el (nntp-request-update-info): Return nil if
12403         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
12404         may not call gnus-activate-group which uselessly issues the GROUP
12405         commands for all nntp groups and wastes time.  Reported by Romain
12406         Francoise <romain@orebokech.com>.
12407
12408         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
12409
12410 2004-11-15  Simon Josefsson  <jas@extundo.com>
12411
12412         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
12413         headers separately.
12414         (gnus-button-openpgp): New function, inspired by Jochen Küpper
12415         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
12416
12417 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
12418
12419         * gnus-start.el (gnus-convert-old-newsrc):
12420         Assign legacy-gnus-agent to 5.10.7.
12421
12422 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12423
12424         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
12425         start of the lines.
12426
12427 2004-11-14  Magnus Henoch  <mange@freemail.hu>
12428
12429         * hashcash.el (hashcash-default-payment): Change default to 20.
12430         (hashcash-default-accept-payment): Change default to 20.
12431         (hashcash-process-alist): New variable.
12432         (hashcash-generate-payment-async): Add.
12433         (hashcash-already-paid-p): Add.
12434         (hashcash-insert-payment): Don't generate payments twice.
12435         (hashcash-insert-payment-async): Add.
12436         (hashcash-insert-payment-async-2): Add.
12437         (hashcash-cancel-async): Add.
12438         (hashcash-wait-async): Add.
12439         (hashcash-processes-running-p): Add.
12440         (hashcash-wait-or-cancel): Add.
12441         (mail-add-payment): New optional argument.  Conditionally start
12442         asynchronous calculation.
12443         (mail-add-payment-async): Add.
12444
12445         * message.el (message-send-mail): Wait for asynchronous hashcash
12446         results.  Don't clobber existing X-Hashcash headers.
12447         (message-setup-1): Call mail-add-payment-async when
12448         message-generate-hashcash is non-nil.
12449
12450 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
12451
12452         * message.el (message-use-alternative-email-as-from): Examine the
12453         From header as well; use message-make-from in order to include a
12454         user's full name.
12455
12456 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12457
12458         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
12459         default; improve customization type.
12460         (gnus-emphasis-custom-with-format): New macro.
12461         (gnus-emphasis-custom-value-to-external): New function.
12462         (gnus-emphasis-custom-value-to-internal): New function.
12463
12464 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12465
12466         * dns.el (query-dns): Resolve reverse addresses.
12467
12468 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12469
12470         * gnus-group.el (gnus-group-get-new-news): Use it.
12471
12472         * gnus-start.el (gnus-check-reasonable-setup): New function.
12473
12474 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12475
12476         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
12477         "Args out of range" error.  Reported by Arnaud Giersch
12478         <arnaud.giersch@free.fr>.
12479
12480 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
12481
12482         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
12483
12484 2004-11-04  Richard M. Stallman  <rms@gnu.org>
12485
12486         * spam.el (spam group): Add :version.
12487
12488         * pgg-def.el (pgg group): Add :version.
12489
12490 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
12491
12492         * gnus-art.el (gnus-article-edit-article): Don't associate the
12493         article buffer with a draft file.  This is a temporary measure
12494         against the 2004-08-22 change to gnus-article-edit-mode.
12495
12496 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12497
12498         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
12499         (html2text-format-tags): Remove unused variable `attr'.
12500
12501 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
12502
12503         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
12504
12505         * tls.el (tls-process-connection-type, tls-success)
12506         (tls-certtool-program): Add :version.
12507
12508         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
12509         (starttls-extra-arguments, starttls-process-connection-type)
12510         (starttls-connect, starttls-failure, starttls-success): Add :version.
12511
12512         * spam-stat.el (spam-stat): Add :version.
12513
12514         * sieve.el (sieve): Add :version.
12515
12516         * sha1.el (sha1): Add :version.
12517         (sha1-use-external): Remove redundant version.
12518
12519         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
12520         (nnmail-cache-ignore-groups, nnmail-spool-hook)
12521         (nnmail-split-fancy-match-partial-words)
12522         (nnmail-split-lowercase-expanded): Add :version.
12523
12524         * nndiary.el (nndiary): Add :version.
12525
12526         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
12527
12528         * mml-sec.el (mml-default-sign-method)
12529         (mml-default-encrypt-method, mml-signencrypt-style-alist):
12530         Add :version.
12531
12532         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
12533
12534         * mm-url.el (mm-url-use-external, mm-url-program)
12535         (mm-url-arguments): Add :version.
12536
12537         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
12538         (mm-attachment-file-modes, mm-decrypt-option)
12539         (mm-w3m-safe-url-regexp): Add :version.
12540
12541         * message.el (message-cite-prefix-regexp)
12542         (message-sendmail-envelope-from, message-minibuffer-local-map)
12543         (message-user-fqdn, message-completion-alist): Add :version.
12544
12545         * gnus-win.el (gnus-configure-windows-hook)
12546         (gnus-use-frames-on-any-display): Add :version.
12547
12548         * gnus-art.el (gnus-article-address-banner-alist)
12549         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
12550         (gnus-treat-from-picon, gnus-treat-mail-picon)
12551         (gnus-treat-x-pgp-sig): Add :version.
12552
12553         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
12554         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
12555         (gnus-summary-article-delete-hook)
12556         (gnus-summary-display-while-building): Add :version.
12557
12558         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
12559         (gnus-get-top-new-news-hook): Add :version.
12560
12561         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
12562         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
12563
12564         * gnus-registry.el (gnus-registry): Add :version.
12565
12566         * gnus-spec.el (gnus-use-correct-string-widths)
12567         (gnus-make-format-preserve-properties): Add :version.
12568
12569         * gnus.el (gnus-group-charter-alist)
12570         (gnus-group-fetch-control-use-browse-url)
12571         (gnus-install-group-spam-parameters): Add :version.
12572
12573         * gnus-diary.el (gnus-diary): Add :version.
12574
12575         * gnus-delay.el (gnus-delay): Add :version.
12576
12577         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
12578         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
12579         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
12580         Add :version.
12581
12582         * gnus-agent.el (gnus-agent-max-fetch-size)
12583         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
12584         (gnus-agent-prompt-send-queue): Add :version.
12585
12586         * deuglify.el (gnus-outlook-deuglify): Add :version.
12587
12588         * html2text.el: Beautify code.  Improve doc strings.  Some
12589         checkdoc cleanup.
12590         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
12591
12592 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
12593
12594         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
12595
12596 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
12597
12598         * gnus-registry.el (gnus-registry-hashtb): Create the registry
12599         when package is loaded.
12600
12601         * spam.el (spam-summary-score-preferred-header): Add global preference
12602         for people who want to override the default SpamAssassin over
12603         Bogofilter preference (when both are set).
12604         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
12605         (spam-user-format-function-S): Check
12606         spam-summary-score-preferred-header.
12607         (spam-extra-header-to-number): Add X-Bogosity header parsing.
12608         (spam-user-format-function-S): Format the score correctly.
12609
12610 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12611
12612         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
12613         signature file.  Suggested by Manoj Srivastava
12614         <srivasta@golden-gryphon.com>.
12615
12616         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
12617         iso-2022-jp even in the Japanese language environment.
12618         Suggested by Jason Rumney <jasonr@gnu.org>.
12619
12620 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
12621
12622         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
12623         use the same characters as the dummy marks; make it free from
12624         getting affected by the language environment.
12625         (gnus-summary-read-group-1): Update mark positions only when the
12626         format spec is updated.
12627
12628         * gnus-spec.el (gnus-update-format-specifications): Return a list
12629         of updated types.
12630
12631 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12632
12633         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
12634         of boundp to check if display-warning is available.
12635
12636 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
12637
12638         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
12639
12640 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
12641
12642         * nnspool.el (nnspool-spool-directory): Use news-path if the
12643         news-directory variable is not bound.
12644
12645         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
12646         function instead of display-warning if it is not available.
12647
12648 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
12649
12650         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
12651         v5-10: Use `point-at-bol'.
12652
12653 2004-10-26  Simon Josefsson  <jas@extundo.com>
12654
12655         * hashcash.el: Fix URL in comment, reported by Cheng Gao
12656         <chenggao@gmail.com>.
12657
12658 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
12659
12660         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
12661         instead.
12662
12663 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
12664
12665         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
12666         to remove a server from the nnimap-server-buffer-alist.
12667         (nnimap-open-connection, nnimap-close-server): Use it.
12668
12669         * gnus-encrypt.el: Remove file in favor of encrypt.el.
12670
12671 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
12672
12673         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
12674         running the major-mode function.
12675
12676 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
12677
12678         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
12679         dummy marks in the right way.
12680
12681 2004-10-18  David Edmondson  <dme@dme.org>
12682
12683         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
12684         excessively.
12685
12686 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
12687
12688         * gnus-util.el (gnus-split-references): Accept a nil references
12689         string and go on blissfully.
12690
12691         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
12692         cases where the references string is non-nil but has no references.
12693
12694         * encrypt.el: Add autoload tags.
12695
12696         * spam.el (spam-resolve-registrations-routine): Remove article
12697         from unregistration list too.  Reported by David Hanak
12698         <dhanak@isis.vanderbilt.edu>
12699
12700 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
12701
12702         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
12703         nil.  Changed custom type.
12704
12705 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
12706
12707         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
12708
12709         * gnus-sum.el (gnus-summary-move-article): Use it.
12710
12711 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
12712
12713         * encrypt.el: Add autoload cookies.
12714
12715         * spam.el (spam-backend-article-list-property)
12716         (spam-backend-get-article-todo-list)
12717         (spam-backend-put-article-todo-list)
12718         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
12719         Resolve registrations separately.
12720         (spam-register-routine): Format comments.
12721         (spam-unregister-routine, spam-register-routine): Always call with
12722         specific-articles, no default list.
12723         (spam-summary-prepare-exit): Use the spam-classifications function.
12724
12725         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
12726         gnus-encrypt.el.
12727
12728         * encrypt.el: Copied from gnus-encrypt.el.
12729
12730         * gnus-encrypt.el: Commented that it's obsolete.
12731
12732 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12733
12734         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
12735         (gnus-score-save): Use it.
12736
12737         * message.el (message-bury): Use `window-dedicated-p'.
12738
12739 2004-10-15  Simon Josefsson  <jas@extundo.com>
12740
12741         * pop3.el (top-level): Don't require nnheader.
12742         (pop3-read-timeout): Add.
12743         (pop3-accept-process-output): Add.
12744         (pop3-read-response, pop3-retr): Use it.
12745
12746 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
12747
12748         * spam.el (spam-register-routine): Move comment.
12749         (spam-verify-bogofilter): Use 'unknown for the initial
12750         spam-bogofilter-valid state, not 'never.
12751
12752         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
12753         for netrc-machine.
12754
12755         * nnimap.el (nnimap-open-connection): Use
12756         netrc-machine-user-or-password.
12757
12758 2004-10-17  Richard M. Stallman  <rms@gnu.org>
12759
12760         * gnus-registry.el (gnus-registry-unload-hook):
12761         Set as a variable with add-hook.
12762
12763         * nnspool.el (nnspool-spool-directory): Use news-directory instead
12764         of news-path.
12765
12766         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
12767
12768         * spam.el: Delete duplicate `provide'.
12769         (spam-unload-hook): Set as a variable with add-hook.
12770
12771 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
12772
12773         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
12774         in the doc string.
12775
12776         * message.el (message-ignored-news-headers)
12777         (message-ignored-supersedes-headers)
12778         (message-ignored-resent-headers)
12779         (message-forward-ignored-headers): Improve custom type.
12780
12781 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12782
12783         * message.el (message-tokenize-header): Fix 2004-09-06 change
12784         which used point-min in the wrong place.
12785
12786 2004-10-12  Simon Josefsson  <jas@extundo.com>
12787
12788         * tls.el (tls-certtool-program): New variable.
12789         (tls-certificate-information): New function, based on
12790         ssl-certificate-information.
12791
12792 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12793
12794         * compface.el: Move the version of ELisp-based uncompface program
12795         to the contrib directory because of the copyright problem.
12796
12797 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
12798
12799         * message.el (message-kill-buffer): Raise the current frame.
12800
12801 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
12802
12803         * gnus-sum.el: Mention that multibyte characters don't work as marks.
12804
12805         * gnus.el (message-y-or-n-p): Autoload.
12806
12807         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
12808         (pop3-password-required, pop3-authentication-scheme)
12809         (pop3-leave-mail-on-server): Made customizable.
12810         (pop3): New custom group.
12811         (pop3-retr): Remove `sleep-for' statements.
12812         Suggested by Dave Love <fx@gnu.org>.
12813
12814         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
12815         Windows/DOS.
12816
12817         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
12818         (imap-parse-body): Fix incorrect use of `assert'.  Suggested by
12819         Dave Love <fx@gnu.org>.
12820
12821         * mml.el (mml-minibuffer-read-disposition): Require match.
12822         Suggested by Dave Love <fx@gnu.org>.
12823
12824 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
12825
12826         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
12827         doc string.
12828
12829 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
12830
12831         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
12832
12833 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
12834
12835         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
12836         instead of calling `mm-insert-inline', to decode text/* parts
12837         before displaying them.
12838
12839 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12840
12841         * mm-uu.el (mm-uu-text-plain-type): New variable.
12842         (mm-uu-pgp-signed-extract-1): Use it.
12843         (mm-uu-pgp-encrypted-extract-1): Use it.
12844         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
12845         bind mm-uu-text-plain-type with that value.
12846         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
12847         mm-uu-dissect.
12848
12849 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12850
12851         * gnus-group.el (gnus-update-group-mark-positions):
12852         * gnus-sum.el (gnus-update-summary-mark-positions):
12853         * message.el (message-check-news-body-syntax):
12854         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
12855         of string-as-multibyte.
12856
12857 2004-10-05  Juri Linkov  <juri@jurta.org>
12858
12859         * gnus-group.el (gnus-update-group-mark-positions):
12860         * gnus-sum.el (gnus-update-summary-mark-positions):
12861         * message.el (message-check-news-body-syntax):
12862         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
12863         8-bit unibyte values to a multibyte string for search functions.
12864
12865 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12866
12867         * mm-uu.el (mm-uu-dissect): Allow optional arg.
12868         (mm-uu-dissect-text-parts): New function.
12869
12870         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
12871         dissect text parts.
12872
12873         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
12874         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
12875
12876         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
12877
12878         * gnus-topic.el (gnus-topic-hierarchical-parameters): Use
12879         gnus-current-topics instead of gnus-current-topic.
12880
12881 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
12882
12883         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
12884
12885 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
12886
12887         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
12888         where approriate.
12889
12890         * nnml.el (nnml-generate-active-info): do.
12891
12892         * nndiary.el (nndiary-generate-active-info): do.
12893
12894         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
12895         (gnus-topic-move): do.
12896
12897         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
12898         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
12899
12900         * gnus-srvr.el (gnus-server-prepare)
12901         (gnus-server-open-all-servers): do.
12902
12903         * gnus-msg.el (gnus-summary-cancel-article)
12904         (gnus-summary-resend-message)
12905         (gnus-summary-mail-crosspost-complaint): do.
12906
12907         * gnus-move.el (gnus-change-server): do.
12908
12909         * gnus-group.el (gnus-group-unmark-all-groups)
12910         (gnus-group-set-current-level): do.
12911
12912 2004-10-04  Simon Josefsson  <jas@extundo.com>
12913
12914         * message.el (message-generate-hashcash): Doc fix.
12915
12916 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
12917
12918         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
12919         avoid infinite recursion via gnus-get-function.
12920
12921 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
12922
12923         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
12924
12925         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
12926
12927         * nnmail.el (nnmail-split-history): do.
12928
12929         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
12930         (nnml-request-delete-group): do.
12931
12932         * nnslashdot.el (nnslashdot-read-groups): do.
12933
12934         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
12935         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
12936
12937         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
12938         (nnspool-sift-nov-with-sed): Use last.
12939         (nnspool-retrieve-headers-with-nov): Use mapc.
12940         (nnspool-request-newgroups): Use dolist.
12941         (nnspool-request-group): Use last.
12942
12943         * nntp.el (nntp-read-server-type): Use dolist.
12944
12945         * nnvirtual.el (nnvirtual-create-mapping)
12946         (nnvirtual-update-read-and-marked): Use dolist.
12947         (nnvirtual-convert-headers): Simplify.
12948
12949 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12950
12951         * gnus-agent.el (gnus-agent-synchronize-group-flags): Added
12952         support for sync'ing tick marks.
12953
12954 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12955
12956         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
12957         there's no visible header.
12958
12959 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
12960
12961         * gnus-agent.el (gnus-agent-synchronize-group-flags): When
12962         necessary, pass full group name to gnus-request-set-marks.
12963
12964 2004-10-01  Simon Josefsson  <jas@extundo.com>
12965
12966         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
12967         acroread.
12968
12969 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12970
12971         * spam-report.el (spam-report-gmane): Fix interactive.
12972
12973         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
12974
12975         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
12976         when writing file.
12977         (gnus-agent-synchronize-flags): Don't default to being
12978         interactive.
12979
12980 2004-09-30  Simon Josefsson  <jas@extundo.com>
12981
12982         * message.el (message-generate-hashcash): Add.
12983         (message-send-mail): Use it, call mail-add-payment.
12984
12985 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
12986
12987         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
12988
12989 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
12990
12991         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replaced
12992         gnus-requst-update-info with explicit code to sync the in-memory
12993         info read flags with the marks being sync'd to the backend.
12994
12995         *gnus-util.el (gnus-pp): Added optional stream to match pp API.
12996
12997 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
12998
12999         * spam.el (spam-verify-bogofilter): Add new function.
13000         (spam-check-bogofilter)
13001         (spam-bogofilter-register-with-bogofilter): Use it.
13002         (spam-verify-bogofilter): Add small fixes.
13003
13004 2004-09-28  Simon Josefsson  <jas@extundo.com>
13005
13006         * hashcash.el (hashcash-generate-payment): Revert.
13007
13008 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
13009
13010         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Use
13011         gnus-extract-references instead of gnus-split-references.
13012
13013         * gnus-util.el (gnus-extract-references): Add new function, analogous
13014         to gnus-split-references but extracts only the message-ID without
13015         anything extra.
13016
13017         * hashcash.el (hashcash-generate-payment)
13018         (hashcash-check-payment): Do the right thing if hashcash-path is
13019         nil (because the hashcash program could not be found).
13020
13021         * spam.el (spam-use-hashcash): Remove comment.
13022
13023 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
13024
13025         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
13026         (gnus-cache-enter-article, gnus-cache-remove-article)
13027         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
13028
13029         * gnus-async.el (gnus-async-prefetch-remove-group): do.
13030
13031         * gnus-art.el (article-hide-boring-headers)
13032         (article-translate-strings, article-display-face)
13033         (gnus-article-mime-match-handle-first)
13034         (gnus-article-highlight-headers)
13035         (gnus-article-add-buttons-to-head): do.
13036
13037 2004-09-27  Simon Josefsson  <jas@extundo.com>
13038
13039         * hashcash.el: New version, from
13040         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
13041         ../contrib/.
13042
13043 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13044
13045         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
13046
13047 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
13048
13049         * gnus-dup.el (gnus-dup-open): Use mapc.
13050         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
13051
13052         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
13053         Reported by Stefan Wiens <s.wi@gmx.net>.
13054
13055         * gnus.el (gnus-shutdown): Use dolist.
13056
13057         * gnus-undo.el (gnus-undo): Use mapc.
13058
13059         * nnrss.el (nnrss-generate-active): do.
13060
13061         * message.el (message-cite-original-without-signature)
13062         (message-cite-original): Use mapc.
13063         (message-do-actions, message-make-forward-subject): Use dolist.
13064
13065 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
13066
13067         * gnus-agent.el (gnus-agent-check-overview-buffer): Fixed range of
13068         deletion to remove entire duplicate line.  Fixes merged article
13069         number bug.
13070
13071 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
13072
13073         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
13074         servers that are offline.  Avoids having gnus-agent-toggle-plugged
13075         first ask if you want to open a server and then, even when you
13076         responded with no, asking if you want to synchronize the server's
13077         flags.
13078         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
13079         multi-line expressions.
13080         (gnus-agent-synchronize-group-flags): New internal function.
13081         Updates marks in memory (in the info structure) AND in the
13082         backend.
13083
13084         * gnus-util.el (gnus-remassoc): Fixed typo in documentation.
13085
13086         * nnagent.el (nnagent-request-set-mark): Use
13087         gnus-agent-synchronize-group-flags, not backend's request-set-mark
13088         method, to ensure that synchronization updates marks in the
13089         backend and in the info (in memory) structure.
13090
13091 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13092
13093         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
13094         convention fully; don't miss the root article of a thread; make
13095         the X-Draft-From header with correct article numbers.
13096
13097 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
13098
13099         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
13100         unless plugged.  Disable the agent so that an open failure causes
13101         an error.
13102
13103         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
13104         Reverted 2004-09-21 change.  The backend must be opened while
13105         synchronizing flags even when the backend stores the flags
13106         locally.
13107
13108 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
13109
13110         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
13111         in `header' match.  Reported by Svend Tollak Munkejord.
13112
13113         * message.el (message-cite-original): Fix use of
13114         `message-cite-articles-with-x-no-archive'.
13115
13116 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13117
13118         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
13119         (gnus-window-to-buffer): Ditto.
13120
13121         * mml.el (mml-preview-buffer): New variable.
13122         (mml-preview): Manage window layout with gnus-buffer-configuration.
13123
13124         * gnus-msg.el (gnus-setup-message): Put article numbers into the
13125         X-Draft-From header even if those articles aren't quoted.
13126
13127 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
13128
13129         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
13130         (gnus-request-set-mark, gnus-request-update-mark): Use new
13131         g-s-t-u-l-m to decide to use backend even when unplugged.
13132
13133 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13134
13135         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
13136         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
13137
13138 2004-09-20  Simon Josefsson  <jas@extundo.com>
13139
13140         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
13141         "utf-16-le".
13142
13143 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13144
13145         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
13146
13147 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
13148
13149         * uudecode.el (uudecode-use-external): Add :version.
13150
13151         * smime.el (smime-CA-file, smime-encrypt-cipher)
13152         (smime-dns-server): Add :version.
13153
13154         * smiley.el (gnus-smiley-file-types): Add :version.
13155
13156         * sha1.el (sha1-use-external): Add :version.
13157
13158         * pgg-def.el (pgg-query-keyserver): Add :version.
13159
13160         * nnmail.el (nnmail-fancy-expiry-targets)
13161         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
13162         Add :version.
13163
13164         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
13165         (nnimap-retrieve-groups-asynchronous): Add :version.
13166         (nnimap-close-asynchronous): Add :version.  Fixed typo in doc string.
13167
13168         * mml.el (mml-content-disposition-parameters)
13169         (mml-insert-mime-headers-always): Add :version.
13170
13171         * mm-util.el (mm-coding-system-priorities): Add :version.
13172
13173         * mm-decode.el (mm-inline-text-html-with-images)
13174         (mm-keep-viewer-alive-types, mm-external-terminal-program)
13175         (mm-verify-option): Add :version.
13176         (mm-text-html-renderer): Change :version.
13177
13178         * message.el (message-fcc-externalize-attachments)
13179         (message-required-headers, message-draft-headers)
13180         (message-subject-trailing-was-query)
13181         (message-subject-trailing-was-ask-regexp)
13182         (message-subject-trailing-was-regexp, message-mark-insert-begin)
13183         (message-mark-insert-end, message-archive-header)
13184         (message-archive-note, message-cross-post-default)
13185         (message-cross-post-note, message-followup-to-note)
13186         (message-cross-post-note-function, message-use-mail-followup-to)
13187         (message-subscribed-address-functions)
13188         (message-subscribed-address-file, message-subscribed-addresses)
13189         (message-subscribed-regexps, message-allow-no-recipients)
13190         (message-yank-cited-prefix, message-signature-insert-empty-line)
13191         (message-hidden-headers, message-hierarchical-addresses)
13192         (message-mail-user-agent, message-use-idna)
13193         (message-valid-fqdn-regexp)
13194         (message-strip-special-text-properties, message-header-synonyms)
13195         (message-beginning-of-line, message-tab-body-function): Add :version.
13196         (message-insert-canlock, message-wide-reply-confirm-recipients):
13197         Change :version.
13198
13199         * mail-source.el (mail-source-ignore-errors): Add :group, :type
13200         and :version.
13201         (mail-source-delete-old-incoming-confirm)
13202         (mail-source-movemail-program): Add :version.
13203
13204         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
13205         (gnus-agent-cache, gnus-agent): Change :version.
13206
13207         * gnus-util.el (gnus-use-byte-compile): Change :version.
13208
13209         * gnus-sum.el (gnus-summary-make-false-root-always)
13210         (gnus-summary-default-high-score)
13211         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
13212         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
13213         (gnus-read-all-available-headers, gnus-article-emulate-mime)
13214         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
13215         (gnus-sum-thread-tree-single-indent)
13216         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
13217         (gnus-sum-thread-tree-leaf-with-other)
13218         (gnus-sum-thread-tree-single-leaf): Add :version.
13219         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
13220         (gnus-article-loose-mime): Change :version.
13221
13222         * gnus-start.el (gnus-backup-startup-file)
13223         (gnus-save-startup-file-via-temp-buffer): Add :version.
13224
13225         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
13226         (gnus-server-offline-face): Add :version.
13227
13228         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
13229
13230         * gnus-msg.el (gnus-gcc-externalize-attachments)
13231         (gnus-debug-files, gnus-debug-exclude-variables)
13232         (gnus-discouraged-post-methods): Change :version.
13233         (gnus-confirm-mail-reply-to-news)
13234         (gnus-confirm-treat-mail-like-news): Add :version.
13235
13236         * gnus-int.el (gnus-server-unopen-status): Add :version.
13237
13238         * gnus-group.el (gnus-group-jump-to-group-prompt)
13239         (gnus-large-ephemeral-newsgroup)
13240         (gnus-fetch-old-ephemeral-headers): Add :version.
13241
13242         * gnus-fun.el (gnus-x-face-directory)
13243         (gnus-convert-pbm-to-x-face-command)
13244         (gnus-convert-image-to-x-face-command)
13245         (gnus-convert-image-to-face-command): Add :version.
13246
13247         * gnus-delay.el (gnus-delay-default-hour): Add :version.
13248
13249         * gnus-cite.el (gnus-cite-blank-line-after-header)
13250         (gnus-article-boring-faces): Add :version.
13251
13252         * gnus-art.el (gnus-buttonized-mime-types)
13253         (gnus-inhibit-mime-unbuttonizing)
13254         (gnus-treat-display-face)
13255         (gnus-treat-body-boundary): Change :version.
13256         (gnus-body-boundary-delimiter, gnus-picon-databases)
13257         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
13258         (gnus-treat-date-english, gnus-treat-fold-headers)
13259         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
13260         (gnus-treat-mail-picon, gnus-treat-wash-html)
13261         (gnus-article-encrypt-protocol)
13262         (gnus-use-idna, gnus-article-over-scroll)
13263         (gnus-mime-display-multipart-alternative-as-mixed)
13264         (gnus-mime-display-multipart-related-as-mixed)
13265         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
13266         (gnus-ctan-url, gnus-button-ctan-handler)
13267         (gnus-button-handle-ctan-bogus-regexp)
13268         (gnus-button-ctan-directory-regexp)
13269         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
13270         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
13271         (gnus-button-man-level, gnus-button-emacs-level)
13272         (gnus-button-message-level, gnus-button-browse-level): Add :version.
13273
13274         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
13275         (gnus-agent-go-online): Change :version.
13276         (gnus-agent-expire-unagentized-dirs)
13277         (gnus-agent-auto-agentize-methods): Add :version.
13278
13279         * flow-fill.el (fill-flowed-display-column)
13280         (fill-flowed-encode-column): Add :version.
13281
13282         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
13283         (gnus-outlook-deuglify-unwrap-max)
13284         (gnus-outlook-deuglify-cite-marks)
13285         (gnus-outlook-deuglify-unwrap-stop-chars)
13286         (gnus-outlook-deuglify-no-wrap-chars)
13287         (gnus-outlook-deuglify-attrib-cut-regexp)
13288         (gnus-outlook-deuglify-attrib-verb-regexp)
13289         (gnus-outlook-deuglify-attrib-end-regexp)
13290         (gnus-outlook-display-hook): Add :version.
13291
13292         * binhex.el (binhex-use-external): Add :version.
13293
13294 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
13295
13296         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
13297         and `invisible'.
13298
13299 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
13300
13301         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
13302         in gnus-registry-trim.
13303
13304 2004-09-13  Simon Josefsson  <jas@extundo.com>
13305
13306         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
13307
13308         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
13309
13310         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
13311         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13312         <yamaoka@jpl.org>.
13313         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
13314         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
13315         <yamaoka@jpl.org>.
13316
13317         * sieve.el (sieve-manage-mode): Ditto.
13318
13319 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
13320
13321         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
13322
13323 2004-09-11  Simon Josefsson  <jas@extundo.com>
13324
13325         * dns-mode.el: Add.
13326
13327         * mm-view.el (mm-display-dns-inline): Add.
13328
13329         * mm-decode.el (mm-inline-media-tests): Add text/dns.
13330         (mm-automatic-display): Ditto.
13331
13332         * mailcap.el (mailcap-mime-data): Add text/dns.
13333         (mailcap-mime-extensions): Map .soa to text/dns.
13334
13335 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
13336
13337         * gnus-art.el (article-decode-mime-words, article-babel)
13338         (gnus-article-highlight-signature, gnus-article-add-buttons)
13339         (gnus-signature-toggle): Remove unnecessary bindings of
13340         `inhibit-read-only' inherited from v5.10 merge.
13341
13342 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
13343
13344         * nntp.el (nntp): New customization group.
13345         (nntp-authinfo-file): Add customization group.
13346
13347         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
13348
13349         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
13350
13351         * gnus.el (to-address, to-list, subscribed)
13352         (large-newsgroup-initial): Ditto.
13353
13354         * flow-fill.el (fill-flowed-display-column)
13355         (fill-flowed-encode-column): Ditto.
13356
13357 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13358
13359         * message.el (message-tokenize-header, message-send-mail-with-qmail):
13360         Use point-min rather than 1.
13361         (message-send-mail): Use buffer-size rather than point-max.
13362
13363         * gnus-sum.el (gnus-summary-search-article-forward):
13364         Signal a specific `search-failed' rather than a generic `error'.
13365
13366         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
13367         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
13368         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
13369
13370 2004-09-10  Simon Josefsson  <jas@extundo.com>
13371
13372         * nndb.el (require): Remove tcp and duplicate cl.
13373
13374 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13375
13376         * gnus-agent.el (directory-files-and-attributes): Move forward.
13377
13378 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13379
13380         * gnus-agent.el (directory-files-and-attributes): Optionally
13381         defined to support XEmacs.
13382
13383 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
13384
13385         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
13386         to avoid run-time CL dependencies.
13387         (gnus-agent-unfetch-articles): New function.
13388         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
13389         article numbers even when local .overview file is missing.
13390         (gnus-agent-read-article-number): New function.  Only accepts
13391         27-bit article numbers.
13392         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles): Use
13393         gnus-agent-read-article-number.
13394         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
13395         from backend while recognizing that article numbers in .overview
13396         must be valid.
13397         (gnus-agent-update-files-total-fetched-for): Use
13398         directory-files-and-attributes to improve performance.
13399         * gnus-int.el (gnus-request-move-article): Use
13400         gnus-agent-unfetch-articles in place of gnus-agent-expire to
13401         improve performance.
13402
13403         * gnus-start.el (gnus-convert-old-newsrc): Changed message text as
13404         some users confused by references to .newsrc when they only have a
13405         .newsrc.eld file.
13406         (gnus-convert-mark-converter-prompt)
13407         (gnus-convert-converter-needs-prompt): Fixed use of property list.
13408         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
13409         New function.  Used internally to only display 'gnus converting
13410         files' message when actually necessary.
13411
13412         * gnus-sum.el (): Removed (require 'gnus-agent) as required
13413         methods now autoloaded.
13414
13415 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13416
13417         * gnus-sum.el (gnus-summary-insert-subject): Remove list
13418         identifiers.
13419
13420 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
13421
13422         * gnus-picon.el: Fix indentation and closing parenthesis.
13423
13424 2004-09-01  Simon Josefsson  <jas@extundo.com>
13425
13426         * message.el (message-canlock-generate): Require sha1, not
13427         sha1-el.  (Can we get rid of this require altogether?  It is ugly
13428         to require within a function.  Sadly, if sha1.el isn't loaded, the
13429         let binding in m-c-g will hide the defcustom definition, which is
13430         bad.)
13431
13432         * canlock.el: Require sha1, not sha1-el.
13433
13434         * message.el: Don't autoload sha1 (there is a autoload cookie in
13435         sha1.el).
13436
13437         * sha1-el.el: Renamed to sha1.el.
13438
13439 2004-08-30  Juanma Barranquero  <lektu@terra.es>
13440
13441         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
13442
13443 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13444
13445         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
13446
13447 2004-08-30  Kim F. Storm  <storm@cua.dk>
13448
13449         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
13450
13451         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
13452         Add :group 'nnimap.
13453
13454 2004-08-30  Andreas Schwab  <schwab@suse.de>
13455
13456         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
13457         ?* and ?\;.
13458
13459         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
13460         and ?\' to symbol instead of whitespace.
13461
13462 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13463
13464         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
13465
13466         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
13467         instead of re-search-forward.
13468
13469         * gnus-uu.el (gnus-uu-save-article): Ditto.
13470         (gnus-uu-post-encode-uuencode): Ditto.
13471
13472         * html2text.el (html2text-clean-list-items): Ditto.
13473         (html2text-clean-dtdd): Ditto.
13474         (html2text-format-tags): Ditto.
13475
13476         * message.el (message-send-mail-with-sendmail): Fix regexp.
13477         (message-fill-field-general): Use search-forward instead of
13478         re-search-forward.
13479         (unbold-region): Ditto.
13480
13481         * nnrss.el (nnrss-request-article): Ditto.
13482
13483         * nnslashdot.el (nnslashdot-request-article): Ditto.
13484
13485         * nnweb.el (nnweb-gmane-wash-article): Ditto.
13486
13487         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
13488         "Unrecognized menu descriptor" error in XEmacs.
13489
13490 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
13491
13492         * gnus-sum.el (gnus-read-header): Don't remove a header for the
13493         parent article of a sparse article in the thread hashtb.
13494
13495 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
13496
13497         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
13498         (nnmail-expand-newtext): Lowercase expanded entries if
13499         nnmail-split-lowercase-expanded is non-nil.
13500
13501 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
13502
13503         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
13504
13505         * gnus-group.el (gnus-group-line-format-alist): Convert the value
13506         of gnus-tmp-news-method into string under XEmacs.  It will be
13507         passed to gnus-correct-length which takes only a string argument.
13508
13509 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13510
13511         * gnus-util.el (gnus-bind-print-variables): New macro.
13512         (gnus-prin1): Use it.
13513         (gnus-prin1-to-string): Use it.
13514         (gnus-pp): New function.
13515         (gnus-pp-to-string): New function.
13516
13517         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
13518         Replace pp-to-string with gnus-pp-to-string.
13519         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
13520         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
13521         * gnus-msg.el (gnus-debug): Ditto.
13522         * gnus-score.el (gnus-score-save): Ditto.
13523         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
13524         gnus-pp-to-string.
13525         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
13526         with gnus-pp.
13527         * score-mode.el (gnus-score-pretty-print): Ditto.
13528         * webmail.el (webmail-debug): Ditto.
13529
13530 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13531
13532         * gnus-art.el (article-display-face, article-display-x-face):
13533         Use buffer-read-only.
13534
13535 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13536
13537         * gnus-art.el (article-hide-list-identifiers):
13538         Bind inhibit-read-only as t.
13539
13540 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
13541
13542         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
13543
13544 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
13545
13546         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
13547         (gnus-narrow-to-page): Don't assume point-min == 1.
13548         (gnus-article-edit-mode): Derive from message-mode.
13549
13550         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
13551         point-min == 1.
13552
13553         * imap.el (imap-parse-address-list, imap-parse-body-ext):
13554         Disable incorrect use of `assert'.
13555
13556         * message.el (message-mode): Set comment-start-skip.
13557
13558
13559 2004-08-22  Sam Steingold  <sds@gnu.org>
13560
13561         * pop3.el (pop3-leave-mail-on-server): New user variable.
13562         (pop3-movemail): Delete mail only when it is nil.
13563
13564 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
13565
13566         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
13567
13568         * mml.el (mml-preview): Use `pop-to-buffer'.
13569
13570         * message.el (message-goto-mail-followup-to): Insert after "To".
13571         (message-carefully-insert-headers): Add comment.
13572
13573         * gnus.el: Remove unused variable `gnus-article-check-size'.
13574
13575         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
13576
13577         * gnus-art.el (gnus-button-alist): Improve
13578         `gnus-button-handle-library' entry.
13579
13580 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
13581
13582         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p): Use
13583         downcase, since XEmacs capitalizes error messages differently.
13584
13585 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
13586
13587         * nntp.el: Add (require 'gnus) due to reference to
13588         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
13589
13590 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
13591
13592         * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Bind
13593         `mm-fill-flowed'.
13594
13595         * mm-decode.el (mm-dissect-singlepart): Check it.
13596
13597 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
13598
13599         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
13600         'imap' for netrc parsing.
13601
13602 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
13603
13604         * mailcap.el (mailcap-mime-data): Mark as risky.
13605
13606 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13607
13608         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
13609         may be included in the encoded word.
13610         (rfc2047-encode): Don't append a space if the encoded word
13611         includes close parenthesis.
13612
13613 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13614
13615         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
13616         of text within parentheses.
13617
13618 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
13619
13620         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
13621         (gnus-encrypt-write-file-contents): Make the password key the file
13622         name PLUS the cipher, not just the cipher.  Also remove failed
13623         passwords from the cache.
13624
13625 2004-08-06  Simon Josefsson  <jas@extundo.com>
13626
13627         * gnus-sum.el (gnus-article-loose-mime): Change default to t.  Doc
13628         fix.
13629
13630 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13631
13632         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
13633         LWSP.
13634
13635 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
13636
13637         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Try
13638         to append in-reply-to: data to the references: header.
13639
13640         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
13641         (netrc-parse): Use gnus-encrypt.el functions.
13642
13643         * gnus-encrypt.el: Add new file for encryption support; currently
13644         does only a few GPG ciphers and an internal XOR cipher.
13645
13646         * password.el: Add comments on using password-read-and-add.
13647         (password-read-and-add): Add function to read and add the
13648         password to the cache at once.
13649
13650 2004-07-28  Simon Josefsson  <jas@extundo.com>
13651
13652         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
13653         parameter (but don't use it, for now).
13654
13655         * imap.el (imap-ssl-open): Use imap-process-connection-type,
13656         instead of hard coding to nil.
13657
13658 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13659
13660         * mm-view.el (mm-inline-image-emacs): Open lines under an image
13661         as mm-inline-image-xemacs does.
13662
13663 2004-07-26  Simon Josefsson  <jas@extundo.com>
13664
13665         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
13666         Revert part of 2004-07-17 change below.
13667
13668 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13669
13670         * rfc2047.el (rfc2047-encode-region): Don't infloop.  Suggested by
13671         Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
13672
13673 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13674
13675         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
13676         quotes that actually start with ">" at the beginning of the
13677         lines.
13678
13679 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13680
13681         * rfc2047.el (rfc2047-encode-region): Fix last change.
13682         (rfc2047-encode-parameter): Remove useless concat.
13683
13684 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13685
13686         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
13687         encode special characters; fix some kind of misconfigured headers;
13688         signal a real error if debug-on-quit or debug-on-error is non-nil.
13689         (rfc2047-encode-max-chars): New variable.
13690         (rfc2047-encode-1): Use it.
13691         (rfc2047-encode-parameter): New function.
13692
13693         * mml.el (mml-insert-parameter): Remove an excessive space.
13694
13695 2004-07-17  Simon Josefsson  <jas@extundo.com>
13696
13697         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
13698         Kai Grossjohann <kai@emptydomain.de>.
13699         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
13700         (gnus-group-make-menu-bar): Ditto.
13701
13702         * gnus-util.el (gnus-group-server): Add.
13703
13704 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
13705
13706         * message.el (message-clone-locals): Clone sendmail and smtp
13707         variables.
13708
13709 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13710
13711         * rfc2047.el (rfc2047-encode-region): Fix last change.
13712
13713 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13714
13715         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
13716         characters as non-special.
13717
13718 2004-07-09  Simon Josefsson  <jas@extundo.com>
13719
13720         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
13721         Users will lose all flag changes made while unplugged with
13722         e.g. nntp unless flag synchronization happens, thus `nil' is not a
13723         good default.  See numerous reports on ding mailing list.
13724
13725 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13726
13727         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
13728         add generate-head-function and generate-article-function to the
13729         rfc822-forward entry.
13730         (nndoc-rfc822-forward-generate-article): New function.
13731         (nndoc-rfc822-forward-generate-head): New function.
13732
13733         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
13734
13735 2004-07-06  Dan Christensen  <jdc@uwo.ca>
13736
13737         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
13738         respect display group parameter and gnus-summary-expunge-below.
13739         (gnus-articles-to-read): Remove unused reference to display group
13740         parameter.
13741
13742 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13743
13744         * nnheader.el (nnheader-uniquify-message-id): New experimental
13745         variable.
13746         (nnheader-nov-read-message-id): Use it.
13747
13748         * spam-report.el (spam-report-gmane): Add interactive.
13749
13750 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13751
13752         * mm-encode.el (mm-content-transfer-encoding-defaults): Use
13753         qp-or-base64 for the application/* types.
13754
13755 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
13756
13757         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
13758
13759 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
13760
13761         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
13762         trim value.
13763
13764 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
13765
13766         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
13767         New macro and function.
13768         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
13769
13770 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13771
13772         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
13773         after-load-alist.
13774
13775 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13776
13777         * gnus-group.el (gnus-group-get-new-news-this-group): Don't
13778         update info that isn't there.
13779
13780 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
13781
13782         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
13783         entry.
13784
13785 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13786
13787         * mm-view.el (mm-inline-render-with-function): Use multibyte
13788         buffer; decode html source by charset.
13789
13790         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
13791
13792         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
13793         Mule-UCS is loaded under XEmacs.
13794         (mm-mime-mule-charset-alist): Avoid duplicated entries.
13795
13796 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
13797
13798         * nnheader.el (nnheader-max-head-length): Increase to 8192.
13799
13800 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13801
13802         * mm-util.el (mm-coding-system-p): Return a coding-system.
13803         (mm-mime-mule-charset-alist): Use shift_jis instead of
13804         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
13805         entries for the mime charsets iso-2022-jp-3 and shift_jis.
13806         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
13807         instead of japanese-shift-jis and iso-latin-1 respectively in
13808         order to share the default value with both Emacs and XEmacs-mule.
13809         (mm-mule-charset-to-mime-charset): Make
13810         mm-coding-system-priorities effective.
13811         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
13812         while predicating of candidates upon the priorities.
13813
13814 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
13815
13816         * gnus-sum.el (gnus-summary-make-menu-bar): Add
13817         gnus-uu-invert-processable.
13818
13819         * gnus.el: Autoload gnus-uu-invert-processable.
13820
13821 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13822
13823         * mm-util.el (mm-with-multibyte-buffer): New macro.
13824
13825         * rfc2047.el (rfc2047-encode-string): Use it.
13826         (rfc2047-encode-region): Move point to the end of the region after
13827         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
13828
13829 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13830
13831         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
13832         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
13833
13834 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13835
13836         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
13837         (gnus-cite-parse): Ignore quoted envelope From_.  Suggested by
13838         Karl Chen <quarl@nospam.quarl.org>.
13839
13840 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
13841
13842         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
13843         invalid addresses.
13844
13845 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
13846
13847         * spam.el: Change section markers, revise TODO list.
13848         (spam-backends): Make new master list of all installed backends.
13849         (spam-summary-exit-behavior): Add new variable to determine how
13850         messages moves are done at summary exit.
13851         (spam-move-spam-nonspam-groups-only)
13852         (spam-process-ham-in-nonham-groups)
13853         (spam-process-ham-in-spam-groups): Remove variables, the
13854         spam-summary-exit-behavior variable should be used to manage this
13855         behavior.
13856         (spam-old-ham-articles, spam-old-spam-articles): Remove.
13857         (spam-old-articles): Add variable, replacing spam-old-ham-articles
13858         and spam-old-spam-articles.
13859         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
13860         Add empty variables, placeholders for the backends they represent.
13861         (spam-set-difference): Move, unchanged.
13862         (spam-list-of-processors): Declare OBSOLETE, not used anymore
13863         unless the user has a processor variable.
13864         (spam-classifications, spam-classification-valid-p)
13865         (spam-backend-properties, spam-backend-property-valid-p)
13866         (spam-backend-function-type-valid-p)
13867         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
13868         (spam-report-articles-gmane, spam-report-articles-resend):
13869         Remove functions, they are not needed.
13870         (spam-install-backend-super, spam-backend-list)
13871         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
13872         (spam-backend-function, spam-backend-ham-registration-function)
13873         (spam-backend-spam-registration-function)
13874         (spam-backend-ham-unregistration-function)
13875         (spam-backend-spam-unregistration-function)
13876         (spam-backend-statistical-p, spam-backend-mover-p)
13877         (spam-install-backend-alias, spam-install-checkonly-backend)
13878         (spam-install-mover-backend, spam-install-nocheck-backend)
13879         (spam-install-backend, spam-install-statistical-backend)
13880         (spam-install-statistical-checkonly-backend): Add backend installation
13881         support.
13882         (spam-summary-prepare-exit): Rewrite to use the new backend code.
13883         (spam-group-processor-p): Use the new backend code and respect the
13884         summary exit behavior.
13885         (spam-mark-spam-as-expired-and-move-routine): Remove.
13886         (spam-summary-prepare): Change to use the new spam-old-articles
13887         variable.
13888         (spam-copy-or-move-routine, spam-copy-spam-routine)
13889         (spam-move-spam-routine, spam-copy-ham-routine)
13890         (spam-move-ham-routine): Add code to copy/move ham or spam.
13891         (spam-fetch-field-fast): Improve doc and code, plus allow the
13892         'number request.
13893         (spam-list-of-checks, spam-list-of-statistical-checks): Remove
13894         variables.
13895         (spam-split, spam-find-spam): Use the new backend code.
13896         (spam-registration-functions): Remove variable.
13897         (spam-unregister-routine): Add convenience wrapper.
13898         (spam-log-undo-registration, spam-register-routine)
13899         (spam-log-processing-to-registry)
13900         (spam-log-unregistration-needed-p): Rename "check" to "backend"
13901         where possible.
13902         (spam-check-gmane-xref, spam-check-regex-headers)
13903         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
13904         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
13905         (spam-check-bogofilter-headers, spam-check-spamoracle)
13906         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
13907         (spam-check-crm114-headers): Use the spam-split-group that
13908         spam-split prepares, no need to determine it every time.
13909
13910         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
13911         to the nnheader-parse-naked-head call.
13912
13913         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
13914
13915         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
13916         the nnheader-nov-read-message-id call.
13917
13918 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13919
13920         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
13921         gnus-activate-group twice.  Suggested by Markus Peter
13922         <warp@spin.de>.
13923
13924 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13925
13926         * gnus-art.el (gnus-article-time-format): Exchange the order of
13927         day and month in the default value; fix customization type.
13928         (article-date-ut): Use add-text-properties.
13929         (article-make-date-line): Use message-make-date instead of
13930         current-time-string.
13931
13932         * message.el (message-fetch-field): Don't use set-text-properties.
13933         (message-make-date): Simplify.
13934
13935         * messagexmas.el (message-xmas-make-date): New function.
13936         (message-xmas-redefine): Defalias message-make-date to it.
13937
13938 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13939
13940         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
13941         (rfc2047-encode-region): Treat text within parentheses as special;
13942         show the original text when error has occurred.
13943
13944         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
13945         already-computed method to gnus-activate-group.
13946
13947         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
13948         same select-methods identical Lisp objects.
13949
13950         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
13951         object when modifying the info.
13952
13953 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13954
13955         * gnus-srvr.el (gnus-server-set-info): Remove the server from
13956         gnus-opened-servers since it has never been opened with the new
13957         configuration yet.
13958
13959 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13960
13961         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
13962         arg to nnheader-generate-fake-message-id.
13963
13964 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
13965
13966         * nnheader.el (nnheader-generate-fake-message-id): Accept a
13967         number and build a fake message ID localized to a group and
13968         article number (so it's repeatable from that point on).
13969         (nnheader-fake-message-id-p): Change regex to accomodate new fake
13970         ID format.
13971
13972         * gnus-sum.el (gnus-get-newsgroup-headers): Call
13973         nnheader-generate-fake-message-id with the article number.
13974
13975 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
13976
13977         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
13978         end-of-buffer.
13979
13980 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13981
13982         * message.el (message-ignored-supersedes-headers): Add Approved.
13983
13984 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
13985
13986         * rfc2047.el (rfc2047-encode-message-header): Remove useless
13987         goto-char.
13988         (rfc2047-encode): Fold the line before encoding.
13989
13990 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13991
13992         * rfc2047.el (rfc2047-encode-message-header): Disabled header
13993         folding -- not all headers can be folded, and this should be done
13994         by the message composition mode.  Probably.  I think.
13995
13996 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13997
13998         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
13999         fast.
14000
14001         * gnus-ems.el (gnus-remove-image): Don't use
14002         message-text-with-property; remove only the image found first.
14003
14004         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
14005         found first.
14006
14007 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
14008
14009         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
14010
14011 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14012
14013         * message.el (message-text-with-property): Make it fast and accept
14014         optional arguments.
14015         (message-strip-forbidden-properties): Use it.
14016         (message-fix-before-sending): Follow the m-t-w-p change.
14017
14018         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
14019
14020 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14021
14022         * gnus-art.el (article-hide-headers): Don't change the buffer
14023         mistakenly when performing mml-preview even if
14024         gnus-single-article-buffer is nil.
14025
14026 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
14027
14028         * message.el (message-expand-name-databases): New user option.
14029         (message-expand-name): Use it.
14030
14031 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
14032
14033         * spam.el (spam-report-articles-resend)
14034         (spam-report-resend-register-routine): Allow ham reporting.
14035         (spam-report-resend-register-ham-routine): Add wrapper.
14036         (spam-registration-functions): Add ham resending functions.
14037         (spam-list-of-processors): Add ham resend processor.
14038
14039         * gnus.el (ham-resend-to): Add new group parameter.
14040         (spam-process): Add ham resend option.
14041
14042         * spam-report.el (spam-report-resend): Allow reporting ham.
14043         (spam-report-resend-ham): Add wrapper.
14044
14045 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14046
14047         * message.el (message-cite-articles-with-x-no-archive): New
14048         variable.
14049         (message-cite-original): Use it.
14050
14051 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14052
14053         * message.el (message-cite-original): Respect X-No-Archive.
14054
14055 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14056
14057         * gnus-art.el (article-hide-headers): Refer to the values for
14058         gnus-ignored-headers and gnus-visible-headers in the summary
14059         buffer since a user may have set them as group parameters.
14060
14061 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
14062
14063         * assistant.el (assistant-node-name): Add convenience function.
14064         (assistant-render-text, assistant-render-node): Add error handling,
14065         plus handle multiple next nodes.
14066         (assistant-find-next-node): Comment out for now.
14067         (assistant-find-next-nodes): Add function, returns list of next
14068         nodes.
14069
14070 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
14071
14072         * mail-source.el (mail-source-directory): Fix doc-string.
14073
14074 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
14075
14076         * assistant.el (assistant-render-text, assistant-eval): Add :set
14077         widget type, which is different because it takes and returns a
14078         list.  Much hilarity ensues.
14079
14080 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
14081
14082         * gnus-art.el (gnus-button-alist): Fixed regexp for manual links.
14083
14084         * gnus-group.el (gnus-group-get-new-news-this-group): Added
14085         doc-string.
14086
14087         * gnus-start.el (gnus-activate-group): Added doc-string.
14088
14089 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14090
14091         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
14092
14093 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
14094
14095         * assistant.el (assistant-render-text): Try to add a :set
14096         widget, more to come.
14097
14098         * spam.el (spam-group-spam-contents-p): Handle empty groupname
14099         strings.
14100         (spam-report-articles-resend)
14101         (spam-register-routine): Do registration iff any articles warrant
14102         it.
14103         (spam-summary-prepare-exit): Change log message for nil group
14104         destinations.
14105
14106 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
14107
14108         * spam.el (spam-report-resend-register-routine): Allow
14109         spam-report-resend-to to be a group parameter or a global value.
14110
14111 2004-05-26  Simon Josefsson  <jas@extundo.com>
14112
14113         * starttls.el: Merge with my GNUTLS based starttls.el.
14114         (starttls-gnutls-program, starttls-use-gnutls)
14115         (starttls-extra-arguments, starttls-process-connection-type)
14116         (starttls-connect, starttls-failure, starttls-success): New
14117         variables.
14118         (starttls-program, starttls-extra-args): Doc fix.
14119         (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New
14120         functions.
14121         (starttls-negotiate, starttls-open-stream): Check
14122         `starttls-use-gnutls' and pass on to corresponding *-gnutls
14123         function if it is set.
14124
14125 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14126
14127         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
14128         structured fields.
14129
14130 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14131
14132         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
14133
14134 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
14135
14136         * spam.el (spam-mark-new-messages-in-spam-group-as-spam): Add
14137         variable.
14138         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
14139         assigning the spam-mark to new messages.
14140
14141 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
14142
14143         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
14144
14145 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14146
14147         * dgnushack.el: Autoload customize-set-variable for XEmacs.
14148
14149         * rfc2047.el (rfc2047-encodable-p): Don't move point.
14150         (rfc2047-decode): Treat the ascii coding-system as raw-text by
14151         default.
14152
14153 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
14154
14155         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
14156         correct data.
14157
14158 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
14159
14160         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
14161         (spam-group-processor-p): Fix function.
14162         (spam-group-processor-multiple-p)
14163         (spam-group-spam-processor-report-gmane-p)
14164         (spam-group-spam-processor-report-resend-p)
14165         (spam-group-spam-processor-bogofilter-p)
14166         (spam-group-spam-processor-blacklist-p)
14167         (spam-group-spam-processor-ifile-p)
14168         (spam-group-ham-processor-ifile-p)
14169         (spam-group-spam-processor-spamoracle-p)
14170         (spam-group-spam-processor-crm114-p)
14171         (spam-group-ham-processor-bogofilter-p)
14172         (spam-group-spam-processor-stat-p)
14173         (spam-group-ham-processor-stat-p)
14174         (spam-group-ham-processor-whitelist-p)
14175         (spam-group-ham-processor-BBDB-p)
14176         (spam-group-ham-processor-spamoracle-p)
14177         (spam-group-ham-processor-copy-p): Remove functions with some
14178         prejudice against unneeded code.
14179         (spam-report-articles-resend)
14180         (spam-report-resend-register-routine): Allow the group/topic
14181         spam-resend-to value to override spam-report-resend-to.
14182         (spam-summary-prepare-exit): Invoke spam-group-processor-p
14183         properly now.
14184
14185         * gnus.el (spam-resend-to): Add group/topic parameter.
14186         (spam-process): Move the OBSOLETE processors to the end of the
14187         choices.
14188
14189 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
14190
14191         * spam-report.el (spam-report-resend-to, spam-report-resend): Start
14192         with resend-to set to nil, and then ask the user if necessary.
14193         (spam-report-resend): spam-report-resend takes a list of articles, not
14194         separate article numbers.
14195
14196 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14197
14198         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
14199         addition to emacs-w3m.
14200
14201 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14202
14203         * assistant.el (assistant-authinfo-data): New function.
14204         (assistant-eval): Eval for entire assistant.
14205
14206         * netrc.el (netrc-services-file): New variable.
14207         (netrc-parse-services): New function.
14208         (netrc-find-service-name): New function.
14209         (netrc-find-service-number): New function.
14210         (netrc-port-equal): New function.
14211         (netrc-machine): Use it.
14212
14213         * nnimap.el (nnimap-open-connection): Use netrc.
14214
14215         * gnus-util.el (gnus-netrc-get): Remove aliases.
14216
14217         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
14218
14219         * assistant.el (wid-edit): Fix compilation.
14220
14221         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
14222
14223 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
14224
14225         * gnus-util.el (gnus-set-file-modes): New function.  (small
14226         patch).
14227
14228 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14229
14230         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
14231
14232         * assistant.el (assistant-render-node): Fix up rendering and
14233         read-only text.
14234         (assistant-render-node): Reset.
14235         (assistant-make-read-only): Not sticky.
14236
14237 2004-05-20  Danny Siu  <dsiu@adobe.com>
14238
14239         * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
14240         centered even when gnus-auto-center-summary is t.
14241
14242 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14243
14244         * dns.el (dns-get-txt-answer): New function.
14245         (dns-read-txt): Ditto.
14246         (query-dns): Use it.
14247
14248 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14249
14250         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
14251         active for foreign groups even if the group level is higher than
14252         the specified value.
14253
14254 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14255
14256         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
14257         non-active groups.
14258
14259         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
14260
14261 2004-05-20  Magnus Henoch  <mange@freemail.hu>
14262
14263         * dns.el (dns-read-type): Add support for SVR.  (small patch)
14264
14265 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
14266
14267         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
14268         (spam-crm114-header, spam-crm114-spam-switch)
14269         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
14270         (spam-crm114-positive-spam-header)
14271         (spam-crm114-database-directory, spam-list-of-processors)
14272         (spam-group-spam-processor-crm114-p)
14273         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
14274         (spam-generic-score, spam-list-of-checks)
14275         (spam-list-of-statistical-checks, spam-registration-functions)
14276         (spam-check-crm114-headers, spam-crm114-score)
14277         (spam-check-crm114, spam-crm114-register-with-crm114)
14278         (spam-crm114-register-spam-routine)
14279         (spam-crm114-unregister-spam-routine)
14280         (spam-crm114-register-ham-routine)
14281         (spam-crm114-unregister-ham-routine): Add CRM114 support.  From
14282         asjo@koldfront.dk (Adam Sjøgren).
14283
14284         * gnus.el: Add spam-use-crm114.
14285
14286         * spam.el (spam-list-of-processors, spam-registration-functions):
14287         Add spam-use-resend.
14288         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
14289         (spam-report-articles-gmane): Add doc fix.
14290         (spam-report-articles-resend, spam-report-resend-register-routine):
14291         Add wrappers around spam-report-resend-to.
14292
14293         * spam-report.el (spam-report-resend-to, spam-report-resend):
14294         Add support for resending spam.
14295         (spam-report-gmane): Fix line length >80.
14296
14297         * gnus.el (spam-process): Add spam-use-resend.
14298
14299 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14300
14301         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
14302         number of processed spam messages.
14303         (spam-ham-copy-or-move-routine): Return the number of processed
14304         ham messages.
14305         (spam-summary-prepare-exit): Use the above values to decide
14306         whether status messages shouled be displayed.
14307
14308 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
14309
14310         * rfc2047.el (rfc2047-encode-function-alist): Renamed from
14311         `rfc2047-encoding-function-alist' in order to avoid conflicting
14312         with the old version.
14313         (rfc2047-encode-region): Concatenate words containing non-ASCII
14314         characters in structured fields; don't encode space-delimited
14315         ASCII words even in unstructured fields; don't break words at
14316         char-category boundaries.
14317         (rfc2047-encode-1): New function.
14318         (rfc2047-encode): Use it; encode text so that it occupies the
14319         maximum width within 76-column; work correctly on Q encoding for
14320         iso-2022-* charsets.
14321         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
14322         sure not to break a line just after the header name.
14323         (rfc2047-b-encode-region): Removed.
14324         (rfc2047-b-encode-string): New function.
14325         (rfc2047-q-encode-region): Removed.
14326         (rfc2047-q-encode-string): New function.
14327
14328         * mm-util.el (mm-replace-in-string): New function.
14329
14330 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14331
14332         * gnus-msg.el (gnus-inews-make-draft-meta-information): Really
14333         get it right.
14334         (gnus-inews-make-draft): Really.
14335
14336 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
14337
14338         * nnmh.el (nnmh-request-list-1): Don't check the link count
14339         before descending.  (small patch)
14340
14341 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14342
14343         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
14344         stuff.
14345
14346         * gnus-start.el (gnus-subscribe-hierarchical-interactive): Match
14347         on real group name.
14348
14349         * gnus-art.el (gnus-signature-limit): Doc fix.
14350
14351         * gnus-msg.el (gnus-inews-make-draft): Quote list.
14352
14353         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
14354
14355 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
14356
14357         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
14358         isn't a string.
14359
14360 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14361
14362         * gnus-draft.el (gnus-draft-send): Bind
14363         rfc2047-encode-encoded-words.
14364
14365         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
14366         (rfc2047-encodable-p): Say that =? needs encoding.
14367         (rfc2047-encode-encoded-words): New variable.
14368
14369         * gnus-group.el (gnus-group-select-group): Doc fix.
14370
14371         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
14372
14373         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
14374         to nil.
14375
14376         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
14377
14378         * nnheader.el (nnheader-get-lines-and-char): New function.
14379
14380 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
14381
14382         * gnus-msg.el (gnus-summary-followup-with-original): Document
14383         yanking of region when active.
14384
14385 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14386
14387         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
14388         groups if the group level is higher than the specified value.
14389
14390 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14391
14392         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
14393         (gnus-group-jump-to-group): Added prefix argument using
14394         `gnus-group-jump-to-group-prompt'.  Query before jumping to
14395         non-active group.
14396
14397         * compface.el (uncompface): Be verbose when changing
14398         `uncompface-use-external'.
14399
14400         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
14401         handle manual section.
14402
14403 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14404
14405         * gnus-art.el (gnus-button-alist): Revert previous change.
14406
14407 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14408
14409         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
14410
14411 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14412
14413         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
14414         whether backend can accept message.
14415
14416         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
14417
14418 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
14419
14420         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
14421         Avoid creating directory when nntp-marks-is-evil is true.
14422         Reported by Reiner Steib.
14423
14424 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
14425
14426         * gnus-picon.el (gnus-picon-style): New variable.
14427         (gnus-picon-insert-glyph): Added optional `nostring' argument.
14428         (gnus-picon-transform-address): Support `gnus-picon-style'.  From
14429         Jesper Harder <harder@ifa.au.dk>.
14430
14431 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14432
14433         * message.el (message-fill-field): Return point.
14434         (message-generate-headers): Go to end of field.
14435
14436         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
14437         stuff for non-living groups.
14438
14439 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
14440
14441         * gnus-art.el (gnus-article-followup-with-original)
14442         (gnus-article-reply-with-original): gnus-mark-active-p ->
14443         gnus-region-active-p.
14444
14445 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
14446
14447         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
14448         only when there is spam or ham to be processed.
14449
14450 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14451
14452         * mail-source.el (mail-source-delete-crash-box): Refactor.
14453         (mail-source-fetch): Use it.
14454         (mail-source-fetch-file): Ditto.
14455         (mail-source-fetch-directory): Run postscript in loop.
14456         (mail-source-fetch-pop): Delete.
14457         (mail-source-fetch-maildir): Ditto.
14458         (mail-source-fetch-imap): Ditto.
14459
14460         * imap.el (imap-authenticators): Comment out sasl.
14461
14462         * message.el (message-skip-to-next-address): New function.
14463         (message-fill-header-address): Refactor.
14464         (message-fill-address): Use it.
14465         (message-delete-address): Use it.
14466         (message-fill-header-general): Refactor.
14467         (message-fill-field-address): Rename.
14468         (message-narrow-to-field): Find the start of the header.
14469         (message-header-format-alist): Don't pre-fill.
14470         (message-fill-header): Removed.
14471         (message-insert-header): New function.
14472         (message-shorten-references): Use it.
14473
14474         * rfc2047.el (rfc2047-field-value): Strip props.
14475
14476         * mail-parse.el (mail-header-make-address): New alias.
14477
14478         * ietf-drums.el (ietf-drums-make-address): New function.
14479
14480         * imap.el: Add compiler directives.
14481
14482         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
14483
14484         * gnus-art.el (article-decode-idna-rhs): Don't use
14485         message-idna-inside-rhs-p.
14486
14487 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14488
14489         * message.el (message-idna-inside-rhs-p): Removed.
14490         (message-idna-to-ascii-rhs-1): Use proper address parsing.
14491
14492         * gnus-art.el (gnus-emphasis-alist): Removed strikethru; too many
14493         false positives.
14494
14495 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
14496
14497         * imap.el (imap-sasl-make-mechanisms): Use sasl.
14498
14499 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14500
14501         * nneething.el (nneething-file-name): Don't create spurious
14502         files.
14503
14504         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
14505         (gnus-inews-do-gcc): Remove sleep.
14506
14507         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
14508         part under point.
14509
14510         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
14511         (gnus-agent-regenerate-group): Using nil messages aren't valid.
14512
14513 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
14514
14515         * spam.el (spam-summary-prepare-exit): Fixed (length).
14516
14517 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
14518
14519         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
14520         as expired without moving it" message when there are spam
14521         messages left.
14522
14523 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
14524
14525         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
14526         header is not nil.
14527
14528 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
14529
14530         * nntp.el (nntp-request-set-mark, nntp-request-update-info): Call
14531         nntp-possibly-create-directory, not nntp-possibly-change-group.
14532         (nntp-marks-changed-p): New arg SERVER.
14533         (nntp-request-update-info): Adjust caller.
14534
14535 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
14536
14537         * nntp.el (nntp-save-marks): Pass missing arg.
14538
14539 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
14540
14541         * nntp.el: Support marks.
14542         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
14543         (nntp-marks-modtime, nntp-marks-directory): New variables.
14544         (nntp-request-set-mark, nntp-request-update-info)
14545         (nntp-possibly-create-directory, nntp-marks-changed-p)
14546         (nntp-save-marks, nntp-open-marks, nntp-marks-directory): New
14547         functions.
14548
14549 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
14550
14551         * gnus-xmas.el (gnus-xmas-select-lowest-window)
14552         (gnus-xmas-redefine): Rename.
14553
14554         * gnus-score.el (gnus-score-insert-help): Use
14555         gnus-select-lowest-window.
14556
14557         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
14558         appt-select-lowest-window and rename to gnus-select-lowest-window.
14559
14560         * gnus.el: do.
14561
14562 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14563
14564         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
14565         encodings of MIME-encoded words, in order to improve
14566         interoperability with several broken MUAs.
14567
14568 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14569
14570         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
14571         tags, only when charsets are not specified in headers.
14572         (mm-inline-text-html-render-with-w3m): Ditto.
14573
14574         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
14575         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
14576
14577 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14578
14579         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
14580         instead of MIME-decoded from fields when checking
14581         `gnus-article-address-banner-alist'.
14582
14583 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
14584
14585         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
14586         description rather than subject.
14587
14588 2004-05-02  Steve Youngs  <steve@youngs.au.com>
14589
14590         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
14591
14592 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14593
14594         * gnus.el (gnus-version-number): Bump.
14595
14596 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14597
14598         * gnus.el: No Gnus v0.2 is released.
14599
14600 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14601
14602         * gnus-agent.el (gnus-agent-read-agentview): Inline
14603         gnus-uncompress-range.
14604
14605 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14606
14607         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
14608         `exec-installed-p'.
14609
14610 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
14611
14612         * gnus.el (spam-process, spam-autodetect-methods): Add
14613         bsfilter and bsfilter-headers.
14614
14615         * spam.el (spam-bsfilter): New customize group.
14616         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
14617         (spam-bsfilter-header, spam-bsfilter-probability-header)
14618         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
14619         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
14620         (spam-bsfilter-database-directory): New options.
14621         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
14622         (spam-list-of-statistical-checks, spam-registration-functions):
14623         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
14624         (spam-bsfilter-score): New command.
14625         (spam-check-bsfilter-headers, spam-check-bsfilter)
14626         (spam-bsfilter-register-with-bsfilter)
14627         (spam-bsfilter-register-spam-routine)
14628         (spam-bsfilter-unregister-spam-routine)
14629         (spam-bsfilter-register-ham-routine)
14630         (spam-bsfilter-unregister-ham-routine): New functions.
14631         (spam-generic-score): Support bsfilter; Accept an optional argument
14632         to recalcurate spam score even if scoring header has already been
14633         added.
14634         (spam-bogofilter-score, spam-spamassassin-score): Accept an
14635         optional argument to recalcurate spam score even if scoring header
14636         has already been added.
14637
14638 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
14639
14640         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
14641         strings!  Reported by David D. Smith <davidsmith@acm.org>.
14642         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
14643         link is missing.
14644
14645 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
14646
14647         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
14648         (html2text-get-attr): Rewrite.
14649
14650         * message.el (message-setup-1): Remove redundant put-text-property
14651         on mail-header-separator.
14652
14653 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
14654
14655         * gnus-registry.el (gnus-registry-cache-whitespace)
14656         (gnus-registry-action, gnus-registry-spool-action)
14657         (gnus-registry-split-fancy-with-parent): Change message levels
14658         from 5 to 3 or 7, as needed.
14659
14660         * spam.el (spam-summary-prepare-exit)
14661         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
14662         (spam-split, spam-find-spam, spam-log-undo-registration)
14663         (spam-check-blackholes, spam-enter-ham-BBDB): Changed message
14664         level from 5 to 6.
14665
14666 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14667
14668         * gnus-ems.el: Autoload appt-select-lowest-window (revert
14669         2004-03-04 change).
14670
14671 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
14672
14673         * sieve-manage.el (sieve-manage-open):
14674         * nnweb.el (nnweb-insert-html):
14675         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
14676         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
14677         * nnspool.el (nnspool-request-group):
14678         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
14679         * nnml.el (nnml-request-update-info):
14680         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
14681         (nnmh-request-create-group, nnmh-update-gnus-unreads):
14682         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
14683         (nnimap-request-set-mark):
14684         * nnfolder.el (nnfolder-request-update-info):
14685         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
14686         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
14687         * gnus-uu.el (gnus-uu-find-articles-matching):
14688         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
14689         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
14690         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
14691         * gnus-nocem.el (gnus-nocem-scan-groups):
14692         * gnus-int.el (gnus-start-news-server):
14693         * gnus-group.el (gnus-group-make-kiboze-group)
14694         (gnus-group-browse-foreign-server):
14695         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
14696         Use mapc when appropriate.
14697
14698 2004-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
14699
14700         FIXME: Make separate entries for each person.
14701
14702         From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
14703         Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
14704         <shields@msrl.com>:
14705
14706         * spam.el (spam-necessary-extra-headers): Get the extra headers we
14707         may need for spam sorting and scoring.
14708         (spam-user-format-function-S): Add user format function suitable for
14709         general use.
14710         (spam-article-sort-by-spam-status): Add sorting function for summary
14711         sorting.
14712         (spam-extra-header-to-number): Add function to get a score from a
14713         header.
14714         (spam-summary-score): Add function to get a numeric score from the
14715         headers.
14716         (spam-generic-score): Fix function doc, was in wrong place.
14717         (spam-initialize): Take symbols when it's run, and install the
14718         extra headers that spam-necessary-extra-headers thinks we need.
14719
14720 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
14721
14722         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
14723         Reported by bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
14724
14725 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
14726
14727         * gnus-sum.el (gnus-set-global-variables)
14728         (gnus-build-all-threads, gnus-get-newsgroup-headers)
14729         (gnus-article-get-xrefs, gnus-summary-best-group)
14730         (gnus-summary-next-article, gnus-summary-enter-digest-group)
14731         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
14732         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
14733         Use with-current-buffer.
14734
14735 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
14736
14737         * spam.el (spam-summary-prepare-exit): Simplify logic.
14738         (spam-fetch-article-header): Read the article header if it's not
14739         available.
14740         (spam-list-articles): Simplify logic.
14741         (spam-filelist-register-routine): Fix bug with unregister-list.
14742
14743         * gnus-registry.el: Fix comments at beginning.
14744
14745 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
14746
14747         * message.el (message-cater-to-broken-inn): Remove.
14748         (message-shorten-references): Make sure the total folded length of
14749         References is shorter than 998 characters to cater to a bug in INN
14750         2.3.  Also, don't pretend that references aren't folded -- this
14751         hasn't worked for a while.
14752
14753 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14754
14755         * gnus-agent.el (gnus-agentize):
14756         gnus-agent-send-mail-real-function no longer set to current value
14757         of message-send-mail-function but rather a lambda that calls
14758         message-send-mail-function.  The change makes the agent real-time
14759         responsive to user changes to message-send-mail-function.
14760
14761 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14762
14763         * legacy-gnus-agent.el
14764         (gnus-agent-convert-to-compressed-agentview): Fixed typos with
14765         help from Florian Weimer <fw@deneb.enyo.de>
14766
14767 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14768
14769         * nnmail.el (nnmail-cache-insert): Revert last change.
14770
14771 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14772
14773         * nnmail.el (nnmail-cache-insert): Always check whether
14774         nnmail-cache-ignore-groups matches a group name.
14775
14776 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
14777
14778         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
14779         (spam-find-spam, spam-log-processing-to-registry)
14780         (spam-log-registered-p, spam-log-unregistration-needed-p)
14781         (spam-log-undo-registration): Use gnus-message instead of
14782         gnus-error, none of these errors are fatal.
14783
14784         * gnus-registry.el (gnus-registry-clean-empty-function)
14785         (gnus-registry-clean-empty): Remove only empty entries without
14786         extra data.
14787
14788 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
14789
14790         * spam-stat.el (spam-stat-buffer-change-to-spam)
14791         (spam-stat-buffer-change-to-non-spam): Change (error) to
14792         (gnus-message 8) invocation.
14793
14794 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14795
14796         * nntp.el (nntp-via-netcat-command): New variable.
14797         (nntp-via-netcat-switches): New variable.
14798         (nntp-open-via-rlogin-and-netcat): New function.
14799         (nntp-open-connection-function): Doc fix.
14800         (nntp-telnet-command): Doc fix.
14801         (nntp-end-of-line): Doc fix.
14802         (nntp-via-rlogin-command): Doc fix.
14803         (nntp-via-user-name): Doc fix.
14804         (nntp-via-address): Doc fix.
14805
14806 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14807
14808         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
14809         error in Emacs 21.1.
14810
14811 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
14812
14813         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
14814
14815 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
14816
14817         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
14818         (gnus-agent-with-refreshed-group): New macro.
14819         (gnus-agent-rename-group): New function.
14820         (gnus-agent-delete-group): New function.
14821         (gnus-agent-save-group-info): Use gnus-command-method when
14822         `method' parameter is nil.  Don't write nil entries into the
14823         active file.
14824         (gnus-agent-get-group-info): New function.
14825         (gnus-agent-fetch-articles): Use
14826         gnus-agent-update-files-total-fetched-for to increment disk space
14827         used.
14828         (gnus-agent-fetch-headers, gnus-agent-save-alist): Use
14829         gnus-agent-update-view-total-fetched-for to increment disk space
14830         used.
14831         (gnus-agent-get-local): Added optional parameters to avoid calling
14832         gnus-group-real-name and gnus-find-method-for-group.
14833         (gnus-agent-set-local): Delete stored entry if either min, or max,
14834         are nil.
14835         (gnus-agent-fetch-session): Reworded error/quit messages.  On
14836         quit, use gnus-agent-regenerate-group to record existance of any
14837         articles fetched to disk before the quit occurred.
14838         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
14839         gnus-agent-update-view-total-fetched-for, and
14840         gnus-agent-update-files-total-fetched-for to decrement disk space
14841         used.
14842         (gnus-agent-retrieve-headers): Use
14843         gnus-agent-update-view-total-fetched-for to increment disk space
14844         used.
14845         (gnus-agent-regenerate-group): Replace gnus-group-update-group
14846         with gnus-agent-update-files-total-fetched-for to decrement disk
14847         space and fresh group buffer.
14848         (gnus-agent-inhibit-update-total-fetched-for): New variable.
14849         (gnus-agent-need-update-total-fetched-for): New variable.
14850         (gnus-agent-update-files-total-fetched-for): New function.
14851         (gnus-agent-update-view-total-fetched-for): New function.
14852         (gnus-agent-total-fetched-for): New function.
14853
14854         * gnus-cache.el (gnus-cache-save-buffers): Use
14855         gnus-cache-update-overview-total-fetched-for to change disk space
14856         used by this group.
14857         (gnus-cache-possibly-enter-article): Use
14858         gnus-cache-update-file-total-fetched-for to increment disk space
14859         used by this group.
14860         (gnus-cache-possibly-remove-article): Use
14861         gnus-cache-update-file-total-fetched-for to decrement disk space
14862         used by this group.
14863         (gnus-cache-generate-nov-databases): Purge total fetched cache.
14864         (gnus-cache-rename-group): New function.
14865         (gnus-cache-delete-group): New function.
14866         (gnus-cache-inhibit-update-total-fetched-for): New variable.
14867         (gnus-cache-need-update-total-fetched-for): New variable.
14868         (gnus-cache-with-refreshed-group): New macro.
14869         (gnus-cache-update-file-total-fetched-for): New function.
14870         (gnus-cache-update-overview-total-fetched-for): New function.
14871         (gnus-cache-rename-group-total-fetched-for): New function.
14872         (gnus-cache-delete-group-total-fetched-for): New function.
14873         (gnus-cache-total-fetched-for): New function.
14874
14875         * gnus-group.el: Require gnus-sum and autoload functions to
14876         resolve warnings when gnus-group.el compiled alone.
14877         (gnus-group-line-format): Documented new %F.
14878         (size of Fetched data) group line format; identifies disk space
14879         used by agent and cache.
14880         (gnus-group-line-format-alist): Defined new F format.
14881         (gnus-total-fetched-for): New function.
14882         (gnus-group-delete-group): No longer update
14883         gnus-cache-active-altered as gnus-request-delete-group now keeps
14884         the cache in sync.
14885         (gnus-group-list-active): Let the agent store a server's active
14886         list if currently plugged.
14887
14888         * gnus-int.el (gnus-request-delete-group):
14889         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
14890         local disk in sync with the server.
14891         (gnus-request-rename-group):
14892         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
14893         local disk in sync with the server.
14894
14895         * gnus-start.el (gnus-get-unread-articles):
14896         Cosmetic simplification to logic.
14897
14898         * gnus-util.el (gnus-rename-file): New function.
14899
14900 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
14901
14902         * mm-util.el (mm-image-load-path): Handle nil in load-path.
14903
14904 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
14905
14906         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
14907         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
14908
14909 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
14910
14911         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
14912         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
14913
14914 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
14915
14916         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
14917
14918 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
14919
14920         * spam.el (spam-set-difference): Add function to replace
14921         gnus-set-difference in spam.el.
14922         (spam-summary-prepare-exit): Use spam-set-difference.
14923
14924 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
14925
14926         * gnus-registry.el (gnus-registry-cache-file): Update to use
14927         gnus-dribble-directory OR gnus-home-directory OR ~.
14928         (gnus-registry-split-fancy-with-parent): Fix doc.
14929
14930 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14931
14932         * message.el (message-exchange-point-and-mark): Use
14933         message-mark-active-p.  Suggested by Jesper Harder
14934         <harder@ifa.au.dk>.
14935
14936 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14937
14938         * message.el (message-exchange-point-and-mark): Don't activate
14939         region if it was inactive.  Suggested by Hiroshi Fujishima
14940         <pooh@nature.tsukuba.ac.jp>.
14941
14942 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14943
14944         * gnus-art.el (article-display-face): Display Faces in the same
14945         order as X-Faces.
14946
14947 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14948
14949         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
14950
14951 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14952
14953         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
14954         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
14955         (gnus-article-mime-hierarchy): Remove.
14956         (gnus-article-mime-hierarchy-next): Remove.
14957         (gnus-article-mode): Revert 2004-03-19 change.
14958         (gnus-article-setup-buffer): Revert 2004-03-19 change.
14959         (gnus-insert-mime-button): Revert 2004-03-19 change.
14960         (gnus-mime-accumulate-hierarchy): Remove.
14961         (gnus-mime-enter-multipart): Remove.
14962         (gnus-mime-leave-multipart): Remove.
14963         (gnus-mime-display-part): Revert 2004-03-19 change.
14964         (gnus-mime-display-alternative): Revert 2004-03-19 change.
14965
14966         * mml.el (mml-preview): Revert 2004-03-19 change.
14967
14968 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
14969
14970         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
14971
14972 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14973
14974         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
14975         t while entering a file name using the mm-with-multibyte macro.
14976         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
14977
14978         * mm-util.el (mm-with-multibyte): New macro.
14979
14980 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
14981
14982         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): New
14983         user option.
14984         (gnus-mime-multipart-functions): Doc and customization fix.
14985         (gnus-article-mime-hierarchy): New variable.
14986         (gnus-article-mime-hierarchy-next): New variable.
14987         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
14988         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
14989         gnus-article-mime-hierarchy-next to nil.
14990         (gnus-insert-mime-button): Show hierarchy numbers.
14991         (gnus-mime-accumulate-hierarchy): New function.
14992         (gnus-mime-enter-multipart): New function.
14993         (gnus-mime-leave-multipart): New function.
14994         (gnus-mime-display-part): Recompute hierarchical MIME structure.
14995         (gnus-mime-display-alternative): Show hierarchy numbers.
14996
14997         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
14998         gnus-article-mime-hierarchy-next to nil.
14999
15000 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
15001
15002         * dns.el: Don't require gnus-xmas.
15003
15004 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
15005
15006         * mml.el (mml-generate-mime-1): Don't use format=flowed with
15007         inline PGP.
15008         (mml-menu): Disable mml-quote-region if mark is inactive.
15009
15010 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15011
15012         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
15013         when the group's active is not available.
15014
15015 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15016
15017         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
15018         error.
15019
15020 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
15021
15022         * imap.el (imap-store-password): New variable.
15023         (imap-interactive-login): Use it.
15024         Suggested by Mark Plaksin <happy@mcplaksin.org>.
15025
15026 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15027
15028         * gnus-art.el (gnus-article-read-summary-keys): Restore new
15029         window-start and hscroll to summary window.
15030
15031 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15032
15033         * gnus-start.el (gnus-convert-old-newsrc): Only write the
15034         conversion message to newsrc-dribble when an actual conversion is
15035         performed.
15036
15037 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
15038
15039         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
15040
15041 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15042
15043         * mm-decode.el (mm-complicated-handles): New function reviving
15044         former definition of mm-multiple-handles.
15045
15046         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
15047         (gnus-mime-delete-part): Use it.
15048
15049 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15050
15051         * gnus-agent.el (gnus-agent-read-local): Bind
15052         nnheader-file-coding-system to gnus-agent-file-coding-system to
15053         avoid the implicit assumption that they will always be equal.
15054         (gnus-agent-save-local): Bind buffer-file-coding-system, not
15055         coding-system-for-write, as the with-temp-file macro first prints
15056         to a buffer then saves the buffer.
15057
15058 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15059
15060         * gnus-art.el (gnus-article-edit-part): New function.
15061         (gnus-mime-save-part-and-strip): Use it; do query instead of
15062         signaling an error; don't use mm-multiple-handles.
15063         (gnus-mime-delete-part): Ditto.
15064
15065 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15066
15067         * gnus-agent.el (gnus-agent-read-agentview): Removed support for
15068         old file versions.
15069         (gnus-group-prepare-hook): Removed function that converted list
15070         form of gnus-agent-expire-days to group properties.
15071
15072         * gnus-int.el: Autoload gnus-agent-regenerate-group.
15073         (gnus-request-accept-article): Re-indented.
15074
15075         * gnus-start.el (gnus-convert-old-newsrc): Registered new
15076         converters to handle old agent file formats.  Added logic for a
15077         "backup before upgrading warning".
15078         (gnus-convert-mark-converter-prompt): Developers can mark
15079         functions as needing (default), or not needing,
15080         gnus-convert-old-newsrc's "backup before upgrading warning".
15081         (gnus-convert-converter-needs-prompt): Tests whether the user
15082         should be protected from potentially irreversable changes by the
15083         function.
15084
15085         * legacy-gnus-agent.el: New.  Provides converters that are only
15086         loaded when gnus-convert-old-newsrc needs to call them.
15087
15088 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15089
15090         * mail-source.el (mail-source-touch-pop): Doc fix.
15091
15092         * message.el (message-smtpmail-send-it): Doc fix.
15093
15094 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
15095
15096         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
15097
15098         * nnmail.el (nnmail-split-fancy): do.
15099
15100         * gnus-kill.el (gnus-kill, gnus-execute): do.
15101
15102 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
15103
15104         * gnus-sum.el (gnus-widget-reversible-match)
15105         (gnus-widget-reversible-to-internal)
15106         (gnus-widget-reversible-to-external): New functions.
15107         (gnus-widget-reversible): New widget.
15108         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
15109
15110 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
15111
15112         * gnus-sum.el (gnus-thread-sort-functions)
15113         (gnus-article-sort-functions): Document `(not F)' items.
15114
15115 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
15116
15117         * spam.el (spam-use-gmane-xref): Add new backend.
15118         (spam-gmane-xref-spam-group): Add variable to control the name of the
15119         Gmane spam group.
15120         (spam-blackhole-servers, spam-blackhole-good-server-regex)
15121         (spam-regex-headers-spam, spam-regex-headers-ham)
15122         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
15123         (spam-list-of-checks): Add spam-use-gmane-xref to list of
15124         backends and checks.
15125         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
15126
15127         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
15128         an autodetect method.
15129
15130 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15131
15132         * gnus-int.el (gnus-request-accept-article): Inform the agent that
15133         articles are being added to a group.
15134         (gnus-request-replace-article): Inform the agent that articles
15135         need to be uncached as the cached contents are no longer valid.
15136
15137 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15138
15139         * binhex.el: Don't autoload executable-find.
15140
15141         * canlock.el: Don't autoload mail-fetch-field.
15142
15143         * dgnushack.el: Autoload c-mode for XEmacs.
15144
15145         * gnus-ems.el: Don't autoload appt-select-lowest-window.
15146
15147         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
15148         rmail-dont-reply-to and rmail-output.
15149
15150         * gnus-score.el: Don't autoload ffap-string-at-point.
15151
15152         * gnus-setup.el: Don't autoload sc-cite-original.
15153
15154         * imap.el: Don't autoload base64-decode-string,
15155         base64-encode-string and md5.
15156
15157         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
15158         and rmail-msg-restore-non-pruned-header.
15159
15160         * mm-decode.el: Don't autoload executable-find.
15161
15162         * mm-url.el: Don't autoload executable-find.
15163
15164         * mm-view.el: Don't autoload diff-mode.
15165
15166         * nndb.el: Don't autoload news-reply-mode, news-setup,
15167         cancel-timer and telnet.
15168
15169         * password.el: Don't autoload run-at-time for Emacs.
15170
15171         * sha1-el.el: Don't autoload executable-find.
15172
15173         * sieve-mode.el: Don't autoload c-mode.
15174
15175         * uudecode.el: Don't autoload executable-find.
15176
15177 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15178
15179         * gnus-agent.el (gnus-agent-file-header-cache): Removed.
15180         (gnus-agent-possibly-alter-active): Avoid null in numeric
15181         comparison.
15182         (gnus-agent-set-local): Refuse to save null in local object table.
15183         (gnus-agent-regenerate-group): The REREAD parameter can now be a
15184         list of articles that will be marked as unread.
15185
15186 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15187
15188         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
15189
15190 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
15191
15192         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
15193         language tags.
15194
15195 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
15196
15197         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
15198         Don't bind "obarray".
15199
15200         * gnus-sum.el (gnus-thread-sort-functions): Added
15201         `gnus-thread-sort-by-most-recent-number' and
15202         `gnus-thread-sort-by-most-recent-date'.
15203         Reported by Kai Grossjohann <kai@emptydomain.de>.
15204
15205 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15206
15207         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
15208
15209 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15210
15211         * gnus-cus.el (gnus-agent-customize-category): Removed
15212         ignore-errors macro reference that required cl to be loaded at
15213         run-time.
15214
15215         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
15216         single-interval range of the form (min . max).  Previously the
15217         range had to look like ((min . max)).  Likewise, return
15218         (min . max) rather than ((min . max)).
15219         (gnus-range-map): Use gnus-range-normalize to accept
15220         single-interval range.
15221
15222         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
15223         the cache, but not the agent, now appear with their usual face.
15224
15225         * dgnushack.el (loaddir): New variable that is bound to the
15226         directory containing the dgnushack.el file. Use loaddir, rather
15227         than srcdir, to update load-path. Change lets dgnushack compile
15228         code in directories other than GNUS/lisp.
15229
15230 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15231
15232         * lpath.el: Don't bind w3m-safe-url-regexp.
15233
15234         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
15235         w3m-safe-url-regexp variable buffer-local.
15236
15237         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15238
15239 2004-02-27  Simon Josefsson  <jas@extundo.com>
15240
15241         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
15242         gnus-group-real-prefix.
15243         (gnus-summary-move-article): Use it, instead of
15244         gnus-group-real-prefix.
15245
15246 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15247
15248         * lpath.el: Bind w3m-safe-url-regexp.
15249
15250         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
15251         w3m-safe-url-regexp variable buffer-local and set it as the value
15252         of mm-w3m-safe-url-regexp.
15253
15254         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
15255
15256         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
15257         parsing gnus-posting-styles when the message is not for replying.
15258
15259         * dgnushack.el: Autoload sgml-mode for XEmacs.
15260
15261         * nnrss.el (nnrss-opml-export): Use
15262         mm-set-buffer-file-coding-system instead of
15263         set-buffer-file-coding-system.
15264
15265 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
15266
15267         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
15268         of checkdoc.el).
15269         * nnrss.el: do.
15270         * gnus-mlspl.el: do.
15271         * gnus-ml.el: do.
15272         * gnus-srvr.el: do.
15273
15274         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
15275
15276 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
15277
15278         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
15279         Corrections to custom-manual links.
15280
15281         * gnus-art.el (gnus-article): Ditto.
15282
15283         * mm-decode.el (mime-display, mime-security): Ditto.
15284
15285 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15286
15287         * flow-fill.el: Typo.
15288
15289 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
15290
15291         * spam-wash.el: New file.
15292
15293 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
15294
15295         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
15296
15297 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
15298
15299         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
15300         to be run with new-articles as LIST1, not LIST2.
15301         (spam-registration-functions): Add spam-use-ham-copy as a nil
15302         registration backend.
15303
15304 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
15305
15306         * spam-stat.el (spam-stat-washing-hook): New option.
15307         (spam-stat-buffer-words): Use it.
15308         (spam-stat-process-directory, spam-stat-test-directory): Use
15309         insert-file-contents-literally.
15310         (spam-stat-coding-system): New variable.
15311         (spam-stat-load, spam-stat-save): Use it.
15312
15313 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
15314
15315         * spam-report.el (spam-report-plug-agent): Quote
15316         spam-report-url-to-file and spam-report-url-ping-plain.
15317
15318 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
15319
15320         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Allow
15321         / in mailto URLs.
15322
15323 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
15324
15325         * spam-report.el (spam-report-process-queue): Fix interactive use.
15326         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
15327         (spam-report-unplug-agent): Doc fixes.
15328         (spam-report-url-ping-mm-url, spam-report-url-to-file)
15329         (spam-report-agentize, spam-report-deagentize): Autoload.
15330
15331 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
15332
15333         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
15334
15335         * message.el (message-setup-fill-variables): Add mml tags to
15336         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
15337         <ajk@iu.edu>.
15338         (message-mode): Don't modify paragraph-separate there.
15339
15340 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15341
15342         * compface.el (uncompface-use-external): Default to undecided.
15343         (uncompface-use-external-threshold): New variable.
15344         (uncompface-float-time): New macro.
15345         (uncompface): Determine whether to use the external decoder if
15346         uncompface-use-external is undecided.
15347
15348 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15349
15350         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
15351         after images.
15352
15353         * gnus-art.el (gnus-mime-display-single): Remove dead code.
15354
15355 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
15356
15357         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
15358
15359         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
15360
15361         * gnus-sum.el (gnus-summary-limit-to-age)
15362         (gnus-summary-limit-children): do.
15363
15364         * gnus-int.el (gnus-request-scan): do.
15365
15366         * gnus-group.el (gnus-group-suspend): do.
15367
15368         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
15369
15370         * gnus-cite.el (gnus-cite-parse-attributions): do.
15371
15372         * gnus-agent.el (gnus-summary-set-agent-mark)
15373         (gnus-agent-regenerate-group): do.
15374
15375         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
15376
15377         * binhex.el (binhex-decode-region-internal): do.
15378
15379 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15380
15381         * gnus-fun.el (gnus-face-properties-alist): New user option.
15382         (gnus-display-x-face-in-from): Use it.
15383
15384         * gnus-art.el (article-display-face): Ditto.
15385
15386         * compface.el (uncompface-use-external): Default to nil.
15387
15388 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
15389
15390         * nntp.el (nntp-erase-buffer): New function.
15391         (nntp-retrieve-data, nntp-send-command)
15392         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
15393         (nntp-possibly-change-group): Use it.
15394
15395         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list): Use
15396         with-current-buffer.
15397
15398 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
15399
15400         * compface.el: Merge the ELisp-based uncompface program.
15401         (compface): New customization group.
15402         (uncompface-use-external): New user option.
15403         (uncompface): Call uncompface-internal if uncompface-use-external
15404         is nil.
15405         (uncompface-internal): New function.  Note that there are also
15406         some other functions and variables added for this function.
15407
15408 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
15409
15410         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
15411         if necessary.
15412
15413 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
15414
15415         * spam-report.el (spam-report-unplug-agent)
15416         (spam-report-plug-agent, spam-report-deagentize)
15417         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
15418         Add support for the Agent in spam-report: when unplugged, report to a
15419         file; when plugged, submit all the requests.
15420
15421         * spam.el (spam-register-routine): Fix message about
15422         registration.
15423
15424 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
15425
15426         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
15427         dependencies.
15428         (rfc2047-encode): Use it.
15429
15430         * gnus-art.el (gnus-button-marker-list): Move before first
15431         reference.
15432
15433         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
15434         (imap-parse-body): Fix format string mismatch.
15435
15436         * gnus-score.el (gnus-summary-increase-score): do.
15437
15438         * nnrss.el (nnrss-close): New function.
15439
15440 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
15441
15442         * nnrss.el (nnrss-make-filename): New function.
15443         (nnrss-request-delete-group, nnrss-read-server-data)
15444         (nnrss-save-server-data, nnrss-read-group-data)
15445         (nnrss-save-group-data): Use it.
15446         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
15447         (nnrss-read-server-data, nnrss-read-group-data): Use load.
15448         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
15449
15450 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
15451
15452         * mml.el (mml-compute-boundary-1): Don't uncompress files.
15453
15454 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
15455
15456         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
15457         files.
15458
15459         * message.el (message-generate-headers-first): Don't quote nil
15460         and t in docstrings.
15461
15462         * imap.el (imap-id): do.
15463
15464         * gnus-agent.el (gnus-agent-consider-all-articles)
15465         (gnus-agent-queue-mail): do.
15466
15467 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
15468
15469         * spam-report.el (spam-report-process-queue): New function.
15470         Process requests from `spam-report-requests-file'.
15471         (spam-report-process-queue): Doc fix.
15472
15473 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
15474
15475         * spam.el (spam-register-routine)
15476         (spam-log-processing-to-registry, spam-log-registered-p)
15477         (spam-log-unregistration-needed-p, spam-log-undo-registration):
15478         Change "check" to "spam-check" for semi-clarity.
15479
15480 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
15481
15482         * pop3.el: Require nnheader.
15483
15484         * mml-smime.el: Require cl.  Autoload message-fetch-field.
15485
15486         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
15487
15488         * gnus-picon.el: Require cl.
15489
15490         * gnus-fun.el: Require gnus-ems and gnus-util.
15491
15492         * gnus.el (gnus-method-to-server): Move defsubst before first use.
15493
15494         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
15495
15496         * gnus-art.el (gnus-article-edit-mode): Define before first
15497         reference.
15498
15499 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
15500
15501         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
15502         (gnus-uu-post-encoded): Use point-at-bol.
15503
15504         * gnus-topic.el (gnus-group-active-topic-p): do.
15505
15506         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
15507
15508         * gnus-group.el (gnus-group-kill-region): do.
15509
15510         * gnus-art.el (article-date-ut): do.
15511
15512         * message.el (message-fetch-field): Remove redundant
15513         case-fold-search binding.
15514         (message-narrow-to-field): Simplify.
15515
15516 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
15517
15518         * spam.el (spam-directory): Derive from `gnus-directory'.
15519
15520         * spam-report.el (spam-report-url-to-file)
15521         (spam-report-requests-file): New function and variable for offline
15522         reporting.
15523         (spam-report-url-ping-function): Add `spam-report-url-to-file'
15524         and user defined function.
15525         (spam-report-url-ping-mm-url): Remove doubled slash.
15526
15527 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
15528
15529         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
15530
15531 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
15532
15533         * spam.el (spam-check-spamoracle, spam-spamoracle-learn): Fix
15534         format string mismatch.
15535
15536         * sieve.el (sieve-deactivate-all): do.
15537
15538         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
15539
15540         * nnlistserv.el (nnlistserv-kk-wash-article): do.
15541
15542         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
15543
15544         * mm-bodies.el (mm-7bit-chars): Don't include \r.
15545
15546 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
15547
15548         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
15549         the list of checks.
15550
15551 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
15552
15553         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
15554         padding.
15555
15556 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
15557
15558         * mm-view.el (mm-fill-flowed): New variable.
15559         (mm-inline-text): Use it.
15560
15561 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
15562
15563         * spam.el (spam-spamassassin-register-ham-routine)
15564         (spam-spamassassin-register-spam-routine): Fix function names.
15565
15566 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15567
15568         * gnus.el (gnus-tmp-grouplens): Remove.
15569         (gnus-summary-line-format): Remove grouplens.
15570
15571         * gnus-group.el (gnus-group-line-format): Ditto.
15572
15573         * gnus-spec.el (gnus-format-specs): Ditto.
15574         (gnus-update-format-specifications): Flush the group format spec
15575         cache if there's the grouplens stuff.
15576         (gnus-parse-simple-format): Replace %l with the empty string.
15577
15578 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
15579
15580         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
15581         omission.
15582
15583 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15584
15585         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
15586         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
15587
15588 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
15589
15590         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
15591         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
15592         New macros and functions.
15593         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
15594         Handle > NLINK_MAX messages.
15595         * nnmaildir.el (nnmaildir-request-set-mark): Use
15596         nnmaildir--emlink-p and nnmaildir--eexist-p.
15597
15598 2004-01-25  Alex Schroeder  <alex@gnu.org>
15599
15600         * spam-stat.el (spam-stat-process-directory-age): New option.
15601         (spam-stat-process-directory): Use it.
15602
15603 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
15604
15605         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
15606         (spam-stat-save): Accept prefix argument.
15607
15608 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
15609
15610         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
15611         links" error.
15612
15613 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15614
15615         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
15616         the rest of the and/or forms.
15617
15618 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15619
15620         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
15621         compatibility with old .newsrc.eld files.
15622
15623         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
15624
15625         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
15626
15627         * gnus-start.el (gnus-1): do.
15628
15629         * gnus-group.el (gnus-group-line-format-alist): do.
15630
15631         * gnus.el (gnus-use-grouplens, gnus-visual): do.
15632
15633         * gnus-gl.el: Remove.
15634
15635 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15636
15637         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
15638         marks consisting of a single range {for example, (3 . 5)} rather
15639         than a list of a single range { ((3 . 5)) }.
15640
15641 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
15642
15643         * spam-stat.el (spam-stat-store-gnus-article-buffer): Use
15644         with-current-buffer.
15645         (spam-stat-store-current-buffer): Use insert-buffer-substring to
15646         avoid consing a string.
15647
15648         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
15649         Remove obsolete entries for big5 and gb2312.
15650
15651 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15652
15653         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
15654         uncompressed list.
15655
15656 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
15657
15658         * spam-stat.el (spam-stat-strip-xref): New function.
15659         (spam-stat-process-directory): Use it.
15660
15661         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
15662         here -- it's done in message-fetch-field.
15663
15664 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
15665
15666         * gnus-agent.el (gnus-agent-queue-mail)
15667         (gnus-agent-prompt-send-queue): New variables.
15668         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
15669         * gnus-draft.el (gnus-group-send-queue): Pass the group name
15670         "nndraft:queue" along to gnus-draft-send.  Use
15671         gnus-agent-prompt-send-queue.
15672         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
15673         is "nndraft:queue".  Suggested by Gaute Strokkenes
15674         <gs234@srcf.ucam.org>
15675
15676         * gnus-agent.el (agent-disable-undownloaded-faces): Removed.
15677         (agent-enable-undownloaded-faces): Added.
15678         (gnus-agent-cat-groups): Use eval-and-compile, not
15679         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
15680         method of gnus-agent-cat-groups even when the buffer has been
15681         evaled.
15682         (gnus-agent-save-active, gnus-agent-save-active-1): Merged to
15683         delete gnus-agent-save-active-1.
15684         (gnus-agent-save-groups): Deleted.  Identical to
15685         gnus-agent-save-active.
15686         (gnus-agent-write-active): No longer adjust agent's copy of active
15687         file as agent's adjustments are now stored in their own
15688         file.  Removed optional parameter.
15689         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
15690         servers.  Add use of min/max range limits from server's local
15691         file.
15692         (gnus-agent-save-alist): Removed unused optional argument.
15693         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
15694         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
15695         (gnus-agent-set-local): A per-server file that keeps min/max range
15696         limits for articles known to the agent.  Provides a fast mechanism
15697         for altering many active ranges.
15698         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
15699         active file (local makes it unnecessary).
15700         (gnus-agent-regenerate-group): Fixed XEmacs compatibility.
15701
15702         * gnus-cus.el (agent-disable-undownloaded-faces): Removed.
15703         (agent-enable-undownloaded-faces): Added.
15704
15705         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
15706         disable it when sending to "nndraft:queue".
15707         (gnus-group-send-queue): Add safety check to avoid sending queue
15708         when unplugged.
15709
15710         * gnus-group.el (gnus-group-catchup): Use new
15711         gnus-sequence-of-unread-articles, not
15712         gnus-list-of-unread-articles, to avoid exhausting memory with huge
15713         numbers of articles.  Use gnus-range-map to avoid having to
15714         uncompress the unread list.
15715         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
15716         Fixed invalid ange-ftp reference.
15717
15718         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
15719         (gnus-sorted-range-intersection): Intersection of two ranges
15720         without requiring that they first be uncompressed.
15721
15722         * gnus-start.el (gnus-activate-group): Unless blocked by the
15723         caller, possibly expand the active range to include both cached
15724         and agentized articles.
15725         (gnus-convert-old-newsrc): Rewrote in anticipation of having
15726         multiple version-dependent converters.
15727         (gnus-groups-to-gnus-format): Replaced gnus-agent-save-groups with
15728         gnus-agent-save-active.
15729         (gnus-save-newsrc-file): Save dirty agent range limits.
15730
15731         * gnus-sum.el (gnus-select-newgroup): Replaced inline code with
15732         gnus-agent-possibly-alter-active.
15733         (gnus-adjust-marked-articles): Faster handling of simple lists.
15734
15735 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
15736
15737         * spam-stat.el (spam-stat-test-directory): New optional argument
15738         displays a list of files detected.  Suggested by Andrew Cohen
15739         <cohen@andy.bu.edu>.
15740         (spam-stat-buffer-words-with-scores): Don't narrow and change
15741         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
15742
15743 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
15744
15745         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
15746         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
15747         (spam-spamassassin-arguments)
15748         (spam-spamassassin-spam-flag-header)
15749         (spam-spamassassin-positive-spam-flag-header)
15750         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
15751         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
15752         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
15753         (spam-list-of-processors, spam-list-of-checks)
15754         (spam-list-of-statistical-checks, spam-registration-functions)
15755         (spam-check-spamassassin-headers, spam-check-spamassassin)
15756         (spam-spamassassin-score)
15757         (spam-spamassassin-register-with-sa-learn)
15758         (spam-spamassassin-register-spam-routine)
15759         (spam-spamassassin-register-ham-routine)
15760         (spam-assassin-register-spam-routine)
15761         (spam-assassin-register-ham-routine): Add SpamAssassin support.
15762         (spam-bogofilter-score): Fix to show article before scoring.
15763
15764 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
15765
15766         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
15767         default scoring function.
15768         (spam-generic-score): Call spam-spamassassin-score if
15769         spam-use-spamassassin or spam-use-spamassassin-headers is on;
15770         spam-bogofilter-score otherwise.
15771
15772         * gnus.el (spam-process, spam-autodetect-methods): Add
15773         spamassassin and spamassassin-headers.
15774
15775 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
15776
15777         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
15778         Suppress unnecessary messages.
15779
15780 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
15781
15782         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
15783         make-hash-table.
15784
15785 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15786
15787         * canlock.el (base64-encode-string): Don't autoload it.
15788
15789 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15790
15791         * run-at-time.el: Remove useless (require 'itimer),
15792         eval-and-compile and (featurep 'xemacs).
15793
15794 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
15795
15796         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
15797         GROUP is a virtual group.
15798
15799 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
15800
15801         * gnus.el: Autoload `message-y-or-n-p'.
15802
15803 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
15804
15805         * pgg-parse.el: Remove unnecessary (require 'custom).
15806
15807         * pgg-def.el: do.
15808
15809         * nnmail.el: do.
15810
15811         * gnus-undo.el: do.
15812
15813         * gnus-picon.el: do.
15814
15815         * gnus-util.el: do.
15816
15817 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
15818
15819         * gnus-sum.el (gnus-pick-line-number): Add autoload.
15820
15821 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
15822
15823         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
15824         handle, as well as a list.
15825
15826         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
15827         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
15828         (mm-w3m-cid-retrieve): Simplify.
15829
15830 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
15831
15832         * message.el (message-kill-to-signature): Allow prefix arg to
15833         specify number of lines to keep before signature.
15834
15835 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
15836
15837         * message.el (message-kill-to-signature): Change docstring.
15838
15839 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15840
15841         * canlock.el: Always require sha1-el.
15842         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
15843
15844         * message.el: Autoload sha1 only when compiling.
15845
15846         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
15847         eudc-expand-inline for XEmacs.
15848
15849 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
15850
15851         * message.el (message-canlock-generate): Require sha1-el.
15852
15853 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
15854
15855         * message.el (message-expand-name): Silence the byte compiler.
15856
15857         * lpath.el: Add detect-coding-system.
15858
15859         * dgnushack.el (dgnushack-compile): Remove obsolete check for
15860         cus-edit.
15861
15862 2004-01-13  Simon Josefsson  <jas@extundo.com>
15863
15864         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
15865         Invoke gnus-score-mode.  Reported by
15866         bojohan+news@dd.chalmers.se (Johan BockgÃ¥rd).
15867
15868         * gnus-range.el (gnus-compress-sequence): Doc fix.  Suggested by
15869         Jim Blandy <jimb@redhat.com> (tiny change).
15870
15871 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15872
15873         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
15874
15875 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
15876
15877         * spam.el (spam-get-article-as-string): Update to use
15878         gnus-request-article-this-buffer, much simpler.
15879         (spam-get-article-as-buffer): Remove.
15880
15881 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
15882
15883         * message.el (message-expand-name): Use EUDC if the user uses that.
15884
15885 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
15886
15887         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
15888         character for the encoding to avoid consing a string.
15889
15890         * rfc2047.el (rfc2047-decode-string): Don't cons a string
15891         unnecessarily.
15892
15893         * mm-util.el (mm-replace-chars-in-string): Remove.
15894
15895         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
15896         of mm-replace-chars-in-string.
15897
15898 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
15899
15900         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
15901
15902         * mm-util.el (mm-subst-char-in-string): Support inplace.
15903
15904         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
15905         a new string in every iteration.  Use shy groups.
15906
15907 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
15908
15909         * gnus-srvr.el (gnus-browse-unsubscribe-group):
15910         * gnus-soup.el (gnus-soup-group-brew):
15911         * gnus-msg.el (gnus-put-message):
15912         * gnus-move.el (gnus-group-move-group-to-server):
15913         * gnus-kill.el (gnus-batch-score):
15914         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
15915         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
15916         (gnus-group-update-group, gnus-group-read-group)
15917         (gnus-group-make-group, gnus-group-make-help-group)
15918         (gnus-group-make-archive-group, gnus-group-make-directory-group)
15919         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
15920         (gnus-group-sort-by-unread, gnus-group-catchup)
15921         (gnus-group-unsubscribe-group, gnus-group-kill-group)
15922         (gnus-group-yank-group, gnus-group-set-info)
15923         (gnus-group-list-groups):
15924         * gnus.el (gnus-generate-new-group-name):
15925         * gnus-delay.el (gnus-delay-send-queue):
15926         * nnvirtual.el (nnvirtual-catchup-group):
15927         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
15928         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
15929         (gnus-group-prepare-topics, gnus-topic-check-topology):
15930         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
15931         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
15932         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
15933         (gnus-group-make-articles-read):
15934         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
15935         (gnus-group-change-level, gnus-kill-newsgroup)
15936         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
15937         (gnus-get-unread-articles, gnus-make-articles-unread)
15938         (gnus-make-ascending-articles-unread): Use accessor
15939         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
15940         to get group information for improved readability.
15941
15942
15943 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15944
15945         * gnus-art.el (article-decode-mime-words, article-babel)
15946         (gnus-article-highlight-signature, gnus-article-add-buttons)
15947         (gnus-signature-toggle): Use gnus-with-article-buffer.
15948
15949         * gnus-art.el (gnus-article-highlight-headers)
15950         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
15951
15952         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
15953         (gnus-article-set-globals, gnus-request-article-this-buffer)
15954         (gnus-button-message-id, gnus-article-maybe-hide-headers)
15955         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
15956         (gnus-mime-display-alternative): Use with-current-buffer.
15957
15958 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15959
15960         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
15961         also under 80 char limit, and call gnus-error if needed.
15962         (spam-fetch-article-header): Fix - it was a
15963         buffer-local variable (gnus-newsgroup-data).
15964         (spam-find-spam): Use spam-generate-fake-headers, forget about
15965         spam-insert-fake-headers.
15966         (spam-insert-fake-headers): Remove.
15967
15968 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15969
15970         * deuglify.el (gnus-article-outlook-unwrap-lines)
15971         (gnus-outlook-rearrange-article)
15972         (gnus-outlook-repair-attribution-outlook)
15973         (gnus-outlook-repair-attribution-block)
15974         (gnus-outlook-repair-attribution-other): Remove redundant
15975         save-excursion.
15976
15977 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
15978
15979         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
15980         (spam-fetch-field-subject-fast)
15981         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
15982         (spam-fetch-article-header): Add functions to deal with Gnus
15983         internals for fast retrieval of article header data.
15984         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
15985
15986 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
15987
15988         * pop3.el (pop3-md5): Remove.
15989         (pop3-apop): Replace pop3-md5 with md5.
15990
15991         * mm-bodies.el: base64 is always built-in.
15992
15993         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use
15994         with-current-buffer.
15995
15996 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15997
15998         * canlock.el (canlock-insert-header): Remove excessive grouping in
15999         regexp.
16000
16001         * gnus-sum.el (gnus-summary-read-document): Ditto.
16002
16003         * gnus-uu.el (gnus-uu-part-number): Ditto.
16004
16005         * html2text.el (html2text-remove-tags): Ditto.
16006         (html2text-format-tags): Ditto.
16007         (html2text-format-single-elements): Ditto.
16008
16009         * mml.el (mml-parse-1): Ditto.
16010
16011 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
16012
16013         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
16014
16015         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
16016
16017         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
16018
16019         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
16020
16021 2003-11-15  Simon Josefsson  <jas@extundo.com>
16022
16023         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
16024         (pgg-gpg-lookup-key): Use regexp match instead of
16025         split-string (split-string is different between emacs 21.2 and
16026         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
16027
16028 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
16029
16030         * gnus-art.el (gnus-mime-view-all-parts)
16031         (gnus-article-part-wrapper, gnus-article-view-part): Use
16032         with-current-buffer.
16033
16034 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
16035
16036         * spam.el (spam-disable-spam-split-during-ham-respool)
16037         (spam-spamoracle-database, spam-cache-lookups)
16038         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
16039         (spam-group-ham-mark-p, spam-group-spam-mark-p)
16040         (spam-group-ham-marks, spam-group-spam-marks)
16041         (spam-group-spam-contents-p, spam-group-ham-contents-p)
16042         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
16043         also add spam-use-blackholes to the statistical checks.
16044         (spam-fetch-field-fast): Add interface to fetching fields, may
16045         become a macro.
16046         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
16047         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
16048         (spam-insert-fake-headers): Fake an article when needed.
16049         (spam-find-spam): Fake article when possible.
16050         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
16051         (spam-check-bogofilter-headers): Use message-fetch-field instead
16052         of nnmail-fetch-field.
16053
16054 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
16055
16056         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
16057
16058 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
16059
16060         * spam.el (spam-split): Do not require spam-use-CHECK to be
16061         enabled if that check is passed to spam-split explicitly; also
16062         fix so 'spam doesn't get converted to spam-split-group when
16063         spam-split-symbolic-return is t.
16064         (spam-find-spam): Find registrations of the article and use those
16065         instead of re-running spam-split to find the spam/ham
16066         classification of the article.
16067         (spam-log-processing-to-registry, spam-log-registered-p)
16068         (spam-log-unregistration-needed-p, spam-log-undo-registration):
16069         Use gnus-error instead of gnus-message.
16070         (spam-log-registration-type): Add function to determine the
16071         classification of a message based on registry entries; will
16072         return nil if both 'spam and 'ham are found.
16073         (spam-check-BBDB): Expand all the BBDB macros here so we can have
16074         a reasonably fast local cache without the loading errors.
16075         (spam-cache-lookups): Set to t by default.
16076         (spam-find-spam): Don't try to guess spam-cache-lookups.
16077         (spam-enter-whitelist, spam-enter-blacklist): Clear the
16078         spam-caches entry.
16079         (spam-filelist-build-cache, spam-filelist-check-cache): Fix
16080         caching of whitelist/blacklist entries.
16081         (spam-check-whitelist, spam-check-blacklist): Invoke
16082         spam-from-listed-p with a type, not a cache variable.
16083         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
16084
16085 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
16086
16087         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
16088
16089         * nnmail.el (nnmail-split-fancy): do.
16090
16091         * mml.el (mml-parse): do.
16092
16093         * gnus-score.el (gnus-enter-score-words-into-hashtb)
16094         (gnus-score-adaptive): do.
16095
16096 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16097
16098         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
16099         (gnus-mime-button-map): Don't set keymap parent.
16100         (gnus-button-ctan-directory-regexp): Use shy grouping.
16101         (gnus-prev-page-map): Don't set keymap parent.
16102         (gnus-prev-page-map): Remove duplicated one.
16103         (gnus-next-page-map): Don't set keymap parent.
16104         (gnus-mime-security-button-map): Ditto.
16105
16106         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
16107         version number.
16108
16109         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
16110
16111 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16112
16113         * canlock.el (canlock-sha1-function): Remove.
16114         (canlock-sha1-function-for-verify): Remove.
16115         (canlock-openssl-program): Remove.
16116         (canlock-openssl-args): Remove.
16117         (canlock-ignore-errors): Remove.
16118         (canlock-sha1-with-openssl): Remove.
16119         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
16120         (canlock-verify): Don't use canlock-ignore-errors.
16121
16122         * sha1-el.el (sha1-string-external): Make it can return a string
16123         in binary form.
16124         (sha1-region-external): Ditto.
16125         (sha1-string-internal): Ditto.
16126         (sha1-region-internal): Ditto.
16127         (sha1-region): Ditto.
16128         (sha1-string): Ditto.
16129         (sha1): Ditto.
16130
16131 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16132
16133         * spam.el (spam-report-articles-gmane): New command.
16134
16135 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16136
16137         * gnus.el: Don't make unnecessary *Group* buffer when loading.
16138
16139         * run-at-time.el (run-at-time-saved): Remove.
16140         (run-at-time): Doc fix.
16141
16142 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
16143
16144         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
16145         (gnus-summary-limit-map): Add it.
16146         (gnus-summary-make-menu-bar): do.
16147
16148 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
16149
16150         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
16151         Make attempt at some caching support (done for BBDB only now).
16152         (spam-find-spam): Set spam-cache-lookups if there are more than 2
16153         addresses to be checked.
16154         (spam-clear-cache-BBDB): Add function, to be invoked by
16155         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
16156         (spam-check-BBDB): Check and use the caches, if
16157         spam-cache-lookups is on, remove superfluous (provide).
16158
16159 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
16160
16161         * gnus-art.el (gnus-treat-ansi-sequences): Changed default.
16162
16163 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
16164
16165         * run-at-time.el (run-at-time-saved): Move to after the definition
16166         of `run-at-time'.
16167
16168         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
16169
16170 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16171
16172         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
16173         mm-w3m-local-map-property.
16174
16175         * mm-view.el (mm-w3m-mode-map): Remove.
16176         (mm-w3m-local-map-property): Remove.
16177         (mm-inline-text-html-render-with-w3m): Don't use
16178         mm-w3m-local-map-property.
16179
16180 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16181
16182         * run-at-time.el: New file.
16183
16184         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
16185         under Emacs.
16186
16187         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
16188         of gnus-set-text-properties.
16189
16190         * gnus-uu.el (gnus-uu-save-article): Ditto.
16191
16192         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
16193
16194         * gnus-cite.el (gnus-cite-parse): Ditto.
16195
16196         * gnus-art.el (gnus-button-push): Use set-text-properties instead
16197         of gnus-.
16198
16199         * gnus-xmas.el (run-at-time): Require run-at-time.
16200
16201         * gnus.el: Changed calls to nnheader-run-at-time and
16202         password-run-at-time throughout to use run-at-time directly.
16203
16204         * password.el: Removed definition of run-at-time.
16205
16206         * nnheaderxm.el: Remove definition of run-at-time.
16207
16208 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
16209
16210         * mml.el (mml-minibuffer-read-disposition): Show attachment type
16211         in prompt.
16212
16213 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16214
16215         * messagexmas.el (message-xmas-redefine): Alias
16216         `message-make-caesar-translation-table' to
16217         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
16218         version.
16219
16220         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
16221         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
16222         `gnus-xmas-set-text-properties'.
16223         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
16224         `gnus-xmas-completing-read'.
16225         (gnus-xmas-completing-read): Removed.
16226         (gnus-xmas-open-network-stream): Removed.
16227
16228         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
16229         XEmacs version.
16230
16231         * dns.el (dns-make-network-process): Use `open-network-stream'
16232         instead of `gnus-xmas-open-network-stream'.
16233
16234         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
16235
16236         * .cvsignore: Add auto-autoloads.el, custom-load.el.
16237
16238 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16239
16240         * gnus-art.el (gnus-mime-display-alternative)
16241         (gnus-insert-mime-button, gnus-insert-mime-security-button)
16242         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
16243         Don't use gnus-local-map-property.
16244
16245         * gnus-util.el (gnus-local-map-property): Remove.
16246
16247         * mm-view.el (mm-view-pkcs7-decrypt): Replace
16248         gnus-completing-read-maybe-default with completing-read.
16249
16250         * gnus-util.el (gnus-completing-read): do.
16251         (gnus-completing-read-maybe-default): Remove.
16252
16253 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
16254
16255         * password.el: Only autoload `run-at-time' if not XEmacs.
16256         Only autoload the itimer functions if XEmacs.
16257
16258 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16259
16260         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
16261         XEmacsen.
16262
16263         * dgnushack.el: Autoload executable-find for XEmacs.
16264
16265 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
16266
16267         * gnus-art.el (gnus-read-string): Remove.
16268         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
16269         read-string.
16270
16271 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
16272
16273         * netrc.el: Autoload password-read.
16274         (netrc): Add configuration group.
16275         (netrc-encoding-method, netrc-openssl-path): Add
16276         variables for encoding and decoding of files with symmetric
16277         ciphers.
16278         (netrc-encode): Add assistant function to encode a file with
16279         netrc-encoding-method.
16280         (netrc-parse): Add interactive parameter, added optional
16281         decoding if netrc-encoding-method is non-nil but otherwise
16282         behavior is standard.
16283         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
16284         Do s/encode/encrypt/ everywhere.
16285
16286         * spam.el: Remove executable-find autoload.
16287
16288 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16289
16290         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
16291
16292         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
16293
16294 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
16295
16296         * gnus-art.el (gnus-treat-ansi-sequences)
16297         (article-treat-ansi-sequences): New variable and function.
16298         Suggested by Dan Jacobson <jidanni@jidanni.org>.
16299
16300         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
16301         Use it.
16302
16303 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
16304
16305         * mm-util.el (mm-quote-arg): Remove.
16306
16307         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
16308         shell-quote-argument.
16309
16310         * gnus-uu.el (gnus-uu-command): do.
16311
16312         * gnus-sum.el (gnus-summary-insert-pseudos): do.
16313
16314         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
16315         with make-char.
16316
16317         * mm-util.el (mm-make-char): Remove.
16318
16319         * mml.el (mml-mode): Replace gnus-add-minor-mode with
16320         add-minor-mode.
16321
16322         * gnus-undo.el (gnus-undo-mode): do.
16323
16324         * gnus-topic.el (gnus-topic-mode): do.
16325
16326         * gnus-sum.el (gnus-dead-summary-mode): do.
16327
16328         * gnus-start.el (gnus-slave-mode): do.
16329
16330         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
16331
16332         * gnus-ml.el (gnus-mailing-list-mode): do.
16333
16334         * gnus-gl.el (gnus-grouplens-mode): do.
16335
16336         * gnus-draft.el (gnus-draft-mode): do.
16337
16338         * gnus-dired.el (gnus-dired-mode): do.
16339
16340         * gnus-ems.el (gnus-add-minor-mode): Remove.
16341
16342         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16343         Replace gnus-char-width with char-width.
16344
16345         * gnus-ems.el (gnus-char-width): Remove.
16346
16347         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
16348         Replace gnus-char-width with char-width.
16349
16350         * gnus-ems.el (gnus-char-width): Remove.
16351
16352         * spam-stat.el (with-syntax-table): Remove with-syntax-table
16353         definition.
16354         Remove Emacs 20 hash table compatibility code.
16355
16356         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
16357         20 compatibility code.
16358
16359         * spam.el (spam-point-at-eol): Replace with point-at-eol.
16360
16361         * smime.el (smime-point-at-eol): Replace with point-at-eol.
16362
16363         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol): Replace
16364         with point-at-{eol,bol}.
16365
16366         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
16367
16368         * imap.el (imap-point-at-eol): Replace with point-at-eol.
16369
16370         * flow-fill.el (fill-flowed-point-at-bol)
16371         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
16372
16373         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
16374         Replace with point-at-{eol,bol} throughout all files.
16375
16376 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16377
16378         * ntlm.el (ntlm-string-as-unibyte): New macro.
16379         (ntlm-build-auth-response): Use it.
16380
16381         Remove Emacs 20 stuff:
16382         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
16383         (butlast, mapc, remove): Remove the compiler macros.
16384         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
16385         of delq and copy-sequence.
16386         * gnus-art.el (popup-menu): Remove the compiler macro.
16387         * nnmail.el (nnmail-split-fancy): Don't support customizing with
16388         Emacs 20.
16389
16390 2004-01-05  Simon Josefsson  <jas@extundo.com>
16391
16392         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
16393         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
16394         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
16395         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
16396         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
16397         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
16398         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
16399         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
16400         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
16401         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
16402         ntlm-string-permute, string-lshift into ntlm-string-lshift,
16403         string-xor into ntlm-string-xor.  Suggested by
16404         Jesper Harder <harder@myrealbox.com>.
16405
16406         * ntlm.el: Don't include poem.
16407
16408         * md4.el (print-int32, print-string-hexa): Remove.  Suggested by
16409         Jesper Harder <harder@myrealbox.com>.
16410
16411         * sasl-ntlm.el, ntlm.el, md4.el: New files.
16412
16413         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
16414         probably breaks emacs with DL patch, but do we care? Is anyone
16415         still using the DL stuff?)
16416
16417         * sieve-manage.el: Use the password package.
16418         (sieve-manage-read-passwd): Remove.
16419         (sieve-manage-interactive-login): Use password.  Re-add
16420         condition-case around loop.
16421
16422         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
16423         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache): Use
16424         the password package.
16425
16426 2003-02-19  Simon Josefsson  <jas@extundo.com>
16427
16428         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
16429         token.
16430
16431 2002-08-07  Simon Josefsson  <jas@extundo.com>
16432
16433         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
16434         (sieve-manage-authenticators):
16435         (sieve-manage-authenticator-alist): Add some SASL mechs.
16436         (sieve-sasl-auth): New function.
16437         (sieve-manage-cram-md5-auth):
16438         (sieve-manage-plain-auth): Rewrite using SASL library.
16439         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
16440         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
16441         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
16442         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
16443
16444 2004-01-05  Simon Josefsson  <jas@extundo.com>
16445
16446         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
16447         New files.
16448
16449 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16450
16451         * gnus-group.el (gnus-no-groups-message): Update.
16452
16453         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
16454
16455 2003-11-09  Simon Josefsson  <jas@extundo.com>
16456
16457         * imap.el: Support for ID IMAP extension (RFC 2971).
16458         (imap-local-variables): Add imap-id.
16459         (imap-id): New variable.
16460         (imap-id): New function.
16461         (imap-parse-response): Parse untagged ID response.
16462         * nnimap.el (nnimap-id): New variable.
16463         (nnimap-open-connection): Use it.
16464
16465 2003-12-28  Simon Josefsson  <jas@extundo.com>
16466
16467         * gnus-score.el (gnus-score-edit-all-score): New.
16468         * gnus-group.el (gnus-group-score-map): Bind it to W e.
16469
16470 2004-01-04  Simon Josefsson  <jas@extundo.com>
16471
16472         * password.el: Add.
16473
16474 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
16475
16476         * dns.el (dns-query-types): Fix typo.
16477         (dns-query-types): New function.
16478         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
16479         PTR and SOA replies, see RFC 1035.
16480
16481 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16482
16483         * gnus.el (gnus-logo-color-style): Changed colors to `no'.
16484
16485         * Moved to Changelog.2.
16486
16487 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16488
16489         * gnus.el (gnus-version-number): Bump version.
16490
16491 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16492
16493         * gnus.el: No Gnus v0.1 is released.
16494
16495 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
16496
16497         * gnus.el: No Gnus v0.0 is released.
16498
16499 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16500
16501         * gnus.el (gnus-version-number): Bump.
16502         (gnus-version): No.
16503
16504 See ChangeLog.2 for earlier changes.
16505
16506     Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
16507       Free Software Foundation, Inc.
16508
16509   This file is part of GNU Emacs.
16510
16511   GNU Emacs is free software: you can redistribute it and/or modify
16512   it under the terms of the GNU General Public License as published by
16513   the Free Software Foundation, either version 3 of the License, or
16514   (at your option) any later version.
16515
16516   GNU Emacs is distributed in the hope that it will be useful,
16517   but WITHOUT ANY WARRANTY; without even the implied warranty of
16518   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16519   GNU General Public License for more details.
16520
16521   You should have received a copy of the GNU General Public License
16522   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
16523
16524 ;; Local Variables:
16525 ;; coding: utf-8
16526 ;; fill-column: 79
16527 ;; add-log-time-zone-rule: t
16528 ;; End: